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
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 * 4. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * $OpenBSD: fts.c,v 1.22 1999/10/03 19:22:22 millert Exp $
33 #if defined(LIBC_SCCS) && !defined(lint)
34 static char sccsid
[] = "@(#)fts.c 8.6 (Berkeley) 8/14/94";
35 #endif /* LIBC_SCCS and not lint */
38 #include <sys/cdefs.h>
41 #include <sys/param.h>
52 __FBSDID("$FreeBSD$");
54 #include "namespace.h"
55 #include <sys/param.h>
56 #include <sys/mount.h>
66 #include "un-namespace.h"
68 #include "gen-private.h"
71 static FTSENT
*fts_alloc(FTS
*, char *, size_t);
72 static FTSENT
*fts_build(FTS
*, int);
73 static void fts_lfree(FTSENT
*);
74 static void fts_load(FTS
*, FTSENT
*);
75 static size_t fts_maxarglen(char * const *);
76 static void fts_padjust(FTS
*, FTSENT
*);
77 static int fts_palloc(FTS
*, size_t);
78 static FTSENT
*fts_sort(FTS
*, FTSENT
*, size_t);
79 static int fts_stat(FTS
*, FTSENT
*, int);
80 static int fts_safe_changedir(FTS
*, FTSENT
*, int, char *);
81 static int fts_ufslinks(FTS
*, const FTSENT
*);
84 FTS
* __fts_open(char * const *argv
, int options
, int (*compar
)(
85 const FTSENT
* const *, const FTSENT
* const *));
86 int __fts_close(FTS
*sp
);
87 FTSENT
* __fts_read(FTS
*sp
);
88 int __fts_set(FTS
*sp
, FTSENT
*p
, int instr
);
89 FTSENT
* __fts_children(FTS
*sp
, int instr
);
90 void *(__fts_get_clientptr
)(FTS
*sp
);
91 FTS
* (__fts_get_stream
)(FTSENT
*p
);
92 void __fts_set_clientptr(FTS
*sp
, void *clientptr
);
95 #define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2])))
97 #define CLR(opt) (sp->fts_options &= ~(opt))
98 #define ISSET(opt) (sp->fts_options & (opt))
99 #define SET(opt) (sp->fts_options |= (opt))
101 #define FCHDIR(sp, fd) (!ISSET(FTS_NOCHDIR) && fchdir(fd))
103 /* fts_build flags */
104 #define BCHILD 1 /* fts_children */
105 #define BNAMES 2 /* fts_children, names only */
106 #define BREAD 3 /* fts_read */
109 * Internal representation of an FTS, including extra implementation
110 * details. The FTS returned from fts_open points to this structure's
111 * ftsp_fts member (and can be cast to an _fts_private as required)
113 struct _fts_private
{
116 struct statfs ftsp_statfs
;
119 int ftsp_linksreliable
;
124 * The "FTS_NOSTAT" option can avoid a lot of calls to stat(2) if it
125 * knows that a directory could not possibly have subdirectories. This
126 * is decided by looking at the link count: a subdirectory would
127 * increment its parent's link count by virtue of its own ".." entry.
128 * This assumption only holds for UFS-like filesystems that implement
129 * links and directories this way, so we must punt for others.
132 static const char *ufslike_filesystems
[] = {
140 #endif /* !__HAIKU__ */
143 __fts_open(argv
, options
, compar
)
146 int (*compar
)(const FTSENT
* const *, const FTSENT
* const *);
148 struct _fts_private
*priv
;
151 FTSENT
*parent
, *tmp
;
155 if (options
& ~FTS_OPTIONMASK
) {
160 /* fts_open() requires at least one path */
166 /* Allocate/initialize the stream. */
167 if ((priv
= calloc(1, sizeof(*priv
))) == NULL
)
169 sp
= &priv
->ftsp_fts
;
170 sp
->fts_compar
= compar
;
171 sp
->fts_options
= options
;
176 /* Logical walks turn on NOCHDIR; symbolic links are too hard. */
177 if (ISSET(FTS_LOGICAL
))
181 * Start out with 1K of path space, and enough, in any case,
182 * to hold the user's paths.
184 if (fts_palloc(sp
, MAX(fts_maxarglen(argv
), MAXPATHLEN
)))
187 /* Allocate/initialize root's parent. */
188 if ((parent
= fts_alloc(sp
, "", 0)) == NULL
)
190 parent
->fts_level
= FTS_ROOTPARENTLEVEL
;
192 /* Allocate/initialize root(s). */
193 for (root
= NULL
, nitems
= 0; *argv
!= NULL
; ++argv
, ++nitems
) {
194 /* Don't allow zero-length paths. */
195 if ((len
= strlen(*argv
)) == 0) {
200 p
= fts_alloc(sp
, *argv
, len
);
201 p
->fts_level
= FTS_ROOTLEVEL
;
202 p
->fts_parent
= parent
;
203 p
->fts_accpath
= p
->fts_name
;
204 p
->fts_info
= fts_stat(sp
, p
, ISSET(FTS_COMFOLLOW
));
206 /* Command-line "." and ".." are real directories. */
207 if (p
->fts_info
== FTS_DOT
)
211 * If comparison routine supplied, traverse in sorted
212 * order; otherwise traverse in the order specified.
227 if (compar
&& nitems
> 1)
228 root
= fts_sort(sp
, root
, nitems
);
231 * Allocate a dummy pointer and make fts_read think that we've just
232 * finished the node before the root(s); set p->fts_info to FTS_INIT
233 * so that everything about the "current" node is ignored.
235 if ((sp
->fts_cur
= fts_alloc(sp
, "", 0)) == NULL
)
237 sp
->fts_cur
->fts_link
= root
;
238 sp
->fts_cur
->fts_info
= FTS_INIT
;
241 * If using chdir(2), grab a file descriptor pointing to dot to ensure
242 * that we can get back here; this could be avoided for some paths,
243 * but almost certainly not worth the effort. Slashes, symbolic links,
244 * and ".." are all fairly nasty problems. Note, if we can't get the
245 * descriptor we run anyway, just more slowly.
247 if (!ISSET(FTS_NOCHDIR
) &&
248 (sp
->fts_rfd
= open(".", O_RDONLY
| O_CLOEXEC
, 0)) < 0)
253 mem3
: fts_lfree(root
);
255 mem2
: free(sp
->fts_path
);
261 __weak_reference(__fts_open
, fts_open
);
265 fts_load(FTS
*sp
, FTSENT
*p
)
271 * Load the stream structure for the next traversal. Since we don't
272 * actually enter the directory until after the preorder visit, set
273 * the fts_accpath field specially so the chdir gets done to the right
274 * place and the user can access the first node. From fts_open it's
275 * known that the path will fit.
277 len
= p
->fts_pathlen
= p
->fts_namelen
;
278 memmove(sp
->fts_path
, p
->fts_name
, len
+ 1);
279 if ((cp
= strrchr(p
->fts_name
, '/')) && (cp
!= p
->fts_name
|| cp
[1])) {
281 memmove(p
->fts_name
, cp
, len
+ 1);
282 p
->fts_namelen
= len
;
284 p
->fts_accpath
= p
->fts_path
= sp
->fts_path
;
285 sp
->fts_dev
= p
->fts_dev
;
295 * This still works if we haven't read anything -- the dummy structure
296 * points to the root list, so we step through to the end of the root
297 * list which has a valid parent pointer.
300 for (p
= sp
->fts_cur
; p
->fts_level
>= FTS_ROOTLEVEL
;) {
302 p
= p
->fts_link
!= NULL
? p
->fts_link
: p
->fts_parent
;
308 /* Free up child linked list, sort array, path buffer. */
310 fts_lfree(sp
->fts_child
);
315 /* Return to original directory, save errno if necessary. */
316 if (!ISSET(FTS_NOCHDIR
)) {
317 saved_errno
= fchdir(sp
->fts_rfd
) ? errno
: 0;
318 (void)close(sp
->fts_rfd
);
320 /* Set errno and return. */
321 if (saved_errno
!= 0) {
322 /* Free up the stream pointer. */
329 /* Free up the stream pointer. */
335 __weak_reference(__fts_close
, fts_close
);
339 * Special case of "/" at the end of the path so that slashes aren't
340 * appended which would cause paths to be written as "....//foo".
343 (p->fts_path[p->fts_pathlen - 1] == '/' \
344 ? p->fts_pathlen - 1 : p->fts_pathlen)
354 /* If finished or unrecoverable error, return NULL. */
355 if (sp
->fts_cur
== NULL
|| ISSET(FTS_STOP
))
358 /* Set current node pointer. */
361 /* Save and zero out user instructions. */
362 instr
= p
->fts_instr
;
363 p
->fts_instr
= FTS_NOINSTR
;
365 /* Any type of file may be re-visited; re-stat and re-turn. */
366 if (instr
== FTS_AGAIN
) {
367 p
->fts_info
= fts_stat(sp
, p
, 0);
372 * Following a symlink -- SLNONE test allows application to see
373 * SLNONE and recover. If indirecting through a symlink, have
374 * keep a pointer to current location. If unable to get that
375 * pointer, follow fails.
377 if (instr
== FTS_FOLLOW
&&
378 (p
->fts_info
== FTS_SL
|| p
->fts_info
== FTS_SLNONE
)) {
379 p
->fts_info
= fts_stat(sp
, p
, 1);
380 if (p
->fts_info
== FTS_D
&& !ISSET(FTS_NOCHDIR
)) {
381 if ((p
->fts_symfd
= open(".", O_RDONLY
| O_CLOEXEC
,
383 p
->fts_errno
= errno
;
384 p
->fts_info
= FTS_ERR
;
386 p
->fts_flags
|= FTS_SYMFOLLOW
;
391 /* Directory in pre-order. */
392 if (p
->fts_info
== FTS_D
) {
393 /* If skipped or crossed mount point, do post-order visit. */
394 if (instr
== FTS_SKIP
||
395 (ISSET(FTS_XDEV
) && p
->fts_dev
!= sp
->fts_dev
)) {
396 if (p
->fts_flags
& FTS_SYMFOLLOW
)
397 (void)close(p
->fts_symfd
);
399 fts_lfree(sp
->fts_child
);
400 sp
->fts_child
= NULL
;
402 p
->fts_info
= FTS_DP
;
406 /* Rebuild if only read the names and now traversing. */
407 if (sp
->fts_child
!= NULL
&& ISSET(FTS_NAMEONLY
)) {
409 fts_lfree(sp
->fts_child
);
410 sp
->fts_child
= NULL
;
414 * Cd to the subdirectory.
416 * If have already read and now fail to chdir, whack the list
417 * to make the names come out right, and set the parent errno
418 * so the application will eventually get an error condition.
419 * Set the FTS_DONTCHDIR flag so that when we logically change
420 * directories back to the parent we don't do a chdir.
422 * If haven't read do so. If the read fails, fts_build sets
423 * FTS_STOP or the fts_info field of the node.
425 if (sp
->fts_child
!= NULL
) {
426 if (fts_safe_changedir(sp
, p
, -1, p
->fts_accpath
)) {
427 p
->fts_errno
= errno
;
428 p
->fts_flags
|= FTS_DONTCHDIR
;
429 for (p
= sp
->fts_child
; p
!= NULL
;
432 p
->fts_parent
->fts_accpath
;
434 } else if ((sp
->fts_child
= fts_build(sp
, BREAD
)) == NULL
) {
440 sp
->fts_child
= NULL
;
444 /* Move to the next node on this level. */
446 if ((p
= p
->fts_link
) != NULL
) {
450 * If reached the top, return to the original directory (or
451 * the root of the tree), and load the paths for the next root.
453 if (p
->fts_level
== FTS_ROOTLEVEL
) {
454 if (FCHDIR(sp
, sp
->fts_rfd
)) {
459 return (sp
->fts_cur
= p
);
463 * User may have called fts_set on the node. If skipped,
464 * ignore. If followed, get a file descriptor so we can
465 * get back if necessary.
467 if (p
->fts_instr
== FTS_SKIP
)
469 if (p
->fts_instr
== FTS_FOLLOW
) {
470 p
->fts_info
= fts_stat(sp
, p
, 1);
471 if (p
->fts_info
== FTS_D
&& !ISSET(FTS_NOCHDIR
)) {
473 open(".", O_RDONLY
| O_CLOEXEC
, 0)) < 0) {
474 p
->fts_errno
= errno
;
475 p
->fts_info
= FTS_ERR
;
477 p
->fts_flags
|= FTS_SYMFOLLOW
;
479 p
->fts_instr
= FTS_NOINSTR
;
482 name
: t
= sp
->fts_path
+ NAPPEND(p
->fts_parent
);
484 memmove(t
, p
->fts_name
, p
->fts_namelen
+ 1);
485 return (sp
->fts_cur
= p
);
488 /* Move up to the parent node. */
492 if (p
->fts_level
== FTS_ROOTPARENTLEVEL
) {
494 * Done; free everything up and set errno to 0 so the user
495 * can distinguish between error and EOF.
499 return (sp
->fts_cur
= NULL
);
502 /* NUL terminate the pathname. */
503 sp
->fts_path
[p
->fts_pathlen
] = '\0';
506 * Return to the parent directory. If at a root node or came through
507 * a symlink, go back through the file descriptor. Otherwise, cd up
510 if (p
->fts_level
== FTS_ROOTLEVEL
) {
511 if (FCHDIR(sp
, sp
->fts_rfd
)) {
515 } else if (p
->fts_flags
& FTS_SYMFOLLOW
) {
516 if (FCHDIR(sp
, p
->fts_symfd
)) {
518 (void)close(p
->fts_symfd
);
523 (void)close(p
->fts_symfd
);
524 } else if (!(p
->fts_flags
& FTS_DONTCHDIR
) &&
525 fts_safe_changedir(sp
, p
->fts_parent
, -1, "..")) {
529 p
->fts_info
= p
->fts_errno
? FTS_ERR
: FTS_DP
;
530 return (sp
->fts_cur
= p
);
534 __weak_reference(__fts_read
, fts_read
);
538 * Fts_set takes the stream as an argument although it's not used in this
539 * implementation; it would be necessary if anyone wanted to add global
540 * semantics to fts using fts_set. An error return is allowed for similar
545 __fts_set(FTS
*sp
, FTSENT
*p
, int instr
)
547 if (instr
!= 0 && instr
!= FTS_AGAIN
&& instr
!= FTS_FOLLOW
&&
548 instr
!= FTS_NOINSTR
&& instr
!= FTS_SKIP
) {
552 p
->fts_instr
= instr
;
557 __weak_reference(__fts_set
, fts_set
);
561 __fts_children(FTS
*sp
, int instr
)
566 if (instr
!= 0 && instr
!= FTS_NAMEONLY
) {
571 /* Set current node pointer. */
575 * Errno set to 0 so user can distinguish empty directory from
580 /* Fatal errors stop here. */
584 /* Return logical hierarchy of user's arguments. */
585 if (p
->fts_info
== FTS_INIT
)
586 return (p
->fts_link
);
589 * If not a directory being visited in pre-order, stop here. Could
590 * allow FTS_DNR, assuming the user has fixed the problem, but the
591 * same effect is available with FTS_AGAIN.
593 if (p
->fts_info
!= FTS_D
/* && p->fts_info != FTS_DNR */)
596 /* Free up any previous child list. */
597 if (sp
->fts_child
!= NULL
)
598 fts_lfree(sp
->fts_child
);
600 if (instr
== FTS_NAMEONLY
) {
607 * If using chdir on a relative path and called BEFORE fts_read does
608 * its chdir to the root of a traversal, we can lose -- we need to
609 * chdir into the subdirectory, and we don't know where the current
610 * directory is, so we can't get back so that the upcoming chdir by
611 * fts_read will work.
613 if (p
->fts_level
!= FTS_ROOTLEVEL
|| p
->fts_accpath
[0] == '/' ||
615 return (sp
->fts_child
= fts_build(sp
, instr
));
617 if ((fd
= open(".", O_RDONLY
| O_CLOEXEC
, 0)) < 0)
619 sp
->fts_child
= fts_build(sp
, instr
);
625 return (sp
->fts_child
);
629 __weak_reference(__fts_children
, fts_children
);
632 #ifndef fts_get_clientptr
633 #error "fts_get_clientptr not defined"
637 (__fts_get_clientptr
)(FTS
*sp
)
640 return (fts_get_clientptr(sp
));
644 __weak_reference(__fts_get_clientptr
, fts_get_clientptr
);
647 #ifndef fts_get_stream
648 #error "fts_get_stream not defined"
652 (__fts_get_stream
)(FTSENT
*p
)
654 return (fts_get_stream(p
));
658 __weak_reference(__fts_get_stream
, fts_get_stream
);
662 __fts_set_clientptr(FTS
*sp
, void *clientptr
)
665 sp
->fts_clientptr
= clientptr
;
669 __weak_reference(__fts_set_clientptr
, fts_set_clientptr
);
673 * This is the tricky part -- do not casually change *anything* in here. The
674 * idea is to build the linked list of entries that are used by fts_children
675 * and fts_read. There are lots of special cases.
677 * The real slowdown in walking the tree is the stat calls. If FTS_NOSTAT is
678 * set and it's a physical walk (so that symbolic links can't be directories),
679 * we can do things quickly. First, if it's a 4.4BSD file system, the type
680 * of the file is in the directory entry. Otherwise, we assume that the number
681 * of subdirectories in a node is equal to the number of links to the parent.
682 * The former skips all stat calls. The latter skips stat calls in any leaf
683 * directories and for any files after the subdirectories in the directory have
684 * been found, cutting the stat calls by about 2/3.
687 fts_build(FTS
*sp
, int type
)
695 int cderrno
, descend
, saved_errno
, nostat
, doadjust
;
700 long nlinks
; /* has to be signed because -1 is a magic value */
701 size_t dnamlen
, len
, maxlen
, nitems
;
703 /* Set current node pointer. */
707 * Open the directory for reading. If this fails, we're done.
708 * If being called from fts_read, set the fts_info field.
711 if (ISSET(FTS_WHITEOUT
))
712 oflag
= DTF_NODUP
| DTF_REWIND
;
714 oflag
= DTF_HIDEW
| DTF_NODUP
| DTF_REWIND
;
716 #define __opendir2(path, flag) opendir(path)
718 if ((dirp
= __opendir2(cur
->fts_accpath
, oflag
)) == NULL
) {
720 cur
->fts_info
= FTS_DNR
;
721 cur
->fts_errno
= errno
;
727 * Nlinks is the number of possible entries of type directory in the
728 * directory if we're cheating on stat calls, 0 if we're not doing
729 * any stat calls at all, -1 if we're doing stats on everything.
731 if (type
== BNAMES
) {
733 /* Be quiet about nostat, GCC. */
735 } else if (ISSET(FTS_NOSTAT
) && ISSET(FTS_PHYSICAL
)) {
736 if (fts_ufslinks(sp
, cur
))
737 nlinks
= cur
->fts_nlink
- (ISSET(FTS_SEEDOT
) ? 0 : 2);
747 (void)printf("nlinks == %d (cur: %d)\n", nlinks
, cur
->fts_nlink
);
748 (void)printf("NOSTAT %d PHYSICAL %d SEEDOT %d\n",
749 ISSET(FTS_NOSTAT
), ISSET(FTS_PHYSICAL
), ISSET(FTS_SEEDOT
));
752 * If we're going to need to stat anything or we want to descend
753 * and stay in the directory, chdir. If this fails we keep going,
754 * but set a flag so we don't chdir after the post-order visit.
755 * We won't be able to stat anything, but we can still return the
756 * names themselves. Note, that since fts_read won't be able to
757 * chdir into the directory, it will have to return different path
758 * names than before, i.e. "a/b" instead of "b". Since the node
759 * has already been visited in pre-order, have to wait until the
760 * post-order visit to return the error. There is a special case
761 * here, if there was nothing to stat then it's not an error to
762 * not be able to stat. This is all fairly nasty. If a program
763 * needed sorted entries or stat information, they had better be
764 * checking FTS_NS on the returned nodes.
767 if (nlinks
|| type
== BREAD
) {
768 if (fts_safe_changedir(sp
, cur
, dirfd(dirp
), NULL
)) {
769 if (nlinks
&& type
== BREAD
)
770 cur
->fts_errno
= errno
;
771 cur
->fts_flags
|= FTS_DONTCHDIR
;
780 * Figure out the max file name length that can be stored in the
781 * current path -- the inner loop allocates more path as necessary.
782 * We really wouldn't have to do the maxlen calculations here, we
783 * could do them in fts_read before returning the path, but it's a
784 * lot easier here since the length is part of the dirent structure.
786 * If not changing directories set a pointer so that can just append
787 * each new name into the path.
790 if (ISSET(FTS_NOCHDIR
)) {
791 cp
= sp
->fts_path
+ len
;
794 /* GCC, you're too verbose. */
798 maxlen
= sp
->fts_pathlen
- len
;
800 level
= cur
->fts_level
+ 1;
802 /* Read the directory, attaching each entry to the `link' pointer. */
804 for (head
= tail
= NULL
, nitems
= 0; dirp
&& (dp
= readdir(dirp
));) {
805 dnamlen
= strlen(dp
->d_name
);
806 if (!ISSET(FTS_SEEDOT
) && ISDOT(dp
->d_name
))
809 if ((p
= fts_alloc(sp
, dp
->d_name
, dnamlen
)) == NULL
)
811 if (dnamlen
>= maxlen
) { /* include space for NUL */
812 oldaddr
= sp
->fts_path
;
813 if (fts_palloc(sp
, dnamlen
+ len
+ 1)) {
815 * No more memory for path or structures. Save
816 * errno, free up the current structure and the
817 * structures already allocated.
819 mem1
: saved_errno
= errno
;
823 (void)closedir(dirp
);
824 cur
->fts_info
= FTS_ERR
;
829 /* Did realloc() change the pointer? */
830 if (oldaddr
!= sp
->fts_path
) {
832 if (ISSET(FTS_NOCHDIR
))
833 cp
= sp
->fts_path
+ len
;
835 maxlen
= sp
->fts_pathlen
- len
;
838 p
->fts_level
= level
;
839 p
->fts_parent
= sp
->fts_cur
;
840 p
->fts_pathlen
= len
+ dnamlen
;
843 if (dp
->d_type
== DT_WHT
)
844 p
->fts_flags
|= FTS_ISW
;
849 p
->fts_info
= FTS_NS
;
850 p
->fts_errno
= cderrno
;
852 p
->fts_info
= FTS_NSOK
;
853 p
->fts_accpath
= cur
->fts_accpath
;
854 } else if (nlinks
== 0
857 dp
->d_type
!= DT_DIR
&& dp
->d_type
!= DT_UNKNOWN
)
861 ISSET(FTS_NOCHDIR
) ? p
->fts_path
: p
->fts_name
;
862 p
->fts_info
= FTS_NSOK
;
864 /* Build a file name for fts_stat to stat. */
865 if (ISSET(FTS_NOCHDIR
)) {
866 p
->fts_accpath
= p
->fts_path
;
867 memmove(cp
, p
->fts_name
, p
->fts_namelen
+ 1);
869 p
->fts_accpath
= p
->fts_name
;
871 p
->fts_info
= fts_stat(sp
, p
, 0);
873 /* Decrement link count if applicable. */
874 if (nlinks
> 0 && (p
->fts_info
== FTS_D
||
875 p
->fts_info
== FTS_DC
|| p
->fts_info
== FTS_DOT
))
879 /* We walk in directory order so "ls -f" doesn't get upset. */
890 (void)closedir(dirp
);
893 * If realloc() changed the address of the path, adjust the
894 * addresses for the rest of the tree and the dir list.
897 fts_padjust(sp
, head
);
900 * If not changing directories, reset the path back to original
903 if (ISSET(FTS_NOCHDIR
))
904 sp
->fts_path
[cur
->fts_pathlen
] = '\0';
907 * If descended after called from fts_children or after called from
908 * fts_read and nothing found, get back. At the root level we use
909 * the saved fd; if one of fts_open()'s arguments is a relative path
910 * to an empty directory, we wind up here with no other way back. If
911 * can't get back, we're done.
913 if (descend
&& (type
== BCHILD
|| !nitems
) &&
914 (cur
->fts_level
== FTS_ROOTLEVEL
?
915 FCHDIR(sp
, sp
->fts_rfd
) :
916 fts_safe_changedir(sp
, cur
->fts_parent
, -1, ".."))) {
917 cur
->fts_info
= FTS_ERR
;
922 /* If didn't find anything, return NULL. */
925 cur
->fts_info
= FTS_DP
;
929 /* Sort the entries. */
930 if (sp
->fts_compar
&& nitems
> 1)
931 head
= fts_sort(sp
, head
, nitems
);
936 fts_stat(FTS
*sp
, FTSENT
*p
, int follow
)
941 struct stat
*sbp
, sb
;
944 /* If user needs stat info, stat buffer already allocated. */
945 sbp
= ISSET(FTS_NOSTAT
) ? &sb
: p
->fts_statp
;
948 /* Check for whiteout. */
949 if (p
->fts_flags
& FTS_ISW
) {
951 memset(sbp
, '\0', sizeof(*sbp
));
952 sbp
->st_mode
= S_IFWHT
;
959 * If doing a logical walk, or application requested FTS_FOLLOW, do
960 * a stat(2). If that fails, check for a non-existent symlink. If
961 * fail, set the errno from the stat call.
963 if (ISSET(FTS_LOGICAL
) || follow
) {
964 if (stat(p
->fts_accpath
, sbp
)) {
966 if (!lstat(p
->fts_accpath
, sbp
)) {
970 p
->fts_errno
= saved_errno
;
973 } else if (lstat(p
->fts_accpath
, sbp
)) {
974 p
->fts_errno
= errno
;
975 err
: memset(sbp
, 0, sizeof(struct stat
));
979 if (S_ISDIR(sbp
->st_mode
)) {
981 * Set the device/inode. Used to find cycles and check for
982 * crossing mount points. Also remember the link count, used
983 * in fts_build to limit the number of stat calls. It is
984 * understood that these fields are only referenced if fts_info
987 dev
= p
->fts_dev
= sbp
->st_dev
;
988 ino
= p
->fts_ino
= sbp
->st_ino
;
989 p
->fts_nlink
= sbp
->st_nlink
;
991 if (ISDOT(p
->fts_name
))
995 * Cycle detection is done by brute force when the directory
996 * is first encountered. If the tree gets deep enough or the
997 * number of symbolic links to directories is high enough,
998 * something faster might be worthwhile.
1000 for (t
= p
->fts_parent
;
1001 t
->fts_level
>= FTS_ROOTLEVEL
; t
= t
->fts_parent
)
1002 if (ino
== t
->fts_ino
&& dev
== t
->fts_dev
) {
1008 if (S_ISLNK(sbp
->st_mode
))
1010 if (S_ISREG(sbp
->st_mode
))
1012 return (FTS_DEFAULT
);
1016 * The comparison function takes pointers to pointers to FTSENT structures.
1017 * Qsort wants a comparison function that takes pointers to void.
1018 * (Both with appropriate levels of const-poisoning, of course!)
1019 * Use a trampoline function to deal with the difference.
1022 fts_compar(const void *a
, const void *b
)
1026 parent
= (*(const FTSENT
* const *)a
)->fts_fts
;
1027 return (*parent
->fts_compar
)(a
, b
);
1031 fts_sort(FTS
*sp
, FTSENT
*head
, size_t nitems
)
1037 * Construct an array of pointers to the structures and call qsort(3).
1038 * Reassemble the array in the order returned by qsort. If unable to
1039 * sort for memory reasons, return the directory entries in their
1040 * current order. Allocate enough space for the current needs plus
1041 * 40 so don't realloc one entry at a time.
1043 if (nitems
> sp
->fts_nitems
) {
1044 sp
->fts_nitems
= nitems
+ 40;
1045 old_array
= sp
->fts_array
;
1046 if ((sp
->fts_array
= realloc(old_array
,
1047 sp
->fts_nitems
* sizeof(FTSENT
*))) == NULL
) {
1053 for (ap
= sp
->fts_array
, p
= head
; p
; p
= p
->fts_link
)
1055 qsort(sp
->fts_array
, nitems
, sizeof(FTSENT
*), fts_compar
);
1056 for (head
= *(ap
= sp
->fts_array
); --nitems
; ++ap
)
1057 ap
[0]->fts_link
= ap
[1];
1058 ap
[0]->fts_link
= NULL
;
1063 fts_alloc(FTS
*sp
, char *name
, size_t namelen
)
1068 struct ftsent_withstat
{
1070 struct stat statbuf
;
1074 * The file name is a variable length array and no stat structure is
1075 * necessary if the user has set the nostat bit. Allocate the FTSENT
1076 * structure, the file name and the stat structure in one chunk, but
1077 * be careful that the stat structure is reasonably aligned.
1079 if (ISSET(FTS_NOSTAT
))
1080 len
= sizeof(FTSENT
) + namelen
+ 1;
1082 len
= sizeof(struct ftsent_withstat
) + namelen
+ 1;
1084 if ((p
= malloc(len
)) == NULL
)
1087 if (ISSET(FTS_NOSTAT
)) {
1088 p
->fts_name
= (char *)(p
+ 1);
1089 p
->fts_statp
= NULL
;
1091 p
->fts_name
= (char *)((struct ftsent_withstat
*)p
+ 1);
1092 p
->fts_statp
= &((struct ftsent_withstat
*)p
)->statbuf
;
1095 /* Copy the name and guarantee NUL termination. */
1096 memcpy(p
->fts_name
, name
, namelen
);
1097 p
->fts_name
[namelen
] = '\0';
1098 p
->fts_namelen
= namelen
;
1099 p
->fts_path
= sp
->fts_path
;
1102 p
->fts_instr
= FTS_NOINSTR
;
1104 p
->fts_pointer
= NULL
;
1110 fts_lfree(FTSENT
*head
)
1114 /* Free a linked list of structures. */
1115 while ((p
= head
)) {
1116 head
= head
->fts_link
;
1122 * Allow essentially unlimited paths; find, rm, ls should all work on any tree.
1123 * Most systems will allow creation of paths much longer than MAXPATHLEN, even
1124 * though the kernel won't resolve them. Add the size (not just what's needed)
1125 * plus 256 bytes so don't realloc the path 2 bytes at a time.
1128 fts_palloc(FTS
*sp
, size_t more
)
1131 sp
->fts_pathlen
+= more
+ 256;
1133 old_path
= sp
->fts_path
;
1134 sp
->fts_path
= realloc(old_path
, sp
->fts_pathlen
);
1135 if (sp
->fts_path
== NULL
)
1138 return (sp
->fts_path
== NULL
);
1142 * When the path is realloc'd, have to fix all of the pointers in structures
1146 fts_padjust(FTS
*sp
, FTSENT
*head
)
1149 char *addr
= sp
->fts_path
;
1151 #define ADJUST(p) do { \
1152 if ((p)->fts_accpath != (p)->fts_name) { \
1153 (p)->fts_accpath = \
1154 (char *)addr + ((p)->fts_accpath - (p)->fts_path); \
1156 (p)->fts_path = addr; \
1158 /* Adjust the current set of children. */
1159 for (p
= sp
->fts_child
; p
; p
= p
->fts_link
)
1162 /* Adjust the rest of the tree, including the current level. */
1163 for (p
= head
; p
->fts_level
>= FTS_ROOTLEVEL
;) {
1165 p
= p
->fts_link
? p
->fts_link
: p
->fts_parent
;
1175 for (max
= 0; *argv
; ++argv
)
1176 if ((len
= strlen(*argv
)) > max
)
1182 * Change to dir specified by fd or p->fts_accpath without getting
1183 * tricked by someone changing the world out from underneath us.
1184 * Assumes p->fts_dev and p->fts_ino are filled in.
1187 fts_safe_changedir(FTS
*sp
, FTSENT
*p
, int fd
, char *path
)
1189 int ret
, oerrno
, newfd
;
1193 if (ISSET(FTS_NOCHDIR
))
1195 if (fd
< 0 && (newfd
= open(path
, O_RDONLY
| O_CLOEXEC
, 0)) < 0)
1197 if (fstat(newfd
, &sb
)) {
1201 if (p
->fts_dev
!= sb
.st_dev
|| p
->fts_ino
!= sb
.st_ino
) {
1202 errno
= ENOENT
; /* disinformation */
1206 ret
= fchdir(newfd
);
1216 * Check if the filesystem for "ent" has UFS-style links.
1219 fts_ufslinks(FTS
*sp
, const FTSENT
*ent
)
1221 struct _fts_private
*priv
;
1226 priv
= (struct _fts_private
*)sp
;
1228 * If this node's device is different from the previous, grab
1229 * the filesystem information, and decide on the reliability
1230 * of the link information from this filesystem for stat(2)
1233 if (priv
->ftsp_dev
!= ent
->fts_dev
) {
1235 if (statfs(ent
->fts_path
, &priv
->ftsp_statfs
) != -1) {
1236 priv
->ftsp_dev
= ent
->fts_dev
;
1237 priv
->ftsp_linksreliable
= 0;
1238 for (cpp
= ufslike_filesystems
; *cpp
; cpp
++) {
1239 if (strcmp(priv
->ftsp_statfs
.f_fstypename
,
1241 priv
->ftsp_linksreliable
= 1;
1246 priv
->ftsp_linksreliable
= 0;
1249 priv
->ftsp_linksreliable
= 0;
1252 return (priv
->ftsp_linksreliable
);