Blame


1 511a516b 2018-05-19 stsp /*
2 511a516b 2018-05-19 stsp * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
3 511a516b 2018-05-19 stsp *
4 511a516b 2018-05-19 stsp * Permission to use, copy, modify, and distribute this software for any
5 511a516b 2018-05-19 stsp * purpose with or without fee is hereby granted, provided that the above
6 511a516b 2018-05-19 stsp * copyright notice and this permission notice appear in all copies.
7 511a516b 2018-05-19 stsp *
8 511a516b 2018-05-19 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 511a516b 2018-05-19 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 511a516b 2018-05-19 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 511a516b 2018-05-19 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 511a516b 2018-05-19 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 511a516b 2018-05-19 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 511a516b 2018-05-19 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 511a516b 2018-05-19 stsp */
16 511a516b 2018-05-19 stsp
17 511a516b 2018-05-19 stsp #include <limits.h>
18 511a516b 2018-05-19 stsp #include <stdlib.h>
19 511a516b 2018-05-19 stsp #include <unistd.h>
20 511a516b 2018-05-19 stsp #include <string.h>
21 511a516b 2018-05-19 stsp #include <stdio.h>
22 511a516b 2018-05-19 stsp
23 511a516b 2018-05-19 stsp #include "got_opentemp.h"
24 511a516b 2018-05-19 stsp #include "got_error.h"
25 511a516b 2018-05-19 stsp
26 511a516b 2018-05-19 stsp int
27 511a516b 2018-05-19 stsp got_opentempfd(void)
28 511a516b 2018-05-19 stsp {
29 511a516b 2018-05-19 stsp char name[PATH_MAX];
30 511a516b 2018-05-19 stsp int fd;
31 511a516b 2018-05-19 stsp
32 511a516b 2018-05-19 stsp if (strlcpy(name, "/tmp/got.XXXXXXXX", sizeof(name)) >= sizeof(name))
33 511a516b 2018-05-19 stsp return -1;
34 511a516b 2018-05-19 stsp
35 511a516b 2018-05-19 stsp fd = mkstemp(name);
36 511a516b 2018-05-19 stsp unlink(name);
37 511a516b 2018-05-19 stsp return fd;
38 511a516b 2018-05-19 stsp }
39 511a516b 2018-05-19 stsp
40 511a516b 2018-05-19 stsp FILE *
41 511a516b 2018-05-19 stsp got_opentemp(void)
42 511a516b 2018-05-19 stsp {
43 511a516b 2018-05-19 stsp int fd;
44 511a516b 2018-05-19 stsp FILE *f;
45 511a516b 2018-05-19 stsp
46 511a516b 2018-05-19 stsp fd = got_opentempfd();
47 511a516b 2018-05-19 stsp if (fd < 0)
48 511a516b 2018-05-19 stsp return NULL;
49 511a516b 2018-05-19 stsp
50 511a516b 2018-05-19 stsp f = fdopen(fd, "w+");
51 511a516b 2018-05-19 stsp if (f == NULL) {
52 511a516b 2018-05-19 stsp close(fd);
53 511a516b 2018-05-19 stsp return NULL;
54 511a516b 2018-05-19 stsp }
55 511a516b 2018-05-19 stsp
56 511a516b 2018-05-19 stsp return f;
57 511a516b 2018-05-19 stsp }
58 511a516b 2018-05-19 stsp
59 511a516b 2018-05-19 stsp const struct got_error *
60 511a516b 2018-05-19 stsp got_opentemp_named(char **path, FILE **outfile, const char *basepath)
61 511a516b 2018-05-19 stsp {
62 511a516b 2018-05-19 stsp const struct got_error *err = NULL;
63 511a516b 2018-05-19 stsp int fd;
64 511a516b 2018-05-19 stsp
65 0c92744a 2018-09-20 stsp *outfile = NULL;
66 0c92744a 2018-09-20 stsp
67 511a516b 2018-05-19 stsp if (asprintf(path, "%s-XXXXXX", basepath) == -1) {
68 511a516b 2018-05-19 stsp *path = NULL;
69 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
70 511a516b 2018-05-19 stsp }
71 511a516b 2018-05-19 stsp
72 511a516b 2018-05-19 stsp fd = mkstemp(*path);
73 511a516b 2018-05-19 stsp if (fd == -1) {
74 0d0c539e 2019-05-22 jcs err = got_error_from_errno2("mkstemp", *path);
75 511a516b 2018-05-19 stsp free(*path);
76 511a516b 2018-05-19 stsp *path = NULL;
77 511a516b 2018-05-19 stsp return err;
78 511a516b 2018-05-19 stsp }
79 511a516b 2018-05-19 stsp
80 511a516b 2018-05-19 stsp *outfile = fdopen(fd, "w+");
81 511a516b 2018-05-19 stsp if (*outfile == NULL) {
82 0d0c539e 2019-05-22 jcs err = got_error_from_errno2("fdopen", *path);
83 511a516b 2018-05-19 stsp free(*path);
84 511a516b 2018-05-19 stsp *path = NULL;
85 511a516b 2018-05-19 stsp }
86 511a516b 2018-05-19 stsp
87 511a516b 2018-05-19 stsp return err;
88 511a516b 2018-05-19 stsp }
89 507dc3bb 2018-12-29 stsp
90 507dc3bb 2018-12-29 stsp const struct got_error *
91 507dc3bb 2018-12-29 stsp got_opentemp_named_fd(char **path, int *outfd, const char *basepath)
92 507dc3bb 2018-12-29 stsp {
93 507dc3bb 2018-12-29 stsp const struct got_error *err = NULL;
94 507dc3bb 2018-12-29 stsp int fd;
95 507dc3bb 2018-12-29 stsp
96 507dc3bb 2018-12-29 stsp *outfd = -1;
97 507dc3bb 2018-12-29 stsp
98 507dc3bb 2018-12-29 stsp if (asprintf(path, "%s-XXXXXX", basepath) == -1) {
99 507dc3bb 2018-12-29 stsp *path = NULL;
100 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
101 507dc3bb 2018-12-29 stsp }
102 507dc3bb 2018-12-29 stsp
103 507dc3bb 2018-12-29 stsp fd = mkstemp(*path);
104 507dc3bb 2018-12-29 stsp if (fd == -1) {
105 638f9024 2019-05-13 stsp err = got_error_from_errno("mkstemp");
106 507dc3bb 2018-12-29 stsp free(*path);
107 507dc3bb 2018-12-29 stsp *path = NULL;
108 507dc3bb 2018-12-29 stsp return err;
109 507dc3bb 2018-12-29 stsp }
110 507dc3bb 2018-12-29 stsp
111 507dc3bb 2018-12-29 stsp *outfd = fd;
112 507dc3bb 2018-12-29 stsp return err;
113 507dc3bb 2018-12-29 stsp }