squid: update to 6.13
[openadk.git] / package / cfgfs / src / fts.c
blob02d4bfea8dd2b7bbf0b4d2d21c938945090ffcab
1 /*-
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
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 * 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
27 * SUCH DAMAGE.
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>
39 #include <sys/stat.h>
40 #include <sys/statfs.h>
41 #include <fcntl.h>
42 #include <dirent.h>
43 #include <errno.h>
44 #ifdef __OpenBSD__
45 #include <fts.h>
46 #else
47 #include "fts_gnu.h"
48 #endif
49 #include <stdlib.h>
50 #include <string.h>
51 #include <unistd.h>
53 #include "defs.h"
55 #define internal_function
57 /* Largest alignment size needed, minus one.
58 Usually long double is the worst case. */
59 #ifndef ALIGNBYTES
60 #define ALIGNBYTES (__alignof__ (long double) - 1)
61 #endif
62 /* Align P to that size. */
63 #ifndef ALIGN
64 #define ALIGN(p) (((unsigned long int) (p) + ALIGNBYTES) & ~ALIGNBYTES)
65 #endif
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 *);
79 #ifndef MAX
80 #define MAX(a, b) ({ __typeof__ (a) _a = (a); \
81 __typeof__ (b) _b = (b); \
82 _a > _b ? _a : _b; })
83 #endif
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))
93 /* fts_build flags */
94 #define BCHILD 1 /* fts_children */
95 #define BNAMES 2 /* fts_children, names only */
96 #define BREAD 3 /* fts_read */
98 FTS *
99 fts_open(argv, options, compar)
100 char * const *argv;
101 register int options;
102 int (*compar) (const FTSENT **, const FTSENT **);
104 register FTS *sp;
105 register FTSENT *p, *root;
106 register int nitems;
107 FTSENT *parent, *tmp;
108 int len;
110 /* Options check. */
111 if (options & ~FTS_OPTIONMASK) {
112 errno = EINVAL;
113 return (NULL);
116 /* Allocate/initialize the stream */
117 if ((sp = malloc((u_int)sizeof(FTS))) == NULL)
118 return (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))
125 SET(FTS_NOCHDIR);
128 * Start out with 1K of path space, and enough, in any case,
129 * to hold the user's paths.
131 #ifndef MAXPATHLEN
132 #define MAXPATHLEN 1024
133 #endif
134 if (fts_palloc(sp, MAX(fts_maxarglen(argv), MAXPATHLEN)))
135 goto mem1;
137 /* Allocate/initialize root's parent. */
138 if ((parent = fts_alloc(sp, "", 0)) == NULL)
139 goto mem2;
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) {
146 errno = ENOENT;
147 goto mem3;
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)
158 p->fts_info = FTS_D;
161 * If comparison routine supplied, traverse in sorted
162 * order; otherwise traverse in the order specified.
164 if (compar) {
165 p->fts_link = root;
166 root = p;
167 } else {
168 p->fts_link = NULL;
169 if (root == NULL)
170 tmp = root = p;
171 else {
172 tmp->fts_link = p;
173 tmp = p;
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)
186 goto mem3;
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)
199 SET(FTS_NOCHDIR);
201 return (sp);
203 mem3: fts_lfree(root);
204 free(parent);
205 mem2: free(sp->fts_path);
206 mem1: free(sp);
207 return (NULL);
210 static void
211 internal_function
212 fts_load(sp, p)
213 FTS *sp;
214 register FTSENT *p;
216 register int len;
217 register char *cp;
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])) {
229 len = strlen(++cp);
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;
238 fts_close(sp)
239 FTS *sp;
241 register FTSENT *freep, *p;
242 int saved_errno;
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.
249 if (sp->fts_cur) {
250 for (p = sp->fts_cur; p->fts_level >= FTS_ROOTLEVEL;) {
251 freep = p;
252 p = p->fts_link != NULL ? p->fts_link : p->fts_parent;
253 free(freep);
255 free(p);
258 /* Free up child linked list, sort array, path buffer. */
259 if (sp->fts_child)
260 fts_lfree(sp->fts_child);
261 if (sp->fts_array)
262 free(sp->fts_array);
263 free(sp->fts_path);
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. */
273 free(sp);
274 errno = saved_errno;
275 return (-1);
279 /* Free up the stream pointer. */
280 free(sp);
281 return (0);
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".
288 #define NAPPEND(p) \
289 (p->fts_path[p->fts_pathlen - 1] == '/' \
290 ? p->fts_pathlen - 1 : p->fts_pathlen)
292 FTSENT *
293 fts_read(sp)
294 register FTS *sp;
296 register FTSENT *p, *tmp;
297 register int instr;
298 register char *t;
299 int saved_errno;
301 /* If finished or unrecoverable error, return NULL. */
302 if (sp->fts_cur == NULL || ISSET(FTS_STOP))
303 return (NULL);
305 /* Set current node pointer. */
306 p = sp->fts_cur;
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);
315 return (p);
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;
331 } else
332 p->fts_flags |= FTS_SYMFOLLOW;
334 return (p);
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);
344 if (sp->fts_child) {
345 fts_lfree(sp->fts_child);
346 sp->fts_child = NULL;
348 p->fts_info = FTS_DP;
349 return (p);
352 /* Rebuild if only read the names and now traversing. */
353 if (sp->fts_child != NULL && ISSET(FTS_NAMEONLY)) {
354 CLR(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;
376 p = p->fts_link)
377 p->fts_accpath =
378 p->fts_parent->fts_accpath;
380 } else if ((sp->fts_child = fts_build(sp, BREAD)) == NULL) {
381 if (ISSET(FTS_STOP))
382 return (NULL);
383 return (p);
385 p = sp->fts_child;
386 sp->fts_child = NULL;
387 goto name;
390 /* Move to the next node on this level. */
391 next: tmp = p;
392 if ((p = p->fts_link) != NULL) {
393 free(tmp);
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)) {
401 SET(FTS_STOP);
402 return (NULL);
404 fts_load(sp, p);
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)
414 goto next;
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)) {
418 if ((p->fts_symfd =
419 open(".", O_RDONLY, 0)) < 0) {
420 p->fts_errno = errno;
421 p->fts_info = FTS_ERR;
422 } else
423 p->fts_flags |= FTS_SYMFOLLOW;
425 p->fts_instr = FTS_NOINSTR;
428 name: t = sp->fts_path + NAPPEND(p->fts_parent);
429 *t++ = '/';
430 memmove(t, p->fts_name, p->fts_namelen + 1);
431 return (sp->fts_cur = p);
434 /* Move up to the parent node. */
435 p = tmp->fts_parent;
436 free(tmp);
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.
443 free(p);
444 errno = 0;
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
454 * one directory.
456 if (p->fts_level == FTS_ROOTLEVEL) {
457 if (FCHDIR(sp, sp->fts_rfd)) {
458 SET(FTS_STOP);
459 return (NULL);
461 } else if (p->fts_flags & FTS_SYMFOLLOW) {
462 if (FCHDIR(sp, p->fts_symfd)) {
463 saved_errno = errno;
464 (void)close(p->fts_symfd);
465 errno = saved_errno;
466 SET(FTS_STOP);
467 return (NULL);
469 (void)close(p->fts_symfd);
470 } else if (!(p->fts_flags & FTS_DONTCHDIR) &&
471 fts_safe_changedir(sp, p->fts_parent, -1, "..")) {
472 SET(FTS_STOP);
473 return (NULL);
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
483 * reasons.
485 /* ARGSUSED */
487 fts_set(sp, p, instr)
488 FTS *sp;
489 FTSENT *p;
490 int instr;
492 if (instr != 0 && instr != FTS_AGAIN && instr != FTS_FOLLOW &&
493 instr != FTS_NOINSTR && instr != FTS_SKIP) {
494 errno = EINVAL;
495 return (1);
497 p->fts_instr = instr;
498 return (0);
501 FTSENT *
502 fts_children(sp, instr)
503 register FTS *sp;
504 int instr;
506 register FTSENT *p;
507 int fd;
509 if (instr != 0 && instr != FTS_NAMEONLY) {
510 errno = EINVAL;
511 return (NULL);
514 /* Set current node pointer. */
515 p = sp->fts_cur;
518 * Errno set to 0 so user can distinguish empty directory from
519 * an error.
521 errno = 0;
523 /* Fatal errors stop here. */
524 if (ISSET(FTS_STOP))
525 return (NULL);
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 */)
537 return (NULL);
539 /* Free up any previous child list. */
540 if (sp->fts_child != NULL)
541 fts_lfree(sp->fts_child);
543 if (instr == FTS_NAMEONLY) {
544 SET(FTS_NAMEONLY);
545 instr = BNAMES;
546 } else
547 instr = BCHILD;
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] == '/' ||
557 ISSET(FTS_NOCHDIR))
558 return (sp->fts_child = fts_build(sp, instr));
560 if ((fd = open(".", O_RDONLY, 0)) < 0)
561 return (NULL);
562 sp->fts_child = fts_build(sp, instr);
563 if (fchdir(fd))
564 return (NULL);
565 (void)close(fd);
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.
583 static FTSENT *
584 internal_function
585 fts_build(sp, type)
586 register FTS *sp;
587 int type;
589 register struct dirent *dp;
590 register FTSENT *p, *head;
591 register int nitems;
592 FTSENT *cur, *tail;
593 DIR *dirp;
594 void *oldaddr;
595 int cderrno, descend, len, level, maxlen, nlinks, saved_errno,
596 nostat, doadjust;
597 char *cp;
599 /* Set current node pointer. */
600 cur = sp->fts_cur;
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) {
607 if (type == BREAD) {
608 cur->fts_info = FTS_DNR;
609 cur->fts_errno = errno;
611 return (NULL);
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) {
620 nlinks = 0;
621 /* Be quiet about nostat, GCC. */
622 nostat = 0;
623 } else if (ISSET(FTS_NOSTAT) && ISSET(FTS_PHYSICAL)) {
624 nlinks = cur->fts_nlink - (ISSET(FTS_SEEDOT) ? 0 : 2);
625 nostat = 1;
626 } else {
627 nlinks = -1;
628 nostat = 0;
631 #ifdef notdef
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));
635 #endif
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.
651 cderrno = 0;
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;
657 descend = 0;
658 cderrno = errno;
659 (void)closedir(dirp);
660 dirp = NULL;
661 } else
662 descend = 1;
663 } else
664 descend = 0;
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.
676 len = NAPPEND(cur);
677 if (ISSET(FTS_NOCHDIR)) {
678 cp = sp->fts_path + len;
679 *cp++ = '/';
680 } else {
681 /* GCC, you're too verbose. */
682 cp = NULL;
684 len++;
685 maxlen = sp->fts_pathlen - len;
687 level = cur->fts_level + 1;
689 /* Read the directory, attaching each entry to the `link' pointer. */
690 doadjust = 0;
691 for (head = tail = NULL, nitems = 0; dirp && (dp = readdir(dirp));) {
692 if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name))
693 continue;
695 if ((p = fts_alloc(sp, dp->d_name, (int)strlen(dp->d_name))) == NULL)
696 goto mem1;
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;
706 if (p)
707 free(p);
708 fts_lfree(head);
709 (void)closedir(dirp);
710 cur->fts_info = FTS_ERR;
711 SET(FTS_STOP);
712 errno = saved_errno;
713 return (NULL);
715 /* Did realloc() change the pointer? */
716 if (oldaddr != sp->fts_path) {
717 doadjust = 1;
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.
731 free(p);
732 fts_lfree(head);
733 (void)closedir(dirp);
734 cur->fts_info = FTS_ERR;
735 SET(FTS_STOP);
736 errno = ENAMETOOLONG;
737 return (NULL);
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;
746 #endif
748 if (cderrno) {
749 if (nlinks) {
750 p->fts_info = FTS_NS;
751 p->fts_errno = cderrno;
752 } else
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
757 || (nostat &&
758 dp->d_type != DT_DIR && dp->d_type != DT_UNKNOWN)
759 #endif
761 p->fts_accpath =
762 ISSET(FTS_NOCHDIR) ? p->fts_path : p->fts_name;
763 p->fts_info = FTS_NSOK;
764 } else {
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);
769 } else
770 p->fts_accpath = p->fts_name;
771 /* Stat it. */
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))
777 --nlinks;
780 /* We walk in directory order so "ls -f" doesn't get upset. */
781 p->fts_link = NULL;
782 if (head == NULL)
783 head = tail = p;
784 else {
785 tail->fts_link = p;
786 tail = p;
788 ++nitems;
790 if (dirp)
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.
797 if (doadjust)
798 fts_padjust(sp, head);
801 * If not changing directories, reset the path back to original
802 * state.
804 if (ISSET(FTS_NOCHDIR)) {
805 if (len == sp->fts_pathlen || nitems == 0)
806 --cp;
807 *cp = '\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;
822 SET(FTS_STOP);
823 return (NULL);
826 /* If didn't find anything, return NULL. */
827 if (!nitems) {
828 if (type == BREAD)
829 cur->fts_info = FTS_DP;
830 return (NULL);
833 /* Sort the entries. */
834 if (sp->fts_compar && nitems > 1)
835 head = fts_sort(sp, head, nitems);
836 return (head);
839 static u_short
840 internal_function
841 fts_stat(sp, p, follow)
842 FTS *sp;
843 register FTSENT *p;
844 int follow;
846 register FTSENT *t;
847 register dev_t dev;
848 register ino_t ino;
849 struct stat *sbp, sb;
850 int saved_errno;
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) {
858 if (sbp != &sb) {
859 memset(sbp, '\0', sizeof (*sbp));
860 sbp->st_mode = S_IFWHT;
862 return (FTS_W);
864 #endif
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)) {
873 saved_errno = errno;
874 if (!lstat(p->fts_accpath, sbp)) {
875 errno = 0;
876 return (FTS_SLNONE);
878 p->fts_errno = saved_errno;
879 goto err;
881 } else if (lstat(p->fts_accpath, sbp)) {
882 p->fts_errno = errno;
883 err: memset(sbp, 0, sizeof(struct stat));
884 return (FTS_NS);
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
893 * is set to FTS_D.
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))
900 return (FTS_DOT);
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) {
911 p->fts_cycle = t;
912 return (FTS_DC);
914 return (FTS_D);
916 if (S_ISLNK(sbp->st_mode))
917 return (FTS_SL);
918 if (S_ISREG(sbp->st_mode))
919 return (FTS_F);
920 return (FTS_DEFAULT);
923 static FTSENT *
924 internal_function
925 fts_sort(sp, head, nitems)
926 FTS *sp;
927 FTSENT *head;
928 register int 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) {
943 sp->fts_nitems = 0;
944 return (head);
947 for (ap = sp->fts_array, p = head; p; p = p->fts_link)
948 *ap++ = p;
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;
953 return (head);
956 static FTSENT *
957 internal_function
958 fts_alloc(sp, name, namelen)
959 FTS *sp;
960 const char *name;
961 register int namelen;
963 register FTSENT *p;
964 size_t len;
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)
978 return (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;
988 p->fts_errno = 0;
989 p->fts_flags = 0;
990 p->fts_instr = FTS_NOINSTR;
991 p->fts_number = 0;
992 p->fts_pointer = NULL;
993 return (p);
996 static void
997 internal_function
998 fts_lfree(head)
999 register FTSENT *head;
1001 register FTSENT *p;
1003 /* Free a linked list of structures. */
1004 while ((p = head)) {
1005 head = head->fts_link;
1006 free(p);
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.
1016 static int
1017 internal_function
1018 fts_palloc(sp, more)
1019 FTS *sp;
1020 size_t 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) {
1029 if (sp->fts_path)
1030 free(sp->fts_path);
1031 sp->fts_path = NULL;
1032 errno = ENAMETOOLONG;
1033 return (1);
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
1041 * already returned.
1043 static void
1044 internal_function
1045 fts_padjust(sp, head)
1046 FTS *sp;
1047 FTSENT *head;
1049 FTSENT *p;
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; \
1058 } while (0)
1059 /* Adjust the current set of children. */
1060 for (p = sp->fts_child; p; p = p->fts_link)
1061 ADJUST(p);
1063 /* Adjust the rest of the tree, including the current level. */
1064 for (p = head; p->fts_level >= FTS_ROOTLEVEL;) {
1065 ADJUST(p);
1066 p = p->fts_link ? p->fts_link : p->fts_parent;
1070 static size_t
1071 internal_function
1072 fts_maxarglen(argv)
1073 char * const *argv;
1075 size_t len, max;
1077 for (max = 0; *argv; ++argv)
1078 if ((len = strlen(*argv)) > max)
1079 max = len;
1080 return (max + 1);
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.
1087 static int
1088 fts_safe_changedir(FTS *sp, FTSENT *p, int fd, char *path)
1090 int ret, oerrno, newfd;
1091 struct stat sb;
1093 newfd = fd;
1094 if (ISSET(FTS_NOCHDIR))
1095 return (0);
1096 if (fd < 0 && (newfd = open(path, O_RDONLY, 0)) < 0)
1097 return (-1);
1098 if (fstat(newfd, &sb)) {
1099 ret = -1;
1100 goto bail;
1102 if (p->fts_dev != sb.st_dev || p->fts_ino != sb.st_ino) {
1103 errno = ENOENT; /* disinformation */
1104 ret = -1;
1105 goto bail;
1107 ret = fchdir(newfd);
1108 bail:
1109 oerrno = errno;
1110 if (fd < 0)
1111 (void)close(newfd);
1112 errno = oerrno;
1113 return (ret);
1116 #endif /* !OpenBSD/NetBSD/APPLE */