Blob


1 /*
2 * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 #include <limits.h>
18 #include <stdlib.h>
19 #include <unistd.h>
20 #include <string.h>
21 #include <stdio.h>
23 #include "got_opentemp.h"
24 #include "got_error.h"
26 int
27 got_opentempfd(void)
28 {
29 char name[PATH_MAX];
30 int fd;
32 if (strlcpy(name, GOT_TMPDIR_STR "/got.XXXXXXXXXX", sizeof(name))
33 >= sizeof(name))
34 return -1;
36 fd = mkstemp(name);
37 if (fd != -1) {
38 if (unlink(name) == -1) {
39 close(fd);
40 return -1;
41 }
42 }
43 return fd;
44 }
46 FILE *
47 got_opentemp(void)
48 {
49 int fd;
50 FILE *f;
52 fd = got_opentempfd();
53 if (fd < 0)
54 return NULL;
56 f = fdopen(fd, "w+");
57 if (f == NULL) {
58 close(fd);
59 return NULL;
60 }
62 return f;
63 }
65 const struct got_error *
66 got_opentemp_named(char **path, FILE **outfile, const char *basepath,
67 const char *suffix)
68 {
69 const struct got_error *err = NULL;
70 int fd;
72 *outfile = NULL;
74 if (asprintf(path, "%s-XXXXXXXXXX%s", basepath, suffix) == -1) {
75 *path = NULL;
76 return got_error_from_errno("asprintf");
77 }
79 fd = mkstemps(*path, strlen(suffix));
80 if (fd == -1) {
81 err = got_error_from_errno2("mkstemps", *path);
82 free(*path);
83 *path = NULL;
84 return err;
85 }
87 *outfile = fdopen(fd, "w+");
88 if (*outfile == NULL) {
89 err = got_error_from_errno2("fdopen", *path);
90 free(*path);
91 *path = NULL;
92 }
94 return err;
95 }
97 const struct got_error *
98 got_opentemp_named_fd(char **path, int *outfd, const char *basepath,
99 const char *suffix)
101 const struct got_error *err = NULL;
102 int fd;
104 *outfd = -1;
106 if (asprintf(path, "%s-XXXXXXXXXX%s", basepath, suffix) == -1) {
107 *path = NULL;
108 return got_error_from_errno("asprintf");
111 fd = mkstemps(*path, strlen(suffix));
112 if (fd == -1) {
113 err = got_error_from_errno("mkstemp");
114 free(*path);
115 *path = NULL;
116 return err;
119 *outfd = fd;
120 return err;
123 const struct got_error *
124 got_opentemp_truncate(FILE *f)
126 if (fpurge(f) == EOF)
127 return got_error_from_errno("fpurge");
128 if (ftruncate(fileno(f), 0L) == -1)
129 return got_error_from_errno("ftruncate");
130 if (fseeko(f, 0L, SEEK_SET) == -1)
131 return got_error_from_errno("fseeko");
132 return NULL;