1 /*- 2 * Copyright (c) 1990, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Cimarron D. Taylor of the University of California, Berkeley. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 3. All advertising materials mentioning features or use of this software 17 * must display the following acknowledgement: 18 * This product includes software developed by the University of 19 * California, Berkeley and its contributors. 20 * 4. Neither the name of the University nor the names of its contributors 21 * may be used to endorse or promote products derived from this software 22 * without specific prior written permission. 23 * 24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 34 * SUCH DAMAGE. 35 */ 36 37 #ifndef lint 38 static char sccsid[] = "@(#)function.c 8.6 (Berkeley) 4/1/94"; 39 #endif /* not lint */ 40 41 #include <sys/param.h> 42 #include <sys/ucred.h> 43 #include <sys/stat.h> 44 #include <sys/wait.h> 45 #include <sys/mount.h> 46 47 #include <err.h> 48 #include <errno.h> 49 #include <fnmatch.h> 50 #include <fts.h> 51 #include <grp.h> 52 #include <pwd.h> 53 #include <stdio.h> 54 #include <stdlib.h> 55 #include <string.h> 56 #include <tzfile.h> 57 #include <unistd.h> 58 59 #include "find.h" 60 61 #define COMPARE(a, b) { \ 62 switch (plan->flags) { \ 63 case F_EQUAL: \ 64 return (a == b); \ 65 case F_LESSTHAN: \ 66 return (a < b); \ 67 case F_GREATER: \ 68 return (a > b); \ 69 default: \ 70 abort(); \ 71 } \ 72 } 73 74 static PLAN *palloc __P((enum ntype, int (*) __P((PLAN *, FTSENT *)))); 75 76 /* 77 * find_parsenum -- 78 * Parse a string of the form [+-]# and return the value. 79 */ 80 static long 81 find_parsenum(plan, option, vp, endch) 82 PLAN *plan; 83 char *option, *vp, *endch; 84 { 85 long value; 86 char *endchar, *str; /* Pointer to character ending conversion. */ 87 88 /* Determine comparison from leading + or -. */ 89 str = vp; 90 switch (*str) { 91 case '+': 92 ++str; 93 plan->flags = F_GREATER; 94 break; 95 case '-': 96 ++str; 97 plan->flags = F_LESSTHAN; 98 break; 99 default: 100 plan->flags = F_EQUAL; 101 break; 102 } 103 104 /* 105 * Convert the string with strtol(). Note, if strtol() returns zero 106 * and endchar points to the beginning of the string we know we have 107 * a syntax error. 108 */ 109 value = strtol(str, &endchar, 10); 110 if (value == 0 && endchar == str) 111 errx(1, "%s: %s: illegal numeric value", option, vp); 112 if (endchar[0] && (endch == NULL || endchar[0] != *endch)) 113 errx(1, "%s: %s: illegal trailing character", option, vp); 114 if (endch) 115 *endch = endchar[0]; 116 return (value); 117 } 118 119 /* 120 * The value of n for the inode times (atime, ctime, and mtime) is a range, 121 * i.e. n matches from (n - 1) to n 24 hour periods. This interacts with 122 * -n, such that "-mtime -1" would be less than 0 days, which isn't what the 123 * user wanted. Correct so that -1 is "less than 1". 124 */ 125 #define TIME_CORRECT(p, ttype) \ 126 if ((p)->type == ttype && (p)->flags == F_LESSTHAN) \ 127 ++((p)->t_data); 128 129 /* 130 * -atime n functions -- 131 * 132 * True if the difference between the file access time and the 133 * current time is n 24 hour periods. 134 */ 135 int 136 f_atime(plan, entry) 137 PLAN *plan; 138 FTSENT *entry; 139 { 140 extern time_t now; 141 142 COMPARE((now - entry->fts_statp->st_atime + 143 SECSPERDAY - 1) / SECSPERDAY, plan->t_data); 144 } 145 146 PLAN * 147 c_atime(arg) 148 char *arg; 149 { 150 PLAN *new; 151 152 ftsoptions &= ~FTS_NOSTAT; 153 154 new = palloc(N_ATIME, f_atime); 155 new->t_data = find_parsenum(new, "-atime", arg, NULL); 156 TIME_CORRECT(new, N_ATIME); 157 return (new); 158 } 159 /* 160 * -ctime n functions -- 161 * 162 * True if the difference between the last change of file 163 * status information and the current time is n 24 hour periods. 164 */ 165 int 166 f_ctime(plan, entry) 167 PLAN *plan; 168 FTSENT *entry; 169 { 170 extern time_t now; 171 172 COMPARE((now - entry->fts_statp->st_ctime + 173 SECSPERDAY - 1) / SECSPERDAY, plan->t_data); 174 } 175 176 PLAN * 177 c_ctime(arg) 178 char *arg; 179 { 180 PLAN *new; 181 182 ftsoptions &= ~FTS_NOSTAT; 183 184 new = palloc(N_CTIME, f_ctime); 185 new->t_data = find_parsenum(new, "-ctime", arg, NULL); 186 TIME_CORRECT(new, N_CTIME); 187 return (new); 188 } 189 190 /* 191 * -depth functions -- 192 * 193 * Always true, causes descent of the directory hierarchy to be done 194 * so that all entries in a directory are acted on before the directory 195 * itself. 196 */ 197 int 198 f_always_true(plan, entry) 199 PLAN *plan; 200 FTSENT *entry; 201 { 202 return (1); 203 } 204 205 PLAN * 206 c_depth() 207 { 208 isdepth = 1; 209 210 return (palloc(N_DEPTH, f_always_true)); 211 } 212 213 /* 214 * [-exec | -ok] utility [arg ... ] ; functions -- 215 * 216 * True if the executed utility returns a zero value as exit status. 217 * The end of the primary expression is delimited by a semicolon. If 218 * "{}" occurs anywhere, it gets replaced by the current pathname. 219 * The current directory for the execution of utility is the same as 220 * the current directory when the find utility was started. 221 * 222 * The primary -ok is different in that it requests affirmation of the 223 * user before executing the utility. 224 */ 225 int 226 f_exec(plan, entry) 227 register PLAN *plan; 228 FTSENT *entry; 229 { 230 extern int dotfd; 231 register int cnt; 232 pid_t pid; 233 int status; 234 235 for (cnt = 0; plan->e_argv[cnt]; ++cnt) 236 if (plan->e_len[cnt]) 237 brace_subst(plan->e_orig[cnt], &plan->e_argv[cnt], 238 entry->fts_path, plan->e_len[cnt]); 239 240 if (plan->flags == F_NEEDOK && !queryuser(plan->e_argv)) 241 return (0); 242 243 switch (pid = vfork()) { 244 case -1: 245 err(1, "fork"); 246 /* NOTREACHED */ 247 case 0: 248 if (fchdir(dotfd)) { 249 warn("chdir"); 250 _exit(1); 251 } 252 execvp(plan->e_argv[0], plan->e_argv); 253 warn("%s", plan->e_argv[0]); 254 _exit(1); 255 } 256 pid = waitpid(pid, &status, 0); 257 return (pid != -1 && WIFEXITED(status) && !WEXITSTATUS(status)); 258 } 259 260 /* 261 * c_exec -- 262 * build three parallel arrays, one with pointers to the strings passed 263 * on the command line, one with (possibly duplicated) pointers to the 264 * argv array, and one with integer values that are lengths of the 265 * strings, but also flags meaning that the string has to be massaged. 266 */ 267 PLAN * 268 c_exec(argvp, isok) 269 char ***argvp; 270 int isok; 271 { 272 PLAN *new; /* node returned */ 273 register int cnt; 274 register char **argv, **ap, *p; 275 276 isoutput = 1; 277 278 new = palloc(N_EXEC, f_exec); 279 if (isok) 280 new->flags = F_NEEDOK; 281 282 for (ap = argv = *argvp;; ++ap) { 283 if (!*ap) 284 errx(1, 285 "%s: no terminating \";\"", isok ? "-ok" : "-exec"); 286 if (**ap == ';') 287 break; 288 } 289 290 cnt = ap - *argvp + 1; 291 new->e_argv = (char **)emalloc((u_int)cnt * sizeof(char *)); 292 new->e_orig = (char **)emalloc((u_int)cnt * sizeof(char *)); 293 new->e_len = (int *)emalloc((u_int)cnt * sizeof(int)); 294 295 for (argv = *argvp, cnt = 0; argv < ap; ++argv, ++cnt) { 296 new->e_orig[cnt] = *argv; 297 for (p = *argv; *p; ++p) 298 if (p[0] == '{' && p[1] == '}') { 299 new->e_argv[cnt] = emalloc((u_int)MAXPATHLEN); 300 new->e_len[cnt] = MAXPATHLEN; 301 break; 302 } 303 if (!*p) { 304 new->e_argv[cnt] = *argv; 305 new->e_len[cnt] = 0; 306 } 307 } 308 new->e_argv[cnt] = new->e_orig[cnt] = NULL; 309 310 *argvp = argv + 1; 311 return (new); 312 } 313 314 /* 315 * -follow functions -- 316 * 317 * Always true, causes symbolic links to be followed on a global 318 * basis. 319 */ 320 PLAN * 321 c_follow() 322 { 323 ftsoptions &= ~FTS_PHYSICAL; 324 ftsoptions |= FTS_LOGICAL; 325 326 return (palloc(N_FOLLOW, f_always_true)); 327 } 328 329 /* 330 * -fstype functions -- 331 * 332 * True if the file is of a certain type. 333 */ 334 int 335 f_fstype(plan, entry) 336 PLAN *plan; 337 FTSENT *entry; 338 { 339 static dev_t curdev; /* need a guaranteed illegal dev value */ 340 static int first = 1; 341 struct statfs sb; 342 static short val; 343 char *p, save[2]; 344 345 /* Only check when we cross mount point. */ 346 if (first || curdev != entry->fts_statp->st_dev) { 347 curdev = entry->fts_statp->st_dev; 348 349 /* 350 * Statfs follows symlinks; find wants the link's file system, 351 * not where it points. 352 */ 353 if (entry->fts_info == FTS_SL || 354 entry->fts_info == FTS_SLNONE) { 355 if ((p = strrchr(entry->fts_accpath, '/')) != NULL) 356 ++p; 357 else 358 p = entry->fts_accpath; 359 save[0] = p[0]; 360 p[0] = '.'; 361 save[1] = p[1]; 362 p[1] = '\0'; 363 364 } else 365 p = NULL; 366 367 if (statfs(entry->fts_accpath, &sb)) 368 err(1, "%s", entry->fts_accpath); 369 370 if (p) { 371 p[0] = save[0]; 372 p[1] = save[1]; 373 } 374 375 first = 0; 376 switch (plan->flags) { 377 case F_MTFLAG: 378 val = sb.f_flags; 379 break; 380 case F_MTTYPE: 381 val = sb.f_type; 382 break; 383 default: 384 abort(); 385 } 386 } 387 switch(plan->flags) { 388 case F_MTFLAG: 389 return (val & plan->mt_data); 390 case F_MTTYPE: 391 return (val == plan->mt_data); 392 default: 393 abort(); 394 } 395 } 396 397 PLAN * 398 c_fstype(arg) 399 char *arg; 400 { 401 register PLAN *new; 402 403 ftsoptions &= ~FTS_NOSTAT; 404 405 new = palloc(N_FSTYPE, f_fstype); 406 switch (*arg) { 407 case 'l': 408 if (!strcmp(arg, "local")) { 409 new->flags = F_MTFLAG; 410 new->mt_data = MNT_LOCAL; 411 return (new); 412 } 413 break; 414 case 'm': 415 if (!strcmp(arg, "mfs")) { 416 new->flags = F_MTTYPE; 417 new->mt_data = MOUNT_MFS; 418 return (new); 419 } 420 break; 421 case 'n': 422 if (!strcmp(arg, "nfs")) { 423 new->flags = F_MTTYPE; 424 new->mt_data = MOUNT_NFS; 425 return (new); 426 } 427 break; 428 case 'p': 429 if (!strcmp(arg, "msdos")) { 430 new->flags = F_MTTYPE; 431 new->mt_data = MOUNT_MSDOS; 432 return (new); 433 } 434 break; 435 case 'r': 436 if (!strcmp(arg, "rdonly")) { 437 new->flags = F_MTFLAG; 438 new->mt_data = MNT_RDONLY; 439 return (new); 440 } 441 break; 442 case 'u': 443 if (!strcmp(arg, "ufs")) { 444 new->flags = F_MTTYPE; 445 new->mt_data = MOUNT_UFS; 446 return (new); 447 } 448 break; 449 } 450 errx(1, "%s: unknown file type", arg); 451 /* NOTREACHED */ 452 } 453 454 /* 455 * -group gname functions -- 456 * 457 * True if the file belongs to the group gname. If gname is numeric and 458 * an equivalent of the getgrnam() function does not return a valid group 459 * name, gname is taken as a group ID. 460 */ 461 int 462 f_group(plan, entry) 463 PLAN *plan; 464 FTSENT *entry; 465 { 466 return (entry->fts_statp->st_gid == plan->g_data); 467 } 468 469 PLAN * 470 c_group(gname) 471 char *gname; 472 { 473 PLAN *new; 474 struct group *g; 475 gid_t gid; 476 477 ftsoptions &= ~FTS_NOSTAT; 478 479 g = getgrnam(gname); 480 if (g == NULL) { 481 gid = atoi(gname); 482 if (gid == 0 && gname[0] != '0') 483 errx(1, "-group: %s: no such group", gname); 484 } else 485 gid = g->gr_gid; 486 487 new = palloc(N_GROUP, f_group); 488 new->g_data = gid; 489 return (new); 490 } 491 492 /* 493 * -inum n functions -- 494 * 495 * True if the file has inode # n. 496 */ 497 int 498 f_inum(plan, entry) 499 PLAN *plan; 500 FTSENT *entry; 501 { 502 COMPARE(entry->fts_statp->st_ino, plan->i_data); 503 } 504 505 PLAN * 506 c_inum(arg) 507 char *arg; 508 { 509 PLAN *new; 510 511 ftsoptions &= ~FTS_NOSTAT; 512 513 new = palloc(N_INUM, f_inum); 514 new->i_data = find_parsenum(new, "-inum", arg, NULL); 515 return (new); 516 } 517 518 /* 519 * -links n functions -- 520 * 521 * True if the file has n links. 522 */ 523 int 524 f_links(plan, entry) 525 PLAN *plan; 526 FTSENT *entry; 527 { 528 COMPARE(entry->fts_statp->st_nlink, plan->l_data); 529 } 530 531 PLAN * 532 c_links(arg) 533 char *arg; 534 { 535 PLAN *new; 536 537 ftsoptions &= ~FTS_NOSTAT; 538 539 new = palloc(N_LINKS, f_links); 540 new->l_data = (nlink_t)find_parsenum(new, "-links", arg, NULL); 541 return (new); 542 } 543 544 /* 545 * -ls functions -- 546 * 547 * Always true - prints the current entry to stdout in "ls" format. 548 */ 549 int 550 f_ls(plan, entry) 551 PLAN *plan; 552 FTSENT *entry; 553 { 554 printlong(entry->fts_path, entry->fts_accpath, entry->fts_statp); 555 return (1); 556 } 557 558 PLAN * 559 c_ls() 560 { 561 ftsoptions &= ~FTS_NOSTAT; 562 isoutput = 1; 563 564 return (palloc(N_LS, f_ls)); 565 } 566 567 /* 568 * -mtime n functions -- 569 * 570 * True if the difference between the file modification time and the 571 * current time is n 24 hour periods. 572 */ 573 int 574 f_mtime(plan, entry) 575 PLAN *plan; 576 FTSENT *entry; 577 { 578 extern time_t now; 579 580 COMPARE((now - entry->fts_statp->st_mtime + SECSPERDAY - 1) / 581 SECSPERDAY, plan->t_data); 582 } 583 584 PLAN * 585 c_mtime(arg) 586 char *arg; 587 { 588 PLAN *new; 589 590 ftsoptions &= ~FTS_NOSTAT; 591 592 new = palloc(N_MTIME, f_mtime); 593 new->t_data = find_parsenum(new, "-mtime", arg, NULL); 594 TIME_CORRECT(new, N_MTIME); 595 return (new); 596 } 597 598 /* 599 * -name functions -- 600 * 601 * True if the basename of the filename being examined 602 * matches pattern using Pattern Matching Notation S3.14 603 */ 604 int 605 f_name(plan, entry) 606 PLAN *plan; 607 FTSENT *entry; 608 { 609 return (!fnmatch(plan->c_data, entry->fts_name, 0)); 610 } 611 612 PLAN * 613 c_name(pattern) 614 char *pattern; 615 { 616 PLAN *new; 617 618 new = palloc(N_NAME, f_name); 619 new->c_data = pattern; 620 return (new); 621 } 622 623 /* 624 * -newer file functions -- 625 * 626 * True if the current file has been modified more recently 627 * then the modification time of the file named by the pathname 628 * file. 629 */ 630 int 631 f_newer(plan, entry) 632 PLAN *plan; 633 FTSENT *entry; 634 { 635 return (entry->fts_statp->st_mtime > plan->t_data); 636 } 637 638 PLAN * 639 c_newer(filename) 640 char *filename; 641 { 642 PLAN *new; 643 struct stat sb; 644 645 ftsoptions &= ~FTS_NOSTAT; 646 647 if (stat(filename, &sb)) 648 err(1, "%s", filename); 649 new = palloc(N_NEWER, f_newer); 650 new->t_data = sb.st_mtime; 651 return (new); 652 } 653 654 /* 655 * -nogroup functions -- 656 * 657 * True if file belongs to a user ID for which the equivalent 658 * of the getgrnam() 9.2.1 [POSIX.1] function returns NULL. 659 */ 660 int 661 f_nogroup(plan, entry) 662 PLAN *plan; 663 FTSENT *entry; 664 { 665 char *group_from_gid(); 666 667 return (group_from_gid(entry->fts_statp->st_gid, 1) ? 0 : 1); 668 } 669 670 PLAN * 671 c_nogroup() 672 { 673 ftsoptions &= ~FTS_NOSTAT; 674 675 return (palloc(N_NOGROUP, f_nogroup)); 676 } 677 678 /* 679 * -nouser functions -- 680 * 681 * True if file belongs to a user ID for which the equivalent 682 * of the getpwuid() 9.2.2 [POSIX.1] function returns NULL. 683 */ 684 int 685 f_nouser(plan, entry) 686 PLAN *plan; 687 FTSENT *entry; 688 { 689 char *user_from_uid(); 690 691 return (user_from_uid(entry->fts_statp->st_uid, 1) ? 0 : 1); 692 } 693 694 PLAN * 695 c_nouser() 696 { 697 ftsoptions &= ~FTS_NOSTAT; 698 699 return (palloc(N_NOUSER, f_nouser)); 700 } 701 702 /* 703 * -path functions -- 704 * 705 * True if the path of the filename being examined 706 * matches pattern using Pattern Matching Notation S3.14 707 */ 708 int 709 f_path(plan, entry) 710 PLAN *plan; 711 FTSENT *entry; 712 { 713 return (!fnmatch(plan->c_data, entry->fts_path, 0)); 714 } 715 716 PLAN * 717 c_path(pattern) 718 char *pattern; 719 { 720 PLAN *new; 721 722 new = palloc(N_NAME, f_path); 723 new->c_data = pattern; 724 return (new); 725 } 726 727 /* 728 * -perm functions -- 729 * 730 * The mode argument is used to represent file mode bits. If it starts 731 * with a leading digit, it's treated as an octal mode, otherwise as a 732 * symbolic mode. 733 */ 734 int 735 f_perm(plan, entry) 736 PLAN *plan; 737 FTSENT *entry; 738 { 739 mode_t mode; 740 741 mode = entry->fts_statp->st_mode & 742 (S_ISUID|S_ISGID|S_ISTXT|S_IRWXU|S_IRWXG|S_IRWXO); 743 if (plan->flags == F_ATLEAST) 744 return ((plan->m_data | mode) == mode); 745 else 746 return (mode == plan->m_data); 747 /* NOTREACHED */ 748 } 749 750 PLAN * 751 c_perm(perm) 752 char *perm; 753 { 754 PLAN *new; 755 mode_t *set; 756 757 ftsoptions &= ~FTS_NOSTAT; 758 759 new = palloc(N_PERM, f_perm); 760 761 if (*perm == '-') { 762 new->flags = F_ATLEAST; 763 ++perm; 764 } 765 766 if ((set = setmode(perm)) == NULL) 767 err(1, "-perm: %s: illegal mode string", perm); 768 769 new->m_data = getmode(set, 0); 770 return (new); 771 } 772 773 /* 774 * -print functions -- 775 * 776 * Always true, causes the current pathame to be written to 777 * standard output. 778 */ 779 int 780 f_print(plan, entry) 781 PLAN *plan; 782 FTSENT *entry; 783 { 784 (void)printf("%s\n", entry->fts_path); 785 return (1); 786 } 787 788 PLAN * 789 c_print() 790 { 791 isoutput = 1; 792 793 return (palloc(N_PRINT, f_print)); 794 } 795 796 /* 797 * -prune functions -- 798 * 799 * Prune a portion of the hierarchy. 800 */ 801 int 802 f_prune(plan, entry) 803 PLAN *plan; 804 FTSENT *entry; 805 { 806 extern FTS *tree; 807 808 if (fts_set(tree, entry, FTS_SKIP)) 809 err(1, "%s", entry->fts_path); 810 return (1); 811 } 812 813 PLAN * 814 c_prune() 815 { 816 return (palloc(N_PRUNE, f_prune)); 817 } 818 819 /* 820 * -size n[c] functions -- 821 * 822 * True if the file size in bytes, divided by an implementation defined 823 * value and rounded up to the next integer, is n. If n is followed by 824 * a c, the size is in bytes. 825 */ 826 #define FIND_SIZE 512 827 static int divsize = 1; 828 829 int 830 f_size(plan, entry) 831 PLAN *plan; 832 FTSENT *entry; 833 { 834 off_t size; 835 836 size = divsize ? (entry->fts_statp->st_size + FIND_SIZE - 1) / 837 FIND_SIZE : entry->fts_statp->st_size; 838 COMPARE(size, plan->o_data); 839 } 840 841 PLAN * 842 c_size(arg) 843 char *arg; 844 { 845 PLAN *new; 846 char endch; 847 848 ftsoptions &= ~FTS_NOSTAT; 849 850 new = palloc(N_SIZE, f_size); 851 endch = 'c'; 852 new->o_data = find_parsenum(new, "-size", arg, &endch); 853 if (endch == 'c') 854 divsize = 0; 855 return (new); 856 } 857 858 /* 859 * -type c functions -- 860 * 861 * True if the type of the file is c, where c is b, c, d, p, or f for 862 * block special file, character special file, directory, FIFO, or 863 * regular file, respectively. 864 */ 865 int 866 f_type(plan, entry) 867 PLAN *plan; 868 FTSENT *entry; 869 { 870 return ((entry->fts_statp->st_mode & S_IFMT) == plan->m_data); 871 } 872 873 PLAN * 874 c_type(typestring) 875 char *typestring; 876 { 877 PLAN *new; 878 mode_t mask; 879 880 ftsoptions &= ~FTS_NOSTAT; 881 882 switch (typestring[0]) { 883 case 'b': 884 mask = S_IFBLK; 885 break; 886 case 'c': 887 mask = S_IFCHR; 888 break; 889 case 'd': 890 mask = S_IFDIR; 891 break; 892 case 'f': 893 mask = S_IFREG; 894 break; 895 case 'l': 896 mask = S_IFLNK; 897 break; 898 case 'p': 899 mask = S_IFIFO; 900 break; 901 case 's': 902 mask = S_IFSOCK; 903 break; 904 default: 905 errx(1, "-type: %s: unknown type", typestring); 906 } 907 908 new = palloc(N_TYPE, f_type); 909 new->m_data = mask; 910 return (new); 911 } 912 913 /* 914 * -user uname functions -- 915 * 916 * True if the file belongs to the user uname. If uname is numeric and 917 * an equivalent of the getpwnam() S9.2.2 [POSIX.1] function does not 918 * return a valid user name, uname is taken as a user ID. 919 */ 920 int 921 f_user(plan, entry) 922 PLAN *plan; 923 FTSENT *entry; 924 { 925 return (entry->fts_statp->st_uid == plan->u_data); 926 } 927 928 PLAN * 929 c_user(username) 930 char *username; 931 { 932 PLAN *new; 933 struct passwd *p; 934 uid_t uid; 935 936 ftsoptions &= ~FTS_NOSTAT; 937 938 p = getpwnam(username); 939 if (p == NULL) { 940 uid = atoi(username); 941 if (uid == 0 && username[0] != '0') 942 errx(1, "-user: %s: no such user", username); 943 } else 944 uid = p->pw_uid; 945 946 new = palloc(N_USER, f_user); 947 new->u_data = uid; 948 return (new); 949 } 950 951 /* 952 * -xdev functions -- 953 * 954 * Always true, causes find not to decend past directories that have a 955 * different device ID (st_dev, see stat() S5.6.2 [POSIX.1]) 956 */ 957 PLAN * 958 c_xdev() 959 { 960 ftsoptions |= FTS_XDEV; 961 962 return (palloc(N_XDEV, f_always_true)); 963 } 964 965 /* 966 * ( expression ) functions -- 967 * 968 * True if expression is true. 969 */ 970 int 971 f_expr(plan, entry) 972 PLAN *plan; 973 FTSENT *entry; 974 { 975 register PLAN *p; 976 register int state; 977 978 for (p = plan->p_data[0]; 979 p && (state = (p->eval)(p, entry)); p = p->next); 980 return (state); 981 } 982 983 /* 984 * N_OPENPAREN and N_CLOSEPAREN nodes are temporary place markers. They are 985 * eliminated during phase 2 of find_formplan() --- the '(' node is converted 986 * to a N_EXPR node containing the expression and the ')' node is discarded. 987 */ 988 PLAN * 989 c_openparen() 990 { 991 return (palloc(N_OPENPAREN, (int (*)())-1)); 992 } 993 994 PLAN * 995 c_closeparen() 996 { 997 return (palloc(N_CLOSEPAREN, (int (*)())-1)); 998 } 999 1000 /* 1001 * ! expression functions -- 1002 * 1003 * Negation of a primary; the unary NOT operator. 1004 */ 1005 int 1006 f_not(plan, entry) 1007 PLAN *plan; 1008 FTSENT *entry; 1009 { 1010 register PLAN *p; 1011 register int state; 1012 1013 for (p = plan->p_data[0]; 1014 p && (state = (p->eval)(p, entry)); p = p->next); 1015 return (!state); 1016 } 1017 1018 PLAN * 1019 c_not() 1020 { 1021 return (palloc(N_NOT, f_not)); 1022 } 1023 1024 /* 1025 * expression -o expression functions -- 1026 * 1027 * Alternation of primaries; the OR operator. The second expression is 1028 * not evaluated if the first expression is true. 1029 */ 1030 int 1031 f_or(plan, entry) 1032 PLAN *plan; 1033 FTSENT *entry; 1034 { 1035 register PLAN *p; 1036 register int state; 1037 1038 for (p = plan->p_data[0]; 1039 p && (state = (p->eval)(p, entry)); p = p->next); 1040 1041 if (state) 1042 return (1); 1043 1044 for (p = plan->p_data[1]; 1045 p && (state = (p->eval)(p, entry)); p = p->next); 1046 return (state); 1047 } 1048 1049 PLAN * 1050 c_or() 1051 { 1052 return (palloc(N_OR, f_or)); 1053 } 1054 1055 static PLAN * 1056 palloc(t, f) 1057 enum ntype t; 1058 int (*f) __P((PLAN *, FTSENT *)); 1059 { 1060 PLAN *new; 1061 1062 if ((new = malloc(sizeof(PLAN))) == NULL) 1063 err(1, NULL); 1064 new->type = t; 1065 new->eval = f; 1066 new->flags = 0; 1067 new->next = NULL; 1068 return (new); 1069 } 1070