]>
Commit | Line | Data |
---|---|---|
e9ce8d39 A |
1 | /* |
2 | * Copyright (c) 1999 Apple Computer, Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
734aad71 A |
6 | * This file contains Original Code and/or Modifications of Original Code |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. Please obtain a copy of the License at | |
10 | * http://www.opensource.apple.com/apsl/ and read it before using this | |
11 | * file. | |
12 | * | |
13 | * The Original Code and all software distributed under the License are | |
14 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
e9ce8d39 A |
15 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
16 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
734aad71 A |
17 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
18 | * Please see the License for the specific language governing rights and | |
19 | * limitations under the License. | |
e9ce8d39 A |
20 | * |
21 | * @APPLE_LICENSE_HEADER_END@ | |
22 | */ | |
23 | /* | |
24 | * Copyright (c) 1990, 1993, 1994 | |
25 | * The Regents of the University of California. All rights reserved. | |
26 | * | |
27 | * Redistribution and use in source and binary forms, with or without | |
28 | * modification, are permitted provided that the following conditions | |
29 | * are met: | |
30 | * 1. Redistributions of source code must retain the above copyright | |
31 | * notice, this list of conditions and the following disclaimer. | |
32 | * 2. Redistributions in binary form must reproduce the above copyright | |
33 | * notice, this list of conditions and the following disclaimer in the | |
34 | * documentation and/or other materials provided with the distribution. | |
35 | * 3. All advertising materials mentioning features or use of this software | |
36 | * must display the following acknowledgement: | |
37 | * This product includes software developed by the University of | |
38 | * California, Berkeley and its contributors. | |
39 | * 4. Neither the name of the University nor the names of its contributors | |
40 | * may be used to endorse or promote products derived from this software | |
41 | * without specific prior written permission. | |
42 | * | |
43 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
44 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
45 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
46 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
47 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
48 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
49 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
50 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
51 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
52 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
53 | * SUCH DAMAGE. | |
54 | */ | |
55 | ||
56 | ||
57 | #include <sys/param.h> | |
58 | #include <sys/stat.h> | |
59 | ||
60 | #include <dirent.h> | |
61 | #include <errno.h> | |
62 | #include <fcntl.h> | |
63 | #include <fts.h> | |
64 | #include <stdlib.h> | |
65 | #include <string.h> | |
66 | #include <unistd.h> | |
67 | ||
9385eb3d A |
68 | static FTSENT *fts_alloc(FTS *, char *, int); |
69 | static FTSENT *fts_build(FTS *, int); | |
70 | static void fts_lfree(FTSENT *); | |
71 | static void fts_load(FTS *, FTSENT *); | |
72 | static size_t fts_maxarglen(char * const *); | |
73 | static void fts_padjust(FTS *, void *); | |
74 | static int fts_palloc(FTS *, size_t); | |
75 | static FTSENT *fts_sort(FTS *, FTSENT *, int); | |
76 | static u_short fts_stat(FTS *, FTSENT *, int); | |
e9ce8d39 A |
77 | |
78 | #define ISDOT(a) (a[0] == '.' && (!a[1] || a[1] == '.' && !a[2])) | |
79 | ||
80 | #define ISSET(opt) (sp->fts_options & opt) | |
81 | #define SET(opt) (sp->fts_options |= opt) | |
82 | ||
83 | #define CHDIR(sp, path) (!ISSET(FTS_NOCHDIR) && chdir(path)) | |
84 | #define FCHDIR(sp, fd) (!ISSET(FTS_NOCHDIR) && fchdir(fd)) | |
85 | ||
86 | /* fts_build flags */ | |
87 | #define BCHILD 1 /* fts_children */ | |
88 | #define BNAMES 2 /* fts_children, names only */ | |
89 | #define BREAD 3 /* fts_read */ | |
90 | ||
91 | FTS * | |
92 | fts_open(argv, options, compar) | |
93 | char * const *argv; | |
94 | register int options; | |
95 | int (*compar)(); | |
96 | { | |
97 | register FTS *sp; | |
98 | register FTSENT *p, *root; | |
99 | register int nitems; | |
100 | FTSENT *parent, *tmp; | |
101 | int len; | |
102 | ||
103 | /* Options check. */ | |
104 | if (options & ~FTS_OPTIONMASK) { | |
105 | errno = EINVAL; | |
106 | return (NULL); | |
107 | } | |
108 | ||
109 | /* Allocate/initialize the stream */ | |
110 | if ((sp = malloc((u_int)sizeof(FTS))) == NULL) | |
111 | return (NULL); | |
112 | memset(sp, 0, sizeof(FTS)); | |
113 | sp->fts_compar = compar; | |
114 | sp->fts_options = options; | |
115 | ||
116 | /* Logical walks turn on NOCHDIR; symbolic links are too hard. */ | |
117 | if (ISSET(FTS_LOGICAL)) | |
118 | SET(FTS_NOCHDIR); | |
119 | ||
120 | /* | |
121 | * Start out with 1K of path space, and enough, in any case, | |
122 | * to hold the user's paths. | |
123 | */ | |
124 | if (fts_palloc(sp, MAX(fts_maxarglen(argv), MAXPATHLEN))) | |
125 | goto mem1; | |
126 | ||
127 | /* Allocate/initialize root's parent. */ | |
128 | if ((parent = fts_alloc(sp, "", 0)) == NULL) | |
129 | goto mem2; | |
130 | parent->fts_level = FTS_ROOTPARENTLEVEL; | |
131 | ||
132 | /* Allocate/initialize root(s). */ | |
133 | for (root = NULL, nitems = 0; *argv; ++argv, ++nitems) { | |
134 | /* Don't allow zero-length paths. */ | |
135 | if ((len = strlen(*argv)) == 0) { | |
136 | errno = ENOENT; | |
137 | goto mem3; | |
138 | } | |
139 | ||
140 | p = fts_alloc(sp, *argv, len); | |
141 | p->fts_level = FTS_ROOTLEVEL; | |
142 | p->fts_parent = parent; | |
143 | p->fts_accpath = p->fts_name; | |
144 | p->fts_info = fts_stat(sp, p, ISSET(FTS_COMFOLLOW)); | |
145 | ||
146 | /* Command-line "." and ".." are real directories. */ | |
147 | if (p->fts_info == FTS_DOT) | |
148 | p->fts_info = FTS_D; | |
149 | ||
150 | /* | |
151 | * If comparison routine supplied, traverse in sorted | |
152 | * order; otherwise traverse in the order specified. | |
153 | */ | |
154 | if (compar) { | |
155 | p->fts_link = root; | |
156 | root = p; | |
157 | } else { | |
158 | p->fts_link = NULL; | |
159 | if (root == NULL) | |
160 | tmp = root = p; | |
161 | else { | |
162 | tmp->fts_link = p; | |
163 | tmp = p; | |
164 | } | |
165 | } | |
166 | } | |
167 | if (compar && nitems > 1) | |
168 | root = fts_sort(sp, root, nitems); | |
169 | ||
170 | /* | |
171 | * Allocate a dummy pointer and make fts_read think that we've just | |
172 | * finished the node before the root(s); set p->fts_info to FTS_INIT | |
173 | * so that everything about the "current" node is ignored. | |
174 | */ | |
175 | if ((sp->fts_cur = fts_alloc(sp, "", 0)) == NULL) | |
176 | goto mem3; | |
177 | sp->fts_cur->fts_link = root; | |
178 | sp->fts_cur->fts_info = FTS_INIT; | |
179 | ||
180 | /* | |
181 | * If using chdir(2), grab a file descriptor pointing to dot to insure | |
182 | * that we can get back here; this could be avoided for some paths, | |
183 | * but almost certainly not worth the effort. Slashes, symbolic links, | |
184 | * and ".." are all fairly nasty problems. Note, if we can't get the | |
185 | * descriptor we run anyway, just more slowly. | |
186 | */ | |
187 | if (!ISSET(FTS_NOCHDIR) && (sp->fts_rfd = open(".", O_RDONLY, 0)) < 0) | |
188 | SET(FTS_NOCHDIR); | |
189 | ||
190 | return (sp); | |
191 | ||
192 | mem3: fts_lfree(root); | |
193 | free(parent); | |
194 | mem2: free(sp->fts_path); | |
195 | mem1: free(sp); | |
196 | return (NULL); | |
197 | } | |
198 | ||
199 | static void | |
200 | fts_load(sp, p) | |
201 | FTS *sp; | |
202 | register FTSENT *p; | |
203 | { | |
204 | register int len; | |
205 | register char *cp; | |
206 | ||
207 | /* | |
208 | * Load the stream structure for the next traversal. Since we don't | |
209 | * actually enter the directory until after the preorder visit, set | |
210 | * the fts_accpath field specially so the chdir gets done to the right | |
211 | * place and the user can access the first node. From fts_open it's | |
212 | * known that the path will fit. | |
213 | */ | |
214 | len = p->fts_pathlen = p->fts_namelen; | |
215 | memmove(sp->fts_path, p->fts_name, len + 1); | |
216 | if ((cp = strrchr(p->fts_name, '/')) && (cp != p->fts_name || cp[1])) { | |
217 | len = strlen(++cp); | |
218 | memmove(p->fts_name, cp, len + 1); | |
219 | p->fts_namelen = len; | |
220 | } | |
221 | p->fts_accpath = p->fts_path = sp->fts_path; | |
222 | sp->fts_dev = p->fts_dev; | |
223 | } | |
224 | ||
225 | int | |
226 | fts_close(sp) | |
227 | FTS *sp; | |
228 | { | |
229 | register FTSENT *freep, *p; | |
230 | int saved_errno = 0; | |
231 | ||
232 | /* | |
233 | * This still works if we haven't read anything -- the dummy structure | |
234 | * points to the root list, so we step through to the end of the root | |
235 | * list which has a valid parent pointer. | |
236 | */ | |
237 | if (sp->fts_cur) { | |
238 | for (p = sp->fts_cur; p->fts_level >= FTS_ROOTLEVEL;) { | |
239 | freep = p; | |
240 | p = p->fts_link ? p->fts_link : p->fts_parent; | |
241 | free(freep); | |
242 | } | |
243 | free(p); | |
244 | } | |
245 | ||
246 | /* Free up child linked list, sort array, path buffer. */ | |
247 | if (sp->fts_child) | |
248 | fts_lfree(sp->fts_child); | |
249 | if (sp->fts_array) | |
250 | free(sp->fts_array); | |
251 | free(sp->fts_path); | |
252 | ||
253 | /* Return to original directory, save errno if necessary. */ | |
254 | if (!ISSET(FTS_NOCHDIR)) { | |
255 | if (fchdir(sp->fts_rfd)) { | |
256 | saved_errno = errno; | |
257 | } | |
258 | (void)close(sp->fts_rfd); | |
259 | } | |
260 | ||
261 | /* Free up the stream pointer. */ | |
262 | free(sp); | |
263 | ||
264 | /* Set errno and return. */ | |
265 | if (saved_errno) { | |
266 | errno = saved_errno; | |
267 | return (-1); | |
268 | } | |
269 | return (0); | |
270 | } | |
271 | ||
272 | /* | |
273 | * Special case a root of "/" so that slashes aren't appended which would | |
274 | * cause paths to be written as "//foo". | |
275 | */ | |
276 | #define NAPPEND(p) \ | |
277 | (p->fts_level == FTS_ROOTLEVEL && p->fts_pathlen == 1 && \ | |
278 | p->fts_path[0] == '/' ? 0 : p->fts_pathlen) | |
279 | ||
280 | FTSENT * | |
281 | fts_read(sp) | |
282 | register FTS *sp; | |
283 | { | |
284 | register FTSENT *p, *tmp; | |
285 | register int instr; | |
286 | register char *t; | |
287 | int saved_errno; | |
288 | ||
289 | /* If finished or unrecoverable error, return NULL. */ | |
290 | if (sp->fts_cur == NULL || ISSET(FTS_STOP)) | |
291 | return (NULL); | |
292 | ||
293 | /* Set current node pointer. */ | |
294 | p = sp->fts_cur; | |
295 | ||
296 | /* Save and zero out user instructions. */ | |
297 | instr = p->fts_instr; | |
298 | p->fts_instr = FTS_NOINSTR; | |
299 | ||
300 | /* Any type of file may be re-visited; re-stat and re-turn. */ | |
301 | if (instr == FTS_AGAIN) { | |
302 | p->fts_info = fts_stat(sp, p, 0); | |
303 | return (p); | |
304 | } | |
305 | ||
306 | /* | |
307 | * Following a symlink -- SLNONE test allows application to see | |
308 | * SLNONE and recover. If indirecting through a symlink, have | |
309 | * keep a pointer to current location. If unable to get that | |
310 | * pointer, follow fails. | |
311 | */ | |
312 | if (instr == FTS_FOLLOW && | |
313 | (p->fts_info == FTS_SL || p->fts_info == FTS_SLNONE)) { | |
314 | p->fts_info = fts_stat(sp, p, 1); | |
315 | if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR)) | |
316 | if ((p->fts_symfd = open(".", O_RDONLY, 0)) < 0) { | |
317 | p->fts_errno = errno; | |
318 | p->fts_info = FTS_ERR; | |
319 | } else | |
320 | p->fts_flags |= FTS_SYMFOLLOW; | |
321 | return (p); | |
322 | } | |
323 | ||
324 | /* Directory in pre-order. */ | |
325 | if (p->fts_info == FTS_D) { | |
326 | /* If skipped or crossed mount point, do post-order visit. */ | |
327 | if (instr == FTS_SKIP || | |
328 | ISSET(FTS_XDEV) && p->fts_dev != sp->fts_dev) { | |
329 | if (p->fts_flags & FTS_SYMFOLLOW) | |
330 | (void)close(p->fts_symfd); | |
331 | if (sp->fts_child) { | |
332 | fts_lfree(sp->fts_child); | |
333 | sp->fts_child = NULL; | |
334 | } | |
335 | p->fts_info = FTS_DP; | |
336 | return (p); | |
337 | } | |
338 | ||
339 | /* Rebuild if only read the names and now traversing. */ | |
340 | if (sp->fts_child && sp->fts_options & FTS_NAMEONLY) { | |
341 | sp->fts_options &= ~FTS_NAMEONLY; | |
342 | fts_lfree(sp->fts_child); | |
343 | sp->fts_child = NULL; | |
344 | } | |
345 | ||
346 | /* | |
347 | * Cd to the subdirectory. | |
348 | * | |
349 | * If have already read and now fail to chdir, whack the list | |
350 | * to make the names come out right, and set the parent errno | |
351 | * so the application will eventually get an error condition. | |
352 | * Set the FTS_DONTCHDIR flag so that when we logically change | |
353 | * directories back to the parent we don't do a chdir. | |
354 | * | |
355 | * If haven't read do so. If the read fails, fts_build sets | |
356 | * FTS_STOP or the fts_info field of the node. | |
357 | */ | |
358 | if (sp->fts_child) { | |
359 | if (CHDIR(sp, p->fts_accpath)) { | |
360 | p->fts_errno = errno; | |
361 | p->fts_flags |= FTS_DONTCHDIR; | |
362 | for (p = sp->fts_child; p; p = p->fts_link) | |
363 | p->fts_accpath = | |
364 | p->fts_parent->fts_accpath; | |
365 | } | |
366 | } else if ((sp->fts_child = fts_build(sp, BREAD)) == NULL) { | |
367 | if (ISSET(FTS_STOP)) | |
368 | return (NULL); | |
369 | return (p); | |
370 | } | |
371 | p = sp->fts_child; | |
372 | sp->fts_child = NULL; | |
373 | goto name; | |
374 | } | |
375 | ||
376 | /* Move to the next node on this level. */ | |
377 | next: tmp = p; | |
378 | if (p = p->fts_link) { | |
379 | free(tmp); | |
380 | ||
381 | /* | |
382 | * If reached the top, return to the original directory, and | |
383 | * load the paths for the next root. | |
384 | */ | |
385 | if (p->fts_level == FTS_ROOTLEVEL) { | |
386 | if (!ISSET(FTS_NOCHDIR) && FCHDIR(sp, sp->fts_rfd)) { | |
387 | SET(FTS_STOP); | |
388 | return (NULL); | |
389 | } | |
390 | fts_load(sp, p); | |
391 | return (sp->fts_cur = p); | |
392 | } | |
393 | ||
394 | /* | |
395 | * User may have called fts_set on the node. If skipped, | |
396 | * ignore. If followed, get a file descriptor so we can | |
397 | * get back if necessary. | |
398 | */ | |
399 | if (p->fts_instr == FTS_SKIP) | |
400 | goto next; | |
401 | if (p->fts_instr == FTS_FOLLOW) { | |
402 | p->fts_info = fts_stat(sp, p, 1); | |
403 | if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR)) | |
404 | if ((p->fts_symfd = | |
405 | open(".", O_RDONLY, 0)) < 0) { | |
406 | p->fts_errno = errno; | |
407 | p->fts_info = FTS_ERR; | |
408 | } else | |
409 | p->fts_flags |= FTS_SYMFOLLOW; | |
410 | p->fts_instr = FTS_NOINSTR; | |
411 | } | |
412 | ||
413 | name: t = sp->fts_path + NAPPEND(p->fts_parent); | |
414 | *t++ = '/'; | |
415 | memmove(t, p->fts_name, p->fts_namelen + 1); | |
416 | return (sp->fts_cur = p); | |
417 | } | |
418 | ||
419 | /* Move up to the parent node. */ | |
420 | p = tmp->fts_parent; | |
421 | free(tmp); | |
422 | ||
423 | if (p->fts_level == FTS_ROOTPARENTLEVEL) { | |
424 | /* | |
425 | * Done; free everything up and set errno to 0 so the user | |
426 | * can distinguish between error and EOF. | |
427 | */ | |
428 | free(p); | |
429 | errno = 0; | |
430 | return (sp->fts_cur = NULL); | |
431 | } | |
432 | ||
433 | /* Nul terminate the pathname. */ | |
434 | sp->fts_path[p->fts_pathlen] = '\0'; | |
435 | ||
436 | /* | |
437 | * Return to the parent directory. If at a root node or came through | |
438 | * a symlink, go back through the file descriptor. Otherwise, cd up | |
439 | * one directory. | |
440 | */ | |
441 | if (p->fts_level == FTS_ROOTLEVEL) { | |
442 | if (!ISSET(FTS_NOCHDIR) && FCHDIR(sp, sp->fts_rfd)) { | |
443 | SET(FTS_STOP); | |
444 | return (NULL); | |
445 | } | |
446 | } else if (p->fts_flags & FTS_SYMFOLLOW) { | |
447 | if (FCHDIR(sp, p->fts_symfd)) { | |
448 | saved_errno = errno; | |
449 | (void)close(p->fts_symfd); | |
450 | errno = saved_errno; | |
451 | SET(FTS_STOP); | |
452 | return (NULL); | |
453 | } | |
454 | (void)close(p->fts_symfd); | |
455 | } else if (!(p->fts_flags & FTS_DONTCHDIR)) { | |
456 | if (CHDIR(sp, "..")) { | |
457 | SET(FTS_STOP); | |
458 | return (NULL); | |
459 | } | |
460 | } | |
461 | p->fts_info = p->fts_errno ? FTS_ERR : FTS_DP; | |
462 | return (sp->fts_cur = p); | |
463 | } | |
464 | ||
465 | /* | |
466 | * Fts_set takes the stream as an argument although it's not used in this | |
467 | * implementation; it would be necessary if anyone wanted to add global | |
468 | * semantics to fts using fts_set. An error return is allowed for similar | |
469 | * reasons. | |
470 | */ | |
471 | /* ARGSUSED */ | |
472 | int | |
473 | fts_set(sp, p, instr) | |
474 | FTS *sp; | |
475 | FTSENT *p; | |
476 | int instr; | |
477 | { | |
478 | if (instr && instr != FTS_AGAIN && instr != FTS_FOLLOW && | |
479 | instr != FTS_NOINSTR && instr != FTS_SKIP) { | |
480 | errno = EINVAL; | |
481 | return (1); | |
482 | } | |
483 | p->fts_instr = instr; | |
484 | return (0); | |
485 | } | |
486 | ||
487 | FTSENT * | |
488 | fts_children(sp, instr) | |
489 | register FTS *sp; | |
490 | int instr; | |
491 | { | |
492 | register FTSENT *p; | |
493 | int fd; | |
494 | ||
495 | if (instr && instr != FTS_NAMEONLY) { | |
496 | errno = EINVAL; | |
497 | return (NULL); | |
498 | } | |
499 | ||
500 | /* Set current node pointer. */ | |
501 | p = sp->fts_cur; | |
502 | ||
503 | /* | |
504 | * Errno set to 0 so user can distinguish empty directory from | |
505 | * an error. | |
506 | */ | |
507 | errno = 0; | |
508 | ||
509 | /* Fatal errors stop here. */ | |
510 | if (ISSET(FTS_STOP)) | |
511 | return (NULL); | |
512 | ||
513 | /* Return logical hierarchy of user's arguments. */ | |
514 | if (p->fts_info == FTS_INIT) | |
515 | return (p->fts_link); | |
516 | ||
517 | /* | |
518 | * If not a directory being visited in pre-order, stop here. Could | |
519 | * allow FTS_DNR, assuming the user has fixed the problem, but the | |
520 | * same effect is available with FTS_AGAIN. | |
521 | */ | |
522 | if (p->fts_info != FTS_D /* && p->fts_info != FTS_DNR */) | |
523 | return (NULL); | |
524 | ||
525 | /* Free up any previous child list. */ | |
526 | if (sp->fts_child) | |
527 | fts_lfree(sp->fts_child); | |
528 | ||
529 | if (instr == FTS_NAMEONLY) { | |
530 | sp->fts_options |= FTS_NAMEONLY; | |
531 | instr = BNAMES; | |
532 | } else | |
533 | instr = BCHILD; | |
534 | ||
535 | /* | |
536 | * If using chdir on a relative path and called BEFORE fts_read does | |
537 | * its chdir to the root of a traversal, we can lose -- we need to | |
538 | * chdir into the subdirectory, and we don't know where the current | |
539 | * directory is, so we can't get back so that the upcoming chdir by | |
540 | * fts_read will work. | |
541 | */ | |
542 | if (p->fts_level != FTS_ROOTLEVEL || p->fts_accpath[0] == '/' || | |
543 | ISSET(FTS_NOCHDIR)) | |
544 | return (sp->fts_child = fts_build(sp, instr)); | |
545 | ||
546 | if ((fd = open(".", O_RDONLY, 0)) < 0) | |
547 | return (NULL); | |
548 | sp->fts_child = fts_build(sp, instr); | |
549 | if (fchdir(fd)) | |
550 | return (NULL); | |
551 | (void)close(fd); | |
552 | return (sp->fts_child); | |
553 | } | |
554 | ||
555 | /* | |
556 | * This is the tricky part -- do not casually change *anything* in here. The | |
557 | * idea is to build the linked list of entries that are used by fts_children | |
558 | * and fts_read. There are lots of special cases. | |
559 | * | |
560 | * The real slowdown in walking the tree is the stat calls. If FTS_NOSTAT is | |
561 | * set and it's a physical walk (so that symbolic links can't be directories), | |
562 | * we can do things quickly. First, if it's a 4.4BSD file system, the type | |
563 | * of the file is in the directory entry. Otherwise, we assume that the number | |
564 | * of subdirectories in a node is equal to the number of links to the parent. | |
565 | * The former skips all stat calls. The latter skips stat calls in any leaf | |
566 | * directories and for any files after the subdirectories in the directory have | |
567 | * been found, cutting the stat calls by about 2/3. | |
568 | */ | |
569 | static FTSENT * | |
570 | fts_build(sp, type) | |
571 | register FTS *sp; | |
572 | int type; | |
573 | { | |
574 | register struct dirent *dp; | |
575 | register FTSENT *p, *head; | |
576 | register int nitems; | |
577 | FTSENT *cur, *tail; | |
578 | DIR *dirp; | |
579 | void *adjaddr; | |
580 | int cderrno, descend, len, level, maxlen, nlinks, oflag, saved_errno; | |
581 | char *cp; | |
582 | ||
583 | /* Set current node pointer. */ | |
584 | cur = sp->fts_cur; | |
585 | ||
586 | /* | |
587 | * Open the directory for reading. If this fails, we're done. | |
588 | * If being called from fts_read, set the fts_info field. | |
589 | */ | |
590 | #ifdef FTS_WHITEOUT | |
591 | if (ISSET(FTS_WHITEOUT)) | |
592 | oflag = DTF_NODUP|DTF_REWIND; | |
593 | else | |
594 | oflag = DTF_HIDEW|DTF_NODUP|DTF_REWIND; | |
595 | #else | |
596 | #define __opendir2(path, flag) opendir(path) | |
597 | #endif | |
598 | if ((dirp = __opendir2(cur->fts_accpath, oflag)) == NULL) { | |
599 | if (type == BREAD) { | |
600 | cur->fts_info = FTS_DNR; | |
601 | cur->fts_errno = errno; | |
602 | } | |
603 | return (NULL); | |
604 | } | |
605 | ||
606 | /* | |
607 | * Nlinks is the number of possible entries of type directory in the | |
608 | * directory if we're cheating on stat calls, 0 if we're not doing | |
609 | * any stat calls at all, -1 if we're doing stats on everything. | |
610 | */ | |
611 | if (type == BNAMES) | |
612 | nlinks = 0; | |
613 | else if (ISSET(FTS_NOSTAT) && ISSET(FTS_PHYSICAL)) | |
614 | nlinks = cur->fts_nlink - (ISSET(FTS_SEEDOT) ? 0 : 2); | |
615 | else | |
616 | nlinks = -1; | |
617 | ||
618 | #ifdef notdef | |
619 | (void)printf("nlinks == %d (cur: %d)\n", nlinks, cur->fts_nlink); | |
620 | (void)printf("NOSTAT %d PHYSICAL %d SEEDOT %d\n", | |
621 | ISSET(FTS_NOSTAT), ISSET(FTS_PHYSICAL), ISSET(FTS_SEEDOT)); | |
622 | #endif | |
623 | /* | |
624 | * If we're going to need to stat anything or we want to descend | |
625 | * and stay in the directory, chdir. If this fails we keep going, | |
626 | * but set a flag so we don't chdir after the post-order visit. | |
627 | * We won't be able to stat anything, but we can still return the | |
628 | * names themselves. Note, that since fts_read won't be able to | |
629 | * chdir into the directory, it will have to return different path | |
630 | * names than before, i.e. "a/b" instead of "b". Since the node | |
631 | * has already been visited in pre-order, have to wait until the | |
632 | * post-order visit to return the error. There is a special case | |
633 | * here, if there was nothing to stat then it's not an error to | |
634 | * not be able to stat. This is all fairly nasty. If a program | |
635 | * needed sorted entries or stat information, they had better be | |
636 | * checking FTS_NS on the returned nodes. | |
637 | */ | |
638 | cderrno = 0; | |
639 | if (nlinks || type == BREAD) | |
640 | if (FCHDIR(sp, dirfd(dirp))) { | |
641 | if (nlinks && type == BREAD) | |
642 | cur->fts_errno = errno; | |
643 | cur->fts_flags |= FTS_DONTCHDIR; | |
644 | descend = 0; | |
645 | cderrno = errno; | |
646 | } else | |
647 | descend = 1; | |
648 | else | |
649 | descend = 0; | |
650 | ||
651 | /* | |
652 | * Figure out the max file name length that can be stored in the | |
653 | * current path -- the inner loop allocates more path as necessary. | |
654 | * We really wouldn't have to do the maxlen calculations here, we | |
655 | * could do them in fts_read before returning the path, but it's a | |
656 | * lot easier here since the length is part of the dirent structure. | |
657 | * | |
658 | * If not changing directories set a pointer so that can just append | |
659 | * each new name into the path. | |
660 | */ | |
661 | maxlen = sp->fts_pathlen - cur->fts_pathlen - 1; | |
662 | len = NAPPEND(cur); | |
663 | if (ISSET(FTS_NOCHDIR)) { | |
664 | cp = sp->fts_path + len; | |
665 | *cp++ = '/'; | |
666 | } | |
667 | ||
668 | level = cur->fts_level + 1; | |
669 | ||
670 | /* Read the directory, attaching each entry to the `link' pointer. */ | |
671 | adjaddr = NULL; | |
672 | for (head = tail = NULL, nitems = 0; dp = readdir(dirp);) { | |
673 | if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name)) | |
674 | continue; | |
675 | ||
676 | if ((p = fts_alloc(sp, dp->d_name, (int)dp->d_namlen)) == NULL) | |
677 | goto mem1; | |
678 | if (dp->d_namlen > maxlen) { | |
679 | if (fts_palloc(sp, (size_t)dp->d_namlen)) { | |
680 | /* | |
681 | * No more memory for path or structures. Save | |
682 | * errno, free up the current structure and the | |
683 | * structures already allocated. | |
684 | */ | |
685 | mem1: saved_errno = errno; | |
686 | if (p) | |
687 | free(p); | |
688 | fts_lfree(head); | |
689 | (void)closedir(dirp); | |
690 | errno = saved_errno; | |
691 | cur->fts_info = FTS_ERR; | |
692 | SET(FTS_STOP); | |
693 | return (NULL); | |
694 | } | |
695 | adjaddr = sp->fts_path; | |
696 | maxlen = sp->fts_pathlen - sp->fts_cur->fts_pathlen - 1; | |
697 | } | |
698 | ||
699 | p->fts_pathlen = len + dp->d_namlen + 1; | |
700 | p->fts_parent = sp->fts_cur; | |
701 | p->fts_level = level; | |
702 | ||
703 | #ifdef FTS_WHITEOUT | |
704 | if (dp->d_type == DT_WHT) | |
705 | p->fts_flags |= FTS_ISW; | |
706 | #endif | |
707 | ||
708 | if (cderrno) { | |
709 | if (nlinks) { | |
710 | p->fts_info = FTS_NS; | |
711 | p->fts_errno = cderrno; | |
712 | } else | |
713 | p->fts_info = FTS_NSOK; | |
714 | p->fts_accpath = cur->fts_accpath; | |
715 | } else if (nlinks == 0 | |
716 | #ifdef DT_DIR | |
717 | || nlinks > 0 && | |
718 | dp->d_type != DT_DIR && dp->d_type != DT_UNKNOWN | |
719 | #endif | |
720 | ) { | |
721 | p->fts_accpath = | |
722 | ISSET(FTS_NOCHDIR) ? p->fts_path : p->fts_name; | |
723 | p->fts_info = FTS_NSOK; | |
724 | } else { | |
725 | /* Build a file name for fts_stat to stat. */ | |
726 | if (ISSET(FTS_NOCHDIR)) { | |
727 | p->fts_accpath = p->fts_path; | |
728 | memmove(cp, p->fts_name, p->fts_namelen + 1); | |
729 | } else | |
730 | p->fts_accpath = p->fts_name; | |
731 | /* Stat it. */ | |
732 | p->fts_info = fts_stat(sp, p, 0); | |
733 | ||
734 | /* Decrement link count if applicable. */ | |
735 | if (nlinks > 0 && (p->fts_info == FTS_D || | |
736 | p->fts_info == FTS_DC || p->fts_info == FTS_DOT)) | |
737 | --nlinks; | |
738 | } | |
739 | ||
740 | /* We walk in directory order so "ls -f" doesn't get upset. */ | |
741 | p->fts_link = NULL; | |
742 | if (head == NULL) | |
743 | head = tail = p; | |
744 | else { | |
745 | tail->fts_link = p; | |
746 | tail = p; | |
747 | } | |
748 | ++nitems; | |
749 | } | |
750 | (void)closedir(dirp); | |
751 | ||
752 | /* | |
753 | * If had to realloc the path, adjust the addresses for the rest | |
754 | * of the tree. | |
755 | */ | |
756 | if (adjaddr) | |
757 | fts_padjust(sp, adjaddr); | |
758 | ||
759 | /* | |
760 | * If not changing directories, reset the path back to original | |
761 | * state. | |
762 | */ | |
763 | if (ISSET(FTS_NOCHDIR)) { | |
764 | if (cp - 1 > sp->fts_path) | |
765 | --cp; | |
766 | *cp = '\0'; | |
767 | } | |
768 | ||
769 | /* | |
770 | * If descended after called from fts_children or after called from | |
771 | * fts_read and nothing found, get back. At the root level we use | |
772 | * the saved fd; if one of fts_open()'s arguments is a relative path | |
773 | * to an empty directory, we wind up here with no other way back. If | |
774 | * can't get back, we're done. | |
775 | */ | |
776 | if (descend && (type == BCHILD || !nitems) && | |
777 | (cur->fts_level == FTS_ROOTLEVEL ? | |
778 | FCHDIR(sp, sp->fts_rfd) : CHDIR(sp, ".."))) { | |
779 | cur->fts_info = FTS_ERR; | |
780 | SET(FTS_STOP); | |
781 | return (NULL); | |
782 | } | |
783 | ||
784 | /* If didn't find anything, return NULL. */ | |
785 | if (!nitems) { | |
786 | if (type == BREAD) | |
787 | cur->fts_info = FTS_DP; | |
788 | return (NULL); | |
789 | } | |
790 | ||
791 | /* Sort the entries. */ | |
792 | if (sp->fts_compar && nitems > 1) | |
793 | head = fts_sort(sp, head, nitems); | |
794 | return (head); | |
795 | } | |
796 | ||
797 | static u_short | |
798 | fts_stat(sp, p, follow) | |
799 | FTS *sp; | |
800 | register FTSENT *p; | |
801 | int follow; | |
802 | { | |
803 | register FTSENT *t; | |
804 | register dev_t dev; | |
805 | register ino_t ino; | |
806 | struct stat *sbp, sb; | |
807 | int saved_errno; | |
808 | ||
809 | /* If user needs stat info, stat buffer already allocated. */ | |
810 | sbp = ISSET(FTS_NOSTAT) ? &sb : p->fts_statp; | |
811 | ||
812 | #ifdef FTS_WHITEOUT | |
813 | /* check for whiteout */ | |
814 | if (p->fts_flags & FTS_ISW) { | |
815 | if (sbp != &sb) { | |
816 | memset(sbp, '\0', sizeof (*sbp)); | |
817 | sbp->st_mode = S_IFWHT; | |
818 | } | |
819 | return (FTS_W); | |
820 | } | |
821 | #endif | |
822 | ||
823 | /* | |
824 | * If doing a logical walk, or application requested FTS_FOLLOW, do | |
825 | * a stat(2). If that fails, check for a non-existent symlink. If | |
826 | * fail, set the errno from the stat call. | |
827 | */ | |
828 | if (ISSET(FTS_LOGICAL) || follow) { | |
829 | if (stat(p->fts_accpath, sbp)) { | |
830 | saved_errno = errno; | |
831 | if (!lstat(p->fts_accpath, sbp)) { | |
832 | errno = 0; | |
833 | return (FTS_SLNONE); | |
834 | } | |
835 | p->fts_errno = saved_errno; | |
836 | goto err; | |
837 | } | |
838 | } else if (lstat(p->fts_accpath, sbp)) { | |
839 | p->fts_errno = errno; | |
840 | err: memset(sbp, 0, sizeof(struct stat)); | |
841 | return (FTS_NS); | |
842 | } | |
843 | ||
844 | if (S_ISDIR(sbp->st_mode)) { | |
845 | /* | |
846 | * Set the device/inode. Used to find cycles and check for | |
847 | * crossing mount points. Also remember the link count, used | |
848 | * in fts_build to limit the number of stat calls. It is | |
849 | * understood that these fields are only referenced if fts_info | |
850 | * is set to FTS_D. | |
851 | */ | |
852 | dev = p->fts_dev = sbp->st_dev; | |
853 | ino = p->fts_ino = sbp->st_ino; | |
854 | p->fts_nlink = sbp->st_nlink; | |
855 | ||
856 | if (ISDOT(p->fts_name)) | |
857 | return (FTS_DOT); | |
858 | ||
859 | /* | |
860 | * Cycle detection is done by brute force when the directory | |
861 | * is first encountered. If the tree gets deep enough or the | |
862 | * number of symbolic links to directories is high enough, | |
863 | * something faster might be worthwhile. | |
864 | */ | |
865 | for (t = p->fts_parent; | |
866 | t->fts_level >= FTS_ROOTLEVEL; t = t->fts_parent) | |
867 | if (ino == t->fts_ino && dev == t->fts_dev) { | |
868 | p->fts_cycle = t; | |
869 | return (FTS_DC); | |
870 | } | |
871 | return (FTS_D); | |
872 | } | |
873 | if (S_ISLNK(sbp->st_mode)) | |
874 | return (FTS_SL); | |
875 | if (S_ISREG(sbp->st_mode)) | |
876 | return (FTS_F); | |
877 | return (FTS_DEFAULT); | |
878 | } | |
879 | ||
880 | static FTSENT * | |
881 | fts_sort(sp, head, nitems) | |
882 | FTS *sp; | |
883 | FTSENT *head; | |
884 | register int nitems; | |
885 | { | |
886 | register FTSENT **ap, *p; | |
887 | ||
888 | /* | |
889 | * Construct an array of pointers to the structures and call qsort(3). | |
890 | * Reassemble the array in the order returned by qsort. If unable to | |
891 | * sort for memory reasons, return the directory entries in their | |
892 | * current order. Allocate enough space for the current needs plus | |
893 | * 40 so don't realloc one entry at a time. | |
894 | */ | |
895 | if (nitems > sp->fts_nitems) { | |
896 | sp->fts_nitems = nitems + 40; | |
897 | if ((sp->fts_array = realloc(sp->fts_array, | |
898 | (size_t)(sp->fts_nitems * sizeof(FTSENT *)))) == NULL) { | |
899 | sp->fts_nitems = 0; | |
900 | return (head); | |
901 | } | |
902 | } | |
903 | for (ap = sp->fts_array, p = head; p; p = p->fts_link) | |
904 | *ap++ = p; | |
905 | qsort((void *)sp->fts_array, nitems, sizeof(FTSENT *), sp->fts_compar); | |
906 | for (head = *(ap = sp->fts_array); --nitems; ++ap) | |
907 | ap[0]->fts_link = ap[1]; | |
908 | ap[0]->fts_link = NULL; | |
909 | return (head); | |
910 | } | |
911 | ||
912 | static FTSENT * | |
913 | fts_alloc(sp, name, namelen) | |
914 | FTS *sp; | |
915 | char *name; | |
916 | register int namelen; | |
917 | { | |
918 | register FTSENT *p; | |
919 | size_t len; | |
920 | ||
921 | /* | |
922 | * The file name is a variable length array and no stat structure is | |
923 | * necessary if the user has set the nostat bit. Allocate the FTSENT | |
924 | * structure, the file name and the stat structure in one chunk, but | |
925 | * be careful that the stat structure is reasonably aligned. Since the | |
926 | * fts_name field is declared to be of size 1, the fts_name pointer is | |
927 | * namelen + 2 before the first possible address of the stat structure. | |
928 | */ | |
929 | len = sizeof(FTSENT) + namelen; | |
930 | if (!ISSET(FTS_NOSTAT)) | |
931 | len += sizeof(struct stat) + ALIGNBYTES; | |
932 | if ((p = malloc(len)) == NULL) | |
933 | return (NULL); | |
934 | ||
935 | /* Copy the name plus the trailing NULL. */ | |
936 | memmove(p->fts_name, name, namelen + 1); | |
937 | ||
938 | if (!ISSET(FTS_NOSTAT)) | |
939 | p->fts_statp = (struct stat *)ALIGN(p->fts_name + namelen + 2); | |
940 | p->fts_namelen = namelen; | |
941 | p->fts_path = sp->fts_path; | |
942 | p->fts_errno = 0; | |
943 | p->fts_flags = 0; | |
944 | p->fts_instr = FTS_NOINSTR; | |
945 | p->fts_number = 0; | |
946 | p->fts_pointer = NULL; | |
947 | return (p); | |
948 | } | |
949 | ||
950 | static void | |
951 | fts_lfree(head) | |
952 | register FTSENT *head; | |
953 | { | |
954 | register FTSENT *p; | |
955 | ||
956 | /* Free a linked list of structures. */ | |
957 | while (p = head) { | |
958 | head = head->fts_link; | |
959 | free(p); | |
960 | } | |
961 | } | |
962 | ||
963 | /* | |
964 | * Allow essentially unlimited paths; find, rm, ls should all work on any tree. | |
965 | * Most systems will allow creation of paths much longer than MAXPATHLEN, even | |
966 | * though the kernel won't resolve them. Add the size (not just what's needed) | |
967 | * plus 256 bytes so don't realloc the path 2 bytes at a time. | |
968 | */ | |
969 | static int | |
970 | fts_palloc(sp, more) | |
971 | FTS *sp; | |
972 | size_t more; | |
973 | { | |
974 | sp->fts_pathlen += more + 256; | |
975 | sp->fts_path = realloc(sp->fts_path, (size_t)sp->fts_pathlen); | |
976 | return (sp->fts_path == NULL); | |
977 | } | |
978 | ||
979 | /* | |
980 | * When the path is realloc'd, have to fix all of the pointers in structures | |
981 | * already returned. | |
982 | */ | |
983 | static void | |
984 | fts_padjust(sp, addr) | |
985 | FTS *sp; | |
986 | void *addr; | |
987 | { | |
988 | FTSENT *p; | |
989 | ||
990 | #define ADJUST(p) { \ | |
991 | (p)->fts_accpath = \ | |
992 | (char *)addr + ((p)->fts_accpath - (p)->fts_path); \ | |
993 | (p)->fts_path = addr; \ | |
994 | } | |
995 | /* Adjust the current set of children. */ | |
996 | for (p = sp->fts_child; p; p = p->fts_link) | |
997 | ADJUST(p); | |
998 | ||
999 | /* Adjust the rest of the tree. */ | |
1000 | for (p = sp->fts_cur; p->fts_level >= FTS_ROOTLEVEL;) { | |
1001 | ADJUST(p); | |
1002 | p = p->fts_link ? p->fts_link : p->fts_parent; | |
1003 | } | |
1004 | } | |
1005 | ||
1006 | static size_t | |
1007 | fts_maxarglen(argv) | |
1008 | char * const *argv; | |
1009 | { | |
1010 | size_t len, max; | |
1011 | ||
1012 | for (max = 0; *argv; ++argv) | |
1013 | if ((len = strlen(*argv)) > max) | |
1014 | max = len; | |
1015 | return (max); | |
1016 | } |