]> sourceware.org Git - glibc.git/blob - io/fts.c
Update.
[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 * 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.6 (Berkeley) 8/14/94";
36 #endif /* LIBC_SCCS and not lint */
37
38 #include <sys/param.h>
39 #include <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 *, const char *, int)) internal_function;
61 static FTSENT *fts_build __P((FTS *, int)) internal_function;
62 static void fts_lfree __P((FTSENT *)) internal_function;
63 static void fts_load __P((FTS *, FTSENT *));
64 static size_t fts_maxarglen __P((char * const *)) internal_function;
65 static void fts_padjust __P((FTS *, void *)) internal_function;
66 static int fts_palloc __P((FTS *, size_t)) internal_function;
67 static FTSENT *fts_sort __P((FTS *, FTSENT *, int)) internal_function;
68 static u_short fts_stat __P((FTS *, struct dirent *, FTSENT *, int))
69 internal_function;
70
71 #ifndef MAX
72 #define MAX(a, b) ({ __typeof__ (a) _a = (a); \
73 __typeof__ (b) _b = (b); \
74 _a > _b ? _a : _b; })
75 #endif
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) __P((const FTSENT **, const FTSENT **));
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 __set_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 __bzero(sp, sizeof(FTS));
112 sp->fts_compar = (int (*) __P((const void *, const void *))) 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 #ifndef MAXPATHLEN
124 #define MAXPATHLEN 1024
125 #endif
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 __set_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, NULL, 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)
190 && (sp->fts_rfd = __open(".", O_RDONLY, 0)) < 0)
191 SET(FTS_NOCHDIR);
192
193 return (sp);
194
195 mem3: fts_lfree(root);
196 free(parent);
197 mem2: free(sp->fts_path);
198 mem1: free(sp);
199 return (NULL);
200 }
201
202 static void
203 fts_load(sp, p)
204 FTS *sp;
205 register FTSENT *p;
206 {
207 register int len;
208 register char *cp;
209
210 /*
211 * Load the stream structure for the next traversal. Since we don't
212 * actually enter the directory until after the preorder visit, set
213 * the fts_accpath field specially so the chdir gets done to the right
214 * place and the user can access the first node. From fts_open it's
215 * known that the path will fit.
216 */
217 len = p->fts_pathlen = p->fts_namelen;
218 bcopy(p->fts_name, sp->fts_path, len + 1);
219 if ((cp = rindex(p->fts_name, '/')) && (cp != p->fts_name || cp[1])) {
220 len = strlen(++cp);
221 bcopy(cp, p->fts_name, len + 1);
222 p->fts_namelen = len;
223 }
224 p->fts_accpath = p->fts_path = sp->fts_path;
225 sp->fts_dev = p->fts_dev;
226 }
227
228 int
229 fts_close(sp)
230 FTS *sp;
231 {
232 register FTSENT *freep, *p;
233 int saved_errno;
234
235 /*
236 * This still works if we haven't read anything -- the dummy structure
237 * points to the root list, so we step through to the end of the root
238 * list which has a valid parent pointer.
239 */
240 if (sp->fts_cur) {
241 for (p = sp->fts_cur; p->fts_level >= FTS_ROOTLEVEL;) {
242 freep = p;
243 p = p->fts_link ? p->fts_link : p->fts_parent;
244 free(freep);
245 }
246 free(p);
247 }
248
249 /* Free up child linked list, sort array, path buffer. */
250 if (sp->fts_child)
251 fts_lfree(sp->fts_child);
252 if (sp->fts_array)
253 free(sp->fts_array);
254 free(sp->fts_path);
255
256 /* Return to original directory, save errno if necessary. */
257 if (!ISSET(FTS_NOCHDIR)) {
258 saved_errno = __fchdir(sp->fts_rfd) ? errno : 0;
259 (void)__close(sp->fts_rfd);
260 }
261
262 /* Free up the stream pointer. */
263 free(sp);
264
265 /* Set errno and return. */
266 if (!ISSET(FTS_NOCHDIR) && saved_errno) {
267 __set_errno (saved_errno);
268 return (-1);
269 }
270 return (0);
271 }
272
273 /*
274 * Special case a root of "/" so that slashes aren't appended which would
275 * cause paths to be written as "//foo".
276 */
277 #define NAPPEND(p) \
278 (p->fts_level == FTS_ROOTLEVEL && p->fts_pathlen == 1 && \
279 p->fts_path[0] == '/' ? 0 : p->fts_pathlen)
280
281 FTSENT *
282 fts_read(sp)
283 register FTS *sp;
284 {
285 register FTSENT *p, *tmp;
286 register int instr;
287 register char *t;
288 int saved_errno;
289
290 /* If finished or unrecoverable error, return NULL. */
291 if (sp->fts_cur == NULL || ISSET(FTS_STOP))
292 return (NULL);
293
294 /* Set current node pointer. */
295 p = sp->fts_cur;
296
297 /* Save and zero out user instructions. */
298 instr = p->fts_instr;
299 p->fts_instr = FTS_NOINSTR;
300
301 /* Any type of file may be re-visited; re-stat and re-turn. */
302 if (instr == FTS_AGAIN) {
303 p->fts_info = fts_stat(sp, NULL, p, 0);
304 return (p);
305 }
306
307 /*
308 * Following a symlink -- SLNONE test allows application to see
309 * SLNONE and recover. If indirecting through a symlink, have
310 * keep a pointer to current location. If unable to get that
311 * pointer, follow fails.
312 */
313 if (instr == FTS_FOLLOW &&
314 (p->fts_info == FTS_SL || p->fts_info == FTS_SLNONE)) {
315 p->fts_info = fts_stat(sp, NULL, p, 1);
316 if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR))
317 if ((p->fts_symfd = __open(".", O_RDONLY, 0)) < 0) {
318 p->fts_errno = errno;
319 p->fts_info = FTS_ERR;
320 } else
321 p->fts_flags |= FTS_SYMFOLLOW;
322 return (p);
323 }
324
325 /* Directory in pre-order. */
326 if (p->fts_info == FTS_D) {
327 /* If skipped or crossed mount point, do post-order visit. */
328 if (instr == FTS_SKIP ||
329 ISSET(FTS_XDEV) && p->fts_dev != sp->fts_dev) {
330 if (p->fts_flags & FTS_SYMFOLLOW)
331 (void)__close(p->fts_symfd);
332 if (sp->fts_child) {
333 fts_lfree(sp->fts_child);
334 sp->fts_child = NULL;
335 }
336 p->fts_info = FTS_DP;
337 return (p);
338 }
339
340 /* Rebuild if only read the names and now traversing. */
341 if (sp->fts_child && sp->fts_options & FTS_NAMEONLY) {
342 sp->fts_options &= ~FTS_NAMEONLY;
343 fts_lfree(sp->fts_child);
344 sp->fts_child = NULL;
345 }
346
347 /*
348 * Cd to the subdirectory.
349 *
350 * If have already read and now fail to chdir, whack the list
351 * to make the names come out right, and set the parent errno
352 * so the application will eventually get an error condition.
353 * Set the FTS_DONTCHDIR flag so that when we logically change
354 * directories back to the parent we don't do a chdir.
355 *
356 * If haven't read do so. If the read fails, fts_build sets
357 * FTS_STOP or the fts_info field of the node.
358 */
359 if (sp->fts_child) {
360 if (CHDIR(sp, p->fts_accpath)) {
361 p->fts_errno = errno;
362 p->fts_flags |= FTS_DONTCHDIR;
363 for (p = sp->fts_child; p; p = p->fts_link)
364 p->fts_accpath =
365 p->fts_parent->fts_accpath;
366 }
367 } else if ((sp->fts_child = fts_build(sp, BREAD)) == NULL) {
368 if (ISSET(FTS_STOP))
369 return (NULL);
370 return (p);
371 }
372 p = sp->fts_child;
373 sp->fts_child = NULL;
374 goto name;
375 }
376
377 /* Move to the next node on this level. */
378 next: tmp = p;
379 if (p = p->fts_link) {
380 free(tmp);
381
382 /*
383 * If reached the top, return to the original directory, and
384 * load the paths for the next root.
385 */
386 if (p->fts_level == FTS_ROOTLEVEL) {
387 if (!ISSET(FTS_NOCHDIR) && FCHDIR(sp, sp->fts_rfd)) {
388 SET(FTS_STOP);
389 return (NULL);
390 }
391 fts_load(sp, p);
392 return (sp->fts_cur = p);
393 }
394
395 /*
396 * User may have called fts_set on the node. If skipped,
397 * ignore. If followed, get a file descriptor so we can
398 * get back if necessary.
399 */
400 if (p->fts_instr == FTS_SKIP)
401 goto next;
402 if (p->fts_instr == FTS_FOLLOW) {
403 p->fts_info = fts_stat(sp, NULL, p, 1);
404 if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR))
405 if ((p->fts_symfd =
406 __open(".", O_RDONLY, 0)) < 0) {
407 p->fts_errno = errno;
408 p->fts_info = FTS_ERR;
409 } else
410 p->fts_flags |= FTS_SYMFOLLOW;
411 p->fts_instr = FTS_NOINSTR;
412 }
413
414 name: t = sp->fts_path + NAPPEND(p->fts_parent);
415 *t++ = '/';
416 bcopy(p->fts_name, t, p->fts_namelen + 1);
417 return (sp->fts_cur = p);
418 }
419
420 /* Move up to the parent node. */
421 p = tmp->fts_parent;
422 free(tmp);
423
424 if (p->fts_level == FTS_ROOTPARENTLEVEL) {
425 /*
426 * Done; free everything up and set errno to 0 so the user
427 * can distinguish between error and EOF.
428 */
429 free(p);
430 __set_errno (0);
431 return (sp->fts_cur = NULL);
432 }
433
434 /* Nul terminate the pathname. */
435 sp->fts_path[p->fts_pathlen] = '\0';
436
437 /*
438 * Return to the parent directory. If at a root node or came through
439 * a symlink, go back through the file descriptor. Otherwise, cd up
440 * one directory.
441 */
442 if (p->fts_level == FTS_ROOTLEVEL) {
443 if (!ISSET(FTS_NOCHDIR) && FCHDIR(sp, sp->fts_rfd)) {
444 SET(FTS_STOP);
445 return (NULL);
446 }
447 } else if (p->fts_flags & FTS_SYMFOLLOW) {
448 if (FCHDIR(sp, p->fts_symfd)) {
449 saved_errno = errno;
450 (void)__close(p->fts_symfd);
451 __set_errno (saved_errno);
452 SET(FTS_STOP);
453 return (NULL);
454 }
455 (void)__close(p->fts_symfd);
456 } else if (!(p->fts_flags & FTS_DONTCHDIR)) {
457 if (CHDIR(sp, "..")) {
458 SET(FTS_STOP);
459 return (NULL);
460 }
461 }
462 p->fts_info = p->fts_errno ? FTS_ERR : FTS_DP;
463 return (sp->fts_cur = p);
464 }
465
466 /*
467 * Fts_set takes the stream as an argument although it's not used in this
468 * implementation; it would be necessary if anyone wanted to add global
469 * semantics to fts using fts_set. An error return is allowed for similar
470 * reasons.
471 */
472 /* ARGSUSED */
473 int
474 fts_set(sp, p, instr)
475 FTS *sp;
476 FTSENT *p;
477 int instr;
478 {
479 if (instr && instr != FTS_AGAIN && instr != FTS_FOLLOW &&
480 instr != FTS_NOINSTR && instr != FTS_SKIP) {
481 __set_errno (EINVAL);
482 return (1);
483 }
484 p->fts_instr = instr;
485 return (0);
486 }
487
488 FTSENT *
489 fts_children(sp, instr)
490 register FTS *sp;
491 int instr;
492 {
493 register FTSENT *p;
494 int fd;
495
496 if (instr && instr != FTS_NAMEONLY) {
497 __set_errno (EINVAL);
498 return (NULL);
499 }
500
501 /* Set current node pointer. */
502 p = sp->fts_cur;
503
504 /*
505 * Errno set to 0 so user can distinguish empty directory from
506 * an error.
507 */
508 __set_errno (0);
509
510 /* Fatal errors stop here. */
511 if (ISSET(FTS_STOP))
512 return (NULL);
513
514 /* Return logical hierarchy of user's arguments. */
515 if (p->fts_info == FTS_INIT)
516 return (p->fts_link);
517
518 /*
519 * If not a directory being visited in pre-order, stop here. Could
520 * allow FTS_DNR, assuming the user has fixed the problem, but the
521 * same effect is available with FTS_AGAIN.
522 */
523 if (p->fts_info != FTS_D /* && p->fts_info != FTS_DNR */)
524 return (NULL);
525
526 /* Free up any previous child list. */
527 if (sp->fts_child)
528 fts_lfree(sp->fts_child);
529
530 if (instr == FTS_NAMEONLY) {
531 sp->fts_options |= FTS_NAMEONLY;
532 instr = BNAMES;
533 } else
534 instr = BCHILD;
535
536 /*
537 * If using chdir on a relative path and called BEFORE fts_read does
538 * its chdir to the root of a traversal, we can lose -- we need to
539 * chdir into the subdirectory, and we don't know where the current
540 * directory is, so we can't get back so that the upcoming chdir by
541 * fts_read will work.
542 */
543 if (p->fts_level != FTS_ROOTLEVEL || p->fts_accpath[0] == '/' ||
544 ISSET(FTS_NOCHDIR))
545 return (sp->fts_child = fts_build(sp, instr));
546
547 if ((fd = __open(".", O_RDONLY, 0)) < 0)
548 return (NULL);
549 sp->fts_child = fts_build(sp, instr);
550 if (__fchdir(fd))
551 return (NULL);
552 (void)__close(fd);
553 return (sp->fts_child);
554 }
555
556 /*
557 * This is the tricky part -- do not casually change *anything* in here. The
558 * idea is to build the linked list of entries that are used by fts_children
559 * and fts_read. There are lots of special cases.
560 *
561 * The real slowdown in walking the tree is the stat calls. If FTS_NOSTAT is
562 * set and it's a physical walk (so that symbolic links can't be directories),
563 * we can do things quickly. First, if it's a 4.4BSD file system, the type
564 * of the file is in the directory entry. Otherwise, we assume that the number
565 * of subdirectories in a node is equal to the number of links to the parent.
566 * The former skips all stat calls. The latter skips stat calls in any leaf
567 * directories and for any files after the subdirectories in the directory have
568 * been found, cutting the stat calls by about 2/3.
569 */
570 static FTSENT *
571 internal_function
572 fts_build(sp, type)
573 register FTS *sp;
574 int type;
575 {
576 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, saved_errno;
583 char *cp;
584 #ifdef DTF_HIDEW
585 int oflag;
586 #endif
587
588 /* Set current node pointer. */
589 cur = sp->fts_cur;
590
591 /*
592 * Open the directory for reading. If this fails, we're done.
593 * If being called from fts_read, set the fts_info field.
594 */
595 #ifdef DTF_HIDEW
596 if (ISSET (FTS_WHITEOUT))
597 oflag = DTF_NODUP|DTF_REWIND;
598 else
599 oflag = DTF_HIDEW|DTF_NODUP|DTF_REWIND;
600 #else
601 # define __opendir2(path, flag) __opendir(path)
602 #endif
603 if ((dirp = __opendir2 (cur->fts_accpath, oflag)) == NULL) {
604 if (type == BREAD) {
605 cur->fts_info = FTS_DNR;
606 cur->fts_errno = errno;
607 }
608 return (NULL);
609 }
610
611 /*
612 * Nlinks is the number of possible entries of type directory in the
613 * directory if we're cheating on stat calls, 0 if we're not doing
614 * any stat calls at all, -1 if we're doing stats on everything.
615 */
616 if (type == BNAMES)
617 nlinks = 0;
618 else if (ISSET(FTS_NOSTAT) && ISSET(FTS_PHYSICAL))
619 nlinks = cur->fts_nlink - (ISSET(FTS_SEEDOT) ? 0 : 2);
620 else
621 nlinks = -1;
622
623 #ifdef notdef
624 (void)printf("nlinks == %d (cur: %d)\n", nlinks, cur->fts_nlink);
625 (void)printf("NOSTAT %d PHYSICAL %d SEEDOT %d\n",
626 ISSET(FTS_NOSTAT), ISSET(FTS_PHYSICAL), ISSET(FTS_SEEDOT));
627 #endif
628 /*
629 * If we're going to need to stat anything or we want to descend
630 * and stay in the directory, chdir. If this fails we keep going,
631 * but set a flag so we don't chdir after the post-order visit.
632 * We won't be able to stat anything, but we can still return the
633 * names themselves. Note, that since fts_read won't be able to
634 * chdir into the directory, it will have to return different path
635 * names than before, i.e. "a/b" instead of "b". Since the node
636 * has already been visited in pre-order, have to wait until the
637 * post-order visit to return the error. There is a special case
638 * here, if there was nothing to stat then it's not an error to
639 * not be able to stat. This is all fairly nasty. If a program
640 * needed sorted entries or stat information, they had better be
641 * checking FTS_NS on the returned nodes.
642 */
643 cderrno = 0;
644 if (nlinks || type == BREAD)
645 if (FCHDIR(sp, dirfd(dirp))) {
646 if (nlinks && type == BREAD)
647 cur->fts_errno = errno;
648 cur->fts_flags |= FTS_DONTCHDIR;
649 descend = 0;
650 cderrno = errno;
651 } else
652 descend = 1;
653 else
654 descend = 0;
655
656 /*
657 * Figure out the max file name length that can be stored in the
658 * current path -- the inner loop allocates more path as necessary.
659 * We really wouldn't have to do the maxlen calculations here, we
660 * could do them in fts_read before returning the path, but it's a
661 * lot easier here since the length is part of the dirent structure.
662 *
663 * If not changing directories set a pointer so that can just append
664 * each new name into the path.
665 */
666 maxlen = sp->fts_pathlen - cur->fts_pathlen - 1;
667 len = NAPPEND(cur);
668 if (ISSET(FTS_NOCHDIR)) {
669 cp = sp->fts_path + len;
670 *cp++ = '/';
671 }
672
673 level = cur->fts_level + 1;
674
675 /* Read the directory, attaching each entry to the `link' pointer. */
676 adjaddr = NULL;
677 for (head = tail = NULL, nitems = 0; dp = __readdir(dirp);) {
678 int namlen;
679
680 if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name))
681 continue;
682
683 namlen = _D_EXACT_NAMLEN (dp);
684 if ((p = fts_alloc(sp, dp->d_name, namlen)) == NULL)
685 goto mem1;
686 if (namlen > maxlen) {
687 if (fts_palloc(sp, (size_t)namlen)) {
688 /*
689 * No more memory for path or structures. Save
690 * errno, free up the current structure and the
691 * structures already allocated.
692 */
693 mem1: saved_errno = errno;
694 if (p)
695 free(p);
696 fts_lfree(head);
697 (void)__closedir(dirp);
698 __set_errno (saved_errno);
699 cur->fts_info = FTS_ERR;
700 SET(FTS_STOP);
701 return (NULL);
702 }
703 adjaddr = sp->fts_path;
704 maxlen = sp->fts_pathlen - sp->fts_cur->fts_pathlen - 1;
705 }
706
707 p->fts_pathlen = len + namlen + 1;
708 p->fts_parent = sp->fts_cur;
709 p->fts_level = level;
710
711 if (cderrno) {
712 if (nlinks) {
713 p->fts_info = FTS_NS;
714 p->fts_errno = cderrno;
715 } else
716 p->fts_info = FTS_NSOK;
717 p->fts_accpath = cur->fts_accpath;
718 } else if (nlinks == 0
719 #if defined DT_DIR && defined _DIRENT_HAVE_D_TYPE
720 || nlinks > 0 &&
721 dp->d_type != DT_DIR && dp->d_type != DT_UNKNOWN
722 #endif
723 ) {
724 p->fts_accpath =
725 ISSET(FTS_NOCHDIR) ? p->fts_path : p->fts_name;
726 p->fts_info = FTS_NSOK;
727 } else {
728 /* Build a file name for fts_stat to stat. */
729 if (ISSET(FTS_NOCHDIR)) {
730 p->fts_accpath = p->fts_path;
731 bcopy(p->fts_name, cp, p->fts_namelen + 1);
732 } else
733 p->fts_accpath = p->fts_name;
734 /* Stat it. */
735 p->fts_info = fts_stat(sp, dp, p, 0);
736
737 /* Decrement link count if applicable. */
738 if (nlinks > 0 && (p->fts_info == FTS_D ||
739 p->fts_info == FTS_DC || p->fts_info == FTS_DOT))
740 --nlinks;
741 }
742
743 /* We walk in directory order so "ls -f" doesn't get upset. */
744 p->fts_link = NULL;
745 if (head == NULL)
746 head = tail = p;
747 else {
748 tail->fts_link = p;
749 tail = p;
750 }
751 ++nitems;
752 }
753 (void)__closedir(dirp);
754
755 /*
756 * If had to realloc the path, adjust the addresses for the rest
757 * of the tree.
758 */
759 if (adjaddr)
760 fts_padjust(sp, adjaddr);
761
762 /*
763 * If not changing directories, reset the path back to original
764 * state.
765 */
766 if (ISSET(FTS_NOCHDIR)) {
767 if (cp - 1 > sp->fts_path)
768 --cp;
769 *cp = '\0';
770 }
771
772 /*
773 * If descended after called from fts_children or after called from
774 * fts_read and nothing found, get back. At the root level we use
775 * the saved fd; if one of fts_open()'s arguments is a relative path
776 * to an empty directory, we wind up here with no other way back. If
777 * can't get back, we're done.
778 */
779 if (descend && (type == BCHILD || !nitems) &&
780 (cur->fts_level == FTS_ROOTLEVEL ?
781 FCHDIR (sp, sp->fts_rfd) : CHDIR (sp, ".."))) {
782 cur->fts_info = FTS_ERR;
783 SET(FTS_STOP);
784 return (NULL);
785 }
786
787 /* If didn't find anything, return NULL. */
788 if (!nitems) {
789 if (type == BREAD)
790 cur->fts_info = FTS_DP;
791 return (NULL);
792 }
793
794 /* Sort the entries. */
795 if (sp->fts_compar && nitems > 1)
796 head = fts_sort(sp, head, nitems);
797 return (head);
798 }
799
800 static u_short
801 internal_function
802 fts_stat(sp, dp, p, follow)
803 FTS *sp;
804 register FTSENT *p;
805 struct dirent *dp;
806 int follow;
807 {
808 register FTSENT *t;
809 register dev_t dev;
810 register ino_t ino;
811 struct stat *sbp, sb;
812 int saved_errno;
813
814 /* If user needs stat info, stat buffer already allocated. */
815 sbp = ISSET(FTS_NOSTAT) ? &sb : p->fts_statp;
816
817 #ifdef DT_WHT
818 /*
819 * Whited-out files don't really exist. However, there's stat(2) file
820 * mask for them, so we set it so that programs (i.e., find) don't have
821 * to test FTS_W separately from other file types.
822 */
823 if (dp != NULL && dp->d_type == DT_WHT) {
824 memset(sbp, 0, sizeof(struct stat));
825 sbp->st_mode = S_IFWHT;
826 return (FTS_W);
827 }
828 #endif
829
830 /*
831 * If doing a logical walk, or application requested FTS_FOLLOW, do
832 * a stat(2). If that fails, check for a non-existent symlink. If
833 * fail, set the errno from the stat call.
834 */
835 if (ISSET(FTS_LOGICAL) || follow) {
836 if (stat(p->fts_accpath, sbp)) {
837 saved_errno = errno;
838 if (!lstat(p->fts_accpath, sbp)) {
839 __set_errno (0);
840 return (FTS_SLNONE);
841 }
842 p->fts_errno = saved_errno;
843 goto err;
844 }
845 } else if (lstat(p->fts_accpath, sbp)) {
846 p->fts_errno = errno;
847 err: __bzero(sbp, sizeof(struct stat));
848 return (FTS_NS);
849 }
850
851 if (S_ISDIR(sbp->st_mode)) {
852 /*
853 * Set the device/inode. Used to find cycles and check for
854 * crossing mount points. Also remember the link count, used
855 * in fts_build to limit the number of stat calls. It is
856 * understood that these fields are only referenced if fts_info
857 * is set to FTS_D.
858 */
859 dev = p->fts_dev = sbp->st_dev;
860 ino = p->fts_ino = sbp->st_ino;
861 p->fts_nlink = sbp->st_nlink;
862
863 if (ISDOT(p->fts_name))
864 return (FTS_DOT);
865
866 /*
867 * Cycle detection is done by brute force when the directory
868 * is first encountered. If the tree gets deep enough or the
869 * number of symbolic links to directories is high enough,
870 * something faster might be worthwhile.
871 */
872 for (t = p->fts_parent;
873 t->fts_level >= FTS_ROOTLEVEL; t = t->fts_parent)
874 if (ino == t->fts_ino && dev == t->fts_dev) {
875 p->fts_cycle = t;
876 return (FTS_DC);
877 }
878 return (FTS_D);
879 }
880 if (S_ISLNK(sbp->st_mode))
881 return (FTS_SL);
882 if (S_ISREG(sbp->st_mode))
883 return (FTS_F);
884 return (FTS_DEFAULT);
885 }
886
887 static FTSENT *
888 internal_function
889 fts_sort(sp, head, nitems)
890 FTS *sp;
891 FTSENT *head;
892 register int nitems;
893 {
894 register FTSENT **ap, *p;
895
896 /*
897 * Construct an array of pointers to the structures and call qsort(3).
898 * Reassemble the array in the order returned by qsort. If unable to
899 * sort for memory reasons, return the directory entries in their
900 * current order. Allocate enough space for the current needs plus
901 * 40 so don't realloc one entry at a time.
902 */
903 if (nitems > sp->fts_nitems) {
904 sp->fts_nitems = nitems + 40;
905 if ((sp->fts_array = realloc(sp->fts_array,
906 (size_t)(sp->fts_nitems * sizeof(FTSENT *)))) == NULL) {
907 sp->fts_nitems = 0;
908 return (head);
909 }
910 }
911 for (ap = sp->fts_array, p = head; p; p = p->fts_link)
912 *ap++ = p;
913 qsort((void *)sp->fts_array, nitems, sizeof(FTSENT *), sp->fts_compar);
914 for (head = *(ap = sp->fts_array); --nitems; ++ap)
915 ap[0]->fts_link = ap[1];
916 ap[0]->fts_link = NULL;
917 return (head);
918 }
919
920 static FTSENT *
921 internal_function
922 fts_alloc(sp, name, namelen)
923 FTS *sp;
924 const char *name;
925 register int namelen;
926 {
927 register FTSENT *p;
928 size_t len;
929
930 /*
931 * The file name is a variable length array and no stat structure is
932 * necessary if the user has set the nostat bit. Allocate the FTSENT
933 * structure, the file name and the stat structure in one chunk, but
934 * be careful that the stat structure is reasonably aligned. Since the
935 * fts_name field is declared to be of size 1, the fts_name pointer is
936 * namelen + 2 before the first possible address of the stat structure.
937 */
938 len = sizeof(FTSENT) + namelen;
939 if (!ISSET(FTS_NOSTAT))
940 len += sizeof(struct stat) + ALIGNBYTES;
941 if ((p = malloc(len)) == NULL)
942 return (NULL);
943
944 /* Copy the name plus the trailing NULL. */
945 bcopy(name, p->fts_name, namelen + 1);
946
947 if (!ISSET(FTS_NOSTAT))
948 p->fts_statp = (struct stat *)ALIGN(p->fts_name + namelen + 2);
949 p->fts_namelen = namelen;
950 p->fts_path = sp->fts_path;
951 p->fts_errno = 0;
952 p->fts_flags = 0;
953 p->fts_instr = FTS_NOINSTR;
954 p->fts_number = 0;
955 p->fts_pointer = NULL;
956 return (p);
957 }
958
959 static void
960 internal_function
961 fts_lfree(head)
962 register FTSENT *head;
963 {
964 register FTSENT *p;
965
966 /* Free a linked list of structures. */
967 while (p = head) {
968 head = head->fts_link;
969 free(p);
970 }
971 }
972
973 /*
974 * Allow essentially unlimited paths; find, rm, ls should all work on any tree.
975 * Most systems will allow creation of paths much longer than MAXPATHLEN, even
976 * though the kernel won't resolve them. Add the size (not just what's needed)
977 * plus 256 bytes so don't realloc the path 2 bytes at a time.
978 */
979 static int
980 internal_function
981 fts_palloc(sp, more)
982 FTS *sp;
983 size_t more;
984 {
985 sp->fts_pathlen += more + 256;
986 sp->fts_path = realloc(sp->fts_path, (size_t)sp->fts_pathlen);
987 return (sp->fts_path == NULL);
988 }
989
990 /*
991 * When the path is realloc'd, have to fix all of the pointers in structures
992 * already returned.
993 */
994 static void
995 internal_function
996 fts_padjust(sp, addr)
997 FTS *sp;
998 void *addr;
999 {
1000 FTSENT *p;
1001
1002 #define ADJUST(p) { \
1003 (p)->fts_accpath = \
1004 (char *)addr + ((p)->fts_accpath - (p)->fts_path); \
1005 (p)->fts_path = addr; \
1006 }
1007 /* Adjust the current set of children. */
1008 for (p = sp->fts_child; p; p = p->fts_link)
1009 ADJUST(p);
1010
1011 /* Adjust the rest of the tree. */
1012 for (p = sp->fts_cur; p->fts_level >= FTS_ROOTLEVEL;) {
1013 ADJUST(p);
1014 p = p->fts_link ? p->fts_link : p->fts_parent;
1015 }
1016 }
1017
1018 static size_t
1019 internal_function
1020 fts_maxarglen(argv)
1021 char * const *argv;
1022 {
1023 size_t len, max;
1024
1025 for (max = 0; *argv; ++argv)
1026 if ((len = strlen(*argv)) > max)
1027 max = len;
1028 return (max);
1029 }
This page took 0.091132 seconds and 6 git commands to generate.