Update.
[glibc.git] / io / fts.c
blob4ce65274418771d6a04eb7990f0ee643704b223d
1 /*-
2 * Copyright (c) 1990, 1993, 1994
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.6 (Berkeley) 8/14/94";
36 #endif /* LIBC_SCCS and not lint */
38 #include <sys/param.h>
39 #include <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 *, struct dirent *, FTSENT *, int))
69 internal_function;
71 #ifndef MAX
72 #define MAX(a, b) ({ __typeof__ (a) _a = (a); \
73 __typeof__ (b) _b = (b); \
74 _a > _b ? _a : _b; })
75 #endif
77 #define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2])))
79 #define ISSET(opt) (sp->fts_options & opt)
80 #define SET(opt) (sp->fts_options |= opt)
82 #define CHDIR(sp, path) (!ISSET(FTS_NOCHDIR) && __chdir(path))
83 #define FCHDIR(sp, fd) (!ISSET(FTS_NOCHDIR) && __fchdir(fd))
85 /* fts_build flags */
86 #define BCHILD 1 /* fts_children */
87 #define BNAMES 2 /* fts_children, names only */
88 #define BREAD 3 /* fts_read */
90 FTS *
91 fts_open(argv, options, compar)
92 char * const *argv;
93 register int options;
94 int (*compar) __P((const FTSENT **, const FTSENT **));
96 register FTS *sp;
97 register FTSENT *p, *root;
98 register int nitems;
99 FTSENT *parent, *tmp;
100 int len;
102 /* Options check. */
103 if (options & ~FTS_OPTIONMASK) {
104 __set_errno (EINVAL);
105 return (NULL);
108 /* Allocate/initialize the stream */
109 if ((sp = malloc((u_int)sizeof(FTS))) == NULL)
110 return (NULL);
111 __bzero(sp, sizeof(FTS));
112 sp->fts_compar = (int (*) __P((const void *, const void *))) compar;
113 sp->fts_options = options;
115 /* Logical walks turn on NOCHDIR; symbolic links are too hard. */
116 if (ISSET(FTS_LOGICAL))
117 SET(FTS_NOCHDIR);
120 * Start out with 1K of path space, and enough, in any case,
121 * to hold the user's paths.
123 #ifndef MAXPATHLEN
124 #define MAXPATHLEN 1024
125 #endif
126 if (fts_palloc(sp, MAX(fts_maxarglen(argv), MAXPATHLEN)))
127 goto mem1;
129 /* Allocate/initialize root's parent. */
130 if ((parent = fts_alloc(sp, "", 0)) == NULL)
131 goto mem2;
132 parent->fts_level = FTS_ROOTPARENTLEVEL;
134 /* Allocate/initialize root(s). */
135 for (root = NULL, nitems = 0; *argv; ++argv, ++nitems) {
136 /* Don't allow zero-length paths. */
137 if ((len = strlen(*argv)) == 0) {
138 __set_errno (ENOENT);
139 goto mem3;
142 p = fts_alloc(sp, *argv, len);
143 p->fts_level = FTS_ROOTLEVEL;
144 p->fts_parent = parent;
145 p->fts_accpath = p->fts_name;
146 p->fts_info = fts_stat(sp, NULL, p, ISSET(FTS_COMFOLLOW));
148 /* Command-line "." and ".." are real directories. */
149 if (p->fts_info == FTS_DOT)
150 p->fts_info = FTS_D;
153 * If comparison routine supplied, traverse in sorted
154 * order; otherwise traverse in the order specified.
156 if (compar) {
157 p->fts_link = root;
158 root = p;
159 } else {
160 p->fts_link = NULL;
161 if (root == NULL)
162 tmp = root = p;
163 else {
164 tmp->fts_link = p;
165 tmp = p;
169 if (compar && nitems > 1)
170 root = fts_sort(sp, root, nitems);
173 * Allocate a dummy pointer and make fts_read think that we've just
174 * finished the node before the root(s); set p->fts_info to FTS_INIT
175 * so that everything about the "current" node is ignored.
177 if ((sp->fts_cur = fts_alloc(sp, "", 0)) == NULL)
178 goto mem3;
179 sp->fts_cur->fts_link = root;
180 sp->fts_cur->fts_info = FTS_INIT;
183 * If using chdir(2), grab a file descriptor pointing to dot to insure
184 * that we can get back here; this could be avoided for some paths,
185 * but almost certainly not worth the effort. Slashes, symbolic links,
186 * and ".." are all fairly nasty problems. Note, if we can't get the
187 * descriptor we run anyway, just more slowly.
189 if (!ISSET(FTS_NOCHDIR)
190 && (sp->fts_rfd = __open(".", O_RDONLY, 0)) < 0)
191 SET(FTS_NOCHDIR);
193 return (sp);
195 mem3: fts_lfree(root);
196 free(parent);
197 mem2: free(sp->fts_path);
198 mem1: free(sp);
199 return (NULL);
202 static void
203 fts_load(sp, p)
204 FTS *sp;
205 register FTSENT *p;
207 register int len;
208 register char *cp;
211 * Load the stream structure for the next traversal. Since we don't
212 * actually enter the directory until after the preorder visit, set
213 * the fts_accpath field specially so the chdir gets done to the right
214 * place and the user can access the first node. From fts_open it's
215 * known that the path will fit.
217 len = p->fts_pathlen = p->fts_namelen;
218 bcopy(p->fts_name, sp->fts_path, len + 1);
219 if ((cp = rindex(p->fts_name, '/')) && (cp != p->fts_name || cp[1])) {
220 len = strlen(++cp);
221 bcopy(cp, p->fts_name, len + 1);
222 p->fts_namelen = len;
224 p->fts_accpath = p->fts_path = sp->fts_path;
225 sp->fts_dev = p->fts_dev;
229 fts_close(sp)
230 FTS *sp;
232 register FTSENT *freep, *p;
233 int saved_errno;
236 * This still works if we haven't read anything -- the dummy structure
237 * points to the root list, so we step through to the end of the root
238 * list which has a valid parent pointer.
240 if (sp->fts_cur) {
241 for (p = sp->fts_cur; p->fts_level >= FTS_ROOTLEVEL;) {
242 freep = p;
243 p = p->fts_link ? p->fts_link : p->fts_parent;
244 free(freep);
246 free(p);
249 /* Free up child linked list, sort array, path buffer. */
250 if (sp->fts_child)
251 fts_lfree(sp->fts_child);
252 if (sp->fts_array)
253 free(sp->fts_array);
254 free(sp->fts_path);
256 /* Return to original directory, save errno if necessary. */
257 if (!ISSET(FTS_NOCHDIR)) {
258 saved_errno = __fchdir(sp->fts_rfd) ? errno : 0;
259 (void)__close(sp->fts_rfd);
262 /* Free up the stream pointer. */
263 free(sp);
265 /* Set errno and return. */
266 if (!ISSET(FTS_NOCHDIR) && saved_errno) {
267 __set_errno (saved_errno);
268 return (-1);
270 return (0);
274 * Special case a root of "/" so that slashes aren't appended which would
275 * cause paths to be written as "//foo".
277 #define NAPPEND(p) \
278 (p->fts_level == FTS_ROOTLEVEL && p->fts_pathlen == 1 && \
279 p->fts_path[0] == '/' ? 0 : p->fts_pathlen)
281 FTSENT *
282 fts_read(sp)
283 register FTS *sp;
285 register FTSENT *p, *tmp;
286 register int instr;
287 register char *t;
288 int saved_errno;
290 /* If finished or unrecoverable error, return NULL. */
291 if (sp->fts_cur == NULL || ISSET(FTS_STOP))
292 return (NULL);
294 /* Set current node pointer. */
295 p = sp->fts_cur;
297 /* Save and zero out user instructions. */
298 instr = p->fts_instr;
299 p->fts_instr = FTS_NOINSTR;
301 /* Any type of file may be re-visited; re-stat and re-turn. */
302 if (instr == FTS_AGAIN) {
303 p->fts_info = fts_stat(sp, NULL, p, 0);
304 return (p);
308 * Following a symlink -- SLNONE test allows application to see
309 * SLNONE and recover. If indirecting through a symlink, have
310 * keep a pointer to current location. If unable to get that
311 * pointer, follow fails.
313 if (instr == FTS_FOLLOW &&
314 (p->fts_info == FTS_SL || p->fts_info == FTS_SLNONE)) {
315 p->fts_info = fts_stat(sp, NULL, p, 1);
316 if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR)) {
317 if ((p->fts_symfd = __open(".", O_RDONLY, 0)) < 0) {
318 p->fts_errno = errno;
319 p->fts_info = FTS_ERR;
320 } else
321 p->fts_flags |= FTS_SYMFOLLOW;
323 return (p);
326 /* Directory in pre-order. */
327 if (p->fts_info == FTS_D) {
328 /* If skipped or crossed mount point, do post-order visit. */
329 if (instr == FTS_SKIP ||
330 (ISSET(FTS_XDEV) && p->fts_dev != sp->fts_dev)) {
331 if (p->fts_flags & FTS_SYMFOLLOW)
332 (void)__close(p->fts_symfd);
333 if (sp->fts_child) {
334 fts_lfree(sp->fts_child);
335 sp->fts_child = NULL;
337 p->fts_info = FTS_DP;
338 return (p);
341 /* Rebuild if only read the names and now traversing. */
342 if (sp->fts_child && sp->fts_options & FTS_NAMEONLY) {
343 sp->fts_options &= ~FTS_NAMEONLY;
344 fts_lfree(sp->fts_child);
345 sp->fts_child = NULL;
349 * Cd to the subdirectory.
351 * If have already read and now fail to chdir, whack the list
352 * to make the names come out right, and set the parent errno
353 * so the application will eventually get an error condition.
354 * Set the FTS_DONTCHDIR flag so that when we logically change
355 * directories back to the parent we don't do a chdir.
357 * If haven't read do so. If the read fails, fts_build sets
358 * FTS_STOP or the fts_info field of the node.
360 if (sp->fts_child) {
361 if (CHDIR(sp, p->fts_accpath)) {
362 p->fts_errno = errno;
363 p->fts_flags |= FTS_DONTCHDIR;
364 for (p = sp->fts_child; p; p = p->fts_link)
365 p->fts_accpath =
366 p->fts_parent->fts_accpath;
368 } else if ((sp->fts_child = fts_build(sp, BREAD)) == NULL) {
369 if (ISSET(FTS_STOP))
370 return (NULL);
371 return (p);
373 p = sp->fts_child;
374 sp->fts_child = NULL;
375 goto name;
378 /* Move to the next node on this level. */
379 next: tmp = p;
380 if ((p = p->fts_link)) {
381 free(tmp);
384 * If reached the top, return to the original directory, and
385 * load the paths for the next root.
387 if (p->fts_level == FTS_ROOTLEVEL) {
388 if (!ISSET(FTS_NOCHDIR) && FCHDIR(sp, sp->fts_rfd)) {
389 SET(FTS_STOP);
390 return (NULL);
392 fts_load(sp, p);
393 return (sp->fts_cur = p);
397 * User may have called fts_set on the node. If skipped,
398 * ignore. If followed, get a file descriptor so we can
399 * get back if necessary.
401 if (p->fts_instr == FTS_SKIP)
402 goto next;
403 if (p->fts_instr == FTS_FOLLOW) {
404 p->fts_info = fts_stat(sp, NULL, p, 1);
405 if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR)) {
406 if ((p->fts_symfd =
407 __open(".", O_RDONLY, 0)) < 0) {
408 p->fts_errno = errno;
409 p->fts_info = FTS_ERR;
410 } else
411 p->fts_flags |= FTS_SYMFOLLOW;
413 p->fts_instr = FTS_NOINSTR;
416 name: t = sp->fts_path + NAPPEND(p->fts_parent);
417 *t++ = '/';
418 bcopy(p->fts_name, t, p->fts_namelen + 1);
419 return (sp->fts_cur = p);
422 /* Move up to the parent node. */
423 p = tmp->fts_parent;
424 free(tmp);
426 if (p->fts_level == FTS_ROOTPARENTLEVEL) {
428 * Done; free everything up and set errno to 0 so the user
429 * can distinguish between error and EOF.
431 free(p);
432 __set_errno (0);
433 return (sp->fts_cur = NULL);
436 /* Nul terminate the pathname. */
437 sp->fts_path[p->fts_pathlen] = '\0';
440 * Return to the parent directory. If at a root node or came through
441 * a symlink, go back through the file descriptor. Otherwise, cd up
442 * one directory.
444 if (p->fts_level == FTS_ROOTLEVEL) {
445 if (!ISSET(FTS_NOCHDIR) && FCHDIR(sp, sp->fts_rfd)) {
446 SET(FTS_STOP);
447 return (NULL);
449 } else if (p->fts_flags & FTS_SYMFOLLOW) {
450 if (FCHDIR(sp, p->fts_symfd)) {
451 saved_errno = errno;
452 (void)__close(p->fts_symfd);
453 __set_errno (saved_errno);
454 SET(FTS_STOP);
455 return (NULL);
457 (void)__close(p->fts_symfd);
458 } else if (!(p->fts_flags & FTS_DONTCHDIR)) {
459 if (CHDIR(sp, "..")) {
460 SET(FTS_STOP);
461 return (NULL);
464 p->fts_info = p->fts_errno ? FTS_ERR : FTS_DP;
465 return (sp->fts_cur = p);
469 * Fts_set takes the stream as an argument although it's not used in this
470 * implementation; it would be necessary if anyone wanted to add global
471 * semantics to fts using fts_set. An error return is allowed for similar
472 * reasons.
474 /* ARGSUSED */
476 fts_set(sp, p, instr)
477 FTS *sp;
478 FTSENT *p;
479 int instr;
481 if (instr && instr != FTS_AGAIN && instr != FTS_FOLLOW &&
482 instr != FTS_NOINSTR && instr != FTS_SKIP) {
483 __set_errno (EINVAL);
484 return (1);
486 p->fts_instr = instr;
487 return (0);
490 FTSENT *
491 fts_children(sp, instr)
492 register FTS *sp;
493 int instr;
495 register FTSENT *p;
496 int fd;
498 if (instr && instr != FTS_NAMEONLY) {
499 __set_errno (EINVAL);
500 return (NULL);
503 /* Set current node pointer. */
504 p = sp->fts_cur;
507 * Errno set to 0 so user can distinguish empty directory from
508 * an error.
510 __set_errno (0);
512 /* Fatal errors stop here. */
513 if (ISSET(FTS_STOP))
514 return (NULL);
516 /* Return logical hierarchy of user's arguments. */
517 if (p->fts_info == FTS_INIT)
518 return (p->fts_link);
521 * If not a directory being visited in pre-order, stop here. Could
522 * allow FTS_DNR, assuming the user has fixed the problem, but the
523 * same effect is available with FTS_AGAIN.
525 if (p->fts_info != FTS_D /* && p->fts_info != FTS_DNR */)
526 return (NULL);
528 /* Free up any previous child list. */
529 if (sp->fts_child)
530 fts_lfree(sp->fts_child);
532 if (instr == FTS_NAMEONLY) {
533 sp->fts_options |= FTS_NAMEONLY;
534 instr = BNAMES;
535 } else
536 instr = BCHILD;
539 * If using chdir on a relative path and called BEFORE fts_read does
540 * its chdir to the root of a traversal, we can lose -- we need to
541 * chdir into the subdirectory, and we don't know where the current
542 * directory is, so we can't get back so that the upcoming chdir by
543 * fts_read will work.
545 if (p->fts_level != FTS_ROOTLEVEL || p->fts_accpath[0] == '/' ||
546 ISSET(FTS_NOCHDIR))
547 return (sp->fts_child = fts_build(sp, instr));
549 if ((fd = __open(".", O_RDONLY, 0)) < 0)
550 return (NULL);
551 sp->fts_child = fts_build(sp, instr);
552 if (__fchdir(fd))
553 return (NULL);
554 (void)__close(fd);
555 return (sp->fts_child);
559 * This is the tricky part -- do not casually change *anything* in here. The
560 * idea is to build the linked list of entries that are used by fts_children
561 * and fts_read. There are lots of special cases.
563 * The real slowdown in walking the tree is the stat calls. If FTS_NOSTAT is
564 * set and it's a physical walk (so that symbolic links can't be directories),
565 * we can do things quickly. First, if it's a 4.4BSD file system, the type
566 * of the file is in the directory entry. Otherwise, we assume that the number
567 * of subdirectories in a node is equal to the number of links to the parent.
568 * The former skips all stat calls. The latter skips stat calls in any leaf
569 * directories and for any files after the subdirectories in the directory have
570 * been found, cutting the stat calls by about 2/3.
572 static FTSENT *
573 internal_function
574 fts_build(sp, type)
575 register FTS *sp;
576 int type;
578 struct dirent *dp;
579 register FTSENT *p, *head;
580 register int nitems;
581 FTSENT *cur, *tail;
582 DIR *dirp;
583 void *adjaddr;
584 int cderrno, descend, len, level, maxlen, nlinks, saved_errno;
585 char *cp;
586 #ifdef DTF_HIDEW
587 int oflag;
588 #endif
590 /* Set current node pointer. */
591 cur = sp->fts_cur;
594 * Open the directory for reading. If this fails, we're done.
595 * If being called from fts_read, set the fts_info field.
597 #ifdef DTF_HIDEW
598 if (ISSET (FTS_WHITEOUT))
599 oflag = DTF_NODUP|DTF_REWIND;
600 else
601 oflag = DTF_HIDEW|DTF_NODUP|DTF_REWIND;
602 #else
603 # define __opendir2(path, flag) __opendir(path)
604 #endif
605 if ((dirp = __opendir2 (cur->fts_accpath, oflag)) == NULL) {
606 if (type == BREAD) {
607 cur->fts_info = FTS_DNR;
608 cur->fts_errno = errno;
610 return (NULL);
614 * Nlinks is the number of possible entries of type directory in the
615 * directory if we're cheating on stat calls, 0 if we're not doing
616 * any stat calls at all, -1 if we're doing stats on everything.
618 if (type == BNAMES)
619 nlinks = 0;
620 else if (ISSET(FTS_NOSTAT) && ISSET(FTS_PHYSICAL))
621 nlinks = cur->fts_nlink - (ISSET(FTS_SEEDOT) ? 0 : 2);
622 else
623 nlinks = -1;
625 #ifdef notdef
626 (void)printf("nlinks == %d (cur: %d)\n", nlinks, cur->fts_nlink);
627 (void)printf("NOSTAT %d PHYSICAL %d SEEDOT %d\n",
628 ISSET(FTS_NOSTAT), ISSET(FTS_PHYSICAL), ISSET(FTS_SEEDOT));
629 #endif
631 * If we're going to need to stat anything or we want to descend
632 * and stay in the directory, chdir. If this fails we keep going,
633 * but set a flag so we don't chdir after the post-order visit.
634 * We won't be able to stat anything, but we can still return the
635 * names themselves. Note, that since fts_read won't be able to
636 * chdir into the directory, it will have to return different path
637 * names than before, i.e. "a/b" instead of "b". Since the node
638 * has already been visited in pre-order, have to wait until the
639 * post-order visit to return the error. There is a special case
640 * here, if there was nothing to stat then it's not an error to
641 * not be able to stat. This is all fairly nasty. If a program
642 * needed sorted entries or stat information, they had better be
643 * checking FTS_NS on the returned nodes.
645 cderrno = 0;
646 if (nlinks || type == BREAD) {
647 if (FCHDIR(sp, dirfd(dirp))) {
648 if (nlinks && type == BREAD)
649 cur->fts_errno = errno;
650 cur->fts_flags |= FTS_DONTCHDIR;
651 descend = 0;
652 cderrno = errno;
653 } else
654 descend = 1;
655 } else
656 descend = 0;
659 * Figure out the max file name length that can be stored in the
660 * current path -- the inner loop allocates more path as necessary.
661 * We really wouldn't have to do the maxlen calculations here, we
662 * could do them in fts_read before returning the path, but it's a
663 * lot easier here since the length is part of the dirent structure.
665 * If not changing directories set a pointer so that can just append
666 * each new name into the path.
668 maxlen = sp->fts_pathlen - cur->fts_pathlen - 1;
669 len = NAPPEND(cur);
670 if (ISSET(FTS_NOCHDIR)) {
671 cp = sp->fts_path + len;
672 *cp++ = '/';
675 level = cur->fts_level + 1;
677 /* Read the directory, attaching each entry to the `link' pointer. */
678 adjaddr = NULL;
679 head = tail = NULL;
680 nitems = 0;
681 while((dp = __readdir(dirp))) {
682 int namlen;
684 if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name))
685 continue;
687 namlen = _D_EXACT_NAMLEN (dp);
688 if ((p = fts_alloc(sp, dp->d_name, namlen)) == NULL)
689 goto mem1;
690 if (namlen > maxlen) {
691 if (fts_palloc(sp, (size_t)namlen)) {
693 * No more memory for path or structures. Save
694 * errno, free up the current structure and the
695 * structures already allocated.
697 mem1: saved_errno = errno;
698 if (p)
699 free(p);
700 fts_lfree(head);
701 (void)__closedir(dirp);
702 __set_errno (saved_errno);
703 cur->fts_info = FTS_ERR;
704 SET(FTS_STOP);
705 return (NULL);
707 adjaddr = sp->fts_path;
708 maxlen = sp->fts_pathlen - sp->fts_cur->fts_pathlen - 1;
711 p->fts_pathlen = len + namlen + 1;
712 p->fts_parent = sp->fts_cur;
713 p->fts_level = level;
715 if (cderrno) {
716 if (nlinks) {
717 p->fts_info = FTS_NS;
718 p->fts_errno = cderrno;
719 } else
720 p->fts_info = FTS_NSOK;
721 p->fts_accpath = cur->fts_accpath;
722 } else if (nlinks == 0
723 #if defined DT_DIR && defined _DIRENT_HAVE_D_TYPE
724 || (nlinks > 0 &&
725 dp->d_type != DT_DIR && dp->d_type != DT_UNKNOWN)
726 #endif
728 p->fts_accpath =
729 ISSET(FTS_NOCHDIR) ? p->fts_path : p->fts_name;
730 p->fts_info = FTS_NSOK;
731 } else {
732 /* Build a file name for fts_stat to stat. */
733 if (ISSET(FTS_NOCHDIR)) {
734 p->fts_accpath = p->fts_path;
735 bcopy(p->fts_name, cp, p->fts_namelen + 1);
736 } else
737 p->fts_accpath = p->fts_name;
738 /* Stat it. */
739 p->fts_info = fts_stat(sp, dp, p, 0);
741 /* Decrement link count if applicable. */
742 if (nlinks > 0 && (p->fts_info == FTS_D ||
743 p->fts_info == FTS_DC || p->fts_info == FTS_DOT))
744 --nlinks;
747 /* We walk in directory order so "ls -f" doesn't get upset. */
748 p->fts_link = NULL;
749 if (head == NULL)
750 head = tail = p;
751 else {
752 tail->fts_link = p;
753 tail = p;
755 ++nitems;
757 (void)__closedir(dirp);
760 * If had to realloc the path, adjust the addresses for the rest
761 * of the tree.
763 if (adjaddr)
764 fts_padjust(sp, adjaddr);
767 * If not changing directories, reset the path back to original
768 * state.
770 if (ISSET(FTS_NOCHDIR)) {
771 if (cp - 1 > sp->fts_path)
772 --cp;
773 *cp = '\0';
777 * If descended after called from fts_children or after called from
778 * fts_read and nothing found, get back. At the root level we use
779 * the saved fd; if one of fts_open()'s arguments is a relative path
780 * to an empty directory, we wind up here with no other way back. If
781 * can't get back, we're done.
783 if (descend && (type == BCHILD || !nitems) &&
784 (cur->fts_level == FTS_ROOTLEVEL ?
785 FCHDIR (sp, sp->fts_rfd) : CHDIR (sp, ".."))) {
786 cur->fts_info = FTS_ERR;
787 SET(FTS_STOP);
788 return (NULL);
791 /* If didn't find anything, return NULL. */
792 if (!nitems) {
793 if (type == BREAD)
794 cur->fts_info = FTS_DP;
795 return (NULL);
798 /* Sort the entries. */
799 if (sp->fts_compar && nitems > 1)
800 head = fts_sort(sp, head, nitems);
801 return (head);
804 static u_short
805 internal_function
806 fts_stat(sp, dp, p, follow)
807 FTS *sp;
808 register FTSENT *p;
809 struct dirent *dp;
810 int follow;
812 register FTSENT *t;
813 register dev_t dev;
814 register ino_t ino;
815 struct stat *sbp, sb;
816 int saved_errno;
818 /* If user needs stat info, stat buffer already allocated. */
819 sbp = ISSET(FTS_NOSTAT) ? &sb : p->fts_statp;
821 #ifdef DT_WHT
823 * Whited-out files don't really exist. However, there's stat(2) file
824 * mask for them, so we set it so that programs (i.e., find) don't have
825 * to test FTS_W separately from other file types.
827 if (dp != NULL && dp->d_type == DT_WHT) {
828 memset(sbp, 0, sizeof(struct stat));
829 sbp->st_mode = S_IFWHT;
830 return (FTS_W);
832 #endif
835 * If doing a logical walk, or application requested FTS_FOLLOW, do
836 * a stat(2). If that fails, check for a non-existent symlink. If
837 * fail, set the errno from the stat call.
839 if (ISSET(FTS_LOGICAL) || follow) {
840 if (stat(p->fts_accpath, sbp)) {
841 saved_errno = errno;
842 if (!lstat(p->fts_accpath, sbp)) {
843 __set_errno (0);
844 return (FTS_SLNONE);
846 p->fts_errno = saved_errno;
847 goto err;
849 } else if (lstat(p->fts_accpath, sbp)) {
850 p->fts_errno = errno;
851 err: __bzero(sbp, sizeof(struct stat));
852 return (FTS_NS);
855 if (S_ISDIR(sbp->st_mode)) {
857 * Set the device/inode. Used to find cycles and check for
858 * crossing mount points. Also remember the link count, used
859 * in fts_build to limit the number of stat calls. It is
860 * understood that these fields are only referenced if fts_info
861 * is set to FTS_D.
863 dev = p->fts_dev = sbp->st_dev;
864 ino = p->fts_ino = sbp->st_ino;
865 p->fts_nlink = sbp->st_nlink;
867 if (ISDOT(p->fts_name))
868 return (FTS_DOT);
871 * Cycle detection is done by brute force when the directory
872 * is first encountered. If the tree gets deep enough or the
873 * number of symbolic links to directories is high enough,
874 * something faster might be worthwhile.
876 for (t = p->fts_parent;
877 t->fts_level >= FTS_ROOTLEVEL; t = t->fts_parent)
878 if (ino == t->fts_ino && dev == t->fts_dev) {
879 p->fts_cycle = t;
880 return (FTS_DC);
882 return (FTS_D);
884 if (S_ISLNK(sbp->st_mode))
885 return (FTS_SL);
886 if (S_ISREG(sbp->st_mode))
887 return (FTS_F);
888 return (FTS_DEFAULT);
891 static FTSENT *
892 internal_function
893 fts_sort(sp, head, nitems)
894 FTS *sp;
895 FTSENT *head;
896 register int nitems;
898 register FTSENT **ap, *p;
901 * Construct an array of pointers to the structures and call qsort(3).
902 * Reassemble the array in the order returned by qsort. If unable to
903 * sort for memory reasons, return the directory entries in their
904 * current order. Allocate enough space for the current needs plus
905 * 40 so don't realloc one entry at a time.
907 if (nitems > sp->fts_nitems) {
908 sp->fts_nitems = nitems + 40;
909 if ((sp->fts_array = realloc(sp->fts_array,
910 (size_t)(sp->fts_nitems * sizeof(FTSENT *)))) == NULL) {
911 sp->fts_nitems = 0;
912 return (head);
915 for (ap = sp->fts_array, p = head; p; p = p->fts_link)
916 *ap++ = p;
917 qsort((void *)sp->fts_array, nitems, sizeof(FTSENT *), sp->fts_compar);
918 for (head = *(ap = sp->fts_array); --nitems; ++ap)
919 ap[0]->fts_link = ap[1];
920 ap[0]->fts_link = NULL;
921 return (head);
924 static FTSENT *
925 internal_function
926 fts_alloc(sp, name, namelen)
927 FTS *sp;
928 const char *name;
929 register int namelen;
931 register FTSENT *p;
932 size_t len;
935 * The file name is a variable length array and no stat structure is
936 * necessary if the user has set the nostat bit. Allocate the FTSENT
937 * structure, the file name and the stat structure in one chunk, but
938 * be careful that the stat structure is reasonably aligned. Since the
939 * fts_name field is declared to be of size 1, the fts_name pointer is
940 * namelen + 2 before the first possible address of the stat structure.
942 len = sizeof(FTSENT) + namelen;
943 if (!ISSET(FTS_NOSTAT))
944 len += sizeof(struct stat) + ALIGNBYTES;
945 if ((p = malloc(len)) == NULL)
946 return (NULL);
948 /* Copy the name plus the trailing NULL. */
949 bcopy(name, p->fts_name, namelen + 1);
951 if (!ISSET(FTS_NOSTAT))
952 p->fts_statp = (struct stat *)ALIGN(p->fts_name + namelen + 2);
953 p->fts_namelen = namelen;
954 p->fts_path = sp->fts_path;
955 p->fts_errno = 0;
956 p->fts_flags = 0;
957 p->fts_instr = FTS_NOINSTR;
958 p->fts_number = 0;
959 p->fts_pointer = NULL;
960 return (p);
963 static void
964 internal_function
965 fts_lfree(head)
966 register FTSENT *head;
968 register FTSENT *p;
970 /* Free a linked list of structures. */
971 while ((p = head)) {
972 head = head->fts_link;
973 free(p);
978 * Allow essentially unlimited paths; find, rm, ls should all work on any tree.
979 * Most systems will allow creation of paths much longer than MAXPATHLEN, even
980 * though the kernel won't resolve them. Add the size (not just what's needed)
981 * plus 256 bytes so don't realloc the path 2 bytes at a time.
983 static int
984 internal_function
985 fts_palloc(sp, more)
986 FTS *sp;
987 size_t more;
989 sp->fts_pathlen += more + 256;
990 sp->fts_path = realloc(sp->fts_path, (size_t)sp->fts_pathlen);
991 return (sp->fts_path == NULL);
995 * When the path is realloc'd, have to fix all of the pointers in structures
996 * already returned.
998 static void
999 internal_function
1000 fts_padjust(sp, addr)
1001 FTS *sp;
1002 void *addr;
1004 FTSENT *p;
1006 #define ADJUST(p) { \
1007 (p)->fts_accpath = \
1008 (char *)addr + ((p)->fts_accpath - (p)->fts_path); \
1009 (p)->fts_path = addr; \
1011 /* Adjust the current set of children. */
1012 for (p = sp->fts_child; p; p = p->fts_link)
1013 ADJUST(p);
1015 /* Adjust the rest of the tree. */
1016 for (p = sp->fts_cur; p->fts_level >= FTS_ROOTLEVEL;) {
1017 ADJUST(p);
1018 p = p->fts_link ? p->fts_link : p->fts_parent;
1022 static size_t
1023 internal_function
1024 fts_maxarglen(argv)
1025 char * const *argv;
1027 size_t len, max;
1029 for (max = 0; *argv; ++argv)
1030 if ((len = strlen(*argv)) > max)
1031 max = len;
1032 return (max);