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