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