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