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