initial import
[glibc.git] / io / fts.c
blob044779d595f1a2abb86f840a4d05a35d03587486
1 /*-
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
7 * are met:
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
31 * SUCH DAMAGE.
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>
39 #include <sys/stat.h>
40 #include <fcntl.h>
41 #include <dirent.h>
42 #include <errno.h>
43 #include <fts.h>
44 #include <stdlib.h>
45 #include <string.h>
46 #include <unistd.h>
49 /* Largest alignment size needed, minus one.
50 Usually long double is the worst case. */
51 #ifndef ALIGNBYTES
52 #define ALIGNBYTES (__alignof__ (long double) - 1)
53 #endif
54 /* Align P to that size. */
55 #ifndef ALIGN
56 #define ALIGN(p) (((unsigned long int) (p) + ALIGNBYTES) & ~ALIGNBYTES)
57 #endif
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))
78 /* fts_build flags */
79 #define BCHILD 1 /* fts_children */
80 #define BNAMES 2 /* fts_children, names only */
81 #define BREAD 3 /* fts_read */
83 FTS *
84 fts_open(argv, options, compar)
85 char * const *argv;
86 register int options;
87 int (*compar)();
89 register FTS *sp;
90 register FTSENT *p, *root;
91 register int nitems;
92 FTSENT *parent, *tmp;
93 int len;
95 /* Options check. */
96 if (options & ~FTS_OPTIONMASK) {
97 errno = EINVAL;
98 return (NULL);
101 /* Allocate/initialize the stream */
102 if ((sp = malloc((u_int)sizeof(FTS))) == NULL)
103 return (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))
110 SET(FTS_NOCHDIR);
113 * Start out with 1K of path space, and enough, in any case,
114 * to hold the user's paths.
116 #ifndef MAXPATHLEN
117 #define MAXPATHLEN 1024
118 #endif
119 if (fts_palloc(sp, MAX(fts_maxarglen(argv), MAXPATHLEN)))
120 goto mem1;
122 /* Allocate/initialize root's parent. */
123 if ((parent = fts_alloc(sp, "", 0)) == NULL)
124 goto mem2;
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) {
131 errno = ENOENT;
132 goto mem3;
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)
143 p->fts_info = FTS_D;
146 * If comparison routine supplied, traverse in sorted
147 * order; otherwise traverse in the order specified.
149 if (compar) {
150 p->fts_link = root;
151 root = p;
152 } else {
153 p->fts_link = NULL;
154 if (root == NULL)
155 tmp = root = p;
156 else {
157 tmp->fts_link = p;
158 tmp = p;
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)
171 goto mem3;
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)
183 SET(FTS_NOCHDIR);
185 return (sp);
187 mem3: fts_lfree(root);
188 free(parent);
189 mem2: free(sp->fts_path);
190 mem1: free(sp);
191 return (NULL);
194 static void
195 fts_load(sp, p)
196 FTS *sp;
197 register FTSENT *p;
199 register int len;
200 register char *cp;
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])) {
212 len = strlen(++cp);
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;
221 fts_close(sp)
222 FTS *sp;
224 register FTSENT *freep, *p;
225 int saved_errno;
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.
232 if (sp->fts_cur) {
233 for (p = sp->fts_cur; p->fts_level >= FTS_ROOTLEVEL;) {
234 freep = p;
235 p = p->fts_link ? p->fts_link : p->fts_parent;
236 free(freep);
238 free(p);
241 /* Free up child linked list, sort array, path buffer. */
242 if (sp->fts_child)
243 fts_lfree(sp->fts_child);
244 if (sp->fts_array)
245 free(sp->fts_array);
246 free(sp->fts_path);
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. */
255 free(sp);
257 /* Set errno and return. */
258 if (!ISSET(FTS_NOCHDIR) && saved_errno) {
259 errno = saved_errno;
260 return (-1);
262 return (0);
266 * Special case a root of "/" so that slashes aren't appended which would
267 * cause paths to be written as "//foo".
269 #define NAPPEND(p) \
270 (p->fts_level == FTS_ROOTLEVEL && p->fts_pathlen == 1 && \
271 p->fts_path[0] == '/' ? 0 : p->fts_pathlen)
273 FTSENT *
274 fts_read(sp)
275 register FTS *sp;
277 register FTSENT *p, *tmp;
278 register int instr;
279 register char *t;
280 int saved_errno;
282 /* If finished or unrecoverable error, return NULL. */
283 if (sp->fts_cur == NULL || ISSET(FTS_STOP))
284 return (NULL);
286 /* Set current node pointer. */
287 p = sp->fts_cur;
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);
296 return (p);
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;
312 } else
313 p->fts_flags |= FTS_SYMFOLLOW;
314 return (p);
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);
324 if (sp->fts_child) {
325 fts_lfree(sp->fts_child);
326 sp->fts_child = NULL;
328 p->fts_info = FTS_DP;
329 return (p);
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.
351 if (sp->fts_child) {
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)
356 p->fts_accpath =
357 p->fts_parent->fts_accpath;
359 } else if ((sp->fts_child = fts_build(sp, BREAD)) == NULL) {
360 if (ISSET(FTS_STOP))
361 return (NULL);
362 return (p);
364 p = sp->fts_child;
365 sp->fts_child = NULL;
366 goto name;
369 /* Move to the next node on this level. */
370 next: tmp = p;
371 if (p = p->fts_link) {
372 free(tmp);
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)) {
380 SET(FTS_STOP);
381 return (NULL);
383 fts_load(sp, p);
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)
393 goto next;
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))
397 if ((p->fts_symfd =
398 open(".", O_RDONLY, 0)) < 0) {
399 p->fts_errno = errno;
400 p->fts_info = FTS_ERR;
401 } else
402 p->fts_flags |= FTS_SYMFOLLOW;
403 p->fts_instr = FTS_NOINSTR;
406 name: t = sp->fts_path + NAPPEND(p->fts_parent);
407 *t++ = '/';
408 bcopy(p->fts_name, t, p->fts_namelen + 1);
409 return (sp->fts_cur = p);
412 /* Move up to the parent node. */
413 p = tmp->fts_parent;
414 free(tmp);
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.
421 free(p);
422 errno = 0;
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
432 * one directory.
434 if (p->fts_level == FTS_ROOTLEVEL) {
435 if (!ISSET(FTS_NOCHDIR) && FCHDIR(sp, sp->fts_rfd)) {
436 SET(FTS_STOP);
437 return (NULL);
439 } else if (p->fts_flags & FTS_SYMFOLLOW) {
440 if (FCHDIR(sp, p->fts_symfd)) {
441 saved_errno = errno;
442 (void)close(p->fts_symfd);
443 errno = saved_errno;
444 SET(FTS_STOP);
445 return (NULL);
447 (void)close(p->fts_symfd);
448 } else if (!(p->fts_flags & FTS_DONTCHDIR)) {
449 if (CHDIR(sp, "..")) {
450 SET(FTS_STOP);
451 return (NULL);
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
462 * reasons.
464 /* ARGSUSED */
466 fts_set(sp, p, instr)
467 FTS *sp;
468 FTSENT *p;
469 int instr;
471 if (instr && instr != FTS_AGAIN && instr != FTS_FOLLOW &&
472 instr != FTS_NOINSTR && instr != FTS_SKIP) {
473 errno = EINVAL;
474 return (1);
476 p->fts_instr = instr;
477 return (0);
480 FTSENT *
481 fts_children(sp, instr)
482 register FTS *sp;
483 int instr;
485 register FTSENT *p;
486 int fd;
488 if (instr && instr != FTS_NAMEONLY) {
489 errno = EINVAL;
490 return (NULL);
493 /* Set current node pointer. */
494 p = sp->fts_cur;
497 * Errno set to 0 so user can distinguish empty directory from
498 * an error.
500 errno = 0;
502 /* Fatal errors stop here. */
503 if (ISSET(FTS_STOP))
504 return (NULL);
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 */)
516 return (NULL);
518 /* Free up any previous child list. */
519 if (sp->fts_child)
520 fts_lfree(sp->fts_child);
522 if (instr == FTS_NAMEONLY) {
523 sp->fts_options |= FTS_NAMEONLY;
524 instr = BNAMES;
525 } else
526 instr = BCHILD;
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] == '/' ||
536 ISSET(FTS_NOCHDIR))
537 return (sp->fts_child = fts_build(sp, instr));
539 if ((fd = open(".", O_RDONLY, 0)) < 0)
540 return (NULL);
541 sp->fts_child = fts_build(sp, instr);
542 if (fchdir(fd))
543 return (NULL);
544 (void)close(fd);
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.
562 static FTSENT *
563 fts_build(sp, type)
564 register FTS *sp;
565 int type;
567 register struct dirent *dp;
568 register FTSENT *p, *head;
569 register int nitems;
570 FTSENT *cur, *tail;
571 DIR *dirp;
572 void *adjaddr;
573 int cderrno, descend, len, level, maxlen, nlinks, saved_errno;
574 char *cp;
576 /* Set current node pointer. */
577 cur = sp->fts_cur;
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) {
584 if (type == BREAD) {
585 cur->fts_info = FTS_DNR;
586 cur->fts_errno = errno;
588 return (NULL);
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.
596 if (type == BNAMES)
597 nlinks = 0;
598 else if (ISSET(FTS_NOSTAT) && ISSET(FTS_PHYSICAL))
599 nlinks = cur->fts_nlink - (ISSET(FTS_SEEDOT) ? 0 : 2);
600 else
601 nlinks = -1;
603 #ifdef notdef
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));
607 #endif
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.
623 cderrno = 0;
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;
629 descend = 0;
630 cderrno = errno;
631 } else
632 descend = 1;
633 else
634 descend = 0;
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;
647 len = NAPPEND(cur);
648 if (ISSET(FTS_NOCHDIR)) {
649 cp = sp->fts_path + len;
650 *cp++ = '/';
653 level = cur->fts_level + 1;
655 /* Read the directory, attaching each entry to the `link' pointer. */
656 adjaddr = NULL;
657 for (head = tail = NULL, nitems = 0; dp = readdir(dirp);) {
658 if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name))
659 continue;
661 if ((p = fts_alloc(sp, dp->d_name, (int)dp->d_namlen)) == NULL)
662 goto mem1;
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;
671 if (p)
672 free(p);
673 fts_lfree(head);
674 (void)closedir(dirp);
675 errno = saved_errno;
676 cur->fts_info = FTS_ERR;
677 SET(FTS_STOP);
678 return (NULL);
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;
688 if (cderrno) {
689 if (nlinks) {
690 p->fts_info = FTS_NS;
691 p->fts_errno = cderrno;
692 } else
693 p->fts_info = FTS_NSOK;
694 p->fts_accpath = cur->fts_accpath;
695 } else if (nlinks == 0
696 #ifdef DT_DIR
697 || nlinks > 0 &&
698 dp->d_type != DT_DIR && dp->d_type != DT_UNKNOWN
699 #endif
701 p->fts_accpath =
702 ISSET(FTS_NOCHDIR) ? p->fts_path : p->fts_name;
703 p->fts_info = FTS_NSOK;
704 } else {
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);
709 } else
710 p->fts_accpath = p->fts_name;
711 /* Stat it. */
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))
717 --nlinks;
720 /* We walk in directory order so "ls -f" doesn't get upset. */
721 p->fts_link = NULL;
722 if (head == NULL)
723 head = tail = p;
724 else {
725 tail->fts_link = p;
726 tail = p;
728 ++nitems;
730 (void)closedir(dirp);
733 * If had to realloc the path, adjust the addresses for the rest
734 * of the tree.
736 if (adjaddr)
737 fts_padjust(sp, adjaddr);
740 * If not changing directories, reset the path back to original
741 * state.
743 if (ISSET(FTS_NOCHDIR)) {
744 if (cp - 1 > sp->fts_path)
745 --cp;
746 *cp = '\0';
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
752 * back, done.
754 if (descend && (!nitems || type == BCHILD) && CHDIR(sp, "..")) {
755 cur->fts_info = FTS_ERR;
756 SET(FTS_STOP);
757 return (NULL);
760 /* If didn't find anything, return NULL. */
761 if (!nitems) {
762 if (type == BREAD)
763 cur->fts_info = FTS_DP;
764 return (NULL);
767 /* Sort the entries. */
768 if (sp->fts_compar && nitems > 1)
769 head = fts_sort(sp, head, nitems);
770 return (head);
773 static u_short
774 fts_stat(sp, p, follow)
775 FTS *sp;
776 register FTSENT *p;
777 int follow;
779 register FTSENT *t;
780 register dev_t dev;
781 register ino_t ino;
782 struct stat *sbp, sb;
783 int saved_errno;
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)) {
795 saved_errno = errno;
796 if (!lstat(p->fts_accpath, sbp)) {
797 errno = 0;
798 return (FTS_SLNONE);
800 p->fts_errno = saved_errno;
801 goto err;
803 } else if (lstat(p->fts_accpath, sbp)) {
804 p->fts_errno = errno;
805 err: bzero(sbp, sizeof(struct stat));
806 return (FTS_NS);
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
815 * is set to FTS_D.
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))
822 return (FTS_DOT);
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) {
833 p->fts_cycle = t;
834 return (FTS_DC);
836 return (FTS_D);
838 if (S_ISLNK(sbp->st_mode))
839 return (FTS_SL);
840 if (S_ISREG(sbp->st_mode))
841 return (FTS_F);
842 return (FTS_DEFAULT);
845 static FTSENT *
846 fts_sort(sp, head, nitems)
847 FTS *sp;
848 FTSENT *head;
849 register int 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) {
864 sp->fts_nitems = 0;
865 return (head);
868 for (ap = sp->fts_array, p = head; p; p = p->fts_link)
869 *ap++ = p;
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;
874 return (head);
877 static FTSENT *
878 fts_alloc(sp, name, namelen)
879 FTS *sp;
880 char *name;
881 register int namelen;
883 register FTSENT *p;
884 size_t len;
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)
898 return (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;
907 p->fts_errno = 0;
908 p->fts_flags = 0;
909 p->fts_instr = FTS_NOINSTR;
910 p->fts_number = 0;
911 p->fts_pointer = NULL;
912 return (p);
915 static void
916 fts_lfree(head)
917 register FTSENT *head;
919 register FTSENT *p;
921 /* Free a linked list of structures. */
922 while (p = head) {
923 head = head->fts_link;
924 free(p);
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.
934 static int
935 fts_palloc(sp, more)
936 FTS *sp;
937 size_t more;
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
946 * already returned.
948 static void
949 fts_padjust(sp, addr)
950 FTS *sp;
951 void *addr;
953 FTSENT *p;
955 #define ADJUST(p) { \
956 (p)->fts_accpath = \
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)
962 ADJUST(p);
964 /* Adjust the rest of the tree. */
965 for (p = sp->fts_cur; p->fts_level >= FTS_ROOTLEVEL;) {
966 ADJUST(p);
967 p = p->fts_link ? p->fts_link : p->fts_parent;
971 static size_t
972 fts_maxarglen(argv)
973 char * const *argv;
975 size_t len, max;
977 for (max = 0; *argv; ++argv)
978 if ((len = strlen(*argv)) > max)
979 max = len;
980 return (max);