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