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