Blame


1 7b19e0f1 2017-11-05 stsp /*
2 5d56da81 2019-01-13 stsp * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
3 e6eac3b8 2018-06-17 stsp * Copyright (c) 2015 Theo de Raadt <deraadt@openbsd.org>
4 0ee7065d 2019-05-13 stsp * Copyright (c) 1997 Todd C. Miller <millert@openbsd.org>
5 7b19e0f1 2017-11-05 stsp *
6 7b19e0f1 2017-11-05 stsp * Permission to use, copy, modify, and distribute this software for any
7 7b19e0f1 2017-11-05 stsp * purpose with or without fee is hereby granted, provided that the above
8 7b19e0f1 2017-11-05 stsp * copyright notice and this permission notice appear in all copies.
9 7b19e0f1 2017-11-05 stsp *
10 7b19e0f1 2017-11-05 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 7b19e0f1 2017-11-05 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 7b19e0f1 2017-11-05 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 7b19e0f1 2017-11-05 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 7b19e0f1 2017-11-05 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 7b19e0f1 2017-11-05 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 7b19e0f1 2017-11-05 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 7b19e0f1 2017-11-05 stsp */
18 7b19e0f1 2017-11-05 stsp
19 0cd1c46a 2019-03-11 stsp #include <sys/stat.h>
20 e08cc72d 2019-02-05 stsp
21 0cd1c46a 2019-03-11 stsp #include <errno.h>
22 2c7829a4 2019-06-17 stsp #include <fcntl.h>
23 4027f31a 2017-11-04 stsp #include <limits.h>
24 0cd1c46a 2019-03-11 stsp #include <libgen.h>
25 4027f31a 2017-11-04 stsp #include <stdlib.h>
26 4027f31a 2017-11-04 stsp #include <unistd.h>
27 4027f31a 2017-11-04 stsp #include <stdio.h>
28 4027f31a 2017-11-04 stsp #include <string.h>
29 3c45a30a 2019-05-12 jcs #include <dirent.h>
30 0ee7065d 2019-05-13 stsp #include <paths.h>
31 4027f31a 2017-11-04 stsp
32 dd038bc6 2021-09-21 thomas.ad #include "got_compat.h"
33 dd038bc6 2021-09-21 thomas.ad
34 9d31a1d8 2018-03-11 stsp #include "got_error.h"
35 324d37e7 2019-05-11 stsp #include "got_path.h"
36 1411938b 2018-02-12 stsp
37 e0159033 2019-01-08 stsp #ifndef MIN
38 e0159033 2019-01-08 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
39 e0159033 2019-01-08 stsp #endif
40 e0159033 2019-01-08 stsp
41 4027f31a 2017-11-04 stsp int
42 4027f31a 2017-11-04 stsp got_path_is_absolute(const char *path)
43 4027f31a 2017-11-04 stsp {
44 4027f31a 2017-11-04 stsp return path[0] == '/';
45 4027f31a 2017-11-04 stsp }
46 4027f31a 2017-11-04 stsp
47 f7d20e89 2018-06-17 stsp /* based on canonpath() from kern_pledge.c */
48 f7d20e89 2018-06-17 stsp const struct got_error *
49 e6eac3b8 2018-06-17 stsp got_canonpath(const char *input, char *buf, size_t bufsize)
50 e6eac3b8 2018-06-17 stsp {
51 e6eac3b8 2018-06-17 stsp const char *p;
52 e6eac3b8 2018-06-17 stsp char *q;
53 e6eac3b8 2018-06-17 stsp
54 e6eac3b8 2018-06-17 stsp /* can't canon relative paths, don't bother */
55 e6eac3b8 2018-06-17 stsp if (!got_path_is_absolute(input)) {
56 e6eac3b8 2018-06-17 stsp if (strlcpy(buf, input, bufsize) >= bufsize)
57 f7d20e89 2018-06-17 stsp return got_error(GOT_ERR_NO_SPACE);
58 f7d20e89 2018-06-17 stsp return NULL;
59 e6eac3b8 2018-06-17 stsp }
60 e6eac3b8 2018-06-17 stsp
61 e6eac3b8 2018-06-17 stsp p = input;
62 e6eac3b8 2018-06-17 stsp q = buf;
63 e6eac3b8 2018-06-17 stsp while (*p && (q - buf < bufsize)) {
64 e6eac3b8 2018-06-17 stsp if (p[0] == '/' && (p[1] == '/' || p[1] == '\0')) {
65 e6eac3b8 2018-06-17 stsp p += 1;
66 e6eac3b8 2018-06-17 stsp
67 e6eac3b8 2018-06-17 stsp } else if (p[0] == '/' && p[1] == '.' &&
68 e6eac3b8 2018-06-17 stsp (p[2] == '/' || p[2] == '\0')) {
69 e6eac3b8 2018-06-17 stsp p += 2;
70 e6eac3b8 2018-06-17 stsp
71 e6eac3b8 2018-06-17 stsp } else if (p[0] == '/' && p[1] == '.' && p[2] == '.' &&
72 e6eac3b8 2018-06-17 stsp (p[3] == '/' || p[3] == '\0')) {
73 e6eac3b8 2018-06-17 stsp p += 3;
74 e6eac3b8 2018-06-17 stsp if (q != buf) /* "/../" at start of buf */
75 e6eac3b8 2018-06-17 stsp while (*--q != '/')
76 e6eac3b8 2018-06-17 stsp continue;
77 e6eac3b8 2018-06-17 stsp
78 e6eac3b8 2018-06-17 stsp } else {
79 e6eac3b8 2018-06-17 stsp *q++ = *p++;
80 e6eac3b8 2018-06-17 stsp }
81 e6eac3b8 2018-06-17 stsp }
82 e6eac3b8 2018-06-17 stsp if ((*p == '\0') && (q - buf < bufsize)) {
83 e6eac3b8 2018-06-17 stsp *q = 0;
84 f7d20e89 2018-06-17 stsp return NULL;
85 e6eac3b8 2018-06-17 stsp } else
86 f7d20e89 2018-06-17 stsp return got_error(GOT_ERR_NO_SPACE);
87 e6eac3b8 2018-06-17 stsp }
88 04ca23f4 2018-07-16 stsp
89 04ca23f4 2018-07-16 stsp const struct got_error *
90 04ca23f4 2018-07-16 stsp got_path_skip_common_ancestor(char **child, const char *parent_abspath,
91 04ca23f4 2018-07-16 stsp const char *abspath)
92 04ca23f4 2018-07-16 stsp {
93 04ca23f4 2018-07-16 stsp const struct got_error *err = NULL;
94 04ca23f4 2018-07-16 stsp size_t len_parent, len, bufsize;
95 db5ba8ed 2019-03-26 stsp
96 db5ba8ed 2019-03-26 stsp *child = NULL;
97 04ca23f4 2018-07-16 stsp
98 04ca23f4 2018-07-16 stsp len_parent = strlen(parent_abspath);
99 04ca23f4 2018-07-16 stsp len = strlen(abspath);
100 04ca23f4 2018-07-16 stsp if (len_parent >= len)
101 63f810e6 2020-02-29 stsp return got_error_path(abspath, GOT_ERR_BAD_PATH);
102 04ca23f4 2018-07-16 stsp if (strncmp(parent_abspath, abspath, len_parent) != 0)
103 63f810e6 2020-02-29 stsp return got_error_path(abspath, GOT_ERR_BAD_PATH);
104 eb4304b9 2019-05-09 stsp if (!got_path_is_root_dir(parent_abspath) && abspath[len_parent] != '/')
105 63f810e6 2020-02-29 stsp return got_error_path(abspath, GOT_ERR_BAD_PATH);
106 5e3ce57a 2019-03-26 stsp while (abspath[len_parent] == '/')
107 5e3ce57a 2019-03-26 stsp abspath++;
108 04ca23f4 2018-07-16 stsp bufsize = len - len_parent + 1;
109 04ca23f4 2018-07-16 stsp *child = malloc(bufsize);
110 04ca23f4 2018-07-16 stsp if (*child == NULL)
111 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
112 04ca23f4 2018-07-16 stsp if (strlcpy(*child, abspath + len_parent, bufsize) >= bufsize) {
113 638f9024 2019-05-13 stsp err = got_error_from_errno("strlcpy");
114 04ca23f4 2018-07-16 stsp free(*child);
115 04ca23f4 2018-07-16 stsp *child = NULL;
116 04ca23f4 2018-07-16 stsp return err;
117 d9db2ff9 2022-04-16 thomas }
118 d9db2ff9 2022-04-16 thomas return NULL;
119 d9db2ff9 2022-04-16 thomas }
120 d9db2ff9 2022-04-16 thomas
121 d9db2ff9 2022-04-16 thomas const struct got_error *
122 d9db2ff9 2022-04-16 thomas got_path_strip(char **out, const char *path, int n)
123 d9db2ff9 2022-04-16 thomas {
124 d9db2ff9 2022-04-16 thomas const char *p, *c;
125 d9db2ff9 2022-04-16 thomas
126 d9db2ff9 2022-04-16 thomas p = path;
127 d9db2ff9 2022-04-16 thomas *out = NULL;
128 d9db2ff9 2022-04-16 thomas
129 7472ca4e 2022-04-16 thomas while (n > 0 && (c = strchr(p, '/')) != NULL) {
130 7472ca4e 2022-04-16 thomas p = c + 1;
131 d9db2ff9 2022-04-16 thomas n--;
132 04ca23f4 2018-07-16 stsp }
133 d9db2ff9 2022-04-16 thomas
134 d9db2ff9 2022-04-16 thomas if (n > 0)
135 d9db2ff9 2022-04-16 thomas return got_error_fmt(GOT_ERR_BAD_PATH,
136 7472ca4e 2022-04-16 thomas "can't strip %d path-components from %s", n, path);
137 d9db2ff9 2022-04-16 thomas
138 7472ca4e 2022-04-16 thomas if ((*out = strdup(p)) == NULL)
139 d9db2ff9 2022-04-16 thomas return got_error_from_errno("strdup");
140 04ca23f4 2018-07-16 stsp return NULL;
141 04ca23f4 2018-07-16 stsp }
142 31cedeaf 2018-09-15 stsp
143 31cedeaf 2018-09-15 stsp int
144 31cedeaf 2018-09-15 stsp got_path_is_root_dir(const char *path)
145 31cedeaf 2018-09-15 stsp {
146 b8b3f209 2020-02-29 stsp while (*path == '/')
147 b8b3f209 2020-02-29 stsp path++;
148 b8b3f209 2020-02-29 stsp return (*path == '\0');
149 31cedeaf 2018-09-15 stsp }
150 e0159033 2019-01-08 stsp
151 e0159033 2019-01-08 stsp int
152 8da9e5f4 2019-01-12 stsp got_path_is_child(const char *child, const char *parent, size_t parent_len)
153 8da9e5f4 2019-01-12 stsp {
154 eb4304b9 2019-05-09 stsp if (parent_len == 0 || got_path_is_root_dir(parent))
155 8da9e5f4 2019-01-12 stsp return 1;
156 8da9e5f4 2019-01-12 stsp
157 8da9e5f4 2019-01-12 stsp if (strncmp(parent, child, parent_len) != 0)
158 8da9e5f4 2019-01-12 stsp return 0;
159 8da9e5f4 2019-01-12 stsp if (child[parent_len] != '/')
160 8da9e5f4 2019-01-12 stsp return 0;
161 8da9e5f4 2019-01-12 stsp
162 8da9e5f4 2019-01-12 stsp return 1;
163 8da9e5f4 2019-01-12 stsp }
164 8da9e5f4 2019-01-12 stsp
165 8da9e5f4 2019-01-12 stsp int
166 d572f586 2019-08-02 stsp got_path_cmp(const char *path1, const char *path2, size_t len1, size_t len2)
167 e0159033 2019-01-08 stsp {
168 466d3b32 2019-08-02 stsp size_t min_len;
169 e0159033 2019-01-08 stsp size_t i = 0;
170 e0159033 2019-01-08 stsp
171 e08cc72d 2019-02-05 stsp /* Leading directory separators are insignificant. */
172 466d3b32 2019-08-02 stsp while (path1[0] == '/') {
173 e08cc72d 2019-02-05 stsp path1++;
174 466d3b32 2019-08-02 stsp len1--;
175 466d3b32 2019-08-02 stsp }
176 466d3b32 2019-08-02 stsp while (path2[0] == '/') {
177 e08cc72d 2019-02-05 stsp path2++;
178 466d3b32 2019-08-02 stsp len2--;
179 466d3b32 2019-08-02 stsp }
180 e08cc72d 2019-02-05 stsp
181 e08cc72d 2019-02-05 stsp min_len = MIN(len1, len2);
182 e08cc72d 2019-02-05 stsp
183 e0159033 2019-01-08 stsp /* Skip over common prefix. */
184 e0159033 2019-01-08 stsp while (i < min_len && path1[i] == path2[i])
185 e0159033 2019-01-08 stsp i++;
186 e0159033 2019-01-08 stsp
187 e08cc72d 2019-02-05 stsp /* Are the paths exactly equal (besides path separators)? */
188 e0159033 2019-01-08 stsp if (len1 == len2 && i >= min_len)
189 e0159033 2019-01-08 stsp return 0;
190 e0159033 2019-01-08 stsp
191 e08cc72d 2019-02-05 stsp /* Skip over redundant trailing path seperators. */
192 e08cc72d 2019-02-05 stsp while (path1[i] == '/' && path1[i + 1] == '/')
193 e08cc72d 2019-02-05 stsp path1++;
194 e08cc72d 2019-02-05 stsp while (path2[i] == '/' && path2[i + 1] == '/')
195 e08cc72d 2019-02-05 stsp path2++;
196 e08cc72d 2019-02-05 stsp
197 e08cc72d 2019-02-05 stsp /* Trailing path separators are insignificant. */
198 e08cc72d 2019-02-05 stsp if (path1[i] == '/' && path1[i + 1] == '\0' && path2[i] == '\0')
199 e08cc72d 2019-02-05 stsp return 0;
200 e08cc72d 2019-02-05 stsp if (path2[i] == '/' && path2[i + 1] == '\0' && path1[i] == '\0')
201 e08cc72d 2019-02-05 stsp return 0;
202 e08cc72d 2019-02-05 stsp
203 e0159033 2019-01-08 stsp /* Order children in subdirectories directly after their parents. */
204 e0159033 2019-01-08 stsp if (path1[i] == '/' && path2[i] == '\0')
205 e0159033 2019-01-08 stsp return 1;
206 e0159033 2019-01-08 stsp if (path2[i] == '/' && path1[i] == '\0')
207 e0159033 2019-01-08 stsp return -1;
208 e08cc72d 2019-02-05 stsp if (path1[i] == '/' && path2[i] != '\0')
209 e0159033 2019-01-08 stsp return -1;
210 e08cc72d 2019-02-05 stsp if (path2[i] == '/' && path1[i] != '\0')
211 e0159033 2019-01-08 stsp return 1;
212 e0159033 2019-01-08 stsp
213 e0159033 2019-01-08 stsp /* Next character following the common prefix determines order. */
214 e0159033 2019-01-08 stsp return (unsigned char)path1[i] < (unsigned char)path2[i] ? -1 : 1;
215 e0159033 2019-01-08 stsp }
216 e08cc72d 2019-02-05 stsp
217 e08cc72d 2019-02-05 stsp const struct got_error *
218 7e5c804b 2019-02-05 stsp got_pathlist_insert(struct got_pathlist_entry **inserted,
219 3d8df59c 2019-02-05 stsp struct got_pathlist_head *pathlist, const char *path, void *data)
220 e08cc72d 2019-02-05 stsp {
221 e08cc72d 2019-02-05 stsp struct got_pathlist_entry *new, *pe;
222 b0d7d6cb 2022-05-19 thomas size_t path_len = strlen(path);
223 7e5c804b 2019-02-05 stsp
224 7e5c804b 2019-02-05 stsp if (inserted)
225 7e5c804b 2019-02-05 stsp *inserted = NULL;
226 e08cc72d 2019-02-05 stsp
227 e08cc72d 2019-02-05 stsp /*
228 e08cc72d 2019-02-05 stsp * Many callers will provide paths in a somewhat sorted order while
229 e08cc72d 2019-02-05 stsp * constructing a path list from inputs such as tree objects or
230 e08cc72d 2019-02-05 stsp * dirents. Iterating backwards from the tail of the list should
231 e08cc72d 2019-02-05 stsp * be more efficient than traversing through the entire list each
232 e08cc72d 2019-02-05 stsp * time an element is inserted.
233 e08cc72d 2019-02-05 stsp */
234 e08cc72d 2019-02-05 stsp pe = TAILQ_LAST(pathlist, got_pathlist_head);
235 e08cc72d 2019-02-05 stsp while (pe) {
236 b0d7d6cb 2022-05-19 thomas int cmp = got_path_cmp(pe->path, path, pe->path_len, path_len);
237 b0d7d6cb 2022-05-19 thomas if (cmp == 0)
238 b0d7d6cb 2022-05-19 thomas return NULL; /* duplicate */
239 b0d7d6cb 2022-05-19 thomas else if (cmp < 0)
240 b0d7d6cb 2022-05-19 thomas break;
241 e08cc72d 2019-02-05 stsp pe = TAILQ_PREV(pe, got_pathlist_head, entry);
242 e08cc72d 2019-02-05 stsp }
243 e08cc72d 2019-02-05 stsp
244 b0d7d6cb 2022-05-19 thomas new = malloc(sizeof(*new));
245 b0d7d6cb 2022-05-19 thomas if (new == NULL)
246 b0d7d6cb 2022-05-19 thomas return got_error_from_errno("malloc");
247 b0d7d6cb 2022-05-19 thomas new->path = path;
248 b0d7d6cb 2022-05-19 thomas new->path_len = path_len;
249 b0d7d6cb 2022-05-19 thomas new->data = data;
250 b0d7d6cb 2022-05-19 thomas if (pe)
251 b0d7d6cb 2022-05-19 thomas TAILQ_INSERT_AFTER(pathlist, pe, new, entry);
252 b0d7d6cb 2022-05-19 thomas else
253 b0d7d6cb 2022-05-19 thomas TAILQ_INSERT_HEAD(pathlist, new, entry);
254 7e5c804b 2019-02-05 stsp if (inserted)
255 7e5c804b 2019-02-05 stsp *inserted = new;
256 e08cc72d 2019-02-05 stsp return NULL;
257 e08cc72d 2019-02-05 stsp }
258 72ea6654 2019-07-27 stsp
259 72ea6654 2019-07-27 stsp const struct got_error *
260 adc19d55 2019-07-28 stsp got_pathlist_append(struct got_pathlist_head *pathlist,
261 adc19d55 2019-07-28 stsp const char *path, void *data)
262 72ea6654 2019-07-27 stsp {
263 72ea6654 2019-07-27 stsp struct got_pathlist_entry *new;
264 e08cc72d 2019-02-05 stsp
265 72ea6654 2019-07-27 stsp new = malloc(sizeof(*new));
266 72ea6654 2019-07-27 stsp if (new == NULL)
267 72ea6654 2019-07-27 stsp return got_error_from_errno("malloc");
268 72ea6654 2019-07-27 stsp new->path = path;
269 f2b16ada 2019-08-02 stsp new->path_len = strlen(path);
270 72ea6654 2019-07-27 stsp new->data = data;
271 72ea6654 2019-07-27 stsp TAILQ_INSERT_TAIL(pathlist, new, entry);
272 72ea6654 2019-07-27 stsp return NULL;
273 72ea6654 2019-07-27 stsp }
274 72ea6654 2019-07-27 stsp
275 e08cc72d 2019-02-05 stsp void
276 e08cc72d 2019-02-05 stsp got_pathlist_free(struct got_pathlist_head *pathlist)
277 e08cc72d 2019-02-05 stsp {
278 e08cc72d 2019-02-05 stsp struct got_pathlist_entry *pe;
279 e08cc72d 2019-02-05 stsp
280 e08cc72d 2019-02-05 stsp while ((pe = TAILQ_FIRST(pathlist)) != NULL) {
281 e08cc72d 2019-02-05 stsp TAILQ_REMOVE(pathlist, pe, entry);
282 e08cc72d 2019-02-05 stsp free(pe);
283 0cd1c46a 2019-03-11 stsp }
284 0cd1c46a 2019-03-11 stsp }
285 0cd1c46a 2019-03-11 stsp
286 0cd1c46a 2019-03-11 stsp static const struct got_error *
287 0cd1c46a 2019-03-11 stsp make_parent_dirs(const char *abspath)
288 0cd1c46a 2019-03-11 stsp {
289 0cd1c46a 2019-03-11 stsp const struct got_error *err = NULL;
290 d1667f0d 2019-03-11 stsp char *parent;
291 0cd1c46a 2019-03-11 stsp
292 d1667f0d 2019-03-11 stsp err = got_path_dirname(&parent, abspath);
293 d1667f0d 2019-03-11 stsp if (err)
294 d1667f0d 2019-03-11 stsp return err;
295 0cd1c46a 2019-03-11 stsp
296 0cd1c46a 2019-03-11 stsp if (mkdir(parent, GOT_DEFAULT_DIR_MODE) == -1) {
297 0cd1c46a 2019-03-11 stsp if (errno == ENOENT) {
298 0cd1c46a 2019-03-11 stsp err = make_parent_dirs(parent);
299 0cd1c46a 2019-03-11 stsp if (err)
300 5e1c9f23 2019-03-11 stsp goto done;
301 5e1c9f23 2019-03-11 stsp if (mkdir(parent, GOT_DEFAULT_DIR_MODE) == -1) {
302 638f9024 2019-05-13 stsp err = got_error_from_errno2("mkdir", parent);
303 5e1c9f23 2019-03-11 stsp goto done;
304 5e1c9f23 2019-03-11 stsp }
305 0cd1c46a 2019-03-11 stsp } else
306 638f9024 2019-05-13 stsp err = got_error_from_errno2("mkdir", parent);
307 e08cc72d 2019-02-05 stsp }
308 5e1c9f23 2019-03-11 stsp done:
309 5e1c9f23 2019-03-11 stsp free(parent);
310 0cd1c46a 2019-03-11 stsp return err;
311 e08cc72d 2019-02-05 stsp }
312 0cd1c46a 2019-03-11 stsp
313 0cd1c46a 2019-03-11 stsp const struct got_error *
314 0cd1c46a 2019-03-11 stsp got_path_mkdir(const char *abspath)
315 0cd1c46a 2019-03-11 stsp {
316 0cd1c46a 2019-03-11 stsp const struct got_error *err = NULL;
317 0cd1c46a 2019-03-11 stsp
318 0cd1c46a 2019-03-11 stsp if (mkdir(abspath, GOT_DEFAULT_DIR_MODE) == -1) {
319 ddcd8544 2019-03-11 stsp if (errno == ENOENT) {
320 0cd1c46a 2019-03-11 stsp err = make_parent_dirs(abspath);
321 0cd1c46a 2019-03-11 stsp if (err)
322 0cd1c46a 2019-03-11 stsp goto done;
323 0cd1c46a 2019-03-11 stsp if (mkdir(abspath, GOT_DEFAULT_DIR_MODE) == -1)
324 638f9024 2019-05-13 stsp err = got_error_from_errno2("mkdir", abspath);
325 0cd1c46a 2019-03-11 stsp } else
326 638f9024 2019-05-13 stsp err = got_error_from_errno2("mkdir", abspath);
327 0cd1c46a 2019-03-11 stsp }
328 0cd1c46a 2019-03-11 stsp
329 0cd1c46a 2019-03-11 stsp done:
330 0cd1c46a 2019-03-11 stsp return err;
331 3c45a30a 2019-05-12 jcs }
332 3c45a30a 2019-05-12 jcs
333 3c45a30a 2019-05-12 jcs int
334 280f921b 2019-05-12 stsp got_path_dir_is_empty(const char *dir)
335 3c45a30a 2019-05-12 jcs {
336 3c45a30a 2019-05-12 jcs DIR *d;
337 3c45a30a 2019-05-12 jcs struct dirent *dent;
338 3c45a30a 2019-05-12 jcs int empty = 1;
339 3c45a30a 2019-05-12 jcs
340 3c45a30a 2019-05-12 jcs d = opendir(dir);
341 3c45a30a 2019-05-12 jcs if (d == NULL)
342 3c45a30a 2019-05-12 jcs return 1;
343 3c45a30a 2019-05-12 jcs
344 3c45a30a 2019-05-12 jcs while ((dent = readdir(d)) != NULL) {
345 3c45a30a 2019-05-12 jcs if (strcmp(dent->d_name, ".") == 0 ||
346 3c45a30a 2019-05-12 jcs strcmp(dent->d_name, "..") == 0)
347 3c45a30a 2019-05-12 jcs continue;
348 3c45a30a 2019-05-12 jcs
349 3c45a30a 2019-05-12 jcs empty = 0;
350 3c45a30a 2019-05-12 jcs break;
351 3c45a30a 2019-05-12 jcs }
352 3c45a30a 2019-05-12 jcs
353 7f2a8dc2 2019-05-12 stsp closedir(d);
354 3c45a30a 2019-05-12 jcs return empty;
355 d1667f0d 2019-03-11 stsp }
356 d1667f0d 2019-03-11 stsp
357 d1667f0d 2019-03-11 stsp const struct got_error *
358 d1667f0d 2019-03-11 stsp got_path_dirname(char **parent, const char *path)
359 d1667f0d 2019-03-11 stsp {
360 0c4004e3 2020-10-20 stsp char buf[PATH_MAX];
361 d1667f0d 2019-03-11 stsp char *p;
362 d1667f0d 2019-03-11 stsp
363 0c4004e3 2020-10-20 stsp if (strlcpy(buf, path, sizeof(buf)) >= sizeof(buf))
364 0c4004e3 2020-10-20 stsp return got_error(GOT_ERR_NO_SPACE);
365 0c4004e3 2020-10-20 stsp
366 0c4004e3 2020-10-20 stsp p = dirname(buf);
367 d1667f0d 2019-03-11 stsp if (p == NULL)
368 638f9024 2019-05-13 stsp return got_error_from_errno2("dirname", path);
369 d1667f0d 2019-03-11 stsp
370 d1667f0d 2019-03-11 stsp if (p[0] == '.' && p[1] == '\0')
371 63f810e6 2020-02-29 stsp return got_error_path(path, GOT_ERR_BAD_PATH);
372 d1667f0d 2019-03-11 stsp
373 d1667f0d 2019-03-11 stsp *parent = strdup(p);
374 d1667f0d 2019-03-11 stsp if (*parent == NULL)
375 f2ea84fa 2019-07-27 stsp return got_error_from_errno("strdup");
376 f2ea84fa 2019-07-27 stsp
377 f2ea84fa 2019-07-27 stsp return NULL;
378 f2ea84fa 2019-07-27 stsp }
379 f2ea84fa 2019-07-27 stsp
380 f2ea84fa 2019-07-27 stsp const struct got_error *
381 20ccae39 2020-07-21 stsp got_path_dirent_type(int *type, const char *path_parent, struct dirent *dent)
382 20ccae39 2020-07-21 stsp {
383 20ccae39 2020-07-21 stsp const struct got_error *err = NULL;
384 20ccae39 2020-07-21 stsp char *path_child;
385 20ccae39 2020-07-21 stsp struct stat sb;
386 20ccae39 2020-07-21 stsp
387 20ccae39 2020-07-21 stsp if (dent->d_type != DT_UNKNOWN) {
388 20ccae39 2020-07-21 stsp *type = dent->d_type;
389 20ccae39 2020-07-21 stsp return NULL;
390 20ccae39 2020-07-21 stsp }
391 20ccae39 2020-07-21 stsp
392 20ccae39 2020-07-21 stsp *type = DT_UNKNOWN;
393 20ccae39 2020-07-21 stsp
394 20ccae39 2020-07-21 stsp /*
395 20ccae39 2020-07-21 stsp * This is a fallback to accommodate filesystems which do not
396 20ccae39 2020-07-21 stsp * provide directory entry type information. DT_UNKNOWN directory
397 20ccae39 2020-07-21 stsp * entries occur on NFS mounts without "readdir plus" RPC.
398 20ccae39 2020-07-21 stsp */
399 20ccae39 2020-07-21 stsp
400 20ccae39 2020-07-21 stsp if (asprintf(&path_child, "%s/%s", path_parent, dent->d_name) == -1)
401 20ccae39 2020-07-21 stsp return got_error_from_errno("asprintf");
402 20ccae39 2020-07-21 stsp
403 20ccae39 2020-07-21 stsp if (lstat(path_child, &sb) == -1) {
404 20ccae39 2020-07-21 stsp err = got_error_from_errno2("lstat", path_child);
405 20ccae39 2020-07-21 stsp goto done;
406 20ccae39 2020-07-21 stsp }
407 20ccae39 2020-07-21 stsp
408 20ccae39 2020-07-21 stsp if (S_ISFIFO(sb.st_mode))
409 20ccae39 2020-07-21 stsp *type = DT_FIFO;
410 20ccae39 2020-07-21 stsp else if (S_ISCHR(sb.st_mode))
411 20ccae39 2020-07-21 stsp *type = DT_CHR;
412 20ccae39 2020-07-21 stsp else if (S_ISDIR(sb.st_mode))
413 20ccae39 2020-07-21 stsp *type = DT_DIR;
414 20ccae39 2020-07-21 stsp else if (S_ISBLK(sb.st_mode))
415 20ccae39 2020-07-21 stsp *type = DT_BLK;
416 20ccae39 2020-07-21 stsp else if (S_ISLNK(sb.st_mode))
417 20ccae39 2020-07-21 stsp *type = DT_LNK;
418 20ccae39 2020-07-21 stsp else if (S_ISREG(sb.st_mode))
419 20ccae39 2020-07-21 stsp *type = DT_REG;
420 20ccae39 2020-07-21 stsp else if (S_ISSOCK(sb.st_mode))
421 20ccae39 2020-07-21 stsp *type = DT_SOCK;
422 20ccae39 2020-07-21 stsp done:
423 20ccae39 2020-07-21 stsp free(path_child);
424 20ccae39 2020-07-21 stsp return err;
425 20ccae39 2020-07-21 stsp }
426 20ccae39 2020-07-21 stsp
427 20ccae39 2020-07-21 stsp const struct got_error *
428 f2ea84fa 2019-07-27 stsp got_path_basename(char **s, const char *path)
429 f2ea84fa 2019-07-27 stsp {
430 0a9483d0 2020-10-19 stsp char buf[PATH_MAX];
431 f2ea84fa 2019-07-27 stsp char *base;
432 f2ea84fa 2019-07-27 stsp
433 0a9483d0 2020-10-19 stsp if (strlcpy(buf, path, sizeof(buf)) >= sizeof(buf))
434 0a9483d0 2020-10-19 stsp return got_error(GOT_ERR_NO_SPACE);
435 0a9483d0 2020-10-19 stsp
436 0a9483d0 2020-10-19 stsp base = basename(buf);
437 f2ea84fa 2019-07-27 stsp if (base == NULL)
438 f2ea84fa 2019-07-27 stsp return got_error_from_errno2("basename", path);
439 f2ea84fa 2019-07-27 stsp
440 f2ea84fa 2019-07-27 stsp *s = strdup(base);
441 f2ea84fa 2019-07-27 stsp if (*s == NULL)
442 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
443 d1667f0d 2019-03-11 stsp
444 d1667f0d 2019-03-11 stsp return NULL;
445 0cd1c46a 2019-03-11 stsp }
446 72151b04 2019-05-11 stsp
447 72151b04 2019-05-11 stsp void
448 72151b04 2019-05-11 stsp got_path_strip_trailing_slashes(char *path)
449 72151b04 2019-05-11 stsp {
450 455de7fa 2020-01-12 tb size_t x;
451 72151b04 2019-05-11 stsp
452 455de7fa 2020-01-12 tb x = strlen(path);
453 455de7fa 2020-01-12 tb while (x-- > 0 && path[x] == '/')
454 72151b04 2019-05-11 stsp path[x] = '\0';
455 0ee7065d 2019-05-13 stsp }
456 0ee7065d 2019-05-13 stsp
457 7ffb205f 2022-01-06 thomas /* based on findprog() from usr.bin/which/which.c */
458 0ee7065d 2019-05-13 stsp const struct got_error *
459 0ee7065d 2019-05-13 stsp got_path_find_prog(char **filename, const char *prog)
460 0ee7065d 2019-05-13 stsp {
461 202329ae 2019-08-11 stsp const struct got_error *err = NULL;
462 0c6f49ba 2022-07-01 thomas const char *path;
463 0ee7065d 2019-05-13 stsp char *p;
464 0ee7065d 2019-05-13 stsp int len;
465 0ee7065d 2019-05-13 stsp struct stat sbuf;
466 0c6f49ba 2022-07-01 thomas char *pathcpy, *dup = NULL;
467 0ee7065d 2019-05-13 stsp
468 0ee7065d 2019-05-13 stsp *filename = NULL;
469 0ee7065d 2019-05-13 stsp
470 0ee7065d 2019-05-13 stsp path = getenv("PATH");
471 0ee7065d 2019-05-13 stsp if (path == NULL)
472 0ee7065d 2019-05-13 stsp path = _PATH_DEFPATH;
473 0ee7065d 2019-05-13 stsp
474 0ee7065d 2019-05-13 stsp /* Special case if prog contains '/' */
475 0ee7065d 2019-05-13 stsp if (strchr(prog, '/')) {
476 0ee7065d 2019-05-13 stsp if ((stat(prog, &sbuf) == 0) && S_ISREG(sbuf.st_mode) &&
477 0ee7065d 2019-05-13 stsp access(prog, X_OK) == 0) {
478 0ee7065d 2019-05-13 stsp *filename = strdup(prog);
479 0ee7065d 2019-05-13 stsp if (*filename == NULL)
480 0ee7065d 2019-05-13 stsp return got_error_from_errno("strdup");
481 0ee7065d 2019-05-13 stsp }
482 0ee7065d 2019-05-13 stsp return NULL;
483 0ee7065d 2019-05-13 stsp }
484 0ee7065d 2019-05-13 stsp
485 0c6f49ba 2022-07-01 thomas if ((dup = strdup(path)) == NULL)
486 0ee7065d 2019-05-13 stsp return got_error_from_errno("strdup");
487 0c6f49ba 2022-07-01 thomas pathcpy = dup;
488 0ee7065d 2019-05-13 stsp
489 0ee7065d 2019-05-13 stsp while ((p = strsep(&pathcpy, ":")) != NULL) {
490 0c6f49ba 2022-07-01 thomas const char *d;
491 0ee7065d 2019-05-13 stsp
492 0ee7065d 2019-05-13 stsp len = strlen(p);
493 0ee7065d 2019-05-13 stsp while (len > 0 && p[len-1] == '/')
494 0ee7065d 2019-05-13 stsp p[--len] = '\0'; /* strip trailing '/' */
495 0ee7065d 2019-05-13 stsp
496 0c6f49ba 2022-07-01 thomas d = p;
497 0c6f49ba 2022-07-01 thomas if (*d == '\0')
498 0c6f49ba 2022-07-01 thomas d = ".";
499 0c6f49ba 2022-07-01 thomas
500 0c6f49ba 2022-07-01 thomas if (asprintf(filename, "%s/%s", d, prog) == -1) {
501 202329ae 2019-08-11 stsp err = got_error_from_errno("asprintf");
502 718ef3e9 2019-08-11 stsp break;
503 0ee7065d 2019-05-13 stsp }
504 0ee7065d 2019-05-13 stsp if ((stat(*filename, &sbuf) == 0) && S_ISREG(sbuf.st_mode) &&
505 718ef3e9 2019-08-11 stsp access(*filename, X_OK) == 0)
506 718ef3e9 2019-08-11 stsp break;
507 0ee7065d 2019-05-13 stsp free(*filename);
508 0ee7065d 2019-05-13 stsp *filename = NULL;
509 0ee7065d 2019-05-13 stsp continue;
510 0ee7065d 2019-05-13 stsp }
511 0c6f49ba 2022-07-01 thomas free(dup);
512 5cade901 2019-09-22 stsp return err;
513 2c7829a4 2019-06-17 stsp }
514 2c7829a4 2019-06-17 stsp
515 2c7829a4 2019-06-17 stsp const struct got_error *
516 2c7829a4 2019-06-17 stsp got_path_create_file(const char *path, const char *content)
517 2c7829a4 2019-06-17 stsp {
518 2c7829a4 2019-06-17 stsp const struct got_error *err = NULL;
519 2c7829a4 2019-06-17 stsp int fd = -1;
520 2c7829a4 2019-06-17 stsp
521 06340621 2021-12-31 thomas fd = open(path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW | O_CLOEXEC,
522 2c7829a4 2019-06-17 stsp GOT_DEFAULT_FILE_MODE);
523 2c7829a4 2019-06-17 stsp if (fd == -1) {
524 2c7829a4 2019-06-17 stsp err = got_error_from_errno2("open", path);
525 2c7829a4 2019-06-17 stsp goto done;
526 2c7829a4 2019-06-17 stsp }
527 2c7829a4 2019-06-17 stsp
528 2c7829a4 2019-06-17 stsp if (content) {
529 2c7829a4 2019-06-17 stsp int len = dprintf(fd, "%s\n", content);
530 2c7829a4 2019-06-17 stsp if (len != strlen(content) + 1) {
531 2c7829a4 2019-06-17 stsp err = got_error_from_errno("dprintf");
532 2c7829a4 2019-06-17 stsp goto done;
533 2c7829a4 2019-06-17 stsp }
534 2c7829a4 2019-06-17 stsp }
535 2c7829a4 2019-06-17 stsp
536 2c7829a4 2019-06-17 stsp done:
537 2c7829a4 2019-06-17 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
538 2c7829a4 2019-06-17 stsp err = got_error_from_errno("close");
539 2c7829a4 2019-06-17 stsp return err;
540 72151b04 2019-05-11 stsp }