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
30 #if !defined(__OpenBSD__) && !defined(__NetBSD__) && !defined(__APPLE__)
32 #if defined(LIBC_SCCS) && !defined(lint)
33 static char sccsid
[] = "@(#)fts.c 8.6 (Berkeley) 8/14/94";
34 #endif /* LIBC_SCCS and not lint */
36 /* Hybrid of uClinux-dist/glibc/io/fts.c and MirBSD src/lib/libc/gen/fts.c */
38 #include <sys/param.h>
40 #include <sys/statfs.h>
55 #define internal_function
57 /* Largest alignment size needed, minus one.
58 Usually long double is the worst case. */
60 #define ALIGNBYTES (__alignof__ (long double) - 1)
62 /* Align P to that size. */
64 #define ALIGN(p) (((unsigned long int) (p) + ALIGNBYTES) & ~ALIGNBYTES)
68 static FTSENT
*fts_alloc (FTS
*, const char *, int) internal_function
;
69 static FTSENT
*fts_build (FTS
*, int) internal_function
;
70 static void fts_lfree (FTSENT
*) internal_function
;
71 static void fts_load (FTS
*, FTSENT
*) internal_function
;
72 static size_t fts_maxarglen (char * const *) internal_function
;
73 static void fts_padjust (FTS
*, FTSENT
*) internal_function
;
74 static int fts_palloc (FTS
*, size_t) internal_function
;
75 static FTSENT
*fts_sort (FTS
*, FTSENT
*, int) internal_function
;
76 static u_short
fts_stat (FTS
*, FTSENT
*, int) internal_function
;
77 static int fts_safe_changedir(FTS
*, FTSENT
*, int, char *);
80 #define MAX(a, b) ({ __typeof__ (a) _a = (a); \
81 __typeof__ (b) _b = (b); \
85 #define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2])))
87 #define CLR(opt) (sp->fts_options &= ~(opt))
88 #define ISSET(opt) (sp->fts_options & (opt))
89 #define SET(opt) (sp->fts_options |= (opt))
91 #define FCHDIR(sp, fd) (!ISSET(FTS_NOCHDIR) && fchdir(fd))
94 #define BCHILD 1 /* fts_children */
95 #define BNAMES 2 /* fts_children, names only */
96 #define BREAD 3 /* fts_read */
99 fts_open(argv
, options
, compar
)
101 register int options
;
102 int (*compar
) (const FTSENT
**, const FTSENT
**);
105 register FTSENT
*p
, *root
;
107 FTSENT
*parent
, *tmp
;
111 if (options
& ~FTS_OPTIONMASK
) {
116 /* Allocate/initialize the stream */
117 if ((sp
= malloc((u_int
)sizeof(FTS
))) == NULL
)
119 memset(sp
, 0, sizeof(FTS
));
120 sp
->fts_compar
= (int (*) (const void *, const void *)) compar
;
121 sp
->fts_options
= options
;
123 /* Logical walks turn on NOCHDIR; symbolic links are too hard. */
124 if (ISSET(FTS_LOGICAL
))
128 * Start out with 1K of path space, and enough, in any case,
129 * to hold the user's paths.
132 #define MAXPATHLEN 1024
134 if (fts_palloc(sp
, MAX(fts_maxarglen(argv
), MAXPATHLEN
)))
137 /* Allocate/initialize root's parent. */
138 if ((parent
= fts_alloc(sp
, "", 0)) == NULL
)
140 parent
->fts_level
= FTS_ROOTPARENTLEVEL
;
142 /* Allocate/initialize root(s). */
143 for (root
= NULL
, nitems
= 0; *argv
!= NULL
; ++argv
, ++nitems
) {
144 /* Don't allow zero-length paths. */
145 if ((len
= strlen(*argv
)) == 0) {
150 p
= fts_alloc(sp
, *argv
, len
);
151 p
->fts_level
= FTS_ROOTLEVEL
;
152 p
->fts_parent
= parent
;
153 p
->fts_accpath
= p
->fts_name
;
154 p
->fts_info
= fts_stat(sp
, p
, ISSET(FTS_COMFOLLOW
));
156 /* Command-line "." and ".." are real directories. */
157 if (p
->fts_info
== FTS_DOT
)
161 * If comparison routine supplied, traverse in sorted
162 * order; otherwise traverse in the order specified.
177 if (compar
&& nitems
> 1)
178 root
= fts_sort(sp
, root
, nitems
);
181 * Allocate a dummy pointer and make fts_read think that we've just
182 * finished the node before the root(s); set p->fts_info to FTS_INIT
183 * so that everything about the "current" node is ignored.
185 if ((sp
->fts_cur
= fts_alloc(sp
, "", 0)) == NULL
)
187 sp
->fts_cur
->fts_link
= root
;
188 sp
->fts_cur
->fts_info
= FTS_INIT
;
191 * If using chdir(2), grab a file descriptor pointing to dot to ensure
192 * that we can get back here; this could be avoided for some paths,
193 * but almost certainly not worth the effort. Slashes, symbolic links,
194 * and ".." are all fairly nasty problems. Note, if we can't get the
195 * descriptor we run anyway, just more slowly.
197 if (!ISSET(FTS_NOCHDIR
)
198 && (sp
->fts_rfd
= open(".", O_RDONLY
, 0)) < 0)
203 mem3
: fts_lfree(root
);
205 mem2
: free(sp
->fts_path
);
220 * Load the stream structure for the next traversal. Since we don't
221 * actually enter the directory until after the preorder visit, set
222 * the fts_accpath field specially so the chdir gets done to the right
223 * place and the user can access the first node. From fts_open it's
224 * known that the path will fit.
226 len
= p
->fts_pathlen
= p
->fts_namelen
;
227 memmove(sp
->fts_path
, p
->fts_name
, len
+ 1);
228 if ((cp
= strrchr(p
->fts_name
, '/')) && (cp
!= p
->fts_name
|| cp
[1])) {
230 memmove(p
->fts_name
, cp
, len
+ 1);
231 p
->fts_namelen
= len
;
233 p
->fts_accpath
= p
->fts_path
= sp
->fts_path
;
234 sp
->fts_dev
= p
->fts_dev
;
241 register FTSENT
*freep
, *p
;
245 * This still works if we haven't read anything -- the dummy structure
246 * points to the root list, so we step through to the end of the root
247 * list which has a valid parent pointer.
250 for (p
= sp
->fts_cur
; p
->fts_level
>= FTS_ROOTLEVEL
;) {
252 p
= p
->fts_link
!= NULL
? p
->fts_link
: p
->fts_parent
;
258 /* Free up child linked list, sort array, path buffer. */
260 fts_lfree(sp
->fts_child
);
265 /* Return to original directory, save errno if necessary. */
266 if (!ISSET(FTS_NOCHDIR
)) {
267 saved_errno
= fchdir(sp
->fts_rfd
) ? errno
: 0;
268 (void)close(sp
->fts_rfd
);
270 /* Set errno and return. */
271 if (saved_errno
!= 0) {
272 /* Free up the stream pointer. */
279 /* Free up the stream pointer. */
285 * Special case of "/" at the end of the path so that slashes aren't
286 * appended which would cause paths to be written as "....//foo".
289 (p->fts_path[p->fts_pathlen - 1] == '/' \
290 ? p->fts_pathlen - 1 : p->fts_pathlen)
296 register FTSENT
*p
, *tmp
;
301 /* If finished or unrecoverable error, return NULL. */
302 if (sp
->fts_cur
== NULL
|| ISSET(FTS_STOP
))
305 /* Set current node pointer. */
308 /* Save and zero out user instructions. */
309 instr
= p
->fts_instr
;
310 p
->fts_instr
= FTS_NOINSTR
;
312 /* Any type of file may be re-visited; re-stat and re-turn. */
313 if (instr
== FTS_AGAIN
) {
314 p
->fts_info
= fts_stat(sp
, p
, 0);
319 * Following a symlink -- SLNONE test allows application to see
320 * SLNONE and recover. If indirecting through a symlink, have
321 * keep a pointer to current location. If unable to get that
322 * pointer, follow fails.
324 if (instr
== FTS_FOLLOW
&&
325 (p
->fts_info
== FTS_SL
|| p
->fts_info
== FTS_SLNONE
)) {
326 p
->fts_info
= fts_stat(sp
, p
, 1);
327 if (p
->fts_info
== FTS_D
&& !ISSET(FTS_NOCHDIR
)) {
328 if ((p
->fts_symfd
= open(".", O_RDONLY
, 0)) < 0) {
329 p
->fts_errno
= errno
;
330 p
->fts_info
= FTS_ERR
;
332 p
->fts_flags
|= FTS_SYMFOLLOW
;
337 /* Directory in pre-order. */
338 if (p
->fts_info
== FTS_D
) {
339 /* If skipped or crossed mount point, do post-order visit. */
340 if (instr
== FTS_SKIP
||
341 (ISSET(FTS_XDEV
) && p
->fts_dev
!= sp
->fts_dev
)) {
342 if (p
->fts_flags
& FTS_SYMFOLLOW
)
343 (void)close(p
->fts_symfd
);
345 fts_lfree(sp
->fts_child
);
346 sp
->fts_child
= NULL
;
348 p
->fts_info
= FTS_DP
;
352 /* Rebuild if only read the names and now traversing. */
353 if (sp
->fts_child
!= NULL
&& ISSET(FTS_NAMEONLY
)) {
355 fts_lfree(sp
->fts_child
);
356 sp
->fts_child
= NULL
;
360 * Cd to the subdirectory.
362 * If have already read and now fail to chdir, whack the list
363 * to make the names come out right, and set the parent errno
364 * so the application will eventually get an error condition.
365 * Set the FTS_DONTCHDIR flag so that when we logically change
366 * directories back to the parent we don't do a chdir.
368 * If haven't read do so. If the read fails, fts_build sets
369 * FTS_STOP or the fts_info field of the node.
371 if (sp
->fts_child
!= NULL
) {
372 if (fts_safe_changedir(sp
, p
, -1, p
->fts_accpath
)) {
373 p
->fts_errno
= errno
;
374 p
->fts_flags
|= FTS_DONTCHDIR
;
375 for (p
= sp
->fts_child
; p
!= NULL
;
378 p
->fts_parent
->fts_accpath
;
380 } else if ((sp
->fts_child
= fts_build(sp
, BREAD
)) == NULL
) {
386 sp
->fts_child
= NULL
;
390 /* Move to the next node on this level. */
392 if ((p
= p
->fts_link
) != NULL
) {
396 * If reached the top, return to the original directory (or
397 * the root of the tree), and load the paths for the next root.
399 if (p
->fts_level
== FTS_ROOTLEVEL
) {
400 if (FCHDIR(sp
, sp
->fts_rfd
)) {
405 return (sp
->fts_cur
= p
);
409 * User may have called fts_set on the node. If skipped,
410 * ignore. If followed, get a file descriptor so we can
411 * get back if necessary.
413 if (p
->fts_instr
== FTS_SKIP
)
415 if (p
->fts_instr
== FTS_FOLLOW
) {
416 p
->fts_info
= fts_stat(sp
, p
, 1);
417 if (p
->fts_info
== FTS_D
&& !ISSET(FTS_NOCHDIR
)) {
419 open(".", O_RDONLY
, 0)) < 0) {
420 p
->fts_errno
= errno
;
421 p
->fts_info
= FTS_ERR
;
423 p
->fts_flags
|= FTS_SYMFOLLOW
;
425 p
->fts_instr
= FTS_NOINSTR
;
428 name
: t
= sp
->fts_path
+ NAPPEND(p
->fts_parent
);
430 memmove(t
, p
->fts_name
, p
->fts_namelen
+ 1);
431 return (sp
->fts_cur
= p
);
434 /* Move up to the parent node. */
438 if (p
->fts_level
== FTS_ROOTPARENTLEVEL
) {
440 * Done; free everything up and set errno to 0 so the user
441 * can distinguish between error and EOF.
445 return (sp
->fts_cur
= NULL
);
448 /* NUL terminate the pathname. */
449 sp
->fts_path
[p
->fts_pathlen
] = '\0';
452 * Return to the parent directory. If at a root node or came through
453 * a symlink, go back through the file descriptor. Otherwise, cd up
456 if (p
->fts_level
== FTS_ROOTLEVEL
) {
457 if (FCHDIR(sp
, sp
->fts_rfd
)) {
461 } else if (p
->fts_flags
& FTS_SYMFOLLOW
) {
462 if (FCHDIR(sp
, p
->fts_symfd
)) {
464 (void)close(p
->fts_symfd
);
469 (void)close(p
->fts_symfd
);
470 } else if (!(p
->fts_flags
& FTS_DONTCHDIR
) &&
471 fts_safe_changedir(sp
, p
->fts_parent
, -1, "..")) {
475 p
->fts_info
= p
->fts_errno
? FTS_ERR
: FTS_DP
;
476 return (sp
->fts_cur
= p
);
480 * Fts_set takes the stream as an argument although it's not used in this
481 * implementation; it would be necessary if anyone wanted to add global
482 * semantics to fts using fts_set. An error return is allowed for similar
487 fts_set(sp
, p
, instr
)
492 if (instr
!= 0 && instr
!= FTS_AGAIN
&& instr
!= FTS_FOLLOW
&&
493 instr
!= FTS_NOINSTR
&& instr
!= FTS_SKIP
) {
497 p
->fts_instr
= instr
;
502 fts_children(sp
, instr
)
509 if (instr
!= 0 && instr
!= FTS_NAMEONLY
) {
514 /* Set current node pointer. */
518 * Errno set to 0 so user can distinguish empty directory from
523 /* Fatal errors stop here. */
527 /* Return logical hierarchy of user's arguments. */
528 if (p
->fts_info
== FTS_INIT
)
529 return (p
->fts_link
);
532 * If not a directory being visited in pre-order, stop here. Could
533 * allow FTS_DNR, assuming the user has fixed the problem, but the
534 * same effect is available with FTS_AGAIN.
536 if (p
->fts_info
!= FTS_D
/* && p->fts_info != FTS_DNR */)
539 /* Free up any previous child list. */
540 if (sp
->fts_child
!= NULL
)
541 fts_lfree(sp
->fts_child
);
543 if (instr
== FTS_NAMEONLY
) {
550 * If using chdir on a relative path and called BEFORE fts_read does
551 * its chdir to the root of a traversal, we can lose -- we need to
552 * chdir into the subdirectory, and we don't know where the current
553 * directory is, so we can't get back so that the upcoming chdir by
554 * fts_read will work.
556 if (p
->fts_level
!= FTS_ROOTLEVEL
|| p
->fts_accpath
[0] == '/' ||
558 return (sp
->fts_child
= fts_build(sp
, instr
));
560 if ((fd
= open(".", O_RDONLY
, 0)) < 0)
562 sp
->fts_child
= fts_build(sp
, instr
);
566 return (sp
->fts_child
);
570 * This is the tricky part -- do not casually change *anything* in here. The
571 * idea is to build the linked list of entries that are used by fts_children
572 * and fts_read. There are lots of special cases.
574 * The real slowdown in walking the tree is the stat calls. If FTS_NOSTAT is
575 * set and it's a physical walk (so that symbolic links can't be directories),
576 * we can do things quickly. First, if it's a 4.4BSD file system, the type
577 * of the file is in the directory entry. Otherwise, we assume that the number
578 * of subdirectories in a node is equal to the number of links to the parent.
579 * The former skips all stat calls. The latter skips stat calls in any leaf
580 * directories and for any files after the subdirectories in the directory have
581 * been found, cutting the stat calls by about 2/3.
589 register struct dirent
*dp
;
590 register FTSENT
*p
, *head
;
595 int cderrno
, descend
, len
, level
, maxlen
, nlinks
, saved_errno
,
599 /* Set current node pointer. */
603 * Open the directory for reading. If this fails, we're done.
604 * If being called from fts_read, set the fts_info field.
606 if ((dirp
= opendir(cur
->fts_accpath
)) == NULL
) {
608 cur
->fts_info
= FTS_DNR
;
609 cur
->fts_errno
= errno
;
615 * Nlinks is the number of possible entries of type directory in the
616 * directory if we're cheating on stat calls, 0 if we're not doing
617 * any stat calls at all, -1 if we're doing stats on everything.
619 if (type
== BNAMES
) {
621 /* Be quiet about nostat, GCC. */
623 } else if (ISSET(FTS_NOSTAT
) && ISSET(FTS_PHYSICAL
)) {
624 nlinks
= cur
->fts_nlink
- (ISSET(FTS_SEEDOT
) ? 0 : 2);
632 (void)printf("nlinks == %d (cur: %d)\n", nlinks
, cur
->fts_nlink
);
633 (void)printf("NOSTAT %d PHYSICAL %d SEEDOT %d\n",
634 ISSET(FTS_NOSTAT
), ISSET(FTS_PHYSICAL
), ISSET(FTS_SEEDOT
));
637 * If we're going to need to stat anything or we want to descend
638 * and stay in the directory, chdir. If this fails we keep going,
639 * but set a flag so we don't chdir after the post-order visit.
640 * We won't be able to stat anything, but we can still return the
641 * names themselves. Note, that since fts_read won't be able to
642 * chdir into the directory, it will have to return different path
643 * names than before, i.e. "a/b" instead of "b". Since the node
644 * has already been visited in pre-order, have to wait until the
645 * post-order visit to return the error. There is a special case
646 * here, if there was nothing to stat then it's not an error to
647 * not be able to stat. This is all fairly nasty. If a program
648 * needed sorted entries or stat information, they had better be
649 * checking FTS_NS on the returned nodes.
652 if (nlinks
|| type
== BREAD
) {
653 if (fts_safe_changedir(sp
, cur
, dirfd(dirp
), NULL
)) {
654 if (nlinks
&& type
== BREAD
)
655 cur
->fts_errno
= errno
;
656 cur
->fts_flags
|= FTS_DONTCHDIR
;
659 (void)closedir(dirp
);
667 * Figure out the max file name length that can be stored in the
668 * current path -- the inner loop allocates more path as necessary.
669 * We really wouldn't have to do the maxlen calculations here, we
670 * could do them in fts_read before returning the path, but it's a
671 * lot easier here since the length is part of the dirent structure.
673 * If not changing directories set a pointer so that can just append
674 * each new name into the path.
677 if (ISSET(FTS_NOCHDIR
)) {
678 cp
= sp
->fts_path
+ len
;
681 /* GCC, you're too verbose. */
685 maxlen
= sp
->fts_pathlen
- len
;
687 level
= cur
->fts_level
+ 1;
689 /* Read the directory, attaching each entry to the `link' pointer. */
691 for (head
= tail
= NULL
, nitems
= 0; dirp
&& (dp
= readdir(dirp
));) {
692 if (!ISSET(FTS_SEEDOT
) && ISDOT(dp
->d_name
))
695 if ((p
= fts_alloc(sp
, dp
->d_name
, (int)strlen(dp
->d_name
))) == NULL
)
697 if (strlen(dp
->d_name
) >= maxlen
) {/* include space for NUL */
698 oldaddr
= sp
->fts_path
;
699 if (fts_palloc(sp
, strlen(dp
->d_name
) + len
+ 1)) {
701 * No more memory for path or structures. Save
702 * errno, free up the current structure and the
703 * structures already allocated.
705 mem1
: saved_errno
= errno
;
709 (void)closedir(dirp
);
710 cur
->fts_info
= FTS_ERR
;
715 /* Did realloc() change the pointer? */
716 if (oldaddr
!= sp
->fts_path
) {
718 if (ISSET(FTS_NOCHDIR
))
719 cp
= sp
->fts_path
+ len
;
721 maxlen
= sp
->fts_pathlen
- len
;
724 if (len
+ strlen(dp
->d_name
) >= USHRT_MAX
) {
726 * In an FTSENT, fts_pathlen is a u_short so it is
727 * possible to wraparound here. If we do, free up
728 * the current structure and the structures already
729 * allocated, then error out with ENAMETOOLONG.
733 (void)closedir(dirp
);
734 cur
->fts_info
= FTS_ERR
;
736 errno
= ENAMETOOLONG
;
739 p
->fts_level
= level
;
740 p
->fts_parent
= sp
->fts_cur
;
741 p
->fts_pathlen
= len
+ strlen(dp
->d_name
);
743 #if defined FTS_WHITEOUT && 0
744 if (dp
->d_type
== DT_WHT
)
745 p
->fts_flags
|= FTS_ISW
;
750 p
->fts_info
= FTS_NS
;
751 p
->fts_errno
= cderrno
;
753 p
->fts_info
= FTS_NSOK
;
754 p
->fts_accpath
= cur
->fts_accpath
;
755 } else if (nlinks
== 0
756 #if defined DT_DIR && defined _DIRENT_HAVE_D_TYPE
758 dp
->d_type
!= DT_DIR
&& dp
->d_type
!= DT_UNKNOWN
)
762 ISSET(FTS_NOCHDIR
) ? p
->fts_path
: p
->fts_name
;
763 p
->fts_info
= FTS_NSOK
;
765 /* Build a file name for fts_stat to stat. */
766 if (ISSET(FTS_NOCHDIR
)) {
767 p
->fts_accpath
= p
->fts_path
;
768 memmove(cp
, p
->fts_name
, p
->fts_namelen
+ 1);
770 p
->fts_accpath
= p
->fts_name
;
772 p
->fts_info
= fts_stat(sp
, p
, 0);
774 /* Decrement link count if applicable. */
775 if (nlinks
> 0 && (p
->fts_info
== FTS_D
||
776 p
->fts_info
== FTS_DC
|| p
->fts_info
== FTS_DOT
))
780 /* We walk in directory order so "ls -f" doesn't get upset. */
791 (void)closedir(dirp
);
794 * If realloc() changed the address of the path, adjust the
795 * addresses for the rest of the tree and the dir list.
798 fts_padjust(sp
, head
);
801 * If not changing directories, reset the path back to original
804 if (ISSET(FTS_NOCHDIR
)) {
805 if (len
== sp
->fts_pathlen
|| nitems
== 0)
811 * If descended after called from fts_children or after called from
812 * fts_read and nothing found, get back. At the root level we use
813 * the saved fd; if one of fts_open()'s arguments is a relative path
814 * to an empty directory, we wind up here with no other way back. If
815 * can't get back, we're done.
817 if (descend
&& (type
== BCHILD
|| !nitems
) &&
818 (cur
->fts_level
== FTS_ROOTLEVEL
?
819 FCHDIR(sp
, sp
->fts_rfd
) :
820 fts_safe_changedir(sp
, cur
->fts_parent
, -1, ".."))) {
821 cur
->fts_info
= FTS_ERR
;
826 /* If didn't find anything, return NULL. */
829 cur
->fts_info
= FTS_DP
;
833 /* Sort the entries. */
834 if (sp
->fts_compar
&& nitems
> 1)
835 head
= fts_sort(sp
, head
, nitems
);
841 fts_stat(sp
, p
, follow
)
849 struct stat
*sbp
, sb
;
852 /* If user needs stat info, stat buffer already allocated. */
853 sbp
= ISSET(FTS_NOSTAT
) ? &sb
: p
->fts_statp
;
855 #if defined FTS_WHITEOUT && 0
856 /* check for whiteout */
857 if (p
->fts_flags
& FTS_ISW
) {
859 memset(sbp
, '\0', sizeof (*sbp
));
860 sbp
->st_mode
= S_IFWHT
;
867 * If doing a logical walk, or application requested FTS_FOLLOW, do
868 * a stat(2). If that fails, check for a non-existent symlink. If
869 * fail, set the errno from the stat call.
871 if (ISSET(FTS_LOGICAL
) || follow
) {
872 if (stat(p
->fts_accpath
, sbp
)) {
874 if (!lstat(p
->fts_accpath
, sbp
)) {
878 p
->fts_errno
= saved_errno
;
881 } else if (lstat(p
->fts_accpath
, sbp
)) {
882 p
->fts_errno
= errno
;
883 err
: memset(sbp
, 0, sizeof(struct stat
));
887 if (S_ISDIR(sbp
->st_mode
)) {
889 * Set the device/inode. Used to find cycles and check for
890 * crossing mount points. Also remember the link count, used
891 * in fts_build to limit the number of stat calls. It is
892 * understood that these fields are only referenced if fts_info
895 dev
= p
->fts_dev
= sbp
->st_dev
;
896 ino
= p
->fts_ino
= sbp
->st_ino
;
897 p
->fts_nlink
= sbp
->st_nlink
;
899 if (ISDOT(p
->fts_name
))
903 * Cycle detection is done by brute force when the directory
904 * is first encountered. If the tree gets deep enough or the
905 * number of symbolic links to directories is high enough,
906 * something faster might be worthwhile.
908 for (t
= p
->fts_parent
;
909 t
->fts_level
>= FTS_ROOTLEVEL
; t
= t
->fts_parent
)
910 if (ino
== t
->fts_ino
&& dev
== t
->fts_dev
) {
916 if (S_ISLNK(sbp
->st_mode
))
918 if (S_ISREG(sbp
->st_mode
))
920 return (FTS_DEFAULT
);
925 fts_sort(sp
, head
, nitems
)
930 register FTSENT
**ap
, *p
;
933 * Construct an array of pointers to the structures and call qsort(3).
934 * Reassemble the array in the order returned by qsort. If unable to
935 * sort for memory reasons, return the directory entries in their
936 * current order. Allocate enough space for the current needs plus
937 * 40 so don't realloc one entry at a time.
939 if (nitems
> sp
->fts_nitems
) {
940 sp
->fts_nitems
= nitems
+ 40;
941 if ((sp
->fts_array
= realloc(sp
->fts_array
,
942 (size_t)(sp
->fts_nitems
* sizeof(FTSENT
*)))) == NULL
) {
947 for (ap
= sp
->fts_array
, p
= head
; p
; p
= p
->fts_link
)
949 qsort((void *)sp
->fts_array
, nitems
, sizeof(FTSENT
*), sp
->fts_compar
);
950 for (head
= *(ap
= sp
->fts_array
); --nitems
; ++ap
)
951 ap
[0]->fts_link
= ap
[1];
952 ap
[0]->fts_link
= NULL
;
958 fts_alloc(sp
, name
, namelen
)
961 register int namelen
;
967 * The file name is a variable length array and no stat structure is
968 * necessary if the user has set the nostat bit. Allocate the FTSENT
969 * structure, the file name and the stat structure in one chunk, but
970 * be careful that the stat structure is reasonably aligned. Since the
971 * fts_name field is declared to be of size 1, the fts_name pointer is
972 * namelen + 2 before the first possible address of the stat structure.
974 len
= sizeof(FTSENT
) + namelen
;
975 if (!ISSET(FTS_NOSTAT
))
976 len
+= sizeof(struct stat
) + ALIGNBYTES
;
977 if ((p
= malloc(len
)) == NULL
)
980 /* Copy the name and guarantee NUL termination. */
981 memmove(p
->fts_name
, name
, namelen
);
982 p
->fts_name
[namelen
] = '\0';
984 if (!ISSET(FTS_NOSTAT
))
985 p
->fts_statp
= (struct stat
*)ALIGN(p
->fts_name
+ namelen
+ 2);
986 p
->fts_namelen
= namelen
;
987 p
->fts_path
= sp
->fts_path
;
990 p
->fts_instr
= FTS_NOINSTR
;
992 p
->fts_pointer
= NULL
;
999 register FTSENT
*head
;
1003 /* Free a linked list of structures. */
1004 while ((p
= head
)) {
1005 head
= head
->fts_link
;
1011 * Allow essentially unlimited paths; find, rm, ls should all work on any tree.
1012 * Most systems will allow creation of paths much longer than MAXPATHLEN, even
1013 * though the kernel won't resolve them. Add the size (not just what's needed)
1014 * plus 256 bytes so don't realloc the path 2 bytes at a time.
1018 fts_palloc(sp
, more
)
1022 sp
->fts_pathlen
+= more
+ 256;
1024 * Check for possible wraparound. In an FTS, fts_pathlen is
1025 * a signed int but in an FTSENT it is an unsigned short.
1026 * We limit fts_pathlen to USHRT_MAX to be safe in both cases.
1028 if (sp
->fts_pathlen
< 0 || sp
->fts_pathlen
>= USHRT_MAX
) {
1031 sp
->fts_path
= NULL
;
1032 errno
= ENAMETOOLONG
;
1035 sp
->fts_path
= realloc(sp
->fts_path
, sp
->fts_pathlen
);
1036 return (sp
->fts_path
== NULL
);
1040 * When the path is realloc'd, have to fix all of the pointers in structures
1045 fts_padjust(sp
, head
)
1050 char *addr
= sp
->fts_path
;
1052 #define ADJUST(p) do { \
1053 if ((p)->fts_accpath != (p)->fts_name) { \
1054 (p)->fts_accpath = \
1055 (char *)addr + ((p)->fts_accpath - (p)->fts_path); \
1057 (p)->fts_path = addr; \
1059 /* Adjust the current set of children. */
1060 for (p
= sp
->fts_child
; p
; p
= p
->fts_link
)
1063 /* Adjust the rest of the tree, including the current level. */
1064 for (p
= head
; p
->fts_level
>= FTS_ROOTLEVEL
;) {
1066 p
= p
->fts_link
? p
->fts_link
: p
->fts_parent
;
1077 for (max
= 0; *argv
; ++argv
)
1078 if ((len
= strlen(*argv
)) > max
)
1083 * Change to dir specified by fd or p->fts_accpath without getting
1084 * tricked by someone changing the world out from underneath us.
1085 * Assumes p->fts_dev and p->fts_ino are filled in.
1088 fts_safe_changedir(FTS
*sp
, FTSENT
*p
, int fd
, char *path
)
1090 int ret
, oerrno
, newfd
;
1094 if (ISSET(FTS_NOCHDIR
))
1096 if (fd
< 0 && (newfd
= open(path
, O_RDONLY
, 0)) < 0)
1098 if (fstat(newfd
, &sb
)) {
1102 if (p
->fts_dev
!= sb
.st_dev
|| p
->fts_ino
!= sb
.st_ino
) {
1103 errno
= ENOENT
; /* disinformation */
1107 ret
= fchdir(newfd
);
1116 #endif /* !OpenBSD/NetBSD/APPLE */