aa22441410bda1637bb838f3e693620fff34cc66
[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 /* Testing script
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
54  */
55
56 #include <fnmatch.h>
57 #include "libbb.h"
58 #if ENABLE_FEATURE_FIND_REGEX
59 #include "xregex.h"
60 #endif
61
62 /* This is a NOEXEC applet. Be very careful! */
63
64
65 USE_FEATURE_FIND_XDEV(static dev_t *xdev_dev;)
66 USE_FEATURE_FIND_XDEV(static int xdev_count;)
67
68 typedef int (*action_fp)(const char *fileName, struct stat *statbuf, void *);
69
70 typedef struct {
71         action_fp f;
72 #if ENABLE_FEATURE_FIND_NOT
73         bool invert;
74 #endif
75 } action;
76 #define ACTS(name, arg...) typedef struct { action a; arg; } action_##name;
77 #define ACTF(name)         static int func_##name(const char *fileName, struct stat *statbuf, action_##name* ap)
78                          ACTS(print)
79                          ACTS(name,  const char *pattern;)
80 USE_FEATURE_FIND_PATH(   ACTS(path,  const char *pattern;))
81 USE_FEATURE_FIND_REGEX(  ACTS(regex, regex_t compiled_pattern;))
82 USE_FEATURE_FIND_PRINT0( ACTS(print0))
83 USE_FEATURE_FIND_TYPE(   ACTS(type,  int type_mask;))
84 USE_FEATURE_FIND_PERM(   ACTS(perm,  char perm_char; mode_t perm_mask;))
85 USE_FEATURE_FIND_MTIME(  ACTS(mtime, char mtime_char; unsigned mtime_days;))
86 USE_FEATURE_FIND_MMIN(   ACTS(mmin,  char mmin_char; unsigned mmin_mins;))
87 USE_FEATURE_FIND_NEWER(  ACTS(newer, time_t newer_mtime;))
88 USE_FEATURE_FIND_INUM(   ACTS(inum,  ino_t inode_num;))
89 USE_FEATURE_FIND_USER(   ACTS(user,  uid_t uid;))
90 USE_FEATURE_FIND_SIZE(   ACTS(size,  char size_char; off_t size;))
91 USE_FEATURE_FIND_CONTEXT(ACTS(context, security_context_t context;))
92 USE_FEATURE_FIND_PAREN(  ACTS(paren, action ***subexpr;))
93 USE_FEATURE_FIND_PRUNE(  ACTS(prune))
94 USE_FEATURE_FIND_DELETE( ACTS(delete))
95 USE_FEATURE_FIND_EXEC(   ACTS(exec,  char **exec_argv; unsigned *subst_count; int exec_argc;))
96 USE_FEATURE_FIND_GROUP(  ACTS(group, gid_t gid;))
97
98 static action ***actions;
99 static bool need_print = 1;
100 static int recurse_flags = ACTION_RECURSE;
101
102 #if ENABLE_FEATURE_FIND_EXEC
103 static unsigned count_subst(const char *str)
104 {
105         unsigned count = 0;
106         while ((str = strstr(str, "{}")) != NULL) {
107                 count++;
108                 str++;
109         }
110         return count;
111 }
112
113
114 static char* subst(const char *src, unsigned count, const char* filename)
115 {
116         char *buf, *dst, *end;
117         size_t flen = strlen(filename);
118         /* we replace each '{}' with filename: growth by strlen-2 */
119         buf = dst = xmalloc(strlen(src) + count*(flen-2) + 1);
120         while ((end = strstr(src, "{}"))) {
121                 memcpy(dst, src, end - src);
122                 dst += end - src;
123                 src = end + 2;
124                 memcpy(dst, filename, flen);
125                 dst += flen;
126         }
127         strcpy(dst, src);
128         return buf;
129 }
130 #endif
131
132 /* Return values of ACTFs ('action functions') are a bit mask:
133  * bit 1=1: prune (use SKIP constant for setting it)
134  * bit 0=1: matched successfully (TRUE)
135  */
136
137 static int exec_actions(action ***appp, const char *fileName, struct stat *statbuf)
138 {
139         int cur_group;
140         int cur_action;
141         int rc = 0;
142         action **app, *ap;
143
144         /* "action group" is a set of actions ANDed together.
145          * groups are ORed together.
146          * We simply evaluate each group until we find one in which all actions
147          * succeed. */
148
149         /* -prune is special: if it is encountered, then we won't
150          * descend into current directory. It doesn't matter whether
151          * action group (in which -prune sits) will succeed or not:
152          * find * -prune -name 'f*' -o -name 'm*' -- prunes every dir
153          * find * -name 'f*' -o -prune -name 'm*' -- prunes all dirs
154          *     not starting with 'f' */
155
156         /* We invert TRUE bit (bit 0). Now 1 there means 'failure'.
157          * and bitwise OR in "rc |= TRUE ^ ap->f()" will:
158          * (1) make SKIP (-prune) bit stick; and (2) detect 'failure'.
159          * On return, bit is restored.  */
160
161         cur_group = -1;
162         while ((app = appp[++cur_group])) {
163                 rc &= ~TRUE; /* 'success' so far, clear TRUE bit */
164                 cur_action = -1;
165                 while (1) {
166                         ap = app[++cur_action];
167                         if (!ap) /* all actions in group were successful */
168                                 return rc ^ TRUE; /* restore TRUE bit */
169                         rc |= TRUE ^ ap->f(fileName, statbuf, ap);
170 #if ENABLE_FEATURE_FIND_NOT
171                         if (ap->invert) rc ^= TRUE;
172 #endif
173                         if (rc & TRUE) /* current group failed, try next */
174                                 break;
175                 }
176         }
177         return rc ^ TRUE; /* restore TRUE bit */
178 }
179
180
181 ACTF(name)
182 {
183         const char *tmp = strrchr(fileName, '/');
184         if (tmp == NULL)
185                 tmp = fileName;
186         else {
187                 tmp++;
188                 if (!*tmp) { /* "foo/bar/". Oh no... go back to 'b' */
189                         tmp--;
190                         while (tmp != fileName && *--tmp != '/')
191                                 continue;
192                         if (*tmp == '/')
193                                 tmp++;
194                 }
195         }
196         return fnmatch(ap->pattern, tmp, FNM_PERIOD) == 0;
197 }
198 #if ENABLE_FEATURE_FIND_PATH
199 ACTF(path)
200 {
201         return fnmatch(ap->pattern, fileName, 0) == 0;
202 }
203 #endif
204 #if ENABLE_FEATURE_FIND_REGEX
205 ACTF(regex)
206 {
207         regmatch_t match;
208         if (regexec(&ap->compiled_pattern, fileName, 1, &match, 0 /*eflags*/))
209                 return 0; /* no match */
210         if (match.rm_so)
211                 return 0; /* match doesn't start at pos 0 */
212         if (fileName[match.rm_eo])
213                 return 0; /* match doesn't end exactly at end of pathname */
214         return 1;
215 }
216 #endif
217 #if ENABLE_FEATURE_FIND_TYPE
218 ACTF(type)
219 {
220         return ((statbuf->st_mode & S_IFMT) == ap->type_mask);
221 }
222 #endif
223 #if ENABLE_FEATURE_FIND_PERM
224 ACTF(perm)
225 {
226         /* -perm +mode: at least one of perm_mask bits are set */
227         if (ap->perm_char == '+')
228                 return (statbuf->st_mode & ap->perm_mask) != 0;
229         /* -perm -mode: all of perm_mask are set */
230         if (ap->perm_char == '-')
231                 return (statbuf->st_mode & ap->perm_mask) == ap->perm_mask;
232         /* -perm mode: file mode must match perm_mask */
233         return (statbuf->st_mode & 07777) == ap->perm_mask;
234 }
235 #endif
236 #if ENABLE_FEATURE_FIND_MTIME
237 ACTF(mtime)
238 {
239         time_t file_age = time(NULL) - statbuf->st_mtime;
240         time_t mtime_secs = ap->mtime_days * 24*60*60;
241         if (ap->mtime_char == '+')
242                 return file_age >= mtime_secs + 24*60*60;
243         if (ap->mtime_char == '-')
244                 return file_age < mtime_secs;
245         /* just numeric mtime */
246         return file_age >= mtime_secs && file_age < (mtime_secs + 24*60*60);
247 }
248 #endif
249 #if ENABLE_FEATURE_FIND_MMIN
250 ACTF(mmin)
251 {
252         time_t file_age = time(NULL) - statbuf->st_mtime;
253         time_t mmin_secs = ap->mmin_mins * 60;
254         if (ap->mmin_char == '+')
255                 return file_age >= mmin_secs + 60;
256         if (ap->mmin_char == '-')
257                 return file_age < mmin_secs;
258         /* just numeric mmin */
259         return file_age >= mmin_secs && file_age < (mmin_secs + 60);
260 }
261 #endif
262 #if ENABLE_FEATURE_FIND_NEWER
263 ACTF(newer)
264 {
265         return (ap->newer_mtime < statbuf->st_mtime);
266 }
267 #endif
268 #if ENABLE_FEATURE_FIND_INUM
269 ACTF(inum)
270 {
271         return (statbuf->st_ino == ap->inode_num);
272 }
273 #endif
274 #if ENABLE_FEATURE_FIND_EXEC
275 ACTF(exec)
276 {
277         int i, rc;
278         char *argv[ap->exec_argc + 1];
279         for (i = 0; i < ap->exec_argc; i++)
280                 argv[i] = subst(ap->exec_argv[i], ap->subst_count[i], fileName);
281         argv[i] = NULL; /* terminate the list */
282
283         rc = spawn_and_wait(argv);
284         if (rc < 0)
285                 bb_perror_msg("%s", argv[0]);
286
287         i = 0;
288         while (argv[i])
289                 free(argv[i++]);
290         return rc == 0; /* return 1 if exitcode 0 */
291 }
292 #endif
293 #if ENABLE_FEATURE_FIND_USER
294 ACTF(user)
295 {
296         return (statbuf->st_uid == ap->uid);
297 }
298 #endif
299 #if ENABLE_FEATURE_FIND_GROUP
300 ACTF(group)
301 {
302         return (statbuf->st_gid == ap->gid);
303 }
304 #endif
305 #if ENABLE_FEATURE_FIND_PRINT0
306 ACTF(print0)
307 {
308         printf("%s%c", fileName, '\0');
309         return TRUE;
310 }
311 #endif
312 ACTF(print)
313 {
314         puts(fileName);
315         return TRUE;
316 }
317 #if ENABLE_FEATURE_FIND_PAREN
318 ACTF(paren)
319 {
320         return exec_actions(ap->subexpr, fileName, statbuf);
321 }
322 #endif
323 #if ENABLE_FEATURE_FIND_SIZE
324 ACTF(size)
325 {
326         if (ap->size_char == '+')
327                 return statbuf->st_size > ap->size;
328         if (ap->size_char == '-')
329                 return statbuf->st_size < ap->size;
330         return statbuf->st_size == ap->size;
331 }
332 #endif
333 #if ENABLE_FEATURE_FIND_PRUNE
334 /*
335  * -prune: if -depth is not given, return true and do not descend
336  * current dir; if -depth is given, return false with no effect.
337  * Example:
338  * find dir -name 'asm-*' -prune -o -name '*.[chS]' -print
339  */
340 ACTF(prune)
341 {
342         return SKIP + TRUE;
343 }
344 #endif
345 #if ENABLE_FEATURE_FIND_DELETE
346 ACTF(delete)
347 {
348         int rc;
349         if (S_ISDIR(statbuf->st_mode)) {
350                 rc = rmdir(fileName);
351         } else {
352                 rc = unlink(fileName);
353         }
354         if (rc < 0)
355                 bb_perror_msg("%s", fileName);
356         return TRUE;
357 }
358 #endif
359 #if ENABLE_FEATURE_FIND_CONTEXT
360 ACTF(context)
361 {
362         security_context_t con;
363         int rc;
364
365         if (recurse_flags & ACTION_FOLLOWLINKS) {
366                 rc = getfilecon(fileName, &con);
367         } else {
368                 rc = lgetfilecon(fileName, &con);
369         }
370         if (rc < 0)
371                 return FALSE;
372         rc = strcmp(ap->context, con);
373         freecon(con);
374         return rc == 0;
375 }
376 #endif
377
378
379 static int fileAction(const char *fileName, struct stat *statbuf, void *userData, int depth)
380 {
381         int i;
382 #if ENABLE_FEATURE_FIND_MAXDEPTH
383         int maxdepth = (int)(ptrdiff_t)userData;
384
385         if (depth > maxdepth) return SKIP;
386 #endif
387
388 #if ENABLE_FEATURE_FIND_XDEV
389         if (S_ISDIR(statbuf->st_mode) && xdev_count) {
390                 for (i = 0; i < xdev_count; i++) {
391                         if (xdev_dev[i] != statbuf->st_dev)
392                                 return SKIP;
393                 }
394         }
395 #endif
396         i = exec_actions(actions, fileName, statbuf);
397         /* Had no explicit -print[0] or -exec? then print */
398         if ((i & TRUE) && need_print)
399                 puts(fileName);
400         /* Cannot return 0: our caller, recursive_action(),
401          * will perror() and skip dirs (if called on dir) */
402         return (i & SKIP) ? SKIP : TRUE;
403 }
404
405
406 #if ENABLE_FEATURE_FIND_TYPE
407 static int find_type(const char *type)
408 {
409         int mask = 0;
410
411         if (*type == 'b')
412                 mask = S_IFBLK;
413         else if (*type == 'c')
414                 mask = S_IFCHR;
415         else if (*type == 'd')
416                 mask = S_IFDIR;
417         else if (*type == 'p')
418                 mask = S_IFIFO;
419         else if (*type == 'f')
420                 mask = S_IFREG;
421         else if (*type == 'l')
422                 mask = S_IFLNK;
423         else if (*type == 's')
424                 mask = S_IFSOCK;
425
426         if (mask == 0 || *(type + 1) != '\0')
427                 bb_error_msg_and_die(bb_msg_invalid_arg, type, "-type");
428
429         return mask;
430 }
431 #endif
432
433 #if ENABLE_FEATURE_FIND_PERM || ENABLE_FEATURE_FIND_MTIME \
434  || ENABLE_FEATURE_FIND_MMIN
435 static const char* plus_minus_num(const char* str)
436 {
437         if (*str == '-' || *str == '+')
438                 str++;
439         return str;
440 }
441 #endif
442
443 static action*** parse_params(char **argv)
444 {
445         enum {
446                                  PARM_a         ,
447                                  PARM_o         ,
448         USE_FEATURE_FIND_NOT(    PARM_char_not  ,)
449 #if ENABLE_DESKTOP
450                                  PARM_and       ,
451                                  PARM_or        ,
452         USE_FEATURE_FIND_NOT(    PARM_not       ,)
453 #endif
454                                  PARM_print     ,
455         USE_FEATURE_FIND_PRINT0( PARM_print0    ,)
456         USE_FEATURE_FIND_DEPTH(  PARM_depth     ,)
457         USE_FEATURE_FIND_PRUNE(  PARM_prune     ,)
458         USE_FEATURE_FIND_DELETE( PARM_delete    ,)
459         USE_FEATURE_FIND_EXEC(   PARM_exec      ,)
460         USE_FEATURE_FIND_PAREN(  PARM_char_brace,)
461         /* All options starting from here require argument */
462                                  PARM_name      ,
463         USE_FEATURE_FIND_PATH(   PARM_path      ,)
464         USE_FEATURE_FIND_REGEX(  PARM_regex     ,)
465         USE_FEATURE_FIND_TYPE(   PARM_type      ,)
466         USE_FEATURE_FIND_PERM(   PARM_perm      ,)
467         USE_FEATURE_FIND_MTIME(  PARM_mtime     ,)
468         USE_FEATURE_FIND_MMIN(   PARM_mmin      ,)
469         USE_FEATURE_FIND_NEWER(  PARM_newer     ,)
470         USE_FEATURE_FIND_INUM(   PARM_inum      ,)
471         USE_FEATURE_FIND_USER(   PARM_user      ,)
472         USE_FEATURE_FIND_GROUP(  PARM_group     ,)
473         USE_FEATURE_FIND_SIZE(   PARM_size      ,)
474         USE_FEATURE_FIND_CONTEXT(PARM_context   ,)
475         };
476
477         static const char *const params[] = {
478                                  "-a"      ,
479                                  "-o"      ,
480         USE_FEATURE_FIND_NOT(    "!"       ,)
481 #if ENABLE_DESKTOP
482                                  "-and"    ,
483                                  "-or"     ,
484         USE_FEATURE_FIND_NOT(    "-not"    ,)
485 #endif
486                                  "-print"  ,
487         USE_FEATURE_FIND_PRINT0( "-print0" ,)
488         USE_FEATURE_FIND_DEPTH(  "-depth"  ,)
489         USE_FEATURE_FIND_PRUNE(  "-prune"  ,)
490         USE_FEATURE_FIND_DELETE( "-delete" ,)
491         USE_FEATURE_FIND_EXEC(   "-exec"   ,)
492         USE_FEATURE_FIND_PAREN(  "("       ,)
493         /* All options starting from here require argument */
494                                  "-name"   ,
495         USE_FEATURE_FIND_PATH(   "-path"   ,)
496         USE_FEATURE_FIND_REGEX(  "-regex"  ,)
497         USE_FEATURE_FIND_TYPE(   "-type"   ,)
498         USE_FEATURE_FIND_PERM(   "-perm"   ,)
499         USE_FEATURE_FIND_MTIME(  "-mtime"  ,)
500         USE_FEATURE_FIND_MMIN(   "-mmin"   ,)
501         USE_FEATURE_FIND_NEWER(  "-newer"  ,)
502         USE_FEATURE_FIND_INUM(   "-inum"   ,)
503         USE_FEATURE_FIND_USER(   "-user"   ,)
504         USE_FEATURE_FIND_GROUP(  "-group"  ,)
505         USE_FEATURE_FIND_SIZE(   "-size"   ,)
506         USE_FEATURE_FIND_CONTEXT("-context",)
507                 NULL
508         };
509
510         action*** appp;
511         unsigned cur_group = 0;
512         unsigned cur_action = 0;
513         USE_FEATURE_FIND_NOT( bool invert_flag = 0; )
514
515         /* 'static' doesn't work here! (gcc 4.1.2) */
516         action* alloc_action(int sizeof_struct, action_fp f)
517         {
518                 action *ap;
519                 appp[cur_group] = xrealloc(appp[cur_group], (cur_action+2) * sizeof(*appp));
520                 appp[cur_group][cur_action++] = ap = xmalloc(sizeof_struct);
521                 appp[cur_group][cur_action] = NULL;
522                 ap->f = f;
523                 USE_FEATURE_FIND_NOT( ap->invert = invert_flag; )
524                 USE_FEATURE_FIND_NOT( invert_flag = 0; )
525                 return ap;
526         }
527
528 #define ALLOC_ACTION(name) (action_##name*)alloc_action(sizeof(action_##name), (action_fp) func_##name)
529
530         appp = xzalloc(2 * sizeof(appp[0])); /* appp[0],[1] == NULL */
531
532 /* Actions have side effects and return a true or false value
533  * We implement: -print, -print0, -exec
534  *
535  * The rest are tests.
536  *
537  * Tests and actions are grouped by operators
538  * ( expr )              Force precedence
539  * ! expr                True if expr is false
540  * -not expr             Same as ! expr
541  * expr1 [-a[nd]] expr2  And; expr2 is not evaluated if expr1 is false
542  * expr1 -o[r] expr2     Or; expr2 is not evaluated if expr1 is true
543  * expr1 , expr2         List; both expr1 and expr2 are always evaluated
544  * We implement: (), -a, -o
545  */
546         while (*argv) {
547                 const char *arg = argv[0];
548                 int parm = index_in_str_array(params, arg);
549                 const char *arg1 = argv[1];
550
551                 if (parm >= PARM_name) {
552                         /* All options starting from -name require argument */
553                         if (!arg1)
554                                 bb_error_msg_and_die(bb_msg_requires_arg, arg);
555                         argv++;
556                 }
557
558                 /* We can use big switch() here, but on i386
559                  * it doesn't give smaller code. Other arches? */
560
561         /* --- Operators --- */
562                 if (parm == PARM_a USE_DESKTOP(|| parm == PARM_and)) {
563                         /* no further special handling required */
564                 }
565                 else if (parm == PARM_o USE_DESKTOP(|| parm == PARM_or)) {
566                         /* start new OR group */
567                         cur_group++;
568                         appp = xrealloc(appp, (cur_group+2) * sizeof(*appp));
569                         /*appp[cur_group] = NULL; - already NULL */
570                         appp[cur_group+1] = NULL;
571                         cur_action = 0;
572                 }
573 #if ENABLE_FEATURE_FIND_NOT
574                 else if (parm == PARM_char_not USE_DESKTOP(|| parm == PARM_not)) {
575                         /* also handles "find ! ! -name 'foo*'" */
576                         invert_flag ^= 1;
577                 }
578 #endif
579
580         /* --- Tests and actions --- */
581                 else if (parm == PARM_print) {
582                         need_print = 0;
583                         /* GNU find ignores '!' here: "find ! -print" */
584                         USE_FEATURE_FIND_NOT( invert_flag = 0; )
585                         (void) ALLOC_ACTION(print);
586                 }
587 #if ENABLE_FEATURE_FIND_PRINT0
588                 else if (parm == PARM_print0) {
589                         need_print = 0;
590                         USE_FEATURE_FIND_NOT( invert_flag = 0; )
591                         (void) ALLOC_ACTION(print0);
592                 }
593 #endif
594 #if ENABLE_FEATURE_FIND_DEPTH
595                 else if (parm == PARM_depth) {
596                         recurse_flags |= ACTION_DEPTHFIRST;
597                 }
598 #endif
599 #if ENABLE_FEATURE_FIND_PRUNE
600                 else if (parm == PARM_prune) {
601                         USE_FEATURE_FIND_NOT( invert_flag = 0; )
602                         (void) ALLOC_ACTION(prune);
603                 }
604 #endif
605 #if ENABLE_FEATURE_FIND_DELETE
606                 else if (parm == PARM_delete) {
607                         need_print = 0;
608                         recurse_flags |= ACTION_DEPTHFIRST;
609                         (void) ALLOC_ACTION(delete);
610                 }
611 #endif
612 #if ENABLE_FEATURE_FIND_EXEC
613                 else if (parm == PARM_exec) {
614                         int i;
615                         action_exec *ap;
616                         need_print = 0;
617                         USE_FEATURE_FIND_NOT( invert_flag = 0; )
618                         ap = ALLOC_ACTION(exec);
619                         ap->exec_argv = ++argv; /* first arg after -exec */
620                         ap->exec_argc = 0;
621                         while (1) {
622                                 if (!*argv) /* did not see ';' until end */
623                                         bb_error_msg_and_die("-exec CMD must end by ';'");
624                                 if (LONE_CHAR(argv[0], ';'))
625                                         break;
626                                 argv++;
627                                 ap->exec_argc++;
628                         }
629                         if (ap->exec_argc == 0)
630                                 bb_error_msg_and_die(bb_msg_requires_arg, arg);
631                         ap->subst_count = xmalloc(ap->exec_argc * sizeof(int));
632                         i = ap->exec_argc;
633                         while (i--)
634                                 ap->subst_count[i] = count_subst(ap->exec_argv[i]);
635                 }
636 #endif
637 #if ENABLE_FEATURE_FIND_PAREN
638                 else if (parm == PARM_char_brace) {
639                         action_paren *ap;
640                         char **endarg;
641                         unsigned nested = 1;
642
643                         endarg = argv;
644                         while (1) {
645                                 if (!*++endarg)
646                                         bb_error_msg_and_die("unpaired '('");
647                                 if (LONE_CHAR(*endarg, '('))
648                                         nested++;
649                                 else if (LONE_CHAR(*endarg, ')') && !--nested) {
650                                         *endarg = NULL;
651                                         break;
652                                 }
653                         }
654                         ap = ALLOC_ACTION(paren);
655                         ap->subexpr = parse_params(argv + 1);
656                         *endarg = (char*) ")"; /* restore NULLed parameter */
657                         argv = endarg;
658                 }
659 #endif
660                 else if (parm == PARM_name) {
661                         action_name *ap;
662                         ap = ALLOC_ACTION(name);
663                         ap->pattern = arg1;
664                 }
665 #if ENABLE_FEATURE_FIND_PATH
666                 else if (parm == PARM_path) {
667                         action_path *ap;
668                         ap = ALLOC_ACTION(path);
669                         ap->pattern = arg1;
670                 }
671 #endif
672 #if ENABLE_FEATURE_FIND_REGEX
673                 else if (parm == PARM_regex) {
674                         action_regex *ap;
675                         ap = ALLOC_ACTION(regex);
676                         xregcomp(&ap->compiled_pattern, arg1, 0 /*cflags*/);
677                 }
678 #endif
679 #if ENABLE_FEATURE_FIND_TYPE
680                 else if (parm == PARM_type) {
681                         action_type *ap;
682                         ap = ALLOC_ACTION(type);
683                         ap->type_mask = find_type(arg1);
684                 }
685 #endif
686 #if ENABLE_FEATURE_FIND_PERM
687 /* -perm mode   File's permission bits are exactly mode (octal or symbolic).
688  *              Symbolic modes use mode 0 as a point of departure.
689  * -perm -mode  All of the permission bits mode are set for the file.
690  * -perm +mode  Any of the permission bits mode are set for the file.
691  */
692                 else if (parm == PARM_perm) {
693                         action_perm *ap;
694                         ap = ALLOC_ACTION(perm);
695                         ap->perm_char = arg1[0];
696                         arg1 = plus_minus_num(arg1);
697                         ap->perm_mask = 0;
698                         if (!bb_parse_mode(arg1, &ap->perm_mask))
699                                 bb_error_msg_and_die("invalid mode: %s", arg1);
700                 }
701 #endif
702 #if ENABLE_FEATURE_FIND_MTIME
703                 else if (parm == PARM_mtime) {
704                         action_mtime *ap;
705                         ap = ALLOC_ACTION(mtime);
706                         ap->mtime_char = arg1[0];
707                         ap->mtime_days = xatoul(plus_minus_num(arg1));
708                 }
709 #endif
710 #if ENABLE_FEATURE_FIND_MMIN
711                 else if (parm == PARM_mmin) {
712                         action_mmin *ap;
713                         ap = ALLOC_ACTION(mmin);
714                         ap->mmin_char = arg1[0];
715                         ap->mmin_mins = xatoul(plus_minus_num(arg1));
716                 }
717 #endif
718 #if ENABLE_FEATURE_FIND_NEWER
719                 else if (parm == PARM_newer) {
720                         struct stat stat_newer;
721                         action_newer *ap;
722                         ap = ALLOC_ACTION(newer);
723                         xstat(arg1, &stat_newer);
724                         ap->newer_mtime = stat_newer.st_mtime;
725                 }
726 #endif
727 #if ENABLE_FEATURE_FIND_INUM
728                 else if (parm == PARM_inum) {
729                         action_inum *ap;
730                         ap = ALLOC_ACTION(inum);
731                         ap->inode_num = xatoul(arg1);
732                 }
733 #endif
734 #if ENABLE_FEATURE_FIND_USER
735                 else if (parm == PARM_user) {
736                         action_user *ap;
737                         ap = ALLOC_ACTION(user);
738                         ap->uid = bb_strtou(arg1, NULL, 10);
739                         if (errno)
740                                 ap->uid = xuname2uid(arg1);
741                 }
742 #endif
743 #if ENABLE_FEATURE_FIND_GROUP
744                 else if (parm == PARM_group) {
745                         action_group *ap;
746                         ap = ALLOC_ACTION(group);
747                         ap->gid = bb_strtou(arg1, NULL, 10);
748                         if (errno)
749                                 ap->gid = xgroup2gid(arg1);
750                 }
751 #endif
752 #if ENABLE_FEATURE_FIND_SIZE
753                 else if (parm == PARM_size) {
754 /* -size n[bckw]: file uses n units of space
755  * b (default): units are 512-byte blocks
756  * c: 1 byte
757  * k: kilobytes
758  * w: 2-byte words
759  */
760 #if ENABLE_LFS
761 #define XATOU_SFX xatoull_sfx
762 #else
763 #define XATOU_SFX xatoul_sfx
764 #endif
765                         static const struct suffix_mult find_suffixes[] = {
766                                 { "c", 1 },
767                                 { "w", 2 },
768                                 { "b"+1, 512 },
769                                 { "b", 512 },
770                                 { "k", 1024 },
771                                 { NULL, 0 }
772                         };
773                         action_size *ap;
774                         ap = ALLOC_ACTION(size);
775                         ap->size_char = arg1[0];
776                         ap->size = XATOU_SFX(plus_minus_num(arg1), find_suffixes);
777                 }
778 #endif
779 #if ENABLE_FEATURE_FIND_CONTEXT
780                 else if (parm == PARM_context) {
781                         action_context *ap;
782                         ap = ALLOC_ACTION(context);
783                         ap->context = NULL;
784                         if (selinux_raw_to_trans_context(arg1, &ap->context))
785                                 bb_perror_msg("%s", arg1);
786                 }
787 #endif
788                 else {
789                         bb_error_msg("unrecognized: %s", arg);
790                         bb_show_usage();
791                 }
792                 argv++;
793         }
794         return appp;
795 #undef ALLOC_ACTION
796 }
797
798
799 int find_main(int argc, char **argv);
800 int find_main(int argc, char **argv)
801 {
802         static const char *const options[] = {
803                 "-follow",
804 USE_FEATURE_FIND_XDEV(    "-xdev"    ,)
805 USE_FEATURE_FIND_MAXDEPTH("-maxdepth",)
806                 NULL
807         };
808         enum {
809                 OPT_FOLLOW,
810 USE_FEATURE_FIND_XDEV(    OPT_XDEV    ,)
811 USE_FEATURE_FIND_MAXDEPTH(OPT_MAXDEPTH,)
812         };
813
814         char *arg;
815         char **argp;
816         int i, firstopt, status = EXIT_SUCCESS;
817 #if ENABLE_FEATURE_FIND_MAXDEPTH
818         int maxdepth = INT_MAX;
819 #endif
820
821         for (firstopt = 1; firstopt < argc; firstopt++) {
822                 if (argv[firstopt][0] == '-')
823                         break;
824                 if (ENABLE_FEATURE_FIND_NOT && LONE_CHAR(argv[firstopt], '!'))
825                         break;
826 #if ENABLE_FEATURE_FIND_PAREN
827                 if (LONE_CHAR(argv[firstopt], '('))
828                         break;
829 #endif
830         }
831         if (firstopt == 1) {
832                 argv[0] = (char*)".";
833                 argv--;
834                 firstopt++;
835         }
836
837 /* All options always return true. They always take effect
838  * rather than being processed only when their place in the
839  * expression is reached.
840  * We implement: -follow, -xdev, -maxdepth
841  */
842         /* Process options, and replace then with -a */
843         /* (-a will be ignored by recursive parser later) */
844         argp = &argv[firstopt];
845         while ((arg = argp[0])) {
846                 int opt = index_in_str_array(options, arg);
847                 if (opt == OPT_FOLLOW) {
848                         recurse_flags |= ACTION_FOLLOWLINKS;
849                         argp[0] = (char*)"-a";
850                 }
851 #if ENABLE_FEATURE_FIND_XDEV
852                 if (opt == OPT_XDEV) {
853                         struct stat stbuf;
854                         if (!xdev_count) {
855                                 xdev_count = firstopt - 1;
856                                 xdev_dev = xmalloc(xdev_count * sizeof(dev_t));
857                                 for (i = 1; i < firstopt; i++) {
858                                         /* not xstat(): shouldn't bomb out on
859                                          * "find not_exist exist -xdev" */
860                                         if (stat(argv[i], &stbuf))
861                                                 stbuf.st_dev = -1L;
862                                         xdev_dev[i-1] = stbuf.st_dev;
863                                 }
864                         }
865                         argp[0] = (char*)"-a";
866                 }
867 #endif
868 #if ENABLE_FEATURE_FIND_MAXDEPTH
869                 if (opt == OPT_MAXDEPTH) {
870                         if (!argp[1])
871                                 bb_show_usage();
872                         maxdepth = xatoi_u(argp[1]);
873                         argp[0] = (char*)"-a";
874                         argp[1] = (char*)"-a";
875                         argp++;
876                 }
877 #endif
878                 argp++;
879         }
880
881         actions = parse_params(&argv[firstopt]);
882
883         for (i = 1; i < firstopt; i++) {
884                 if (!recursive_action(argv[i],
885                                 recurse_flags,  /* flags */
886                                 fileAction,     /* file action */
887                                 fileAction,     /* dir action */
888 #if ENABLE_FEATURE_FIND_MAXDEPTH
889                                 (void*)maxdepth,/* user data */
890 #else
891                                 NULL,           /* user data */
892 #endif
893                                 0))             /* depth */
894                         status = EXIT_FAILURE;
895         }
896         return status;
897 }