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, "/tmp/got.XXXXXXXX", sizeof(name)) >= sizeof(name))
33 return -1;
35 fd = mkstemp(name);
36 unlink(name);
37 return fd;
38 }
40 FILE *
41 got_opentemp(void)
42 {
43 int fd;
44 FILE *f;
46 fd = got_opentempfd();
47 if (fd < 0)
48 return NULL;
50 f = fdopen(fd, "w+");
51 if (f == NULL) {
52 close(fd);
53 return NULL;
54 }
56 return f;
57 }
59 const struct got_error *
60 got_opentemp_named(char **path, FILE **outfile, const char *basepath)
61 {
62 const struct got_error *err = NULL;
63 int fd;
65 if (asprintf(path, "%s-XXXXXX", basepath) == -1) {
66 *path = NULL;
67 return got_error_from_errno();
68 }
70 fd = mkstemp(*path);
71 if (fd == -1) {
72 err = got_error_from_errno();
73 free(*path);
74 *path = NULL;
75 return err;
76 }
78 *outfile = fdopen(fd, "w+");
79 if (*outfile == NULL) {
80 err = got_error_from_errno();
81 free(*path);
82 *path = NULL;
83 }
85 return err;
86 }