1 /* vi: set sw=4 ts=4: */
3 * Mini find implementation for busybox
5 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
7 * Reworked by David Douthitt <n9ubh@callsign.net> and
8 * Matt Kraai <kraai@alumni.carnegiemellon.edu>.
10 * Licensed under the GPL version 2, see the file LICENSE in this tarball.
15 * # find file.txt -exec 'echo {}' '{} {}' ';'
16 * find: echo file.txt: No such file or directory
17 * # find file.txt -exec 'echo' '{} {}' '; '
18 * find: missing argument to `-exec'
19 * # find file.txt -exec 'echo {}' '{} {}' ';' junk
20 * find: paths must precede expression
21 * # find file.txt -exec 'echo {}' '{} {}' ';' junk ';'
22 * find: paths must precede expression
23 * # find file.txt -exec 'echo' '{} {}' ';'
25 * (strace: execve("/bin/echo", ["echo", "file.txt file.txt"], [ 30 vars ]))
26 * # find file.txt -exec 'echo' '{} {}' ';' -print -exec pwd ';'
30 * # find -name '*.c' -o -name '*.h'
31 * [shows files, *.c and *.h intermixed]
32 * # find file.txt -name '*f*' -o -name '*t*'
34 * # find file.txt -name '*z*' -o -name '*t*'
36 * # find file.txt -name '*f*' -o -name '*z*'
39 * # find t z -name '*t*' -print -o -name '*z*'
41 * # find t z t z -name '*t*' -o -name '*z*' -print
44 * # find t z t z '(' -name '*t*' -o -name '*z*' ')' -o -print
49 * ./busybox find "$@" | tee /tmp/bb_find
50 * echo ==================
51 * /path/to/gnu/find "$@" | tee /tmp/std_find
52 * echo ==================
53 * diff -u /tmp/std_find /tmp/bb_find && echo Identical
58 #if ENABLE_FEATURE_FIND_REGEX
62 /* This is a NOEXEC applet. Be very careful! */
65 USE_FEATURE_FIND_XDEV(static dev_t *xdev_dev;)
66 USE_FEATURE_FIND_XDEV(static int xdev_count;)
68 typedef int (*action_fp)(const char *fileName, struct stat *statbuf, void *);
72 #if ENABLE_FEATURE_FIND_NOT
76 #define ACTS(name, arg...) typedef struct { action a; arg; } action_##name;
77 #define ACTF(name) static int func_##name(const char *fileName UNUSED_PARAM, \
78 struct stat *statbuf UNUSED_PARAM, \
79 action_##name* ap UNUSED_PARAM)
81 ACTS(name, const char *pattern; bool iname;)
82 USE_FEATURE_FIND_PATH( ACTS(path, const char *pattern;))
83 USE_FEATURE_FIND_REGEX( ACTS(regex, regex_t compiled_pattern;))
84 USE_FEATURE_FIND_PRINT0( ACTS(print0))
85 USE_FEATURE_FIND_TYPE( ACTS(type, int type_mask;))
86 USE_FEATURE_FIND_PERM( ACTS(perm, char perm_char; mode_t perm_mask;))
87 USE_FEATURE_FIND_MTIME( ACTS(mtime, char mtime_char; unsigned mtime_days;))
88 USE_FEATURE_FIND_MMIN( ACTS(mmin, char mmin_char; unsigned mmin_mins;))
89 USE_FEATURE_FIND_NEWER( ACTS(newer, time_t newer_mtime;))
90 USE_FEATURE_FIND_INUM( ACTS(inum, ino_t inode_num;))
91 USE_FEATURE_FIND_USER( ACTS(user, uid_t uid;))
92 USE_FEATURE_FIND_SIZE( ACTS(size, char size_char; off_t size;))
93 USE_FEATURE_FIND_CONTEXT(ACTS(context, security_context_t context;))
94 USE_FEATURE_FIND_PAREN( ACTS(paren, action ***subexpr;))
95 USE_FEATURE_FIND_PRUNE( ACTS(prune))
96 USE_FEATURE_FIND_DELETE( ACTS(delete))
97 USE_FEATURE_FIND_EXEC( ACTS(exec, char **exec_argv; unsigned *subst_count; int exec_argc;))
98 USE_FEATURE_FIND_GROUP( ACTS(group, gid_t gid;))
100 static action ***actions;
101 static bool need_print = 1;
102 static int recurse_flags = ACTION_RECURSE;
104 #if ENABLE_FEATURE_FIND_EXEC
105 static unsigned count_subst(const char *str)
108 while ((str = strstr(str, "{}")) != NULL) {
116 static char* subst(const char *src, unsigned count, const char* filename)
118 char *buf, *dst, *end;
119 size_t flen = strlen(filename);
120 /* we replace each '{}' with filename: growth by strlen-2 */
121 buf = dst = xmalloc(strlen(src) + count*(flen-2) + 1);
122 while ((end = strstr(src, "{}"))) {
123 memcpy(dst, src, end - src);
126 memcpy(dst, filename, flen);
134 /* Return values of ACTFs ('action functions') are a bit mask:
135 * bit 1=1: prune (use SKIP constant for setting it)
136 * bit 0=1: matched successfully (TRUE)
139 static int exec_actions(action ***appp, const char *fileName, struct stat *statbuf)
146 /* "action group" is a set of actions ANDed together.
147 * groups are ORed together.
148 * We simply evaluate each group until we find one in which all actions
151 /* -prune is special: if it is encountered, then we won't
152 * descend into current directory. It doesn't matter whether
153 * action group (in which -prune sits) will succeed or not:
154 * find * -prune -name 'f*' -o -name 'm*' -- prunes every dir
155 * find * -name 'f*' -o -prune -name 'm*' -- prunes all dirs
156 * not starting with 'f' */
158 /* We invert TRUE bit (bit 0). Now 1 there means 'failure'.
159 * and bitwise OR in "rc |= TRUE ^ ap->f()" will:
160 * (1) make SKIP (-prune) bit stick; and (2) detect 'failure'.
161 * On return, bit is restored. */
164 while ((app = appp[++cur_group])) {
165 rc &= ~TRUE; /* 'success' so far, clear TRUE bit */
168 ap = app[++cur_action];
169 if (!ap) /* all actions in group were successful */
170 return rc ^ TRUE; /* restore TRUE bit */
171 rc |= TRUE ^ ap->f(fileName, statbuf, ap);
172 #if ENABLE_FEATURE_FIND_NOT
173 if (ap->invert) rc ^= TRUE;
175 if (rc & TRUE) /* current group failed, try next */
179 return rc ^ TRUE; /* restore TRUE bit */
185 const char *tmp = bb_basename(fileName);
186 if (tmp != fileName && !*tmp) { /* "foo/bar/". Oh no... go back to 'b' */
188 while (tmp != fileName && *--tmp != '/')
193 return fnmatch(ap->pattern, tmp, FNM_PERIOD | (ap->iname ? FNM_CASEFOLD : 0)) == 0;
196 #if ENABLE_FEATURE_FIND_PATH
199 return fnmatch(ap->pattern, fileName, 0) == 0;
202 #if ENABLE_FEATURE_FIND_REGEX
206 if (regexec(&ap->compiled_pattern, fileName, 1, &match, 0 /*eflags*/))
207 return 0; /* no match */
209 return 0; /* match doesn't start at pos 0 */
210 if (fileName[match.rm_eo])
211 return 0; /* match doesn't end exactly at end of pathname */
215 #if ENABLE_FEATURE_FIND_TYPE
218 return ((statbuf->st_mode & S_IFMT) == ap->type_mask);
221 #if ENABLE_FEATURE_FIND_PERM
224 /* -perm +mode: at least one of perm_mask bits are set */
225 if (ap->perm_char == '+')
226 return (statbuf->st_mode & ap->perm_mask) != 0;
227 /* -perm -mode: all of perm_mask are set */
228 if (ap->perm_char == '-')
229 return (statbuf->st_mode & ap->perm_mask) == ap->perm_mask;
230 /* -perm mode: file mode must match perm_mask */
231 return (statbuf->st_mode & 07777) == ap->perm_mask;
234 #if ENABLE_FEATURE_FIND_MTIME
237 time_t file_age = time(NULL) - statbuf->st_mtime;
238 time_t mtime_secs = ap->mtime_days * 24*60*60;
239 if (ap->mtime_char == '+')
240 return file_age >= mtime_secs + 24*60*60;
241 if (ap->mtime_char == '-')
242 return file_age < mtime_secs;
243 /* just numeric mtime */
244 return file_age >= mtime_secs && file_age < (mtime_secs + 24*60*60);
247 #if ENABLE_FEATURE_FIND_MMIN
250 time_t file_age = time(NULL) - statbuf->st_mtime;
251 time_t mmin_secs = ap->mmin_mins * 60;
252 if (ap->mmin_char == '+')
253 return file_age >= mmin_secs + 60;
254 if (ap->mmin_char == '-')
255 return file_age < mmin_secs;
256 /* just numeric mmin */
257 return file_age >= mmin_secs && file_age < (mmin_secs + 60);
260 #if ENABLE_FEATURE_FIND_NEWER
263 return (ap->newer_mtime < statbuf->st_mtime);
266 #if ENABLE_FEATURE_FIND_INUM
269 return (statbuf->st_ino == ap->inode_num);
272 #if ENABLE_FEATURE_FIND_EXEC
276 char *argv[ap->exec_argc + 1];
277 for (i = 0; i < ap->exec_argc; i++)
278 argv[i] = subst(ap->exec_argv[i], ap->subst_count[i], fileName);
279 argv[i] = NULL; /* terminate the list */
281 rc = spawn_and_wait(argv);
283 bb_simple_perror_msg(argv[0]);
288 return rc == 0; /* return 1 if exitcode 0 */
291 #if ENABLE_FEATURE_FIND_USER
294 return (statbuf->st_uid == ap->uid);
297 #if ENABLE_FEATURE_FIND_GROUP
300 return (statbuf->st_gid == ap->gid);
303 #if ENABLE_FEATURE_FIND_PRINT0
306 printf("%s%c", fileName, '\0');
315 #if ENABLE_FEATURE_FIND_PAREN
318 return exec_actions(ap->subexpr, fileName, statbuf);
321 #if ENABLE_FEATURE_FIND_SIZE
324 if (ap->size_char == '+')
325 return statbuf->st_size > ap->size;
326 if (ap->size_char == '-')
327 return statbuf->st_size < ap->size;
328 return statbuf->st_size == ap->size;
331 #if ENABLE_FEATURE_FIND_PRUNE
333 * -prune: if -depth is not given, return true and do not descend
334 * current dir; if -depth is given, return false with no effect.
336 * find dir -name 'asm-*' -prune -o -name '*.[chS]' -print
343 #if ENABLE_FEATURE_FIND_DELETE
347 if (S_ISDIR(statbuf->st_mode)) {
348 rc = rmdir(fileName);
350 rc = unlink(fileName);
353 bb_simple_perror_msg(fileName);
357 #if ENABLE_FEATURE_FIND_CONTEXT
360 security_context_t con;
363 if (recurse_flags & ACTION_FOLLOWLINKS) {
364 rc = getfilecon(fileName, &con);
366 rc = lgetfilecon(fileName, &con);
370 rc = strcmp(ap->context, con);
377 static int FAST_FUNC fileAction(const char *fileName,
378 struct stat *statbuf,
379 void *userData SKIP_FEATURE_FIND_MAXDEPTH(UNUSED_PARAM),
380 int depth SKIP_FEATURE_FIND_MAXDEPTH(UNUSED_PARAM))
383 #if ENABLE_FEATURE_FIND_MAXDEPTH
384 #define minmaxdepth ((int*)userData)
386 if (depth < minmaxdepth[0]) return TRUE;
387 if (depth > minmaxdepth[1]) return SKIP;
391 #if ENABLE_FEATURE_FIND_XDEV
392 if (S_ISDIR(statbuf->st_mode) && xdev_count) {
393 for (i = 0; i < xdev_count; i++) {
394 if (xdev_dev[i] == statbuf->st_dev)
401 i = exec_actions(actions, fileName, statbuf);
402 /* Had no explicit -print[0] or -exec? then print */
403 if ((i & TRUE) && need_print)
405 /* Cannot return 0: our caller, recursive_action(),
406 * will perror() and skip dirs (if called on dir) */
407 return (i & SKIP) ? SKIP : TRUE;
411 #if ENABLE_FEATURE_FIND_TYPE
412 static int find_type(const char *type)
418 else if (*type == 'c')
420 else if (*type == 'd')
422 else if (*type == 'p')
424 else if (*type == 'f')
426 else if (*type == 'l')
428 else if (*type == 's')
431 if (mask == 0 || *(type + 1) != '\0')
432 bb_error_msg_and_die(bb_msg_invalid_arg, type, "-type");
438 #if ENABLE_FEATURE_FIND_PERM \
439 || ENABLE_FEATURE_FIND_MTIME || ENABLE_FEATURE_FIND_MMIN \
440 || ENABLE_FEATURE_FIND_SIZE
441 static const char* plus_minus_num(const char* str)
443 if (*str == '-' || *str == '+')
449 static action*** parse_params(char **argv)
454 USE_FEATURE_FIND_NOT( PARM_char_not ,)
458 USE_FEATURE_FIND_NOT( PARM_not ,)
461 USE_FEATURE_FIND_PRINT0( PARM_print0 ,)
462 USE_FEATURE_FIND_DEPTH( PARM_depth ,)
463 USE_FEATURE_FIND_PRUNE( PARM_prune ,)
464 USE_FEATURE_FIND_DELETE( PARM_delete ,)
465 USE_FEATURE_FIND_EXEC( PARM_exec ,)
466 USE_FEATURE_FIND_PAREN( PARM_char_brace,)
467 /* All options starting from here require argument */
470 USE_FEATURE_FIND_PATH( PARM_path ,)
471 USE_FEATURE_FIND_REGEX( PARM_regex ,)
472 USE_FEATURE_FIND_TYPE( PARM_type ,)
473 USE_FEATURE_FIND_PERM( PARM_perm ,)
474 USE_FEATURE_FIND_MTIME( PARM_mtime ,)
475 USE_FEATURE_FIND_MMIN( PARM_mmin ,)
476 USE_FEATURE_FIND_NEWER( PARM_newer ,)
477 USE_FEATURE_FIND_INUM( PARM_inum ,)
478 USE_FEATURE_FIND_USER( PARM_user ,)
479 USE_FEATURE_FIND_GROUP( PARM_group ,)
480 USE_FEATURE_FIND_SIZE( PARM_size ,)
481 USE_FEATURE_FIND_CONTEXT(PARM_context ,)
484 static const char params[] ALIGN1 =
487 USE_FEATURE_FIND_NOT( "!\0" )
491 USE_FEATURE_FIND_NOT( "-not\0" )
494 USE_FEATURE_FIND_PRINT0( "-print0\0" )
495 USE_FEATURE_FIND_DEPTH( "-depth\0" )
496 USE_FEATURE_FIND_PRUNE( "-prune\0" )
497 USE_FEATURE_FIND_DELETE( "-delete\0" )
498 USE_FEATURE_FIND_EXEC( "-exec\0" )
499 USE_FEATURE_FIND_PAREN( "(\0" )
500 /* All options starting from here require argument */
503 USE_FEATURE_FIND_PATH( "-path\0" )
504 USE_FEATURE_FIND_REGEX( "-regex\0" )
505 USE_FEATURE_FIND_TYPE( "-type\0" )
506 USE_FEATURE_FIND_PERM( "-perm\0" )
507 USE_FEATURE_FIND_MTIME( "-mtime\0" )
508 USE_FEATURE_FIND_MMIN( "-mmin\0" )
509 USE_FEATURE_FIND_NEWER( "-newer\0" )
510 USE_FEATURE_FIND_INUM( "-inum\0" )
511 USE_FEATURE_FIND_USER( "-user\0" )
512 USE_FEATURE_FIND_GROUP( "-group\0" )
513 USE_FEATURE_FIND_SIZE( "-size\0" )
514 USE_FEATURE_FIND_CONTEXT("-context\0")
518 unsigned cur_group = 0;
519 unsigned cur_action = 0;
520 USE_FEATURE_FIND_NOT( bool invert_flag = 0; )
522 /* This is the only place in busybox where we use nested function.
523 * So far more standard alternatives were bigger. */
524 /* Suppress a warning "func without a prototype" */
525 auto action* alloc_action(int sizeof_struct, action_fp f);
526 action* alloc_action(int sizeof_struct, action_fp f)
529 appp[cur_group] = xrealloc(appp[cur_group], (cur_action+2) * sizeof(*appp));
530 appp[cur_group][cur_action++] = ap = xmalloc(sizeof_struct);
531 appp[cur_group][cur_action] = NULL;
533 USE_FEATURE_FIND_NOT( ap->invert = invert_flag; )
534 USE_FEATURE_FIND_NOT( invert_flag = 0; )
538 #define ALLOC_ACTION(name) (action_##name*)alloc_action(sizeof(action_##name), (action_fp) func_##name)
540 appp = xzalloc(2 * sizeof(appp[0])); /* appp[0],[1] == NULL */
542 /* Actions have side effects and return a true or false value
543 * We implement: -print, -print0, -exec
545 * The rest are tests.
547 * Tests and actions are grouped by operators
548 * ( expr ) Force precedence
549 * ! expr True if expr is false
550 * -not expr Same as ! expr
551 * expr1 [-a[nd]] expr2 And; expr2 is not evaluated if expr1 is false
552 * expr1 -o[r] expr2 Or; expr2 is not evaluated if expr1 is true
553 * expr1 , expr2 List; both expr1 and expr2 are always evaluated
554 * We implement: (), -a, -o
557 const char *arg = argv[0];
558 int parm = index_in_strings(params, arg);
559 const char *arg1 = argv[1];
561 if (parm >= PARM_name) {
562 /* All options starting from -name require argument */
564 bb_error_msg_and_die(bb_msg_requires_arg, arg);
568 /* We can use big switch() here, but on i386
569 * it doesn't give smaller code. Other arches? */
571 /* --- Operators --- */
572 if (parm == PARM_a USE_DESKTOP(|| parm == PARM_and)) {
573 /* no further special handling required */
575 else if (parm == PARM_o USE_DESKTOP(|| parm == PARM_or)) {
576 /* start new OR group */
578 appp = xrealloc(appp, (cur_group+2) * sizeof(*appp));
579 /*appp[cur_group] = NULL; - already NULL */
580 appp[cur_group+1] = NULL;
583 #if ENABLE_FEATURE_FIND_NOT
584 else if (parm == PARM_char_not USE_DESKTOP(|| parm == PARM_not)) {
585 /* also handles "find ! ! -name 'foo*'" */
590 /* --- Tests and actions --- */
591 else if (parm == PARM_print) {
593 /* GNU find ignores '!' here: "find ! -print" */
594 USE_FEATURE_FIND_NOT( invert_flag = 0; )
595 (void) ALLOC_ACTION(print);
597 #if ENABLE_FEATURE_FIND_PRINT0
598 else if (parm == PARM_print0) {
600 USE_FEATURE_FIND_NOT( invert_flag = 0; )
601 (void) ALLOC_ACTION(print0);
604 #if ENABLE_FEATURE_FIND_DEPTH
605 else if (parm == PARM_depth) {
606 recurse_flags |= ACTION_DEPTHFIRST;
609 #if ENABLE_FEATURE_FIND_PRUNE
610 else if (parm == PARM_prune) {
611 USE_FEATURE_FIND_NOT( invert_flag = 0; )
612 (void) ALLOC_ACTION(prune);
615 #if ENABLE_FEATURE_FIND_DELETE
616 else if (parm == PARM_delete) {
618 recurse_flags |= ACTION_DEPTHFIRST;
619 (void) ALLOC_ACTION(delete);
622 #if ENABLE_FEATURE_FIND_EXEC
623 else if (parm == PARM_exec) {
627 USE_FEATURE_FIND_NOT( invert_flag = 0; )
628 ap = ALLOC_ACTION(exec);
629 ap->exec_argv = ++argv; /* first arg after -exec */
632 if (!*argv) /* did not see ';' until end */
633 bb_error_msg_and_die("-exec CMD must end by ';'");
634 if (LONE_CHAR(argv[0], ';'))
639 if (ap->exec_argc == 0)
640 bb_error_msg_and_die(bb_msg_requires_arg, arg);
641 ap->subst_count = xmalloc(ap->exec_argc * sizeof(int));
644 ap->subst_count[i] = count_subst(ap->exec_argv[i]);
647 #if ENABLE_FEATURE_FIND_PAREN
648 else if (parm == PARM_char_brace) {
656 bb_error_msg_and_die("unpaired '('");
657 if (LONE_CHAR(*endarg, '('))
659 else if (LONE_CHAR(*endarg, ')') && !--nested) {
664 ap = ALLOC_ACTION(paren);
665 ap->subexpr = parse_params(argv + 1);
666 *endarg = (char*) ")"; /* restore NULLed parameter */
670 else if (parm == PARM_name || parm == PARM_iname) {
672 ap = ALLOC_ACTION(name);
674 ap->iname = (parm == PARM_iname);
676 #if ENABLE_FEATURE_FIND_PATH
677 else if (parm == PARM_path) {
679 ap = ALLOC_ACTION(path);
683 #if ENABLE_FEATURE_FIND_REGEX
684 else if (parm == PARM_regex) {
686 ap = ALLOC_ACTION(regex);
687 xregcomp(&ap->compiled_pattern, arg1, 0 /*cflags*/);
690 #if ENABLE_FEATURE_FIND_TYPE
691 else if (parm == PARM_type) {
693 ap = ALLOC_ACTION(type);
694 ap->type_mask = find_type(arg1);
697 #if ENABLE_FEATURE_FIND_PERM
698 /* -perm mode File's permission bits are exactly mode (octal or symbolic).
699 * Symbolic modes use mode 0 as a point of departure.
700 * -perm -mode All of the permission bits mode are set for the file.
701 * -perm +mode Any of the permission bits mode are set for the file.
703 else if (parm == PARM_perm) {
705 ap = ALLOC_ACTION(perm);
706 ap->perm_char = arg1[0];
707 arg1 = plus_minus_num(arg1);
709 if (!bb_parse_mode(arg1, &ap->perm_mask))
710 bb_error_msg_and_die("invalid mode: %s", arg1);
713 #if ENABLE_FEATURE_FIND_MTIME
714 else if (parm == PARM_mtime) {
716 ap = ALLOC_ACTION(mtime);
717 ap->mtime_char = arg1[0];
718 ap->mtime_days = xatoul(plus_minus_num(arg1));
721 #if ENABLE_FEATURE_FIND_MMIN
722 else if (parm == PARM_mmin) {
724 ap = ALLOC_ACTION(mmin);
725 ap->mmin_char = arg1[0];
726 ap->mmin_mins = xatoul(plus_minus_num(arg1));
729 #if ENABLE_FEATURE_FIND_NEWER
730 else if (parm == PARM_newer) {
731 struct stat stat_newer;
733 ap = ALLOC_ACTION(newer);
734 xstat(arg1, &stat_newer);
735 ap->newer_mtime = stat_newer.st_mtime;
738 #if ENABLE_FEATURE_FIND_INUM
739 else if (parm == PARM_inum) {
741 ap = ALLOC_ACTION(inum);
742 ap->inode_num = xatoul(arg1);
745 #if ENABLE_FEATURE_FIND_USER
746 else if (parm == PARM_user) {
748 ap = ALLOC_ACTION(user);
749 ap->uid = bb_strtou(arg1, NULL, 10);
751 ap->uid = xuname2uid(arg1);
754 #if ENABLE_FEATURE_FIND_GROUP
755 else if (parm == PARM_group) {
757 ap = ALLOC_ACTION(group);
758 ap->gid = bb_strtou(arg1, NULL, 10);
760 ap->gid = xgroup2gid(arg1);
763 #if ENABLE_FEATURE_FIND_SIZE
764 else if (parm == PARM_size) {
765 /* -size n[bckw]: file uses n units of space
766 * b (default): units are 512-byte blocks
772 #define XATOU_SFX xatoull_sfx
774 #define XATOU_SFX xatoul_sfx
776 static const struct suffix_mult find_suffixes[] = {
785 ap = ALLOC_ACTION(size);
786 ap->size_char = arg1[0];
787 ap->size = XATOU_SFX(plus_minus_num(arg1), find_suffixes);
790 #if ENABLE_FEATURE_FIND_CONTEXT
791 else if (parm == PARM_context) {
793 ap = ALLOC_ACTION(context);
795 /* SELinux headers erroneously declare non-const parameter */
796 if (selinux_raw_to_trans_context((char*)arg1, &ap->context))
797 bb_simple_perror_msg(arg1);
801 bb_error_msg("unrecognized: %s", arg);
811 int find_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
812 int find_main(int argc, char **argv)
814 static const char options[] ALIGN1 =
816 USE_FEATURE_FIND_XDEV( "-xdev\0" )
817 USE_FEATURE_FIND_MAXDEPTH("-mindepth\0""-maxdepth\0")
821 USE_FEATURE_FIND_XDEV( OPT_XDEV ,)
822 USE_FEATURE_FIND_MAXDEPTH(OPT_MINDEPTH,)
827 int i, firstopt, status = EXIT_SUCCESS;
828 #if ENABLE_FEATURE_FIND_MAXDEPTH
829 int minmaxdepth[2] = { 0, INT_MAX };
831 #define minmaxdepth NULL
834 for (firstopt = 1; firstopt < argc; firstopt++) {
835 if (argv[firstopt][0] == '-')
837 if (ENABLE_FEATURE_FIND_NOT && LONE_CHAR(argv[firstopt], '!'))
839 #if ENABLE_FEATURE_FIND_PAREN
840 if (LONE_CHAR(argv[firstopt], '('))
845 argv[0] = (char*)".";
850 /* All options always return true. They always take effect
851 * rather than being processed only when their place in the
852 * expression is reached.
853 * We implement: -follow, -xdev, -maxdepth
855 /* Process options, and replace then with -a */
856 /* (-a will be ignored by recursive parser later) */
857 argp = &argv[firstopt];
858 while ((arg = argp[0])) {
859 int opt = index_in_strings(options, arg);
860 if (opt == OPT_FOLLOW) {
861 recurse_flags |= ACTION_FOLLOWLINKS;
862 argp[0] = (char*)"-a";
864 #if ENABLE_FEATURE_FIND_XDEV
865 if (opt == OPT_XDEV) {
868 xdev_count = firstopt - 1;
869 xdev_dev = xmalloc(xdev_count * sizeof(dev_t));
870 for (i = 1; i < firstopt; i++) {
871 /* not xstat(): shouldn't bomb out on
872 * "find not_exist exist -xdev" */
873 if (stat(argv[i], &stbuf))
875 xdev_dev[i-1] = stbuf.st_dev;
878 argp[0] = (char*)"-a";
881 #if ENABLE_FEATURE_FIND_MAXDEPTH
882 if (opt == OPT_MINDEPTH || opt == OPT_MINDEPTH + 1) {
885 minmaxdepth[opt - OPT_MINDEPTH] = xatoi_u(argp[1]);
886 argp[0] = (char*)"-a";
887 argp[1] = (char*)"-a";
894 actions = parse_params(&argv[firstopt]);
896 for (i = 1; i < firstopt; i++) {
897 if (!recursive_action(argv[i],
898 recurse_flags, /* flags */
899 fileAction, /* file action */
900 fileAction, /* dir action */
901 #if ENABLE_FEATURE_FIND_MAXDEPTH
902 minmaxdepth, /* user data */
904 NULL, /* user data */
907 status = EXIT_FAILURE;