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