]>
git.saurik.com Git - apple/libc.git/blob - gen.subproj/fts.c
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1990, 1993, 1994
24 * The Regents of the University of California. All rights reserved.
26 * Redistribution and use in source and binary forms, with or without
27 * modification, are permitted provided that the following conditions
29 * 1. Redistributions of source code must retain the above copyright
30 * notice, this list of conditions and the following disclaimer.
31 * 2. Redistributions in binary form must reproduce the above copyright
32 * notice, this list of conditions and the following disclaimer in the
33 * documentation and/or other materials provided with the distribution.
34 * 3. All advertising materials mentioning features or use of this software
35 * must display the following acknowledgement:
36 * This product includes software developed by the University of
37 * California, Berkeley and its contributors.
38 * 4. Neither the name of the University nor the names of its contributors
39 * may be used to endorse or promote products derived from this software
40 * without specific prior written permission.
42 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
43 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
46 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
47 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
48 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
50 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
51 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
56 #include <sys/param.h>
67 static FTSENT
*fts_alloc
__P((FTS
*, char *, int));
68 static FTSENT
*fts_build
__P((FTS
*, int));
69 static void fts_lfree
__P((FTSENT
*));
70 static void fts_load
__P((FTS
*, FTSENT
*));
71 static size_t fts_maxarglen
__P((char * const *));
72 static void fts_padjust
__P((FTS
*, void *));
73 static int fts_palloc
__P((FTS
*, size_t));
74 static FTSENT
*fts_sort
__P((FTS
*, FTSENT
*, int));
75 static u_short fts_stat
__P((FTS
*, FTSENT
*, int));
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))
86 #define BCHILD 1 /* fts_children */
87 #define BNAMES 2 /* fts_children, names only */
88 #define BREAD 3 /* fts_read */
91 fts_open(argv
, options
, compar
)
97 register FTSENT
*p
, *root
;
103 if (options
& ~FTS_OPTIONMASK
) {
108 /* Allocate/initialize the stream */
109 if ((sp
= malloc((u_int
)sizeof(FTS
))) == NULL
)
111 memset(sp
, 0, sizeof(FTS
));
112 sp
->fts_compar
= compar
;
113 sp
->fts_options
= options
;
115 /* Logical walks turn on NOCHDIR; symbolic links are too hard. */
116 if (ISSET(FTS_LOGICAL
))
120 * Start out with 1K of path space, and enough, in any case,
121 * to hold the user's paths.
123 if (fts_palloc(sp
, MAX(fts_maxarglen(argv
), MAXPATHLEN
)))
126 /* Allocate/initialize root's parent. */
127 if ((parent
= fts_alloc(sp
, "", 0)) == NULL
)
129 parent
->fts_level
= FTS_ROOTPARENTLEVEL
;
131 /* Allocate/initialize root(s). */
132 for (root
= NULL
, nitems
= 0; *argv
; ++argv
, ++nitems
) {
133 /* Don't allow zero-length paths. */
134 if ((len
= strlen(*argv
)) == 0) {
139 p
= fts_alloc(sp
, *argv
, len
);
140 p
->fts_level
= FTS_ROOTLEVEL
;
141 p
->fts_parent
= parent
;
142 p
->fts_accpath
= p
->fts_name
;
143 p
->fts_info
= fts_stat(sp
, p
, ISSET(FTS_COMFOLLOW
));
145 /* Command-line "." and ".." are real directories. */
146 if (p
->fts_info
== FTS_DOT
)
150 * If comparison routine supplied, traverse in sorted
151 * order; otherwise traverse in the order specified.
166 if (compar
&& nitems
> 1)
167 root
= fts_sort(sp
, root
, nitems
);
170 * Allocate a dummy pointer and make fts_read think that we've just
171 * finished the node before the root(s); set p->fts_info to FTS_INIT
172 * so that everything about the "current" node is ignored.
174 if ((sp
->fts_cur
= fts_alloc(sp
, "", 0)) == NULL
)
176 sp
->fts_cur
->fts_link
= root
;
177 sp
->fts_cur
->fts_info
= FTS_INIT
;
180 * If using chdir(2), grab a file descriptor pointing to dot to insure
181 * that we can get back here; this could be avoided for some paths,
182 * but almost certainly not worth the effort. Slashes, symbolic links,
183 * and ".." are all fairly nasty problems. Note, if we can't get the
184 * descriptor we run anyway, just more slowly.
186 if (!ISSET(FTS_NOCHDIR
) && (sp
->fts_rfd
= open(".", O_RDONLY
, 0)) < 0)
191 mem3
: fts_lfree(root
);
193 mem2
: free(sp
->fts_path
);
207 * Load the stream structure for the next traversal. Since we don't
208 * actually enter the directory until after the preorder visit, set
209 * the fts_accpath field specially so the chdir gets done to the right
210 * place and the user can access the first node. From fts_open it's
211 * known that the path will fit.
213 len
= p
->fts_pathlen
= p
->fts_namelen
;
214 memmove(sp
->fts_path
, p
->fts_name
, len
+ 1);
215 if ((cp
= strrchr(p
->fts_name
, '/')) && (cp
!= p
->fts_name
|| cp
[1])) {
217 memmove(p
->fts_name
, cp
, len
+ 1);
218 p
->fts_namelen
= len
;
220 p
->fts_accpath
= p
->fts_path
= sp
->fts_path
;
221 sp
->fts_dev
= p
->fts_dev
;
228 register FTSENT
*freep
, *p
;
232 * This still works if we haven't read anything -- the dummy structure
233 * points to the root list, so we step through to the end of the root
234 * list which has a valid parent pointer.
237 for (p
= sp
->fts_cur
; p
->fts_level
>= FTS_ROOTLEVEL
;) {
239 p
= p
->fts_link
? p
->fts_link
: p
->fts_parent
;
245 /* Free up child linked list, sort array, path buffer. */
247 fts_lfree(sp
->fts_child
);
252 /* Return to original directory, save errno if necessary. */
253 if (!ISSET(FTS_NOCHDIR
)) {
254 if (fchdir(sp
->fts_rfd
)) {
257 (void)close(sp
->fts_rfd
);
260 /* Free up the stream pointer. */
263 /* Set errno and return. */
272 * Special case a root of "/" so that slashes aren't appended which would
273 * cause paths to be written as "//foo".
276 (p->fts_level == FTS_ROOTLEVEL && p->fts_pathlen == 1 && \
277 p->fts_path[0] == '/' ? 0 : p->fts_pathlen)
283 register FTSENT
*p
, *tmp
;
288 /* If finished or unrecoverable error, return NULL. */
289 if (sp
->fts_cur
== NULL
|| ISSET(FTS_STOP
))
292 /* Set current node pointer. */
295 /* Save and zero out user instructions. */
296 instr
= p
->fts_instr
;
297 p
->fts_instr
= FTS_NOINSTR
;
299 /* Any type of file may be re-visited; re-stat and re-turn. */
300 if (instr
== FTS_AGAIN
) {
301 p
->fts_info
= fts_stat(sp
, p
, 0);
306 * Following a symlink -- SLNONE test allows application to see
307 * SLNONE and recover. If indirecting through a symlink, have
308 * keep a pointer to current location. If unable to get that
309 * pointer, follow fails.
311 if (instr
== FTS_FOLLOW
&&
312 (p
->fts_info
== FTS_SL
|| p
->fts_info
== FTS_SLNONE
)) {
313 p
->fts_info
= fts_stat(sp
, p
, 1);
314 if (p
->fts_info
== FTS_D
&& !ISSET(FTS_NOCHDIR
))
315 if ((p
->fts_symfd
= open(".", O_RDONLY
, 0)) < 0) {
316 p
->fts_errno
= errno
;
317 p
->fts_info
= FTS_ERR
;
319 p
->fts_flags
|= FTS_SYMFOLLOW
;
323 /* Directory in pre-order. */
324 if (p
->fts_info
== FTS_D
) {
325 /* If skipped or crossed mount point, do post-order visit. */
326 if (instr
== FTS_SKIP
||
327 ISSET(FTS_XDEV
) && p
->fts_dev
!= sp
->fts_dev
) {
328 if (p
->fts_flags
& FTS_SYMFOLLOW
)
329 (void)close(p
->fts_symfd
);
331 fts_lfree(sp
->fts_child
);
332 sp
->fts_child
= NULL
;
334 p
->fts_info
= FTS_DP
;
338 /* Rebuild if only read the names and now traversing. */
339 if (sp
->fts_child
&& sp
->fts_options
& FTS_NAMEONLY
) {
340 sp
->fts_options
&= ~FTS_NAMEONLY
;
341 fts_lfree(sp
->fts_child
);
342 sp
->fts_child
= NULL
;
346 * Cd to the subdirectory.
348 * If have already read and now fail to chdir, whack the list
349 * to make the names come out right, and set the parent errno
350 * so the application will eventually get an error condition.
351 * Set the FTS_DONTCHDIR flag so that when we logically change
352 * directories back to the parent we don't do a chdir.
354 * If haven't read do so. If the read fails, fts_build sets
355 * FTS_STOP or the fts_info field of the node.
358 if (CHDIR(sp
, p
->fts_accpath
)) {
359 p
->fts_errno
= errno
;
360 p
->fts_flags
|= FTS_DONTCHDIR
;
361 for (p
= sp
->fts_child
; p
; p
= p
->fts_link
)
363 p
->fts_parent
->fts_accpath
;
365 } else if ((sp
->fts_child
= fts_build(sp
, BREAD
)) == NULL
) {
371 sp
->fts_child
= NULL
;
375 /* Move to the next node on this level. */
377 if (p
= p
->fts_link
) {
381 * If reached the top, return to the original directory, and
382 * load the paths for the next root.
384 if (p
->fts_level
== FTS_ROOTLEVEL
) {
385 if (!ISSET(FTS_NOCHDIR
) && FCHDIR(sp
, sp
->fts_rfd
)) {
390 return (sp
->fts_cur
= p
);
394 * User may have called fts_set on the node. If skipped,
395 * ignore. If followed, get a file descriptor so we can
396 * get back if necessary.
398 if (p
->fts_instr
== FTS_SKIP
)
400 if (p
->fts_instr
== FTS_FOLLOW
) {
401 p
->fts_info
= fts_stat(sp
, p
, 1);
402 if (p
->fts_info
== FTS_D
&& !ISSET(FTS_NOCHDIR
))
404 open(".", O_RDONLY
, 0)) < 0) {
405 p
->fts_errno
= errno
;
406 p
->fts_info
= FTS_ERR
;
408 p
->fts_flags
|= FTS_SYMFOLLOW
;
409 p
->fts_instr
= FTS_NOINSTR
;
412 name
: t
= sp
->fts_path
+ NAPPEND(p
->fts_parent
);
414 memmove(t
, p
->fts_name
, p
->fts_namelen
+ 1);
415 return (sp
->fts_cur
= p
);
418 /* Move up to the parent node. */
422 if (p
->fts_level
== FTS_ROOTPARENTLEVEL
) {
424 * Done; free everything up and set errno to 0 so the user
425 * can distinguish between error and EOF.
429 return (sp
->fts_cur
= NULL
);
432 /* Nul terminate the pathname. */
433 sp
->fts_path
[p
->fts_pathlen
] = '\0';
436 * Return to the parent directory. If at a root node or came through
437 * a symlink, go back through the file descriptor. Otherwise, cd up
440 if (p
->fts_level
== FTS_ROOTLEVEL
) {
441 if (!ISSET(FTS_NOCHDIR
) && FCHDIR(sp
, sp
->fts_rfd
)) {
445 } else if (p
->fts_flags
& FTS_SYMFOLLOW
) {
446 if (FCHDIR(sp
, p
->fts_symfd
)) {
448 (void)close(p
->fts_symfd
);
453 (void)close(p
->fts_symfd
);
454 } else if (!(p
->fts_flags
& FTS_DONTCHDIR
)) {
455 if (CHDIR(sp
, "..")) {
460 p
->fts_info
= p
->fts_errno
? FTS_ERR
: FTS_DP
;
461 return (sp
->fts_cur
= p
);
465 * Fts_set takes the stream as an argument although it's not used in this
466 * implementation; it would be necessary if anyone wanted to add global
467 * semantics to fts using fts_set. An error return is allowed for similar
472 fts_set(sp
, p
, instr
)
477 if (instr
&& instr
!= FTS_AGAIN
&& instr
!= FTS_FOLLOW
&&
478 instr
!= FTS_NOINSTR
&& instr
!= FTS_SKIP
) {
482 p
->fts_instr
= instr
;
487 fts_children(sp
, instr
)
494 if (instr
&& instr
!= FTS_NAMEONLY
) {
499 /* Set current node pointer. */
503 * Errno set to 0 so user can distinguish empty directory from
508 /* Fatal errors stop here. */
512 /* Return logical hierarchy of user's arguments. */
513 if (p
->fts_info
== FTS_INIT
)
514 return (p
->fts_link
);
517 * If not a directory being visited in pre-order, stop here. Could
518 * allow FTS_DNR, assuming the user has fixed the problem, but the
519 * same effect is available with FTS_AGAIN.
521 if (p
->fts_info
!= FTS_D
/* && p->fts_info != FTS_DNR */)
524 /* Free up any previous child list. */
526 fts_lfree(sp
->fts_child
);
528 if (instr
== FTS_NAMEONLY
) {
529 sp
->fts_options
|= FTS_NAMEONLY
;
535 * If using chdir on a relative path and called BEFORE fts_read does
536 * its chdir to the root of a traversal, we can lose -- we need to
537 * chdir into the subdirectory, and we don't know where the current
538 * directory is, so we can't get back so that the upcoming chdir by
539 * fts_read will work.
541 if (p
->fts_level
!= FTS_ROOTLEVEL
|| p
->fts_accpath
[0] == '/' ||
543 return (sp
->fts_child
= fts_build(sp
, instr
));
545 if ((fd
= open(".", O_RDONLY
, 0)) < 0)
547 sp
->fts_child
= fts_build(sp
, instr
);
551 return (sp
->fts_child
);
555 * This is the tricky part -- do not casually change *anything* in here. The
556 * idea is to build the linked list of entries that are used by fts_children
557 * and fts_read. There are lots of special cases.
559 * The real slowdown in walking the tree is the stat calls. If FTS_NOSTAT is
560 * set and it's a physical walk (so that symbolic links can't be directories),
561 * we can do things quickly. First, if it's a 4.4BSD file system, the type
562 * of the file is in the directory entry. Otherwise, we assume that the number
563 * of subdirectories in a node is equal to the number of links to the parent.
564 * The former skips all stat calls. The latter skips stat calls in any leaf
565 * directories and for any files after the subdirectories in the directory have
566 * been found, cutting the stat calls by about 2/3.
573 register struct dirent
*dp
;
574 register FTSENT
*p
, *head
;
579 int cderrno
, descend
, len
, level
, maxlen
, nlinks
, oflag
, saved_errno
;
582 /* Set current node pointer. */
586 * Open the directory for reading. If this fails, we're done.
587 * If being called from fts_read, set the fts_info field.
590 if (ISSET(FTS_WHITEOUT
))
591 oflag
= DTF_NODUP
|DTF_REWIND
;
593 oflag
= DTF_HIDEW
|DTF_NODUP
|DTF_REWIND
;
595 #define __opendir2(path, flag) opendir(path)
597 if ((dirp
= __opendir2(cur
->fts_accpath
, oflag
)) == NULL
) {
599 cur
->fts_info
= FTS_DNR
;
600 cur
->fts_errno
= errno
;
606 * Nlinks is the number of possible entries of type directory in the
607 * directory if we're cheating on stat calls, 0 if we're not doing
608 * any stat calls at all, -1 if we're doing stats on everything.
612 else if (ISSET(FTS_NOSTAT
) && ISSET(FTS_PHYSICAL
))
613 nlinks
= cur
->fts_nlink
- (ISSET(FTS_SEEDOT
) ? 0 : 2);
618 (void)printf("nlinks == %d (cur: %d)\n", nlinks
, cur
->fts_nlink
);
619 (void)printf("NOSTAT %d PHYSICAL %d SEEDOT %d\n",
620 ISSET(FTS_NOSTAT
), ISSET(FTS_PHYSICAL
), ISSET(FTS_SEEDOT
));
623 * If we're going to need to stat anything or we want to descend
624 * and stay in the directory, chdir. If this fails we keep going,
625 * but set a flag so we don't chdir after the post-order visit.
626 * We won't be able to stat anything, but we can still return the
627 * names themselves. Note, that since fts_read won't be able to
628 * chdir into the directory, it will have to return different path
629 * names than before, i.e. "a/b" instead of "b". Since the node
630 * has already been visited in pre-order, have to wait until the
631 * post-order visit to return the error. There is a special case
632 * here, if there was nothing to stat then it's not an error to
633 * not be able to stat. This is all fairly nasty. If a program
634 * needed sorted entries or stat information, they had better be
635 * checking FTS_NS on the returned nodes.
638 if (nlinks
|| type
== BREAD
)
639 if (FCHDIR(sp
, dirfd(dirp
))) {
640 if (nlinks
&& type
== BREAD
)
641 cur
->fts_errno
= errno
;
642 cur
->fts_flags
|= FTS_DONTCHDIR
;
651 * Figure out the max file name length that can be stored in the
652 * current path -- the inner loop allocates more path as necessary.
653 * We really wouldn't have to do the maxlen calculations here, we
654 * could do them in fts_read before returning the path, but it's a
655 * lot easier here since the length is part of the dirent structure.
657 * If not changing directories set a pointer so that can just append
658 * each new name into the path.
660 maxlen
= sp
->fts_pathlen
- cur
->fts_pathlen
- 1;
662 if (ISSET(FTS_NOCHDIR
)) {
663 cp
= sp
->fts_path
+ len
;
667 level
= cur
->fts_level
+ 1;
669 /* Read the directory, attaching each entry to the `link' pointer. */
671 for (head
= tail
= NULL
, nitems
= 0; dp
= readdir(dirp
);) {
672 if (!ISSET(FTS_SEEDOT
) && ISDOT(dp
->d_name
))
675 if ((p
= fts_alloc(sp
, dp
->d_name
, (int)dp
->d_namlen
)) == NULL
)
677 if (dp
->d_namlen
> maxlen
) {
678 if (fts_palloc(sp
, (size_t)dp
->d_namlen
)) {
680 * No more memory for path or structures. Save
681 * errno, free up the current structure and the
682 * structures already allocated.
684 mem1
: saved_errno
= errno
;
688 (void)closedir(dirp
);
690 cur
->fts_info
= FTS_ERR
;
694 adjaddr
= sp
->fts_path
;
695 maxlen
= sp
->fts_pathlen
- sp
->fts_cur
->fts_pathlen
- 1;
698 p
->fts_pathlen
= len
+ dp
->d_namlen
+ 1;
699 p
->fts_parent
= sp
->fts_cur
;
700 p
->fts_level
= level
;
703 if (dp
->d_type
== DT_WHT
)
704 p
->fts_flags
|= FTS_ISW
;
709 p
->fts_info
= FTS_NS
;
710 p
->fts_errno
= cderrno
;
712 p
->fts_info
= FTS_NSOK
;
713 p
->fts_accpath
= cur
->fts_accpath
;
714 } else if (nlinks
== 0
717 dp
->d_type
!= DT_DIR
&& dp
->d_type
!= DT_UNKNOWN
721 ISSET(FTS_NOCHDIR
) ? p
->fts_path
: p
->fts_name
;
722 p
->fts_info
= FTS_NSOK
;
724 /* Build a file name for fts_stat to stat. */
725 if (ISSET(FTS_NOCHDIR
)) {
726 p
->fts_accpath
= p
->fts_path
;
727 memmove(cp
, p
->fts_name
, p
->fts_namelen
+ 1);
729 p
->fts_accpath
= p
->fts_name
;
731 p
->fts_info
= fts_stat(sp
, p
, 0);
733 /* Decrement link count if applicable. */
734 if (nlinks
> 0 && (p
->fts_info
== FTS_D
||
735 p
->fts_info
== FTS_DC
|| p
->fts_info
== FTS_DOT
))
739 /* We walk in directory order so "ls -f" doesn't get upset. */
749 (void)closedir(dirp
);
752 * If had to realloc the path, adjust the addresses for the rest
756 fts_padjust(sp
, adjaddr
);
759 * If not changing directories, reset the path back to original
762 if (ISSET(FTS_NOCHDIR
)) {
763 if (cp
- 1 > sp
->fts_path
)
769 * If descended after called from fts_children or after called from
770 * fts_read and nothing found, get back. At the root level we use
771 * the saved fd; if one of fts_open()'s arguments is a relative path
772 * to an empty directory, we wind up here with no other way back. If
773 * can't get back, we're done.
775 if (descend
&& (type
== BCHILD
|| !nitems
) &&
776 (cur
->fts_level
== FTS_ROOTLEVEL
?
777 FCHDIR(sp
, sp
->fts_rfd
) : CHDIR(sp
, ".."))) {
778 cur
->fts_info
= FTS_ERR
;
783 /* If didn't find anything, return NULL. */
786 cur
->fts_info
= FTS_DP
;
790 /* Sort the entries. */
791 if (sp
->fts_compar
&& nitems
> 1)
792 head
= fts_sort(sp
, head
, nitems
);
797 fts_stat(sp
, p
, follow
)
805 struct stat
*sbp
, sb
;
808 /* If user needs stat info, stat buffer already allocated. */
809 sbp
= ISSET(FTS_NOSTAT
) ? &sb
: p
->fts_statp
;
812 /* check for whiteout */
813 if (p
->fts_flags
& FTS_ISW
) {
815 memset(sbp
, '\0', sizeof (*sbp
));
816 sbp
->st_mode
= S_IFWHT
;
823 * If doing a logical walk, or application requested FTS_FOLLOW, do
824 * a stat(2). If that fails, check for a non-existent symlink. If
825 * fail, set the errno from the stat call.
827 if (ISSET(FTS_LOGICAL
) || follow
) {
828 if (stat(p
->fts_accpath
, sbp
)) {
830 if (!lstat(p
->fts_accpath
, sbp
)) {
834 p
->fts_errno
= saved_errno
;
837 } else if (lstat(p
->fts_accpath
, sbp
)) {
838 p
->fts_errno
= errno
;
839 err
: memset(sbp
, 0, sizeof(struct stat
));
843 if (S_ISDIR(sbp
->st_mode
)) {
845 * Set the device/inode. Used to find cycles and check for
846 * crossing mount points. Also remember the link count, used
847 * in fts_build to limit the number of stat calls. It is
848 * understood that these fields are only referenced if fts_info
851 dev
= p
->fts_dev
= sbp
->st_dev
;
852 ino
= p
->fts_ino
= sbp
->st_ino
;
853 p
->fts_nlink
= sbp
->st_nlink
;
855 if (ISDOT(p
->fts_name
))
859 * Cycle detection is done by brute force when the directory
860 * is first encountered. If the tree gets deep enough or the
861 * number of symbolic links to directories is high enough,
862 * something faster might be worthwhile.
864 for (t
= p
->fts_parent
;
865 t
->fts_level
>= FTS_ROOTLEVEL
; t
= t
->fts_parent
)
866 if (ino
== t
->fts_ino
&& dev
== t
->fts_dev
) {
872 if (S_ISLNK(sbp
->st_mode
))
874 if (S_ISREG(sbp
->st_mode
))
876 return (FTS_DEFAULT
);
880 fts_sort(sp
, head
, nitems
)
885 register FTSENT
**ap
, *p
;
888 * Construct an array of pointers to the structures and call qsort(3).
889 * Reassemble the array in the order returned by qsort. If unable to
890 * sort for memory reasons, return the directory entries in their
891 * current order. Allocate enough space for the current needs plus
892 * 40 so don't realloc one entry at a time.
894 if (nitems
> sp
->fts_nitems
) {
895 sp
->fts_nitems
= nitems
+ 40;
896 if ((sp
->fts_array
= realloc(sp
->fts_array
,
897 (size_t)(sp
->fts_nitems
* sizeof(FTSENT
*)))) == NULL
) {
902 for (ap
= sp
->fts_array
, p
= head
; p
; p
= p
->fts_link
)
904 qsort((void *)sp
->fts_array
, nitems
, sizeof(FTSENT
*), sp
->fts_compar
);
905 for (head
= *(ap
= sp
->fts_array
); --nitems
; ++ap
)
906 ap
[0]->fts_link
= ap
[1];
907 ap
[0]->fts_link
= NULL
;
912 fts_alloc(sp
, name
, namelen
)
915 register int namelen
;
921 * The file name is a variable length array and no stat structure is
922 * necessary if the user has set the nostat bit. Allocate the FTSENT
923 * structure, the file name and the stat structure in one chunk, but
924 * be careful that the stat structure is reasonably aligned. Since the
925 * fts_name field is declared to be of size 1, the fts_name pointer is
926 * namelen + 2 before the first possible address of the stat structure.
928 len
= sizeof(FTSENT
) + namelen
;
929 if (!ISSET(FTS_NOSTAT
))
930 len
+= sizeof(struct stat
) + ALIGNBYTES
;
931 if ((p
= malloc(len
)) == NULL
)
934 /* Copy the name plus the trailing NULL. */
935 memmove(p
->fts_name
, name
, namelen
+ 1);
937 if (!ISSET(FTS_NOSTAT
))
938 p
->fts_statp
= (struct stat
*)ALIGN(p
->fts_name
+ namelen
+ 2);
939 p
->fts_namelen
= namelen
;
940 p
->fts_path
= sp
->fts_path
;
943 p
->fts_instr
= FTS_NOINSTR
;
945 p
->fts_pointer
= NULL
;
951 register FTSENT
*head
;
955 /* Free a linked list of structures. */
957 head
= head
->fts_link
;
963 * Allow essentially unlimited paths; find, rm, ls should all work on any tree.
964 * Most systems will allow creation of paths much longer than MAXPATHLEN, even
965 * though the kernel won't resolve them. Add the size (not just what's needed)
966 * plus 256 bytes so don't realloc the path 2 bytes at a time.
973 sp
->fts_pathlen
+= more
+ 256;
974 sp
->fts_path
= realloc(sp
->fts_path
, (size_t)sp
->fts_pathlen
);
975 return (sp
->fts_path
== NULL
);
979 * When the path is realloc'd, have to fix all of the pointers in structures
983 fts_padjust(sp
, addr
)
989 #define ADJUST(p) { \
991 (char *)addr + ((p)->fts_accpath - (p)->fts_path); \
992 (p)->fts_path = addr; \
994 /* Adjust the current set of children. */
995 for (p
= sp
->fts_child
; p
; p
= p
->fts_link
)
998 /* Adjust the rest of the tree. */
999 for (p
= sp
->fts_cur
; p
->fts_level
>= FTS_ROOTLEVEL
;) {
1001 p
= p
->fts_link
? p
->fts_link
: p
->fts_parent
;
1011 for (max
= 0; *argv
; ++argv
)
1012 if ((len
= strlen(*argv
)) > max
)