find: add -iname support (Alexander Griesser <alexander.griesser@lkh-vil.or.at>)
[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; bool iname;)
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 = bb_basename(fileName);
184         if (tmp != fileName && !*tmp) { /* "foo/bar/". Oh no... go back to 'b' */
185                 tmp--;
186                 while (tmp != fileName && *--tmp != '/')
187                         continue;
188                 if (*tmp == '/')
189                         tmp++;
190         }
191         return fnmatch(ap->pattern, tmp, FNM_PERIOD | (ap->iname ? FNM_CASEFOLD : 0)) == 0;
192 }
193
194 #if ENABLE_FEATURE_FIND_PATH
195 ACTF(path)
196 {
197         return fnmatch(ap->pattern, fileName, 0) == 0;
198 }
199 #endif
200 #if ENABLE_FEATURE_FIND_REGEX
201 ACTF(regex)
202 {
203         regmatch_t match;
204         if (regexec(&ap->compiled_pattern, fileName, 1, &match, 0 /*eflags*/))
205                 return 0; /* no match */
206         if (match.rm_so)
207                 return 0; /* match doesn't start at pos 0 */
208         if (fileName[match.rm_eo])
209                 return 0; /* match doesn't end exactly at end of pathname */
210         return 1;
211 }
212 #endif
213 #if ENABLE_FEATURE_FIND_TYPE
214 ACTF(type)
215 {
216         return ((statbuf->st_mode & S_IFMT) == ap->type_mask);
217 }
218 #endif
219 #if ENABLE_FEATURE_FIND_PERM
220 ACTF(perm)
221 {
222         /* -perm +mode: at least one of perm_mask bits are set */
223         if (ap->perm_char == '+')
224                 return (statbuf->st_mode & ap->perm_mask) != 0;
225         /* -perm -mode: all of perm_mask are set */
226         if (ap->perm_char == '-')
227                 return (statbuf->st_mode & ap->perm_mask) == ap->perm_mask;
228         /* -perm mode: file mode must match perm_mask */
229         return (statbuf->st_mode & 07777) == ap->perm_mask;
230 }
231 #endif
232 #if ENABLE_FEATURE_FIND_MTIME
233 ACTF(mtime)
234 {
235         time_t file_age = time(NULL) - statbuf->st_mtime;
236         time_t mtime_secs = ap->mtime_days * 24*60*60;
237         if (ap->mtime_char == '+')
238                 return file_age >= mtime_secs + 24*60*60;
239         if (ap->mtime_char == '-')
240                 return file_age < mtime_secs;
241         /* just numeric mtime */
242         return file_age >= mtime_secs && file_age < (mtime_secs + 24*60*60);
243 }
244 #endif
245 #if ENABLE_FEATURE_FIND_MMIN
246 ACTF(mmin)
247 {
248         time_t file_age = time(NULL) - statbuf->st_mtime;
249         time_t mmin_secs = ap->mmin_mins * 60;
250         if (ap->mmin_char == '+')
251                 return file_age >= mmin_secs + 60;
252         if (ap->mmin_char == '-')
253                 return file_age < mmin_secs;
254         /* just numeric mmin */
255         return file_age >= mmin_secs && file_age < (mmin_secs + 60);
256 }
257 #endif
258 #if ENABLE_FEATURE_FIND_NEWER
259 ACTF(newer)
260 {
261         return (ap->newer_mtime < statbuf->st_mtime);
262 }
263 #endif
264 #if ENABLE_FEATURE_FIND_INUM
265 ACTF(inum)
266 {
267         return (statbuf->st_ino == ap->inode_num);
268 }
269 #endif
270 #if ENABLE_FEATURE_FIND_EXEC
271 ACTF(exec)
272 {
273         int i, rc;
274         char *argv[ap->exec_argc + 1];
275         for (i = 0; i < ap->exec_argc; i++)
276                 argv[i] = subst(ap->exec_argv[i], ap->subst_count[i], fileName);
277         argv[i] = NULL; /* terminate the list */
278
279         rc = spawn_and_wait(argv);
280         if (rc < 0)
281                 bb_simple_perror_msg(argv[0]);
282
283         i = 0;
284         while (argv[i])
285                 free(argv[i++]);
286         return rc == 0; /* return 1 if exitcode 0 */
287 }
288 #endif
289 #if ENABLE_FEATURE_FIND_USER
290 ACTF(user)
291 {
292         return (statbuf->st_uid == ap->uid);
293 }
294 #endif
295 #if ENABLE_FEATURE_FIND_GROUP
296 ACTF(group)
297 {
298         return (statbuf->st_gid == ap->gid);
299 }
300 #endif
301 #if ENABLE_FEATURE_FIND_PRINT0
302 ACTF(print0)
303 {
304         printf("%s%c", fileName, '\0');
305         return TRUE;
306 }
307 #endif
308 ACTF(print)
309 {
310         puts(fileName);
311         return TRUE;
312 }
313 #if ENABLE_FEATURE_FIND_PAREN
314 ACTF(paren)
315 {
316         return exec_actions(ap->subexpr, fileName, statbuf);
317 }
318 #endif
319 #if ENABLE_FEATURE_FIND_SIZE
320 ACTF(size)
321 {
322         if (ap->size_char == '+')
323                 return statbuf->st_size > ap->size;
324         if (ap->size_char == '-')
325                 return statbuf->st_size < ap->size;
326         return statbuf->st_size == ap->size;
327 }
328 #endif
329 #if ENABLE_FEATURE_FIND_PRUNE
330 /*
331  * -prune: if -depth is not given, return true and do not descend
332  * current dir; if -depth is given, return false with no effect.
333  * Example:
334  * find dir -name 'asm-*' -prune -o -name '*.[chS]' -print
335  */
336 ACTF(prune)
337 {
338         return SKIP + TRUE;
339 }
340 #endif
341 #if ENABLE_FEATURE_FIND_DELETE
342 ACTF(delete)
343 {
344         int rc;
345         if (S_ISDIR(statbuf->st_mode)) {
346                 rc = rmdir(fileName);
347         } else {
348                 rc = unlink(fileName);
349         }
350         if (rc < 0)
351                 bb_simple_perror_msg(fileName);
352         return TRUE;
353 }
354 #endif
355 #if ENABLE_FEATURE_FIND_CONTEXT
356 ACTF(context)
357 {
358         security_context_t con;
359         int rc;
360
361         if (recurse_flags & ACTION_FOLLOWLINKS) {
362                 rc = getfilecon(fileName, &con);
363         } else {
364                 rc = lgetfilecon(fileName, &con);
365         }
366         if (rc < 0)
367                 return FALSE;
368         rc = strcmp(ap->context, con);
369         freecon(con);
370         return rc == 0;
371 }
372 #endif
373
374
375 static int fileAction(const char *fileName, struct stat *statbuf, void *userData, int depth)
376 {
377         int i;
378 #if ENABLE_FEATURE_FIND_MAXDEPTH
379         int maxdepth = (int)(ptrdiff_t)userData;
380
381         if (depth > maxdepth) return SKIP;
382 #endif
383
384 #if ENABLE_FEATURE_FIND_XDEV
385         if (S_ISDIR(statbuf->st_mode) && xdev_count) {
386                 for (i = 0; i < xdev_count; i++) {
387                         if (xdev_dev[i] == statbuf->st_dev)
388                                 break;
389                 }
390                 if (i == xdev_count)
391                         return SKIP;
392         }
393 #endif
394         i = exec_actions(actions, fileName, statbuf);
395         /* Had no explicit -print[0] or -exec? then print */
396         if ((i & TRUE) && need_print)
397                 puts(fileName);
398         /* Cannot return 0: our caller, recursive_action(),
399          * will perror() and skip dirs (if called on dir) */
400         return (i & SKIP) ? SKIP : TRUE;
401 }
402
403
404 #if ENABLE_FEATURE_FIND_TYPE
405 static int find_type(const char *type)
406 {
407         int mask = 0;
408
409         if (*type == 'b')
410                 mask = S_IFBLK;
411         else if (*type == 'c')
412                 mask = S_IFCHR;
413         else if (*type == 'd')
414                 mask = S_IFDIR;
415         else if (*type == 'p')
416                 mask = S_IFIFO;
417         else if (*type == 'f')
418                 mask = S_IFREG;
419         else if (*type == 'l')
420                 mask = S_IFLNK;
421         else if (*type == 's')
422                 mask = S_IFSOCK;
423
424         if (mask == 0 || *(type + 1) != '\0')
425                 bb_error_msg_and_die(bb_msg_invalid_arg, type, "-type");
426
427         return mask;
428 }
429 #endif
430
431 #if ENABLE_FEATURE_FIND_PERM \
432  || ENABLE_FEATURE_FIND_MTIME || ENABLE_FEATURE_FIND_MMIN \
433  || ENABLE_FEATURE_FIND_SIZE
434 static const char* plus_minus_num(const char* str)
435 {
436         if (*str == '-' || *str == '+')
437                 str++;
438         return str;
439 }
440 #endif
441
442 static action*** parse_params(char **argv)
443 {
444         enum {
445                                  PARM_a         ,
446                                  PARM_o         ,
447         USE_FEATURE_FIND_NOT(    PARM_char_not  ,)
448 #if ENABLE_DESKTOP
449                                  PARM_and       ,
450                                  PARM_or        ,
451         USE_FEATURE_FIND_NOT(    PARM_not       ,)
452 #endif
453                                  PARM_print     ,
454         USE_FEATURE_FIND_PRINT0( PARM_print0    ,)
455         USE_FEATURE_FIND_DEPTH(  PARM_depth     ,)
456         USE_FEATURE_FIND_PRUNE(  PARM_prune     ,)
457         USE_FEATURE_FIND_DELETE( PARM_delete    ,)
458         USE_FEATURE_FIND_EXEC(   PARM_exec      ,)
459         USE_FEATURE_FIND_PAREN(  PARM_char_brace,)
460         /* All options starting from here require argument */
461                                  PARM_name      ,
462                                  PARM_iname     ,
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 params[] ALIGN1 =
478                                  "-a\0"
479                                  "-o\0"
480         USE_FEATURE_FIND_NOT(    "!\0"       )
481 #if ENABLE_DESKTOP
482                                  "-and\0"
483                                  "-or\0"
484         USE_FEATURE_FIND_NOT(    "-not\0"    )
485 #endif
486                                  "-print\0"
487         USE_FEATURE_FIND_PRINT0( "-print0\0" )
488         USE_FEATURE_FIND_DEPTH(  "-depth\0"  )
489         USE_FEATURE_FIND_PRUNE(  "-prune\0"  )
490         USE_FEATURE_FIND_DELETE( "-delete\0" )
491         USE_FEATURE_FIND_EXEC(   "-exec\0"   )
492         USE_FEATURE_FIND_PAREN(  "(\0"       )
493         /* All options starting from here require argument */
494                                  "-name\0"
495                                  "-iname\0"
496         USE_FEATURE_FIND_PATH(   "-path\0"   )
497         USE_FEATURE_FIND_REGEX(  "-regex\0"  )
498         USE_FEATURE_FIND_TYPE(   "-type\0"   )
499         USE_FEATURE_FIND_PERM(   "-perm\0"   )
500         USE_FEATURE_FIND_MTIME(  "-mtime\0"  )
501         USE_FEATURE_FIND_MMIN(   "-mmin\0"   )
502         USE_FEATURE_FIND_NEWER(  "-newer\0"  )
503         USE_FEATURE_FIND_INUM(   "-inum\0"   )
504         USE_FEATURE_FIND_USER(   "-user\0"   )
505         USE_FEATURE_FIND_GROUP(  "-group\0"  )
506         USE_FEATURE_FIND_SIZE(   "-size\0"   )
507         USE_FEATURE_FIND_CONTEXT("-context\0")
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_strings(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 || parm == PARM_iname) {
661                         action_name *ap;
662                         ap = ALLOC_ACTION(name);
663                         ap->pattern = arg1;
664                         ap->iname = (parm == PARM_iname);
665                 }
666 #if ENABLE_FEATURE_FIND_PATH
667                 else if (parm == PARM_path) {
668                         action_path *ap;
669                         ap = ALLOC_ACTION(path);
670                         ap->pattern = arg1;
671                 }
672 #endif
673 #if ENABLE_FEATURE_FIND_REGEX
674                 else if (parm == PARM_regex) {
675                         action_regex *ap;
676                         ap = ALLOC_ACTION(regex);
677                         xregcomp(&ap->compiled_pattern, arg1, 0 /*cflags*/);
678                 }
679 #endif
680 #if ENABLE_FEATURE_FIND_TYPE
681                 else if (parm == PARM_type) {
682                         action_type *ap;
683                         ap = ALLOC_ACTION(type);
684                         ap->type_mask = find_type(arg1);
685                 }
686 #endif
687 #if ENABLE_FEATURE_FIND_PERM
688 /* -perm mode   File's permission bits are exactly mode (octal or symbolic).
689  *              Symbolic modes use mode 0 as a point of departure.
690  * -perm -mode  All of the permission bits mode are set for the file.
691  * -perm +mode  Any of the permission bits mode are set for the file.
692  */
693                 else if (parm == PARM_perm) {
694                         action_perm *ap;
695                         ap = ALLOC_ACTION(perm);
696                         ap->perm_char = arg1[0];
697                         arg1 = plus_minus_num(arg1);
698                         ap->perm_mask = 0;
699                         if (!bb_parse_mode(arg1, &ap->perm_mask))
700                                 bb_error_msg_and_die("invalid mode: %s", arg1);
701                 }
702 #endif
703 #if ENABLE_FEATURE_FIND_MTIME
704                 else if (parm == PARM_mtime) {
705                         action_mtime *ap;
706                         ap = ALLOC_ACTION(mtime);
707                         ap->mtime_char = arg1[0];
708                         ap->mtime_days = xatoul(plus_minus_num(arg1));
709                 }
710 #endif
711 #if ENABLE_FEATURE_FIND_MMIN
712                 else if (parm == PARM_mmin) {
713                         action_mmin *ap;
714                         ap = ALLOC_ACTION(mmin);
715                         ap->mmin_char = arg1[0];
716                         ap->mmin_mins = xatoul(plus_minus_num(arg1));
717                 }
718 #endif
719 #if ENABLE_FEATURE_FIND_NEWER
720                 else if (parm == PARM_newer) {
721                         struct stat stat_newer;
722                         action_newer *ap;
723                         ap = ALLOC_ACTION(newer);
724                         xstat(arg1, &stat_newer);
725                         ap->newer_mtime = stat_newer.st_mtime;
726                 }
727 #endif
728 #if ENABLE_FEATURE_FIND_INUM
729                 else if (parm == PARM_inum) {
730                         action_inum *ap;
731                         ap = ALLOC_ACTION(inum);
732                         ap->inode_num = xatoul(arg1);
733                 }
734 #endif
735 #if ENABLE_FEATURE_FIND_USER
736                 else if (parm == PARM_user) {
737                         action_user *ap;
738                         ap = ALLOC_ACTION(user);
739                         ap->uid = bb_strtou(arg1, NULL, 10);
740                         if (errno)
741                                 ap->uid = xuname2uid(arg1);
742                 }
743 #endif
744 #if ENABLE_FEATURE_FIND_GROUP
745                 else if (parm == PARM_group) {
746                         action_group *ap;
747                         ap = ALLOC_ACTION(group);
748                         ap->gid = bb_strtou(arg1, NULL, 10);
749                         if (errno)
750                                 ap->gid = xgroup2gid(arg1);
751                 }
752 #endif
753 #if ENABLE_FEATURE_FIND_SIZE
754                 else if (parm == PARM_size) {
755 /* -size n[bckw]: file uses n units of space
756  * b (default): units are 512-byte blocks
757  * c: 1 byte
758  * k: kilobytes
759  * w: 2-byte words
760  */
761 #if ENABLE_LFS
762 #define XATOU_SFX xatoull_sfx
763 #else
764 #define XATOU_SFX xatoul_sfx
765 #endif
766                         static const struct suffix_mult find_suffixes[] = {
767                                 { "c", 1 },
768                                 { "w", 2 },
769                                 { "", 512 },
770                                 { "b", 512 },
771                                 { "k", 1024 },
772                                 { }
773                         };
774                         action_size *ap;
775                         ap = ALLOC_ACTION(size);
776                         ap->size_char = arg1[0];
777                         ap->size = XATOU_SFX(plus_minus_num(arg1), find_suffixes);
778                 }
779 #endif
780 #if ENABLE_FEATURE_FIND_CONTEXT
781                 else if (parm == PARM_context) {
782                         action_context *ap;
783                         ap = ALLOC_ACTION(context);
784                         ap->context = NULL;
785                         /* SELinux headers erroneously declare non-const parameter */
786                         if (selinux_raw_to_trans_context((char*)arg1, &ap->context))
787                                 bb_simple_perror_msg(arg1);
788                 }
789 #endif
790                 else {
791                         bb_error_msg("unrecognized: %s", arg);
792                         bb_show_usage();
793                 }
794                 argv++;
795         }
796         return appp;
797 #undef ALLOC_ACTION
798 }
799
800
801 int find_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
802 int find_main(int argc, char **argv)
803 {
804         static const char options[] ALIGN1 =
805                           "-follow\0"
806 USE_FEATURE_FIND_XDEV(    "-xdev\0"    )
807 USE_FEATURE_FIND_MAXDEPTH("-maxdepth\0")
808                           ;
809         enum {
810                           OPT_FOLLOW,
811 USE_FEATURE_FIND_XDEV(    OPT_XDEV    ,)
812 USE_FEATURE_FIND_MAXDEPTH(OPT_MAXDEPTH,)
813         };
814
815         char *arg;
816         char **argp;
817         int i, firstopt, status = EXIT_SUCCESS;
818 #if ENABLE_FEATURE_FIND_MAXDEPTH
819         int maxdepth = INT_MAX;
820 #endif
821
822         for (firstopt = 1; firstopt < argc; firstopt++) {
823                 if (argv[firstopt][0] == '-')
824                         break;
825                 if (ENABLE_FEATURE_FIND_NOT && LONE_CHAR(argv[firstopt], '!'))
826                         break;
827 #if ENABLE_FEATURE_FIND_PAREN
828                 if (LONE_CHAR(argv[firstopt], '('))
829                         break;
830 #endif
831         }
832         if (firstopt == 1) {
833                 argv[0] = (char*)".";
834                 argv--;
835                 firstopt++;
836         }
837
838 /* All options always return true. They always take effect
839  * rather than being processed only when their place in the
840  * expression is reached.
841  * We implement: -follow, -xdev, -maxdepth
842  */
843         /* Process options, and replace then with -a */
844         /* (-a will be ignored by recursive parser later) */
845         argp = &argv[firstopt];
846         while ((arg = argp[0])) {
847                 int opt = index_in_strings(options, arg);
848                 if (opt == OPT_FOLLOW) {
849                         recurse_flags |= ACTION_FOLLOWLINKS;
850                         argp[0] = (char*)"-a";
851                 }
852 #if ENABLE_FEATURE_FIND_XDEV
853                 if (opt == OPT_XDEV) {
854                         struct stat stbuf;
855                         if (!xdev_count) {
856                                 xdev_count = firstopt - 1;
857                                 xdev_dev = xmalloc(xdev_count * sizeof(dev_t));
858                                 for (i = 1; i < firstopt; i++) {
859                                         /* not xstat(): shouldn't bomb out on
860                                          * "find not_exist exist -xdev" */
861                                         if (stat(argv[i], &stbuf))
862                                                 stbuf.st_dev = -1L;
863                                         xdev_dev[i-1] = stbuf.st_dev;
864                                 }
865                         }
866                         argp[0] = (char*)"-a";
867                 }
868 #endif
869 #if ENABLE_FEATURE_FIND_MAXDEPTH
870                 if (opt == OPT_MAXDEPTH) {
871                         if (!argp[1])
872                                 bb_show_usage();
873                         maxdepth = xatoi_u(argp[1]);
874                         argp[0] = (char*)"-a";
875                         argp[1] = (char*)"-a";
876                         argp++;
877                 }
878 #endif
879                 argp++;
880         }
881
882         actions = parse_params(&argv[firstopt]);
883
884         for (i = 1; i < firstopt; i++) {
885                 if (!recursive_action(argv[i],
886                                 recurse_flags,  /* flags */
887                                 fileAction,     /* file action */
888                                 fileAction,     /* dir action */
889 #if ENABLE_FEATURE_FIND_MAXDEPTH
890                                 /* double cast suppresses
891                                  * "cast to ptr from int of different size" */
892                                 (void*)(ptrdiff_t)maxdepth,/* user data */
893 #else
894                                 NULL,           /* user data */
895 #endif
896                                 0))             /* depth */
897                         status = EXIT_FAILURE;
898         }
899         return status;
900 }