7210c1bbb9689dfe163826e0aa821778bdf3edc1
[gnulib.git] / lib / fts.c
1 /* Traverse a file hierarchy.
2
3    Copyright (C) 2004-2011 Free Software Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 /*-
19  * Copyright (c) 1990, 1993, 1994
20  *      The Regents of the University of California.  All rights reserved.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the above copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 4. Neither the name of the University nor the names of its contributors
31  *    may be used to endorse or promote products derived from this software
32  *    without specific prior written permission.
33  *
34  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
35  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
36  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
37  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
38  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
39  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
40  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
41  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
42  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
43  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
44  * SUCH DAMAGE.
45  */
46
47 #include <config.h>
48
49 #if defined(LIBC_SCCS) && !defined(lint)
50 static char sccsid[] = "@(#)fts.c       8.6 (Berkeley) 8/14/94";
51 #endif /* LIBC_SCCS and not lint */
52
53 #include "fts_.h"
54
55 #if HAVE_SYS_PARAM_H || defined _LIBC
56 # include <sys/param.h>
57 #endif
58 #ifdef _LIBC
59 # include <include/sys/stat.h>
60 #else
61 # include <sys/stat.h>
62 #endif
63 #include <fcntl.h>
64 #include <errno.h>
65 #include <stdbool.h>
66 #include <stdlib.h>
67 #include <string.h>
68 #include <unistd.h>
69
70 #if ! _LIBC
71 # include "fcntl--.h"
72 # include "dirent--.h"
73 # include "unistd--.h"
74 /* FIXME - use fcntl(F_DUPFD_CLOEXEC)/openat(O_CLOEXEC) once they are
75    supported.  */
76 # include "cloexec.h"
77 # include "openat.h"
78 # include "same-inode.h"
79 #endif
80
81 #include <dirent.h>
82 #ifndef _D_EXACT_NAMLEN
83 # define _D_EXACT_NAMLEN(dirent) strlen ((dirent)->d_name)
84 #endif
85
86 #if HAVE_STRUCT_DIRENT_D_TYPE
87 /* True if the type of the directory entry D is known.  */
88 # define DT_IS_KNOWN(d) ((d)->d_type != DT_UNKNOWN)
89 /* True if the type of the directory entry D must be T.  */
90 # define DT_MUST_BE(d, t) ((d)->d_type == (t))
91 # define D_TYPE(d) ((d)->d_type)
92 #else
93 # define DT_IS_KNOWN(d) false
94 # define DT_MUST_BE(d, t) false
95 # define D_TYPE(d) DT_UNKNOWN
96
97 # undef DT_UNKNOWN
98 # define DT_UNKNOWN 0
99
100 /* Any nonzero values will do here, so long as they're distinct.
101    Undef any existing macros out of the way.  */
102 # undef DT_BLK
103 # undef DT_CHR
104 # undef DT_DIR
105 # undef DT_FIFO
106 # undef DT_LNK
107 # undef DT_REG
108 # undef DT_SOCK
109 # define DT_BLK 1
110 # define DT_CHR 2
111 # define DT_DIR 3
112 # define DT_FIFO 4
113 # define DT_LNK 5
114 # define DT_REG 6
115 # define DT_SOCK 7
116 #endif
117
118 #ifndef S_IFLNK
119 # define S_IFLNK 0
120 #endif
121 #ifndef S_IFSOCK
122 # define S_IFSOCK 0
123 #endif
124
125 enum
126 {
127   NOT_AN_INODE_NUMBER = 0
128 };
129
130 #ifdef D_INO_IN_DIRENT
131 # define D_INO(dp) (dp)->d_ino
132 #else
133 /* Some systems don't have inodes, so fake them to avoid lots of ifdefs.  */
134 # define D_INO(dp) NOT_AN_INODE_NUMBER
135 #endif
136
137 /* If there are more than this many entries in a directory,
138    and the conditions mentioned below are satisfied, then sort
139    the entries on inode number before any further processing.  */
140 #ifndef FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD
141 # define FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD 10000
142 #endif
143 enum
144 {
145   _FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD = FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD
146 };
147
148 enum Fts_stat
149 {
150   FTS_NO_STAT_REQUIRED = 1,
151   FTS_STAT_REQUIRED = 2
152 };
153
154 #ifdef _LIBC
155 # undef close
156 # define close __close
157 # undef closedir
158 # define closedir __closedir
159 # undef fchdir
160 # define fchdir __fchdir
161 # undef open
162 # define open __open
163 # undef readdir
164 # define readdir __readdir
165 #else
166 # undef internal_function
167 # define internal_function /* empty */
168 #endif
169
170 #ifndef __set_errno
171 # define __set_errno(Val) errno = (Val)
172 #endif
173
174 /* If this host provides the openat function, then we can avoid
175    attempting to open "." in some initialization code below.  */
176 #ifdef HAVE_OPENAT
177 # define HAVE_OPENAT_SUPPORT 1
178 #else
179 # define HAVE_OPENAT_SUPPORT 0
180 #endif
181
182 #ifdef NDEBUG
183 # define fts_assert(expr) ((void) 0)
184 #else
185 # define fts_assert(expr)       \
186     do                          \
187       {                         \
188         if (!(expr))            \
189           abort ();             \
190       }                         \
191     while (false)
192 #endif
193
194 static FTSENT   *fts_alloc (FTS *, const char *, size_t) internal_function;
195 static FTSENT   *fts_build (FTS *, int) internal_function;
196 static void      fts_lfree (FTSENT *) internal_function;
197 static void      fts_load (FTS *, FTSENT *) internal_function;
198 static size_t    fts_maxarglen (char * const *) internal_function;
199 static void      fts_padjust (FTS *, FTSENT *) internal_function;
200 static bool      fts_palloc (FTS *, size_t) internal_function;
201 static FTSENT   *fts_sort (FTS *, FTSENT *, size_t) internal_function;
202 static unsigned short int fts_stat (FTS *, FTSENT *, bool) internal_function;
203 static int      fts_safe_changedir (FTS *, FTSENT *, int, const char *)
204      internal_function;
205
206 #include "fts-cycle.c"
207
208 #ifndef MAX
209 # define MAX(a,b) ((a) > (b) ? (a) : (b))
210 #endif
211
212 #ifndef SIZE_MAX
213 # define SIZE_MAX ((size_t) -1)
214 #endif
215
216 #define ISDOT(a)        (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2])))
217 #define STREQ(a, b)     (strcmp (a, b) == 0)
218
219 #define CLR(opt)        (sp->fts_options &= ~(opt))
220 #define ISSET(opt)      (sp->fts_options & (opt))
221 #define SET(opt)        (sp->fts_options |= (opt))
222
223 /* FIXME: make this a function */
224 #define RESTORE_INITIAL_CWD(sp)                 \
225   (fd_ring_clear (&((sp)->fts_fd_ring)),        \
226    FCHDIR ((sp), (ISSET (FTS_CWDFD) ? AT_FDCWD : (sp)->fts_rfd)))
227
228 /* FIXME: FTS_NOCHDIR is now misnamed.
229    Call it FTS_USE_FULL_RELATIVE_FILE_NAMES instead. */
230 #define FCHDIR(sp, fd)                                  \
231   (!ISSET(FTS_NOCHDIR) && (ISSET(FTS_CWDFD)             \
232                            ? (cwd_advance_fd ((sp), (fd), true), 0) \
233                            : fchdir (fd)))
234
235
236 /* fts_build flags */
237 /* FIXME: make this an enum */
238 #define BCHILD          1               /* fts_children */
239 #define BNAMES          2               /* fts_children, names only */
240 #define BREAD           3               /* fts_read */
241
242 #if FTS_DEBUG
243 # include <inttypes.h>
244 # include <stdint.h>
245 # include <stdio.h>
246 # include "getcwdat.h"
247 bool fts_debug = false;
248 # define Dprintf(x) do { if (fts_debug) printf x; } while (false)
249 #else
250 # define Dprintf(x)
251 # define fd_ring_check(x)
252 # define fd_ring_print(a, b, c)
253 #endif
254
255 #define LEAVE_DIR(Fts, Ent, Tag)                                \
256   do                                                            \
257     {                                                           \
258       Dprintf (("  %s-leaving: %s\n", Tag, (Ent)->fts_path));   \
259       leave_dir (Fts, Ent);                                     \
260       fd_ring_check (Fts);                                      \
261     }                                                           \
262   while (false)
263
264 static void
265 fd_ring_clear (I_ring *fd_ring)
266 {
267   while ( ! i_ring_empty (fd_ring))
268     {
269       int fd = i_ring_pop (fd_ring);
270       if (0 <= fd)
271         close (fd);
272     }
273 }
274
275 /* Overload the fts_statp->st_size member (otherwise unused, when
276    fts_info is FTS_NSOK) to indicate whether fts_read should stat
277    this entry or not.  */
278 static void
279 fts_set_stat_required (FTSENT *p, bool required)
280 {
281   fts_assert (p->fts_info == FTS_NSOK);
282   p->fts_statp->st_size = (required
283                            ? FTS_STAT_REQUIRED
284                            : FTS_NO_STAT_REQUIRED);
285 }
286
287 /* file-descriptor-relative opendir.  */
288 /* FIXME: if others need this function, move it into lib/openat.c */
289 static inline DIR *
290 internal_function
291 opendirat (int fd, char const *dir, int extra_flags, int *pdir_fd)
292 {
293   int new_fd = openat (fd, dir,
294                        (O_RDONLY | O_DIRECTORY | O_NOCTTY | O_NONBLOCK
295                         | extra_flags));
296   DIR *dirp;
297
298   if (new_fd < 0)
299     return NULL;
300   set_cloexec_flag (new_fd, true);
301   dirp = fdopendir (new_fd);
302   if (dirp)
303     *pdir_fd = new_fd;
304   else
305     {
306       int saved_errno = errno;
307       close (new_fd);
308       errno = saved_errno;
309     }
310   return dirp;
311 }
312
313 /* Virtual fchdir.  Advance SP's working directory file descriptor,
314    SP->fts_cwd_fd, to FD, and push the previous value onto the fd_ring.
315    CHDIR_DOWN_ONE is true if FD corresponds to an entry in the directory
316    open on sp->fts_cwd_fd; i.e., to move the working directory one level
317    down.  */
318 static void
319 internal_function
320 cwd_advance_fd (FTS *sp, int fd, bool chdir_down_one)
321 {
322   int old = sp->fts_cwd_fd;
323   fts_assert (old != fd || old == AT_FDCWD);
324
325   if (chdir_down_one)
326     {
327       /* Push "old" onto the ring.
328          If the displaced file descriptor is non-negative, close it.  */
329       int prev_fd_in_slot = i_ring_push (&sp->fts_fd_ring, old);
330       fd_ring_print (sp, stderr, "post-push");
331       if (0 <= prev_fd_in_slot)
332         close (prev_fd_in_slot); /* ignore any close failure */
333     }
334   else if ( ! ISSET (FTS_NOCHDIR))
335     {
336       if (0 <= old)
337         close (old); /* ignore any close failure */
338     }
339
340   sp->fts_cwd_fd = fd;
341 }
342
343 /* Open the directory DIR if possible, and return a file
344    descriptor.  Return -1 and set errno on failure.  It doesn't matter
345    whether the file descriptor has read or write access.  */
346
347 static inline int
348 internal_function
349 diropen (FTS const *sp, char const *dir)
350 {
351   int open_flags = (O_SEARCH | O_DIRECTORY | O_NOCTTY | O_NONBLOCK
352                     | (ISSET (FTS_PHYSICAL) ? O_NOFOLLOW : 0)
353                     | (ISSET (FTS_NOATIME) ? O_NOATIME : 0));
354
355   int fd = (ISSET (FTS_CWDFD)
356             ? openat (sp->fts_cwd_fd, dir, open_flags)
357             : open (dir, open_flags));
358   if (0 <= fd)
359     set_cloexec_flag (fd, true);
360   return fd;
361 }
362
363 FTS *
364 fts_open (char * const *argv,
365           register int options,
366           int (*compar) (FTSENT const **, FTSENT const **))
367 {
368         register FTS *sp;
369         register FTSENT *p, *root;
370         register size_t nitems;
371         FTSENT *parent = NULL;
372         FTSENT *tmp = NULL;     /* pacify gcc */
373         bool defer_stat;
374
375         /* Options check. */
376         if (options & ~FTS_OPTIONMASK) {
377                 __set_errno (EINVAL);
378                 return (NULL);
379         }
380         if ((options & FTS_NOCHDIR) && (options & FTS_CWDFD)) {
381                 __set_errno (EINVAL);
382                 return (NULL);
383         }
384         if ( ! (options & (FTS_LOGICAL | FTS_PHYSICAL))) {
385                 __set_errno (EINVAL);
386                 return (NULL);
387         }
388
389         /* Allocate/initialize the stream */
390         if ((sp = malloc(sizeof(FTS))) == NULL)
391                 return (NULL);
392         memset(sp, 0, sizeof(FTS));
393         sp->fts_compar = compar;
394         sp->fts_options = options;
395
396         /* Logical walks turn on NOCHDIR; symbolic links are too hard. */
397         if (ISSET(FTS_LOGICAL)) {
398                 SET(FTS_NOCHDIR);
399                 CLR(FTS_CWDFD);
400         }
401
402         /* Initialize fts_cwd_fd.  */
403         sp->fts_cwd_fd = AT_FDCWD;
404         if ( ISSET(FTS_CWDFD) && ! HAVE_OPENAT_SUPPORT)
405           {
406             /* While it isn't technically necessary to open "." this
407                early, doing it here saves us the trouble of ensuring
408                later (where it'd be messier) that "." can in fact
409                be opened.  If not, revert to FTS_NOCHDIR mode.  */
410             int fd = open (".",
411                            O_SEARCH | (ISSET (FTS_NOATIME) ? O_NOATIME : 0));
412             if (fd < 0)
413               {
414                 /* Even if `.' is unreadable, don't revert to FTS_NOCHDIR mode
415                    on systems like Linux+PROC_FS, where our openat emulation
416                    is good enough.  Note: on a system that emulates
417                    openat via /proc, this technique can still fail, but
418                    only in extreme conditions, e.g., when the working
419                    directory cannot be saved (i.e. save_cwd fails) --
420                    and that happens on Linux only when "." is unreadable
421                    and the CWD would be longer than PATH_MAX.
422                    FIXME: once Linux kernel openat support is well established,
423                    replace the above open call and this entire if/else block
424                    with the body of the if-block below.  */
425                 if ( openat_needs_fchdir ())
426                   {
427                     SET(FTS_NOCHDIR);
428                     CLR(FTS_CWDFD);
429                   }
430               }
431             else
432               {
433                 close (fd);
434               }
435           }
436
437         /*
438          * Start out with 1K of file name space, and enough, in any case,
439          * to hold the user's file names.
440          */
441 #ifndef MAXPATHLEN
442 # define MAXPATHLEN 1024
443 #endif
444         {
445           size_t maxarglen = fts_maxarglen(argv);
446           if (! fts_palloc(sp, MAX(maxarglen, MAXPATHLEN)))
447                   goto mem1;
448         }
449
450         /* Allocate/initialize root's parent. */
451         if (*argv != NULL) {
452                 if ((parent = fts_alloc(sp, "", 0)) == NULL)
453                         goto mem2;
454                 parent->fts_level = FTS_ROOTPARENTLEVEL;
455           }
456
457         /* The classic fts implementation would call fts_stat with
458            a new entry for each iteration of the loop below.
459            If the comparison function is not specified or if the
460            FTS_DEFER_STAT option is in effect, don't stat any entry
461            in this loop.  This is an attempt to minimize the interval
462            between the initial stat/lstat/fstatat and the point at which
463            a directory argument is first opened.  This matters for any
464            directory command line argument that resides on a file system
465            without genuine i-nodes.  If you specify FTS_DEFER_STAT along
466            with a comparison function, that function must not access any
467            data via the fts_statp pointer.  */
468         defer_stat = (compar == NULL || ISSET(FTS_DEFER_STAT));
469
470         /* Allocate/initialize root(s). */
471         for (root = NULL, nitems = 0; *argv != NULL; ++argv, ++nitems) {
472                 /* *Do* allow zero-length file names. */
473                 size_t len = strlen(*argv);
474                 if ((p = fts_alloc(sp, *argv, len)) == NULL)
475                         goto mem3;
476                 p->fts_level = FTS_ROOTLEVEL;
477                 p->fts_parent = parent;
478                 p->fts_accpath = p->fts_name;
479                 /* Even when defer_stat is true, be sure to stat the first
480                    command line argument, since fts_read (at least with
481                    FTS_XDEV) requires that.  */
482                 if (defer_stat && root != NULL) {
483                         p->fts_info = FTS_NSOK;
484                         fts_set_stat_required(p, true);
485                 } else {
486                         p->fts_info = fts_stat(sp, p, false);
487                 }
488
489                 /*
490                  * If comparison routine supplied, traverse in sorted
491                  * order; otherwise traverse in the order specified.
492                  */
493                 if (compar) {
494                         p->fts_link = root;
495                         root = p;
496                 } else {
497                         p->fts_link = NULL;
498                         if (root == NULL)
499                                 tmp = root = p;
500                         else {
501                                 tmp->fts_link = p;
502                                 tmp = p;
503                         }
504                 }
505         }
506         if (compar && nitems > 1)
507                 root = fts_sort(sp, root, nitems);
508
509         /*
510          * Allocate a dummy pointer and make fts_read think that we've just
511          * finished the node before the root(s); set p->fts_info to FTS_INIT
512          * so that everything about the "current" node is ignored.
513          */
514         if ((sp->fts_cur = fts_alloc(sp, "", 0)) == NULL)
515                 goto mem3;
516         sp->fts_cur->fts_link = root;
517         sp->fts_cur->fts_info = FTS_INIT;
518         if (! setup_dir (sp))
519                 goto mem3;
520
521         /*
522          * If using chdir(2), grab a file descriptor pointing to dot to ensure
523          * that we can get back here; this could be avoided for some file names,
524          * but almost certainly not worth the effort.  Slashes, symbolic links,
525          * and ".." are all fairly nasty problems.  Note, if we can't get the
526          * descriptor we run anyway, just more slowly.
527          */
528         if (!ISSET(FTS_NOCHDIR) && !ISSET(FTS_CWDFD)
529             && (sp->fts_rfd = diropen (sp, ".")) < 0)
530                 SET(FTS_NOCHDIR);
531
532         i_ring_init (&sp->fts_fd_ring, -1);
533         return (sp);
534
535 mem3:   fts_lfree(root);
536         free(parent);
537 mem2:   free(sp->fts_path);
538 mem1:   free(sp);
539         return (NULL);
540 }
541
542 static void
543 internal_function
544 fts_load (FTS *sp, register FTSENT *p)
545 {
546         register size_t len;
547         register char *cp;
548
549         /*
550          * Load the stream structure for the next traversal.  Since we don't
551          * actually enter the directory until after the preorder visit, set
552          * the fts_accpath field specially so the chdir gets done to the right
553          * place and the user can access the first node.  From fts_open it's
554          * known that the file name will fit.
555          */
556         len = p->fts_pathlen = p->fts_namelen;
557         memmove(sp->fts_path, p->fts_name, len + 1);
558         if ((cp = strrchr(p->fts_name, '/')) && (cp != p->fts_name || cp[1])) {
559                 len = strlen(++cp);
560                 memmove(p->fts_name, cp, len + 1);
561                 p->fts_namelen = len;
562         }
563         p->fts_accpath = p->fts_path = sp->fts_path;
564 }
565
566 int
567 fts_close (FTS *sp)
568 {
569         register FTSENT *freep, *p;
570         int saved_errno = 0;
571
572         /*
573          * This still works if we haven't read anything -- the dummy structure
574          * points to the root list, so we step through to the end of the root
575          * list which has a valid parent pointer.
576          */
577         if (sp->fts_cur) {
578                 for (p = sp->fts_cur; p->fts_level >= FTS_ROOTLEVEL;) {
579                         freep = p;
580                         p = p->fts_link != NULL ? p->fts_link : p->fts_parent;
581                         free(freep);
582                 }
583                 free(p);
584         }
585
586         /* Free up child linked list, sort array, file name buffer. */
587         if (sp->fts_child)
588                 fts_lfree(sp->fts_child);
589         free(sp->fts_array);
590         free(sp->fts_path);
591
592         if (ISSET(FTS_CWDFD))
593           {
594             if (0 <= sp->fts_cwd_fd)
595               if (close (sp->fts_cwd_fd))
596                 saved_errno = errno;
597           }
598         else if (!ISSET(FTS_NOCHDIR))
599           {
600             /* Return to original directory, save errno if necessary. */
601             if (fchdir(sp->fts_rfd))
602               saved_errno = errno;
603
604             /* If close fails, record errno only if saved_errno is zero,
605                so that we report the probably-more-meaningful fchdir errno.  */
606             if (close (sp->fts_rfd))
607               if (saved_errno == 0)
608                 saved_errno = errno;
609           }
610
611         fd_ring_clear (&sp->fts_fd_ring);
612
613         if (sp->fts_leaf_optimization_works_ht)
614           hash_free (sp->fts_leaf_optimization_works_ht);
615
616         free_dir (sp);
617
618         /* Free up the stream pointer. */
619         free(sp);
620
621         /* Set errno and return. */
622         if (saved_errno) {
623                 __set_errno (saved_errno);
624                 return (-1);
625         }
626
627         return (0);
628 }
629
630 #if defined __linux__ \
631   && HAVE_SYS_VFS_H && HAVE_FSTATFS && HAVE_STRUCT_STATFS_F_TYPE
632
633 # include <sys/vfs.h>
634
635 /* Linux-specific constants from coreutils' src/fs.h */
636 # define S_MAGIC_TMPFS 0x1021994
637 # define S_MAGIC_NFS 0x6969
638 # define S_MAGIC_REISERFS 0x52654973
639 # define S_MAGIC_PROC 0x9FA0
640
641 /* Return false if it is easy to determine the file system type of
642    the directory on which DIR_FD is open, and sorting dirents on
643    inode numbers is known not to improve traversal performance with
644    that type of file system.  Otherwise, return true.  */
645 static bool
646 dirent_inode_sort_may_be_useful (int dir_fd)
647 {
648   /* Skip the sort only if we can determine efficiently
649      that skipping it is the right thing to do.
650      The cost of performing an unnecessary sort is negligible,
651      while the cost of *not* performing it can be O(N^2) with
652      a very large constant.  */
653   struct statfs fs_buf;
654
655   /* If fstatfs fails, assume sorting would be useful.  */
656   if (fstatfs (dir_fd, &fs_buf) != 0)
657     return true;
658
659   /* FIXME: what about when f_type is not an integral type?
660      deal with that if/when it's encountered.  */
661   switch (fs_buf.f_type)
662     {
663     case S_MAGIC_TMPFS:
664     case S_MAGIC_NFS:
665       /* On a file system of any of these types, sorting
666          is unnecessary, and hence wasteful.  */
667       return false;
668
669     default:
670       return true;
671     }
672 }
673
674 /* Given a file descriptor DIR_FD open on a directory D,
675    return true if it is valid to apply the leaf-optimization
676    technique of counting directories in D via stat.st_nlink.  */
677 static bool
678 leaf_optimization_applies (int dir_fd)
679 {
680   struct statfs fs_buf;
681
682   /* If fstatfs fails, assume we can't use the optimization.  */
683   if (fstatfs (dir_fd, &fs_buf) != 0)
684     return false;
685
686   /* FIXME: do we need to detect AFS mount points?  I doubt it,
687      unless fstatfs can report S_MAGIC_REISERFS for such a directory.  */
688
689   switch (fs_buf.f_type)
690     {
691       /* List here the file system types that lack useable dirent.d_type
692          info, yet for which the optimization does apply.  */
693     case S_MAGIC_REISERFS:
694       return true;
695
696     case S_MAGIC_PROC:
697       /* Explicitly listing this or any other file system type for which
698          the optimization is not applicable is not necessary, but we leave
699          it here to document the risk.  Per http://bugs.debian.org/143111,
700          /proc may have bogus stat.st_nlink values.  */
701       /* fall through */
702     default:
703       return false;
704     }
705 }
706
707 #else
708 static bool
709 dirent_inode_sort_may_be_useful (int dir_fd _GL_UNUSED) { return true; }
710 static bool
711 leaf_optimization_applies (int dir_fd _GL_UNUSED) { return false; }
712 #endif
713
714 /* link-count-optimization entry:
715    map a stat.st_dev number to a boolean: leaf_optimization_works */
716 struct LCO_ent
717 {
718   dev_t st_dev;
719   bool opt_ok;
720 };
721
722 /* Use a tiny initial size.  If a traversal encounters more than
723    a few devices, the cost of growing/rehashing this table will be
724    rendered negligible by the number of inodes processed.  */
725 enum { LCO_HT_INITIAL_SIZE = 13 };
726
727 static size_t
728 LCO_hash (void const *x, size_t table_size)
729 {
730   struct LCO_ent const *ax = x;
731   return (uintmax_t) ax->st_dev % table_size;
732 }
733
734 static bool
735 LCO_compare (void const *x, void const *y)
736 {
737   struct LCO_ent const *ax = x;
738   struct LCO_ent const *ay = y;
739   return ax->st_dev == ay->st_dev;
740 }
741
742 /* Ask the same question as leaf_optimization_applies, but query
743    the cache first (FTS.fts_leaf_optimization_works_ht), and if necessary,
744    update that cache.  */
745 static bool
746 link_count_optimize_ok (FTSENT const *p)
747 {
748   FTS *sp = p->fts_fts;
749   Hash_table *h = sp->fts_leaf_optimization_works_ht;
750   struct LCO_ent tmp;
751   struct LCO_ent *ent;
752   bool opt_ok;
753   struct LCO_ent *t2;
754
755   /* If we're not in CWDFD mode, don't bother with this optimization,
756      since the caller is not serious about performance. */
757   if (!ISSET(FTS_CWDFD))
758     return false;
759
760   /* map st_dev to the boolean, leaf_optimization_works */
761   if (h == NULL)
762     {
763       h = sp->fts_leaf_optimization_works_ht
764         = hash_initialize (LCO_HT_INITIAL_SIZE, NULL, LCO_hash,
765                            LCO_compare, free);
766       if (h == NULL)
767         return false;
768     }
769   tmp.st_dev = p->fts_statp->st_dev;
770   ent = hash_lookup (h, &tmp);
771   if (ent)
772     return ent->opt_ok;
773
774   /* Look-up failed.  Query directly and cache the result.  */
775   t2 = malloc (sizeof *t2);
776   if (t2 == NULL)
777     return false;
778
779   /* Is it ok to perform the optimization in the dir, FTS_CWD_FD?  */
780   opt_ok = leaf_optimization_applies (sp->fts_cwd_fd);
781   t2->opt_ok = opt_ok;
782   t2->st_dev = p->fts_statp->st_dev;
783
784   ent = hash_insert (h, t2);
785   if (ent == NULL)
786     {
787       /* insertion failed */
788       free (t2);
789       return false;
790     }
791   fts_assert (ent == t2);
792
793   return opt_ok;
794 }
795
796 /*
797  * Special case of "/" at the end of the file name so that slashes aren't
798  * appended which would cause file names to be written as "....//foo".
799  */
800 #define NAPPEND(p)                                                      \
801         (p->fts_path[p->fts_pathlen - 1] == '/'                         \
802             ? p->fts_pathlen - 1 : p->fts_pathlen)
803
804 FTSENT *
805 fts_read (register FTS *sp)
806 {
807         register FTSENT *p, *tmp;
808         register unsigned short int instr;
809         register char *t;
810
811         /* If finished or unrecoverable error, return NULL. */
812         if (sp->fts_cur == NULL || ISSET(FTS_STOP))
813                 return (NULL);
814
815         /* Set current node pointer. */
816         p = sp->fts_cur;
817
818         /* Save and zero out user instructions. */
819         instr = p->fts_instr;
820         p->fts_instr = FTS_NOINSTR;
821
822         /* Any type of file may be re-visited; re-stat and re-turn. */
823         if (instr == FTS_AGAIN) {
824                 p->fts_info = fts_stat(sp, p, false);
825                 return (p);
826         }
827         Dprintf (("fts_read: p=%s\n",
828                   p->fts_info == FTS_INIT ? "" : p->fts_path));
829
830         /*
831          * Following a symlink -- SLNONE test allows application to see
832          * SLNONE and recover.  If indirecting through a symlink, have
833          * keep a pointer to current location.  If unable to get that
834          * pointer, follow fails.
835          */
836         if (instr == FTS_FOLLOW &&
837             (p->fts_info == FTS_SL || p->fts_info == FTS_SLNONE)) {
838                 p->fts_info = fts_stat(sp, p, true);
839                 if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR)) {
840                         if ((p->fts_symfd = diropen (sp, ".")) < 0) {
841                                 p->fts_errno = errno;
842                                 p->fts_info = FTS_ERR;
843                         } else
844                                 p->fts_flags |= FTS_SYMFOLLOW;
845                 }
846                 goto check_for_dir;
847         }
848
849         /* Directory in pre-order. */
850         if (p->fts_info == FTS_D) {
851                 /* If skipped or crossed mount point, do post-order visit. */
852                 if (instr == FTS_SKIP ||
853                     (ISSET(FTS_XDEV) && p->fts_statp->st_dev != sp->fts_dev)) {
854                         if (p->fts_flags & FTS_SYMFOLLOW)
855                                 (void)close(p->fts_symfd);
856                         if (sp->fts_child) {
857                                 fts_lfree(sp->fts_child);
858                                 sp->fts_child = NULL;
859                         }
860                         p->fts_info = FTS_DP;
861                         LEAVE_DIR (sp, p, "1");
862                         return (p);
863                 }
864
865                 /* Rebuild if only read the names and now traversing. */
866                 if (sp->fts_child != NULL && ISSET(FTS_NAMEONLY)) {
867                         CLR(FTS_NAMEONLY);
868                         fts_lfree(sp->fts_child);
869                         sp->fts_child = NULL;
870                 }
871
872                 /*
873                  * Cd to the subdirectory.
874                  *
875                  * If have already read and now fail to chdir, whack the list
876                  * to make the names come out right, and set the parent errno
877                  * so the application will eventually get an error condition.
878                  * Set the FTS_DONTCHDIR flag so that when we logically change
879                  * directories back to the parent we don't do a chdir.
880                  *
881                  * If haven't read do so.  If the read fails, fts_build sets
882                  * FTS_STOP or the fts_info field of the node.
883                  */
884                 if (sp->fts_child != NULL) {
885                         if (fts_safe_changedir(sp, p, -1, p->fts_accpath)) {
886                                 p->fts_errno = errno;
887                                 p->fts_flags |= FTS_DONTCHDIR;
888                                 for (p = sp->fts_child; p != NULL;
889                                      p = p->fts_link)
890                                         p->fts_accpath =
891                                             p->fts_parent->fts_accpath;
892                         }
893                 } else if ((sp->fts_child = fts_build(sp, BREAD)) == NULL) {
894                         if (ISSET(FTS_STOP))
895                                 return (NULL);
896                         /* If fts_build's call to fts_safe_changedir failed
897                            because it was not able to fchdir into a
898                            subdirectory, tell the caller.  */
899                         if (p->fts_errno && p->fts_info != FTS_DNR)
900                                 p->fts_info = FTS_ERR;
901                         LEAVE_DIR (sp, p, "2");
902                         return (p);
903                 }
904                 p = sp->fts_child;
905                 sp->fts_child = NULL;
906                 goto name;
907         }
908
909         /* Move to the next node on this level. */
910 next:   tmp = p;
911         if ((p = p->fts_link) != NULL) {
912                 sp->fts_cur = p;
913                 free(tmp);
914
915                 /*
916                  * If reached the top, return to the original directory (or
917                  * the root of the tree), and load the file names for the next
918                  * root.
919                  */
920                 if (p->fts_level == FTS_ROOTLEVEL) {
921                         if (RESTORE_INITIAL_CWD(sp)) {
922                                 SET(FTS_STOP);
923                                 return (NULL);
924                         }
925                         free_dir(sp);
926                         fts_load(sp, p);
927                         setup_dir(sp);
928                         goto check_for_dir;
929                 }
930
931                 /*
932                  * User may have called fts_set on the node.  If skipped,
933                  * ignore.  If followed, get a file descriptor so we can
934                  * get back if necessary.
935                  */
936                 if (p->fts_instr == FTS_SKIP)
937                         goto next;
938                 if (p->fts_instr == FTS_FOLLOW) {
939                         p->fts_info = fts_stat(sp, p, true);
940                         if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR)) {
941                                 if ((p->fts_symfd = diropen (sp, ".")) < 0) {
942                                         p->fts_errno = errno;
943                                         p->fts_info = FTS_ERR;
944                                 } else
945                                         p->fts_flags |= FTS_SYMFOLLOW;
946                         }
947                         p->fts_instr = FTS_NOINSTR;
948                 }
949
950 name:           t = sp->fts_path + NAPPEND(p->fts_parent);
951                 *t++ = '/';
952                 memmove(t, p->fts_name, p->fts_namelen + 1);
953 check_for_dir:
954                 sp->fts_cur = p;
955                 if (p->fts_info == FTS_NSOK)
956                   {
957                     if (p->fts_statp->st_size == FTS_STAT_REQUIRED)
958                       {
959                         FTSENT *parent = p->fts_parent;
960                         if (FTS_ROOTLEVEL < p->fts_level
961                             /* ->fts_n_dirs_remaining is not valid
962                                for command-line-specified names.  */
963                             && parent->fts_n_dirs_remaining == 0
964                             && ISSET(FTS_NOSTAT)
965                             && ISSET(FTS_PHYSICAL)
966                             && link_count_optimize_ok (parent))
967                           {
968                             /* nothing more needed */
969                           }
970                         else
971                           {
972                             p->fts_info = fts_stat(sp, p, false);
973                             if (S_ISDIR(p->fts_statp->st_mode)
974                                 && p->fts_level != FTS_ROOTLEVEL
975                                 && parent->fts_n_dirs_remaining)
976                                   parent->fts_n_dirs_remaining--;
977                           }
978                       }
979                     else
980                       fts_assert (p->fts_statp->st_size == FTS_NO_STAT_REQUIRED);
981                   }
982
983                 if (p->fts_info == FTS_D)
984                   {
985                     /* Now that P->fts_statp is guaranteed to be valid,
986                        if this is a command-line directory, record its
987                        device number, to be used for FTS_XDEV.  */
988                     if (p->fts_level == FTS_ROOTLEVEL)
989                       sp->fts_dev = p->fts_statp->st_dev;
990                     Dprintf (("  entering: %s\n", p->fts_path));
991                     if (! enter_dir (sp, p))
992                       {
993                         __set_errno (ENOMEM);
994                         return NULL;
995                       }
996                   }
997                 return p;
998         }
999
1000         /* Move up to the parent node. */
1001         p = tmp->fts_parent;
1002         sp->fts_cur = p;
1003         free(tmp);
1004
1005         if (p->fts_level == FTS_ROOTPARENTLEVEL) {
1006                 /*
1007                  * Done; free everything up and set errno to 0 so the user
1008                  * can distinguish between error and EOF.
1009                  */
1010                 free(p);
1011                 __set_errno (0);
1012                 return (sp->fts_cur = NULL);
1013         }
1014
1015         fts_assert (p->fts_info != FTS_NSOK);
1016
1017         /* NUL terminate the file name.  */
1018         sp->fts_path[p->fts_pathlen] = '\0';
1019
1020         /*
1021          * Return to the parent directory.  If at a root node, restore
1022          * the initial working directory.  If we came through a symlink,
1023          * go back through the file descriptor.  Otherwise, move up
1024          * one level, via "..".
1025          */
1026         if (p->fts_level == FTS_ROOTLEVEL) {
1027                 if (RESTORE_INITIAL_CWD(sp)) {
1028                         p->fts_errno = errno;
1029                         SET(FTS_STOP);
1030                 }
1031         } else if (p->fts_flags & FTS_SYMFOLLOW) {
1032                 if (FCHDIR(sp, p->fts_symfd)) {
1033                         int saved_errno = errno;
1034                         (void)close(p->fts_symfd);
1035                         __set_errno (saved_errno);
1036                         p->fts_errno = errno;
1037                         SET(FTS_STOP);
1038                 }
1039                 (void)close(p->fts_symfd);
1040         } else if (!(p->fts_flags & FTS_DONTCHDIR) &&
1041                    fts_safe_changedir(sp, p->fts_parent, -1, "..")) {
1042                 p->fts_errno = errno;
1043                 SET(FTS_STOP);
1044         }
1045         p->fts_info = p->fts_errno ? FTS_ERR : FTS_DP;
1046         if (p->fts_errno == 0)
1047                 LEAVE_DIR (sp, p, "3");
1048         return ISSET(FTS_STOP) ? NULL : p;
1049 }
1050
1051 /*
1052  * Fts_set takes the stream as an argument although it's not used in this
1053  * implementation; it would be necessary if anyone wanted to add global
1054  * semantics to fts using fts_set.  An error return is allowed for similar
1055  * reasons.
1056  */
1057 /* ARGSUSED */
1058 int
1059 fts_set(FTS *sp _GL_UNUSED, FTSENT *p, int instr)
1060 {
1061         if (instr != 0 && instr != FTS_AGAIN && instr != FTS_FOLLOW &&
1062             instr != FTS_NOINSTR && instr != FTS_SKIP) {
1063                 __set_errno (EINVAL);
1064                 return (1);
1065         }
1066         p->fts_instr = instr;
1067         return (0);
1068 }
1069
1070 FTSENT *
1071 fts_children (register FTS *sp, int instr)
1072 {
1073         register FTSENT *p;
1074         int fd;
1075
1076         if (instr != 0 && instr != FTS_NAMEONLY) {
1077                 __set_errno (EINVAL);
1078                 return (NULL);
1079         }
1080
1081         /* Set current node pointer. */
1082         p = sp->fts_cur;
1083
1084         /*
1085          * Errno set to 0 so user can distinguish empty directory from
1086          * an error.
1087          */
1088         __set_errno (0);
1089
1090         /* Fatal errors stop here. */
1091         if (ISSET(FTS_STOP))
1092                 return (NULL);
1093
1094         /* Return logical hierarchy of user's arguments. */
1095         if (p->fts_info == FTS_INIT)
1096                 return (p->fts_link);
1097
1098         /*
1099          * If not a directory being visited in pre-order, stop here.  Could
1100          * allow FTS_DNR, assuming the user has fixed the problem, but the
1101          * same effect is available with FTS_AGAIN.
1102          */
1103         if (p->fts_info != FTS_D /* && p->fts_info != FTS_DNR */)
1104                 return (NULL);
1105
1106         /* Free up any previous child list. */
1107         if (sp->fts_child != NULL)
1108                 fts_lfree(sp->fts_child);
1109
1110         if (instr == FTS_NAMEONLY) {
1111                 SET(FTS_NAMEONLY);
1112                 instr = BNAMES;
1113         } else
1114                 instr = BCHILD;
1115
1116         /*
1117          * If using chdir on a relative file name and called BEFORE fts_read
1118          * does its chdir to the root of a traversal, we can lose -- we need to
1119          * chdir into the subdirectory, and we don't know where the current
1120          * directory is, so we can't get back so that the upcoming chdir by
1121          * fts_read will work.
1122          */
1123         if (p->fts_level != FTS_ROOTLEVEL || p->fts_accpath[0] == '/' ||
1124             ISSET(FTS_NOCHDIR))
1125                 return (sp->fts_child = fts_build(sp, instr));
1126
1127         if ((fd = diropen (sp, ".")) < 0)
1128                 return (sp->fts_child = NULL);
1129         sp->fts_child = fts_build(sp, instr);
1130         if (ISSET(FTS_CWDFD))
1131           {
1132             cwd_advance_fd (sp, fd, true);
1133           }
1134         else
1135           {
1136             if (fchdir(fd))
1137               {
1138                 int saved_errno = errno;
1139                 close (fd);
1140                 __set_errno (saved_errno);
1141                 return NULL;
1142               }
1143             close (fd);
1144           }
1145         return (sp->fts_child);
1146 }
1147
1148 /* A comparison function to sort on increasing inode number.
1149    For some file system types, sorting either way makes a huge
1150    performance difference for a directory with very many entries,
1151    but sorting on increasing values is slightly better than sorting
1152    on decreasing values.  The difference is in the 5% range.  */
1153 static int
1154 fts_compare_ino (struct _ftsent const **a, struct _ftsent const **b)
1155 {
1156   return (a[0]->fts_statp->st_ino < b[0]->fts_statp->st_ino ? -1
1157           : b[0]->fts_statp->st_ino < a[0]->fts_statp->st_ino ? 1 : 0);
1158 }
1159
1160 /* Map the dirent.d_type value, DTYPE, to the corresponding stat.st_mode
1161    S_IF* bit and set ST.st_mode, thus clearing all other bits in that field.  */
1162 static void
1163 set_stat_type (struct stat *st, unsigned int dtype)
1164 {
1165   mode_t type;
1166   switch (dtype)
1167     {
1168     case DT_BLK:
1169       type = S_IFBLK;
1170       break;
1171     case DT_CHR:
1172       type = S_IFCHR;
1173       break;
1174     case DT_DIR:
1175       type = S_IFDIR;
1176       break;
1177     case DT_FIFO:
1178       type = S_IFIFO;
1179       break;
1180     case DT_LNK:
1181       type = S_IFLNK;
1182       break;
1183     case DT_REG:
1184       type = S_IFREG;
1185       break;
1186     case DT_SOCK:
1187       type = S_IFSOCK;
1188       break;
1189     default:
1190       type = 0;
1191     }
1192   st->st_mode = type;
1193 }
1194
1195 /*
1196  * This is the tricky part -- do not casually change *anything* in here.  The
1197  * idea is to build the linked list of entries that are used by fts_children
1198  * and fts_read.  There are lots of special cases.
1199  *
1200  * The real slowdown in walking the tree is the stat calls.  If FTS_NOSTAT is
1201  * set and it's a physical walk (so that symbolic links can't be directories),
1202  * we can do things quickly.  First, if it's a 4.4BSD file system, the type
1203  * of the file is in the directory entry.  Otherwise, we assume that the number
1204  * of subdirectories in a node is equal to the number of links to the parent.
1205  * The former skips all stat calls.  The latter skips stat calls in any leaf
1206  * directories and for any files after the subdirectories in the directory have
1207  * been found, cutting the stat calls by about 2/3.
1208  */
1209 static FTSENT *
1210 internal_function
1211 fts_build (register FTS *sp, int type)
1212 {
1213         register struct dirent *dp;
1214         register FTSENT *p, *head;
1215         register size_t nitems;
1216         FTSENT *cur, *tail;
1217         DIR *dirp;
1218         void *oldaddr;
1219         int saved_errno;
1220         bool descend;
1221         bool doadjust;
1222         ptrdiff_t level;
1223         nlink_t nlinks;
1224         bool nostat;
1225         size_t len, maxlen, new_len;
1226         char *cp;
1227         int dir_fd;
1228
1229         /* Set current node pointer. */
1230         cur = sp->fts_cur;
1231
1232         /*
1233          * Open the directory for reading.  If this fails, we're done.
1234          * If being called from fts_read, set the fts_info field.
1235          */
1236 #if defined FTS_WHITEOUT && 0
1237         if (ISSET(FTS_WHITEOUT))
1238                 oflag = DTF_NODUP|DTF_REWIND;
1239         else
1240                 oflag = DTF_HIDEW|DTF_NODUP|DTF_REWIND;
1241 #else
1242 # define __opendir2(file, flag) \
1243         opendirat((! ISSET(FTS_NOCHDIR) && ISSET(FTS_CWDFD)     \
1244                    ? sp->fts_cwd_fd : AT_FDCWD),                \
1245                   file,                                         \
1246                   (((ISSET(FTS_PHYSICAL)                        \
1247                      && ! (ISSET(FTS_COMFOLLOW)                 \
1248                            && cur->fts_level == FTS_ROOTLEVEL)) \
1249                     ? O_NOFOLLOW : 0)                           \
1250                    | (ISSET (FTS_NOATIME) ? O_NOATIME : 0)),    \
1251                   &dir_fd)
1252 #endif
1253        if ((dirp = __opendir2(cur->fts_accpath, oflag)) == NULL) {
1254                 if (type == BREAD) {
1255                         cur->fts_info = FTS_DNR;
1256                         cur->fts_errno = errno;
1257                 }
1258                 return (NULL);
1259         }
1260        /* Rather than calling fts_stat for each and every entry encountered
1261           in the readdir loop (below), stat each directory only right after
1262           opening it.  */
1263        if (cur->fts_info == FTS_NSOK)
1264          cur->fts_info = fts_stat(sp, cur, false);
1265        else if (sp->fts_options & FTS_TIGHT_CYCLE_CHECK) {
1266                 /* Now read the stat info again after opening a directory to
1267                  * reveal eventual changes caused by a submount triggered by
1268                  * the traversal.  But do it only for utilities which use
1269                  * FTS_TIGHT_CYCLE_CHECK.  Therefore, only find and du
1270                  * benefit/suffer from this feature for now.
1271                  */
1272                 LEAVE_DIR (sp, cur, "4");
1273                 fts_stat (sp, cur, false);
1274                 if (! enter_dir (sp, cur)) {
1275                          __set_errno (ENOMEM);
1276                          return NULL;
1277                 }
1278         }
1279
1280         /*
1281          * Nlinks is the number of possible entries of type directory in the
1282          * directory if we're cheating on stat calls, 0 if we're not doing
1283          * any stat calls at all, (nlink_t) -1 if we're statting everything.
1284          */
1285         if (type == BNAMES) {
1286                 nlinks = 0;
1287                 /* Be quiet about nostat, GCC. */
1288                 nostat = false;
1289         } else if (ISSET(FTS_NOSTAT) && ISSET(FTS_PHYSICAL)) {
1290                 nlinks = (cur->fts_statp->st_nlink
1291                           - (ISSET(FTS_SEEDOT) ? 0 : 2));
1292                 nostat = true;
1293         } else {
1294                 nlinks = -1;
1295                 nostat = false;
1296         }
1297
1298         /*
1299          * If we're going to need to stat anything or we want to descend
1300          * and stay in the directory, chdir.  If this fails we keep going,
1301          * but set a flag so we don't chdir after the post-order visit.
1302          * We won't be able to stat anything, but we can still return the
1303          * names themselves.  Note, that since fts_read won't be able to
1304          * chdir into the directory, it will have to return different file
1305          * names than before, i.e. "a/b" instead of "b".  Since the node
1306          * has already been visited in pre-order, have to wait until the
1307          * post-order visit to return the error.  There is a special case
1308          * here, if there was nothing to stat then it's not an error to
1309          * not be able to stat.  This is all fairly nasty.  If a program
1310          * needed sorted entries or stat information, they had better be
1311          * checking FTS_NS on the returned nodes.
1312          */
1313         if (nlinks || type == BREAD) {
1314                 if (ISSET(FTS_CWDFD))
1315                   {
1316                     dir_fd = dup (dir_fd);
1317                     if (0 <= dir_fd)
1318                       set_cloexec_flag (dir_fd, true);
1319                   }
1320                 if (dir_fd < 0 || fts_safe_changedir(sp, cur, dir_fd, NULL)) {
1321                         if (nlinks && type == BREAD)
1322                                 cur->fts_errno = errno;
1323                         cur->fts_flags |= FTS_DONTCHDIR;
1324                         descend = false;
1325                         closedir(dirp);
1326                         if (ISSET(FTS_CWDFD) && 0 <= dir_fd)
1327                                 close (dir_fd);
1328                         dirp = NULL;
1329                 } else
1330                         descend = true;
1331         } else
1332                 descend = false;
1333
1334         /*
1335          * Figure out the max file name length that can be stored in the
1336          * current buffer -- the inner loop allocates more space as necessary.
1337          * We really wouldn't have to do the maxlen calculations here, we
1338          * could do them in fts_read before returning the name, but it's a
1339          * lot easier here since the length is part of the dirent structure.
1340          *
1341          * If not changing directories set a pointer so that can just append
1342          * each new component into the file name.
1343          */
1344         len = NAPPEND(cur);
1345         if (ISSET(FTS_NOCHDIR)) {
1346                 cp = sp->fts_path + len;
1347                 *cp++ = '/';
1348         } else {
1349                 /* GCC, you're too verbose. */
1350                 cp = NULL;
1351         }
1352         len++;
1353         maxlen = sp->fts_pathlen - len;
1354
1355         level = cur->fts_level + 1;
1356
1357         /* Read the directory, attaching each entry to the `link' pointer. */
1358         doadjust = false;
1359         for (head = tail = NULL, nitems = 0; dirp && (dp = readdir(dirp));) {
1360                 bool is_dir;
1361
1362                 if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name))
1363                         continue;
1364
1365                 if ((p = fts_alloc (sp, dp->d_name,
1366                                     _D_EXACT_NAMLEN (dp))) == NULL)
1367                         goto mem1;
1368                 if (_D_EXACT_NAMLEN (dp) >= maxlen) {
1369                         /* include space for NUL */
1370                         oldaddr = sp->fts_path;
1371                         if (! fts_palloc(sp, _D_EXACT_NAMLEN (dp) + len + 1)) {
1372                                 /*
1373                                  * No more memory.  Save
1374                                  * errno, free up the current structure and the
1375                                  * structures already allocated.
1376                                  */
1377 mem1:                           saved_errno = errno;
1378                                 free(p);
1379                                 fts_lfree(head);
1380                                 closedir(dirp);
1381                                 cur->fts_info = FTS_ERR;
1382                                 SET(FTS_STOP);
1383                                 __set_errno (saved_errno);
1384                                 return (NULL);
1385                         }
1386                         /* Did realloc() change the pointer? */
1387                         if (oldaddr != sp->fts_path) {
1388                                 doadjust = true;
1389                                 if (ISSET(FTS_NOCHDIR))
1390                                         cp = sp->fts_path + len;
1391                         }
1392                         maxlen = sp->fts_pathlen - len;
1393                 }
1394
1395                 new_len = len + _D_EXACT_NAMLEN (dp);
1396                 if (new_len < len) {
1397                         /*
1398                          * In the unlikely event that we would end up
1399                          * with a file name longer than SIZE_MAX, free up
1400                          * the current structure and the structures already
1401                          * allocated, then error out with ENAMETOOLONG.
1402                          */
1403                         free(p);
1404                         fts_lfree(head);
1405                         closedir(dirp);
1406                         cur->fts_info = FTS_ERR;
1407                         SET(FTS_STOP);
1408                         __set_errno (ENAMETOOLONG);
1409                         return (NULL);
1410                 }
1411                 p->fts_level = level;
1412                 p->fts_parent = sp->fts_cur;
1413                 p->fts_pathlen = new_len;
1414
1415 #if defined FTS_WHITEOUT && 0
1416                 if (dp->d_type == DT_WHT)
1417                         p->fts_flags |= FTS_ISW;
1418 #endif
1419                 /* Store dirent.d_ino, in case we need to sort
1420                    entries before processing them.  */
1421                 p->fts_statp->st_ino = D_INO (dp);
1422
1423                 /* Build a file name for fts_stat to stat. */
1424                 if (ISSET(FTS_NOCHDIR)) {
1425                         p->fts_accpath = p->fts_path;
1426                         memmove(cp, p->fts_name, p->fts_namelen + 1);
1427                 } else
1428                         p->fts_accpath = p->fts_name;
1429
1430                 if (sp->fts_compar == NULL || ISSET(FTS_DEFER_STAT)) {
1431                         /* Record what fts_read will have to do with this
1432                            entry. In many cases, it will simply fts_stat it,
1433                            but we can take advantage of any d_type information
1434                            to optimize away the unnecessary stat calls.  I.e.,
1435                            if FTS_NOSTAT is in effect and we're not following
1436                            symlinks (FTS_PHYSICAL) and d_type indicates this
1437                            is *not* a directory, then we won't have to stat it
1438                            at all.  If it *is* a directory, then (currently)
1439                            we stat it regardless, in order to get device and
1440                            inode numbers.  Some day we might optimize that
1441                            away, too, for directories where d_ino is known to
1442                            be valid.  */
1443                         bool skip_stat = (ISSET(FTS_PHYSICAL)
1444                                           && ISSET(FTS_NOSTAT)
1445                                           && DT_IS_KNOWN(dp)
1446                                           && ! DT_MUST_BE(dp, DT_DIR));
1447                         p->fts_info = FTS_NSOK;
1448                         /* Propagate dirent.d_type information back
1449                            to caller, when possible.  */
1450                         set_stat_type (p->fts_statp, D_TYPE (dp));
1451                         fts_set_stat_required(p, !skip_stat);
1452                         is_dir = (ISSET(FTS_PHYSICAL)
1453                                   && DT_MUST_BE(dp, DT_DIR));
1454                 } else {
1455                         p->fts_info = fts_stat(sp, p, false);
1456                         is_dir = (p->fts_info == FTS_D
1457                                   || p->fts_info == FTS_DC
1458                                   || p->fts_info == FTS_DOT);
1459                 }
1460
1461                 /* Decrement link count if applicable. */
1462                 if (nlinks > 0 && is_dir)
1463                         nlinks -= nostat;
1464
1465                 /* We walk in directory order so "ls -f" doesn't get upset. */
1466                 p->fts_link = NULL;
1467                 if (head == NULL)
1468                         head = tail = p;
1469                 else {
1470                         tail->fts_link = p;
1471                         tail = p;
1472                 }
1473                 ++nitems;
1474         }
1475         if (dirp)
1476                 closedir(dirp);
1477
1478         /*
1479          * If realloc() changed the address of the file name, adjust the
1480          * addresses for the rest of the tree and the dir list.
1481          */
1482         if (doadjust)
1483                 fts_padjust(sp, head);
1484
1485         /*
1486          * If not changing directories, reset the file name back to original
1487          * state.
1488          */
1489         if (ISSET(FTS_NOCHDIR)) {
1490                 if (len == sp->fts_pathlen || nitems == 0)
1491                         --cp;
1492                 *cp = '\0';
1493         }
1494
1495         /*
1496          * If descended after called from fts_children or after called from
1497          * fts_read and nothing found, get back.  At the root level we use
1498          * the saved fd; if one of fts_open()'s arguments is a relative name
1499          * to an empty directory, we wind up here with no other way back.  If
1500          * can't get back, we're done.
1501          */
1502         if (descend && (type == BCHILD || !nitems) &&
1503             (cur->fts_level == FTS_ROOTLEVEL
1504              ? RESTORE_INITIAL_CWD(sp)
1505              : fts_safe_changedir(sp, cur->fts_parent, -1, ".."))) {
1506                 cur->fts_info = FTS_ERR;
1507                 SET(FTS_STOP);
1508                 fts_lfree(head);
1509                 return (NULL);
1510         }
1511
1512         /* If didn't find anything, return NULL. */
1513         if (!nitems) {
1514                 if (type == BREAD)
1515                         cur->fts_info = FTS_DP;
1516                 fts_lfree(head);
1517                 return (NULL);
1518         }
1519
1520         /* If there are many entries, no sorting function has been specified,
1521            and this file system is of a type that may be slow with a large
1522            number of entries, then sort the directory entries on increasing
1523            inode numbers.  */
1524         if (nitems > _FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD
1525             && !sp->fts_compar
1526             && ISSET (FTS_CWDFD)
1527             && dirent_inode_sort_may_be_useful (sp->fts_cwd_fd)) {
1528                 sp->fts_compar = fts_compare_ino;
1529                 head = fts_sort (sp, head, nitems);
1530                 sp->fts_compar = NULL;
1531         }
1532
1533         /* Sort the entries. */
1534         if (sp->fts_compar && nitems > 1)
1535                 head = fts_sort(sp, head, nitems);
1536         return (head);
1537 }
1538
1539 #if FTS_DEBUG
1540
1541 /* Walk ->fts_parent links starting at E_CURR, until the root of the
1542    current hierarchy.  There should be a directory with dev/inode
1543    matching those of AD.  If not, print a lot of diagnostics.  */
1544 static void
1545 find_matching_ancestor (FTSENT const *e_curr, struct Active_dir const *ad)
1546 {
1547   FTSENT const *ent;
1548   for (ent = e_curr; ent->fts_level >= FTS_ROOTLEVEL; ent = ent->fts_parent)
1549     {
1550       if (ad->ino == ent->fts_statp->st_ino
1551           && ad->dev == ent->fts_statp->st_dev)
1552         return;
1553     }
1554   printf ("ERROR: tree dir, %s, not active\n", ad->fts_ent->fts_accpath);
1555   printf ("active dirs:\n");
1556   for (ent = e_curr;
1557        ent->fts_level >= FTS_ROOTLEVEL; ent = ent->fts_parent)
1558     printf ("  %s(%"PRIuMAX"/%"PRIuMAX") to %s(%"PRIuMAX"/%"PRIuMAX")...\n",
1559             ad->fts_ent->fts_accpath,
1560             (uintmax_t) ad->dev,
1561             (uintmax_t) ad->ino,
1562             ent->fts_accpath,
1563             (uintmax_t) ent->fts_statp->st_dev,
1564             (uintmax_t) ent->fts_statp->st_ino);
1565 }
1566
1567 void
1568 fts_cross_check (FTS const *sp)
1569 {
1570   FTSENT const *ent = sp->fts_cur;
1571   FTSENT const *t;
1572   if ( ! ISSET (FTS_TIGHT_CYCLE_CHECK))
1573     return;
1574
1575   Dprintf (("fts-cross-check cur=%s\n", ent->fts_path));
1576   /* Make sure every parent dir is in the tree.  */
1577   for (t = ent->fts_parent; t->fts_level >= FTS_ROOTLEVEL; t = t->fts_parent)
1578     {
1579       struct Active_dir ad;
1580       ad.ino = t->fts_statp->st_ino;
1581       ad.dev = t->fts_statp->st_dev;
1582       if ( ! hash_lookup (sp->fts_cycle.ht, &ad))
1583         printf ("ERROR: active dir, %s, not in tree\n", t->fts_path);
1584     }
1585
1586   /* Make sure every dir in the tree is an active dir.
1587      But ENT is not necessarily a directory.  If so, just skip this part. */
1588   if (ent->fts_parent->fts_level >= FTS_ROOTLEVEL
1589       && (ent->fts_info == FTS_DP
1590           || ent->fts_info == FTS_D))
1591     {
1592       struct Active_dir *ad;
1593       for (ad = hash_get_first (sp->fts_cycle.ht); ad != NULL;
1594            ad = hash_get_next (sp->fts_cycle.ht, ad))
1595         {
1596           find_matching_ancestor (ent, ad);
1597         }
1598     }
1599 }
1600
1601 static bool
1602 same_fd (int fd1, int fd2)
1603 {
1604   struct stat sb1, sb2;
1605   return (fstat (fd1, &sb1) == 0
1606           && fstat (fd2, &sb2) == 0
1607           && SAME_INODE (sb1, sb2));
1608 }
1609
1610 static void
1611 fd_ring_print (FTS const *sp, FILE *stream, char const *msg)
1612 {
1613   I_ring const *fd_ring = &sp->fts_fd_ring;
1614   unsigned int i = fd_ring->fts_front;
1615   char *cwd = getcwdat (sp->fts_cwd_fd, NULL, 0);
1616   fprintf (stream, "=== %s ========== %s\n", msg, cwd);
1617   free (cwd);
1618   if (i_ring_empty (fd_ring))
1619     return;
1620
1621   while (true)
1622     {
1623       int fd = fd_ring->fts_fd_ring[i];
1624       if (fd < 0)
1625         fprintf (stream, "%d: %d:\n", i, fd);
1626       else
1627         {
1628           char *wd = getcwdat (fd, NULL, 0);
1629           fprintf (stream, "%d: %d: %s\n", i, fd, wd);
1630           free (wd);
1631         }
1632       if (i == fd_ring->fts_back)
1633         break;
1634       i = (i + I_RING_SIZE - 1) % I_RING_SIZE;
1635     }
1636 }
1637
1638 /* Ensure that each file descriptor on the fd_ring matches a
1639    parent, grandparent, etc. of the current working directory.  */
1640 static void
1641 fd_ring_check (FTS const *sp)
1642 {
1643   if (!fts_debug)
1644     return;
1645
1646   /* Make a writable copy.  */
1647   I_ring fd_w = sp->fts_fd_ring;
1648
1649   int cwd_fd = sp->fts_cwd_fd;
1650   cwd_fd = dup (cwd_fd);
1651   char *dot = getcwdat (cwd_fd, NULL, 0);
1652   error (0, 0, "===== check ===== cwd: %s", dot);
1653   free (dot);
1654   while ( ! i_ring_empty (&fd_w))
1655     {
1656       int fd = i_ring_pop (&fd_w);
1657       if (0 <= fd)
1658         {
1659           int parent_fd = openat (cwd_fd, "..", O_SEARCH | O_NOATIME);
1660           if (parent_fd < 0)
1661             {
1662               // Warn?
1663               break;
1664             }
1665           if (!same_fd (fd, parent_fd))
1666             {
1667               char *cwd = getcwdat (fd, NULL, 0);
1668               error (0, errno, "ring  : %s", cwd);
1669               char *c2 = getcwdat (parent_fd, NULL, 0);
1670               error (0, errno, "parent: %s", c2);
1671               free (cwd);
1672               free (c2);
1673               fts_assert (0);
1674             }
1675           close (cwd_fd);
1676           cwd_fd = parent_fd;
1677         }
1678     }
1679   close (cwd_fd);
1680 }
1681 #endif
1682
1683 static unsigned short int
1684 internal_function
1685 fts_stat(FTS *sp, register FTSENT *p, bool follow)
1686 {
1687         struct stat *sbp = p->fts_statp;
1688         int saved_errno;
1689
1690         if (p->fts_level == FTS_ROOTLEVEL && ISSET(FTS_COMFOLLOW))
1691                 follow = true;
1692
1693 #if defined FTS_WHITEOUT && 0
1694         /* check for whiteout */
1695         if (p->fts_flags & FTS_ISW) {
1696                 memset(sbp, '\0', sizeof (*sbp));
1697                 sbp->st_mode = S_IFWHT;
1698                 return (FTS_W);
1699        }
1700 #endif
1701
1702         /*
1703          * If doing a logical walk, or application requested FTS_FOLLOW, do
1704          * a stat(2).  If that fails, check for a non-existent symlink.  If
1705          * fail, set the errno from the stat call.
1706          */
1707         if (ISSET(FTS_LOGICAL) || follow) {
1708                 if (stat(p->fts_accpath, sbp)) {
1709                         saved_errno = errno;
1710                         if (errno == ENOENT
1711                             && lstat(p->fts_accpath, sbp) == 0) {
1712                                 __set_errno (0);
1713                                 return (FTS_SLNONE);
1714                         }
1715                         p->fts_errno = saved_errno;
1716                         goto err;
1717                 }
1718         } else if (fstatat(sp->fts_cwd_fd, p->fts_accpath, sbp,
1719                            AT_SYMLINK_NOFOLLOW)) {
1720                 p->fts_errno = errno;
1721 err:            memset(sbp, 0, sizeof(struct stat));
1722                 return (FTS_NS);
1723         }
1724
1725         if (S_ISDIR(sbp->st_mode)) {
1726                 p->fts_n_dirs_remaining = (sbp->st_nlink
1727                                            - (ISSET(FTS_SEEDOT) ? 0 : 2));
1728                 if (ISDOT(p->fts_name)) {
1729                         /* Command-line "." and ".." are real directories. */
1730                         return (p->fts_level == FTS_ROOTLEVEL ? FTS_D : FTS_DOT);
1731                 }
1732
1733                 return (FTS_D);
1734         }
1735         if (S_ISLNK(sbp->st_mode))
1736                 return (FTS_SL);
1737         if (S_ISREG(sbp->st_mode))
1738                 return (FTS_F);
1739         return (FTS_DEFAULT);
1740 }
1741
1742 static int
1743 fts_compar (void const *a, void const *b)
1744 {
1745   /* Convert A and B to the correct types, to pacify the compiler, and
1746      for portability to bizarre hosts where "void const *" and "FTSENT
1747      const **" differ in runtime representation.  The comparison
1748      function cannot modify *a and *b, but there is no compile-time
1749      check for this.  */
1750   FTSENT const **pa = (FTSENT const **) a;
1751   FTSENT const **pb = (FTSENT const **) b;
1752   return pa[0]->fts_fts->fts_compar (pa, pb);
1753 }
1754
1755 static FTSENT *
1756 internal_function
1757 fts_sort (FTS *sp, FTSENT *head, register size_t nitems)
1758 {
1759         register FTSENT **ap, *p;
1760
1761         /* On most modern hosts, void * and FTSENT ** have the same
1762            run-time representation, and one can convert sp->fts_compar to
1763            the type qsort expects without problem.  Use the heuristic that
1764            this is OK if the two pointer types are the same size, and if
1765            converting FTSENT ** to long int is the same as converting
1766            FTSENT ** to void * and then to long int.  This heuristic isn't
1767            valid in general but we don't know of any counterexamples.  */
1768         FTSENT *dummy;
1769         int (*compare) (void const *, void const *) =
1770           ((sizeof &dummy == sizeof (void *)
1771             && (long int) &dummy == (long int) (void *) &dummy)
1772            ? (int (*) (void const *, void const *)) sp->fts_compar
1773            : fts_compar);
1774
1775         /*
1776          * Construct an array of pointers to the structures and call qsort(3).
1777          * Reassemble the array in the order returned by qsort.  If unable to
1778          * sort for memory reasons, return the directory entries in their
1779          * current order.  Allocate enough space for the current needs plus
1780          * 40 so don't realloc one entry at a time.
1781          */
1782         if (nitems > sp->fts_nitems) {
1783                 FTSENT **a;
1784
1785                 sp->fts_nitems = nitems + 40;
1786                 if (SIZE_MAX / sizeof *a < sp->fts_nitems
1787                     || ! (a = realloc (sp->fts_array,
1788                                        sp->fts_nitems * sizeof *a))) {
1789                         free(sp->fts_array);
1790                         sp->fts_array = NULL;
1791                         sp->fts_nitems = 0;
1792                         return (head);
1793                 }
1794                 sp->fts_array = a;
1795         }
1796         for (ap = sp->fts_array, p = head; p; p = p->fts_link)
1797                 *ap++ = p;
1798         qsort((void *)sp->fts_array, nitems, sizeof(FTSENT *), compare);
1799         for (head = *(ap = sp->fts_array); --nitems; ++ap)
1800                 ap[0]->fts_link = ap[1];
1801         ap[0]->fts_link = NULL;
1802         return (head);
1803 }
1804
1805 static FTSENT *
1806 internal_function
1807 fts_alloc (FTS *sp, const char *name, register size_t namelen)
1808 {
1809         register FTSENT *p;
1810         size_t len;
1811
1812         /*
1813          * The file name is a variable length array.  Allocate the FTSENT
1814          * structure and the file name in one chunk.
1815          */
1816         len = sizeof(FTSENT) + namelen;
1817         if ((p = malloc(len)) == NULL)
1818                 return (NULL);
1819
1820         /* Copy the name and guarantee NUL termination. */
1821         memmove(p->fts_name, name, namelen);
1822         p->fts_name[namelen] = '\0';
1823
1824         p->fts_namelen = namelen;
1825         p->fts_fts = sp;
1826         p->fts_path = sp->fts_path;
1827         p->fts_errno = 0;
1828         p->fts_flags = 0;
1829         p->fts_instr = FTS_NOINSTR;
1830         p->fts_number = 0;
1831         p->fts_pointer = NULL;
1832         return (p);
1833 }
1834
1835 static void
1836 internal_function
1837 fts_lfree (register FTSENT *head)
1838 {
1839         register FTSENT *p;
1840
1841         /* Free a linked list of structures. */
1842         while ((p = head)) {
1843                 head = head->fts_link;
1844                 free(p);
1845         }
1846 }
1847
1848 /*
1849  * Allow essentially unlimited file name lengths; find, rm, ls should
1850  * all work on any tree.  Most systems will allow creation of file
1851  * names much longer than MAXPATHLEN, even though the kernel won't
1852  * resolve them.  Add the size (not just what's needed) plus 256 bytes
1853  * so don't realloc the file name 2 bytes at a time.
1854  */
1855 static bool
1856 internal_function
1857 fts_palloc (FTS *sp, size_t more)
1858 {
1859         char *p;
1860         size_t new_len = sp->fts_pathlen + more + 256;
1861
1862         /*
1863          * See if fts_pathlen would overflow.
1864          */
1865         if (new_len < sp->fts_pathlen) {
1866                 free(sp->fts_path);
1867                 sp->fts_path = NULL;
1868                 __set_errno (ENAMETOOLONG);
1869                 return false;
1870         }
1871         sp->fts_pathlen = new_len;
1872         p = realloc(sp->fts_path, sp->fts_pathlen);
1873         if (p == NULL) {
1874                 free(sp->fts_path);
1875                 sp->fts_path = NULL;
1876                 return false;
1877         }
1878         sp->fts_path = p;
1879         return true;
1880 }
1881
1882 /*
1883  * When the file name is realloc'd, have to fix all of the pointers in
1884  *  structures already returned.
1885  */
1886 static void
1887 internal_function
1888 fts_padjust (FTS *sp, FTSENT *head)
1889 {
1890         FTSENT *p;
1891         char *addr = sp->fts_path;
1892
1893 #define ADJUST(p) do {                                                  \
1894         if ((p)->fts_accpath != (p)->fts_name) {                        \
1895                 (p)->fts_accpath =                                      \
1896                     (char *)addr + ((p)->fts_accpath - (p)->fts_path);  \
1897         }                                                               \
1898         (p)->fts_path = addr;                                           \
1899 } while (0)
1900         /* Adjust the current set of children. */
1901         for (p = sp->fts_child; p; p = p->fts_link)
1902                 ADJUST(p);
1903
1904         /* Adjust the rest of the tree, including the current level. */
1905         for (p = head; p->fts_level >= FTS_ROOTLEVEL;) {
1906                 ADJUST(p);
1907                 p = p->fts_link ? p->fts_link : p->fts_parent;
1908         }
1909 }
1910
1911 static size_t
1912 internal_function
1913 fts_maxarglen (char * const *argv)
1914 {
1915         size_t len, max;
1916
1917         for (max = 0; *argv; ++argv)
1918                 if ((len = strlen(*argv)) > max)
1919                         max = len;
1920         return (max + 1);
1921 }
1922
1923 /*
1924  * Change to dir specified by fd or file name without getting
1925  * tricked by someone changing the world out from underneath us.
1926  * Assumes p->fts_statp->st_dev and p->fts_statp->st_ino are filled in.
1927  * If FD is non-negative, expect it to be used after this function returns,
1928  * and to be closed eventually.  So don't pass e.g., `dirfd(dirp)' and then
1929  * do closedir(dirp), because that would invalidate the saved FD.
1930  * Upon failure, close FD immediately and return nonzero.
1931  */
1932 static int
1933 internal_function
1934 fts_safe_changedir (FTS *sp, FTSENT *p, int fd, char const *dir)
1935 {
1936         int ret;
1937         bool is_dotdot = dir && STREQ (dir, "..");
1938         int newfd;
1939
1940         /* This clause handles the unusual case in which FTS_NOCHDIR
1941            is specified, along with FTS_CWDFD.  In that case, there is
1942            no need to change even the virtual cwd file descriptor.
1943            However, if FD is non-negative, we do close it here.  */
1944         if (ISSET (FTS_NOCHDIR))
1945           {
1946             if (ISSET (FTS_CWDFD) && 0 <= fd)
1947               close (fd);
1948             return 0;
1949           }
1950
1951         if (fd < 0 && is_dotdot && ISSET (FTS_CWDFD))
1952           {
1953             /* When possible, skip the diropen and subsequent fstat+dev/ino
1954                comparison.  I.e., when changing to parent directory
1955                (chdir ("..")), use a file descriptor from the ring and
1956                save the overhead of diropen+fstat, as well as avoiding
1957                failure when we lack "x" access to the virtual cwd.  */
1958             if ( ! i_ring_empty (&sp->fts_fd_ring))
1959               {
1960                 int parent_fd;
1961                 fd_ring_print (sp, stderr, "pre-pop");
1962                 parent_fd = i_ring_pop (&sp->fts_fd_ring);
1963                 is_dotdot = true;
1964                 if (0 <= parent_fd)
1965                   {
1966                     fd = parent_fd;
1967                     dir = NULL;
1968                   }
1969               }
1970           }
1971
1972         newfd = fd;
1973         if (fd < 0 && (newfd = diropen (sp, dir)) < 0)
1974           return -1;
1975
1976         /* The following dev/inode check is necessary if we're doing a
1977            `logical' traversal (through symlinks, a la chown -L), if the
1978            system lacks O_NOFOLLOW support, or if we're changing to ".."
1979            (but not via a popped file descriptor).  When changing to the
1980            name "..", O_NOFOLLOW can't help.  In general, when the target is
1981            not "..", diropen's use of O_NOFOLLOW ensures we don't mistakenly
1982            follow a symlink, so we can avoid the expense of this fstat.  */
1983         if (ISSET(FTS_LOGICAL) || ! HAVE_WORKING_O_NOFOLLOW
1984             || (dir && STREQ (dir, "..")))
1985           {
1986             struct stat sb;
1987             if (fstat(newfd, &sb))
1988               {
1989                 ret = -1;
1990                 goto bail;
1991               }
1992             if (p->fts_statp->st_dev != sb.st_dev
1993                 || p->fts_statp->st_ino != sb.st_ino)
1994               {
1995                 __set_errno (ENOENT);           /* disinformation */
1996                 ret = -1;
1997                 goto bail;
1998               }
1999           }
2000
2001         if (ISSET(FTS_CWDFD))
2002           {
2003             cwd_advance_fd (sp, newfd, ! is_dotdot);
2004             return 0;
2005           }
2006
2007         ret = fchdir(newfd);
2008 bail:
2009         if (fd < 0)
2010           {
2011             int oerrno = errno;
2012             (void)close(newfd);
2013             __set_errno (oerrno);
2014           }
2015         return ret;
2016 }