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