xref: /freebsd/lib/libc/gen/fts.c (revision c243e4902be8df1e643c76b5f18b68bb77cc5268)
1 /*-
2  * Copyright (c) 1990, 1993, 1994
3  *	The Regents of the University of California.  All rights reserved.
4  *
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.
16  *
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.
28  *
29  * $OpenBSD: fts.c,v 1.22 1999/10/03 19:22:22 millert Exp $
30  */
31 
32 #if 0
33 #if defined(LIBC_SCCS) && !defined(lint)
34 static char sccsid[] = "@(#)fts.c	8.6 (Berkeley) 8/14/94";
35 #endif /* LIBC_SCCS and not lint */
36 #endif
37 
38 #include <sys/cdefs.h>
39 __FBSDID("$FreeBSD$");
40 
41 #include "namespace.h"
42 #include <sys/param.h>
43 #include <sys/mount.h>
44 #include <sys/stat.h>
45 
46 #include <dirent.h>
47 #include <errno.h>
48 #include <fcntl.h>
49 #include <fts.h>
50 #include <stdlib.h>
51 #include <string.h>
52 #include <unistd.h>
53 #include "un-namespace.h"
54 
55 #include "gen-private.h"
56 
57 static FTSENT	*fts_alloc(FTS *, char *, size_t);
58 static FTSENT	*fts_build(FTS *, int);
59 static void	 fts_lfree(FTSENT *);
60 static void	 fts_load(FTS *, FTSENT *);
61 static size_t	 fts_maxarglen(char * const *);
62 static void	 fts_padjust(FTS *, FTSENT *);
63 static int	 fts_palloc(FTS *, size_t);
64 static FTSENT	*fts_sort(FTS *, FTSENT *, size_t);
65 static int	 fts_stat(FTS *, FTSENT *, int);
66 static int	 fts_safe_changedir(FTS *, FTSENT *, int, char *);
67 static int	 fts_ufslinks(FTS *, const FTSENT *);
68 
69 #define	ISDOT(a)	(a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2])))
70 
71 #define	CLR(opt)	(sp->fts_options &= ~(opt))
72 #define	ISSET(opt)	(sp->fts_options & (opt))
73 #define	SET(opt)	(sp->fts_options |= (opt))
74 
75 #define	FCHDIR(sp, fd)	(!ISSET(FTS_NOCHDIR) && fchdir(fd))
76 
77 /* fts_build flags */
78 #define	BCHILD		1		/* fts_children */
79 #define	BNAMES		2		/* fts_children, names only */
80 #define	BREAD		3		/* fts_read */
81 
82 /*
83  * Internal representation of an FTS, including extra implementation
84  * details.  The FTS returned from fts_open points to this structure's
85  * ftsp_fts member (and can be cast to an _fts_private as required)
86  */
87 struct _fts_private {
88 	FTS		ftsp_fts;
89 	struct statfs	ftsp_statfs;
90 	dev_t		ftsp_dev;
91 	int		ftsp_linksreliable;
92 };
93 
94 /*
95  * The "FTS_NOSTAT" option can avoid a lot of calls to stat(2) if it
96  * knows that a directory could not possibly have subdirectories.  This
97  * is decided by looking at the link count: a subdirectory would
98  * increment its parent's link count by virtue of its own ".." entry.
99  * This assumption only holds for UFS-like filesystems that implement
100  * links and directories this way, so we must punt for others.
101  */
102 
103 static const char *ufslike_filesystems[] = {
104 	"ufs",
105 	"zfs",
106 	"nfs",
107 	"nfs4",
108 	"ext2fs",
109 	0
110 };
111 
112 FTS *
113 fts_open(argv, options, compar)
114 	char * const *argv;
115 	int options;
116 	int (*compar)(const FTSENT * const *, const FTSENT * const *);
117 {
118 	struct _fts_private *priv;
119 	FTS *sp;
120 	FTSENT *p, *root;
121 	FTSENT *parent, *tmp;
122 	size_t len, nitems;
123 
124 	/* Options check. */
125 	if (options & ~FTS_OPTIONMASK) {
126 		errno = EINVAL;
127 		return (NULL);
128 	}
129 
130 	/* fts_open() requires at least one path */
131 	if (*argv == NULL) {
132 		errno = EINVAL;
133 		return (NULL);
134 	}
135 
136 	/* Allocate/initialize the stream. */
137 	if ((priv = calloc(1, sizeof(*priv))) == NULL)
138 		return (NULL);
139 	sp = &priv->ftsp_fts;
140 	sp->fts_compar = compar;
141 	sp->fts_options = options;
142 
143 	/* Shush, GCC. */
144 	tmp = NULL;
145 
146 	/* Logical walks turn on NOCHDIR; symbolic links are too hard. */
147 	if (ISSET(FTS_LOGICAL))
148 		SET(FTS_NOCHDIR);
149 
150 	/*
151 	 * Start out with 1K of path space, and enough, in any case,
152 	 * to hold the user's paths.
153 	 */
154 	if (fts_palloc(sp, MAX(fts_maxarglen(argv), MAXPATHLEN)))
155 		goto mem1;
156 
157 	/* Allocate/initialize root's parent. */
158 	if ((parent = fts_alloc(sp, "", 0)) == NULL)
159 		goto mem2;
160 	parent->fts_level = FTS_ROOTPARENTLEVEL;
161 
162 	/* Allocate/initialize root(s). */
163 	for (root = NULL, nitems = 0; *argv != NULL; ++argv, ++nitems) {
164 		/* Don't allow zero-length paths. */
165 		if ((len = strlen(*argv)) == 0) {
166 			errno = ENOENT;
167 			goto mem3;
168 		}
169 
170 		p = fts_alloc(sp, *argv, len);
171 		p->fts_level = FTS_ROOTLEVEL;
172 		p->fts_parent = parent;
173 		p->fts_accpath = p->fts_name;
174 		p->fts_info = fts_stat(sp, p, ISSET(FTS_COMFOLLOW));
175 
176 		/* Command-line "." and ".." are real directories. */
177 		if (p->fts_info == FTS_DOT)
178 			p->fts_info = FTS_D;
179 
180 		/*
181 		 * If comparison routine supplied, traverse in sorted
182 		 * order; otherwise traverse in the order specified.
183 		 */
184 		if (compar) {
185 			p->fts_link = root;
186 			root = p;
187 		} else {
188 			p->fts_link = NULL;
189 			if (root == NULL)
190 				tmp = root = p;
191 			else {
192 				tmp->fts_link = p;
193 				tmp = p;
194 			}
195 		}
196 	}
197 	if (compar && nitems > 1)
198 		root = fts_sort(sp, root, nitems);
199 
200 	/*
201 	 * Allocate a dummy pointer and make fts_read think that we've just
202 	 * finished the node before the root(s); set p->fts_info to FTS_INIT
203 	 * so that everything about the "current" node is ignored.
204 	 */
205 	if ((sp->fts_cur = fts_alloc(sp, "", 0)) == NULL)
206 		goto mem3;
207 	sp->fts_cur->fts_link = root;
208 	sp->fts_cur->fts_info = FTS_INIT;
209 
210 	/*
211 	 * If using chdir(2), grab a file descriptor pointing to dot to ensure
212 	 * that we can get back here; this could be avoided for some paths,
213 	 * but almost certainly not worth the effort.  Slashes, symbolic links,
214 	 * and ".." are all fairly nasty problems.  Note, if we can't get the
215 	 * descriptor we run anyway, just more slowly.
216 	 */
217 	if (!ISSET(FTS_NOCHDIR) && (sp->fts_rfd = _open(".", O_RDONLY, 0)) < 0)
218 		SET(FTS_NOCHDIR);
219 
220 	return (sp);
221 
222 mem3:	fts_lfree(root);
223 	free(parent);
224 mem2:	free(sp->fts_path);
225 mem1:	free(sp);
226 	return (NULL);
227 }
228 
229 static void
230 fts_load(FTS *sp, FTSENT *p)
231 {
232 	size_t len;
233 	char *cp;
234 
235 	/*
236 	 * Load the stream structure for the next traversal.  Since we don't
237 	 * actually enter the directory until after the preorder visit, set
238 	 * the fts_accpath field specially so the chdir gets done to the right
239 	 * place and the user can access the first node.  From fts_open it's
240 	 * known that the path will fit.
241 	 */
242 	len = p->fts_pathlen = p->fts_namelen;
243 	memmove(sp->fts_path, p->fts_name, len + 1);
244 	if ((cp = strrchr(p->fts_name, '/')) && (cp != p->fts_name || cp[1])) {
245 		len = strlen(++cp);
246 		memmove(p->fts_name, cp, len + 1);
247 		p->fts_namelen = len;
248 	}
249 	p->fts_accpath = p->fts_path = sp->fts_path;
250 	sp->fts_dev = p->fts_dev;
251 }
252 
253 int
254 fts_close(FTS *sp)
255 {
256 	FTSENT *freep, *p;
257 	int saved_errno;
258 
259 	/*
260 	 * This still works if we haven't read anything -- the dummy structure
261 	 * points to the root list, so we step through to the end of the root
262 	 * list which has a valid parent pointer.
263 	 */
264 	if (sp->fts_cur) {
265 		for (p = sp->fts_cur; p->fts_level >= FTS_ROOTLEVEL;) {
266 			freep = p;
267 			p = p->fts_link != NULL ? p->fts_link : p->fts_parent;
268 			free(freep);
269 		}
270 		free(p);
271 	}
272 
273 	/* Free up child linked list, sort array, path buffer. */
274 	if (sp->fts_child)
275 		fts_lfree(sp->fts_child);
276 	if (sp->fts_array)
277 		free(sp->fts_array);
278 	free(sp->fts_path);
279 
280 	/* Return to original directory, save errno if necessary. */
281 	if (!ISSET(FTS_NOCHDIR)) {
282 		saved_errno = fchdir(sp->fts_rfd) ? errno : 0;
283 		(void)_close(sp->fts_rfd);
284 
285 		/* Set errno and return. */
286 		if (saved_errno != 0) {
287 			/* Free up the stream pointer. */
288 			free(sp);
289 			errno = saved_errno;
290 			return (-1);
291 		}
292 	}
293 
294 	/* Free up the stream pointer. */
295 	free(sp);
296 	return (0);
297 }
298 
299 /*
300  * Special case of "/" at the end of the path so that slashes aren't
301  * appended which would cause paths to be written as "....//foo".
302  */
303 #define	NAPPEND(p)							\
304 	(p->fts_path[p->fts_pathlen - 1] == '/'				\
305 	    ? p->fts_pathlen - 1 : p->fts_pathlen)
306 
307 FTSENT *
308 fts_read(FTS *sp)
309 {
310 	FTSENT *p, *tmp;
311 	int instr;
312 	char *t;
313 	int saved_errno;
314 
315 	/* If finished or unrecoverable error, return NULL. */
316 	if (sp->fts_cur == NULL || ISSET(FTS_STOP))
317 		return (NULL);
318 
319 	/* Set current node pointer. */
320 	p = sp->fts_cur;
321 
322 	/* Save and zero out user instructions. */
323 	instr = p->fts_instr;
324 	p->fts_instr = FTS_NOINSTR;
325 
326 	/* Any type of file may be re-visited; re-stat and re-turn. */
327 	if (instr == FTS_AGAIN) {
328 		p->fts_info = fts_stat(sp, p, 0);
329 		return (p);
330 	}
331 
332 	/*
333 	 * Following a symlink -- SLNONE test allows application to see
334 	 * SLNONE and recover.  If indirecting through a symlink, have
335 	 * keep a pointer to current location.  If unable to get that
336 	 * pointer, follow fails.
337 	 */
338 	if (instr == FTS_FOLLOW &&
339 	    (p->fts_info == FTS_SL || p->fts_info == FTS_SLNONE)) {
340 		p->fts_info = fts_stat(sp, p, 1);
341 		if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR)) {
342 			if ((p->fts_symfd = _open(".", O_RDONLY, 0)) < 0) {
343 				p->fts_errno = errno;
344 				p->fts_info = FTS_ERR;
345 			} else
346 				p->fts_flags |= FTS_SYMFOLLOW;
347 		}
348 		return (p);
349 	}
350 
351 	/* Directory in pre-order. */
352 	if (p->fts_info == FTS_D) {
353 		/* If skipped or crossed mount point, do post-order visit. */
354 		if (instr == FTS_SKIP ||
355 		    (ISSET(FTS_XDEV) && p->fts_dev != sp->fts_dev)) {
356 			if (p->fts_flags & FTS_SYMFOLLOW)
357 				(void)_close(p->fts_symfd);
358 			if (sp->fts_child) {
359 				fts_lfree(sp->fts_child);
360 				sp->fts_child = NULL;
361 			}
362 			p->fts_info = FTS_DP;
363 			return (p);
364 		}
365 
366 		/* Rebuild if only read the names and now traversing. */
367 		if (sp->fts_child != NULL && ISSET(FTS_NAMEONLY)) {
368 			CLR(FTS_NAMEONLY);
369 			fts_lfree(sp->fts_child);
370 			sp->fts_child = NULL;
371 		}
372 
373 		/*
374 		 * Cd to the subdirectory.
375 		 *
376 		 * If have already read and now fail to chdir, whack the list
377 		 * to make the names come out right, and set the parent errno
378 		 * so the application will eventually get an error condition.
379 		 * Set the FTS_DONTCHDIR flag so that when we logically change
380 		 * directories back to the parent we don't do a chdir.
381 		 *
382 		 * If haven't read do so.  If the read fails, fts_build sets
383 		 * FTS_STOP or the fts_info field of the node.
384 		 */
385 		if (sp->fts_child != NULL) {
386 			if (fts_safe_changedir(sp, p, -1, p->fts_accpath)) {
387 				p->fts_errno = errno;
388 				p->fts_flags |= FTS_DONTCHDIR;
389 				for (p = sp->fts_child; p != NULL;
390 				    p = p->fts_link)
391 					p->fts_accpath =
392 					    p->fts_parent->fts_accpath;
393 			}
394 		} else if ((sp->fts_child = fts_build(sp, BREAD)) == NULL) {
395 			if (ISSET(FTS_STOP))
396 				return (NULL);
397 			return (p);
398 		}
399 		p = sp->fts_child;
400 		sp->fts_child = NULL;
401 		goto name;
402 	}
403 
404 	/* Move to the next node on this level. */
405 next:	tmp = p;
406 	if ((p = p->fts_link) != NULL) {
407 		free(tmp);
408 
409 		/*
410 		 * If reached the top, return to the original directory (or
411 		 * the root of the tree), and load the paths for the next root.
412 		 */
413 		if (p->fts_level == FTS_ROOTLEVEL) {
414 			if (FCHDIR(sp, sp->fts_rfd)) {
415 				SET(FTS_STOP);
416 				return (NULL);
417 			}
418 			fts_load(sp, p);
419 			return (sp->fts_cur = p);
420 		}
421 
422 		/*
423 		 * User may have called fts_set on the node.  If skipped,
424 		 * ignore.  If followed, get a file descriptor so we can
425 		 * get back if necessary.
426 		 */
427 		if (p->fts_instr == FTS_SKIP)
428 			goto next;
429 		if (p->fts_instr == FTS_FOLLOW) {
430 			p->fts_info = fts_stat(sp, p, 1);
431 			if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR)) {
432 				if ((p->fts_symfd =
433 				    _open(".", O_RDONLY, 0)) < 0) {
434 					p->fts_errno = errno;
435 					p->fts_info = FTS_ERR;
436 				} else
437 					p->fts_flags |= FTS_SYMFOLLOW;
438 			}
439 			p->fts_instr = FTS_NOINSTR;
440 		}
441 
442 name:		t = sp->fts_path + NAPPEND(p->fts_parent);
443 		*t++ = '/';
444 		memmove(t, p->fts_name, p->fts_namelen + 1);
445 		return (sp->fts_cur = p);
446 	}
447 
448 	/* Move up to the parent node. */
449 	p = tmp->fts_parent;
450 	free(tmp);
451 
452 	if (p->fts_level == FTS_ROOTPARENTLEVEL) {
453 		/*
454 		 * Done; free everything up and set errno to 0 so the user
455 		 * can distinguish between error and EOF.
456 		 */
457 		free(p);
458 		errno = 0;
459 		return (sp->fts_cur = NULL);
460 	}
461 
462 	/* NUL terminate the pathname. */
463 	sp->fts_path[p->fts_pathlen] = '\0';
464 
465 	/*
466 	 * Return to the parent directory.  If at a root node or came through
467 	 * a symlink, go back through the file descriptor.  Otherwise, cd up
468 	 * one directory.
469 	 */
470 	if (p->fts_level == FTS_ROOTLEVEL) {
471 		if (FCHDIR(sp, sp->fts_rfd)) {
472 			SET(FTS_STOP);
473 			return (NULL);
474 		}
475 	} else if (p->fts_flags & FTS_SYMFOLLOW) {
476 		if (FCHDIR(sp, p->fts_symfd)) {
477 			saved_errno = errno;
478 			(void)_close(p->fts_symfd);
479 			errno = saved_errno;
480 			SET(FTS_STOP);
481 			return (NULL);
482 		}
483 		(void)_close(p->fts_symfd);
484 	} else if (!(p->fts_flags & FTS_DONTCHDIR) &&
485 	    fts_safe_changedir(sp, p->fts_parent, -1, "..")) {
486 		SET(FTS_STOP);
487 		return (NULL);
488 	}
489 	p->fts_info = p->fts_errno ? FTS_ERR : FTS_DP;
490 	return (sp->fts_cur = p);
491 }
492 
493 /*
494  * Fts_set takes the stream as an argument although it's not used in this
495  * implementation; it would be necessary if anyone wanted to add global
496  * semantics to fts using fts_set.  An error return is allowed for similar
497  * reasons.
498  */
499 /* ARGSUSED */
500 int
501 fts_set(FTS *sp, FTSENT *p, int instr)
502 {
503 	if (instr != 0 && instr != FTS_AGAIN && instr != FTS_FOLLOW &&
504 	    instr != FTS_NOINSTR && instr != FTS_SKIP) {
505 		errno = EINVAL;
506 		return (1);
507 	}
508 	p->fts_instr = instr;
509 	return (0);
510 }
511 
512 FTSENT *
513 fts_children(FTS *sp, int instr)
514 {
515 	FTSENT *p;
516 	int fd;
517 
518 	if (instr != 0 && instr != FTS_NAMEONLY) {
519 		errno = EINVAL;
520 		return (NULL);
521 	}
522 
523 	/* Set current node pointer. */
524 	p = sp->fts_cur;
525 
526 	/*
527 	 * Errno set to 0 so user can distinguish empty directory from
528 	 * an error.
529 	 */
530 	errno = 0;
531 
532 	/* Fatal errors stop here. */
533 	if (ISSET(FTS_STOP))
534 		return (NULL);
535 
536 	/* Return logical hierarchy of user's arguments. */
537 	if (p->fts_info == FTS_INIT)
538 		return (p->fts_link);
539 
540 	/*
541 	 * If not a directory being visited in pre-order, stop here.  Could
542 	 * allow FTS_DNR, assuming the user has fixed the problem, but the
543 	 * same effect is available with FTS_AGAIN.
544 	 */
545 	if (p->fts_info != FTS_D /* && p->fts_info != FTS_DNR */)
546 		return (NULL);
547 
548 	/* Free up any previous child list. */
549 	if (sp->fts_child != NULL)
550 		fts_lfree(sp->fts_child);
551 
552 	if (instr == FTS_NAMEONLY) {
553 		SET(FTS_NAMEONLY);
554 		instr = BNAMES;
555 	} else
556 		instr = BCHILD;
557 
558 	/*
559 	 * If using chdir on a relative path and called BEFORE fts_read does
560 	 * its chdir to the root of a traversal, we can lose -- we need to
561 	 * chdir into the subdirectory, and we don't know where the current
562 	 * directory is, so we can't get back so that the upcoming chdir by
563 	 * fts_read will work.
564 	 */
565 	if (p->fts_level != FTS_ROOTLEVEL || p->fts_accpath[0] == '/' ||
566 	    ISSET(FTS_NOCHDIR))
567 		return (sp->fts_child = fts_build(sp, instr));
568 
569 	if ((fd = _open(".", O_RDONLY, 0)) < 0)
570 		return (NULL);
571 	sp->fts_child = fts_build(sp, instr);
572 	if (fchdir(fd)) {
573 		(void)_close(fd);
574 		return (NULL);
575 	}
576 	(void)_close(fd);
577 	return (sp->fts_child);
578 }
579 
580 #ifndef fts_get_clientptr
581 #error "fts_get_clientptr not defined"
582 #endif
583 
584 void *
585 (fts_get_clientptr)(FTS *sp)
586 {
587 
588 	return (fts_get_clientptr(sp));
589 }
590 
591 #ifndef fts_get_stream
592 #error "fts_get_stream not defined"
593 #endif
594 
595 FTS *
596 (fts_get_stream)(FTSENT *p)
597 {
598 	return (fts_get_stream(p));
599 }
600 
601 void
602 fts_set_clientptr(FTS *sp, void *clientptr)
603 {
604 
605 	sp->fts_clientptr = clientptr;
606 }
607 
608 /*
609  * This is the tricky part -- do not casually change *anything* in here.  The
610  * idea is to build the linked list of entries that are used by fts_children
611  * and fts_read.  There are lots of special cases.
612  *
613  * The real slowdown in walking the tree is the stat calls.  If FTS_NOSTAT is
614  * set and it's a physical walk (so that symbolic links can't be directories),
615  * we can do things quickly.  First, if it's a 4.4BSD file system, the type
616  * of the file is in the directory entry.  Otherwise, we assume that the number
617  * of subdirectories in a node is equal to the number of links to the parent.
618  * The former skips all stat calls.  The latter skips stat calls in any leaf
619  * directories and for any files after the subdirectories in the directory have
620  * been found, cutting the stat calls by about 2/3.
621  */
622 static FTSENT *
623 fts_build(FTS *sp, int type)
624 {
625 	struct dirent *dp;
626 	FTSENT *p, *head;
627 	FTSENT *cur, *tail;
628 	DIR *dirp;
629 	void *oldaddr;
630 	char *cp;
631 	int cderrno, descend, oflag, saved_errno, nostat, doadjust;
632 	long level;
633 	long nlinks;	/* has to be signed because -1 is a magic value */
634 	size_t dnamlen, len, maxlen, nitems;
635 
636 	/* Set current node pointer. */
637 	cur = sp->fts_cur;
638 
639 	/*
640 	 * Open the directory for reading.  If this fails, we're done.
641 	 * If being called from fts_read, set the fts_info field.
642 	 */
643 #ifdef FTS_WHITEOUT
644 	if (ISSET(FTS_WHITEOUT))
645 		oflag = DTF_NODUP | DTF_REWIND;
646 	else
647 		oflag = DTF_HIDEW | DTF_NODUP | DTF_REWIND;
648 #else
649 #define __opendir2(path, flag) opendir(path)
650 #endif
651 	if ((dirp = __opendir2(cur->fts_accpath, oflag)) == NULL) {
652 		if (type == BREAD) {
653 			cur->fts_info = FTS_DNR;
654 			cur->fts_errno = errno;
655 		}
656 		return (NULL);
657 	}
658 
659 	/*
660 	 * Nlinks is the number of possible entries of type directory in the
661 	 * directory if we're cheating on stat calls, 0 if we're not doing
662 	 * any stat calls at all, -1 if we're doing stats on everything.
663 	 */
664 	if (type == BNAMES) {
665 		nlinks = 0;
666 		/* Be quiet about nostat, GCC. */
667 		nostat = 0;
668 	} else if (ISSET(FTS_NOSTAT) && ISSET(FTS_PHYSICAL)) {
669 		if (fts_ufslinks(sp, cur))
670 			nlinks = cur->fts_nlink - (ISSET(FTS_SEEDOT) ? 0 : 2);
671 		else
672 			nlinks = -1;
673 		nostat = 1;
674 	} else {
675 		nlinks = -1;
676 		nostat = 0;
677 	}
678 
679 #ifdef notdef
680 	(void)printf("nlinks == %d (cur: %d)\n", nlinks, cur->fts_nlink);
681 	(void)printf("NOSTAT %d PHYSICAL %d SEEDOT %d\n",
682 	    ISSET(FTS_NOSTAT), ISSET(FTS_PHYSICAL), ISSET(FTS_SEEDOT));
683 #endif
684 	/*
685 	 * If we're going to need to stat anything or we want to descend
686 	 * and stay in the directory, chdir.  If this fails we keep going,
687 	 * but set a flag so we don't chdir after the post-order visit.
688 	 * We won't be able to stat anything, but we can still return the
689 	 * names themselves.  Note, that since fts_read won't be able to
690 	 * chdir into the directory, it will have to return different path
691 	 * names than before, i.e. "a/b" instead of "b".  Since the node
692 	 * has already been visited in pre-order, have to wait until the
693 	 * post-order visit to return the error.  There is a special case
694 	 * here, if there was nothing to stat then it's not an error to
695 	 * not be able to stat.  This is all fairly nasty.  If a program
696 	 * needed sorted entries or stat information, they had better be
697 	 * checking FTS_NS on the returned nodes.
698 	 */
699 	cderrno = 0;
700 	if (nlinks || type == BREAD) {
701 		if (fts_safe_changedir(sp, cur, _dirfd(dirp), NULL)) {
702 			if (nlinks && type == BREAD)
703 				cur->fts_errno = errno;
704 			cur->fts_flags |= FTS_DONTCHDIR;
705 			descend = 0;
706 			cderrno = errno;
707 		} else
708 			descend = 1;
709 	} else
710 		descend = 0;
711 
712 	/*
713 	 * Figure out the max file name length that can be stored in the
714 	 * current path -- the inner loop allocates more path as necessary.
715 	 * We really wouldn't have to do the maxlen calculations here, we
716 	 * could do them in fts_read before returning the path, but it's a
717 	 * lot easier here since the length is part of the dirent structure.
718 	 *
719 	 * If not changing directories set a pointer so that can just append
720 	 * each new name into the path.
721 	 */
722 	len = NAPPEND(cur);
723 	if (ISSET(FTS_NOCHDIR)) {
724 		cp = sp->fts_path + len;
725 		*cp++ = '/';
726 	} else {
727 		/* GCC, you're too verbose. */
728 		cp = NULL;
729 	}
730 	len++;
731 	maxlen = sp->fts_pathlen - len;
732 
733 	level = cur->fts_level + 1;
734 
735 	/* Read the directory, attaching each entry to the `link' pointer. */
736 	doadjust = 0;
737 	for (head = tail = NULL, nitems = 0; dirp && (dp = readdir(dirp));) {
738 		dnamlen = dp->d_namlen;
739 		if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name))
740 			continue;
741 
742 		if ((p = fts_alloc(sp, dp->d_name, dnamlen)) == NULL)
743 			goto mem1;
744 		if (dnamlen >= maxlen) {	/* include space for NUL */
745 			oldaddr = sp->fts_path;
746 			if (fts_palloc(sp, dnamlen + len + 1)) {
747 				/*
748 				 * No more memory for path or structures.  Save
749 				 * errno, free up the current structure and the
750 				 * structures already allocated.
751 				 */
752 mem1:				saved_errno = errno;
753 				if (p)
754 					free(p);
755 				fts_lfree(head);
756 				(void)closedir(dirp);
757 				cur->fts_info = FTS_ERR;
758 				SET(FTS_STOP);
759 				errno = saved_errno;
760 				return (NULL);
761 			}
762 			/* Did realloc() change the pointer? */
763 			if (oldaddr != sp->fts_path) {
764 				doadjust = 1;
765 				if (ISSET(FTS_NOCHDIR))
766 					cp = sp->fts_path + len;
767 			}
768 			maxlen = sp->fts_pathlen - len;
769 		}
770 
771 		p->fts_level = level;
772 		p->fts_parent = sp->fts_cur;
773 		p->fts_pathlen = len + dnamlen;
774 
775 #ifdef FTS_WHITEOUT
776 		if (dp->d_type == DT_WHT)
777 			p->fts_flags |= FTS_ISW;
778 #endif
779 
780 		if (cderrno) {
781 			if (nlinks) {
782 				p->fts_info = FTS_NS;
783 				p->fts_errno = cderrno;
784 			} else
785 				p->fts_info = FTS_NSOK;
786 			p->fts_accpath = cur->fts_accpath;
787 		} else if (nlinks == 0
788 #ifdef DT_DIR
789 		    || (nostat &&
790 		    dp->d_type != DT_DIR && dp->d_type != DT_UNKNOWN)
791 #endif
792 		    ) {
793 			p->fts_accpath =
794 			    ISSET(FTS_NOCHDIR) ? p->fts_path : p->fts_name;
795 			p->fts_info = FTS_NSOK;
796 		} else {
797 			/* Build a file name for fts_stat to stat. */
798 			if (ISSET(FTS_NOCHDIR)) {
799 				p->fts_accpath = p->fts_path;
800 				memmove(cp, p->fts_name, p->fts_namelen + 1);
801 			} else
802 				p->fts_accpath = p->fts_name;
803 			/* Stat it. */
804 			p->fts_info = fts_stat(sp, p, 0);
805 
806 			/* Decrement link count if applicable. */
807 			if (nlinks > 0 && (p->fts_info == FTS_D ||
808 			    p->fts_info == FTS_DC || p->fts_info == FTS_DOT))
809 				--nlinks;
810 		}
811 
812 		/* We walk in directory order so "ls -f" doesn't get upset. */
813 		p->fts_link = NULL;
814 		if (head == NULL)
815 			head = tail = p;
816 		else {
817 			tail->fts_link = p;
818 			tail = p;
819 		}
820 		++nitems;
821 	}
822 	if (dirp)
823 		(void)closedir(dirp);
824 
825 	/*
826 	 * If realloc() changed the address of the path, adjust the
827 	 * addresses for the rest of the tree and the dir list.
828 	 */
829 	if (doadjust)
830 		fts_padjust(sp, head);
831 
832 	/*
833 	 * If not changing directories, reset the path back to original
834 	 * state.
835 	 */
836 	if (ISSET(FTS_NOCHDIR))
837 		sp->fts_path[cur->fts_pathlen] = '\0';
838 
839 	/*
840 	 * If descended after called from fts_children or after called from
841 	 * fts_read and nothing found, get back.  At the root level we use
842 	 * the saved fd; if one of fts_open()'s arguments is a relative path
843 	 * to an empty directory, we wind up here with no other way back.  If
844 	 * can't get back, we're done.
845 	 */
846 	if (descend && (type == BCHILD || !nitems) &&
847 	    (cur->fts_level == FTS_ROOTLEVEL ?
848 	    FCHDIR(sp, sp->fts_rfd) :
849 	    fts_safe_changedir(sp, cur->fts_parent, -1, ".."))) {
850 		cur->fts_info = FTS_ERR;
851 		SET(FTS_STOP);
852 		return (NULL);
853 	}
854 
855 	/* If didn't find anything, return NULL. */
856 	if (!nitems) {
857 		if (type == BREAD)
858 			cur->fts_info = FTS_DP;
859 		return (NULL);
860 	}
861 
862 	/* Sort the entries. */
863 	if (sp->fts_compar && nitems > 1)
864 		head = fts_sort(sp, head, nitems);
865 	return (head);
866 }
867 
868 static int
869 fts_stat(FTS *sp, FTSENT *p, int follow)
870 {
871 	FTSENT *t;
872 	dev_t dev;
873 	ino_t ino;
874 	struct stat *sbp, sb;
875 	int saved_errno;
876 
877 	/* If user needs stat info, stat buffer already allocated. */
878 	sbp = ISSET(FTS_NOSTAT) ? &sb : p->fts_statp;
879 
880 #ifdef FTS_WHITEOUT
881 	/* Check for whiteout. */
882 	if (p->fts_flags & FTS_ISW) {
883 		if (sbp != &sb) {
884 			memset(sbp, '\0', sizeof(*sbp));
885 			sbp->st_mode = S_IFWHT;
886 		}
887 		return (FTS_W);
888 	}
889 #endif
890 
891 	/*
892 	 * If doing a logical walk, or application requested FTS_FOLLOW, do
893 	 * a stat(2).  If that fails, check for a non-existent symlink.  If
894 	 * fail, set the errno from the stat call.
895 	 */
896 	if (ISSET(FTS_LOGICAL) || follow) {
897 		if (stat(p->fts_accpath, sbp)) {
898 			saved_errno = errno;
899 			if (!lstat(p->fts_accpath, sbp)) {
900 				errno = 0;
901 				return (FTS_SLNONE);
902 			}
903 			p->fts_errno = saved_errno;
904 			goto err;
905 		}
906 	} else if (lstat(p->fts_accpath, sbp)) {
907 		p->fts_errno = errno;
908 err:		memset(sbp, 0, sizeof(struct stat));
909 		return (FTS_NS);
910 	}
911 
912 	if (S_ISDIR(sbp->st_mode)) {
913 		/*
914 		 * Set the device/inode.  Used to find cycles and check for
915 		 * crossing mount points.  Also remember the link count, used
916 		 * in fts_build to limit the number of stat calls.  It is
917 		 * understood that these fields are only referenced if fts_info
918 		 * is set to FTS_D.
919 		 */
920 		dev = p->fts_dev = sbp->st_dev;
921 		ino = p->fts_ino = sbp->st_ino;
922 		p->fts_nlink = sbp->st_nlink;
923 
924 		if (ISDOT(p->fts_name))
925 			return (FTS_DOT);
926 
927 		/*
928 		 * Cycle detection is done by brute force when the directory
929 		 * is first encountered.  If the tree gets deep enough or the
930 		 * number of symbolic links to directories is high enough,
931 		 * something faster might be worthwhile.
932 		 */
933 		for (t = p->fts_parent;
934 		    t->fts_level >= FTS_ROOTLEVEL; t = t->fts_parent)
935 			if (ino == t->fts_ino && dev == t->fts_dev) {
936 				p->fts_cycle = t;
937 				return (FTS_DC);
938 			}
939 		return (FTS_D);
940 	}
941 	if (S_ISLNK(sbp->st_mode))
942 		return (FTS_SL);
943 	if (S_ISREG(sbp->st_mode))
944 		return (FTS_F);
945 	return (FTS_DEFAULT);
946 }
947 
948 /*
949  * The comparison function takes pointers to pointers to FTSENT structures.
950  * Qsort wants a comparison function that takes pointers to void.
951  * (Both with appropriate levels of const-poisoning, of course!)
952  * Use a trampoline function to deal with the difference.
953  */
954 static int
955 fts_compar(const void *a, const void *b)
956 {
957 	FTS *parent;
958 
959 	parent = (*(const FTSENT * const *)a)->fts_fts;
960 	return (*parent->fts_compar)(a, b);
961 }
962 
963 static FTSENT *
964 fts_sort(FTS *sp, FTSENT *head, size_t nitems)
965 {
966 	FTSENT **ap, *p;
967 
968 	/*
969 	 * Construct an array of pointers to the structures and call qsort(3).
970 	 * Reassemble the array in the order returned by qsort.  If unable to
971 	 * sort for memory reasons, return the directory entries in their
972 	 * current order.  Allocate enough space for the current needs plus
973 	 * 40 so don't realloc one entry at a time.
974 	 */
975 	if (nitems > sp->fts_nitems) {
976 		sp->fts_nitems = nitems + 40;
977 		if ((sp->fts_array = reallocf(sp->fts_array,
978 		    sp->fts_nitems * sizeof(FTSENT *))) == NULL) {
979 			sp->fts_nitems = 0;
980 			return (head);
981 		}
982 	}
983 	for (ap = sp->fts_array, p = head; p; p = p->fts_link)
984 		*ap++ = p;
985 	qsort(sp->fts_array, nitems, sizeof(FTSENT *), fts_compar);
986 	for (head = *(ap = sp->fts_array); --nitems; ++ap)
987 		ap[0]->fts_link = ap[1];
988 	ap[0]->fts_link = NULL;
989 	return (head);
990 }
991 
992 static FTSENT *
993 fts_alloc(FTS *sp, char *name, size_t namelen)
994 {
995 	FTSENT *p;
996 	size_t len;
997 
998 	struct ftsent_withstat {
999 		FTSENT	ent;
1000 		struct	stat statbuf;
1001 	};
1002 
1003 	/*
1004 	 * The file name is a variable length array and no stat structure is
1005 	 * necessary if the user has set the nostat bit.  Allocate the FTSENT
1006 	 * structure, the file name and the stat structure in one chunk, but
1007 	 * be careful that the stat structure is reasonably aligned.
1008 	 */
1009 	if (ISSET(FTS_NOSTAT))
1010 		len = sizeof(FTSENT) + namelen + 1;
1011 	else
1012 		len = sizeof(struct ftsent_withstat) + namelen + 1;
1013 
1014 	if ((p = malloc(len)) == NULL)
1015 		return (NULL);
1016 
1017 	if (ISSET(FTS_NOSTAT)) {
1018 		p->fts_name = (char *)(p + 1);
1019 		p->fts_statp = NULL;
1020 	} else {
1021 		p->fts_name = (char *)((struct ftsent_withstat *)p + 1);
1022 		p->fts_statp = &((struct ftsent_withstat *)p)->statbuf;
1023 	}
1024 
1025 	/* Copy the name and guarantee NUL termination. */
1026 	memcpy(p->fts_name, name, namelen);
1027 	p->fts_name[namelen] = '\0';
1028 	p->fts_namelen = namelen;
1029 	p->fts_path = sp->fts_path;
1030 	p->fts_errno = 0;
1031 	p->fts_flags = 0;
1032 	p->fts_instr = FTS_NOINSTR;
1033 	p->fts_number = 0;
1034 	p->fts_pointer = NULL;
1035 	p->fts_fts = sp;
1036 	return (p);
1037 }
1038 
1039 static void
1040 fts_lfree(FTSENT *head)
1041 {
1042 	FTSENT *p;
1043 
1044 	/* Free a linked list of structures. */
1045 	while ((p = head)) {
1046 		head = head->fts_link;
1047 		free(p);
1048 	}
1049 }
1050 
1051 /*
1052  * Allow essentially unlimited paths; find, rm, ls should all work on any tree.
1053  * Most systems will allow creation of paths much longer than MAXPATHLEN, even
1054  * though the kernel won't resolve them.  Add the size (not just what's needed)
1055  * plus 256 bytes so don't realloc the path 2 bytes at a time.
1056  */
1057 static int
1058 fts_palloc(FTS *sp, size_t more)
1059 {
1060 
1061 	sp->fts_pathlen += more + 256;
1062 	sp->fts_path = reallocf(sp->fts_path, sp->fts_pathlen);
1063 	return (sp->fts_path == NULL);
1064 }
1065 
1066 /*
1067  * When the path is realloc'd, have to fix all of the pointers in structures
1068  * already returned.
1069  */
1070 static void
1071 fts_padjust(FTS *sp, FTSENT *head)
1072 {
1073 	FTSENT *p;
1074 	char *addr = sp->fts_path;
1075 
1076 #define	ADJUST(p) do {							\
1077 	if ((p)->fts_accpath != (p)->fts_name) {			\
1078 		(p)->fts_accpath =					\
1079 		    (char *)addr + ((p)->fts_accpath - (p)->fts_path);	\
1080 	}								\
1081 	(p)->fts_path = addr;						\
1082 } while (0)
1083 	/* Adjust the current set of children. */
1084 	for (p = sp->fts_child; p; p = p->fts_link)
1085 		ADJUST(p);
1086 
1087 	/* Adjust the rest of the tree, including the current level. */
1088 	for (p = head; p->fts_level >= FTS_ROOTLEVEL;) {
1089 		ADJUST(p);
1090 		p = p->fts_link ? p->fts_link : p->fts_parent;
1091 	}
1092 }
1093 
1094 static size_t
1095 fts_maxarglen(argv)
1096 	char * const *argv;
1097 {
1098 	size_t len, max;
1099 
1100 	for (max = 0; *argv; ++argv)
1101 		if ((len = strlen(*argv)) > max)
1102 			max = len;
1103 	return (max + 1);
1104 }
1105 
1106 /*
1107  * Change to dir specified by fd or p->fts_accpath without getting
1108  * tricked by someone changing the world out from underneath us.
1109  * Assumes p->fts_dev and p->fts_ino are filled in.
1110  */
1111 static int
1112 fts_safe_changedir(FTS *sp, FTSENT *p, int fd, char *path)
1113 {
1114 	int ret, oerrno, newfd;
1115 	struct stat sb;
1116 
1117 	newfd = fd;
1118 	if (ISSET(FTS_NOCHDIR))
1119 		return (0);
1120 	if (fd < 0 && (newfd = _open(path, O_RDONLY, 0)) < 0)
1121 		return (-1);
1122 	if (_fstat(newfd, &sb)) {
1123 		ret = -1;
1124 		goto bail;
1125 	}
1126 	if (p->fts_dev != sb.st_dev || p->fts_ino != sb.st_ino) {
1127 		errno = ENOENT;		/* disinformation */
1128 		ret = -1;
1129 		goto bail;
1130 	}
1131 	ret = fchdir(newfd);
1132 bail:
1133 	oerrno = errno;
1134 	if (fd < 0)
1135 		(void)_close(newfd);
1136 	errno = oerrno;
1137 	return (ret);
1138 }
1139 
1140 /*
1141  * Check if the filesystem for "ent" has UFS-style links.
1142  */
1143 static int
1144 fts_ufslinks(FTS *sp, const FTSENT *ent)
1145 {
1146 	struct _fts_private *priv;
1147 	const char **cpp;
1148 
1149 	priv = (struct _fts_private *)sp;
1150 	/*
1151 	 * If this node's device is different from the previous, grab
1152 	 * the filesystem information, and decide on the reliability
1153 	 * of the link information from this filesystem for stat(2)
1154 	 * avoidance.
1155 	 */
1156 	if (priv->ftsp_dev != ent->fts_dev) {
1157 		if (statfs(ent->fts_path, &priv->ftsp_statfs) != -1) {
1158 			priv->ftsp_dev = ent->fts_dev;
1159 			priv->ftsp_linksreliable = 0;
1160 			for (cpp = ufslike_filesystems; *cpp; cpp++) {
1161 				if (strcmp(priv->ftsp_statfs.f_fstypename,
1162 				    *cpp) == 0) {
1163 					priv->ftsp_linksreliable = 1;
1164 					break;
1165 				}
1166 			}
1167 		} else {
1168 			priv->ftsp_linksreliable = 0;
1169 		}
1170 	}
1171 	return (priv->ftsp_linksreliable);
1172 }
1173