]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - usr.bin/find/function.c
MFC r236596:
[FreeBSD/stable/8.git] / usr.bin / find / function.c
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 #if 0
39 static const char sccsid[] = "@(#)function.c    8.10 (Berkeley) 5/4/95";
40 #endif
41 #endif /* not lint */
42
43 #include <sys/cdefs.h>
44 __FBSDID("$FreeBSD$");
45
46 #include <sys/param.h>
47 #include <sys/ucred.h>
48 #include <sys/stat.h>
49 #include <sys/types.h>
50 #include <sys/acl.h>
51 #include <sys/wait.h>
52 #include <sys/mount.h>
53 #include <sys/timeb.h>
54
55 #include <dirent.h>
56 #include <err.h>
57 #include <errno.h>
58 #include <fnmatch.h>
59 #include <fts.h>
60 #include <grp.h>
61 #include <limits.h>
62 #include <pwd.h>
63 #include <regex.h>
64 #include <stdio.h>
65 #include <stdlib.h>
66 #include <string.h>
67 #include <unistd.h>
68 #include <ctype.h>
69
70 #include "find.h"
71
72 static PLAN *palloc(OPTION *);
73 static long long find_parsenum(PLAN *, const char *, char *, char *);
74 static long long find_parsetime(PLAN *, const char *, char *);
75 static char *nextarg(OPTION *, char ***);
76
77 extern char **environ;
78
79 static PLAN *lastexecplus = NULL;
80
81 #define COMPARE(a, b) do {                                              \
82         switch (plan->flags & F_ELG_MASK) {                             \
83         case F_EQUAL:                                                   \
84                 return (a == b);                                        \
85         case F_LESSTHAN:                                                \
86                 return (a < b);                                         \
87         case F_GREATER:                                                 \
88                 return (a > b);                                         \
89         default:                                                        \
90                 abort();                                                \
91         }                                                               \
92 } while(0)
93
94 static PLAN *
95 palloc(OPTION *option)
96 {
97         PLAN *new;
98
99         if ((new = malloc(sizeof(PLAN))) == NULL)
100                 err(1, NULL);
101         new->execute = option->execute;
102         new->flags = option->flags;
103         new->next = NULL;
104         return new;
105 }
106
107 /*
108  * find_parsenum --
109  *      Parse a string of the form [+-]# and return the value.
110  */
111 static long long
112 find_parsenum(PLAN *plan, const char *option, char *vp, char *endch)
113 {
114         long long value;
115         char *endchar, *str;    /* Pointer to character ending conversion. */
116
117         /* Determine comparison from leading + or -. */
118         str = vp;
119         switch (*str) {
120         case '+':
121                 ++str;
122                 plan->flags |= F_GREATER;
123                 break;
124         case '-':
125                 ++str;
126                 plan->flags |= F_LESSTHAN;
127                 break;
128         default:
129                 plan->flags |= F_EQUAL;
130                 break;
131         }
132
133         /*
134          * Convert the string with strtoq().  Note, if strtoq() returns zero
135          * and endchar points to the beginning of the string we know we have
136          * a syntax error.
137          */
138         value = strtoq(str, &endchar, 10);
139         if (value == 0 && endchar == str)
140                 errx(1, "%s: %s: illegal numeric value", option, vp);
141         if (endchar[0] && endch == NULL)
142                 errx(1, "%s: %s: illegal trailing character", option, vp);
143         if (endch)
144                 *endch = endchar[0];
145         return value;
146 }
147
148 /*
149  * find_parsetime --
150  *      Parse a string of the form [+-]([0-9]+[smhdw]?)+ and return the value.
151  */
152 static long long
153 find_parsetime(PLAN *plan, const char *option, char *vp)
154 {
155         long long secs, value;
156         char *str, *unit;       /* Pointer to character ending conversion. */
157
158         /* Determine comparison from leading + or -. */
159         str = vp;
160         switch (*str) {
161         case '+':
162                 ++str;
163                 plan->flags |= F_GREATER;
164                 break;
165         case '-':
166                 ++str;
167                 plan->flags |= F_LESSTHAN;
168                 break;
169         default:
170                 plan->flags |= F_EQUAL;
171                 break;
172         }
173
174         value = strtoq(str, &unit, 10);
175         if (value == 0 && unit == str) {
176                 errx(1, "%s: %s: illegal time value", option, vp);
177                 /* NOTREACHED */
178         }
179         if (*unit == '\0')
180                 return value;
181
182         /* Units syntax. */
183         secs = 0;
184         for (;;) {
185                 switch(*unit) {
186                 case 's':       /* seconds */
187                         secs += value;
188                         break;
189                 case 'm':       /* minutes */
190                         secs += value * 60;
191                         break;
192                 case 'h':       /* hours */
193                         secs += value * 3600;
194                         break;
195                 case 'd':       /* days */
196                         secs += value * 86400;
197                         break;
198                 case 'w':       /* weeks */
199                         secs += value * 604800;
200                         break;
201                 default:
202                         errx(1, "%s: %s: bad unit '%c'", option, vp, *unit);
203                         /* NOTREACHED */
204                 }
205                 str = unit + 1;
206                 if (*str == '\0')       /* EOS */
207                         break;
208                 value = strtoq(str, &unit, 10);
209                 if (value == 0 && unit == str) {
210                         errx(1, "%s: %s: illegal time value", option, vp);
211                         /* NOTREACHED */
212                 }
213                 if (*unit == '\0') {
214                         errx(1, "%s: %s: missing trailing unit", option, vp);
215                         /* NOTREACHED */
216                 }
217         }
218         plan->flags |= F_EXACTTIME;
219         return secs;
220 }
221
222 /*
223  * nextarg --
224  *      Check that another argument still exists, return a pointer to it,
225  *      and increment the argument vector pointer.
226  */
227 static char *
228 nextarg(OPTION *option, char ***argvp)
229 {
230         char *arg;
231
232         if ((arg = **argvp) == 0)
233                 errx(1, "%s: requires additional arguments", option->name);
234         (*argvp)++;
235         return arg;
236 } /* nextarg() */
237
238 /*
239  * The value of n for the inode times (atime, birthtime, ctime, mtime) is a
240  * range, i.e. n matches from (n - 1) to n 24 hour periods.  This interacts
241  * with -n, such that "-mtime -1" would be less than 0 days, which isn't what
242  * the user wanted.  Correct so that -1 is "less than 1".
243  */
244 #define TIME_CORRECT(p) \
245         if (((p)->flags & F_ELG_MASK) == F_LESSTHAN) \
246                 ++((p)->t_data);
247
248 /*
249  * -[acm]min n functions --
250  *
251  *    True if the difference between the
252  *              file access time (-amin)
253  *              file birth time (-Bmin)
254  *              last change of file status information (-cmin)
255  *              file modification time (-mmin)
256  *    and the current time is n min periods.
257  */
258 int
259 f_Xmin(PLAN *plan, FTSENT *entry)
260 {
261         if (plan->flags & F_TIME_C) {
262                 COMPARE((now - entry->fts_statp->st_ctime +
263                     60 - 1) / 60, plan->t_data);
264         } else if (plan->flags & F_TIME_A) {
265                 COMPARE((now - entry->fts_statp->st_atime +
266                     60 - 1) / 60, plan->t_data);
267         } else if (plan->flags & F_TIME_B) {
268                 COMPARE((now - entry->fts_statp->st_birthtime +
269                     60 - 1) / 60, plan->t_data);
270         } else {
271                 COMPARE((now - entry->fts_statp->st_mtime +
272                     60 - 1) / 60, plan->t_data);
273         }
274 }
275
276 PLAN *
277 c_Xmin(OPTION *option, char ***argvp)
278 {
279         char *nmins;
280         PLAN *new;
281
282         nmins = nextarg(option, argvp);
283         ftsoptions &= ~FTS_NOSTAT;
284
285         new = palloc(option);
286         new->t_data = find_parsenum(new, option->name, nmins, NULL);
287         TIME_CORRECT(new);
288         return new;
289 }
290
291 /*
292  * -[acm]time n functions --
293  *
294  *      True if the difference between the
295  *              file access time (-atime)
296  *              file birth time (-Btime)
297  *              last change of file status information (-ctime)
298  *              file modification time (-mtime)
299  *      and the current time is n 24 hour periods.
300  */
301
302 int
303 f_Xtime(PLAN *plan, FTSENT *entry)
304 {
305         time_t xtime;
306
307         if (plan->flags & F_TIME_A)
308                 xtime = entry->fts_statp->st_atime;
309         else if (plan->flags & F_TIME_B)
310                 xtime = entry->fts_statp->st_birthtime;
311         else if (plan->flags & F_TIME_C)
312                 xtime = entry->fts_statp->st_ctime;
313         else
314                 xtime = entry->fts_statp->st_mtime;
315
316         if (plan->flags & F_EXACTTIME)
317                 COMPARE(now - xtime, plan->t_data);
318         else
319                 COMPARE((now - xtime + 86400 - 1) / 86400, plan->t_data);
320 }
321
322 PLAN *
323 c_Xtime(OPTION *option, char ***argvp)
324 {
325         char *value;
326         PLAN *new;
327
328         value = nextarg(option, argvp);
329         ftsoptions &= ~FTS_NOSTAT;
330
331         new = palloc(option);
332         new->t_data = find_parsetime(new, option->name, value);
333         if (!(new->flags & F_EXACTTIME))
334                 TIME_CORRECT(new);
335         return new;
336 }
337
338 /*
339  * -maxdepth/-mindepth n functions --
340  *
341  *        Does the same as -prune if the level of the current file is
342  *        greater/less than the specified maximum/minimum depth.
343  *
344  *        Note that -maxdepth and -mindepth are handled specially in
345  *        find_execute() so their f_* functions are set to f_always_true().
346  */
347 PLAN *
348 c_mXXdepth(OPTION *option, char ***argvp)
349 {
350         char *dstr;
351         PLAN *new;
352
353         dstr = nextarg(option, argvp);
354         if (dstr[0] == '-')
355                 /* all other errors handled by find_parsenum() */
356                 errx(1, "%s: %s: value must be positive", option->name, dstr);
357
358         new = palloc(option);
359         if (option->flags & F_MAXDEPTH)
360                 maxdepth = find_parsenum(new, option->name, dstr, NULL);
361         else
362                 mindepth = find_parsenum(new, option->name, dstr, NULL);
363         return new;
364 }
365
366 /*
367  * -acl function --
368  *
369  *      Show files with EXTENDED ACL attributes.
370  */
371 int
372 f_acl(PLAN *plan __unused, FTSENT *entry)
373 {
374         acl_t facl;
375         acl_type_t acl_type;
376         int acl_supported = 0, ret, trivial;
377
378         if (S_ISLNK(entry->fts_statp->st_mode))
379                 return 0;
380         ret = pathconf(entry->fts_accpath, _PC_ACL_NFS4);
381         if (ret > 0) {
382                 acl_supported = 1;
383                 acl_type = ACL_TYPE_NFS4;
384         } else if (ret < 0 && errno != EINVAL) {
385                 warn("%s", entry->fts_accpath);
386                 return (0);
387         }
388         if (acl_supported == 0) {
389                 ret = pathconf(entry->fts_accpath, _PC_ACL_EXTENDED);
390                 if (ret > 0) {
391                         acl_supported = 1;
392                         acl_type = ACL_TYPE_ACCESS;
393                 } else if (ret < 0 && errno != EINVAL) {
394                         warn("%s", entry->fts_accpath);
395                         return (0);
396                 }
397         }
398         if (acl_supported == 0)
399                 return (0);
400
401         facl = acl_get_file(entry->fts_accpath, acl_type);
402         if (facl == NULL) {
403                 warn("%s", entry->fts_accpath);
404                 return (0);
405         }
406         ret = acl_is_trivial_np(facl, &trivial);
407         acl_free(facl);
408         if (ret) {
409                 warn("%s", entry->fts_accpath);
410                 acl_free(facl);
411                 return (0);
412         }
413         if (trivial)
414                 return (0);
415         return (1);
416 }
417
418 PLAN *
419 c_acl(OPTION *option, char ***argvp __unused)
420 {
421         ftsoptions &= ~FTS_NOSTAT;
422         return (palloc(option));
423 }
424
425 /*
426  * -delete functions --
427  *
428  *      True always.  Makes its best shot and continues on regardless.
429  */
430 int
431 f_delete(PLAN *plan __unused, FTSENT *entry)
432 {
433         /* ignore these from fts */
434         if (strcmp(entry->fts_accpath, ".") == 0 ||
435             strcmp(entry->fts_accpath, "..") == 0)
436                 return 1;
437
438         /* sanity check */
439         if (isdepth == 0 ||                     /* depth off */
440             (ftsoptions & FTS_NOSTAT))          /* not stat()ing */
441                 errx(1, "-delete: insecure options got turned on");
442
443         if (!(ftsoptions & FTS_PHYSICAL) ||     /* physical off */
444             (ftsoptions & FTS_LOGICAL))         /* or finally, logical on */
445                 errx(1, "-delete: forbidden when symlinks are followed");
446
447         /* Potentially unsafe - do not accept relative paths whatsoever */
448         if (strchr(entry->fts_accpath, '/') != NULL)
449                 errx(1, "-delete: %s: relative path potentially not safe",
450                         entry->fts_accpath);
451
452         /* Turn off user immutable bits if running as root */
453         if ((entry->fts_statp->st_flags & (UF_APPEND|UF_IMMUTABLE)) &&
454             !(entry->fts_statp->st_flags & (SF_APPEND|SF_IMMUTABLE)) &&
455             geteuid() == 0)
456                 lchflags(entry->fts_accpath,
457                        entry->fts_statp->st_flags &= ~(UF_APPEND|UF_IMMUTABLE));
458
459         /* rmdir directories, unlink everything else */
460         if (S_ISDIR(entry->fts_statp->st_mode)) {
461                 if (rmdir(entry->fts_accpath) < 0 && errno != ENOTEMPTY)
462                         warn("-delete: rmdir(%s)", entry->fts_path);
463         } else {
464                 if (unlink(entry->fts_accpath) < 0)
465                         warn("-delete: unlink(%s)", entry->fts_path);
466         }
467
468         /* "succeed" */
469         return 1;
470 }
471
472 PLAN *
473 c_delete(OPTION *option, char ***argvp __unused)
474 {
475
476         ftsoptions &= ~FTS_NOSTAT;      /* no optimise */
477         isoutput = 1;                   /* possible output */
478         isdepth = 1;                    /* -depth implied */
479
480         return palloc(option);
481 }
482
483
484 /*
485  * always_true --
486  *
487  *      Always true, used for -maxdepth, -mindepth, -xdev, -follow, and -true
488  */
489 int
490 f_always_true(PLAN *plan __unused, FTSENT *entry __unused)
491 {
492         return 1;
493 }
494
495 /*
496  * -depth functions --
497  *
498  *      With argument: True if the file is at level n.
499  *      Without argument: Always true, causes descent of the directory hierarchy
500  *      to be done so that all entries in a directory are acted on before the
501  *      directory itself.
502  */
503 int
504 f_depth(PLAN *plan, FTSENT *entry)
505 {
506         if (plan->flags & F_DEPTH)
507                 COMPARE(entry->fts_level, plan->d_data);
508         else
509                 return 1;
510 }
511
512 PLAN *
513 c_depth(OPTION *option, char ***argvp)
514 {
515         PLAN *new;
516         char *str;
517
518         new = palloc(option);
519
520         str = **argvp;
521         if (str && !(new->flags & F_DEPTH)) {
522                 /* skip leading + or - */
523                 if (*str == '+' || *str == '-')
524                         str++;
525                 /* skip sign */
526                 if (*str == '+' || *str == '-')
527                         str++;
528                 if (isdigit(*str))
529                         new->flags |= F_DEPTH;
530         }
531
532         if (new->flags & F_DEPTH) {     /* -depth n */
533                 char *ndepth;
534
535                 ndepth = nextarg(option, argvp);
536                 new->d_data = find_parsenum(new, option->name, ndepth, NULL);
537         } else {                        /* -d */
538                 isdepth = 1;
539         }
540
541         return new;
542 }
543  
544 /*
545  * -empty functions --
546  *
547  *      True if the file or directory is empty
548  */
549 int
550 f_empty(PLAN *plan __unused, FTSENT *entry)
551 {
552         if (S_ISREG(entry->fts_statp->st_mode) &&
553             entry->fts_statp->st_size == 0)
554                 return 1;
555         if (S_ISDIR(entry->fts_statp->st_mode)) {
556                 struct dirent *dp;
557                 int empty;
558                 DIR *dir;
559
560                 empty = 1;
561                 dir = opendir(entry->fts_accpath);
562                 if (dir == NULL)
563                         return 0;
564                 for (dp = readdir(dir); dp; dp = readdir(dir))
565                         if (dp->d_name[0] != '.' ||
566                             (dp->d_name[1] != '\0' &&
567                              (dp->d_name[1] != '.' || dp->d_name[2] != '\0'))) {
568                                 empty = 0;
569                                 break;
570                         }
571                 closedir(dir);
572                 return empty;
573         }
574         return 0;
575 }
576
577 PLAN *
578 c_empty(OPTION *option, char ***argvp __unused)
579 {
580         ftsoptions &= ~FTS_NOSTAT;
581
582         return palloc(option);
583 }
584
585 /*
586  * [-exec | -execdir | -ok] utility [arg ... ] ; functions --
587  *
588  *      True if the executed utility returns a zero value as exit status.
589  *      The end of the primary expression is delimited by a semicolon.  If
590  *      "{}" occurs anywhere, it gets replaced by the current pathname,
591  *      or, in the case of -execdir, the current basename (filename
592  *      without leading directory prefix). For -exec and -ok,
593  *      the current directory for the execution of utility is the same as
594  *      the current directory when the find utility was started, whereas
595  *      for -execdir, it is the directory the file resides in.
596  *
597  *      The primary -ok differs from -exec in that it requests affirmation
598  *      of the user before executing the utility.
599  */
600 int
601 f_exec(PLAN *plan, FTSENT *entry)
602 {
603         int cnt;
604         pid_t pid;
605         int status;
606         char *file;
607
608         if (entry == NULL && plan->flags & F_EXECPLUS) {
609                 if (plan->e_ppos == plan->e_pbnum)
610                         return (1);
611                 plan->e_argv[plan->e_ppos] = NULL;
612                 goto doexec;
613         }
614
615         /* XXX - if file/dir ends in '/' this will not work -- can it? */
616         if ((plan->flags & F_EXECDIR) && \
617             (file = strrchr(entry->fts_path, '/')))
618                 file++;
619         else
620                 file = entry->fts_path;
621
622         if (plan->flags & F_EXECPLUS) {
623                 if ((plan->e_argv[plan->e_ppos] = strdup(file)) == NULL)
624                         err(1, NULL);
625                 plan->e_len[plan->e_ppos] = strlen(file);
626                 plan->e_psize += plan->e_len[plan->e_ppos];
627                 if (++plan->e_ppos < plan->e_pnummax &&
628                     plan->e_psize < plan->e_psizemax)
629                         return (1);
630                 plan->e_argv[plan->e_ppos] = NULL;
631         } else {
632                 for (cnt = 0; plan->e_argv[cnt]; ++cnt)
633                         if (plan->e_len[cnt])
634                                 brace_subst(plan->e_orig[cnt],
635                                     &plan->e_argv[cnt], file,
636                                     plan->e_len[cnt]);
637         }
638
639 doexec: if ((plan->flags & F_NEEDOK) && !queryuser(plan->e_argv))
640                 return 0;
641
642         /* make sure find output is interspersed correctly with subprocesses */
643         fflush(stdout);
644         fflush(stderr);
645
646         switch (pid = fork()) {
647         case -1:
648                 err(1, "fork");
649                 /* NOTREACHED */
650         case 0:
651                 /* change dir back from where we started */
652                 if (!(plan->flags & F_EXECDIR) && fchdir(dotfd)) {
653                         warn("chdir");
654                         _exit(1);
655                 }
656                 execvp(plan->e_argv[0], plan->e_argv);
657                 warn("%s", plan->e_argv[0]);
658                 _exit(1);
659         }
660         if (plan->flags & F_EXECPLUS) {
661                 while (--plan->e_ppos >= plan->e_pbnum)
662                         free(plan->e_argv[plan->e_ppos]);
663                 plan->e_ppos = plan->e_pbnum;
664                 plan->e_psize = plan->e_pbsize;
665         }
666         pid = waitpid(pid, &status, 0);
667         return (pid != -1 && WIFEXITED(status) && !WEXITSTATUS(status));
668 }
669
670 /*
671  * c_exec, c_execdir, c_ok --
672  *      build three parallel arrays, one with pointers to the strings passed
673  *      on the command line, one with (possibly duplicated) pointers to the
674  *      argv array, and one with integer values that are lengths of the
675  *      strings, but also flags meaning that the string has to be massaged.
676  */
677 PLAN *
678 c_exec(OPTION *option, char ***argvp)
679 {
680         PLAN *new;                      /* node returned */
681         long argmax;
682         int cnt, i;
683         char **argv, **ap, **ep, *p;
684
685         /* XXX - was in c_execdir, but seems unnecessary!?
686         ftsoptions &= ~FTS_NOSTAT;
687         */
688         isoutput = 1;
689
690         /* XXX - this is a change from the previous coding */
691         new = palloc(option);
692
693         for (ap = argv = *argvp;; ++ap) {
694                 if (!*ap)
695                         errx(1,
696                             "%s: no terminating \";\" or \"+\"", option->name);
697                 if (**ap == ';')
698                         break;
699                 if (**ap == '+' && ap != argv && strcmp(*(ap - 1), "{}") == 0) {
700                         new->flags |= F_EXECPLUS;
701                         break;
702                 }
703         }
704
705         if (ap == argv)
706                 errx(1, "%s: no command specified", option->name);
707
708         cnt = ap - *argvp + 1;
709         if (new->flags & F_EXECPLUS) {
710                 new->e_ppos = new->e_pbnum = cnt - 2;
711                 if ((argmax = sysconf(_SC_ARG_MAX)) == -1) {
712                         warn("sysconf(_SC_ARG_MAX)");
713                         argmax = _POSIX_ARG_MAX;
714                 }
715                 argmax -= 1024;
716                 for (ep = environ; *ep != NULL; ep++)
717                         argmax -= strlen(*ep) + 1 + sizeof(*ep);
718                 argmax -= 1 + sizeof(*ep);
719                 new->e_pnummax = argmax / 16;
720                 argmax -= sizeof(char *) * new->e_pnummax;
721                 if (argmax <= 0)
722                         errx(1, "no space for arguments");
723                 new->e_psizemax = argmax;
724                 new->e_pbsize = 0;
725                 cnt += new->e_pnummax + 1;
726                 new->e_next = lastexecplus;
727                 lastexecplus = new;
728         }
729         if ((new->e_argv = malloc(cnt * sizeof(char *))) == NULL)
730                 err(1, NULL);
731         if ((new->e_orig = malloc(cnt * sizeof(char *))) == NULL)
732                 err(1, NULL);
733         if ((new->e_len = malloc(cnt * sizeof(int))) == NULL)
734                 err(1, NULL);
735
736         for (argv = *argvp, cnt = 0; argv < ap; ++argv, ++cnt) {
737                 new->e_orig[cnt] = *argv;
738                 if (new->flags & F_EXECPLUS)
739                         new->e_pbsize += strlen(*argv) + 1;
740                 for (p = *argv; *p; ++p)
741                         if (!(new->flags & F_EXECPLUS) && p[0] == '{' &&
742                             p[1] == '}') {
743                                 if ((new->e_argv[cnt] =
744                                     malloc(MAXPATHLEN)) == NULL)
745                                         err(1, NULL);
746                                 new->e_len[cnt] = MAXPATHLEN;
747                                 break;
748                         }
749                 if (!*p) {
750                         new->e_argv[cnt] = *argv;
751                         new->e_len[cnt] = 0;
752                 }
753         }
754         if (new->flags & F_EXECPLUS) {
755                 new->e_psize = new->e_pbsize;
756                 cnt--;
757                 for (i = 0; i < new->e_pnummax; i++) {
758                         new->e_argv[cnt] = NULL;
759                         new->e_len[cnt] = 0;
760                         cnt++;
761                 }
762                 argv = ap;
763                 goto done;
764         }
765         new->e_argv[cnt] = new->e_orig[cnt] = NULL;
766
767 done:   *argvp = argv + 1;
768         return new;
769 }
770
771 /* Finish any pending -exec ... {} + functions. */
772 void
773 finish_execplus()
774 {
775         PLAN *p;
776
777         p = lastexecplus;
778         while (p != NULL) {
779                 (p->execute)(p, NULL);
780                 p = p->e_next;
781         }
782 }
783
784 int
785 f_flags(PLAN *plan, FTSENT *entry)
786 {
787         u_long flags;
788
789         flags = entry->fts_statp->st_flags;
790         if (plan->flags & F_ATLEAST)
791                 return (flags | plan->fl_flags) == flags &&
792                     !(flags & plan->fl_notflags);
793         else if (plan->flags & F_ANY)
794                 return (flags & plan->fl_flags) ||
795                     (flags | plan->fl_notflags) != flags;
796         else
797                 return flags == plan->fl_flags &&
798                     !(plan->fl_flags & plan->fl_notflags);
799 }
800
801 PLAN *
802 c_flags(OPTION *option, char ***argvp)
803 {
804         char *flags_str;
805         PLAN *new;
806         u_long flags, notflags;
807
808         flags_str = nextarg(option, argvp);
809         ftsoptions &= ~FTS_NOSTAT;
810
811         new = palloc(option);
812
813         if (*flags_str == '-') {
814                 new->flags |= F_ATLEAST;
815                 flags_str++;
816         } else if (*flags_str == '+') {
817                 new->flags |= F_ANY;
818                 flags_str++;
819         }
820         if (strtofflags(&flags_str, &flags, &notflags) == 1)
821                 errx(1, "%s: %s: illegal flags string", option->name, flags_str);
822
823         new->fl_flags = flags;
824         new->fl_notflags = notflags;
825         return new;
826 }
827
828 /*
829  * -follow functions --
830  *
831  *      Always true, causes symbolic links to be followed on a global
832  *      basis.
833  */
834 PLAN *
835 c_follow(OPTION *option, char ***argvp __unused)
836 {
837         ftsoptions &= ~FTS_PHYSICAL;
838         ftsoptions |= FTS_LOGICAL;
839
840         return palloc(option);
841 }
842
843 /*
844  * -fstype functions --
845  *
846  *      True if the file is of a certain type.
847  */
848 int
849 f_fstype(PLAN *plan, FTSENT *entry)
850 {
851         static dev_t curdev;    /* need a guaranteed illegal dev value */
852         static int first = 1;
853         struct statfs sb;
854         static int val_flags;
855         static char fstype[sizeof(sb.f_fstypename)];
856         char *p, save[2] = {0,0};
857
858         if ((plan->flags & F_MTMASK) == F_MTUNKNOWN)
859                 return 0;
860
861         /* Only check when we cross mount point. */
862         if (first || curdev != entry->fts_statp->st_dev) {
863                 curdev = entry->fts_statp->st_dev;
864
865                 /*
866                  * Statfs follows symlinks; find wants the link's filesystem,
867                  * not where it points.
868                  */
869                 if (entry->fts_info == FTS_SL ||
870                     entry->fts_info == FTS_SLNONE) {
871                         if ((p = strrchr(entry->fts_accpath, '/')) != NULL)
872                                 ++p;
873                         else
874                                 p = entry->fts_accpath;
875                         save[0] = p[0];
876                         p[0] = '.';
877                         save[1] = p[1];
878                         p[1] = '\0';
879                 } else
880                         p = NULL;
881
882                 if (statfs(entry->fts_accpath, &sb))
883                         err(1, "%s", entry->fts_accpath);
884
885                 if (p) {
886                         p[0] = save[0];
887                         p[1] = save[1];
888                 }
889
890                 first = 0;
891
892                 /*
893                  * Further tests may need both of these values, so
894                  * always copy both of them.
895                  */
896                 val_flags = sb.f_flags;
897                 strlcpy(fstype, sb.f_fstypename, sizeof(fstype));
898         }
899         switch (plan->flags & F_MTMASK) {
900         case F_MTFLAG:
901                 return val_flags & plan->mt_data;
902         case F_MTTYPE:
903                 return (strncmp(fstype, plan->c_data, sizeof(fstype)) == 0);
904         default:
905                 abort();
906         }
907 }
908
909 PLAN *
910 c_fstype(OPTION *option, char ***argvp)
911 {
912         char *fsname;
913         PLAN *new;
914
915         fsname = nextarg(option, argvp);
916         ftsoptions &= ~FTS_NOSTAT;
917
918         new = palloc(option);
919         switch (*fsname) {
920         case 'l':
921                 if (!strcmp(fsname, "local")) {
922                         new->flags |= F_MTFLAG;
923                         new->mt_data = MNT_LOCAL;
924                         return new;
925                 }
926                 break;
927         case 'r':
928                 if (!strcmp(fsname, "rdonly")) {
929                         new->flags |= F_MTFLAG;
930                         new->mt_data = MNT_RDONLY;
931                         return new;
932                 }
933                 break;
934         }
935
936         new->flags |= F_MTTYPE;
937         new->c_data = fsname;
938         return new;
939 }
940
941 /*
942  * -group gname functions --
943  *
944  *      True if the file belongs to the group gname.  If gname is numeric and
945  *      an equivalent of the getgrnam() function does not return a valid group
946  *      name, gname is taken as a group ID.
947  */
948 int
949 f_group(PLAN *plan, FTSENT *entry)
950 {
951         COMPARE(entry->fts_statp->st_gid, plan->g_data);
952 }
953
954 PLAN *
955 c_group(OPTION *option, char ***argvp)
956 {
957         char *gname;
958         PLAN *new;
959         struct group *g;
960         gid_t gid;
961
962         gname = nextarg(option, argvp);
963         ftsoptions &= ~FTS_NOSTAT;
964
965         new = palloc(option);
966         g = getgrnam(gname);
967         if (g == NULL) {
968                 char* cp = gname;
969                 if (gname[0] == '-' || gname[0] == '+')
970                         gname++;
971                 gid = atoi(gname);
972                 if (gid == 0 && gname[0] != '0')
973                         errx(1, "%s: %s: no such group", option->name, gname);
974                 gid = find_parsenum(new, option->name, cp, NULL);
975         } else
976                 gid = g->gr_gid;
977
978         new->g_data = gid;
979         return new;
980 }
981
982 /*
983  * -inum n functions --
984  *
985  *      True if the file has inode # n.
986  */
987 int
988 f_inum(PLAN *plan, FTSENT *entry)
989 {
990         COMPARE(entry->fts_statp->st_ino, plan->i_data);
991 }
992
993 PLAN *
994 c_inum(OPTION *option, char ***argvp)
995 {
996         char *inum_str;
997         PLAN *new;
998
999         inum_str = nextarg(option, argvp);
1000         ftsoptions &= ~FTS_NOSTAT;
1001
1002         new = palloc(option);
1003         new->i_data = find_parsenum(new, option->name, inum_str, NULL);
1004         return new;
1005 }
1006
1007 /*
1008  * -samefile FN
1009  *
1010  *      True if the file has the same inode (eg hard link) FN
1011  */
1012
1013 /* f_samefile is just f_inum */
1014 PLAN *
1015 c_samefile(OPTION *option, char ***argvp)
1016 {
1017         char *fn;
1018         PLAN *new;
1019         struct stat sb;
1020
1021         fn = nextarg(option, argvp);
1022         ftsoptions &= ~FTS_NOSTAT;
1023
1024         new = palloc(option);
1025         if (stat(fn, &sb))
1026                 err(1, "%s", fn);
1027         new->i_data = sb.st_ino;
1028         return new;
1029 }
1030
1031 /*
1032  * -links n functions --
1033  *
1034  *      True if the file has n links.
1035  */
1036 int
1037 f_links(PLAN *plan, FTSENT *entry)
1038 {
1039         COMPARE(entry->fts_statp->st_nlink, plan->l_data);
1040 }
1041
1042 PLAN *
1043 c_links(OPTION *option, char ***argvp)
1044 {
1045         char *nlinks;
1046         PLAN *new;
1047
1048         nlinks = nextarg(option, argvp);
1049         ftsoptions &= ~FTS_NOSTAT;
1050
1051         new = palloc(option);
1052         new->l_data = (nlink_t)find_parsenum(new, option->name, nlinks, NULL);
1053         return new;
1054 }
1055
1056 /*
1057  * -ls functions --
1058  *
1059  *      Always true - prints the current entry to stdout in "ls" format.
1060  */
1061 int
1062 f_ls(PLAN *plan __unused, FTSENT *entry)
1063 {
1064         printlong(entry->fts_path, entry->fts_accpath, entry->fts_statp);
1065         return 1;
1066 }
1067
1068 PLAN *
1069 c_ls(OPTION *option, char ***argvp __unused)
1070 {
1071         ftsoptions &= ~FTS_NOSTAT;
1072         isoutput = 1;
1073
1074         return palloc(option);
1075 }
1076
1077 /*
1078  * -name functions --
1079  *
1080  *      True if the basename of the filename being examined
1081  *      matches pattern using Pattern Matching Notation S3.14
1082  */
1083 int
1084 f_name(PLAN *plan, FTSENT *entry)
1085 {
1086         char fn[PATH_MAX];
1087         const char *name;
1088
1089         if (plan->flags & F_LINK) {
1090                 name = fn;
1091                 if (readlink(entry->fts_path, fn, sizeof(fn)) == -1)
1092                         return 0;
1093         } else
1094                 name = entry->fts_name;
1095         return !fnmatch(plan->c_data, name,
1096             plan->flags & F_IGNCASE ? FNM_CASEFOLD : 0);
1097 }
1098
1099 PLAN *
1100 c_name(OPTION *option, char ***argvp)
1101 {
1102         char *pattern;
1103         PLAN *new;
1104
1105         pattern = nextarg(option, argvp);
1106         new = palloc(option);
1107         new->c_data = pattern;
1108         return new;
1109 }
1110
1111 /*
1112  * -newer file functions --
1113  *
1114  *      True if the current file has been modified more recently
1115  *      then the modification time of the file named by the pathname
1116  *      file.
1117  */
1118 int
1119 f_newer(PLAN *plan, FTSENT *entry)
1120 {
1121         if (plan->flags & F_TIME_C)
1122                 return entry->fts_statp->st_ctime > plan->t_data;
1123         else if (plan->flags & F_TIME_A)
1124                 return entry->fts_statp->st_atime > plan->t_data;
1125         else if (plan->flags & F_TIME_B)
1126                 return entry->fts_statp->st_birthtime > plan->t_data;
1127         else
1128                 return entry->fts_statp->st_mtime > plan->t_data;
1129 }
1130
1131 PLAN *
1132 c_newer(OPTION *option, char ***argvp)
1133 {
1134         char *fn_or_tspec;
1135         PLAN *new;
1136         struct stat sb;
1137
1138         fn_or_tspec = nextarg(option, argvp);
1139         ftsoptions &= ~FTS_NOSTAT;
1140
1141         new = palloc(option);
1142         /* compare against what */
1143         if (option->flags & F_TIME2_T) {
1144                 new->t_data = get_date(fn_or_tspec, (struct timeb *) 0);
1145                 if (new->t_data == (time_t) -1)
1146                         errx(1, "Can't parse date/time: %s", fn_or_tspec);
1147         } else {
1148                 if (stat(fn_or_tspec, &sb))
1149                         err(1, "%s", fn_or_tspec);
1150                 if (option->flags & F_TIME2_C)
1151                         new->t_data = sb.st_ctime;
1152                 else if (option->flags & F_TIME2_A)
1153                         new->t_data = sb.st_atime;
1154                 else if (option->flags & F_TIME2_B)
1155                         new->t_data = sb.st_birthtime;
1156                 else
1157                         new->t_data = sb.st_mtime;
1158         }
1159         return new;
1160 }
1161
1162 /*
1163  * -nogroup functions --
1164  *
1165  *      True if file belongs to a user ID for which the equivalent
1166  *      of the getgrnam() 9.2.1 [POSIX.1] function returns NULL.
1167  */
1168 int
1169 f_nogroup(PLAN *plan __unused, FTSENT *entry)
1170 {
1171         return group_from_gid(entry->fts_statp->st_gid, 1) == NULL;
1172 }
1173
1174 PLAN *
1175 c_nogroup(OPTION *option, char ***argvp __unused)
1176 {
1177         ftsoptions &= ~FTS_NOSTAT;
1178
1179         return palloc(option);
1180 }
1181
1182 /*
1183  * -nouser functions --
1184  *
1185  *      True if file belongs to a user ID for which the equivalent
1186  *      of the getpwuid() 9.2.2 [POSIX.1] function returns NULL.
1187  */
1188 int
1189 f_nouser(PLAN *plan __unused, FTSENT *entry)
1190 {
1191         return user_from_uid(entry->fts_statp->st_uid, 1) == NULL;
1192 }
1193
1194 PLAN *
1195 c_nouser(OPTION *option, char ***argvp __unused)
1196 {
1197         ftsoptions &= ~FTS_NOSTAT;
1198
1199         return palloc(option);
1200 }
1201
1202 /*
1203  * -path functions --
1204  *
1205  *      True if the path of the filename being examined
1206  *      matches pattern using Pattern Matching Notation S3.14
1207  */
1208 int
1209 f_path(PLAN *plan, FTSENT *entry)
1210 {
1211         return !fnmatch(plan->c_data, entry->fts_path,
1212             plan->flags & F_IGNCASE ? FNM_CASEFOLD : 0);
1213 }
1214
1215 /* c_path is the same as c_name */
1216
1217 /*
1218  * -perm functions --
1219  *
1220  *      The mode argument is used to represent file mode bits.  If it starts
1221  *      with a leading digit, it's treated as an octal mode, otherwise as a
1222  *      symbolic mode.
1223  */
1224 int
1225 f_perm(PLAN *plan, FTSENT *entry)
1226 {
1227         mode_t mode;
1228
1229         mode = entry->fts_statp->st_mode &
1230             (S_ISUID|S_ISGID|S_ISTXT|S_IRWXU|S_IRWXG|S_IRWXO);
1231         if (plan->flags & F_ATLEAST)
1232                 return (plan->m_data | mode) == mode;
1233         else if (plan->flags & F_ANY)
1234                 return (mode & plan->m_data);
1235         else
1236                 return mode == plan->m_data;
1237         /* NOTREACHED */
1238 }
1239
1240 PLAN *
1241 c_perm(OPTION *option, char ***argvp)
1242 {
1243         char *perm;
1244         PLAN *new;
1245         mode_t *set;
1246
1247         perm = nextarg(option, argvp);
1248         ftsoptions &= ~FTS_NOSTAT;
1249
1250         new = palloc(option);
1251
1252         if (*perm == '-') {
1253                 new->flags |= F_ATLEAST;
1254                 ++perm;
1255         } else if (*perm == '+') {
1256                 new->flags |= F_ANY;
1257                 ++perm;
1258         }
1259
1260         if ((set = setmode(perm)) == NULL)
1261                 errx(1, "%s: %s: illegal mode string", option->name, perm);
1262
1263         new->m_data = getmode(set, 0);
1264         free(set);
1265         return new;
1266 }
1267
1268 /*
1269  * -print functions --
1270  *
1271  *      Always true, causes the current pathname to be written to
1272  *      standard output.
1273  */
1274 int
1275 f_print(PLAN *plan __unused, FTSENT *entry)
1276 {
1277         (void)puts(entry->fts_path);
1278         return 1;
1279 }
1280
1281 PLAN *
1282 c_print(OPTION *option, char ***argvp __unused)
1283 {
1284         isoutput = 1;
1285
1286         return palloc(option);
1287 }
1288
1289 /*
1290  * -print0 functions --
1291  *
1292  *      Always true, causes the current pathname to be written to
1293  *      standard output followed by a NUL character
1294  */
1295 int
1296 f_print0(PLAN *plan __unused, FTSENT *entry)
1297 {
1298         fputs(entry->fts_path, stdout);
1299         fputc('\0', stdout);
1300         return 1;
1301 }
1302
1303 /* c_print0 is the same as c_print */
1304
1305 /*
1306  * -prune functions --
1307  *
1308  *      Prune a portion of the hierarchy.
1309  */
1310 int
1311 f_prune(PLAN *plan __unused, FTSENT *entry)
1312 {
1313         if (fts_set(tree, entry, FTS_SKIP))
1314                 err(1, "%s", entry->fts_path);
1315         return 1;
1316 }
1317
1318 /* c_prune == c_simple */
1319
1320 /*
1321  * -regex functions --
1322  *
1323  *      True if the whole path of the file matches pattern using
1324  *      regular expression.
1325  */
1326 int
1327 f_regex(PLAN *plan, FTSENT *entry)
1328 {
1329         char *str;
1330         int len;
1331         regex_t *pre;
1332         regmatch_t pmatch;
1333         int errcode;
1334         char errbuf[LINE_MAX];
1335         int matched;
1336
1337         pre = plan->re_data;
1338         str = entry->fts_path;
1339         len = strlen(str);
1340         matched = 0;
1341
1342         pmatch.rm_so = 0;
1343         pmatch.rm_eo = len;
1344
1345         errcode = regexec(pre, str, 1, &pmatch, REG_STARTEND);
1346
1347         if (errcode != 0 && errcode != REG_NOMATCH) {
1348                 regerror(errcode, pre, errbuf, sizeof errbuf);
1349                 errx(1, "%s: %s",
1350                      plan->flags & F_IGNCASE ? "-iregex" : "-regex", errbuf);
1351         }
1352
1353         if (errcode == 0 && pmatch.rm_so == 0 && pmatch.rm_eo == len)
1354                 matched = 1;
1355
1356         return matched;
1357 }
1358
1359 PLAN *
1360 c_regex(OPTION *option, char ***argvp)
1361 {
1362         PLAN *new;
1363         char *pattern;
1364         regex_t *pre;
1365         int errcode;
1366         char errbuf[LINE_MAX];
1367
1368         if ((pre = malloc(sizeof(regex_t))) == NULL)
1369                 err(1, NULL);
1370
1371         pattern = nextarg(option, argvp);
1372
1373         if ((errcode = regcomp(pre, pattern,
1374             regexp_flags | (option->flags & F_IGNCASE ? REG_ICASE : 0))) != 0) {
1375                 regerror(errcode, pre, errbuf, sizeof errbuf);
1376                 errx(1, "%s: %s: %s",
1377                      option->flags & F_IGNCASE ? "-iregex" : "-regex",
1378                      pattern, errbuf);
1379         }
1380
1381         new = palloc(option);
1382         new->re_data = pre;
1383
1384         return new;
1385 }
1386
1387 /* c_simple covers c_prune, c_openparen, c_closeparen, c_not, c_or, c_true, c_false */
1388
1389 PLAN *
1390 c_simple(OPTION *option, char ***argvp __unused)
1391 {
1392         return palloc(option);
1393 }
1394
1395 /*
1396  * -size n[c] functions --
1397  *
1398  *      True if the file size in bytes, divided by an implementation defined
1399  *      value and rounded up to the next integer, is n.  If n is followed by
1400  *      one of c k M G T P, the size is in bytes, kilobytes,
1401  *      megabytes, gigabytes, terabytes or petabytes respectively.
1402  */
1403 #define FIND_SIZE       512
1404 static int divsize = 1;
1405
1406 int
1407 f_size(PLAN *plan, FTSENT *entry)
1408 {
1409         off_t size;
1410
1411         size = divsize ? (entry->fts_statp->st_size + FIND_SIZE - 1) /
1412             FIND_SIZE : entry->fts_statp->st_size;
1413         COMPARE(size, plan->o_data);
1414 }
1415
1416 PLAN *
1417 c_size(OPTION *option, char ***argvp)
1418 {
1419         char *size_str;
1420         PLAN *new;
1421         char endch;
1422         off_t scale;
1423
1424         size_str = nextarg(option, argvp);
1425         ftsoptions &= ~FTS_NOSTAT;
1426
1427         new = palloc(option);
1428         endch = 'c';
1429         new->o_data = find_parsenum(new, option->name, size_str, &endch);
1430         if (endch != '\0') {
1431                 divsize = 0;
1432
1433                 switch (endch) {
1434                 case 'c':                       /* characters */
1435                         scale = 0x1LL;
1436                         break;
1437                 case 'k':                       /* kilobytes 1<<10 */
1438                         scale = 0x400LL;
1439                         break;
1440                 case 'M':                       /* megabytes 1<<20 */
1441                         scale = 0x100000LL;
1442                         break;
1443                 case 'G':                       /* gigabytes 1<<30 */
1444                         scale = 0x40000000LL;
1445                         break;
1446                 case 'T':                       /* terabytes 1<<40 */
1447                         scale = 0x1000000000LL;
1448                         break;
1449                 case 'P':                       /* petabytes 1<<50 */
1450                         scale = 0x4000000000000LL;
1451                         break;
1452                 default:
1453                         errx(1, "%s: %s: illegal trailing character",
1454                                 option->name, size_str);
1455                         break;
1456                 }
1457                 if (new->o_data > QUAD_MAX / scale)
1458                         errx(1, "%s: %s: value too large",
1459                                 option->name, size_str);
1460                 new->o_data *= scale;
1461         }
1462         return new;
1463 }
1464
1465 /*
1466  * -type c functions --
1467  *
1468  *      True if the type of the file is c, where c is b, c, d, p, f or w
1469  *      for block special file, character special file, directory, FIFO,
1470  *      regular file or whiteout respectively.
1471  */
1472 int
1473 f_type(PLAN *plan, FTSENT *entry)
1474 {
1475         return (entry->fts_statp->st_mode & S_IFMT) == plan->m_data;
1476 }
1477
1478 PLAN *
1479 c_type(OPTION *option, char ***argvp)
1480 {
1481         char *typestring;
1482         PLAN *new;
1483         mode_t  mask;
1484
1485         typestring = nextarg(option, argvp);
1486         ftsoptions &= ~FTS_NOSTAT;
1487
1488         switch (typestring[0]) {
1489         case 'b':
1490                 mask = S_IFBLK;
1491                 break;
1492         case 'c':
1493                 mask = S_IFCHR;
1494                 break;
1495         case 'd':
1496                 mask = S_IFDIR;
1497                 break;
1498         case 'f':
1499                 mask = S_IFREG;
1500                 break;
1501         case 'l':
1502                 mask = S_IFLNK;
1503                 break;
1504         case 'p':
1505                 mask = S_IFIFO;
1506                 break;
1507         case 's':
1508                 mask = S_IFSOCK;
1509                 break;
1510 #ifdef FTS_WHITEOUT
1511         case 'w':
1512                 mask = S_IFWHT;
1513                 ftsoptions |= FTS_WHITEOUT;
1514                 break;
1515 #endif /* FTS_WHITEOUT */
1516         default:
1517                 errx(1, "%s: %s: unknown type", option->name, typestring);
1518         }
1519
1520         new = palloc(option);
1521         new->m_data = mask;
1522         return new;
1523 }
1524
1525 /*
1526  * -user uname functions --
1527  *
1528  *      True if the file belongs to the user uname.  If uname is numeric and
1529  *      an equivalent of the getpwnam() S9.2.2 [POSIX.1] function does not
1530  *      return a valid user name, uname is taken as a user ID.
1531  */
1532 int
1533 f_user(PLAN *plan, FTSENT *entry)
1534 {
1535         COMPARE(entry->fts_statp->st_uid, plan->u_data);
1536 }
1537
1538 PLAN *
1539 c_user(OPTION *option, char ***argvp)
1540 {
1541         char *username;
1542         PLAN *new;
1543         struct passwd *p;
1544         uid_t uid;
1545
1546         username = nextarg(option, argvp);
1547         ftsoptions &= ~FTS_NOSTAT;
1548
1549         new = palloc(option);
1550         p = getpwnam(username);
1551         if (p == NULL) {
1552                 char* cp = username;
1553                 if( username[0] == '-' || username[0] == '+' )
1554                         username++;
1555                 uid = atoi(username);
1556                 if (uid == 0 && username[0] != '0')
1557                         errx(1, "%s: %s: no such user", option->name, username);
1558                 uid = find_parsenum(new, option->name, cp, NULL);
1559         } else
1560                 uid = p->pw_uid;
1561
1562         new->u_data = uid;
1563         return new;
1564 }
1565
1566 /*
1567  * -xdev functions --
1568  *
1569  *      Always true, causes find not to descend past directories that have a
1570  *      different device ID (st_dev, see stat() S5.6.2 [POSIX.1])
1571  */
1572 PLAN *
1573 c_xdev(OPTION *option, char ***argvp __unused)
1574 {
1575         ftsoptions |= FTS_XDEV;
1576
1577         return palloc(option);
1578 }
1579
1580 /*
1581  * ( expression ) functions --
1582  *
1583  *      True if expression is true.
1584  */
1585 int
1586 f_expr(PLAN *plan, FTSENT *entry)
1587 {
1588         PLAN *p;
1589         int state = 0;
1590
1591         for (p = plan->p_data[0];
1592             p && (state = (p->execute)(p, entry)); p = p->next);
1593         return state;
1594 }
1595
1596 /*
1597  * f_openparen and f_closeparen nodes are temporary place markers.  They are
1598  * eliminated during phase 2 of find_formplan() --- the '(' node is converted
1599  * to a f_expr node containing the expression and the ')' node is discarded.
1600  * The functions themselves are only used as constants.
1601  */
1602
1603 int
1604 f_openparen(PLAN *plan __unused, FTSENT *entry __unused)
1605 {
1606         abort();
1607 }
1608
1609 int
1610 f_closeparen(PLAN *plan __unused, FTSENT *entry __unused)
1611 {
1612         abort();
1613 }
1614
1615 /* c_openparen == c_simple */
1616 /* c_closeparen == c_simple */
1617
1618 /*
1619  * AND operator. Since AND is implicit, no node is allocated.
1620  */
1621 PLAN *
1622 c_and(OPTION *option __unused, char ***argvp __unused)
1623 {
1624         return NULL;
1625 }
1626
1627 /*
1628  * ! expression functions --
1629  *
1630  *      Negation of a primary; the unary NOT operator.
1631  */
1632 int
1633 f_not(PLAN *plan, FTSENT *entry)
1634 {
1635         PLAN *p;
1636         int state = 0;
1637
1638         for (p = plan->p_data[0];
1639             p && (state = (p->execute)(p, entry)); p = p->next);
1640         return !state;
1641 }
1642
1643 /* c_not == c_simple */
1644
1645 /*
1646  * expression -o expression functions --
1647  *
1648  *      Alternation of primaries; the OR operator.  The second expression is
1649  * not evaluated if the first expression is true.
1650  */
1651 int
1652 f_or(PLAN *plan, FTSENT *entry)
1653 {
1654         PLAN *p;
1655         int state = 0;
1656
1657         for (p = plan->p_data[0];
1658             p && (state = (p->execute)(p, entry)); p = p->next);
1659
1660         if (state)
1661                 return 1;
1662
1663         for (p = plan->p_data[1];
1664             p && (state = (p->execute)(p, entry)); p = p->next);
1665         return state;
1666 }
1667
1668 /* c_or == c_simple */
1669
1670 /*
1671  * -false
1672  *
1673  *      Always false.
1674  */
1675 int
1676 f_false(PLAN *plan __unused, FTSENT *entry __unused)
1677 {
1678         return 0;
1679 }
1680
1681 /* c_false == c_simple */
1682
1683 /*
1684  * -quit
1685  *
1686  *      Exits the program
1687  */
1688 int
1689 f_quit(PLAN *plan __unused, FTSENT *entry __unused)
1690 {
1691         exit(0);
1692 }
1693
1694 /* c_quit == c_simple */