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 04ca23f4 2018-07-16 stsp }
118 04ca23f4 2018-07-16 stsp return NULL;
119 04ca23f4 2018-07-16 stsp }
120 31cedeaf 2018-09-15 stsp
121 31cedeaf 2018-09-15 stsp int
122 31cedeaf 2018-09-15 stsp got_path_is_root_dir(const char *path)
123 31cedeaf 2018-09-15 stsp {
124 b8b3f209 2020-02-29 stsp while (*path == '/')
125 b8b3f209 2020-02-29 stsp path++;
126 b8b3f209 2020-02-29 stsp return (*path == '\0');
127 a129376b 2019-03-28 stsp }
128 a129376b 2019-03-28 stsp
129 a129376b 2019-03-28 stsp int
130 a129376b 2019-03-28 stsp got_path_is_current_dir(const char *path)
131 a129376b 2019-03-28 stsp {
132 a129376b 2019-03-28 stsp return (path[0] == '.' && path[1] == '\0');
133 31cedeaf 2018-09-15 stsp }
134 e0159033 2019-01-08 stsp
135 e0159033 2019-01-08 stsp int
136 8da9e5f4 2019-01-12 stsp got_path_is_child(const char *child, const char *parent, size_t parent_len)
137 8da9e5f4 2019-01-12 stsp {
138 eb4304b9 2019-05-09 stsp if (parent_len == 0 || got_path_is_root_dir(parent))
139 8da9e5f4 2019-01-12 stsp return 1;
140 8da9e5f4 2019-01-12 stsp
141 8da9e5f4 2019-01-12 stsp if (strncmp(parent, child, parent_len) != 0)
142 8da9e5f4 2019-01-12 stsp return 0;
143 8da9e5f4 2019-01-12 stsp if (child[parent_len] != '/')
144 8da9e5f4 2019-01-12 stsp return 0;
145 8da9e5f4 2019-01-12 stsp
146 8da9e5f4 2019-01-12 stsp return 1;
147 8da9e5f4 2019-01-12 stsp }
148 8da9e5f4 2019-01-12 stsp
149 8da9e5f4 2019-01-12 stsp int
150 d572f586 2019-08-02 stsp got_path_cmp(const char *path1, const char *path2, size_t len1, size_t len2)
151 e0159033 2019-01-08 stsp {
152 466d3b32 2019-08-02 stsp size_t min_len;
153 e0159033 2019-01-08 stsp size_t i = 0;
154 e0159033 2019-01-08 stsp
155 e08cc72d 2019-02-05 stsp /* Leading directory separators are insignificant. */
156 466d3b32 2019-08-02 stsp while (path1[0] == '/') {
157 e08cc72d 2019-02-05 stsp path1++;
158 466d3b32 2019-08-02 stsp len1--;
159 466d3b32 2019-08-02 stsp }
160 466d3b32 2019-08-02 stsp while (path2[0] == '/') {
161 e08cc72d 2019-02-05 stsp path2++;
162 466d3b32 2019-08-02 stsp len2--;
163 466d3b32 2019-08-02 stsp }
164 e08cc72d 2019-02-05 stsp
165 e08cc72d 2019-02-05 stsp min_len = MIN(len1, len2);
166 e08cc72d 2019-02-05 stsp
167 e0159033 2019-01-08 stsp /* Skip over common prefix. */
168 e0159033 2019-01-08 stsp while (i < min_len && path1[i] == path2[i])
169 e0159033 2019-01-08 stsp i++;
170 e0159033 2019-01-08 stsp
171 e08cc72d 2019-02-05 stsp /* Are the paths exactly equal (besides path separators)? */
172 e0159033 2019-01-08 stsp if (len1 == len2 && i >= min_len)
173 e0159033 2019-01-08 stsp return 0;
174 e0159033 2019-01-08 stsp
175 e08cc72d 2019-02-05 stsp /* Skip over redundant trailing path seperators. */
176 e08cc72d 2019-02-05 stsp while (path1[i] == '/' && path1[i + 1] == '/')
177 e08cc72d 2019-02-05 stsp path1++;
178 e08cc72d 2019-02-05 stsp while (path2[i] == '/' && path2[i + 1] == '/')
179 e08cc72d 2019-02-05 stsp path2++;
180 e08cc72d 2019-02-05 stsp
181 e08cc72d 2019-02-05 stsp /* Trailing path separators are insignificant. */
182 e08cc72d 2019-02-05 stsp if (path1[i] == '/' && path1[i + 1] == '\0' && path2[i] == '\0')
183 e08cc72d 2019-02-05 stsp return 0;
184 e08cc72d 2019-02-05 stsp if (path2[i] == '/' && path2[i + 1] == '\0' && path1[i] == '\0')
185 e08cc72d 2019-02-05 stsp return 0;
186 e08cc72d 2019-02-05 stsp
187 e0159033 2019-01-08 stsp /* Order children in subdirectories directly after their parents. */
188 e0159033 2019-01-08 stsp if (path1[i] == '/' && path2[i] == '\0')
189 e0159033 2019-01-08 stsp return 1;
190 e0159033 2019-01-08 stsp if (path2[i] == '/' && path1[i] == '\0')
191 e0159033 2019-01-08 stsp return -1;
192 e08cc72d 2019-02-05 stsp if (path1[i] == '/' && path2[i] != '\0')
193 e0159033 2019-01-08 stsp return -1;
194 e08cc72d 2019-02-05 stsp if (path2[i] == '/' && path1[i] != '\0')
195 e0159033 2019-01-08 stsp return 1;
196 e0159033 2019-01-08 stsp
197 e0159033 2019-01-08 stsp /* Next character following the common prefix determines order. */
198 e0159033 2019-01-08 stsp return (unsigned char)path1[i] < (unsigned char)path2[i] ? -1 : 1;
199 e0159033 2019-01-08 stsp }
200 e08cc72d 2019-02-05 stsp
201 e08cc72d 2019-02-05 stsp const struct got_error *
202 7e5c804b 2019-02-05 stsp got_pathlist_insert(struct got_pathlist_entry **inserted,
203 3d8df59c 2019-02-05 stsp struct got_pathlist_head *pathlist, const char *path, void *data)
204 e08cc72d 2019-02-05 stsp {
205 e08cc72d 2019-02-05 stsp struct got_pathlist_entry *new, *pe;
206 7e5c804b 2019-02-05 stsp
207 7e5c804b 2019-02-05 stsp if (inserted)
208 7e5c804b 2019-02-05 stsp *inserted = NULL;
209 e08cc72d 2019-02-05 stsp
210 e08cc72d 2019-02-05 stsp new = malloc(sizeof(*new));
211 e08cc72d 2019-02-05 stsp if (new == NULL)
212 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
213 e08cc72d 2019-02-05 stsp new->path = path;
214 f2b16ada 2019-08-02 stsp new->path_len = strlen(path);
215 3d8df59c 2019-02-05 stsp new->data = data;
216 e08cc72d 2019-02-05 stsp
217 e08cc72d 2019-02-05 stsp /*
218 e08cc72d 2019-02-05 stsp * Many callers will provide paths in a somewhat sorted order while
219 e08cc72d 2019-02-05 stsp * constructing a path list from inputs such as tree objects or
220 e08cc72d 2019-02-05 stsp * dirents. Iterating backwards from the tail of the list should
221 e08cc72d 2019-02-05 stsp * be more efficient than traversing through the entire list each
222 e08cc72d 2019-02-05 stsp * time an element is inserted.
223 e08cc72d 2019-02-05 stsp */
224 e08cc72d 2019-02-05 stsp pe = TAILQ_LAST(pathlist, got_pathlist_head);
225 e08cc72d 2019-02-05 stsp while (pe) {
226 f2b16ada 2019-08-02 stsp int cmp = got_path_cmp(pe->path, new->path,
227 f2b16ada 2019-08-02 stsp pe->path_len, new->path_len);
228 e08cc72d 2019-02-05 stsp if (cmp == 0) {
229 e08cc72d 2019-02-05 stsp free(new); /* duplicate */
230 e08cc72d 2019-02-05 stsp return NULL;
231 e08cc72d 2019-02-05 stsp } else if (cmp < 0) {
232 e08cc72d 2019-02-05 stsp TAILQ_INSERT_AFTER(pathlist, pe, new, entry);
233 7e5c804b 2019-02-05 stsp if (inserted)
234 7e5c804b 2019-02-05 stsp *inserted = new;
235 e08cc72d 2019-02-05 stsp return NULL;
236 e08cc72d 2019-02-05 stsp }
237 e08cc72d 2019-02-05 stsp pe = TAILQ_PREV(pe, got_pathlist_head, entry);
238 e08cc72d 2019-02-05 stsp }
239 e08cc72d 2019-02-05 stsp
240 e08cc72d 2019-02-05 stsp TAILQ_INSERT_HEAD(pathlist, new, entry);
241 7e5c804b 2019-02-05 stsp if (inserted)
242 7e5c804b 2019-02-05 stsp *inserted = new;
243 e08cc72d 2019-02-05 stsp return NULL;
244 e08cc72d 2019-02-05 stsp }
245 72ea6654 2019-07-27 stsp
246 72ea6654 2019-07-27 stsp const struct got_error *
247 adc19d55 2019-07-28 stsp got_pathlist_append(struct got_pathlist_head *pathlist,
248 adc19d55 2019-07-28 stsp const char *path, void *data)
249 72ea6654 2019-07-27 stsp {
250 72ea6654 2019-07-27 stsp struct got_pathlist_entry *new;
251 e08cc72d 2019-02-05 stsp
252 72ea6654 2019-07-27 stsp new = malloc(sizeof(*new));
253 72ea6654 2019-07-27 stsp if (new == NULL)
254 72ea6654 2019-07-27 stsp return got_error_from_errno("malloc");
255 72ea6654 2019-07-27 stsp new->path = path;
256 f2b16ada 2019-08-02 stsp new->path_len = strlen(path);
257 72ea6654 2019-07-27 stsp new->data = data;
258 72ea6654 2019-07-27 stsp TAILQ_INSERT_TAIL(pathlist, new, entry);
259 72ea6654 2019-07-27 stsp return NULL;
260 72ea6654 2019-07-27 stsp }
261 72ea6654 2019-07-27 stsp
262 e08cc72d 2019-02-05 stsp void
263 e08cc72d 2019-02-05 stsp got_pathlist_free(struct got_pathlist_head *pathlist)
264 e08cc72d 2019-02-05 stsp {
265 e08cc72d 2019-02-05 stsp struct got_pathlist_entry *pe;
266 e08cc72d 2019-02-05 stsp
267 e08cc72d 2019-02-05 stsp while ((pe = TAILQ_FIRST(pathlist)) != NULL) {
268 e08cc72d 2019-02-05 stsp TAILQ_REMOVE(pathlist, pe, entry);
269 e08cc72d 2019-02-05 stsp free(pe);
270 0cd1c46a 2019-03-11 stsp }
271 0cd1c46a 2019-03-11 stsp }
272 0cd1c46a 2019-03-11 stsp
273 0cd1c46a 2019-03-11 stsp static const struct got_error *
274 0cd1c46a 2019-03-11 stsp make_parent_dirs(const char *abspath)
275 0cd1c46a 2019-03-11 stsp {
276 0cd1c46a 2019-03-11 stsp const struct got_error *err = NULL;
277 d1667f0d 2019-03-11 stsp char *parent;
278 0cd1c46a 2019-03-11 stsp
279 d1667f0d 2019-03-11 stsp err = got_path_dirname(&parent, abspath);
280 d1667f0d 2019-03-11 stsp if (err)
281 d1667f0d 2019-03-11 stsp return err;
282 0cd1c46a 2019-03-11 stsp
283 0cd1c46a 2019-03-11 stsp if (mkdir(parent, GOT_DEFAULT_DIR_MODE) == -1) {
284 0cd1c46a 2019-03-11 stsp if (errno == ENOENT) {
285 0cd1c46a 2019-03-11 stsp err = make_parent_dirs(parent);
286 0cd1c46a 2019-03-11 stsp if (err)
287 5e1c9f23 2019-03-11 stsp goto done;
288 5e1c9f23 2019-03-11 stsp if (mkdir(parent, GOT_DEFAULT_DIR_MODE) == -1) {
289 638f9024 2019-05-13 stsp err = got_error_from_errno2("mkdir", parent);
290 5e1c9f23 2019-03-11 stsp goto done;
291 5e1c9f23 2019-03-11 stsp }
292 0cd1c46a 2019-03-11 stsp } else
293 638f9024 2019-05-13 stsp err = got_error_from_errno2("mkdir", parent);
294 e08cc72d 2019-02-05 stsp }
295 5e1c9f23 2019-03-11 stsp done:
296 5e1c9f23 2019-03-11 stsp free(parent);
297 0cd1c46a 2019-03-11 stsp return err;
298 e08cc72d 2019-02-05 stsp }
299 0cd1c46a 2019-03-11 stsp
300 0cd1c46a 2019-03-11 stsp const struct got_error *
301 0cd1c46a 2019-03-11 stsp got_path_mkdir(const char *abspath)
302 0cd1c46a 2019-03-11 stsp {
303 0cd1c46a 2019-03-11 stsp const struct got_error *err = NULL;
304 0cd1c46a 2019-03-11 stsp
305 0cd1c46a 2019-03-11 stsp if (mkdir(abspath, GOT_DEFAULT_DIR_MODE) == -1) {
306 ddcd8544 2019-03-11 stsp if (errno == ENOENT) {
307 0cd1c46a 2019-03-11 stsp err = make_parent_dirs(abspath);
308 0cd1c46a 2019-03-11 stsp if (err)
309 0cd1c46a 2019-03-11 stsp goto done;
310 0cd1c46a 2019-03-11 stsp if (mkdir(abspath, GOT_DEFAULT_DIR_MODE) == -1)
311 638f9024 2019-05-13 stsp err = got_error_from_errno2("mkdir", abspath);
312 0cd1c46a 2019-03-11 stsp } else
313 638f9024 2019-05-13 stsp err = got_error_from_errno2("mkdir", abspath);
314 0cd1c46a 2019-03-11 stsp }
315 0cd1c46a 2019-03-11 stsp
316 0cd1c46a 2019-03-11 stsp done:
317 0cd1c46a 2019-03-11 stsp return err;
318 3c45a30a 2019-05-12 jcs }
319 3c45a30a 2019-05-12 jcs
320 3c45a30a 2019-05-12 jcs int
321 280f921b 2019-05-12 stsp got_path_dir_is_empty(const char *dir)
322 3c45a30a 2019-05-12 jcs {
323 3c45a30a 2019-05-12 jcs DIR *d;
324 3c45a30a 2019-05-12 jcs struct dirent *dent;
325 3c45a30a 2019-05-12 jcs int empty = 1;
326 3c45a30a 2019-05-12 jcs
327 3c45a30a 2019-05-12 jcs d = opendir(dir);
328 3c45a30a 2019-05-12 jcs if (d == NULL)
329 3c45a30a 2019-05-12 jcs return 1;
330 3c45a30a 2019-05-12 jcs
331 3c45a30a 2019-05-12 jcs while ((dent = readdir(d)) != NULL) {
332 3c45a30a 2019-05-12 jcs if (strcmp(dent->d_name, ".") == 0 ||
333 3c45a30a 2019-05-12 jcs strcmp(dent->d_name, "..") == 0)
334 3c45a30a 2019-05-12 jcs continue;
335 3c45a30a 2019-05-12 jcs
336 3c45a30a 2019-05-12 jcs empty = 0;
337 3c45a30a 2019-05-12 jcs break;
338 3c45a30a 2019-05-12 jcs }
339 3c45a30a 2019-05-12 jcs
340 7f2a8dc2 2019-05-12 stsp closedir(d);
341 3c45a30a 2019-05-12 jcs return empty;
342 d1667f0d 2019-03-11 stsp }
343 d1667f0d 2019-03-11 stsp
344 d1667f0d 2019-03-11 stsp const struct got_error *
345 d1667f0d 2019-03-11 stsp got_path_dirname(char **parent, const char *path)
346 d1667f0d 2019-03-11 stsp {
347 0c4004e3 2020-10-20 stsp char buf[PATH_MAX];
348 d1667f0d 2019-03-11 stsp char *p;
349 d1667f0d 2019-03-11 stsp
350 0c4004e3 2020-10-20 stsp if (strlcpy(buf, path, sizeof(buf)) >= sizeof(buf))
351 0c4004e3 2020-10-20 stsp return got_error(GOT_ERR_NO_SPACE);
352 0c4004e3 2020-10-20 stsp
353 0c4004e3 2020-10-20 stsp p = dirname(buf);
354 d1667f0d 2019-03-11 stsp if (p == NULL)
355 638f9024 2019-05-13 stsp return got_error_from_errno2("dirname", path);
356 d1667f0d 2019-03-11 stsp
357 d1667f0d 2019-03-11 stsp if (p[0] == '.' && p[1] == '\0')
358 63f810e6 2020-02-29 stsp return got_error_path(path, GOT_ERR_BAD_PATH);
359 d1667f0d 2019-03-11 stsp
360 d1667f0d 2019-03-11 stsp *parent = strdup(p);
361 d1667f0d 2019-03-11 stsp if (*parent == NULL)
362 f2ea84fa 2019-07-27 stsp return got_error_from_errno("strdup");
363 f2ea84fa 2019-07-27 stsp
364 f2ea84fa 2019-07-27 stsp return NULL;
365 f2ea84fa 2019-07-27 stsp }
366 f2ea84fa 2019-07-27 stsp
367 f2ea84fa 2019-07-27 stsp const struct got_error *
368 20ccae39 2020-07-21 stsp got_path_dirent_type(int *type, const char *path_parent, struct dirent *dent)
369 20ccae39 2020-07-21 stsp {
370 20ccae39 2020-07-21 stsp const struct got_error *err = NULL;
371 20ccae39 2020-07-21 stsp char *path_child;
372 20ccae39 2020-07-21 stsp struct stat sb;
373 20ccae39 2020-07-21 stsp
374 20ccae39 2020-07-21 stsp if (dent->d_type != DT_UNKNOWN) {
375 20ccae39 2020-07-21 stsp *type = dent->d_type;
376 20ccae39 2020-07-21 stsp return NULL;
377 20ccae39 2020-07-21 stsp }
378 20ccae39 2020-07-21 stsp
379 20ccae39 2020-07-21 stsp *type = DT_UNKNOWN;
380 20ccae39 2020-07-21 stsp
381 20ccae39 2020-07-21 stsp /*
382 20ccae39 2020-07-21 stsp * This is a fallback to accommodate filesystems which do not
383 20ccae39 2020-07-21 stsp * provide directory entry type information. DT_UNKNOWN directory
384 20ccae39 2020-07-21 stsp * entries occur on NFS mounts without "readdir plus" RPC.
385 20ccae39 2020-07-21 stsp */
386 20ccae39 2020-07-21 stsp
387 20ccae39 2020-07-21 stsp if (asprintf(&path_child, "%s/%s", path_parent, dent->d_name) == -1)
388 20ccae39 2020-07-21 stsp return got_error_from_errno("asprintf");
389 20ccae39 2020-07-21 stsp
390 20ccae39 2020-07-21 stsp if (lstat(path_child, &sb) == -1) {
391 20ccae39 2020-07-21 stsp err = got_error_from_errno2("lstat", path_child);
392 20ccae39 2020-07-21 stsp goto done;
393 20ccae39 2020-07-21 stsp }
394 20ccae39 2020-07-21 stsp
395 20ccae39 2020-07-21 stsp if (S_ISFIFO(sb.st_mode))
396 20ccae39 2020-07-21 stsp *type = DT_FIFO;
397 20ccae39 2020-07-21 stsp else if (S_ISCHR(sb.st_mode))
398 20ccae39 2020-07-21 stsp *type = DT_CHR;
399 20ccae39 2020-07-21 stsp else if (S_ISDIR(sb.st_mode))
400 20ccae39 2020-07-21 stsp *type = DT_DIR;
401 20ccae39 2020-07-21 stsp else if (S_ISBLK(sb.st_mode))
402 20ccae39 2020-07-21 stsp *type = DT_BLK;
403 20ccae39 2020-07-21 stsp else if (S_ISLNK(sb.st_mode))
404 20ccae39 2020-07-21 stsp *type = DT_LNK;
405 20ccae39 2020-07-21 stsp else if (S_ISREG(sb.st_mode))
406 20ccae39 2020-07-21 stsp *type = DT_REG;
407 20ccae39 2020-07-21 stsp else if (S_ISSOCK(sb.st_mode))
408 20ccae39 2020-07-21 stsp *type = DT_SOCK;
409 20ccae39 2020-07-21 stsp done:
410 20ccae39 2020-07-21 stsp free(path_child);
411 20ccae39 2020-07-21 stsp return err;
412 20ccae39 2020-07-21 stsp }
413 20ccae39 2020-07-21 stsp
414 20ccae39 2020-07-21 stsp const struct got_error *
415 f2ea84fa 2019-07-27 stsp got_path_basename(char **s, const char *path)
416 f2ea84fa 2019-07-27 stsp {
417 0a9483d0 2020-10-19 stsp char buf[PATH_MAX];
418 f2ea84fa 2019-07-27 stsp char *base;
419 f2ea84fa 2019-07-27 stsp
420 0a9483d0 2020-10-19 stsp if (strlcpy(buf, path, sizeof(buf)) >= sizeof(buf))
421 0a9483d0 2020-10-19 stsp return got_error(GOT_ERR_NO_SPACE);
422 0a9483d0 2020-10-19 stsp
423 0a9483d0 2020-10-19 stsp base = basename(buf);
424 f2ea84fa 2019-07-27 stsp if (base == NULL)
425 f2ea84fa 2019-07-27 stsp return got_error_from_errno2("basename", path);
426 f2ea84fa 2019-07-27 stsp
427 f2ea84fa 2019-07-27 stsp *s = strdup(base);
428 f2ea84fa 2019-07-27 stsp if (*s == NULL)
429 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
430 d1667f0d 2019-03-11 stsp
431 d1667f0d 2019-03-11 stsp return NULL;
432 0cd1c46a 2019-03-11 stsp }
433 72151b04 2019-05-11 stsp
434 72151b04 2019-05-11 stsp void
435 72151b04 2019-05-11 stsp got_path_strip_trailing_slashes(char *path)
436 72151b04 2019-05-11 stsp {
437 455de7fa 2020-01-12 tb size_t x;
438 72151b04 2019-05-11 stsp
439 455de7fa 2020-01-12 tb x = strlen(path);
440 455de7fa 2020-01-12 tb while (x-- > 0 && path[x] == '/')
441 72151b04 2019-05-11 stsp path[x] = '\0';
442 0ee7065d 2019-05-13 stsp }
443 0ee7065d 2019-05-13 stsp
444 08680430 2019-05-13 stsp /* based on findprog() from usr.sbin/which/which.c */
445 0ee7065d 2019-05-13 stsp const struct got_error *
446 0ee7065d 2019-05-13 stsp got_path_find_prog(char **filename, const char *prog)
447 0ee7065d 2019-05-13 stsp {
448 202329ae 2019-08-11 stsp const struct got_error *err = NULL;
449 0ee7065d 2019-05-13 stsp char *p;
450 0ee7065d 2019-05-13 stsp int len;
451 0ee7065d 2019-05-13 stsp struct stat sbuf;
452 0ee7065d 2019-05-13 stsp char *path, *pathcpy;
453 0ee7065d 2019-05-13 stsp
454 0ee7065d 2019-05-13 stsp *filename = NULL;
455 0ee7065d 2019-05-13 stsp
456 0ee7065d 2019-05-13 stsp path = getenv("PATH");
457 0ee7065d 2019-05-13 stsp if (path == NULL)
458 0ee7065d 2019-05-13 stsp path = _PATH_DEFPATH;
459 0ee7065d 2019-05-13 stsp
460 0ee7065d 2019-05-13 stsp /* Special case if prog contains '/' */
461 0ee7065d 2019-05-13 stsp if (strchr(prog, '/')) {
462 0ee7065d 2019-05-13 stsp if ((stat(prog, &sbuf) == 0) && S_ISREG(sbuf.st_mode) &&
463 0ee7065d 2019-05-13 stsp access(prog, X_OK) == 0) {
464 0ee7065d 2019-05-13 stsp *filename = strdup(prog);
465 0ee7065d 2019-05-13 stsp if (*filename == NULL)
466 0ee7065d 2019-05-13 stsp return got_error_from_errno("strdup");
467 0ee7065d 2019-05-13 stsp }
468 0ee7065d 2019-05-13 stsp return NULL;
469 0ee7065d 2019-05-13 stsp }
470 0ee7065d 2019-05-13 stsp
471 0ee7065d 2019-05-13 stsp if ((path = strdup(path)) == NULL)
472 0ee7065d 2019-05-13 stsp return got_error_from_errno("strdup");
473 0ee7065d 2019-05-13 stsp pathcpy = path;
474 0ee7065d 2019-05-13 stsp
475 0ee7065d 2019-05-13 stsp while ((p = strsep(&pathcpy, ":")) != NULL) {
476 0ee7065d 2019-05-13 stsp if (*p == '\0')
477 0ee7065d 2019-05-13 stsp p = ".";
478 0ee7065d 2019-05-13 stsp
479 0ee7065d 2019-05-13 stsp len = strlen(p);
480 0ee7065d 2019-05-13 stsp while (len > 0 && p[len-1] == '/')
481 0ee7065d 2019-05-13 stsp p[--len] = '\0'; /* strip trailing '/' */
482 0ee7065d 2019-05-13 stsp
483 0ee7065d 2019-05-13 stsp if (asprintf(filename, "%s/%s", p, prog) == -1) {
484 202329ae 2019-08-11 stsp err = got_error_from_errno("asprintf");
485 718ef3e9 2019-08-11 stsp break;
486 0ee7065d 2019-05-13 stsp }
487 0ee7065d 2019-05-13 stsp if ((stat(*filename, &sbuf) == 0) && S_ISREG(sbuf.st_mode) &&
488 718ef3e9 2019-08-11 stsp access(*filename, X_OK) == 0)
489 718ef3e9 2019-08-11 stsp break;
490 0ee7065d 2019-05-13 stsp free(*filename);
491 0ee7065d 2019-05-13 stsp *filename = NULL;
492 0ee7065d 2019-05-13 stsp continue;
493 0ee7065d 2019-05-13 stsp }
494 0ee7065d 2019-05-13 stsp free(path);
495 5cade901 2019-09-22 stsp return err;
496 2c7829a4 2019-06-17 stsp }
497 2c7829a4 2019-06-17 stsp
498 2c7829a4 2019-06-17 stsp const struct got_error *
499 2c7829a4 2019-06-17 stsp got_path_create_file(const char *path, const char *content)
500 2c7829a4 2019-06-17 stsp {
501 2c7829a4 2019-06-17 stsp const struct got_error *err = NULL;
502 2c7829a4 2019-06-17 stsp int fd = -1;
503 2c7829a4 2019-06-17 stsp
504 2c7829a4 2019-06-17 stsp fd = open(path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW,
505 2c7829a4 2019-06-17 stsp GOT_DEFAULT_FILE_MODE);
506 2c7829a4 2019-06-17 stsp if (fd == -1) {
507 2c7829a4 2019-06-17 stsp err = got_error_from_errno2("open", path);
508 2c7829a4 2019-06-17 stsp goto done;
509 2c7829a4 2019-06-17 stsp }
510 2c7829a4 2019-06-17 stsp
511 2c7829a4 2019-06-17 stsp if (content) {
512 2c7829a4 2019-06-17 stsp int len = dprintf(fd, "%s\n", content);
513 2c7829a4 2019-06-17 stsp if (len != strlen(content) + 1) {
514 2c7829a4 2019-06-17 stsp err = got_error_from_errno("dprintf");
515 2c7829a4 2019-06-17 stsp goto done;
516 2c7829a4 2019-06-17 stsp }
517 2c7829a4 2019-06-17 stsp }
518 2c7829a4 2019-06-17 stsp
519 2c7829a4 2019-06-17 stsp done:
520 2c7829a4 2019-06-17 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
521 2c7829a4 2019-06-17 stsp err = got_error_from_errno("close");
522 2c7829a4 2019-06-17 stsp return err;
523 72151b04 2019-05-11 stsp }