1 /* Traverse a file hierarchy.
3 Copyright (C) 2004, 2005 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
20 * Copyright (c) 1990, 1993, 1994
21 * The Regents of the University of California. All rights reserved.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
26 * 1. Redistributions of source code must retain the above copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 4. Neither the name of the University nor the names of its contributors
32 * may be used to endorse or promote products derived from this software
33 * without specific prior written permission.
35 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
36 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
37 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
38 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
39 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
40 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
41 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
42 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
43 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
44 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
52 #if defined(LIBC_SCCS) && !defined(lint)
53 static char sccsid[] = "@(#)fts.c 8.6 (Berkeley) 8/14/94";
54 #endif /* LIBC_SCCS and not lint */
58 #if HAVE_SYS_PARAM_H || defined _LIBC
59 # include <sys/param.h>
62 # include <include/sys/stat.h>
64 # include <sys/stat.h>
69 #include "unistd-safer.h"
75 # include <inttypes.h>
80 #if ULONG_MAX < ULLONG_MAX
81 # define LONGEST_MODIFIER "ll"
83 # define LONGEST_MODIFIER "l"
89 # define PRIuMAX LONGEST_MODIFIER "u"
94 # define NAMLEN(dirent) _D_EXACT_NAMLEN (dirent)
98 # define NAMLEN(dirent) strlen ((dirent)->d_name)
100 # define dirent direct
101 # define NAMLEN(dirent) (dirent)->d_namlen
103 # include <sys/ndir.h>
106 # include <sys/dir.h>
116 # define close __close
118 # define closedir __closedir
120 # define fchdir __fchdir
124 # define opendir __opendir
126 # define readdir __readdir
128 # undef internal_function
129 # define internal_function /* empty */
132 /* Arrange to make lstat calls go through the wrapper function
133 on systems with an lstat function that does not dereference symlinks
134 that are specified with a trailing slash. */
135 #if ! _LIBC && ! LSTAT_FOLLOWS_SLASHED_SYMLINK
136 int rpl_lstat (const char *, struct stat *);
138 # define lstat(Name, Stat_buf) rpl_lstat(Name, Stat_buf)
142 # define __set_errno(Val) errno = (Val)
145 #ifndef __attribute__
146 # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8) || __STRICT_ANSI__
147 # define __attribute__(x) /* empty */
151 #ifndef ATTRIBUTE_UNUSED
152 # define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
156 static FTSENT *fts_alloc (FTS *, const char *, size_t) internal_function;
157 static FTSENT *fts_build (FTS *, int) internal_function;
158 static void fts_lfree (FTSENT *) internal_function;
159 static void fts_load (FTS *, FTSENT *) internal_function;
160 static size_t fts_maxarglen (char * const *) internal_function;
161 static void fts_padjust (FTS *, FTSENT *) internal_function;
162 static bool fts_palloc (FTS *, size_t) internal_function;
163 static FTSENT *fts_sort (FTS *, FTSENT *, size_t) internal_function;
164 static unsigned short int fts_stat (FTS *, FTSENT *, bool) internal_function;
165 static int fts_safe_changedir (FTS *, FTSENT *, int, const char *)
169 static bool enter_dir (FTS *fts, FTSENT *ent) { return true; }
170 static void leave_dir (FTS *fts, FTSENT *ent) {}
171 static bool setup_dir (FTS *fts) { return true; }
172 static void free_dir (FTS *fts) {}
174 # include "fts-cycle.c"
178 # define MAX(a,b) ((a) > (b) ? (a) : (b))
182 # define SIZE_MAX ((size_t) -1)
186 # define O_DIRECTORY 0
189 #define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2])))
191 #define CLR(opt) (sp->fts_options &= ~(opt))
192 #define ISSET(opt) (sp->fts_options & (opt))
193 #define SET(opt) (sp->fts_options |= (opt))
195 #define FCHDIR(sp, fd) (!ISSET(FTS_NOCHDIR) && fchdir(fd))
197 /* fts_build flags */
198 #define BCHILD 1 /* fts_children */
199 #define BNAMES 2 /* fts_children, names only */
200 #define BREAD 3 /* fts_read */
203 bool fts_debug = false;
205 # define Dprintf(x) do { if (fts_debug) printf x; } while (0)
210 #define LEAVE_DIR(Fts, Ent, Tag) \
213 Dprintf ((" %s-leaving: %s\n", Tag, (Ent)->fts_path)); \
214 leave_dir (Fts, Ent); \
218 /* Open the directory DIR if possible, and return a file
219 descriptor. Return -1 and set errno on failure. It doesn't matter
220 whether the file descriptor has read or write access. */
224 diropen (char const *dir)
226 int fd = open (dir, O_RDONLY | O_DIRECTORY);
228 fd = open (dir, O_WRONLY | O_DIRECTORY);
233 fts_open (char * const *argv,
234 register int options,
235 int (*compar) (FTSENT const **, FTSENT const **))
238 register FTSENT *p, *root;
239 register size_t nitems;
240 FTSENT *parent, *tmp = NULL; /* pacify gcc */
244 if (options & ~FTS_OPTIONMASK) {
245 __set_errno (EINVAL);
249 /* Allocate/initialize the stream */
250 if ((sp = malloc(sizeof(FTS))) == NULL)
252 memset(sp, 0, sizeof(FTS));
253 sp->fts_compar = compar;
254 sp->fts_options = options;
256 /* Logical walks turn on NOCHDIR; symbolic links are too hard. */
257 if (ISSET(FTS_LOGICAL))
261 * Start out with 1K of path space, and enough, in any case,
262 * to hold the user's paths.
265 # define MAXPATHLEN 1024
267 if (! fts_palloc(sp, MAX(fts_maxarglen(argv), MAXPATHLEN)))
270 /* Allocate/initialize root's parent. */
271 if ((parent = fts_alloc(sp, "", 0)) == NULL)
273 parent->fts_level = FTS_ROOTPARENTLEVEL;
275 /* Allocate/initialize root(s). */
276 for (root = NULL, nitems = 0; *argv != NULL; ++argv, ++nitems) {
277 /* Don't allow zero-length paths. */
278 if ((len = strlen(*argv)) == 0) {
279 __set_errno (ENOENT);
283 if ((p = fts_alloc(sp, *argv, len)) == NULL)
285 p->fts_level = FTS_ROOTLEVEL;
286 p->fts_parent = parent;
287 p->fts_accpath = p->fts_name;
288 p->fts_info = fts_stat(sp, p, ISSET(FTS_COMFOLLOW) != 0);
290 /* Command-line "." and ".." are real directories. */
291 if (p->fts_info == FTS_DOT)
295 * If comparison routine supplied, traverse in sorted
296 * order; otherwise traverse in the order specified.
311 if (compar && nitems > 1)
312 root = fts_sort(sp, root, nitems);
315 * Allocate a dummy pointer and make fts_read think that we've just
316 * finished the node before the root(s); set p->fts_info to FTS_INIT
317 * so that everything about the "current" node is ignored.
319 if ((sp->fts_cur = fts_alloc(sp, "", 0)) == NULL)
321 sp->fts_cur->fts_link = root;
322 sp->fts_cur->fts_info = FTS_INIT;
323 if (! setup_dir (sp))
327 * If using chdir(2), grab a file descriptor pointing to dot to ensure
328 * that we can get back here; this could be avoided for some paths,
329 * but almost certainly not worth the effort. Slashes, symbolic links,
330 * and ".." are all fairly nasty problems. Note, if we can't get the
331 * descriptor we run anyway, just more slowly.
333 if (!ISSET(FTS_NOCHDIR)
334 && (sp->fts_rfd = diropen (".")) < 0)
339 mem3: fts_lfree(root);
341 mem2: free(sp->fts_path);
348 fts_load (FTS *sp, register FTSENT *p)
354 * Load the stream structure for the next traversal. Since we don't
355 * actually enter the directory until after the preorder visit, set
356 * the fts_accpath field specially so the chdir gets done to the right
357 * place and the user can access the first node. From fts_open it's
358 * known that the path will fit.
360 len = p->fts_pathlen = p->fts_namelen;
361 memmove(sp->fts_path, p->fts_name, len + 1);
362 if ((cp = strrchr(p->fts_name, '/')) && (cp != p->fts_name || cp[1])) {
364 memmove(p->fts_name, cp, len + 1);
365 p->fts_namelen = len;
367 p->fts_accpath = p->fts_path = sp->fts_path;
368 sp->fts_dev = p->fts_statp->st_dev;
374 register FTSENT *freep, *p;
378 * This still works if we haven't read anything -- the dummy structure
379 * points to the root list, so we step through to the end of the root
380 * list which has a valid parent pointer.
383 for (p = sp->fts_cur; p->fts_level >= FTS_ROOTLEVEL;) {
385 p = p->fts_link != NULL ? p->fts_link : p->fts_parent;
391 /* Free up child linked list, sort array, path buffer. */
393 fts_lfree(sp->fts_child);
398 /* Return to original directory, save errno if necessary. */
399 if (!ISSET(FTS_NOCHDIR)) {
400 if (fchdir(sp->fts_rfd))
402 (void)close(sp->fts_rfd);
407 /* Free up the stream pointer. */
410 /* Set errno and return. */
412 __set_errno (saved_errno);
420 * Special case of "/" at the end of the path so that slashes aren't
421 * appended which would cause paths to be written as "....//foo".
424 (p->fts_path[p->fts_pathlen - 1] == '/' \
425 ? p->fts_pathlen - 1 : p->fts_pathlen)
428 fts_read (register FTS *sp)
430 register FTSENT *p, *tmp;
431 register unsigned short int instr;
435 /* If finished or unrecoverable error, return NULL. */
436 if (sp->fts_cur == NULL || ISSET(FTS_STOP))
439 /* Set current node pointer. */
442 /* Save and zero out user instructions. */
443 instr = p->fts_instr;
444 p->fts_instr = FTS_NOINSTR;
446 /* Any type of file may be re-visited; re-stat and re-turn. */
447 if (instr == FTS_AGAIN) {
448 p->fts_info = fts_stat(sp, p, false);
451 Dprintf (("fts_read: p=%s\n",
452 p->fts_info == FTS_INIT ? "" : p->fts_path));
455 * Following a symlink -- SLNONE test allows application to see
456 * SLNONE and recover. If indirecting through a symlink, have
457 * keep a pointer to current location. If unable to get that
458 * pointer, follow fails.
460 if (instr == FTS_FOLLOW &&
461 (p->fts_info == FTS_SL || p->fts_info == FTS_SLNONE)) {
462 p->fts_info = fts_stat(sp, p, true);
463 if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR)) {
464 if ((p->fts_symfd = diropen (".")) < 0) {
465 p->fts_errno = errno;
466 p->fts_info = FTS_ERR;
468 p->fts_flags |= FTS_SYMFOLLOW;
473 /* Directory in pre-order. */
474 if (p->fts_info == FTS_D) {
475 /* If skipped or crossed mount point, do post-order visit. */
476 if (instr == FTS_SKIP ||
477 (ISSET(FTS_XDEV) && p->fts_statp->st_dev != sp->fts_dev)) {
478 if (p->fts_flags & FTS_SYMFOLLOW)
479 (void)close(p->fts_symfd);
481 fts_lfree(sp->fts_child);
482 sp->fts_child = NULL;
484 p->fts_info = FTS_DP;
485 LEAVE_DIR (sp, p, "1");
489 /* Rebuild if only read the names and now traversing. */
490 if (sp->fts_child != NULL && ISSET(FTS_NAMEONLY)) {
492 fts_lfree(sp->fts_child);
493 sp->fts_child = NULL;
497 * Cd to the subdirectory.
499 * If have already read and now fail to chdir, whack the list
500 * to make the names come out right, and set the parent errno
501 * so the application will eventually get an error condition.
502 * Set the FTS_DONTCHDIR flag so that when we logically change
503 * directories back to the parent we don't do a chdir.
505 * If haven't read do so. If the read fails, fts_build sets
506 * FTS_STOP or the fts_info field of the node.
508 if (sp->fts_child != NULL) {
509 if (fts_safe_changedir(sp, p, -1, p->fts_accpath)) {
510 p->fts_errno = errno;
511 p->fts_flags |= FTS_DONTCHDIR;
512 for (p = sp->fts_child; p != NULL;
515 p->fts_parent->fts_accpath;
517 } else if ((sp->fts_child = fts_build(sp, BREAD)) == NULL) {
520 /* If fts_build's call to fts_safe_changedir failed
521 because it was not able to fchdir into a
522 subdirectory, tell the caller. */
524 p->fts_info = FTS_ERR;
525 /* FIXME: see if this should be in an else block */
526 LEAVE_DIR (sp, p, "2");
530 sp->fts_child = NULL;
534 /* Move to the next node on this level. */
536 if ((p = p->fts_link) != NULL) {
540 * If reached the top, return to the original directory (or
541 * the root of the tree), and load the paths for the next root.
543 if (p->fts_level == FTS_ROOTLEVEL) {
544 if (FCHDIR(sp, sp->fts_rfd)) {
553 * User may have called fts_set on the node. If skipped,
554 * ignore. If followed, get a file descriptor so we can
555 * get back if necessary.
557 if (p->fts_instr == FTS_SKIP)
559 if (p->fts_instr == FTS_FOLLOW) {
560 p->fts_info = fts_stat(sp, p, true);
561 if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR)) {
562 if ((p->fts_symfd = diropen (".")) < 0) {
563 p->fts_errno = errno;
564 p->fts_info = FTS_ERR;
566 p->fts_flags |= FTS_SYMFOLLOW;
568 p->fts_instr = FTS_NOINSTR;
571 name: t = sp->fts_path + NAPPEND(p->fts_parent);
573 memmove(t, p->fts_name, p->fts_namelen + 1);
576 if (p->fts_info == FTS_D)
578 Dprintf ((" %s-entering: %s\n", sp, p->fts_path));
579 if (! enter_dir (sp, p))
581 __set_errno (ENOMEM);
588 /* Move up to the parent node. */
592 if (p->fts_level == FTS_ROOTPARENTLEVEL) {
594 * Done; free everything up and set errno to 0 so the user
595 * can distinguish between error and EOF.
599 return (sp->fts_cur = NULL);
602 /* NUL terminate the pathname. */
603 sp->fts_path[p->fts_pathlen] = '\0';
606 * Return to the parent directory. If at a root node or came through
607 * a symlink, go back through the file descriptor. Otherwise, cd up
610 if (p->fts_level == FTS_ROOTLEVEL) {
611 if (FCHDIR(sp, sp->fts_rfd)) {
612 p->fts_errno = errno;
615 } else if (p->fts_flags & FTS_SYMFOLLOW) {
616 if (FCHDIR(sp, p->fts_symfd)) {
618 (void)close(p->fts_symfd);
619 __set_errno (saved_errno);
620 p->fts_errno = errno;
623 (void)close(p->fts_symfd);
624 } else if (!(p->fts_flags & FTS_DONTCHDIR) &&
625 fts_safe_changedir(sp, p->fts_parent, -1, "..")) {
626 p->fts_errno = errno;
629 p->fts_info = p->fts_errno ? FTS_ERR : FTS_DP;
630 if (p->fts_errno == 0)
631 LEAVE_DIR (sp, p, "3");
633 return ISSET(FTS_STOP) ? NULL : p;
637 * Fts_set takes the stream as an argument although it's not used in this
638 * implementation; it would be necessary if anyone wanted to add global
639 * semantics to fts using fts_set. An error return is allowed for similar
644 fts_set(FTS *sp ATTRIBUTE_UNUSED, FTSENT *p, int instr)
646 if (instr != 0 && instr != FTS_AGAIN && instr != FTS_FOLLOW &&
647 instr != FTS_NOINSTR && instr != FTS_SKIP) {
648 __set_errno (EINVAL);
651 p->fts_instr = instr;
656 fts_children (register FTS *sp, int instr)
661 if (instr != 0 && instr != FTS_NAMEONLY) {
662 __set_errno (EINVAL);
666 /* Set current node pointer. */
670 * Errno set to 0 so user can distinguish empty directory from
675 /* Fatal errors stop here. */
679 /* Return logical hierarchy of user's arguments. */
680 if (p->fts_info == FTS_INIT)
681 return (p->fts_link);
684 * If not a directory being visited in pre-order, stop here. Could
685 * allow FTS_DNR, assuming the user has fixed the problem, but the
686 * same effect is available with FTS_AGAIN.
688 if (p->fts_info != FTS_D /* && p->fts_info != FTS_DNR */)
691 /* Free up any previous child list. */
692 if (sp->fts_child != NULL)
693 fts_lfree(sp->fts_child);
695 if (instr == FTS_NAMEONLY) {
702 * If using chdir on a relative path and called BEFORE fts_read does
703 * its chdir to the root of a traversal, we can lose -- we need to
704 * chdir into the subdirectory, and we don't know where the current
705 * directory is, so we can't get back so that the upcoming chdir by
706 * fts_read will work.
708 if (p->fts_level != FTS_ROOTLEVEL || p->fts_accpath[0] == '/' ||
710 return (sp->fts_child = fts_build(sp, instr));
712 if ((fd = diropen (".")) < 0)
713 return (sp->fts_child = NULL);
714 sp->fts_child = fts_build(sp, instr);
720 return (sp->fts_child);
724 * This is the tricky part -- do not casually change *anything* in here. The
725 * idea is to build the linked list of entries that are used by fts_children
726 * and fts_read. There are lots of special cases.
728 * The real slowdown in walking the tree is the stat calls. If FTS_NOSTAT is
729 * set and it's a physical walk (so that symbolic links can't be directories),
730 * we can do things quickly. First, if it's a 4.4BSD file system, the type
731 * of the file is in the directory entry. Otherwise, we assume that the number
732 * of subdirectories in a node is equal to the number of links to the parent.
733 * The former skips all stat calls. The latter skips stat calls in any leaf
734 * directories and for any files after the subdirectories in the directory have
735 * been found, cutting the stat calls by about 2/3.
739 fts_build (register FTS *sp, int type)
741 register struct dirent *dp;
742 register FTSENT *p, *head;
743 register size_t nitems;
754 size_t len, maxlen, new_len;
757 /* Set current node pointer. */
761 * Open the directory for reading. If this fails, we're done.
762 * If being called from fts_read, set the fts_info field.
764 #if defined FTS_WHITEOUT && 0
765 if (ISSET(FTS_WHITEOUT))
766 oflag = DTF_NODUP|DTF_REWIND;
768 oflag = DTF_HIDEW|DTF_NODUP|DTF_REWIND;
770 # define __opendir2(path, flag) opendir(path)
772 if ((dirp = __opendir2(cur->fts_accpath, oflag)) == NULL) {
774 cur->fts_info = FTS_DNR;
775 cur->fts_errno = errno;
781 * Nlinks is the number of possible entries of type directory in the
782 * directory if we're cheating on stat calls, 0 if we're not doing
783 * any stat calls at all, (nlink_t) -1 if we're statting everything.
785 if (type == BNAMES) {
787 /* Be quiet about nostat, GCC. */
789 } else if (ISSET(FTS_NOSTAT) && ISSET(FTS_PHYSICAL)) {
790 nlinks = (cur->fts_statp->st_nlink
791 - (ISSET(FTS_SEEDOT) ? 0 : 2));
799 * If we're going to need to stat anything or we want to descend
800 * and stay in the directory, chdir. If this fails we keep going,
801 * but set a flag so we don't chdir after the post-order visit.
802 * We won't be able to stat anything, but we can still return the
803 * names themselves. Note, that since fts_read won't be able to
804 * chdir into the directory, it will have to return different path
805 * names than before, i.e. "a/b" instead of "b". Since the node
806 * has already been visited in pre-order, have to wait until the
807 * post-order visit to return the error. There is a special case
808 * here, if there was nothing to stat then it's not an error to
809 * not be able to stat. This is all fairly nasty. If a program
810 * needed sorted entries or stat information, they had better be
811 * checking FTS_NS on the returned nodes.
814 if (nlinks || type == BREAD) {
815 if (fts_safe_changedir(sp, cur, dirfd(dirp), NULL)) {
816 if (nlinks && type == BREAD)
817 cur->fts_errno = errno;
818 cur->fts_flags |= FTS_DONTCHDIR;
829 * Figure out the max file name length that can be stored in the
830 * current path -- the inner loop allocates more path as necessary.
831 * We really wouldn't have to do the maxlen calculations here, we
832 * could do them in fts_read before returning the path, but it's a
833 * lot easier here since the length is part of the dirent structure.
835 * If not changing directories set a pointer so that can just append
836 * each new name into the path.
839 if (ISSET(FTS_NOCHDIR)) {
840 cp = sp->fts_path + len;
843 /* GCC, you're too verbose. */
847 maxlen = sp->fts_pathlen - len;
849 level = cur->fts_level + 1;
851 /* Read the directory, attaching each entry to the `link' pointer. */
853 for (head = tail = NULL, nitems = 0; dirp && (dp = readdir(dirp));) {
854 if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name))
857 if ((p = fts_alloc(sp, dp->d_name, NAMLEN (dp))) == NULL)
859 if (NAMLEN (dp) >= maxlen) {/* include space for NUL */
860 oldaddr = sp->fts_path;
861 if (! fts_palloc(sp, NAMLEN (dp) + len + 1)) {
863 * No more memory for path or structures. Save
864 * errno, free up the current structure and the
865 * structures already allocated.
867 mem1: saved_errno = errno;
872 cur->fts_info = FTS_ERR;
874 __set_errno (saved_errno);
877 /* Did realloc() change the pointer? */
878 if (oldaddr != sp->fts_path) {
880 if (ISSET(FTS_NOCHDIR))
881 cp = sp->fts_path + len;
883 maxlen = sp->fts_pathlen - len;
886 new_len = len + NAMLEN (dp);
889 * In the unlikely even that we would end up
890 * with a path longer than SIZE_MAX, free up
891 * the current structure and the structures already
892 * allocated, then error out with ENAMETOOLONG.
897 cur->fts_info = FTS_ERR;
899 __set_errno (ENAMETOOLONG);
902 p->fts_level = level;
903 p->fts_parent = sp->fts_cur;
904 p->fts_pathlen = new_len;
906 #if defined FTS_WHITEOUT && 0
907 if (dp->d_type == DT_WHT)
908 p->fts_flags |= FTS_ISW;
913 p->fts_info = FTS_NS;
914 p->fts_errno = cderrno;
916 p->fts_info = FTS_NSOK;
917 p->fts_accpath = cur->fts_accpath;
918 } else if (nlinks == 0
919 #if HAVE_STRUCT_DIRENT_D_TYPE
921 dp->d_type != DT_DIR && dp->d_type != DT_UNKNOWN)
925 ISSET(FTS_NOCHDIR) ? p->fts_path : p->fts_name;
926 p->fts_info = FTS_NSOK;
928 /* Build a file name for fts_stat to stat. */
929 if (ISSET(FTS_NOCHDIR)) {
930 p->fts_accpath = p->fts_path;
931 memmove(cp, p->fts_name, p->fts_namelen + 1);
933 p->fts_accpath = p->fts_name;
935 p->fts_info = fts_stat(sp, p, false);
937 /* Decrement link count if applicable. */
938 if (nlinks > 0 && (p->fts_info == FTS_D ||
939 p->fts_info == FTS_DC || p->fts_info == FTS_DOT))
943 /* We walk in directory order so "ls -f" doesn't get upset. */
957 * If realloc() changed the address of the path, adjust the
958 * addresses for the rest of the tree and the dir list.
961 fts_padjust(sp, head);
964 * If not changing directories, reset the path back to original
967 if (ISSET(FTS_NOCHDIR)) {
968 if (len == sp->fts_pathlen || nitems == 0)
974 * If descended after called from fts_children or after called from
975 * fts_read and nothing found, get back. At the root level we use
976 * the saved fd; if one of fts_open()'s arguments is a relative path
977 * to an empty directory, we wind up here with no other way back. If
978 * can't get back, we're done.
980 if (descend && (type == BCHILD || !nitems) &&
981 (cur->fts_level == FTS_ROOTLEVEL ?
982 FCHDIR(sp, sp->fts_rfd) :
983 fts_safe_changedir(sp, cur->fts_parent, -1, ".."))) {
984 cur->fts_info = FTS_ERR;
989 /* If didn't find anything, return NULL. */
992 cur->fts_info = FTS_DP;
996 /* Sort the entries. */
997 if (sp->fts_compar && nitems > 1)
998 head = fts_sort(sp, head, nitems);
1004 /* Walk ->fts_parent links starting at E_CURR, until the root of the
1005 current hierarchy. There should be a directory with dev/inode
1006 matching those of AD. If not, print a lot of diagnostics. */
1008 find_matching_ancestor (FTSENT const *e_curr, struct Active_dir const *ad)
1011 for (ent = e_curr; ent->fts_level >= FTS_ROOTLEVEL; ent = ent->fts_parent)
1013 if (ad->ino == ent->fts_statp->st_ino
1014 && ad->dev == ent->fts_statp->st_dev)
1017 printf ("ERROR: tree dir, %s, not active\n", ad->fts_ent->fts_accpath);
1018 printf ("active dirs:\n");
1020 ent->fts_level >= FTS_ROOTLEVEL; ent = ent->fts_parent)
1021 printf (" %s(%"PRIuMAX"/%"PRIuMAX") to %s(%"PRIuMAX"/%"PRIuMAX")...\n",
1022 ad->fts_ent->fts_accpath,
1023 (uintmax_t) ad->dev,
1024 (uintmax_t) ad->ino,
1026 (uintmax_t) ent->fts_statp->st_dev,
1027 (uintmax_t) ent->fts_statp->st_ino);
1031 fts_cross_check (FTS const *sp)
1033 FTSENT const *ent = sp->fts_cur;
1035 if ( ! ISSET (FTS_TIGHT_CYCLE_CHECK))
1038 Dprintf (("fts-cross-check cur=%s\n", ent->fts_path));
1039 /* Make sure every parent dir is in the tree. */
1040 for (t = ent->fts_parent; t->fts_level >= FTS_ROOTLEVEL; t = t->fts_parent)
1042 struct Active_dir ad;
1043 ad.ino = t->fts_statp->st_ino;
1044 ad.dev = t->fts_statp->st_dev;
1045 if ( ! hash_lookup (sp->active_dir_ht, &ad))
1046 printf ("ERROR: active dir, %s, not in tree\n", t->fts_path);
1049 /* Make sure every dir in the tree is an active dir.
1050 But ENT is not necessarily a directory. If so, just skip this part. */
1051 if (ent->fts_parent->fts_level >= FTS_ROOTLEVEL
1052 && (ent->fts_info == FTS_DP
1053 || ent->fts_info == FTS_D))
1055 struct Active_dir *ad;
1056 for (ad = hash_get_first (sp->active_dir_ht); ad != NULL;
1057 ad = hash_get_next (sp->active_dir_ht, ad))
1059 find_matching_ancestor (ent, ad);
1065 static unsigned short int
1067 fts_stat(FTS *sp, register FTSENT *p, bool follow)
1069 struct stat *sbp = p->fts_statp;
1072 #if defined FTS_WHITEOUT && 0
1073 /* check for whiteout */
1074 if (p->fts_flags & FTS_ISW) {
1075 memset(sbp, '\0', sizeof (*sbp));
1076 sbp->st_mode = S_IFWHT;
1082 * If doing a logical walk, or application requested FTS_FOLLOW, do
1083 * a stat(2). If that fails, check for a non-existent symlink. If
1084 * fail, set the errno from the stat call.
1086 if (ISSET(FTS_LOGICAL) || follow) {
1087 if (stat(p->fts_accpath, sbp)) {
1088 saved_errno = errno;
1089 if (!lstat(p->fts_accpath, sbp)) {
1091 return (FTS_SLNONE);
1093 p->fts_errno = saved_errno;
1096 } else if (lstat(p->fts_accpath, sbp)) {
1097 p->fts_errno = errno;
1098 err: memset(sbp, 0, sizeof(struct stat));
1102 if (S_ISDIR(sbp->st_mode)) {
1103 if (ISDOT(p->fts_name))
1109 * Cycle detection is done by brute force when the directory
1110 * is first encountered. If the tree gets deep enough or the
1111 * number of symbolic links to directories is high enough,
1112 * something faster might be worthwhile.
1116 for (t = p->fts_parent;
1117 t->fts_level >= FTS_ROOTLEVEL; t = t->fts_parent)
1118 if (sbp->st_ino == t->fts_statp->st_ino
1119 && sbp->st_dev == t->fts_statp->st_dev)
1129 if (S_ISLNK(sbp->st_mode))
1131 if (S_ISREG(sbp->st_mode))
1133 return (FTS_DEFAULT);
1137 fts_compar (void const *a, void const *b)
1139 /* Convert A and B to the correct types, to pacify the compiler, and
1140 for portability to bizarre hosts where "void const *" and "FTSENT
1141 const **" differ in runtime representation. The comparison
1142 function cannot modify *a and *b, but there is no compile-time
1144 FTSENT const **pa = (FTSENT const **) a;
1145 FTSENT const **pb = (FTSENT const **) b;
1146 return pa[0]->fts_fts->fts_compar (pa, pb);
1151 fts_sort (FTS *sp, FTSENT *head, register size_t nitems)
1153 register FTSENT **ap, *p;
1155 /* On most modern hosts, void * and FTSENT ** have the same
1156 run-time representation, and one can convert sp->fts_compar to
1157 the type qsort expects without problem. Use the heuristic that
1158 this is OK if the two pointer types are the same size, and if
1159 converting FTSENT ** to long int is the same as converting
1160 FTSENT ** to void * and then to long int. This heuristic isn't
1161 valid in general but we don't know of any counterexamples. */
1163 int (*compare) (void const *, void const *) =
1164 ((sizeof &dummy == sizeof (void *)
1165 && (long int) &dummy == (long int) (void *) &dummy)
1166 ? (int (*) (void const *, void const *)) sp->fts_compar
1170 * Construct an array of pointers to the structures and call qsort(3).
1171 * Reassemble the array in the order returned by qsort. If unable to
1172 * sort for memory reasons, return the directory entries in their
1173 * current order. Allocate enough space for the current needs plus
1174 * 40 so don't realloc one entry at a time.
1176 if (nitems > sp->fts_nitems) {
1179 sp->fts_nitems = nitems + 40;
1180 if (SIZE_MAX / sizeof *a < sp->fts_nitems
1181 || ! (a = realloc (sp->fts_array,
1182 sp->fts_nitems * sizeof *a))) {
1183 free(sp->fts_array);
1184 sp->fts_array = NULL;
1190 for (ap = sp->fts_array, p = head; p; p = p->fts_link)
1192 qsort((void *)sp->fts_array, nitems, sizeof(FTSENT *), compare);
1193 for (head = *(ap = sp->fts_array); --nitems; ++ap)
1194 ap[0]->fts_link = ap[1];
1195 ap[0]->fts_link = NULL;
1201 fts_alloc (FTS *sp, const char *name, register size_t namelen)
1207 * The file name is a variable length array. Allocate the FTSENT
1208 * structure and the file name in one chunk.
1210 len = sizeof(FTSENT) + namelen;
1211 if ((p = malloc(len)) == NULL)
1214 /* Copy the name and guarantee NUL termination. */
1215 memmove(p->fts_name, name, namelen);
1216 p->fts_name[namelen] = '\0';
1218 p->fts_namelen = namelen;
1220 p->fts_path = sp->fts_path;
1223 p->fts_instr = FTS_NOINSTR;
1225 p->fts_pointer = NULL;
1231 fts_lfree (register FTSENT *head)
1235 /* Free a linked list of structures. */
1236 while ((p = head)) {
1237 head = head->fts_link;
1243 * Allow essentially unlimited paths; find, rm, ls should all work on any tree.
1244 * Most systems will allow creation of paths much longer than MAXPATHLEN, even
1245 * though the kernel won't resolve them. Add the size (not just what's needed)
1246 * plus 256 bytes so don't realloc the path 2 bytes at a time.
1250 fts_palloc (FTS *sp, size_t more)
1253 size_t new_len = sp->fts_pathlen + more + 256;
1256 * See if fts_pathlen would overflow.
1258 if (new_len < sp->fts_pathlen) {
1261 sp->fts_path = NULL;
1263 sp->fts_path = NULL;
1264 __set_errno (ENAMETOOLONG);
1267 sp->fts_pathlen = new_len;
1268 p = realloc(sp->fts_path, sp->fts_pathlen);
1271 sp->fts_path = NULL;
1279 * When the path is realloc'd, have to fix all of the pointers in structures
1284 fts_padjust (FTS *sp, FTSENT *head)
1287 char *addr = sp->fts_path;
1289 #define ADJUST(p) do { \
1290 if ((p)->fts_accpath != (p)->fts_name) { \
1291 (p)->fts_accpath = \
1292 (char *)addr + ((p)->fts_accpath - (p)->fts_path); \
1294 (p)->fts_path = addr; \
1296 /* Adjust the current set of children. */
1297 for (p = sp->fts_child; p; p = p->fts_link)
1300 /* Adjust the rest of the tree, including the current level. */
1301 for (p = head; p->fts_level >= FTS_ROOTLEVEL;) {
1303 p = p->fts_link ? p->fts_link : p->fts_parent;
1309 fts_maxarglen (char * const *argv)
1313 for (max = 0; *argv; ++argv)
1314 if ((len = strlen(*argv)) > max)
1320 * Change to dir specified by fd or path without getting
1321 * tricked by someone changing the world out from underneath us.
1322 * Assumes p->fts_statp->st_dev and p->fts_statp->st_ino are filled in.
1326 fts_safe_changedir (FTS *sp, FTSENT *p, int fd, char const *path)
1328 int ret, oerrno, newfd;
1332 if (ISSET(FTS_NOCHDIR))
1334 if (fd < 0 && (newfd = fd_safer (diropen (path))) < 0)
1336 if (fstat(newfd, &sb)) {
1340 if (p->fts_statp->st_dev != sb.st_dev
1341 || p->fts_statp->st_ino != sb.st_ino) {
1342 __set_errno (ENOENT); /* disinformation */
1346 ret = fchdir(newfd);
1351 __set_errno (oerrno);