* sysdeps/posix/spawni.c (__spawni): Use local_seteuid and
[glibc.git] / io / fts.c
blob6383fe8f179d806d1431eb4322d262c0816e1d29
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(LIBC_SCCS) && !defined(lint)
31 static char sccsid[] = "@(#)fts.c 8.6 (Berkeley) 8/14/94";
32 #endif /* LIBC_SCCS and not lint */
34 #include <sys/param.h>
35 #include <include/sys/stat.h>
36 #include <fcntl.h>
37 #include <dirent.h>
38 #include <errno.h>
39 #include <fts.h>
40 #include <stdlib.h>
41 #include <string.h>
42 #include <unistd.h>
45 /* Largest alignment size needed, minus one.
46 Usually long double is the worst case. */
47 #ifndef ALIGNBYTES
48 #define ALIGNBYTES (__alignof__ (long double) - 1)
49 #endif
50 /* Align P to that size. */
51 #ifndef ALIGN
52 #define ALIGN(p) (((unsigned long int) (p) + ALIGNBYTES) & ~ALIGNBYTES)
53 #endif
56 static FTSENT *fts_alloc (FTS *, const char *, size_t) internal_function;
57 static FTSENT *fts_build (FTS *, int) internal_function;
58 static void fts_lfree (FTSENT *) internal_function;
59 static void fts_load (FTS *, FTSENT *) internal_function;
60 static size_t fts_maxarglen (char * const *) internal_function;
61 static void fts_padjust (FTS *, FTSENT *) internal_function;
62 static int fts_palloc (FTS *, size_t) internal_function;
63 static FTSENT *fts_sort (FTS *, FTSENT *, int) internal_function;
64 static u_short fts_stat (FTS *, FTSENT *, int) internal_function;
65 static int fts_safe_changedir (FTS *, FTSENT *, int, const char *)
66 internal_function;
68 #ifndef MAX
69 #define MAX(a, b) ({ __typeof__ (a) _a = (a); \
70 __typeof__ (b) _b = (b); \
71 _a > _b ? _a : _b; })
72 #endif
74 #define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2])))
76 #define CLR(opt) (sp->fts_options &= ~(opt))
77 #define ISSET(opt) (sp->fts_options & (opt))
78 #define SET(opt) (sp->fts_options |= (opt))
80 #define FCHDIR(sp, fd) (!ISSET(FTS_NOCHDIR) && __fchdir(fd))
82 /* fts_build flags */
83 #define BCHILD 1 /* fts_children */
84 #define BNAMES 2 /* fts_children, names only */
85 #define BREAD 3 /* fts_read */
87 FTS *
88 fts_open(argv, options, compar)
89 char * const *argv;
90 register int options;
91 int (*compar) (const FTSENT **, const FTSENT **);
93 register FTS *sp;
94 register FTSENT *p, *root;
95 register int nitems;
96 FTSENT *parent = NULL;
97 FTSENT *tmp;
99 /* Options check. */
100 if (options & ~FTS_OPTIONMASK) {
101 __set_errno (EINVAL);
102 return (NULL);
105 /* Allocate/initialize the stream */
106 if ((sp = malloc((u_int)sizeof(FTS))) == NULL)
107 return (NULL);
108 memset(sp, 0, sizeof(FTS));
109 sp->fts_compar = (int (*) (const void *, const void *)) compar;
110 sp->fts_options = options;
112 /* Logical walks turn on NOCHDIR; symbolic links are too hard. */
113 if (ISSET(FTS_LOGICAL))
114 SET(FTS_NOCHDIR);
117 * Start out with 1K of path space, and enough, in any case,
118 * to hold the user's paths.
120 #ifndef MAXPATHLEN
121 #define MAXPATHLEN 1024
122 #endif
123 size_t maxarglen = fts_maxarglen(argv);
124 if (fts_palloc(sp, MAX(maxarglen, MAXPATHLEN)))
125 goto mem1;
127 /* Allocate/initialize root's parent. */
128 if (*argv != NULL) {
129 if ((parent = fts_alloc(sp, "", 0)) == NULL)
130 goto mem2;
131 parent->fts_level = FTS_ROOTPARENTLEVEL;
134 /* Allocate/initialize root(s). */
135 for (root = NULL, nitems = 0; *argv != NULL; ++argv, ++nitems) {
136 /* Don't allow zero-length paths. */
137 size_t len = strlen(*argv);
138 if (len == 0) {
139 __set_errno (ENOENT);
140 goto mem3;
143 p = fts_alloc(sp, *argv, len);
144 p->fts_level = FTS_ROOTLEVEL;
145 p->fts_parent = parent;
146 p->fts_accpath = p->fts_name;
147 p->fts_info = fts_stat(sp, p, ISSET(FTS_COMFOLLOW));
149 /* Command-line "." and ".." are real directories. */
150 if (p->fts_info == FTS_DOT)
151 p->fts_info = FTS_D;
154 * If comparison routine supplied, traverse in sorted
155 * order; otherwise traverse in the order specified.
157 if (compar) {
158 p->fts_link = root;
159 root = p;
160 } else {
161 p->fts_link = NULL;
162 if (root == NULL)
163 tmp = root = p;
164 else {
165 tmp->fts_link = p;
166 tmp = p;
170 if (compar && nitems > 1)
171 root = fts_sort(sp, root, nitems);
174 * Allocate a dummy pointer and make fts_read think that we've just
175 * finished the node before the root(s); set p->fts_info to FTS_INIT
176 * so that everything about the "current" node is ignored.
178 if ((sp->fts_cur = fts_alloc(sp, "", 0)) == NULL)
179 goto mem3;
180 sp->fts_cur->fts_link = root;
181 sp->fts_cur->fts_info = FTS_INIT;
184 * If using chdir(2), grab a file descriptor pointing to dot to ensure
185 * that we can get back here; this could be avoided for some paths,
186 * but almost certainly not worth the effort. Slashes, symbolic links,
187 * and ".." are all fairly nasty problems. Note, if we can't get the
188 * descriptor we run anyway, just more slowly.
190 if (!ISSET(FTS_NOCHDIR)
191 && (sp->fts_rfd = __open(".", O_RDONLY, 0)) < 0)
192 SET(FTS_NOCHDIR);
194 return (sp);
196 mem3: fts_lfree(root);
197 free(parent);
198 mem2: free(sp->fts_path);
199 mem1: free(sp);
200 return (NULL);
203 static void
204 internal_function
205 fts_load(sp, p)
206 FTS *sp;
207 register FTSENT *p;
209 register int len;
210 register char *cp;
213 * Load the stream structure for the next traversal. Since we don't
214 * actually enter the directory until after the preorder visit, set
215 * the fts_accpath field specially so the chdir gets done to the right
216 * place and the user can access the first node. From fts_open it's
217 * known that the path will fit.
219 len = p->fts_pathlen = p->fts_namelen;
220 memmove(sp->fts_path, p->fts_name, len + 1);
221 if ((cp = strrchr(p->fts_name, '/')) && (cp != p->fts_name || cp[1])) {
222 len = strlen(++cp);
223 memmove(p->fts_name, cp, len + 1);
224 p->fts_namelen = len;
226 p->fts_accpath = p->fts_path = sp->fts_path;
227 sp->fts_dev = p->fts_dev;
231 fts_close(sp)
232 FTS *sp;
234 register FTSENT *freep, *p;
235 int saved_errno;
238 * This still works if we haven't read anything -- the dummy structure
239 * points to the root list, so we step through to the end of the root
240 * list which has a valid parent pointer.
242 if (sp->fts_cur) {
243 for (p = sp->fts_cur; p->fts_level >= FTS_ROOTLEVEL;) {
244 freep = p;
245 p = p->fts_link != NULL ? p->fts_link : p->fts_parent;
246 free(freep);
248 free(p);
251 /* Free up child linked list, sort array, path buffer. */
252 if (sp->fts_child)
253 fts_lfree(sp->fts_child);
254 if (sp->fts_array)
255 free(sp->fts_array);
256 free(sp->fts_path);
258 /* Return to original directory, save errno if necessary. */
259 if (!ISSET(FTS_NOCHDIR)) {
260 saved_errno = __fchdir(sp->fts_rfd) ? errno : 0;
261 (void)__close(sp->fts_rfd);
263 /* Set errno and return. */
264 if (saved_errno != 0) {
265 /* Free up the stream pointer. */
266 free(sp);
267 __set_errno (saved_errno);
268 return (-1);
272 /* Free up the stream pointer. */
273 free(sp);
274 return (0);
278 * Special case of "/" at the end of the path so that slashes aren't
279 * appended which would cause paths to be written as "....//foo".
281 #define NAPPEND(p) \
282 (p->fts_path[p->fts_pathlen - 1] == '/' \
283 ? p->fts_pathlen - 1 : p->fts_pathlen)
285 FTSENT *
286 fts_read(sp)
287 register FTS *sp;
289 register FTSENT *p, *tmp;
290 register int instr;
291 register char *t;
292 int saved_errno;
294 /* If finished or unrecoverable error, return NULL. */
295 if (sp->fts_cur == NULL || ISSET(FTS_STOP))
296 return (NULL);
298 /* Set current node pointer. */
299 p = sp->fts_cur;
301 /* Save and zero out user instructions. */
302 instr = p->fts_instr;
303 p->fts_instr = FTS_NOINSTR;
305 /* Any type of file may be re-visited; re-stat and re-turn. */
306 if (instr == FTS_AGAIN) {
307 p->fts_info = fts_stat(sp, p, 0);
308 return (p);
312 * Following a symlink -- SLNONE test allows application to see
313 * SLNONE and recover. If indirecting through a symlink, have
314 * keep a pointer to current location. If unable to get that
315 * pointer, follow fails.
317 if (instr == FTS_FOLLOW &&
318 (p->fts_info == FTS_SL || p->fts_info == FTS_SLNONE)) {
319 p->fts_info = fts_stat(sp, p, 1);
320 if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR)) {
321 if ((p->fts_symfd = __open(".", O_RDONLY, 0)) < 0) {
322 p->fts_errno = errno;
323 p->fts_info = FTS_ERR;
324 } else
325 p->fts_flags |= FTS_SYMFOLLOW;
327 return (p);
330 /* Directory in pre-order. */
331 if (p->fts_info == FTS_D) {
332 /* If skipped or crossed mount point, do post-order visit. */
333 if (instr == FTS_SKIP ||
334 (ISSET(FTS_XDEV) && p->fts_dev != sp->fts_dev)) {
335 if (p->fts_flags & FTS_SYMFOLLOW)
336 (void)__close(p->fts_symfd);
337 if (sp->fts_child) {
338 fts_lfree(sp->fts_child);
339 sp->fts_child = NULL;
341 p->fts_info = FTS_DP;
342 return (p);
345 /* Rebuild if only read the names and now traversing. */
346 if (sp->fts_child != NULL && ISSET(FTS_NAMEONLY)) {
347 CLR(FTS_NAMEONLY);
348 fts_lfree(sp->fts_child);
349 sp->fts_child = NULL;
353 * Cd to the subdirectory.
355 * If have already read and now fail to chdir, whack the list
356 * to make the names come out right, and set the parent errno
357 * so the application will eventually get an error condition.
358 * Set the FTS_DONTCHDIR flag so that when we logically change
359 * directories back to the parent we don't do a chdir.
361 * If haven't read do so. If the read fails, fts_build sets
362 * FTS_STOP or the fts_info field of the node.
364 if (sp->fts_child != NULL) {
365 if (fts_safe_changedir(sp, p, -1, p->fts_accpath)) {
366 p->fts_errno = errno;
367 p->fts_flags |= FTS_DONTCHDIR;
368 for (p = sp->fts_child; p != NULL;
369 p = p->fts_link)
370 p->fts_accpath =
371 p->fts_parent->fts_accpath;
373 } else if ((sp->fts_child = fts_build(sp, BREAD)) == NULL) {
374 if (ISSET(FTS_STOP))
375 return (NULL);
376 return (p);
378 p = sp->fts_child;
379 sp->fts_child = NULL;
380 goto name;
383 /* Move to the next node on this level. */
384 next: tmp = p;
385 if ((p = p->fts_link) != NULL) {
386 free(tmp);
389 * If reached the top, return to the original directory (or
390 * the root of the tree), and load the paths for the next root.
392 if (p->fts_level == FTS_ROOTLEVEL) {
393 if (FCHDIR(sp, sp->fts_rfd)) {
394 SET(FTS_STOP);
395 return (NULL);
397 fts_load(sp, p);
398 return (sp->fts_cur = p);
402 * User may have called fts_set on the node. If skipped,
403 * ignore. If followed, get a file descriptor so we can
404 * get back if necessary.
406 if (p->fts_instr == FTS_SKIP)
407 goto next;
408 if (p->fts_instr == FTS_FOLLOW) {
409 p->fts_info = fts_stat(sp, p, 1);
410 if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR)) {
411 if ((p->fts_symfd =
412 __open(".", O_RDONLY, 0)) < 0) {
413 p->fts_errno = errno;
414 p->fts_info = FTS_ERR;
415 } else
416 p->fts_flags |= FTS_SYMFOLLOW;
418 p->fts_instr = FTS_NOINSTR;
421 name: t = sp->fts_path + NAPPEND(p->fts_parent);
422 *t++ = '/';
423 memmove(t, p->fts_name, p->fts_namelen + 1);
424 return (sp->fts_cur = p);
427 /* Move up to the parent node. */
428 p = tmp->fts_parent;
429 free(tmp);
431 if (p->fts_level == FTS_ROOTPARENTLEVEL) {
433 * Done; free everything up and set errno to 0 so the user
434 * can distinguish between error and EOF.
436 free(p);
437 __set_errno (0);
438 return (sp->fts_cur = NULL);
441 /* NUL terminate the pathname. */
442 sp->fts_path[p->fts_pathlen] = '\0';
445 * Return to the parent directory. If at a root node or came through
446 * a symlink, go back through the file descriptor. Otherwise, cd up
447 * one directory.
449 if (p->fts_level == FTS_ROOTLEVEL) {
450 if (FCHDIR(sp, sp->fts_rfd)) {
451 SET(FTS_STOP);
452 return (NULL);
454 } else if (p->fts_flags & FTS_SYMFOLLOW) {
455 if (FCHDIR(sp, p->fts_symfd)) {
456 saved_errno = errno;
457 (void)__close(p->fts_symfd);
458 __set_errno (saved_errno);
459 SET(FTS_STOP);
460 return (NULL);
462 (void)__close(p->fts_symfd);
463 } else if (!(p->fts_flags & FTS_DONTCHDIR) &&
464 fts_safe_changedir(sp, p->fts_parent, -1, "..")) {
465 SET(FTS_STOP);
466 return (NULL);
468 p->fts_info = p->fts_errno ? FTS_ERR : FTS_DP;
469 return (sp->fts_cur = p);
473 * Fts_set takes the stream as an argument although it's not used in this
474 * implementation; it would be necessary if anyone wanted to add global
475 * semantics to fts using fts_set. An error return is allowed for similar
476 * reasons.
478 /* ARGSUSED */
480 fts_set(sp, p, instr)
481 FTS *sp;
482 FTSENT *p;
483 int instr;
485 if (instr != 0 && instr != FTS_AGAIN && instr != FTS_FOLLOW &&
486 instr != FTS_NOINSTR && instr != FTS_SKIP) {
487 __set_errno (EINVAL);
488 return (1);
490 p->fts_instr = instr;
491 return (0);
494 FTSENT *
495 fts_children(sp, instr)
496 register FTS *sp;
497 int instr;
499 register FTSENT *p;
500 int fd;
502 if (instr != 0 && instr != FTS_NAMEONLY) {
503 __set_errno (EINVAL);
504 return (NULL);
507 /* Set current node pointer. */
508 p = sp->fts_cur;
511 * Errno set to 0 so user can distinguish empty directory from
512 * an error.
514 __set_errno (0);
516 /* Fatal errors stop here. */
517 if (ISSET(FTS_STOP))
518 return (NULL);
520 /* Return logical hierarchy of user's arguments. */
521 if (p->fts_info == FTS_INIT)
522 return (p->fts_link);
525 * If not a directory being visited in pre-order, stop here. Could
526 * allow FTS_DNR, assuming the user has fixed the problem, but the
527 * same effect is available with FTS_AGAIN.
529 if (p->fts_info != FTS_D /* && p->fts_info != FTS_DNR */)
530 return (NULL);
532 /* Free up any previous child list. */
533 if (sp->fts_child != NULL)
534 fts_lfree(sp->fts_child);
536 if (instr == FTS_NAMEONLY) {
537 SET(FTS_NAMEONLY);
538 instr = BNAMES;
539 } else
540 instr = BCHILD;
543 * If using chdir on a relative path and called BEFORE fts_read does
544 * its chdir to the root of a traversal, we can lose -- we need to
545 * chdir into the subdirectory, and we don't know where the current
546 * directory is, so we can't get back so that the upcoming chdir by
547 * fts_read will work.
549 if (p->fts_level != FTS_ROOTLEVEL || p->fts_accpath[0] == '/' ||
550 ISSET(FTS_NOCHDIR))
551 return (sp->fts_child = fts_build(sp, instr));
553 if ((fd = __open(".", O_RDONLY, 0)) < 0)
554 return (NULL);
555 sp->fts_child = fts_build(sp, instr);
556 if (__fchdir(fd))
557 return (NULL);
558 (void)__close(fd);
559 return (sp->fts_child);
563 * This is the tricky part -- do not casually change *anything* in here. The
564 * idea is to build the linked list of entries that are used by fts_children
565 * and fts_read. There are lots of special cases.
567 * The real slowdown in walking the tree is the stat calls. If FTS_NOSTAT is
568 * set and it's a physical walk (so that symbolic links can't be directories),
569 * we can do things quickly. First, if it's a 4.4BSD file system, the type
570 * of the file is in the directory entry. Otherwise, we assume that the number
571 * of subdirectories in a node is equal to the number of links to the parent.
572 * The former skips all stat calls. The latter skips stat calls in any leaf
573 * directories and for any files after the subdirectories in the directory have
574 * been found, cutting the stat calls by about 2/3.
576 static FTSENT *
577 internal_function
578 fts_build(sp, type)
579 register FTS *sp;
580 int type;
582 register struct dirent *dp;
583 register FTSENT *p, *head;
584 register int nitems;
585 FTSENT *cur, *tail;
586 DIR *dirp;
587 void *oldaddr;
588 int cderrno, descend, len, level, nlinks, saved_errno,
589 nostat, doadjust;
590 size_t maxlen;
591 char *cp;
593 /* Set current node pointer. */
594 cur = sp->fts_cur;
597 * Open the directory for reading. If this fails, we're done.
598 * If being called from fts_read, set the fts_info field.
600 #if defined FTS_WHITEOUT && 0
601 if (ISSET(FTS_WHITEOUT))
602 oflag = DTF_NODUP|DTF_REWIND;
603 else
604 oflag = DTF_HIDEW|DTF_NODUP|DTF_REWIND;
605 #else
606 # define __opendir2(path, flag) __opendir(path)
607 #endif
608 if ((dirp = __opendir2(cur->fts_accpath, oflag)) == NULL) {
609 if (type == BREAD) {
610 cur->fts_info = FTS_DNR;
611 cur->fts_errno = errno;
613 return (NULL);
617 * Nlinks is the number of possible entries of type directory in the
618 * directory if we're cheating on stat calls, 0 if we're not doing
619 * any stat calls at all, -1 if we're doing stats on everything.
621 if (type == BNAMES) {
622 nlinks = 0;
623 /* Be quiet about nostat, GCC. */
624 nostat = 0;
625 } else if (ISSET(FTS_NOSTAT) && ISSET(FTS_PHYSICAL)) {
626 nlinks = cur->fts_nlink - (ISSET(FTS_SEEDOT) ? 0 : 2);
627 nostat = 1;
628 } else {
629 nlinks = -1;
630 nostat = 0;
633 #ifdef notdef
634 (void)printf("nlinks == %d (cur: %d)\n", nlinks, cur->fts_nlink);
635 (void)printf("NOSTAT %d PHYSICAL %d SEEDOT %d\n",
636 ISSET(FTS_NOSTAT), ISSET(FTS_PHYSICAL), ISSET(FTS_SEEDOT));
637 #endif
639 * If we're going to need to stat anything or we want to descend
640 * and stay in the directory, chdir. If this fails we keep going,
641 * but set a flag so we don't chdir after the post-order visit.
642 * We won't be able to stat anything, but we can still return the
643 * names themselves. Note, that since fts_read won't be able to
644 * chdir into the directory, it will have to return different path
645 * names than before, i.e. "a/b" instead of "b". Since the node
646 * has already been visited in pre-order, have to wait until the
647 * post-order visit to return the error. There is a special case
648 * here, if there was nothing to stat then it's not an error to
649 * not be able to stat. This is all fairly nasty. If a program
650 * needed sorted entries or stat information, they had better be
651 * checking FTS_NS on the returned nodes.
653 cderrno = 0;
654 if (nlinks || type == BREAD) {
655 if (fts_safe_changedir(sp, cur, dirfd(dirp), NULL)) {
656 if (nlinks && type == BREAD)
657 cur->fts_errno = errno;
658 cur->fts_flags |= FTS_DONTCHDIR;
659 descend = 0;
660 cderrno = errno;
661 (void)__closedir(dirp);
662 dirp = NULL;
663 } else
664 descend = 1;
665 } else
666 descend = 0;
669 * Figure out the max file name length that can be stored in the
670 * current path -- the inner loop allocates more path as necessary.
671 * We really wouldn't have to do the maxlen calculations here, we
672 * could do them in fts_read before returning the path, but it's a
673 * lot easier here since the length is part of the dirent structure.
675 * If not changing directories set a pointer so that can just append
676 * each new name into the path.
678 len = NAPPEND(cur);
679 if (ISSET(FTS_NOCHDIR)) {
680 cp = sp->fts_path + len;
681 *cp++ = '/';
682 } else {
683 /* GCC, you're too verbose. */
684 cp = NULL;
686 len++;
687 maxlen = sp->fts_pathlen - len;
689 level = cur->fts_level + 1;
691 /* Read the directory, attaching each entry to the `link' pointer. */
692 doadjust = 0;
693 for (head = tail = NULL, nitems = 0; dirp && (dp = __readdir(dirp));) {
694 if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name))
695 continue;
697 if ((p = fts_alloc(sp, dp->d_name, _D_EXACT_NAMLEN (dp))) == NULL)
698 goto mem1;
699 if (_D_EXACT_NAMLEN (dp) >= maxlen) {/* include space for NUL */
700 oldaddr = sp->fts_path;
701 if (fts_palloc(sp, _D_EXACT_NAMLEN (dp) + len + 1)) {
703 * No more memory for path or structures. Save
704 * errno, free up the current structure and the
705 * structures already allocated.
707 mem1: saved_errno = errno;
708 if (p)
709 free(p);
710 fts_lfree(head);
711 (void)__closedir(dirp);
712 cur->fts_info = FTS_ERR;
713 SET(FTS_STOP);
714 __set_errno (saved_errno);
715 return (NULL);
717 /* Did realloc() change the pointer? */
718 if (oldaddr != sp->fts_path) {
719 doadjust = 1;
720 if (ISSET(FTS_NOCHDIR))
721 cp = sp->fts_path + len;
723 maxlen = sp->fts_pathlen - len;
726 if (len + _D_EXACT_NAMLEN (dp) >= USHRT_MAX) {
728 * In an FTSENT, fts_pathlen is a u_short so it is
729 * possible to wraparound here. If we do, free up
730 * the current structure and the structures already
731 * allocated, then error out with ENAMETOOLONG.
733 free(p);
734 fts_lfree(head);
735 (void)__closedir(dirp);
736 cur->fts_info = FTS_ERR;
737 SET(FTS_STOP);
738 __set_errno (ENAMETOOLONG);
739 return (NULL);
741 p->fts_level = level;
742 p->fts_parent = sp->fts_cur;
743 p->fts_pathlen = len + _D_EXACT_NAMLEN (dp);
745 #if defined FTS_WHITEOUT && 0
746 if (dp->d_type == DT_WHT)
747 p->fts_flags |= FTS_ISW;
748 #endif
750 #if 0
751 /* Unreachable code. cderrno is only ever set to a nonnull
752 value if dirp is closed at the same time. But then we
753 cannot enter this loop. */
754 if (cderrno) {
755 if (nlinks) {
756 p->fts_info = FTS_NS;
757 p->fts_errno = cderrno;
758 } else
759 p->fts_info = FTS_NSOK;
760 p->fts_accpath = cur->fts_accpath;
761 } else
762 #endif
763 if (nlinks == 0
764 #if defined DT_DIR && defined _DIRENT_HAVE_D_TYPE
765 || (nostat &&
766 dp->d_type != DT_DIR && dp->d_type != DT_UNKNOWN)
767 #endif
769 p->fts_accpath =
770 ISSET(FTS_NOCHDIR) ? p->fts_path : p->fts_name;
771 p->fts_info = FTS_NSOK;
772 } else {
773 /* Build a file name for fts_stat to stat. */
774 if (ISSET(FTS_NOCHDIR)) {
775 p->fts_accpath = p->fts_path;
776 memmove(cp, p->fts_name, p->fts_namelen + 1);
777 } else
778 p->fts_accpath = p->fts_name;
779 /* Stat it. */
780 p->fts_info = fts_stat(sp, p, 0);
782 /* Decrement link count if applicable. */
783 if (nlinks > 0 && (p->fts_info == FTS_D ||
784 p->fts_info == FTS_DC || p->fts_info == FTS_DOT))
785 --nlinks;
788 /* We walk in directory order so "ls -f" doesn't get upset. */
789 p->fts_link = NULL;
790 if (head == NULL)
791 head = tail = p;
792 else {
793 tail->fts_link = p;
794 tail = p;
796 ++nitems;
798 if (dirp)
799 (void)__closedir(dirp);
802 * If realloc() changed the address of the path, adjust the
803 * addresses for the rest of the tree and the dir list.
805 if (doadjust)
806 fts_padjust(sp, head);
809 * If not changing directories, reset the path back to original
810 * state.
812 if (ISSET(FTS_NOCHDIR)) {
813 if (len == sp->fts_pathlen || nitems == 0)
814 --cp;
815 *cp = '\0';
819 * If descended after called from fts_children or after called from
820 * fts_read and nothing found, get back. At the root level we use
821 * the saved fd; if one of fts_open()'s arguments is a relative path
822 * to an empty directory, we wind up here with no other way back. If
823 * can't get back, we're done.
825 if (descend && (type == BCHILD || !nitems) &&
826 (cur->fts_level == FTS_ROOTLEVEL ?
827 FCHDIR(sp, sp->fts_rfd) :
828 fts_safe_changedir(sp, cur->fts_parent, -1, ".."))) {
829 cur->fts_info = FTS_ERR;
830 SET(FTS_STOP);
831 fts_lfree(head);
832 return (NULL);
835 /* If didn't find anything, return NULL. */
836 if (!nitems) {
837 if (type == BREAD)
838 cur->fts_info = FTS_DP;
839 fts_lfree(head);
840 return (NULL);
843 /* Sort the entries. */
844 if (sp->fts_compar && nitems > 1)
845 head = fts_sort(sp, head, nitems);
846 return (head);
849 static u_short
850 internal_function
851 fts_stat(sp, p, follow)
852 FTS *sp;
853 register FTSENT *p;
854 int follow;
856 register FTSENT *t;
857 register dev_t dev;
858 register ino_t ino;
859 struct stat *sbp, sb;
860 int saved_errno;
862 /* If user needs stat info, stat buffer already allocated. */
863 sbp = ISSET(FTS_NOSTAT) ? &sb : p->fts_statp;
865 #if defined FTS_WHITEOUT && 0
866 /* check for whiteout */
867 if (p->fts_flags & FTS_ISW) {
868 if (sbp != &sb) {
869 memset(sbp, '\0', sizeof (*sbp));
870 sbp->st_mode = S_IFWHT;
872 return (FTS_W);
874 #endif
877 * If doing a logical walk, or application requested FTS_FOLLOW, do
878 * a stat(2). If that fails, check for a non-existent symlink. If
879 * fail, set the errno from the stat call.
881 if (ISSET(FTS_LOGICAL) || follow) {
882 if (stat(p->fts_accpath, sbp)) {
883 saved_errno = errno;
884 if (!lstat(p->fts_accpath, sbp)) {
885 __set_errno (0);
886 return (FTS_SLNONE);
888 p->fts_errno = saved_errno;
889 goto err;
891 } else if (lstat(p->fts_accpath, sbp)) {
892 p->fts_errno = errno;
893 err: memset(sbp, 0, sizeof(struct stat));
894 return (FTS_NS);
897 if (S_ISDIR(sbp->st_mode)) {
899 * Set the device/inode. Used to find cycles and check for
900 * crossing mount points. Also remember the link count, used
901 * in fts_build to limit the number of stat calls. It is
902 * understood that these fields are only referenced if fts_info
903 * is set to FTS_D.
905 dev = p->fts_dev = sbp->st_dev;
906 ino = p->fts_ino = sbp->st_ino;
907 p->fts_nlink = sbp->st_nlink;
909 if (ISDOT(p->fts_name))
910 return (FTS_DOT);
913 * Cycle detection is done by brute force when the directory
914 * is first encountered. If the tree gets deep enough or the
915 * number of symbolic links to directories is high enough,
916 * something faster might be worthwhile.
918 for (t = p->fts_parent;
919 t->fts_level >= FTS_ROOTLEVEL; t = t->fts_parent)
920 if (ino == t->fts_ino && dev == t->fts_dev) {
921 p->fts_cycle = t;
922 return (FTS_DC);
924 return (FTS_D);
926 if (S_ISLNK(sbp->st_mode))
927 return (FTS_SL);
928 if (S_ISREG(sbp->st_mode))
929 return (FTS_F);
930 return (FTS_DEFAULT);
933 static FTSENT *
934 internal_function
935 fts_sort(sp, head, nitems)
936 FTS *sp;
937 FTSENT *head;
938 register int nitems;
940 register FTSENT **ap, *p;
943 * Construct an array of pointers to the structures and call qsort(3).
944 * Reassemble the array in the order returned by qsort. If unable to
945 * sort for memory reasons, return the directory entries in their
946 * current order. Allocate enough space for the current needs plus
947 * 40 so don't realloc one entry at a time.
949 if (nitems > sp->fts_nitems) {
950 struct _ftsent **a;
952 sp->fts_nitems = nitems + 40;
953 if ((a = realloc(sp->fts_array,
954 (size_t)(sp->fts_nitems * sizeof(FTSENT *)))) == NULL) {
955 free(sp->fts_array);
956 sp->fts_array = NULL;
957 sp->fts_nitems = 0;
958 return (head);
960 sp->fts_array = a;
962 for (ap = sp->fts_array, p = head; p; p = p->fts_link)
963 *ap++ = p;
964 qsort((void *)sp->fts_array, nitems, sizeof(FTSENT *), sp->fts_compar);
965 for (head = *(ap = sp->fts_array); --nitems; ++ap)
966 ap[0]->fts_link = ap[1];
967 ap[0]->fts_link = NULL;
968 return (head);
971 static FTSENT *
972 internal_function
973 fts_alloc(sp, name, namelen)
974 FTS *sp;
975 const char *name;
976 size_t namelen;
978 register FTSENT *p;
979 size_t len;
982 * The file name is a variable length array and no stat structure is
983 * necessary if the user has set the nostat bit. Allocate the FTSENT
984 * structure, the file name and the stat structure in one chunk, but
985 * be careful that the stat structure is reasonably aligned. Since the
986 * fts_name field is declared to be of size 1, the fts_name pointer is
987 * namelen + 2 before the first possible address of the stat structure.
989 len = sizeof(FTSENT) + namelen;
990 if (!ISSET(FTS_NOSTAT))
991 len += sizeof(struct stat) + ALIGNBYTES;
992 if ((p = malloc(len)) == NULL)
993 return (NULL);
995 /* Copy the name and guarantee NUL termination. */
996 memmove(p->fts_name, name, namelen);
997 p->fts_name[namelen] = '\0';
999 if (!ISSET(FTS_NOSTAT))
1000 p->fts_statp = (struct stat *)ALIGN(p->fts_name + namelen + 2);
1001 p->fts_namelen = namelen;
1002 p->fts_path = sp->fts_path;
1003 p->fts_errno = 0;
1004 p->fts_flags = 0;
1005 p->fts_instr = FTS_NOINSTR;
1006 p->fts_number = 0;
1007 p->fts_pointer = NULL;
1008 return (p);
1011 static void
1012 internal_function
1013 fts_lfree(head)
1014 register FTSENT *head;
1016 register FTSENT *p;
1018 /* Free a linked list of structures. */
1019 while ((p = head)) {
1020 head = head->fts_link;
1021 free(p);
1026 * Allow essentially unlimited paths; find, rm, ls should all work on any tree.
1027 * Most systems will allow creation of paths much longer than MAXPATHLEN, even
1028 * though the kernel won't resolve them. Add the size (not just what's needed)
1029 * plus 256 bytes so don't realloc the path 2 bytes at a time.
1031 static int
1032 internal_function
1033 fts_palloc(sp, more)
1034 FTS *sp;
1035 size_t more;
1037 char *p;
1039 sp->fts_pathlen += more + 256;
1041 * Check for possible wraparound. In an FTS, fts_pathlen is
1042 * a signed int but in an FTSENT it is an unsigned short.
1043 * We limit fts_pathlen to USHRT_MAX to be safe in both cases.
1045 if (sp->fts_pathlen < 0 || sp->fts_pathlen >= USHRT_MAX) {
1046 if (sp->fts_path) {
1047 free(sp->fts_path);
1048 sp->fts_path = NULL;
1050 sp->fts_path = NULL;
1051 __set_errno (ENAMETOOLONG);
1052 return (1);
1054 p = realloc(sp->fts_path, sp->fts_pathlen);
1055 if (p == NULL) {
1056 free(sp->fts_path);
1057 sp->fts_path = NULL;
1058 return 1;
1060 sp->fts_path = p;
1061 return 0;
1065 * When the path is realloc'd, have to fix all of the pointers in structures
1066 * already returned.
1068 static void
1069 internal_function
1070 fts_padjust(sp, head)
1071 FTS *sp;
1072 FTSENT *head;
1074 FTSENT *p;
1075 char *addr = sp->fts_path;
1077 #define ADJUST(p) do { \
1078 if ((p)->fts_accpath != (p)->fts_name) { \
1079 (p)->fts_accpath = \
1080 (char *)addr + ((p)->fts_accpath - (p)->fts_path); \
1082 (p)->fts_path = addr; \
1083 } while (0)
1084 /* Adjust the current set of children. */
1085 for (p = sp->fts_child; p; p = p->fts_link)
1086 ADJUST(p);
1088 /* Adjust the rest of the tree, including the current level. */
1089 for (p = head; p->fts_level >= FTS_ROOTLEVEL;) {
1090 ADJUST(p);
1091 p = p->fts_link ? p->fts_link : p->fts_parent;
1095 static size_t
1096 internal_function
1097 fts_maxarglen(argv)
1098 char * const *argv;
1100 size_t len, max;
1102 for (max = 0; *argv; ++argv)
1103 if ((len = strlen(*argv)) > max)
1104 max = len;
1105 return (max + 1);
1109 * Change to dir specified by fd or p->fts_accpath without getting
1110 * tricked by someone changing the world out from underneath us.
1111 * Assumes p->fts_dev and p->fts_ino are filled in.
1113 static int
1114 internal_function
1115 fts_safe_changedir(sp, p, fd, path)
1116 FTS *sp;
1117 FTSENT *p;
1118 int fd;
1119 const char *path;
1121 int ret, oerrno, newfd;
1122 struct stat64 sb;
1124 newfd = fd;
1125 if (ISSET(FTS_NOCHDIR))
1126 return (0);
1127 if (fd < 0 && (newfd = __open(path, O_RDONLY, 0)) < 0)
1128 return (-1);
1129 if (__fxstat64(_STAT_VER, newfd, &sb)) {
1130 ret = -1;
1131 goto bail;
1133 if (p->fts_dev != sb.st_dev || p->fts_ino != sb.st_ino) {
1134 __set_errno (ENOENT); /* disinformation */
1135 ret = -1;
1136 goto bail;
1138 ret = __fchdir(newfd);
1139 bail:
1140 oerrno = errno;
1141 if (fd < 0)
1142 (void)__close(newfd);
1143 __set_errno (oerrno);
1144 return (ret);