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