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