find: fix -prune more. Add big comment about it.
[oweals/busybox.git] / findutils / find.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini find implementation for busybox
4  *
5  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
6  *
7  * Reworked by David Douthitt <n9ubh@callsign.net> and
8  *  Matt Kraai <kraai@alumni.carnegiemellon.edu>.
9  *
10  * Licensed under the GPL version 2, see the file LICENSE in this tarball.
11  */
12
13 /* findutils-4.1.20:
14  *
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' '{}  {}' ';'
24  * file.txt  file.txt
25  * (strace: execve("/bin/echo", ["echo", "file.txt  file.txt"], [ 30 vars ]))
26  * # find file.txt -exec 'echo' '{}  {}' ';' -print -exec pwd ';'
27  * file.txt  file.txt
28  * file.txt
29  * /tmp
30  * # find -name '*.c' -o -name '*.h'
31  * [shows files, *.c and *.h intermixed]
32  * # find file.txt -name '*f*' -o -name '*t*'
33  * file.txt
34  * # find file.txt -name '*z*' -o -name '*t*'
35  * file.txt
36  * # find file.txt -name '*f*' -o -name '*z*'
37  * file.txt
38  *
39  * # find t z -name '*t*' -print -o -name '*z*'
40  * t
41  * # find t z t z -name '*t*' -o -name '*z*' -print
42  * z
43  * z
44  * # find t z t z '(' -name '*t*' -o -name '*z*' ')' -o -print
45  * (no output)
46  */
47
48 #include <fnmatch.h>
49 #include "busybox.h"
50
51 USE_FEATURE_FIND_XDEV(static dev_t *xdev_dev;)
52 USE_FEATURE_FIND_XDEV(static int xdev_count;)
53
54 typedef int (*action_fp)(const char *fileName, struct stat *statbuf, void *);
55
56 typedef struct {
57         action_fp f;
58 #if ENABLE_FEATURE_FIND_NOT
59         bool invert;
60 #endif
61 } action;
62 #define ACTS(name, arg...) typedef struct { action a; arg; } action_##name;
63 #define ACTF(name)         static int func_##name(const char *fileName, struct stat *statbuf, action_##name* ap)
64                         ACTS(print)
65                         ACTS(name,  const char *pattern;)
66 USE_FEATURE_FIND_PRINT0(ACTS(print0))
67 USE_FEATURE_FIND_TYPE(  ACTS(type,  int type_mask;))
68 USE_FEATURE_FIND_PERM(  ACTS(perm,  char perm_char; mode_t perm_mask;))
69 USE_FEATURE_FIND_MTIME( ACTS(mtime, char mtime_char; unsigned mtime_days;))
70 USE_FEATURE_FIND_MMIN(  ACTS(mmin,  char mmin_char; unsigned mmin_mins;))
71 USE_FEATURE_FIND_NEWER( ACTS(newer, time_t newer_mtime;))
72 USE_FEATURE_FIND_INUM(  ACTS(inum,  ino_t inode_num;))
73 USE_FEATURE_FIND_EXEC(  ACTS(exec,  char **exec_argv; unsigned *subst_count; int exec_argc;))
74 USE_FEATURE_FIND_USER(  ACTS(user,  uid_t uid;))
75 USE_FEATURE_FIND_GROUP( ACTS(group, gid_t gid;))
76 USE_FEATURE_FIND_PAREN( ACTS(paren, action ***subexpr;))
77 USE_FEATURE_FIND_SIZE(  ACTS(size,  off_t size;))
78 USE_FEATURE_FIND_PRUNE( ACTS(prune))
79
80 static action ***actions;
81 static bool need_print = 1;
82 static int recurse_flags = ACTION_RECURSE;
83
84 #if ENABLE_FEATURE_FIND_EXEC
85 static unsigned count_subst(const char *str)
86 {
87         unsigned count = 0;
88         while ((str = strstr(str, "{}"))) {
89                 count++;
90                 str++;
91         }
92         return count;
93 }
94
95
96 static char* subst(const char *src, unsigned count, const char* filename)
97 {
98         char *buf, *dst, *end;
99         size_t flen = strlen(filename);
100         /* we replace each '{}' with filename: growth by strlen-2 */
101         buf = dst = xmalloc(strlen(src) + count*(flen-2) + 1);
102         while ((end = strstr(src, "{}"))) {
103                 memcpy(dst, src, end - src);
104                 dst += end - src;
105                 src = end + 2;
106                 memcpy(dst, filename, flen);
107                 dst += flen;
108         }
109         strcpy(dst, src);
110         return buf;
111 }
112 #endif
113
114 /* Return values of ACTFs ('action functions') are a bit mask:
115  * bit 1=1: prune (use SKIP constant for setting it)
116  * bit 0=1: matched successfully (TRUE)
117  */
118
119 static int exec_actions(action ***appp, const char *fileName, struct stat *statbuf)
120 {
121         int cur_group;
122         int cur_action;
123         int rc = 0;
124         action **app, *ap;
125
126         /* "action group" is a set of actions ANDed together.
127          * groups are ORed together.
128          * We simply evaluate each group until we find one in which all actions
129          * succeed. */
130
131         /* -prune is special: if it is encountered, then we won't
132          * descend into current directory. It doesn't matter whether
133          * action group (in which -prune sits) will succeed or not:
134          * find * -prune -name 'f*' -o -name 'm*' -- prunes every dir
135          * find * -name 'f*' -o -prune -name 'm*' -- prunes all dirs
136          *     not starting with 'f' */
137
138         /* We invert TRUE bit (bit 0). Now 1 there means 'failure'.
139          * and bitwise OR in "rc |= TRUE ^ ap->f()" will:
140          * (1) make SKIP (-prune) bit stick; and (2) detect 'failure'.
141          * On return, bit is restored.  */
142
143         cur_group = -1;
144         while ((app = appp[++cur_group])) {
145                 rc &= ~TRUE; /* 'success' so far, clear TRUE bit */
146                 cur_action = -1;
147                 while (1) {
148                         ap = app[++cur_action];
149                         if (!ap) /* all actions in group were successful */
150                                 return rc ^ TRUE; /* restore TRUE bit */
151                         rc |= TRUE ^ ap->f(fileName, statbuf, ap);
152 #if ENABLE_FEATURE_FIND_NOT
153                         if (ap->invert) rc ^= TRUE;
154 #endif
155                         if (rc & TRUE) /* current group failed, try next */
156                                 break;
157                 }
158         }
159         return rc ^ TRUE; /* restore TRUE bit */
160 }
161
162
163 ACTF(name)
164 {
165         const char *tmp = strrchr(fileName, '/');
166         if (tmp == NULL)
167                 tmp = fileName;
168         else {
169                 tmp++;
170                 if (!*tmp) { /* "foo/bar/". Oh no... go back to 'b' */
171                         tmp--;
172                         while (tmp != fileName && *--tmp != '/')
173                                 continue;
174                         if (*tmp == '/')
175                                 tmp++;
176                 }
177         }
178         return fnmatch(ap->pattern, tmp, FNM_PERIOD) == 0;
179 }
180 #if ENABLE_FEATURE_FIND_TYPE
181 ACTF(type)
182 {
183         return ((statbuf->st_mode & S_IFMT) == ap->type_mask);
184 }
185 #endif
186 #if ENABLE_FEATURE_FIND_PERM
187 ACTF(perm)
188 {
189         /* -perm +mode: at least one of perm_mask bits are set */
190         if (ap->perm_char == '+')
191                 return (statbuf->st_mode & ap->perm_mask) != 0;
192         /* -perm -mode: all of perm_mask are set */
193         if (ap->perm_char == '-')
194                 return (statbuf->st_mode & ap->perm_mask) == ap->perm_mask;
195         /* -perm mode: file mode must match perm_mask */
196         return (statbuf->st_mode & 07777) == ap->perm_mask;
197 }
198 #endif
199 #if ENABLE_FEATURE_FIND_MTIME
200 ACTF(mtime)
201 {
202         time_t file_age = time(NULL) - statbuf->st_mtime;
203         time_t mtime_secs = ap->mtime_days * 24*60*60;
204         if (ap->mtime_char == '+')
205                 return file_age >= mtime_secs + 24*60*60;
206         if (ap->mtime_char == '-')
207                 return file_age < mtime_secs;
208         /* just numeric mtime */
209         return file_age >= mtime_secs && file_age < (mtime_secs + 24*60*60);
210 }
211 #endif
212 #if ENABLE_FEATURE_FIND_MMIN
213 ACTF(mmin)
214 {
215         time_t file_age = time(NULL) - statbuf->st_mtime;
216         time_t mmin_secs = ap->mmin_mins * 60;
217         if (ap->mmin_char == '+')
218                 return file_age >= mmin_secs + 60;
219         if (ap->mmin_char == '-')
220                 return file_age < mmin_secs;
221         /* just numeric mmin */
222         return file_age >= mmin_secs && file_age < (mmin_secs + 60);
223 }
224 #endif
225 #if ENABLE_FEATURE_FIND_NEWER
226 ACTF(newer)
227 {
228         return (ap->newer_mtime < statbuf->st_mtime);
229 }
230 #endif
231 #if ENABLE_FEATURE_FIND_INUM
232 ACTF(inum)
233 {
234         return (statbuf->st_ino == ap->inode_num);
235 }
236 #endif
237 #if ENABLE_FEATURE_FIND_EXEC
238 ACTF(exec)
239 {
240         int i, rc;
241         char *argv[ap->exec_argc+1];
242         for (i = 0; i < ap->exec_argc; i++)
243                 argv[i] = subst(ap->exec_argv[i], ap->subst_count[i], fileName);
244         argv[i] = NULL; /* terminate the list */
245         rc = wait4pid(spawn(argv));
246         if (rc)
247                 bb_perror_msg("%s", argv[0]);
248         for (i = 0; i < ap->exec_argc; i++)
249                 free(argv[i]);
250         return rc == 0; /* return 1 if success */
251 }
252 #endif
253
254 #if ENABLE_FEATURE_FIND_USER
255 ACTF(user)
256 {
257         return (statbuf->st_uid == ap->uid);
258 }
259 #endif
260
261 #if ENABLE_FEATURE_FIND_GROUP
262 ACTF(group)
263 {
264         return (statbuf->st_gid == ap->gid);
265 }
266 #endif
267
268 #if ENABLE_FEATURE_FIND_PRINT0
269 ACTF(print0)
270 {
271         printf("%s%c", fileName, '\0');
272         return TRUE;
273 }
274 #endif
275
276 ACTF(print)
277 {
278         puts(fileName);
279         return TRUE;
280 }
281
282 #if ENABLE_FEATURE_FIND_PAREN
283 ACTF(paren)
284 {
285         return exec_actions(ap->subexpr, fileName, statbuf);
286 }
287 #endif
288
289 #if ENABLE_FEATURE_FIND_PRUNE
290 /*
291  * -prune: if -depth is not given, return true and do not descend
292  * current dir; if -depth is given, return false with no effect.
293  * Example:
294  * find dir -name 'asm-*' -prune -o -name '*.[chS]' -print
295  */
296 ACTF(prune)
297 {
298         return SKIP + TRUE;
299 }
300 #endif
301
302 #if ENABLE_FEATURE_FIND_SIZE
303 ACTF(size)
304 {
305         return statbuf->st_size == ap->size;
306 }
307 #endif
308
309
310 static int fileAction(const char *fileName, struct stat *statbuf, void* junk, int depth)
311 {
312         int i;
313 #if ENABLE_FEATURE_FIND_XDEV
314         if (S_ISDIR(statbuf->st_mode) && xdev_count) {
315                 for (i = 0; i < xdev_count; i++) {
316                         if (xdev_dev[i] != statbuf->st_dev)
317                                 return SKIP;
318                 }
319         }
320 #endif
321         i = exec_actions(actions, fileName, statbuf);
322         /* Had no explicit -print[0] or -exec? then print */
323         if ((i & TRUE) && need_print)
324                 puts(fileName);
325         /* Cannot return 0: our caller, recursive_action(),
326          * will perror() and skip dirs (if called on dir) */
327         return (i & SKIP) ? SKIP : TRUE;
328 }
329
330
331 #if ENABLE_FEATURE_FIND_TYPE
332 static int find_type(const char *type)
333 {
334         int mask = 0;
335
336         if (*type == 'b')
337                 mask = S_IFBLK;
338         else if (*type == 'c')
339                 mask = S_IFCHR;
340         else if (*type == 'd')
341                 mask = S_IFDIR;
342         else if (*type == 'p')
343                 mask = S_IFIFO;
344         else if (*type == 'f')
345                 mask = S_IFREG;
346         else if (*type == 'l')
347                 mask = S_IFLNK;
348         else if (*type == 's')
349                 mask = S_IFSOCK;
350
351         if (mask == 0 || *(type + 1) != '\0')
352                 bb_error_msg_and_die(bb_msg_invalid_arg, type, "-type");
353
354         return mask;
355 }
356 #endif
357
358 #if ENABLE_FEATURE_FIND_PERM || ENABLE_FEATURE_FIND_MTIME \
359  || ENABLE_FEATURE_FIND_MMIN
360 static const char* plus_minus_num(const char* str)
361 {
362         if (*str == '-' || *str == '+')
363                 str++;
364         return str;
365 }
366 #endif
367
368 static action*** parse_params(char **argv)
369 {
370         enum {
371                                 PARM_a         ,
372                                 PARM_o         ,
373         USE_FEATURE_FIND_NOT(   PARM_char_not  ,)
374                                 PARM_print     ,
375         USE_FEATURE_FIND_PRINT0(PARM_print0    ,)
376                                 PARM_name      ,
377         USE_FEATURE_FIND_TYPE(  PARM_type      ,)
378         USE_FEATURE_FIND_PERM(  PARM_perm      ,)
379         USE_FEATURE_FIND_MTIME( PARM_mtime     ,)
380         USE_FEATURE_FIND_MMIN(  PARM_mmin      ,)
381         USE_FEATURE_FIND_NEWER( PARM_newer     ,)
382         USE_FEATURE_FIND_INUM(  PARM_inum      ,)
383         USE_FEATURE_FIND_EXEC(  PARM_exec      ,)
384         USE_FEATURE_FIND_USER(  PARM_user      ,)
385         USE_FEATURE_FIND_GROUP( PARM_group     ,)
386         USE_FEATURE_FIND_DEPTH( PARM_depth     ,)
387         USE_FEATURE_FIND_PAREN( PARM_char_brace,)
388         USE_FEATURE_FIND_SIZE(  PARM_size      ,)
389         USE_FEATURE_FIND_PRUNE( PARM_prune     ,)
390 #if ENABLE_DESKTOP
391                                 PARM_and       ,
392                                 PARM_or        ,
393         USE_FEATURE_FIND_NOT(   PARM_not       ,)
394 #endif
395         };
396
397         static const char *const params[] = {
398                                 "-a"     ,
399                                 "-o"     ,
400         USE_FEATURE_FIND_NOT(   "!"      ,)
401                                 "-print" ,
402         USE_FEATURE_FIND_PRINT0("-print0",)
403                                 "-name"  ,
404         USE_FEATURE_FIND_TYPE(  "-type"  ,)
405         USE_FEATURE_FIND_PERM(  "-perm"  ,)
406         USE_FEATURE_FIND_MTIME( "-mtime" ,)
407         USE_FEATURE_FIND_MMIN(  "-mmin"  ,)
408         USE_FEATURE_FIND_NEWER( "-newer" ,)
409         USE_FEATURE_FIND_INUM(  "-inum"  ,)
410         USE_FEATURE_FIND_EXEC(  "-exec"  ,)
411         USE_FEATURE_FIND_USER(  "-user"  ,)
412         USE_FEATURE_FIND_GROUP( "-group" ,)
413         USE_FEATURE_FIND_DEPTH( "-depth" ,)
414         USE_FEATURE_FIND_PAREN( "("      ,)
415         USE_FEATURE_FIND_SIZE(  "-size"  ,)
416         USE_FEATURE_FIND_PRUNE( "-prune" ,)
417 #if ENABLE_DESKTOP
418                                 "-and"   ,
419                                 "-or"    ,
420         USE_FEATURE_FIND_NOT(   "-not"   ,)
421 #endif
422                                 NULL
423         };
424
425         action*** appp;
426         unsigned cur_group = 0;
427         unsigned cur_action = 0;
428         USE_FEATURE_FIND_NOT( bool invert_flag = 0; )
429
430         /* 'static' doesn't work here! (gcc 4.1.2) */
431         action* alloc_action(int sizeof_struct, action_fp f)
432         {
433                 action *ap;
434                 appp[cur_group] = xrealloc(appp[cur_group], (cur_action+2) * sizeof(*appp));
435                 appp[cur_group][cur_action++] = ap = xmalloc(sizeof_struct);
436                 appp[cur_group][cur_action] = NULL;
437                 ap->f = f;
438                 USE_FEATURE_FIND_NOT( ap->invert = invert_flag; )
439                 USE_FEATURE_FIND_NOT( invert_flag = 0; )
440                 return ap;
441         }
442
443 #define ALLOC_ACTION(name) (action_##name*)alloc_action(sizeof(action_##name), (action_fp) func_##name)
444
445         appp = xzalloc(2 * sizeof(appp[0])); /* appp[0],[1] == NULL */
446
447 /* Actions have side effects and return a true or false value
448  * We implement: -print, -print0, -exec
449  *
450  * The rest are tests.
451  *
452  * Tests and actions are grouped by operators
453  * ( expr )              Force precedence
454  * ! expr                True if expr is false
455  * -not expr             Same as ! expr
456  * expr1 [-a[nd]] expr2  And; expr2 is not evaluated if expr1 is false
457  * expr1 -o[r] expr2     Or; expr2 is not evaluated if expr1 is true
458  * expr1 , expr2         List; both expr1 and expr2 are always evaluated
459  * We implement: (), -a, -o
460  */
461         while (*argv) {
462                 const char *arg = argv[0];
463                 const char *arg1 = argv[1];
464                 int parm = index_in_str_array(params, arg);
465         /* --- Operators --- */
466                 if (parm == PARM_a USE_DESKTOP(|| parm == PARM_and)) {
467                         /* no further special handling required */
468                 }
469                 else if (parm == PARM_o USE_DESKTOP(|| parm == PARM_or)) {
470                         /* start new OR group */
471                         cur_group++;
472                         appp = xrealloc(appp, (cur_group+2) * sizeof(*appp));
473                         /*appp[cur_group] = NULL; - already NULL */
474                         appp[cur_group+1] = NULL;
475                         cur_action = 0;
476                 }
477 #if ENABLE_FEATURE_FIND_NOT
478                 else if (parm == PARM_char_not USE_DESKTOP(|| parm == PARM_not)) {
479                         /* also handles "find ! ! -name 'foo*'" */
480                         invert_flag ^= 1;
481                 }
482 #endif
483
484         /* --- Tests and actions --- */
485                 else if (parm == PARM_print) {
486                         need_print = 0;
487                         /* GNU find ignores '!' here: "find ! -print" */
488                         USE_FEATURE_FIND_NOT( invert_flag = 0; )
489                         (void) ALLOC_ACTION(print);
490                 }
491 #if ENABLE_FEATURE_FIND_PRINT0
492                 else if (parm == PARM_print0) {
493                         need_print = 0;
494                         USE_FEATURE_FIND_NOT( invert_flag = 0; )
495                         (void) ALLOC_ACTION(print0);
496                 }
497 #endif
498                 else if (parm == PARM_name) {
499                         action_name *ap;
500                         if (!*++argv)
501                                 bb_error_msg_and_die(bb_msg_requires_arg, arg);
502                         ap = ALLOC_ACTION(name);
503                         ap->pattern = arg1;
504                 }
505 #if ENABLE_FEATURE_FIND_TYPE
506                 else if (parm == PARM_type) {
507                         action_type *ap;
508                         if (!*++argv)
509                                 bb_error_msg_and_die(bb_msg_requires_arg, arg);
510                         ap = ALLOC_ACTION(type);
511                         ap->type_mask = find_type(arg1);
512                 }
513 #endif
514 #if ENABLE_FEATURE_FIND_PERM
515 /* -perm mode   File's permission bits are exactly mode (octal or symbolic).
516  *              Symbolic modes use mode 0 as a point of departure.
517  * -perm -mode  All of the permission bits mode are set for the file.
518  * -perm +mode  Any of the permission bits mode are set for the file.
519  */
520                 else if (parm == PARM_perm) {
521                         action_perm *ap;
522                         if (!*++argv)
523                                 bb_error_msg_and_die(bb_msg_requires_arg, arg);
524                         ap = ALLOC_ACTION(perm);
525                         ap->perm_char = arg1[0];
526                         arg1 = plus_minus_num(arg1);
527                         ap->perm_mask = 0;
528                         if (!bb_parse_mode(arg1, &ap->perm_mask))
529                                 bb_error_msg_and_die("invalid mode: %s", arg1);
530                 }
531 #endif
532 #if ENABLE_FEATURE_FIND_MTIME
533                 else if (parm == PARM_mtime) {
534                         action_mtime *ap;
535                         if (!*++argv)
536                                 bb_error_msg_and_die(bb_msg_requires_arg, arg);
537                         ap = ALLOC_ACTION(mtime);
538                         ap->mtime_char = arg1[0];
539                         ap->mtime_days = xatoul(plus_minus_num(arg1));
540                 }
541 #endif
542 #if ENABLE_FEATURE_FIND_MMIN
543                 else if (parm == PARM_mmin) {
544                         action_mmin *ap;
545                         if (!*++argv)
546                                 bb_error_msg_and_die(bb_msg_requires_arg, arg);
547                         ap = ALLOC_ACTION(mmin);
548                         ap->mmin_char = arg1[0];
549                         ap->mmin_mins = xatoul(plus_minus_num(arg1));
550                 }
551 #endif
552 #if ENABLE_FEATURE_FIND_NEWER
553                 else if (parm == PARM_newer) {
554                         action_newer *ap;
555                         struct stat stat_newer;
556                         if (!*++argv)
557                                 bb_error_msg_and_die(bb_msg_requires_arg, arg);
558                         xstat(arg1, &stat_newer);
559                         ap = ALLOC_ACTION(newer);
560                         ap->newer_mtime = stat_newer.st_mtime;
561                 }
562 #endif
563 #if ENABLE_FEATURE_FIND_INUM
564                 else if (parm == PARM_inum) {
565                         action_inum *ap;
566                         if (!*++argv)
567                                 bb_error_msg_and_die(bb_msg_requires_arg, arg);
568                         ap = ALLOC_ACTION(inum);
569                         ap->inode_num = xatoul(arg1);
570                 }
571 #endif
572 #if ENABLE_FEATURE_FIND_EXEC
573                 else if (parm == PARM_exec) {
574                         int i;
575                         action_exec *ap;
576                         need_print = 0;
577                         USE_FEATURE_FIND_NOT( invert_flag = 0; )
578                         ap = ALLOC_ACTION(exec);
579                         ap->exec_argv = ++argv; /* first arg after -exec */
580                         ap->exec_argc = 0;
581                         while (1) {
582                                 if (!*argv) /* did not see ';' until end */
583                                         bb_error_msg_and_die(bb_msg_requires_arg, arg);
584                                 if (LONE_CHAR(argv[0], ';'))
585                                         break;
586                                 argv++;
587                                 ap->exec_argc++;
588                         }
589                         if (ap->exec_argc == 0)
590                                 bb_error_msg_and_die(bb_msg_requires_arg, arg);
591                         ap->subst_count = xmalloc(ap->exec_argc * sizeof(int));
592                         i = ap->exec_argc;
593                         while (i--)
594                                 ap->subst_count[i] = count_subst(ap->exec_argv[i]);
595                 }
596 #endif
597 #if ENABLE_FEATURE_FIND_USER
598                 else if (parm == PARM_user) {
599                         action_user *ap;
600                         if (!*++argv)
601                                 bb_error_msg_and_die(bb_msg_requires_arg, arg);
602                         ap = ALLOC_ACTION(user);
603                         ap->uid = bb_strtou(arg1, NULL, 10);
604                         if (errno)
605                                 ap->uid = xuname2uid(arg1);
606                 }
607 #endif
608 #if ENABLE_FEATURE_FIND_GROUP
609                 else if (parm == PARM_group) {
610                         action_group *ap;
611                         if (!*++argv)
612                                 bb_error_msg_and_die(bb_msg_requires_arg, arg);
613                         ap = ALLOC_ACTION(group);
614                         ap->gid = bb_strtou(arg1, NULL, 10);
615                         if (errno)
616                                 ap->gid = xgroup2gid(arg1);
617                 }
618 #endif
619 #if ENABLE_FEATURE_FIND_DEPTH
620                 else if (parm == PARM_depth) {
621                         recurse_flags |= ACTION_DEPTHFIRST;
622                 }
623 #endif
624 #if ENABLE_FEATURE_FIND_PAREN
625                 else if (parm == PARM_char_brace) {
626                         action_paren *ap;
627                         char **endarg;
628                         unsigned nested = 1;
629
630                         endarg = argv;
631                         while (1) {
632                                 if (!*++endarg)
633                                         bb_error_msg_and_die("unpaired '('");
634                                 if (LONE_CHAR(*endarg, '('))
635                                         nested++;
636                                 else if (LONE_CHAR(*endarg, ')') && !--nested) {
637                                         *endarg = NULL;
638                                         break;
639                                 }
640                         }
641                         ap = ALLOC_ACTION(paren);
642                         ap->subexpr = parse_params(argv + 1);
643                         *endarg = (char*) ")"; /* restore NULLed parameter */
644                         argv = endarg;
645                 }
646 #endif
647 #if ENABLE_FEATURE_FIND_PRUNE
648                 else if (parm == PARM_prune) {
649                         USE_FEATURE_FIND_NOT( invert_flag = 0; )
650                         (void) ALLOC_ACTION(prune);
651                 }
652 #endif
653 #if ENABLE_FEATURE_FIND_SIZE
654                 else if (parm == PARM_size) {
655                         action_size *ap;
656                         if (!*++argv)
657                                 bb_error_msg_and_die(bb_msg_requires_arg, arg);
658                         ap = ALLOC_ACTION(size);
659                         ap->size = XATOOFF(arg1);
660                 }
661 #endif
662                 else
663                         bb_show_usage();
664                 argv++;
665         }
666         return appp;
667 #undef ALLOC_ACTION
668 }
669
670
671 int find_main(int argc, char **argv);
672 int find_main(int argc, char **argv)
673 {
674         static const char * const options[] = {
675                 "-follow",
676 USE_FEATURE_FIND_XDEV( "-xdev", )
677                 NULL
678         };
679
680         char *arg;
681         char **argp;
682         int i, firstopt, status = EXIT_SUCCESS;
683
684         for (firstopt = 1; firstopt < argc; firstopt++) {
685                 if (argv[firstopt][0] == '-')
686                         break;
687                 if (ENABLE_FEATURE_FIND_NOT && LONE_CHAR(argv[firstopt], '!'))
688                         break;
689 #if ENABLE_FEATURE_FIND_PAREN
690                 if (LONE_CHAR(argv[firstopt], '('))
691                         break;
692 #endif
693         }
694         if (firstopt == 1) {
695                 argv[0] = (char*)".";
696                 argv--;
697                 firstopt++;
698         }
699
700 /* All options always return true. They always take effect
701  * rather than being processed only when their place in the
702  * expression is reached.
703  * We implement: -follow, -xdev
704  */
705         /* Process options, and replace then with -a */
706         /* (-a will be ignored by recursive parser later) */
707         argp = &argv[firstopt];
708         while ((arg = argp[0])) {
709                 i = index_in_str_array(options, arg);
710                 if (i == 0) { /* -follow */
711                         recurse_flags |= ACTION_FOLLOWLINKS;
712                         argp[0] = (char*)"-a";
713                 }
714 #if ENABLE_FEATURE_FIND_XDEV
715                 else if (i == 1) { /* -xdev */
716                         struct stat stbuf;
717                         if (!xdev_count) {
718                                 xdev_count = firstopt - 1;
719                                 xdev_dev = xmalloc(xdev_count * sizeof(dev_t));
720                                 for (i = 1; i < firstopt; i++) {
721                                         /* not xstat(): shouldn't bomb out on
722                                          * "find not_exist exist -xdev" */
723                                         if (stat(argv[i], &stbuf))
724                                                 stbuf.st_dev = -1L;
725                                         xdev_dev[i-1] = stbuf.st_dev;
726                                 }
727                         }
728                         argp[0] = (char*)"-a";
729                 }
730 #endif
731                 argp++;
732         }
733
734         actions = parse_params(&argv[firstopt]);
735
736         for (i = 1; i < firstopt; i++) {
737                 if (!recursive_action(argv[i],
738                                 recurse_flags,  /* flags */
739                                 fileAction,     /* file action */
740                                 fileAction,     /* dir action */
741                                 NULL,           /* user data */
742                                 0))             /* depth */
743                         status = EXIT_FAILURE;
744         }
745         return status;
746 }