2 * Copyright (c) 1990, 1993
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 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #if defined(LIBC_SCCS) && !defined(lint)
35 static char sccsid
[] = "@(#)fts.c 8.2 (Berkeley) 1/2/94";
36 #endif /* LIBC_SCCS and not lint */
38 #include <sys/param.h>
49 /* Largest alignment size needed, minus one.
50 Usually long double is the worst case. */
52 #define ALIGNBYTES (__alignof__ (long double) - 1)
54 /* Align P to that size. */
56 #define ALIGN(p) (((unsigned long int) (p) + ALIGNBYTES) & ~ALIGNBYTES)
60 static FTSENT
*fts_alloc
__P((FTS
*, char *, int));
61 static FTSENT
*fts_build
__P((FTS
*, int));
62 static void fts_lfree
__P((FTSENT
*));
63 static void fts_load
__P((FTS
*, FTSENT
*));
64 static size_t fts_maxarglen
__P((char * const *));
65 static void fts_padjust
__P((FTS
*, void *));
66 static int fts_palloc
__P((FTS
*, size_t));
67 static FTSENT
*fts_sort
__P((FTS
*, FTSENT
*, int));
68 static u_short fts_stat
__P((FTS
*, FTSENT
*, int));
70 #define ISDOT(a) (a[0] == '.' && (!a[1] || a[1] == '.' && !a[2]))
72 #define ISSET(opt) (sp->fts_options & opt)
73 #define SET(opt) (sp->fts_options |= opt)
75 #define CHDIR(sp, path) (!ISSET(FTS_NOCHDIR) && chdir(path))
76 #define FCHDIR(sp, fd) (!ISSET(FTS_NOCHDIR) && fchdir(fd))
79 #define BCHILD 1 /* fts_children */
80 #define BNAMES 2 /* fts_children, names only */
81 #define BREAD 3 /* fts_read */
84 fts_open(argv
, options
, compar
)
90 register FTSENT
*p
, *root
;
96 if (options
& ~FTS_OPTIONMASK
) {
101 /* Allocate/initialize the stream */
102 if ((sp
= malloc((u_int
)sizeof(FTS
))) == NULL
)
104 bzero(sp
, sizeof(FTS
));
105 sp
->fts_compar
= compar
;
106 sp
->fts_options
= options
;
108 /* Logical walks turn on NOCHDIR; symbolic links are too hard. */
109 if (ISSET(FTS_LOGICAL
))
113 * Start out with 1K of path space, and enough, in any case,
114 * to hold the user's paths.
117 #define MAXPATHLEN 1024
119 if (fts_palloc(sp
, MAX(fts_maxarglen(argv
), MAXPATHLEN
)))
122 /* Allocate/initialize root's parent. */
123 if ((parent
= fts_alloc(sp
, "", 0)) == NULL
)
125 parent
->fts_level
= FTS_ROOTPARENTLEVEL
;
127 /* Allocate/initialize root(s). */
128 for (root
= NULL
, nitems
= 0; *argv
; ++argv
, ++nitems
) {
129 /* Don't allow zero-length paths. */
130 if ((len
= strlen(*argv
)) == 0) {
135 p
= fts_alloc(sp
, *argv
, len
);
136 p
->fts_level
= FTS_ROOTLEVEL
;
137 p
->fts_parent
= parent
;
138 p
->fts_accpath
= p
->fts_name
;
139 p
->fts_info
= fts_stat(sp
, p
, ISSET(FTS_COMFOLLOW
));
141 /* Command-line "." and ".." are real directories. */
142 if (p
->fts_info
== FTS_DOT
)
146 * If comparison routine supplied, traverse in sorted
147 * order; otherwise traverse in the order specified.
162 if (compar
&& nitems
> 1)
163 root
= fts_sort(sp
, root
, nitems
);
166 * Allocate a dummy pointer and make fts_read think that we've just
167 * finished the node before the root(s); set p->fts_info to FTS_INIT
168 * so that everything about the "current" node is ignored.
170 if ((sp
->fts_cur
= fts_alloc(sp
, "", 0)) == NULL
)
172 sp
->fts_cur
->fts_link
= root
;
173 sp
->fts_cur
->fts_info
= FTS_INIT
;
176 * If using chdir(2), grab a file descriptor pointing to dot to insure
177 * that we can get back here; this could be avoided for some paths,
178 * but almost certainly not worth the effort. Slashes, symbolic links,
179 * and ".." are all fairly nasty problems. Note, if we can't get the
180 * descriptor we run anyway, just more slowly.
182 if (!ISSET(FTS_NOCHDIR
) && (sp
->fts_rfd
= open(".", O_RDONLY
, 0)) < 0)
187 mem3
: fts_lfree(root
);
189 mem2
: free(sp
->fts_path
);
203 * Load the stream structure for the next traversal. Since we don't
204 * actually enter the directory until after the preorder visit, set
205 * the fts_accpath field specially so the chdir gets done to the right
206 * place and the user can access the first node. From fts_open it's
207 * known that the path will fit.
209 len
= p
->fts_pathlen
= p
->fts_namelen
;
210 bcopy(p
->fts_name
, sp
->fts_path
, len
+ 1);
211 if ((cp
= rindex(p
->fts_name
, '/')) && (cp
!= p
->fts_name
|| cp
[1])) {
213 bcopy(cp
, p
->fts_name
, len
+ 1);
214 p
->fts_namelen
= len
;
216 p
->fts_accpath
= p
->fts_path
= sp
->fts_path
;
217 sp
->fts_dev
= p
->fts_dev
;
224 register FTSENT
*freep
, *p
;
228 * This still works if we haven't read anything -- the dummy structure
229 * points to the root list, so we step through to the end of the root
230 * list which has a valid parent pointer.
233 for (p
= sp
->fts_cur
; p
->fts_level
>= FTS_ROOTLEVEL
;) {
235 p
= p
->fts_link
? p
->fts_link
: p
->fts_parent
;
241 /* Free up child linked list, sort array, path buffer. */
243 fts_lfree(sp
->fts_child
);
248 /* Return to original directory, save errno if necessary. */
249 if (!ISSET(FTS_NOCHDIR
)) {
250 saved_errno
= fchdir(sp
->fts_rfd
) ? errno
: 0;
251 (void)close(sp
->fts_rfd
);
254 /* Free up the stream pointer. */
257 /* Set errno and return. */
258 if (!ISSET(FTS_NOCHDIR
) && saved_errno
) {
266 * Special case a root of "/" so that slashes aren't appended which would
267 * cause paths to be written as "//foo".
270 (p->fts_level == FTS_ROOTLEVEL && p->fts_pathlen == 1 && \
271 p->fts_path[0] == '/' ? 0 : p->fts_pathlen)
277 register FTSENT
*p
, *tmp
;
282 /* If finished or unrecoverable error, return NULL. */
283 if (sp
->fts_cur
== NULL
|| ISSET(FTS_STOP
))
286 /* Set current node pointer. */
289 /* Save and zero out user instructions. */
290 instr
= p
->fts_instr
;
291 p
->fts_instr
= FTS_NOINSTR
;
293 /* Any type of file may be re-visited; re-stat and re-turn. */
294 if (instr
== FTS_AGAIN
) {
295 p
->fts_info
= fts_stat(sp
, p
, 0);
300 * Following a symlink -- SLNONE test allows application to see
301 * SLNONE and recover. If indirecting through a symlink, have
302 * keep a pointer to current location. If unable to get that
303 * pointer, follow fails.
305 if (instr
== FTS_FOLLOW
&&
306 (p
->fts_info
== FTS_SL
|| p
->fts_info
== FTS_SLNONE
)) {
307 p
->fts_info
= fts_stat(sp
, p
, 1);
308 if (p
->fts_info
== FTS_D
&& !ISSET(FTS_NOCHDIR
))
309 if ((p
->fts_symfd
= open(".", O_RDONLY
, 0)) < 0) {
310 p
->fts_errno
= errno
;
311 p
->fts_info
= FTS_ERR
;
313 p
->fts_flags
|= FTS_SYMFOLLOW
;
317 /* Directory in pre-order. */
318 if (p
->fts_info
== FTS_D
) {
319 /* If skipped or crossed mount point, do post-order visit. */
320 if (instr
== FTS_SKIP
||
321 ISSET(FTS_XDEV
) && p
->fts_dev
!= sp
->fts_dev
) {
322 if (p
->fts_flags
& FTS_SYMFOLLOW
)
323 (void)close(p
->fts_symfd
);
325 fts_lfree(sp
->fts_child
);
326 sp
->fts_child
= NULL
;
328 p
->fts_info
= FTS_DP
;
332 /* Rebuild if only read the names and now traversing. */
333 if (sp
->fts_child
&& sp
->fts_options
& FTS_NAMEONLY
) {
334 sp
->fts_options
&= ~FTS_NAMEONLY
;
335 fts_lfree(sp
->fts_child
);
336 sp
->fts_child
= NULL
;
340 * Cd to the subdirectory.
342 * If have already read and now fail to chdir, whack the list
343 * to make the names come out right, and set the parent errno
344 * so the application will eventually get an error condition.
345 * Set the FTS_DONTCHDIR flag so that when we logically change
346 * directories back to the parent we don't do a chdir.
348 * If haven't read do so. If the read fails, fts_build sets
349 * FTS_STOP or the fts_info field of the node.
352 if (CHDIR(sp
, p
->fts_accpath
)) {
353 p
->fts_errno
= errno
;
354 p
->fts_flags
|= FTS_DONTCHDIR
;
355 for (p
= sp
->fts_child
; p
; p
= p
->fts_link
)
357 p
->fts_parent
->fts_accpath
;
359 } else if ((sp
->fts_child
= fts_build(sp
, BREAD
)) == NULL
) {
365 sp
->fts_child
= NULL
;
369 /* Move to the next node on this level. */
371 if (p
= p
->fts_link
) {
375 * If reached the top, return to the original directory, and
376 * load the paths for the next root.
378 if (p
->fts_level
== FTS_ROOTLEVEL
) {
379 if (!ISSET(FTS_NOCHDIR
) && FCHDIR(sp
, sp
->fts_rfd
)) {
384 return (sp
->fts_cur
= p
);
388 * User may have called fts_set on the node. If skipped,
389 * ignore. If followed, get a file descriptor so we can
390 * get back if necessary.
392 if (p
->fts_instr
== FTS_SKIP
)
394 if (p
->fts_instr
== FTS_FOLLOW
) {
395 p
->fts_info
= fts_stat(sp
, p
, 1);
396 if (p
->fts_info
== FTS_D
&& !ISSET(FTS_NOCHDIR
))
398 open(".", O_RDONLY
, 0)) < 0) {
399 p
->fts_errno
= errno
;
400 p
->fts_info
= FTS_ERR
;
402 p
->fts_flags
|= FTS_SYMFOLLOW
;
403 p
->fts_instr
= FTS_NOINSTR
;
406 name
: t
= sp
->fts_path
+ NAPPEND(p
->fts_parent
);
408 bcopy(p
->fts_name
, t
, p
->fts_namelen
+ 1);
409 return (sp
->fts_cur
= p
);
412 /* Move up to the parent node. */
416 if (p
->fts_level
== FTS_ROOTPARENTLEVEL
) {
418 * Done; free everything up and set errno to 0 so the user
419 * can distinguish between error and EOF.
423 return (sp
->fts_cur
= NULL
);
426 /* Nul terminate the pathname. */
427 sp
->fts_path
[p
->fts_pathlen
] = '\0';
430 * Return to the parent directory. If at a root node or came through
431 * a symlink, go back through the file descriptor. Otherwise, cd up
434 if (p
->fts_level
== FTS_ROOTLEVEL
) {
435 if (!ISSET(FTS_NOCHDIR
) && FCHDIR(sp
, sp
->fts_rfd
)) {
439 } else if (p
->fts_flags
& FTS_SYMFOLLOW
) {
440 if (FCHDIR(sp
, p
->fts_symfd
)) {
442 (void)close(p
->fts_symfd
);
447 (void)close(p
->fts_symfd
);
448 } else if (!(p
->fts_flags
& FTS_DONTCHDIR
)) {
449 if (CHDIR(sp
, "..")) {
454 p
->fts_info
= p
->fts_errno
? FTS_ERR
: FTS_DP
;
455 return (sp
->fts_cur
= p
);
459 * Fts_set takes the stream as an argument although it's not used in this
460 * implementation; it would be necessary if anyone wanted to add global
461 * semantics to fts using fts_set. An error return is allowed for similar
466 fts_set(sp
, p
, instr
)
471 if (instr
&& instr
!= FTS_AGAIN
&& instr
!= FTS_FOLLOW
&&
472 instr
!= FTS_NOINSTR
&& instr
!= FTS_SKIP
) {
476 p
->fts_instr
= instr
;
481 fts_children(sp
, instr
)
488 if (instr
&& instr
!= FTS_NAMEONLY
) {
493 /* Set current node pointer. */
497 * Errno set to 0 so user can distinguish empty directory from
502 /* Fatal errors stop here. */
506 /* Return logical hierarchy of user's arguments. */
507 if (p
->fts_info
== FTS_INIT
)
508 return (p
->fts_link
);
511 * If not a directory being visited in pre-order, stop here. Could
512 * allow FTS_DNR, assuming the user has fixed the problem, but the
513 * same effect is available with FTS_AGAIN.
515 if (p
->fts_info
!= FTS_D
/* && p->fts_info != FTS_DNR */)
518 /* Free up any previous child list. */
520 fts_lfree(sp
->fts_child
);
522 if (instr
== FTS_NAMEONLY
) {
523 sp
->fts_options
|= FTS_NAMEONLY
;
529 * If using chdir on a relative path and called BEFORE fts_read does
530 * its chdir to the root of a traversal, we can lose -- we need to
531 * chdir into the subdirectory, and we don't know where the current
532 * directory is, so we can't get back so that the upcoming chdir by
533 * fts_read will work.
535 if (p
->fts_level
!= FTS_ROOTLEVEL
|| p
->fts_accpath
[0] == '/' ||
537 return (sp
->fts_child
= fts_build(sp
, instr
));
539 if ((fd
= open(".", O_RDONLY
, 0)) < 0)
541 sp
->fts_child
= fts_build(sp
, instr
);
545 return (sp
->fts_child
);
549 * This is the tricky part -- do not casually change *anything* in here. The
550 * idea is to build the linked list of entries that are used by fts_children
551 * and fts_read. There are lots of special cases.
553 * The real slowdown in walking the tree is the stat calls. If FTS_NOSTAT is
554 * set and it's a physical walk (so that symbolic links can't be directories),
555 * we can do things quickly. First, if it's a 4.4BSD file system, the type
556 * of the file is in the directory entry. Otherwise, we assume that the number
557 * of subdirectories in a node is equal to the number of links to the parent.
558 * The former skips all stat calls. The latter skips stat calls in any leaf
559 * directories and for any files after the subdirectories in the directory have
560 * been found, cutting the stat calls by about 2/3.
567 register struct dirent
*dp
;
568 register FTSENT
*p
, *head
;
573 int cderrno
, descend
, len
, level
, maxlen
, nlinks
, saved_errno
;
576 /* Set current node pointer. */
580 * Open the directory for reading. If this fails, we're done.
581 * If being called from fts_read, set the fts_info field.
583 if ((dirp
= opendir(cur
->fts_accpath
)) == NULL
) {
585 cur
->fts_info
= FTS_DNR
;
586 cur
->fts_errno
= errno
;
592 * Nlinks is the number of possible entries of type directory in the
593 * directory if we're cheating on stat calls, 0 if we're not doing
594 * any stat calls at all, -1 if we're doing stats on everything.
598 else if (ISSET(FTS_NOSTAT
) && ISSET(FTS_PHYSICAL
))
599 nlinks
= cur
->fts_nlink
- (ISSET(FTS_SEEDOT
) ? 0 : 2);
604 (void)printf("nlinks == %d (cur: %d)\n", nlinks
, cur
->fts_nlink
);
605 (void)printf("NOSTAT %d PHYSICAL %d SEEDOT %d\n",
606 ISSET(FTS_NOSTAT
), ISSET(FTS_PHYSICAL
), ISSET(FTS_SEEDOT
));
609 * If we're going to need to stat anything or we want to descend
610 * and stay in the directory, chdir. If this fails we keep going,
611 * but set a flag so we don't chdir after the post-order visit.
612 * We won't be able to stat anything, but we can still return the
613 * names themselves. Note, that since fts_read won't be able to
614 * chdir into the directory, it will have to return different path
615 * names than before, i.e. "a/b" instead of "b". Since the node
616 * has already been visited in pre-order, have to wait until the
617 * post-order visit to return the error. There is a special case
618 * here, if there was nothing to stat then it's not an error to
619 * not be able to stat. This is all fairly nasty. If a program
620 * needed sorted entries or stat information, they had better be
621 * checking FTS_NS on the returned nodes.
624 if (nlinks
|| type
== BREAD
)
625 if (FCHDIR(sp
, dirfd(dirp
))) {
626 if (nlinks
&& type
== BREAD
)
627 cur
->fts_errno
= errno
;
628 cur
->fts_flags
|= FTS_DONTCHDIR
;
637 * Figure out the max file name length that can be stored in the
638 * current path -- the inner loop allocates more path as necessary.
639 * We really wouldn't have to do the maxlen calculations here, we
640 * could do them in fts_read before returning the path, but it's a
641 * lot easier here since the length is part of the dirent structure.
643 * If not changing directories set a pointer so that can just append
644 * each new name into the path.
646 maxlen
= sp
->fts_pathlen
- cur
->fts_pathlen
- 1;
648 if (ISSET(FTS_NOCHDIR
)) {
649 cp
= sp
->fts_path
+ len
;
653 level
= cur
->fts_level
+ 1;
655 /* Read the directory, attaching each entry to the `link' pointer. */
657 for (head
= tail
= NULL
, nitems
= 0; dp
= readdir(dirp
);) {
658 if (!ISSET(FTS_SEEDOT
) && ISDOT(dp
->d_name
))
661 if ((p
= fts_alloc(sp
, dp
->d_name
, (int)dp
->d_namlen
)) == NULL
)
663 if (dp
->d_namlen
> maxlen
) {
664 if (fts_palloc(sp
, (size_t)dp
->d_namlen
)) {
666 * No more memory for path or structures. Save
667 * errno, free up the current structure and the
668 * structures already allocated.
670 mem1
: saved_errno
= errno
;
674 (void)closedir(dirp
);
676 cur
->fts_info
= FTS_ERR
;
680 adjaddr
= sp
->fts_path
;
681 maxlen
= sp
->fts_pathlen
- sp
->fts_cur
->fts_pathlen
- 1;
684 p
->fts_pathlen
= len
+ dp
->d_namlen
+ 1;
685 p
->fts_parent
= sp
->fts_cur
;
686 p
->fts_level
= level
;
690 p
->fts_info
= FTS_NS
;
691 p
->fts_errno
= cderrno
;
693 p
->fts_info
= FTS_NSOK
;
694 p
->fts_accpath
= cur
->fts_accpath
;
695 } else if (nlinks
== 0
698 dp
->d_type
!= DT_DIR
&& dp
->d_type
!= DT_UNKNOWN
702 ISSET(FTS_NOCHDIR
) ? p
->fts_path
: p
->fts_name
;
703 p
->fts_info
= FTS_NSOK
;
705 /* Build a file name for fts_stat to stat. */
706 if (ISSET(FTS_NOCHDIR
)) {
707 p
->fts_accpath
= p
->fts_path
;
708 bcopy(p
->fts_name
, cp
, p
->fts_namelen
+ 1);
710 p
->fts_accpath
= p
->fts_name
;
712 p
->fts_info
= fts_stat(sp
, p
, 0);
714 /* Decrement link count if applicable. */
715 if (nlinks
> 0 && (p
->fts_info
== FTS_D
||
716 p
->fts_info
== FTS_DC
|| p
->fts_info
== FTS_DOT
))
720 /* We walk in directory order so "ls -f" doesn't get upset. */
730 (void)closedir(dirp
);
733 * If had to realloc the path, adjust the addresses for the rest
737 fts_padjust(sp
, adjaddr
);
740 * If not changing directories, reset the path back to original
743 if (ISSET(FTS_NOCHDIR
)) {
744 if (cp
- 1 > sp
->fts_path
)
750 * If descended after called from fts_children or called from
751 * fts_read and didn't find anything, get back. If can't get
754 if (descend
&& (!nitems
|| type
== BCHILD
) && CHDIR(sp
, "..")) {
755 cur
->fts_info
= FTS_ERR
;
760 /* If didn't find anything, return NULL. */
763 cur
->fts_info
= FTS_DP
;
767 /* Sort the entries. */
768 if (sp
->fts_compar
&& nitems
> 1)
769 head
= fts_sort(sp
, head
, nitems
);
774 fts_stat(sp
, p
, follow
)
782 struct stat
*sbp
, sb
;
785 /* If user needs stat info, stat buffer already allocated. */
786 sbp
= ISSET(FTS_NOSTAT
) ? &sb
: p
->fts_statp
;
789 * If doing a logical walk, or application requested FTS_FOLLOW, do
790 * a stat(2). If that fails, check for a non-existent symlink. If
791 * fail, set the errno from the stat call.
793 if (ISSET(FTS_LOGICAL
) || follow
) {
794 if (stat(p
->fts_accpath
, sbp
)) {
796 if (!lstat(p
->fts_accpath
, sbp
)) {
800 p
->fts_errno
= saved_errno
;
803 } else if (lstat(p
->fts_accpath
, sbp
)) {
804 p
->fts_errno
= errno
;
805 err
: bzero(sbp
, sizeof(struct stat
));
809 if (S_ISDIR(sbp
->st_mode
)) {
811 * Set the device/inode. Used to find cycles and check for
812 * crossing mount points. Also remember the link count, used
813 * in fts_build to limit the number of stat calls. It is
814 * understood that these fields are only referenced if fts_info
817 dev
= p
->fts_dev
= sbp
->st_dev
;
818 ino
= p
->fts_ino
= sbp
->st_ino
;
819 p
->fts_nlink
= sbp
->st_nlink
;
821 if (ISDOT(p
->fts_name
))
825 * Cycle detection is done by brute force when the directory
826 * is first encountered. If the tree gets deep enough or the
827 * number of symbolic links to directories is high enough,
828 * something faster might be worthwhile.
830 for (t
= p
->fts_parent
;
831 t
->fts_level
>= FTS_ROOTLEVEL
; t
= t
->fts_parent
)
832 if (ino
== t
->fts_ino
&& dev
== t
->fts_dev
) {
838 if (S_ISLNK(sbp
->st_mode
))
840 if (S_ISREG(sbp
->st_mode
))
842 return (FTS_DEFAULT
);
846 fts_sort(sp
, head
, nitems
)
851 register FTSENT
**ap
, *p
;
854 * Construct an array of pointers to the structures and call qsort(3).
855 * Reassemble the array in the order returned by qsort. If unable to
856 * sort for memory reasons, return the directory entries in their
857 * current order. Allocate enough space for the current needs plus
858 * 40 so don't realloc one entry at a time.
860 if (nitems
> sp
->fts_nitems
) {
861 sp
->fts_nitems
= nitems
+ 40;
862 if ((sp
->fts_array
= realloc(sp
->fts_array
,
863 (size_t)(sp
->fts_nitems
* sizeof(FTSENT
*)))) == NULL
) {
868 for (ap
= sp
->fts_array
, p
= head
; p
; p
= p
->fts_link
)
870 qsort((void *)sp
->fts_array
, nitems
, sizeof(FTSENT
*), sp
->fts_compar
);
871 for (head
= *(ap
= sp
->fts_array
); --nitems
; ++ap
)
872 ap
[0]->fts_link
= ap
[1];
873 ap
[0]->fts_link
= NULL
;
878 fts_alloc(sp
, name
, namelen
)
881 register int namelen
;
887 * The file name is a variable length array and no stat structure is
888 * necessary if the user has set the nostat bit. Allocate the FTSENT
889 * structure, the file name and the stat structure in one chunk, but
890 * be careful that the stat structure is reasonably aligned. Since the
891 * fts_name field is declared to be of size 1, the fts_name pointer is
892 * namelen + 2 before the first possible address of the stat structure.
894 len
= sizeof(FTSENT
) + namelen
;
895 if (!ISSET(FTS_NOSTAT
))
896 len
+= sizeof(struct stat
) + ALIGNBYTES
;
897 if ((p
= malloc(len
)) == NULL
)
900 /* Copy the name plus the trailing NULL. */
901 bcopy(name
, p
->fts_name
, namelen
+ 1);
903 if (!ISSET(FTS_NOSTAT
))
904 p
->fts_statp
= (struct stat
*)ALIGN(p
->fts_name
+ namelen
+ 2);
905 p
->fts_namelen
= namelen
;
906 p
->fts_path
= sp
->fts_path
;
909 p
->fts_instr
= FTS_NOINSTR
;
911 p
->fts_pointer
= NULL
;
917 register FTSENT
*head
;
921 /* Free a linked list of structures. */
923 head
= head
->fts_link
;
929 * Allow essentially unlimited paths; find, rm, ls should all work on any tree.
930 * Most systems will allow creation of paths much longer than MAXPATHLEN, even
931 * though the kernel won't resolve them. Add the size (not just what's needed)
932 * plus 256 bytes so don't realloc the path 2 bytes at a time.
939 sp
->fts_pathlen
+= more
+ 256;
940 sp
->fts_path
= realloc(sp
->fts_path
, (size_t)sp
->fts_pathlen
);
941 return (sp
->fts_path
== NULL
);
945 * When the path is realloc'd, have to fix all of the pointers in structures
949 fts_padjust(sp
, addr
)
955 #define ADJUST(p) { \
957 (char *)addr + ((p)->fts_accpath - (p)->fts_path); \
958 (p)->fts_path = addr; \
960 /* Adjust the current set of children. */
961 for (p
= sp
->fts_child
; p
; p
= p
->fts_link
)
964 /* Adjust the rest of the tree. */
965 for (p
= sp
->fts_cur
; p
->fts_level
>= FTS_ROOTLEVEL
;) {
967 p
= p
->fts_link
? p
->fts_link
: p
->fts_parent
;
977 for (max
= 0; *argv
; ++argv
)
978 if ((len
= strlen(*argv
)) > max
)