]> sourceware.org Git - glibc.git/blob - io/fts.c
update from main archive 961203
[glibc.git] / io / fts.c
1 /*-
2 * Copyright (c) 1990, 1993
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 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
34 #if defined(LIBC_SCCS) && !defined(lint)
35 static char sccsid[] = "@(#)fts.c 8.2 (Berkeley) 1/2/94";
36 #endif /* LIBC_SCCS and not lint */
37
38 #include <sys/param.h>
39 #include <sys/stat.h>
40 #include <fcntl.h>
41 #include <dirent.h>
42 #include <errno.h>
43 #include <fts.h>
44 #include <stdlib.h>
45 #include <string.h>
46 #include <unistd.h>
47
48
49 /* Largest alignment size needed, minus one.
50 Usually long double is the worst case. */
51 #ifndef ALIGNBYTES
52 #define ALIGNBYTES (__alignof__ (long double) - 1)
53 #endif
54 /* Align P to that size. */
55 #ifndef ALIGN
56 #define ALIGN(p) (((unsigned long int) (p) + ALIGNBYTES) & ~ALIGNBYTES)
57 #endif
58
59
60 static FTSENT *fts_alloc __P((FTS *, char *, int));
61 static FTSENT *fts_build __P((FTS *, int));
62 static void fts_lfree __P((FTSENT *));
63 static void fts_load __P((FTS *, FTSENT *));
64 static size_t fts_maxarglen __P((char * const *));
65 static void fts_padjust __P((FTS *, void *));
66 static int fts_palloc __P((FTS *, size_t));
67 static FTSENT *fts_sort __P((FTS *, FTSENT *, int));
68 static u_short fts_stat __P((FTS *, FTSENT *, int));
69
70 #ifndef MAX
71 #define MAX(a, b) ({ __typeof__ (a) _a = (a); \
72 __typeof__ (b) _b = (b); \
73 _a > _b ? _a : _b; })
74 #endif
75
76 #define ISDOT(a) (a[0] == '.' && (!a[1] || a[1] == '.' && !a[2]))
77
78 #define ISSET(opt) (sp->fts_options & opt)
79 #define SET(opt) (sp->fts_options |= opt)
80
81 #define CHDIR(sp, path) (!ISSET(FTS_NOCHDIR) && chdir(path))
82 #define FCHDIR(sp, fd) (!ISSET(FTS_NOCHDIR) && fchdir(fd))
83
84 /* fts_build flags */
85 #define BCHILD 1 /* fts_children */
86 #define BNAMES 2 /* fts_children, names only */
87 #define BREAD 3 /* fts_read */
88
89 FTS *
90 fts_open(argv, options, compar)
91 char * const *argv;
92 register int options;
93 int (*compar) __P((const FTSENT **, const FTSENT **));
94 {
95 register FTS *sp;
96 register FTSENT *p, *root;
97 register int nitems;
98 FTSENT *parent, *tmp;
99 int len;
100
101 /* Options check. */
102 if (options & ~FTS_OPTIONMASK) {
103 __set_errno (EINVAL);
104 return (NULL);
105 }
106
107 /* Allocate/initialize the stream */
108 if ((sp = malloc((u_int)sizeof(FTS))) == NULL)
109 return (NULL);
110 bzero(sp, sizeof(FTS));
111 sp->fts_compar = (int (*) __P((const void *, const void *))) compar;
112 sp->fts_options = options;
113
114 /* Logical walks turn on NOCHDIR; symbolic links are too hard. */
115 if (ISSET(FTS_LOGICAL))
116 SET(FTS_NOCHDIR);
117
118 /*
119 * Start out with 1K of path space, and enough, in any case,
120 * to hold the user's paths.
121 */
122 #ifndef MAXPATHLEN
123 #define MAXPATHLEN 1024
124 #endif
125 if (fts_palloc(sp, MAX(fts_maxarglen(argv), MAXPATHLEN)))
126 goto mem1;
127
128 /* Allocate/initialize root's parent. */
129 if ((parent = fts_alloc(sp, "", 0)) == NULL)
130 goto mem2;
131 parent->fts_level = FTS_ROOTPARENTLEVEL;
132
133 /* Allocate/initialize root(s). */
134 for (root = NULL, nitems = 0; *argv; ++argv, ++nitems) {
135 /* Don't allow zero-length paths. */
136 if ((len = strlen(*argv)) == 0) {
137 __set_errno (ENOENT);
138 goto mem3;
139 }
140
141 p = fts_alloc(sp, *argv, len);
142 p->fts_level = FTS_ROOTLEVEL;
143 p->fts_parent = parent;
144 p->fts_accpath = p->fts_name;
145 p->fts_info = fts_stat(sp, p, ISSET(FTS_COMFOLLOW));
146
147 /* Command-line "." and ".." are real directories. */
148 if (p->fts_info == FTS_DOT)
149 p->fts_info = FTS_D;
150
151 /*
152 * If comparison routine supplied, traverse in sorted
153 * order; otherwise traverse in the order specified.
154 */
155 if (compar) {
156 p->fts_link = root;
157 root = p;
158 } else {
159 p->fts_link = NULL;
160 if (root == NULL)
161 tmp = root = p;
162 else {
163 tmp->fts_link = p;
164 tmp = p;
165 }
166 }
167 }
168 if (compar && nitems > 1)
169 root = fts_sort(sp, root, nitems);
170
171 /*
172 * Allocate a dummy pointer and make fts_read think that we've just
173 * finished the node before the root(s); set p->fts_info to FTS_INIT
174 * so that everything about the "current" node is ignored.
175 */
176 if ((sp->fts_cur = fts_alloc(sp, "", 0)) == NULL)
177 goto mem3;
178 sp->fts_cur->fts_link = root;
179 sp->fts_cur->fts_info = FTS_INIT;
180
181 /*
182 * If using chdir(2), grab a file descriptor pointing to dot to insure
183 * that we can get back here; this could be avoided for some paths,
184 * but almost certainly not worth the effort. Slashes, symbolic links,
185 * and ".." are all fairly nasty problems. Note, if we can't get the
186 * descriptor we run anyway, just more slowly.
187 */
188 if (!ISSET(FTS_NOCHDIR) && (sp->fts_rfd = open(".", O_RDONLY, 0)) < 0)
189 SET(FTS_NOCHDIR);
190
191 return (sp);
192
193 mem3: fts_lfree(root);
194 free(parent);
195 mem2: free(sp->fts_path);
196 mem1: free(sp);
197 return (NULL);
198 }
199
200 static void
201 fts_load(sp, p)
202 FTS *sp;
203 register FTSENT *p;
204 {
205 register int len;
206 register char *cp;
207
208 /*
209 * Load the stream structure for the next traversal. Since we don't
210 * actually enter the directory until after the preorder visit, set
211 * the fts_accpath field specially so the chdir gets done to the right
212 * place and the user can access the first node. From fts_open it's
213 * known that the path will fit.
214 */
215 len = p->fts_pathlen = p->fts_namelen;
216 bcopy(p->fts_name, sp->fts_path, len + 1);
217 if ((cp = rindex(p->fts_name, '/')) && (cp != p->fts_name || cp[1])) {
218 len = strlen(++cp);
219 bcopy(cp, p->fts_name, len + 1);
220 p->fts_namelen = len;
221 }
222 p->fts_accpath = p->fts_path = sp->fts_path;
223 sp->fts_dev = p->fts_dev;
224 }
225
226 int
227 fts_close(sp)
228 FTS *sp;
229 {
230 register FTSENT *freep, *p;
231 int saved_errno;
232
233 /*
234 * This still works if we haven't read anything -- the dummy structure
235 * points to the root list, so we step through to the end of the root
236 * list which has a valid parent pointer.
237 */
238 if (sp->fts_cur) {
239 for (p = sp->fts_cur; p->fts_level >= FTS_ROOTLEVEL;) {
240 freep = p;
241 p = p->fts_link ? p->fts_link : p->fts_parent;
242 free(freep);
243 }
244 free(p);
245 }
246
247 /* Free up child linked list, sort array, path buffer. */
248 if (sp->fts_child)
249 fts_lfree(sp->fts_child);
250 if (sp->fts_array)
251 free(sp->fts_array);
252 free(sp->fts_path);
253
254 /* Return to original directory, save errno if necessary. */
255 if (!ISSET(FTS_NOCHDIR)) {
256 saved_errno = fchdir(sp->fts_rfd) ? errno : 0;
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 (!ISSET(FTS_NOCHDIR) && saved_errno) {
265 __set_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 bcopy(p->fts_name, t, 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 __set_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 __set_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 __set_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 __set_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 __set_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 dirbuf, *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, 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 if ((dirp = opendir(cur->fts_accpath)) == NULL) {
590 if (type == BREAD) {
591 cur->fts_info = FTS_DNR;
592 cur->fts_errno = errno;
593 }
594 return (NULL);
595 }
596
597 /*
598 * Nlinks is the number of possible entries of type directory in the
599 * directory if we're cheating on stat calls, 0 if we're not doing
600 * any stat calls at all, -1 if we're doing stats on everything.
601 */
602 if (type == BNAMES)
603 nlinks = 0;
604 else if (ISSET(FTS_NOSTAT) && ISSET(FTS_PHYSICAL))
605 nlinks = cur->fts_nlink - (ISSET(FTS_SEEDOT) ? 0 : 2);
606 else
607 nlinks = -1;
608
609 #ifdef notdef
610 (void)printf("nlinks == %d (cur: %d)\n", nlinks, cur->fts_nlink);
611 (void)printf("NOSTAT %d PHYSICAL %d SEEDOT %d\n",
612 ISSET(FTS_NOSTAT), ISSET(FTS_PHYSICAL), ISSET(FTS_SEEDOT));
613 #endif
614 /*
615 * If we're going to need to stat anything or we want to descend
616 * and stay in the directory, chdir. If this fails we keep going,
617 * but set a flag so we don't chdir after the post-order visit.
618 * We won't be able to stat anything, but we can still return the
619 * names themselves. Note, that since fts_read won't be able to
620 * chdir into the directory, it will have to return different path
621 * names than before, i.e. "a/b" instead of "b". Since the node
622 * has already been visited in pre-order, have to wait until the
623 * post-order visit to return the error. There is a special case
624 * here, if there was nothing to stat then it's not an error to
625 * not be able to stat. This is all fairly nasty. If a program
626 * needed sorted entries or stat information, they had better be
627 * checking FTS_NS on the returned nodes.
628 */
629 cderrno = 0;
630 if (nlinks || type == BREAD)
631 if (FCHDIR(sp, dirfd(dirp))) {
632 if (nlinks && type == BREAD)
633 cur->fts_errno = errno;
634 cur->fts_flags |= FTS_DONTCHDIR;
635 descend = 0;
636 cderrno = errno;
637 } else
638 descend = 1;
639 else
640 descend = 0;
641
642 /*
643 * Figure out the max file name length that can be stored in the
644 * current path -- the inner loop allocates more path as necessary.
645 * We really wouldn't have to do the maxlen calculations here, we
646 * could do them in fts_read before returning the path, but it's a
647 * lot easier here since the length is part of the dirent structure.
648 *
649 * If not changing directories set a pointer so that can just append
650 * each new name into the path.
651 */
652 maxlen = sp->fts_pathlen - cur->fts_pathlen - 1;
653 len = NAPPEND(cur);
654 if (ISSET(FTS_NOCHDIR)) {
655 cp = sp->fts_path + len;
656 *cp++ = '/';
657 }
658
659 level = cur->fts_level + 1;
660
661 /* Read the directory, attaching each entry to the `link' pointer. */
662 adjaddr = NULL;
663 for (head = tail = NULL, nitems = 0;
664 __readdir_r (dirp, &dirbuf, &dp) >= 0;) {
665 int namlen;
666
667 if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name))
668 continue;
669
670 namlen = _D_EXACT_NAMLEN (dp);
671 if ((p = fts_alloc(sp, dp->d_name, namlen)) == NULL)
672 goto mem1;
673 if (namlen > maxlen) {
674 if (fts_palloc(sp, (size_t)namlen)) {
675 /*
676 * No more memory for path or structures. Save
677 * errno, free up the current structure and the
678 * structures already allocated.
679 */
680 mem1: saved_errno = errno;
681 if (p)
682 free(p);
683 fts_lfree(head);
684 (void)closedir(dirp);
685 __set_errno (saved_errno);
686 cur->fts_info = FTS_ERR;
687 SET(FTS_STOP);
688 return (NULL);
689 }
690 adjaddr = sp->fts_path;
691 maxlen = sp->fts_pathlen - sp->fts_cur->fts_pathlen - 1;
692 }
693
694 p->fts_pathlen = len + namlen + 1;
695 p->fts_parent = sp->fts_cur;
696 p->fts_level = level;
697
698 if (cderrno) {
699 if (nlinks) {
700 p->fts_info = FTS_NS;
701 p->fts_errno = cderrno;
702 } else
703 p->fts_info = FTS_NSOK;
704 p->fts_accpath = cur->fts_accpath;
705 } else if (nlinks == 0
706 #ifdef DT_DIR
707 || nlinks > 0 &&
708 dp->d_type != DT_DIR && dp->d_type != DT_UNKNOWN
709 #endif
710 ) {
711 p->fts_accpath =
712 ISSET(FTS_NOCHDIR) ? p->fts_path : p->fts_name;
713 p->fts_info = FTS_NSOK;
714 } else {
715 /* Build a file name for fts_stat to stat. */
716 if (ISSET(FTS_NOCHDIR)) {
717 p->fts_accpath = p->fts_path;
718 bcopy(p->fts_name, cp, p->fts_namelen + 1);
719 } else
720 p->fts_accpath = p->fts_name;
721 /* Stat it. */
722 p->fts_info = fts_stat(sp, p, 0);
723
724 /* Decrement link count if applicable. */
725 if (nlinks > 0 && (p->fts_info == FTS_D ||
726 p->fts_info == FTS_DC || p->fts_info == FTS_DOT))
727 --nlinks;
728 }
729
730 /* We walk in directory order so "ls -f" doesn't get upset. */
731 p->fts_link = NULL;
732 if (head == NULL)
733 head = tail = p;
734 else {
735 tail->fts_link = p;
736 tail = p;
737 }
738 ++nitems;
739 }
740 (void)closedir(dirp);
741
742 /*
743 * If had to realloc the path, adjust the addresses for the rest
744 * of the tree.
745 */
746 if (adjaddr)
747 fts_padjust(sp, adjaddr);
748
749 /*
750 * If not changing directories, reset the path back to original
751 * state.
752 */
753 if (ISSET(FTS_NOCHDIR)) {
754 if (cp - 1 > sp->fts_path)
755 --cp;
756 *cp = '\0';
757 }
758
759 /*
760 * If descended after called from fts_children or called from
761 * fts_read and didn't find anything, get back. If can't get
762 * back, done.
763 */
764 if (descend && (!nitems || type == BCHILD) && CHDIR(sp, "..")) {
765 cur->fts_info = FTS_ERR;
766 SET(FTS_STOP);
767 return (NULL);
768 }
769
770 /* If didn't find anything, return NULL. */
771 if (!nitems) {
772 if (type == BREAD)
773 cur->fts_info = FTS_DP;
774 return (NULL);
775 }
776
777 /* Sort the entries. */
778 if (sp->fts_compar && nitems > 1)
779 head = fts_sort(sp, head, nitems);
780 return (head);
781 }
782
783 static u_short
784 fts_stat(sp, p, follow)
785 FTS *sp;
786 register FTSENT *p;
787 int follow;
788 {
789 register FTSENT *t;
790 register dev_t dev;
791 register ino_t ino;
792 struct stat *sbp, sb;
793 int saved_errno;
794
795 /* If user needs stat info, stat buffer already allocated. */
796 sbp = ISSET(FTS_NOSTAT) ? &sb : p->fts_statp;
797
798 /*
799 * If doing a logical walk, or application requested FTS_FOLLOW, do
800 * a stat(2). If that fails, check for a non-existent symlink. If
801 * fail, set the errno from the stat call.
802 */
803 if (ISSET(FTS_LOGICAL) || follow) {
804 if (stat(p->fts_accpath, sbp)) {
805 saved_errno = errno;
806 if (!lstat(p->fts_accpath, sbp)) {
807 __set_errno (0);
808 return (FTS_SLNONE);
809 }
810 p->fts_errno = saved_errno;
811 goto err;
812 }
813 } else if (lstat(p->fts_accpath, sbp)) {
814 p->fts_errno = errno;
815 err: bzero(sbp, sizeof(struct stat));
816 return (FTS_NS);
817 }
818
819 if (S_ISDIR(sbp->st_mode)) {
820 /*
821 * Set the device/inode. Used to find cycles and check for
822 * crossing mount points. Also remember the link count, used
823 * in fts_build to limit the number of stat calls. It is
824 * understood that these fields are only referenced if fts_info
825 * is set to FTS_D.
826 */
827 dev = p->fts_dev = sbp->st_dev;
828 ino = p->fts_ino = sbp->st_ino;
829 p->fts_nlink = sbp->st_nlink;
830
831 if (ISDOT(p->fts_name))
832 return (FTS_DOT);
833
834 /*
835 * Cycle detection is done by brute force when the directory
836 * is first encountered. If the tree gets deep enough or the
837 * number of symbolic links to directories is high enough,
838 * something faster might be worthwhile.
839 */
840 for (t = p->fts_parent;
841 t->fts_level >= FTS_ROOTLEVEL; t = t->fts_parent)
842 if (ino == t->fts_ino && dev == t->fts_dev) {
843 p->fts_cycle = t;
844 return (FTS_DC);
845 }
846 return (FTS_D);
847 }
848 if (S_ISLNK(sbp->st_mode))
849 return (FTS_SL);
850 if (S_ISREG(sbp->st_mode))
851 return (FTS_F);
852 return (FTS_DEFAULT);
853 }
854
855 static FTSENT *
856 fts_sort(sp, head, nitems)
857 FTS *sp;
858 FTSENT *head;
859 register int nitems;
860 {
861 register FTSENT **ap, *p;
862
863 /*
864 * Construct an array of pointers to the structures and call qsort(3).
865 * Reassemble the array in the order returned by qsort. If unable to
866 * sort for memory reasons, return the directory entries in their
867 * current order. Allocate enough space for the current needs plus
868 * 40 so don't realloc one entry at a time.
869 */
870 if (nitems > sp->fts_nitems) {
871 sp->fts_nitems = nitems + 40;
872 if ((sp->fts_array = realloc(sp->fts_array,
873 (size_t)(sp->fts_nitems * sizeof(FTSENT *)))) == NULL) {
874 sp->fts_nitems = 0;
875 return (head);
876 }
877 }
878 for (ap = sp->fts_array, p = head; p; p = p->fts_link)
879 *ap++ = p;
880 qsort((void *)sp->fts_array, nitems, sizeof(FTSENT *), sp->fts_compar);
881 for (head = *(ap = sp->fts_array); --nitems; ++ap)
882 ap[0]->fts_link = ap[1];
883 ap[0]->fts_link = NULL;
884 return (head);
885 }
886
887 static FTSENT *
888 fts_alloc(sp, name, namelen)
889 FTS *sp;
890 char *name;
891 register int namelen;
892 {
893 register FTSENT *p;
894 size_t len;
895
896 /*
897 * The file name is a variable length array and no stat structure is
898 * necessary if the user has set the nostat bit. Allocate the FTSENT
899 * structure, the file name and the stat structure in one chunk, but
900 * be careful that the stat structure is reasonably aligned. Since the
901 * fts_name field is declared to be of size 1, the fts_name pointer is
902 * namelen + 2 before the first possible address of the stat structure.
903 */
904 len = sizeof(FTSENT) + namelen;
905 if (!ISSET(FTS_NOSTAT))
906 len += sizeof(struct stat) + ALIGNBYTES;
907 if ((p = malloc(len)) == NULL)
908 return (NULL);
909
910 /* Copy the name plus the trailing NULL. */
911 bcopy(name, p->fts_name, namelen + 1);
912
913 if (!ISSET(FTS_NOSTAT))
914 p->fts_statp = (struct stat *)ALIGN(p->fts_name + namelen + 2);
915 p->fts_namelen = namelen;
916 p->fts_path = sp->fts_path;
917 p->fts_errno = 0;
918 p->fts_flags = 0;
919 p->fts_instr = FTS_NOINSTR;
920 p->fts_number = 0;
921 p->fts_pointer = NULL;
922 return (p);
923 }
924
925 static void
926 fts_lfree(head)
927 register FTSENT *head;
928 {
929 register FTSENT *p;
930
931 /* Free a linked list of structures. */
932 while (p = head) {
933 head = head->fts_link;
934 free(p);
935 }
936 }
937
938 /*
939 * Allow essentially unlimited paths; find, rm, ls should all work on any tree.
940 * Most systems will allow creation of paths much longer than MAXPATHLEN, even
941 * though the kernel won't resolve them. Add the size (not just what's needed)
942 * plus 256 bytes so don't realloc the path 2 bytes at a time.
943 */
944 static int
945 fts_palloc(sp, more)
946 FTS *sp;
947 size_t more;
948 {
949 sp->fts_pathlen += more + 256;
950 sp->fts_path = realloc(sp->fts_path, (size_t)sp->fts_pathlen);
951 return (sp->fts_path == NULL);
952 }
953
954 /*
955 * When the path is realloc'd, have to fix all of the pointers in structures
956 * already returned.
957 */
958 static void
959 fts_padjust(sp, addr)
960 FTS *sp;
961 void *addr;
962 {
963 FTSENT *p;
964
965 #define ADJUST(p) { \
966 (p)->fts_accpath = \
967 (char *)addr + ((p)->fts_accpath - (p)->fts_path); \
968 (p)->fts_path = addr; \
969 }
970 /* Adjust the current set of children. */
971 for (p = sp->fts_child; p; p = p->fts_link)
972 ADJUST(p);
973
974 /* Adjust the rest of the tree. */
975 for (p = sp->fts_cur; p->fts_level >= FTS_ROOTLEVEL;) {
976 ADJUST(p);
977 p = p->fts_link ? p->fts_link : p->fts_parent;
978 }
979 }
980
981 static size_t
982 fts_maxarglen(argv)
983 char * const *argv;
984 {
985 size_t len, max;
986
987 for (max = 0; *argv; ++argv)
988 if ((len = strlen(*argv)) > max)
989 max = len;
990 return (max);
991 }
This page took 0.089101 seconds and 6 git commands to generate.