Backed out the positional parameter change because it was too error prone and over...
[findutils.git] / find / parser.c
blob7eaefc18dd66586e2445d2ea88bb1a874276978f
1 /* parser.c -- convert the command line args into an expression tree.
2 Copyright (C) 1990, 1991, 1992, 1993, 1994, 2000, 2001, 2003,
3 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #include <config.h>
21 #include "defs.h"
22 #include <ctype.h>
23 #include <math.h>
24 #include <assert.h>
25 #include <pwd.h>
26 #include <errno.h>
27 #include <grp.h>
28 #include <fnmatch.h>
29 #include "modechange.h"
30 #include "modetype.h"
31 #include "xstrtol.h"
32 #include "xalloc.h"
33 #include "quote.h"
34 #include "quotearg.h"
35 #include "buildcmd.h"
36 #include "nextelem.h"
37 #include "stdio-safer.h"
38 #include "regextype.h"
39 #include "stat-time.h"
40 #include "xstrtod.h"
41 #include "fts_.h"
42 #include "getdate.h"
43 #include "error.h"
44 #include "findutils-version.h"
46 #include <fcntl.h>
49 /* The presence of unistd.h is assumed by gnulib these days, so we
50 * might as well assume it too.
52 /* We need <unistd.h> for isatty(). */
53 #include <unistd.h>
54 #include <sys/stat.h>
56 #if ENABLE_NLS
57 # include <libintl.h>
58 # define _(Text) gettext (Text)
59 #else
60 # define _(Text) Text
61 #endif
62 #ifdef gettext_noop
63 # define N_(String) gettext_noop (String)
64 #else
65 /* See locate.c for explanation as to why not use (String) */
66 # define N_(String) String
67 #endif
69 #if !defined (isascii) || defined (STDC_HEADERS)
70 #ifdef isascii
71 #undef isascii
72 #endif
73 #define isascii(c) 1
74 #endif
76 #define ISDIGIT(c) (isascii ((unsigned char)c) && isdigit ((unsigned char)c))
77 #define ISUPPER(c) (isascii ((unsigned char)c) && isupper ((unsigned char)c))
79 #ifndef HAVE_ENDGRENT
80 #define endgrent()
81 #endif
82 #ifndef HAVE_ENDPWENT
83 #define endpwent()
84 #endif
86 static boolean parse_accesscheck PARAMS((const struct parser_table* entry, char **argv, int *arg_ptr));
87 static boolean parse_amin PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
88 static boolean parse_and PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
89 static boolean parse_anewer PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
90 static boolean parse_cmin PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
91 static boolean parse_cnewer PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
92 static boolean parse_comma PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
93 static boolean parse_daystart PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
94 static boolean parse_delete PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
95 static boolean parse_d PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
96 static boolean parse_depth PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
97 static boolean parse_empty PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
98 static boolean parse_exec PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
99 static boolean parse_execdir PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
100 static boolean parse_false PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
101 static boolean parse_fls PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
102 static boolean parse_fprintf PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
103 static boolean parse_follow PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
104 static boolean parse_fprint PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
105 static boolean parse_fprint0 PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
106 static boolean parse_fstype PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
107 static boolean parse_gid PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
108 static boolean parse_group PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
109 static boolean parse_help PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
110 static boolean parse_ilname PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
111 static boolean parse_iname PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
112 static boolean parse_inum PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
113 static boolean parse_ipath PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
114 static boolean parse_iregex PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
115 static boolean parse_iwholename PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
116 static boolean parse_links PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
117 static boolean parse_lname PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
118 static boolean parse_ls PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
119 static boolean parse_maxdepth PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
120 static boolean parse_mindepth PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
121 static boolean parse_mmin PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
122 static boolean parse_name PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
123 static boolean parse_negate PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
124 static boolean parse_newer PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
125 static boolean parse_newerXY PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
126 static boolean parse_noleaf PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
127 static boolean parse_nogroup PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
128 static boolean parse_nouser PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
129 static boolean parse_nowarn PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
130 static boolean parse_ok PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
131 static boolean parse_okdir PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
132 static boolean parse_or PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
133 static boolean parse_path PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
134 static boolean parse_perm PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
135 static boolean parse_print0 PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
136 static boolean parse_printf PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
137 static boolean parse_prune PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
138 static boolean parse_regex PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
139 static boolean parse_regextype PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
140 static boolean parse_samefile PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
141 #if 0
142 static boolean parse_show_control_chars PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
143 #endif
144 static boolean parse_size PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
145 static boolean parse_time PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
146 static boolean parse_true PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
147 static boolean parse_type PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
148 static boolean parse_uid PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
149 static boolean parse_used PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
150 static boolean parse_user PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
151 static boolean parse_version PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
152 static boolean parse_wholename PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
153 static boolean parse_xdev PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
154 static boolean parse_ignore_race PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
155 static boolean parse_noignore_race PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
156 static boolean parse_warn PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
157 static boolean parse_xtype PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
158 static boolean parse_quit PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
160 boolean parse_print PARAMS((const struct parser_table*, char *argv[], int *arg_ptr));
163 static boolean insert_type PARAMS((char **argv, int *arg_ptr,
164 const struct parser_table *entry,
165 PRED_FUNC which_pred));
166 static boolean insert_regex PARAMS((char *argv[], int *arg_ptr,
167 const struct parser_table *entry,
168 int regex_options));
169 static boolean insert_fprintf (struct format_val *vec,
170 const struct parser_table *entry,
171 PRED_FUNC func,
172 const char *format);
174 static struct segment **make_segment PARAMS((struct segment **segment,
175 char *format, int len,
176 int kind, char format_char,
177 char aux_format_char,
178 struct predicate *pred));
179 static boolean insert_exec_ok PARAMS((const char *action,
180 const struct parser_table *entry,
181 int dirfd,
182 char *argv[],
183 int *arg_ptr));
184 static boolean get_comp_type PARAMS((const char **str,
185 enum comparison_type *comp_type));
186 static boolean get_relative_timestamp PARAMS((const char *str,
187 struct time_val *tval,
188 time_t origin,
189 double sec_per_unit,
190 const char *overflowmessage));
191 static boolean get_num PARAMS((const char *str,
192 uintmax_t *num,
193 enum comparison_type *comp_type));
194 static struct predicate* insert_num PARAMS((char *argv[], int *arg_ptr,
195 const struct parser_table *entry));
196 static void open_output_file (const char *path, struct format_val *p);
197 static void open_stdout (struct format_val *p);
198 static boolean stream_is_tty(FILE *fp);
199 static boolean parse_noop PARAMS((const struct parser_table* entry,
200 char **argv, int *arg_ptr));
202 #define PASTE(x,y) x##y
203 #define STRINGIFY(s) #s
205 #define PARSE_OPTION(what,suffix) \
206 { (ARG_OPTION), (what), PASTE(parse_,suffix), NULL }
208 #define PARSE_POSOPT(what,suffix) \
209 { (ARG_POSITIONAL_OPTION), (what), PASTE(parse_,suffix), NULL }
211 #define PARSE_TEST(what,suffix) \
212 { (ARG_TEST), (what), PASTE(parse_,suffix), PASTE(pred_,suffix) }
214 #define PARSE_TEST_NP(what,suffix) \
215 { (ARG_TEST), (what), PASTE(parse_,suffix), NULL }
217 #define PARSE_ACTION(what,suffix) \
218 { (ARG_ACTION), (what), PASTE(parse_,suffix), PASTE(pred_,suffix) }
220 #define PARSE_ACTION_NP(what,suffix) \
221 { (ARG_ACTION), (what), PASTE(parse_,suffix), NULL }
223 #define PARSE_PUNCTUATION(what,suffix) \
224 { (ARG_PUNCTUATION), (what), PASTE(parse_,suffix), PASTE(pred_,suffix) }
227 /* Predicates we cannot handle in the usual way. If you add an entry
228 * to this table, double-check the switch statement in
229 * pred_sanity_check() to make sure that the new case is being
230 * correctly handled.
232 static struct parser_table const parse_entry_newerXY =
234 ARG_SPECIAL_PARSE, "newerXY", parse_newerXY, pred_newerXY /* BSD */
237 /* GNU find predicates that are not mentioned in POSIX.2 are marked `GNU'.
238 If they are in some Unix versions of find, they are marked `Unix'. */
240 static struct parser_table const parse_table[] =
242 PARSE_PUNCTUATION("!", negate), /* POSIX */
243 PARSE_PUNCTUATION("not", negate), /* GNU */
244 PARSE_PUNCTUATION("(", openparen), /* POSIX */
245 PARSE_PUNCTUATION(")", closeparen), /* POSIX */
246 PARSE_PUNCTUATION(",", comma), /* GNU */
247 PARSE_PUNCTUATION("a", and), /* POSIX */
248 PARSE_TEST ("amin", amin), /* GNU */
249 PARSE_PUNCTUATION("and", and), /* GNU */
250 PARSE_TEST ("anewer", anewer), /* GNU */
251 {ARG_TEST, "atime", parse_time, pred_atime}, /* POSIX */
252 PARSE_TEST ("cmin", cmin), /* GNU */
253 PARSE_TEST ("cnewer", cnewer), /* GNU */
254 {ARG_TEST, "ctime", parse_time, pred_ctime}, /* POSIX */
255 PARSE_POSOPT ("daystart", daystart), /* GNU */
256 PARSE_ACTION ("delete", delete), /* GNU, Mac OS, FreeBSD */
257 PARSE_OPTION ("d", d), /* Mac OS X, FreeBSD, NetBSD, OpenBSD, but deprecated in favour of -depth */
258 PARSE_OPTION ("depth", depth), /* POSIX */
259 PARSE_TEST ("empty", empty), /* GNU */
260 {ARG_ACTION, "exec", parse_exec, pred_exec}, /* POSIX */
261 {ARG_TEST, "executable", parse_accesscheck, pred_executable}, /* GNU, 4.3.0+ */
262 PARSE_ACTION ("execdir", execdir), /* *BSD, GNU */
263 PARSE_ACTION ("fls", fls), /* GNU */
264 PARSE_POSOPT ("follow", follow), /* GNU, Unix */
265 PARSE_ACTION ("fprint", fprint), /* GNU */
266 PARSE_ACTION ("fprint0", fprint0), /* GNU */
267 {ARG_ACTION, "fprintf", parse_fprintf, pred_fprintf}, /* GNU */
268 PARSE_TEST ("fstype", fstype), /* GNU, Unix */
269 PARSE_TEST ("gid", gid), /* GNU */
270 PARSE_TEST ("group", group), /* POSIX */
271 PARSE_OPTION ("ignore_readdir_race", ignore_race), /* GNU */
272 PARSE_TEST ("ilname", ilname), /* GNU */
273 PARSE_TEST ("iname", iname), /* GNU */
274 PARSE_TEST ("inum", inum), /* GNU, Unix */
275 PARSE_TEST ("ipath", ipath), /* GNU, deprecated in favour of iwholename */
276 PARSE_TEST_NP ("iregex", iregex), /* GNU */
277 PARSE_TEST_NP ("iwholename", iwholename), /* GNU */
278 PARSE_TEST ("links", links), /* POSIX */
279 PARSE_TEST ("lname", lname), /* GNU */
280 PARSE_ACTION ("ls", ls), /* GNU, Unix */
281 PARSE_OPTION ("maxdepth", maxdepth), /* GNU */
282 PARSE_OPTION ("mindepth", mindepth), /* GNU */
283 PARSE_TEST ("mmin", mmin), /* GNU */
284 PARSE_OPTION ("mount", xdev), /* Unix */
285 {ARG_TEST, "mtime", parse_time, pred_mtime}, /* POSIX */
286 PARSE_TEST ("name", name),
287 #ifdef UNIMPLEMENTED_UNIX
288 PARSE(ARG_UNIMPLEMENTED, "ncpio", ncpio), /* Unix */
289 #endif
290 PARSE_TEST ("newer", newer), /* POSIX */
291 {ARG_TEST, "atime", parse_time, pred_atime}, /* POSIX */
292 PARSE_OPTION ("noleaf", noleaf), /* GNU */
293 PARSE_TEST ("nogroup", nogroup), /* POSIX */
294 PARSE_TEST ("nouser", nouser), /* POSIX */
295 PARSE_OPTION ("noignore_readdir_race", noignore_race), /* GNU */
296 PARSE_POSOPT ("nowarn", nowarn), /* GNU */
297 PARSE_PUNCTUATION("o", or), /* POSIX */
298 PARSE_PUNCTUATION("or", or), /* GNU */
299 PARSE_ACTION ("ok", ok), /* POSIX */
300 PARSE_ACTION ("okdir", okdir), /* GNU (-execdir is BSD) */
301 PARSE_TEST ("path", path), /* GNU, HP-UX, RMS prefers wholename, but anyway soon POSIX */
302 PARSE_TEST ("perm", perm), /* POSIX */
303 PARSE_ACTION ("print", print), /* POSIX */
304 PARSE_ACTION ("print0", print0), /* GNU */
305 {ARG_ACTION, "printf", parse_printf, NULL}, /* GNU */
306 PARSE_ACTION ("prune", prune), /* POSIX */
307 PARSE_ACTION ("quit", quit), /* GNU */
308 {ARG_TEST, "readable", parse_accesscheck, pred_readable}, /* GNU, 4.3.0+ */
309 PARSE_TEST ("regex", regex), /* GNU */
310 PARSE_OPTION ("regextype", regextype), /* GNU */
311 PARSE_TEST ("samefile", samefile), /* GNU */
312 #if 0
313 PARSE_OPTION ("show-control-chars", show_control_chars), /* GNU, 4.3.0+ */
314 #endif
315 PARSE_TEST ("size", size), /* POSIX */
316 PARSE_TEST ("type", type), /* POSIX */
317 PARSE_TEST ("uid", uid), /* GNU */
318 PARSE_TEST ("used", used), /* GNU */
319 PARSE_TEST ("user", user), /* POSIX */
320 PARSE_OPTION ("warn", warn), /* GNU */
321 PARSE_TEST_NP ("wholename", wholename), /* GNU, replaced -path, but anyway -path will soon be in POSIX */
322 {ARG_TEST, "writable", parse_accesscheck, pred_writable}, /* GNU, 4.3.0+ */
323 PARSE_OPTION ("xdev", xdev), /* POSIX */
324 PARSE_TEST ("xtype", xtype), /* GNU */
325 #ifdef UNIMPLEMENTED_UNIX
326 /* It's pretty ugly for find to know about archive formats.
327 Plus what it could do with cpio archives is very limited.
328 Better to leave it out. */
329 PARSE(ARG_UNIMPLEMENTED, "cpio", cpio), /* Unix */
330 #endif
331 /* gnulib's stdbool.h might have made true and false into macros,
332 * so we can't leave named 'true' and 'false' tokens, so we have
333 * to expeant the relevant entries longhand.
335 {ARG_TEST, "false", parse_false, pred_false}, /* GNU */
336 {ARG_TEST, "true", parse_true, pred_true }, /* GNU */
337 {ARG_NOOP, "noop", NULL, pred_true }, /* GNU, internal use only */
339 /* Various other cases that don't fit neatly into our macro scheme. */
340 {ARG_TEST, "help", parse_help, NULL}, /* GNU */
341 {ARG_TEST, "-help", parse_help, NULL}, /* GNU */
342 {ARG_TEST, "version", parse_version, NULL}, /* GNU */
343 {ARG_TEST, "-version", parse_version, NULL}, /* GNU */
344 {0, 0, 0, 0}
348 static const char *first_nonoption_arg = NULL;
349 static const struct parser_table *noop = NULL;
352 void
353 check_option_combinations(const struct predicate *p)
355 enum { seen_delete=1u, seen_prune=2u };
356 unsigned int predicates = 0u;
358 while (p)
360 if (p->pred_func == pred_delete)
361 predicates |= seen_delete;
362 else if (p->pred_func == pred_prune)
363 predicates |= seen_prune;
364 p = p->pred_next;
367 if ((predicates & seen_prune) && (predicates & seen_delete))
369 /* The user specified both -delete and -prune. One might test
370 * this by first doing
371 * find dirs .... -prune ..... -print
372 * to fnd out what's going to get deleted, and then switch to
373 * find dirs .... -prune ..... -delete
374 * once we are happy. Unfortunately, the -delete action also
375 * implicitly turns on -depth, which will affect the behaviour
376 * of -prune (in fact, it makes it a no-op). In this case we
377 * would like to prevent unfortunate accidents, so we require
378 * the user to have explicitly used -depth.
380 * We only get away with this because the -delete predicate is not
381 * in POSIX. If it was, we couldn't issue a fatal error here.
383 if (!options.explicit_depth)
385 /* This fixes Savannah bug #20865. */
386 error (1, 0, _("The -delete action atomatically turns on -depth, "
387 "but -prune does nothing when -depth is in effect. "
388 "If you want to carry on anyway, just explicitly use "
389 "the -depth option."));
395 static const struct parser_table*
396 get_noop(void)
398 int i;
399 if (NULL == noop)
401 for (i = 0; parse_table[i].parser_name != 0; i++)
403 if (ARG_NOOP ==parse_table[i].type)
405 noop = &(parse_table[i]);
406 break;
410 return noop;
413 static int
414 get_stat_Ytime(const struct stat *p,
415 char what,
416 struct timespec *ret)
418 switch (what)
420 case 'a':
421 *ret = get_stat_atime(p);
422 return 1;
423 case 'B':
424 *ret = get_stat_birthtime(p);
425 return (ret->tv_nsec >= 0);
426 case 'c':
427 *ret = get_stat_ctime(p);
428 return 1;
429 case 'm':
430 *ret = get_stat_mtime(p);
431 return 1;
432 default:
433 assert (0);
434 abort();
438 void
439 set_follow_state(enum SymlinkOption opt)
441 if (options.debug_options & DebugStat)
443 /* For DebugStat, the choice is made at runtime within debug_stat()
444 * by checking the contents of the symlink_handling variable.
446 options.xstat = debug_stat;
448 else
450 switch (opt)
452 case SYMLINK_ALWAYS_DEREF: /* -L */
453 options.xstat = optionl_stat;
454 options.no_leaf_check = true;
455 break;
457 case SYMLINK_NEVER_DEREF: /* -P (default) */
458 options.xstat = optionp_stat;
459 /* Can't turn no_leaf_check off because the user might have specified
460 * -noleaf anyway
462 break;
464 case SYMLINK_DEREF_ARGSONLY: /* -H */
465 options.xstat = optionh_stat;
466 options.no_leaf_check = true;
469 options.symlink_handling = opt;
473 void
474 parse_begin_user_args (char **args, int argno,
475 const struct predicate *last,
476 const struct predicate *predicates)
478 (void) args;
479 (void) argno;
480 (void) last;
481 (void) predicates;
482 first_nonoption_arg = NULL;
485 void
486 parse_end_user_args (char **args, int argno,
487 const struct predicate *last,
488 const struct predicate *predicates)
490 /* does nothing */
491 (void) args;
492 (void) argno;
493 (void) last;
494 (void) predicates;
498 /* Check that it is legal to fid the given primary in its
499 * position and return it.
501 const struct parser_table*
502 found_parser(const char *original_arg, const struct parser_table *entry)
504 /* If this is an option, but we have already had a
505 * non-option argument, the user may be under the
506 * impression that the behaviour of the option
507 * argument is conditional on some preceding
508 * tests. This might typically be the case with,
509 * for example, -maxdepth.
511 * The options -daystart and -follow are exempt
512 * from this treatment, since their positioning
513 * in the command line does have an effect on
514 * subsequent tests but not previous ones. That
515 * might be intentional on the part of the user.
517 if (entry->type != ARG_POSITIONAL_OPTION)
519 /* Something other than -follow/-daystart.
520 * If this is an option, check if it followed
521 * a non-option and if so, issue a warning.
523 if (entry->type == ARG_OPTION)
525 if ((first_nonoption_arg != NULL)
526 && options.warnings )
528 /* option which follows a non-option */
529 error (0, 0,
530 _("warning: you have specified the %s "
531 "option after a non-option argument %s, "
532 "but options are not positional (%s affects "
533 "tests specified before it as well as those "
534 "specified after it). Please specify options "
535 "before other arguments.\n"),
536 original_arg,
537 first_nonoption_arg,
538 original_arg);
541 else
543 /* Not an option or a positional option,
544 * so remember we've seen it in order to
545 * use it in a possible future warning message.
547 if (first_nonoption_arg == NULL)
549 first_nonoption_arg = original_arg;
554 return entry;
558 /* Return a pointer to the parser function to invoke for predicate
559 SEARCH_NAME.
560 Return NULL if SEARCH_NAME is not a valid predicate name. */
562 const struct parser_table*
563 find_parser (char *search_name)
565 int i;
566 const char *original_arg = search_name;
568 /* Ugh. Special case -newerXY. */
569 if (0 == strncmp("-newer", search_name, 6)
570 && (8 == strlen(search_name)))
572 return found_parser(original_arg, &parse_entry_newerXY);
575 if (*search_name == '-')
576 search_name++;
578 for (i = 0; parse_table[i].parser_name != 0; i++)
580 if (strcmp (parse_table[i].parser_name, search_name) == 0)
582 return found_parser(original_arg, &parse_table[i]);
585 return NULL;
588 static float
589 estimate_file_age_success_rate(float num_days)
591 if (num_days < 0.1)
593 /* Assume 1% of files have timestamps in the future */
594 return 0.01f;
596 else if (num_days < 1)
598 /* Assume 30% of files have timestamps today */
599 return 0.3f;
601 else if (num_days > 100)
603 /* Assume 30% of files are very old */
604 return 0.3f;
606 else
608 /* Assume 39% of files are between 1 and 100 days old. */
609 return 0.39f;
613 static float
614 estimate_timestamp_success_rate(time_t when)
616 int num_days = (options.cur_day_start - when) / 86400;
617 return estimate_file_age_success_rate(num_days);
620 /* Collect an argument from the argument list, or
621 * return false.
623 static boolean
624 collect_arg(char **argv, int *arg_ptr, const char **collected_arg)
626 if ((argv == NULL) || (argv[*arg_ptr] == NULL))
628 *collected_arg = NULL;
629 return false;
631 else
633 *collected_arg = argv[*arg_ptr];
634 (*arg_ptr)++;
635 return true;
639 static boolean
640 collect_arg_stat_info(char **argv, int *arg_ptr, struct stat *p)
642 const char *filename;
643 if (collect_arg(argv, arg_ptr, &filename))
645 if (0 == (options.xstat)(filename, p))
647 return true;
649 else
651 fatal_file_error(filename);
654 else
656 return false;
660 /* The parsers are responsible to continue scanning ARGV for
661 their arguments. Each parser knows what is and isn't
662 allowed for itself.
664 ARGV is the argument array.
665 *ARG_PTR is the index to start at in ARGV,
666 updated to point beyond the last element consumed.
668 The predicate structure is updated with the new information. */
671 static boolean
672 parse_and (const struct parser_table* entry, char **argv, int *arg_ptr)
674 struct predicate *our_pred;
676 (void) argv;
677 (void) arg_ptr;
679 our_pred = get_new_pred (entry);
680 our_pred->pred_func = pred_and;
681 our_pred->p_type = BI_OP;
682 our_pred->p_prec = AND_PREC;
683 our_pred->need_stat = our_pred->need_type = false;
684 return true;
687 static boolean
688 parse_anewer (const struct parser_table* entry, char **argv, int *arg_ptr)
690 struct stat stat_newer;
692 set_stat_placeholders(&stat_newer);
693 if (collect_arg_stat_info(argv, arg_ptr, &stat_newer))
695 struct predicate *our_pred = insert_primary (entry);
696 our_pred->args.reftime.xval = XVAL_ATIME;
697 our_pred->args.reftime.ts = get_stat_mtime(&stat_newer);
698 our_pred->args.reftime.kind = COMP_GT;
699 our_pred->est_success_rate = estimate_timestamp_success_rate(stat_newer.st_mtime);
700 return true;
702 return false;
705 boolean
706 parse_closeparen (const struct parser_table* entry, char **argv, int *arg_ptr)
708 struct predicate *our_pred;
710 (void) argv;
711 (void) arg_ptr;
713 our_pred = get_new_pred (entry);
714 our_pred->pred_func = pred_closeparen;
715 our_pred->p_type = CLOSE_PAREN;
716 our_pred->p_prec = NO_PREC;
717 our_pred->need_stat = our_pred->need_type = false;
718 return true;
721 static boolean
722 parse_cnewer (const struct parser_table* entry, char **argv, int *arg_ptr)
724 struct stat stat_newer;
726 set_stat_placeholders(&stat_newer);
727 if (collect_arg_stat_info(argv, arg_ptr, &stat_newer))
729 struct predicate *our_pred = insert_primary (entry);
730 our_pred->args.reftime.xval = XVAL_CTIME; /* like -newercm */
731 our_pred->args.reftime.ts = get_stat_mtime(&stat_newer);
732 our_pred->args.reftime.kind = COMP_GT;
733 our_pred->est_success_rate = estimate_timestamp_success_rate(stat_newer.st_mtime);
734 return true;
736 return false;
739 static boolean
740 parse_comma (const struct parser_table* entry, char **argv, int *arg_ptr)
742 struct predicate *our_pred;
744 (void) argv;
745 (void) arg_ptr;
747 our_pred = get_new_pred (entry);
748 our_pred->pred_func = pred_comma;
749 our_pred->p_type = BI_OP;
750 our_pred->p_prec = COMMA_PREC;
751 our_pred->need_stat = our_pred->need_type = false;
752 our_pred->est_success_rate = 1.0f;
753 return true;
756 static boolean
757 parse_daystart (const struct parser_table* entry, char **argv, int *arg_ptr)
759 struct tm *local;
761 (void) entry;
762 (void) argv;
763 (void) arg_ptr;
765 if (options.full_days == false)
767 options.cur_day_start += DAYSECS;
768 local = localtime (&options.cur_day_start);
769 options.cur_day_start -= (local
770 ? (local->tm_sec + local->tm_min * 60
771 + local->tm_hour * 3600)
772 : options.cur_day_start % DAYSECS);
773 options.full_days = true;
775 return true;
778 static boolean
779 parse_delete (const struct parser_table* entry, char *argv[], int *arg_ptr)
781 struct predicate *our_pred;
782 (void) argv;
783 (void) arg_ptr;
785 our_pred = insert_primary (entry);
786 our_pred->side_effects = our_pred->no_default_print = true;
787 /* -delete implies -depth */
788 options.do_dir_first = false;
790 /* We do not need stat information because we check for the case
791 * (errno==EISDIR) in pred_delete.
793 our_pred->need_stat = our_pred->need_type = false;
795 our_pred->est_success_rate = 1.0f;
796 return true;
799 static boolean
800 parse_depth (const struct parser_table* entry, char **argv, int *arg_ptr)
802 (void) entry;
803 (void) argv;
805 options.do_dir_first = false;
806 options.explicit_depth = true;
807 return parse_noop(entry, argv, arg_ptr);
810 static boolean
811 parse_d (const struct parser_table* entry, char **argv, int *arg_ptr)
813 if (options.warnings)
815 error (0, 0,
816 _("warning: the -d option is deprecated; please use "
817 "-depth instead, because the latter is a "
818 "POSIX-compliant feature."));
820 return parse_depth(entry, argv, arg_ptr);
823 static boolean
824 parse_empty (const struct parser_table* entry, char **argv, int *arg_ptr)
826 struct predicate *our_pred;
827 (void) argv;
828 (void) arg_ptr;
830 our_pred = insert_primary (entry);
831 our_pred->est_success_rate = 0.01f; /* assume 1% of files are empty. */
832 return true;
835 static boolean
836 parse_exec (const struct parser_table* entry, char **argv, int *arg_ptr)
838 return insert_exec_ok ("-exec", entry, get_start_dirfd(), argv, arg_ptr);
841 static boolean
842 parse_execdir (const struct parser_table* entry, char **argv, int *arg_ptr)
844 return insert_exec_ok ("-execdir", entry, -1, argv, arg_ptr);
847 static boolean
848 parse_false (const struct parser_table* entry, char **argv, int *arg_ptr)
850 struct predicate *our_pred;
852 (void) argv;
853 (void) arg_ptr;
855 our_pred = insert_primary (entry);
856 our_pred->need_stat = our_pred->need_type = false;
857 our_pred->side_effects = our_pred->no_default_print = false;
858 our_pred->est_success_rate = 0.0f;
859 return true;
862 static boolean
863 insert_fls (const struct parser_table* entry, const char *filename)
865 struct predicate *our_pred = insert_primary (entry);
866 if (filename)
867 open_output_file (filename, &our_pred->args.printf_vec);
868 else
869 open_stdout (&our_pred->args.printf_vec);
870 our_pred->side_effects = our_pred->no_default_print = true;
871 our_pred->est_success_rate = 1.0f;
872 return true;
876 static boolean
877 parse_fls (const struct parser_table* entry, char **argv, int *arg_ptr)
879 const char *filename;
880 return collect_arg(argv, arg_ptr, &filename)
881 && insert_fls(entry, filename);
884 static boolean
885 parse_follow (const struct parser_table* entry, char **argv, int *arg_ptr)
887 set_follow_state(SYMLINK_ALWAYS_DEREF);
888 return parse_noop(entry, argv, arg_ptr);
891 static boolean
892 parse_fprint (const struct parser_table* entry, char **argv, int *arg_ptr)
894 struct predicate *our_pred;
895 const char *filename;
896 if (collect_arg(argv, arg_ptr, &filename))
898 our_pred = insert_primary (entry);
899 open_output_file (filename, &our_pred->args.printf_vec);
900 our_pred->side_effects = our_pred->no_default_print = true;
901 our_pred->need_stat = our_pred->need_type = false;
902 our_pred->est_success_rate = 1.0f;
903 return true;
905 else
907 return false;
911 static boolean
912 insert_fprint(const struct parser_table* entry, const char *filename)
914 struct predicate *our_pred = insert_primary (entry);
915 if (filename)
916 open_output_file (filename, &our_pred->args.printf_vec);
917 else
918 open_stdout (&our_pred->args.printf_vec);
919 our_pred->side_effects = our_pred->no_default_print = true;
920 our_pred->need_stat = our_pred->need_type = false;
921 our_pred->est_success_rate = 1.0f;
922 return true;
926 static boolean
927 parse_fprint0 (const struct parser_table* entry, char **argv, int *arg_ptr)
929 const char *filename;
930 if (collect_arg(argv, arg_ptr, &filename))
931 return insert_fprint(entry, filename);
932 else
933 return false;
936 static float estimate_fstype_success_rate(const char *fsname)
938 struct stat dir_stat;
939 const char *dir = "/";
940 if (0 == stat(dir, &dir_stat))
942 const char *fstype = filesystem_type(&dir_stat, dir);
943 /* Assume most files are on the same file system type as the root fs. */
944 if (0 == strcmp(fsname, fstype))
945 return 0.7f;
946 else
947 return 0.3f;
949 return 1.0f;
953 static boolean
954 parse_fstype (const struct parser_table* entry, char **argv, int *arg_ptr)
956 const char *typename;
957 if (collect_arg(argv, arg_ptr, &typename))
959 struct predicate *our_pred = insert_primary (entry);
960 our_pred->args.str = typename;
962 /* This is an expensive operation, so although there are
963 * circumstances where it is selective, we ignore this fact
964 * because we probably don't want to promote this test to the
965 * front anyway.
967 our_pred->est_success_rate = estimate_fstype_success_rate(typename);
968 return true;
970 else
972 return false;
976 static boolean
977 parse_gid (const struct parser_table* entry, char **argv, int *arg_ptr)
979 struct predicate *p = insert_num (argv, arg_ptr, entry);
980 if (p)
982 p->est_success_rate = (p->args.numinfo.l_val < 100) ? 0.99 : 0.2;
983 return true;
985 else
987 return false;
992 static int
993 safe_atoi (const char *s)
995 long lval;
996 char *end;
998 errno = 0;
999 lval = strtol(s, &end, 10);
1000 if ( (LONG_MAX == lval) || (LONG_MIN == lval) )
1002 /* max/min possible value, or an error. */
1003 if (errno == ERANGE)
1005 /* too big, or too small. */
1006 error(1, errno, "%s", s);
1008 else
1010 /* not a valid number */
1011 error(1, errno, "%s", s);
1013 /* Otherwise, we do a range chack against INT_MAX and INT_MIN
1014 * below.
1018 if (lval > INT_MAX || lval < INT_MIN)
1020 /* The number was in range for long, but not int. */
1021 errno = ERANGE;
1022 error(1, errno, "%s", s);
1024 else if (*end)
1026 error(1, errno, "Unexpected suffix %s on %s",
1027 quotearg_n_style(0, options.err_quoting_style, end),
1028 quotearg_n_style(1, options.err_quoting_style, s));
1030 else if (end == s)
1032 error(1, errno, "Expected an integer: %s",
1033 quotearg_n_style(0, options.err_quoting_style, s));
1035 return (int)lval;
1039 static boolean
1040 parse_group (const struct parser_table* entry, char **argv, int *arg_ptr)
1042 const char *groupname;
1044 if (collect_arg(argv, arg_ptr, &groupname))
1046 gid_t gid;
1047 struct predicate *our_pred;
1048 struct group *cur_gr = getgrnam(groupname);
1049 endgrent();
1050 if (cur_gr)
1052 gid = cur_gr->gr_gid;
1054 else
1056 const int gid_len = strspn (groupname, "0123456789");
1057 if (gid_len)
1059 if (groupname[gid_len] == 0)
1061 gid = safe_atoi (groupname);
1063 else
1065 /* XXX: no test in test suite for this */
1066 error(1, 0, _("%s is not the name of an existing group and"
1067 " it does not look like a numeric group ID "
1068 "because it has the unexpected suffix %s"),
1069 quotearg_n_style(0, options.err_quoting_style, groupname),
1070 quotearg_n_style(1, options.err_quoting_style, groupname+gid_len));
1071 return false;
1074 else
1076 if (*groupname)
1078 /* XXX: no test in test suite for this */
1079 error(1, 0, _("%s is not the name of an existing group"),
1080 quotearg_n_style(0, options.err_quoting_style, groupname));
1082 else
1084 error(1, 0, _("argument to -group is empty, but should be a group name"));
1086 return false;
1089 our_pred = insert_primary (entry);
1090 our_pred->args.gid = gid;
1091 our_pred->est_success_rate = (our_pred->args.numinfo.l_val < 100) ? 0.99 : 0.2;
1092 return true;
1094 return false;
1097 static boolean
1098 parse_help (const struct parser_table* entry, char **argv, int *arg_ptr)
1100 (void) entry;
1101 (void) argv;
1102 (void) arg_ptr;
1104 usage(stdout, 0, NULL);
1105 puts (_("\n\
1106 default path is the current directory; default expression is -print\n\
1107 expression may consist of: operators, options, tests, and actions:\n"));
1108 puts (_("\
1109 operators (decreasing precedence; -and is implicit where no others are given):\n\
1110 ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n\
1111 EXPR1 -o EXPR2 EXPR1 -or EXPR2 EXPR1 , EXPR2\n"));
1112 puts (_("\
1113 positional options (always true): -daystart -follow -regextype\n\n\
1114 normal options (always true, specified before other expressions):\n\
1115 -depth --help -maxdepth LEVELS -mindepth LEVELS -mount -noleaf\n\
1116 --version -xdev -ignore_readdir_race -noignore_readdir_race\n"));
1117 puts (_("\
1118 tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n\
1119 -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n\
1120 -ilname PATTERN -iname PATTERN -inum N -iwholename PATTERN -iregex PATTERN\n\
1121 -links N -lname PATTERN -mmin N -mtime N -name PATTERN -newer FILE"));
1122 puts (_("\
1123 -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n\
1124 -readable -writable -executable\n\
1125 -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n\
1126 -used N -user NAME -xtype [bcdpfls]\n"));
1127 puts (_("\
1128 actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n\
1129 -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n\
1130 -exec COMMAND ; -exec COMMAND {} + -ok COMMAND ;\n\
1131 -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n\
1132 "));
1133 puts (_("Report (and track progress on fixing) bugs via the findutils bug-reporting\n\
1134 page at http://savannah.gnu.org/ or, if you have no web access, by sending\n\
1135 email to <bug-findutils@gnu.org>."));
1136 exit (0);
1139 static float
1140 estimate_pattern_match_rate(const char *pattern, int is_regex)
1142 if (strpbrk(pattern, "*?[") || (is_regex && strpbrk(pattern, ".")))
1144 /* A wildcard; assume the pattern matches most files. */
1145 return 0.8f;
1147 else
1149 return 0.1f;
1153 static boolean
1154 parse_ilname (const struct parser_table* entry, char **argv, int *arg_ptr)
1156 const char *name;
1157 if (collect_arg(argv, arg_ptr, &name))
1159 struct predicate *our_pred = insert_primary (entry);
1160 our_pred->args.str = name;
1161 /* Use the generic glob pattern estimator to figure out how many
1162 * links will match, but bear in mind that most files won't be links.
1164 our_pred->est_success_rate = 0.1 * estimate_pattern_match_rate(name, 0);
1165 return true;
1167 else
1169 return false;
1174 /* sanity check the fnmatch() function to make sure that case folding
1175 * is supported (as opposed to just having the flag ignored).
1177 static boolean
1178 fnmatch_sanitycheck(void)
1180 static boolean checked = false;
1181 if (!checked)
1183 if (0 != fnmatch("foo", "foo", 0)
1184 || 0 == fnmatch("Foo", "foo", 0)
1185 || 0 != fnmatch("Foo", "foo", FNM_CASEFOLD))
1187 error (1, 0, _("sanity check of the fnmatch() library function failed."));
1188 return false;
1190 checked = true;
1192 return checked;
1196 static boolean
1197 check_name_arg(const char *pred, const char *arg)
1199 if (options.warnings && strchr(arg, '/'))
1201 error(0, 0,_("warning: Unix filenames usually don't contain slashes "
1202 "(though pathnames do). That means that '%s %s' will "
1203 "probably evaluate to false all the time on this system. "
1204 "You might find the '-wholename' test more useful, or "
1205 "perhaps '-samefile'. Alternatively, if you are using "
1206 "GNU grep, you could "
1207 "use 'find ... -print0 | grep -FzZ %s'."),
1208 pred,
1209 safely_quote_err_filename(0, arg),
1210 safely_quote_err_filename(1, arg));
1212 return true; /* allow it anyway */
1217 static boolean
1218 parse_iname (const struct parser_table* entry, char **argv, int *arg_ptr)
1220 const char *name;
1221 fnmatch_sanitycheck();
1222 if (collect_arg(argv, arg_ptr, &name))
1224 if (check_name_arg("-iname", name))
1226 struct predicate *our_pred = insert_primary (entry);
1227 our_pred->need_stat = our_pred->need_type = false;
1228 our_pred->args.str = name;
1229 our_pred->est_success_rate = estimate_pattern_match_rate(name, 0);
1230 return true;
1233 return false;
1236 static boolean
1237 parse_inum (const struct parser_table* entry, char **argv, int *arg_ptr)
1239 struct predicate *p = insert_num (argv, arg_ptr, entry);
1240 if (p)
1242 /* inode number is exact match only, so very low proportions of
1243 * files match
1245 p->est_success_rate = 1e-6;
1246 return true;
1248 else
1250 return false;
1254 /* -ipath is deprecated (at RMS's request) in favour of
1255 * -iwholename. See the node "GNU Manuals" in standards.texi
1256 * for the rationale for this (basically, GNU prefers the use
1257 * of the phrase "file name" to "path name"
1259 static boolean
1260 parse_ipath (const struct parser_table* entry, char **argv, int *arg_ptr)
1262 const char *name;
1264 fnmatch_sanitycheck ();
1265 if (collect_arg (argv, arg_ptr, &name))
1267 struct predicate *our_pred = insert_primary_withpred (entry, pred_ipath);
1268 our_pred->need_stat = our_pred->need_type = false;
1269 our_pred->args.str = name;
1270 our_pred->est_success_rate = estimate_pattern_match_rate (name, 0);
1271 return true;
1273 return false;
1276 static boolean
1277 parse_iwholename (const struct parser_table* entry, char **argv, int *arg_ptr)
1279 return parse_ipath (entry, argv, arg_ptr);
1282 static boolean
1283 parse_iregex (const struct parser_table* entry, char **argv, int *arg_ptr)
1285 return insert_regex (argv, arg_ptr, entry, RE_ICASE|options.regex_options);
1288 static boolean
1289 parse_links (const struct parser_table* entry, char **argv, int *arg_ptr)
1291 struct predicate *p = insert_num (argv, arg_ptr, entry);
1292 if (p)
1294 if (p->args.numinfo.l_val == 1)
1295 p->est_success_rate = 0.99;
1296 else if (p->args.numinfo.l_val == 2)
1297 p->est_success_rate = 0.01;
1298 else
1299 p->est_success_rate = 1e-3;
1300 return true;
1302 else
1304 return false;
1308 static boolean
1309 parse_lname (const struct parser_table* entry, char **argv, int *arg_ptr)
1311 const char *name;
1312 fnmatch_sanitycheck();
1313 if (collect_arg(argv, arg_ptr, &name))
1315 struct predicate *our_pred = insert_primary (entry);
1316 our_pred->args.str = name;
1317 our_pred->est_success_rate = 0.1 * estimate_pattern_match_rate(name, 0);
1318 return true;
1320 return false;
1323 static boolean
1324 parse_ls (const struct parser_table* entry, char **argv, int *arg_ptr)
1326 (void) &argv;
1327 (void) &arg_ptr;
1328 return insert_fls(entry, NULL);
1331 static boolean
1332 insert_depthspec(const struct parser_table* entry, char **argv, int *arg_ptr,
1333 int *limitptr)
1335 const char *depthstr;
1336 int depth_len;
1337 const char *predicate = argv[(*arg_ptr)-1];
1338 if (collect_arg(argv, arg_ptr, &depthstr))
1340 depth_len = strspn (depthstr, "0123456789");
1341 if ((depth_len > 0) && (depthstr[depth_len] == 0))
1343 (*limitptr) = safe_atoi (depthstr);
1344 if (*limitptr >= 0)
1346 return parse_noop(entry, argv, arg_ptr);
1349 error(1, 0, _("Expected a positive decimal integer argument to %s, but got %s"),
1350 predicate,
1351 quotearg_n_style(0, options.err_quoting_style, depthstr));
1352 return false;
1354 /* missing argument */
1355 return false;
1359 static boolean
1360 parse_maxdepth (const struct parser_table* entry, char **argv, int *arg_ptr)
1362 return insert_depthspec(entry, argv, arg_ptr, &options.maxdepth);
1365 static boolean
1366 parse_mindepth (const struct parser_table* entry, char **argv, int *arg_ptr)
1368 return insert_depthspec(entry, argv, arg_ptr, &options.mindepth);
1372 static boolean
1373 do_parse_xmin (const struct parser_table* entry,
1374 char **argv,
1375 int *arg_ptr,
1376 enum xval xv)
1378 const char *minutes;
1380 if (collect_arg(argv, arg_ptr, &minutes))
1382 struct time_val tval;
1383 tval.xval = xv;
1384 if (get_relative_timestamp(minutes, &tval,
1385 options.cur_day_start + DAYSECS, 60,
1386 "arithmetic overflow while converting %s "
1387 "minutes to a number of seconds"))
1389 struct predicate *our_pred = insert_primary (entry);
1390 our_pred->args.reftime = tval;
1391 our_pred->est_success_rate = estimate_timestamp_success_rate(tval.ts.tv_sec);
1392 return true;
1395 return false;
1397 static boolean
1398 parse_amin (const struct parser_table* entry, char **argv, int *arg_ptr)
1400 return do_parse_xmin(entry, argv, arg_ptr, XVAL_ATIME);
1403 static boolean
1404 parse_cmin (const struct parser_table* entry, char **argv, int *arg_ptr)
1406 return do_parse_xmin(entry, argv, arg_ptr, XVAL_CTIME);
1410 static boolean
1411 parse_mmin (const struct parser_table* entry, char **argv, int *arg_ptr)
1413 return do_parse_xmin(entry, argv, arg_ptr, XVAL_MTIME);
1416 static boolean
1417 parse_name (const struct parser_table* entry, char **argv, int *arg_ptr)
1419 const char *name;
1420 if (collect_arg(argv, arg_ptr, &name))
1422 fnmatch_sanitycheck();
1423 if (check_name_arg("-name", name))
1425 struct predicate *our_pred = insert_primary (entry);
1426 our_pred->need_stat = our_pred->need_type = false;
1427 our_pred->args.str = name;
1428 our_pred->est_success_rate = estimate_pattern_match_rate(name, 0);
1429 return true;
1432 return false;
1435 static boolean
1436 parse_negate (const struct parser_table* entry, char **argv, int *arg_ptr)
1438 struct predicate *our_pred;
1440 (void) &argv;
1441 (void) &arg_ptr;
1443 our_pred = get_new_pred_chk_op (entry);
1444 our_pred->pred_func = pred_negate;
1445 our_pred->p_type = UNI_OP;
1446 our_pred->p_prec = NEGATE_PREC;
1447 our_pred->need_stat = our_pred->need_type = false;
1448 return true;
1451 static boolean
1452 parse_newer (const struct parser_table* entry, char **argv, int *arg_ptr)
1454 struct predicate *our_pred;
1455 struct stat stat_newer;
1457 set_stat_placeholders(&stat_newer);
1458 if (collect_arg_stat_info(argv, arg_ptr, &stat_newer))
1460 our_pred = insert_primary (entry);
1461 our_pred->args.reftime.ts = get_stat_mtime(&stat_newer);
1462 our_pred->args.reftime.xval = XVAL_MTIME;
1463 our_pred->args.reftime.kind = COMP_GT;
1464 our_pred->est_success_rate = estimate_timestamp_success_rate(stat_newer.st_mtime);
1465 return true;
1467 return false;
1471 static boolean
1472 parse_newerXY (const struct parser_table* entry, char **argv, int *arg_ptr)
1474 (void) argv;
1475 (void) arg_ptr;
1477 if ((argv == NULL) || (argv[*arg_ptr] == NULL))
1479 return false;
1481 else if (8u != strlen(argv[*arg_ptr]))
1483 return false;
1485 else
1487 char x, y;
1488 const char validchars[] = "aBcmt";
1490 assert (0 == strncmp("-newer", argv[*arg_ptr], 6));
1491 x = argv[*arg_ptr][6];
1492 y = argv[*arg_ptr][7];
1495 #if !defined(HAVE_STRUCT_STAT_ST_BIRTHTIME) && !defined(HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC) && !defined(HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC)
1496 if ('B' == x || 'B' == y)
1498 error(0, 0,
1499 _("This system does not provide a way to find the birth time of a file."));
1500 return 0;
1502 #endif
1504 /* -newertY (for any Y) is invalid. */
1505 if (x == 't'
1506 || 0 == strchr(validchars, x)
1507 || 0 == strchr( validchars, y))
1509 return false;
1511 else
1513 struct predicate *our_pred;
1515 /* Because this item is ARG_SPECIAL_PARSE, we have to advance arg_ptr
1516 * past the test name (for most other tests, this is already done)
1518 (*arg_ptr)++;
1520 our_pred = insert_primary (entry);
1523 switch (x)
1525 case 'a':
1526 our_pred->args.reftime.xval = XVAL_ATIME;
1527 break;
1528 case 'B':
1529 our_pred->args.reftime.xval = XVAL_BIRTHTIME;
1530 break;
1531 case 'c':
1532 our_pred->args.reftime.xval = XVAL_CTIME;
1533 break;
1534 case 'm':
1535 our_pred->args.reftime.xval = XVAL_MTIME;
1536 break;
1537 default:
1538 assert (strchr(validchars, x));
1539 assert (0);
1542 if ('t' == y)
1544 if (!get_date(&our_pred->args.reftime.ts,
1545 argv[*arg_ptr],
1546 &options.start_time))
1548 error(1, 0,
1549 _("I cannot figure out how to interpret %s as a date or time"),
1550 quotearg_n_style(0, options.err_quoting_style, argv[*arg_ptr]));
1553 else
1555 struct stat stat_newer;
1557 /* Stat the named file. */
1558 set_stat_placeholders(&stat_newer);
1559 if ((*options.xstat) (argv[*arg_ptr], &stat_newer))
1560 fatal_file_error(argv[*arg_ptr]);
1562 if (!get_stat_Ytime(&stat_newer, y, &our_pred->args.reftime.ts))
1564 /* We cannot extract a timestamp from the struct stat. */
1565 error(1, 0, _("Cannot obtain birth time of file %s"),
1566 safely_quote_err_filename(0, argv[*arg_ptr]));
1569 our_pred->args.reftime.kind = COMP_GT;
1570 our_pred->est_success_rate = estimate_timestamp_success_rate(our_pred->args.reftime.ts.tv_sec);
1571 (*arg_ptr)++;
1573 assert (our_pred->pred_func != NULL);
1574 assert (our_pred->pred_func == pred_newerXY);
1575 assert (our_pred->need_stat);
1576 return true;
1582 static boolean
1583 parse_noleaf (const struct parser_table* entry, char **argv, int *arg_ptr)
1585 options.no_leaf_check = true;
1586 return parse_noop(entry, argv, arg_ptr);
1589 #ifdef CACHE_IDS
1590 /* Arbitrary amount by which to increase size
1591 of `uid_unused' and `gid_unused'. */
1592 #define ALLOC_STEP 2048
1594 /* Boolean: if uid_unused[n] is nonzero, then UID n has no passwd entry. */
1595 char *uid_unused = NULL;
1597 /* Number of elements in `uid_unused'. */
1598 unsigned uid_allocated;
1600 /* Similar for GIDs and group entries. */
1601 char *gid_unused = NULL;
1602 unsigned gid_allocated;
1603 #endif
1605 static boolean
1606 parse_nogroup (const struct parser_table* entry, char **argv, int *arg_ptr)
1608 struct predicate *our_pred;
1610 (void) &argv;
1611 (void) &arg_ptr;
1613 our_pred = insert_primary (entry);
1614 our_pred->est_success_rate = 1e-4;
1615 #ifdef CACHE_IDS
1616 if (gid_unused == NULL)
1618 struct group *gr;
1620 gid_allocated = ALLOC_STEP;
1621 gid_unused = xmalloc (gid_allocated);
1622 memset (gid_unused, 1, gid_allocated);
1623 setgrent ();
1624 while ((gr = getgrent ()) != NULL)
1626 if ((unsigned) gr->gr_gid >= gid_allocated)
1628 unsigned new_allocated = (unsigned) gr->gr_gid + ALLOC_STEP;
1629 gid_unused = xrealloc (gid_unused, new_allocated);
1630 memset (gid_unused + gid_allocated, 1,
1631 new_allocated - gid_allocated);
1632 gid_allocated = new_allocated;
1634 gid_unused[(unsigned) gr->gr_gid] = 0;
1636 endgrent ();
1638 #endif
1639 return true;
1642 static boolean
1643 parse_nouser (const struct parser_table* entry, char **argv, int *arg_ptr)
1645 struct predicate *our_pred;
1646 (void) argv;
1647 (void) arg_ptr;
1650 our_pred = insert_primary (entry);
1651 our_pred->est_success_rate = 1e-3;
1652 #ifdef CACHE_IDS
1653 if (uid_unused == NULL)
1655 struct passwd *pw;
1657 uid_allocated = ALLOC_STEP;
1658 uid_unused = xmalloc (uid_allocated);
1659 memset (uid_unused, 1, uid_allocated);
1660 setpwent ();
1661 while ((pw = getpwent ()) != NULL)
1663 if ((unsigned) pw->pw_uid >= uid_allocated)
1665 unsigned new_allocated = (unsigned) pw->pw_uid + ALLOC_STEP;
1666 uid_unused = xrealloc (uid_unused, new_allocated);
1667 memset (uid_unused + uid_allocated, 1,
1668 new_allocated - uid_allocated);
1669 uid_allocated = new_allocated;
1671 uid_unused[(unsigned) pw->pw_uid] = 0;
1673 endpwent ();
1675 #endif
1676 return true;
1679 static boolean
1680 parse_nowarn (const struct parser_table* entry, char **argv, int *arg_ptr)
1682 options.warnings = false;
1683 return parse_noop(entry, argv, arg_ptr);
1686 static boolean
1687 parse_ok (const struct parser_table* entry, char **argv, int *arg_ptr)
1689 return insert_exec_ok ("-ok", entry, get_start_dirfd(), argv, arg_ptr);
1692 static boolean
1693 parse_okdir (const struct parser_table* entry, char **argv, int *arg_ptr)
1695 return insert_exec_ok ("-okdir", entry, -1, argv, arg_ptr);
1698 boolean
1699 parse_openparen (const struct parser_table* entry, char **argv, int *arg_ptr)
1701 struct predicate *our_pred;
1703 (void) argv;
1704 (void) arg_ptr;
1706 our_pred = get_new_pred_chk_op (entry);
1707 our_pred->pred_func = pred_openparen;
1708 our_pred->p_type = OPEN_PAREN;
1709 our_pred->p_prec = NO_PREC;
1710 our_pred->need_stat = our_pred->need_type = false;
1711 return true;
1714 static boolean
1715 parse_or (const struct parser_table* entry, char **argv, int *arg_ptr)
1717 struct predicate *our_pred;
1719 (void) argv;
1720 (void) arg_ptr;
1722 our_pred = get_new_pred (entry);
1723 our_pred->pred_func = pred_or;
1724 our_pred->p_type = BI_OP;
1725 our_pred->p_prec = OR_PREC;
1726 our_pred->need_stat = our_pred->need_type = false;
1727 return true;
1730 /* For some time, -path was deprecated (at RMS's request) in favour of
1731 * -iwholename. See the node "GNU Manuals" in standards.texi for the
1732 * rationale for this (basically, GNU prefers the use of the phrase
1733 * "file name" to "path name".
1735 * We do not issue a warning that this usage is deprecated
1736 * since
1737 * (a) HPUX find supports this predicate also and
1738 * (b) it will soon be in POSIX anyway.
1740 static boolean
1741 parse_path (const struct parser_table* entry, char **argv, int *arg_ptr)
1743 const char *name;
1744 if (collect_arg(argv, arg_ptr, &name))
1746 struct predicate *our_pred = insert_primary_withpred (entry, pred_path);
1747 our_pred->need_stat = our_pred->need_type = false;
1748 our_pred->args.str = name;
1749 our_pred->est_success_rate = estimate_pattern_match_rate (name, 0);
1750 return true;
1752 return false;
1755 static boolean
1756 parse_wholename (const struct parser_table* entry, char **argv, int *arg_ptr)
1758 return parse_path (entry, argv, arg_ptr);
1761 static void
1762 non_posix_mode(const char *mode)
1764 if (options.posixly_correct)
1766 error (1, 0, _("Mode %s is not valid when POSIXLY_CORRECT is on."),
1767 quotearg_n_style(0, options.err_quoting_style, mode));
1772 static boolean
1773 parse_perm (const struct parser_table* entry, char **argv, int *arg_ptr)
1775 mode_t perm_val[2];
1776 float rate;
1777 int mode_start = 0;
1778 boolean havekind = false;
1779 enum permissions_type kind = PERM_EXACT;
1780 struct mode_change *change = NULL;
1781 struct predicate *our_pred;
1782 const char *perm_expr;
1784 if (!collect_arg(argv, arg_ptr, &perm_expr))
1785 return false;
1787 switch (perm_expr[0])
1789 case '-':
1790 mode_start = 1;
1791 kind = PERM_AT_LEAST;
1792 havekind = true;
1793 rate = 0.2;
1794 break;
1796 case '+':
1797 change = mode_compile (perm_expr);
1798 if (NULL == change)
1800 /* Most likely the caller is an old script that is still
1801 * using the obsolete GNU syntax '-perm +MODE'. This old
1802 * syntax was withdrawn in favor of '-perm /MODE' because
1803 * it is incompatible with POSIX in some cases, but we
1804 * still support uses of it that are not incompatible with
1805 * POSIX.
1807 * Example: POSIXLY_CORRECT=y find -perm +a+x
1809 non_posix_mode(perm_expr);
1811 /* support the previous behaviour. */
1812 mode_start = 1;
1813 kind = PERM_ANY;
1814 rate = 0.3;
1816 else
1818 /* This is a POSIX-compatible usage */
1819 mode_start = 0;
1820 kind = PERM_EXACT;
1821 rate = 0.1;
1823 havekind = true;
1824 break;
1826 case '/': /* GNU extension */
1827 non_posix_mode(perm_expr);
1828 mode_start = 1;
1829 kind = PERM_ANY;
1830 havekind = true;
1831 rate = 0.3;
1832 break;
1834 default:
1835 /* For example, '-perm 0644', which is valid and matches
1836 * only files whose mode is exactly 0644.
1838 mode_start = 0;
1839 kind = PERM_EXACT;
1840 havekind = true;
1841 rate = 0.01;
1842 break;
1845 if (NULL == change)
1847 change = mode_compile (perm_expr + mode_start);
1848 if (NULL == change)
1849 error (1, 0, _("invalid mode %s"),
1850 quotearg_n_style(0, options.err_quoting_style, perm_expr));
1852 perm_val[0] = mode_adjust (0, false, 0, change, NULL);
1853 perm_val[1] = mode_adjust (0, true, 0, change, NULL);
1854 free (change);
1856 if (('/' == perm_expr[0]) && (0 == perm_val[0]) && (0 == perm_val[1]))
1858 /* The meaning of -perm /000 will change in the future. It
1859 * currently matches no files, but like -perm -000 it should
1860 * match all files.
1862 * Starting in 2005, we used to issue a warning message
1863 * informing the user that the behaviour would change in the
1864 * future. We have now changed the behaviour and issue a
1865 * warning message that the behaviour recently changed.
1867 error (0, 0,
1868 _("warning: you have specified a mode pattern %s (which is "
1869 "equivalent to /000). The meaning of -perm /000 has now been "
1870 "changed to be consistent with -perm -000; that is, while it "
1871 "used to match no files, it now matches all files."),
1872 perm_expr);
1874 kind = PERM_AT_LEAST;
1875 havekind = true;
1877 /* The "magic" number below is just the fraction of files on my
1878 * own system that "-type l -xtype l" fails for (i.e. unbroken symlinks).
1879 * Actual totals are 1472 and 1073833.
1881 rate = 0.9986; /* probably matches anything but a broken symlink */
1884 our_pred = insert_primary (entry);
1885 our_pred->est_success_rate = rate;
1886 if (havekind)
1888 our_pred->args.perm.kind = kind;
1890 else
1893 switch (perm_expr[0])
1895 case '-':
1896 our_pred->args.perm.kind = PERM_AT_LEAST;
1897 break;
1898 case '+':
1899 our_pred->args.perm.kind = PERM_ANY;
1900 break;
1901 default:
1902 our_pred->args.perm.kind = PERM_EXACT;
1903 break;
1906 memcpy (our_pred->args.perm.val, perm_val, sizeof perm_val);
1907 return true;
1910 boolean
1911 parse_print (const struct parser_table* entry, char **argv, int *arg_ptr)
1913 struct predicate *our_pred;
1915 (void) argv;
1916 (void) arg_ptr;
1918 our_pred = insert_primary (entry);
1919 /* -print has the side effect of printing. This prevents us
1920 from doing undesired multiple printing when the user has
1921 already specified -print. */
1922 our_pred->side_effects = our_pred->no_default_print = true;
1923 our_pred->need_stat = our_pred->need_type = false;
1924 open_stdout(&our_pred->args.printf_vec);
1925 return true;
1928 static boolean
1929 parse_print0 (const struct parser_table* entry, char **argv, int *arg_ptr)
1931 return insert_fprint(entry, NULL);
1934 static boolean
1935 parse_printf (const struct parser_table* entry, char **argv, int *arg_ptr)
1937 const char *format;
1938 if (collect_arg(argv, arg_ptr, &format))
1940 struct format_val fmt;
1941 open_stdout(&fmt);
1942 return insert_fprintf (&fmt, entry, pred_fprintf, format);
1944 return false;
1947 static boolean
1948 parse_fprintf (const struct parser_table* entry, char **argv, int *arg_ptr)
1950 const char *format, *filename;
1951 if (collect_arg(argv, arg_ptr, &filename))
1953 if (collect_arg(argv, arg_ptr, &format))
1955 struct format_val fmt;
1956 open_output_file (filename, &fmt);
1957 return insert_fprintf (&fmt, entry, pred_fprintf, format);
1960 return false;
1963 static boolean
1964 parse_prune (const struct parser_table* entry, char **argv, int *arg_ptr)
1966 struct predicate *our_pred;
1968 (void) argv;
1969 (void) arg_ptr;
1971 our_pred = insert_primary (entry);
1972 our_pred->need_stat = our_pred->need_type = false;
1973 /* -prune has a side effect that it does not descend into
1974 the current directory. */
1975 our_pred->side_effects = true;
1976 our_pred->no_default_print = false;
1977 return true;
1980 static boolean
1981 parse_quit (const struct parser_table* entry, char **argv, int *arg_ptr)
1983 struct predicate *our_pred = insert_primary (entry);
1984 (void) argv;
1985 (void) arg_ptr;
1986 our_pred->need_stat = our_pred->need_type = false;
1987 our_pred->side_effects = true; /* Exiting is a side effect... */
1988 our_pred->no_default_print = false; /* Don't inhibit the default print, though. */
1989 our_pred->est_success_rate = 1.0f;
1990 return true;
1994 static boolean
1995 parse_regextype (const struct parser_table* entry, char **argv, int *arg_ptr)
1997 const char *type_name;
1998 if (collect_arg(argv, arg_ptr, &type_name))
2000 /* collect the regex type name */
2001 options.regex_options = get_regex_type(type_name);
2002 return parse_noop(entry, argv, arg_ptr);
2004 return false;
2008 static boolean
2009 parse_regex (const struct parser_table* entry, char **argv, int *arg_ptr)
2011 return insert_regex (argv, arg_ptr, entry, options.regex_options);
2014 static boolean
2015 insert_regex (char **argv,
2016 int *arg_ptr,
2017 const struct parser_table *entry,
2018 int regex_options)
2020 const char *rx;
2021 if (collect_arg(argv, arg_ptr, &rx))
2023 struct re_pattern_buffer *re;
2024 const char *error_message;
2025 struct predicate *our_pred = insert_primary_withpred (entry, pred_regex);
2026 our_pred->need_stat = our_pred->need_type = false;
2027 re = xmalloc (sizeof (struct re_pattern_buffer));
2028 our_pred->args.regex = re;
2029 re->allocated = 100;
2030 re->buffer = xmalloc (re->allocated);
2031 re->fastmap = NULL;
2033 re_set_syntax(regex_options);
2034 re->syntax = regex_options;
2035 re->translate = NULL;
2037 error_message = re_compile_pattern (rx, strlen(rx), re);
2038 if (error_message)
2039 error (1, 0, "%s", error_message);
2040 our_pred->est_success_rate = estimate_pattern_match_rate(rx, 1);
2041 return true;
2043 return false;
2046 static boolean
2047 parse_size (const struct parser_table* entry, char **argv, int *arg_ptr)
2049 struct predicate *our_pred;
2050 uintmax_t num;
2051 char suffix;
2052 enum comparison_type c_type;
2054 int blksize = 512;
2055 int len;
2057 /* XXX: cannot (yet) convert to ue collect_arg() as this
2058 * function modifies the args in-place.
2060 if ((argv == NULL) || (argv[*arg_ptr] == NULL))
2061 return false;
2063 len = strlen (argv[*arg_ptr]);
2064 if (len == 0)
2065 error (1, 0, _("invalid null argument to -size"));
2067 suffix = argv[*arg_ptr][len - 1];
2068 switch (suffix)
2070 case 'b':
2071 blksize = 512;
2072 argv[*arg_ptr][len - 1] = '\0';
2073 break;
2075 case 'c':
2076 blksize = 1;
2077 argv[*arg_ptr][len - 1] = '\0';
2078 break;
2080 case 'k':
2081 blksize = 1024;
2082 argv[*arg_ptr][len - 1] = '\0';
2083 break;
2085 case 'M': /* Megabytes */
2086 blksize = 1024*1024;
2087 argv[*arg_ptr][len - 1] = '\0';
2088 break;
2090 case 'G': /* Gigabytes */
2091 blksize = 1024*1024*1024;
2092 argv[*arg_ptr][len - 1] = '\0';
2093 break;
2095 case 'w':
2096 blksize = 2;
2097 argv[*arg_ptr][len - 1] = '\0';
2098 break;
2100 case '0':
2101 case '1':
2102 case '2':
2103 case '3':
2104 case '4':
2105 case '5':
2106 case '6':
2107 case '7':
2108 case '8':
2109 case '9':
2110 break;
2112 default:
2113 error (1, 0, _("invalid -size type `%c'"), argv[*arg_ptr][len - 1]);
2115 /* TODO: accept fractional megabytes etc. ? */
2116 if (!get_num (argv[*arg_ptr], &num, &c_type))
2118 error(1, 0,
2119 _("Invalid argument `%s%c' to -size"),
2120 argv[*arg_ptr], (int)suffix);
2121 return false;
2123 our_pred = insert_primary (entry);
2124 our_pred->args.size.kind = c_type;
2125 our_pred->args.size.blocksize = blksize;
2126 our_pred->args.size.size = num;
2127 our_pred->need_stat = true;
2128 our_pred->need_type = false;
2130 if (COMP_GT == c_type)
2131 our_pred->est_success_rate = (num*blksize > 20480) ? 0.1 : 0.9;
2132 else if (COMP_LT == c_type)
2133 our_pred->est_success_rate = (num*blksize > 20480) ? 0.9 : 0.1;
2134 else
2135 our_pred->est_success_rate = 0.01;
2137 (*arg_ptr)++;
2138 return true;
2142 static boolean
2143 parse_samefile (const struct parser_table* entry, char **argv, int *arg_ptr)
2145 /* General idea: stat the file, remember device and inode numbers.
2146 * If a candidate file matches those, it's the same file.
2148 struct predicate *our_pred;
2149 struct stat st, fst;
2150 int fd, openflags;
2152 set_stat_placeholders(&st);
2153 if (!collect_arg_stat_info(argv, arg_ptr, &st))
2154 return false;
2156 set_stat_placeholders(&fst);
2157 /* POSIX systems are free to re-use the inode number of a deleted
2158 * file. To ensure that we are not fooled by inode reuse, we hold
2159 * the file open if we can. This would prevent the system reusing
2160 * the file.
2162 fd = -3; /* means, uninitialised */
2163 openflags = O_RDONLY;
2165 if (options.symlink_handling == SYMLINK_NEVER_DEREF)
2167 if (options.open_nofollow_available)
2169 assert (O_NOFOLLOW != 0);
2170 openflags |= O_NOFOLLOW;
2171 fd = -1; /* safe to open it. */
2173 else
2175 if (S_ISLNK(st.st_mode))
2177 /* no way to ensure that a symlink will not be followed
2178 * by open(2), so fall back on using lstat(). Accept
2179 * the risk that the named file will be deleted and
2180 * replaced with another having the same inode.
2182 * Avoid opening the file.
2184 fd = -2; /* Do not open it */
2186 else
2188 fd = -1;
2189 /* Race condition here: the file might become a symlink here. */
2193 else
2195 /* We want to dereference the symlink anyway */
2196 fd = -1; /* safe to open it without O_NOFOLLOW */
2199 assert (fd != -3); /* check we made a decision */
2200 if (fd == -1)
2202 /* Race condition here. The file might become a
2203 * symbolic link in between out call to stat and
2204 * the call to open.
2206 fd = open(argv[*arg_ptr], openflags);
2208 if (fd >= 0)
2210 /* We stat the file again here to prevent a race condition
2211 * between the first stat and the call to open(2).
2213 if (0 != fstat(fd, &fst))
2215 fatal_file_error(argv[*arg_ptr]);
2217 else
2219 /* Worry about the race condition. If the file became a
2220 * symlink after our first stat and before our call to
2221 * open, fst may contain the stat information for the
2222 * destination of the link, not the link itself.
2224 if ((*options.xstat) (argv[*arg_ptr], &st))
2225 fatal_file_error(argv[*arg_ptr]);
2227 if ((options.symlink_handling == SYMLINK_NEVER_DEREF)
2228 && (!options.open_nofollow_available))
2230 if (S_ISLNK(st.st_mode))
2232 /* We lost the race. Leave the data in st. The
2233 * file descriptor points to the wrong thing.
2235 close(fd);
2236 fd = -1;
2238 else
2240 /* Several possibilities here:
2241 * 1. There was no race
2242 * 2. The file changed into a symlink after the stat and
2243 * before the open, and then back into a non-symlink
2244 * before the second stat.
2246 * In case (1) there is no problem. In case (2),
2247 * the stat() and fstat() calls will have returned
2248 * different data. O_NOFOLLOW was not available,
2249 * so the open() call may have followed a symlink
2250 * even if the -P option is in effect.
2252 if ((st.st_dev == fst.st_dev)
2253 && (st.st_ino == fst.st_ino))
2255 /* No race. No need to copy fst to st,
2256 * since they should be identical (modulo
2257 * differences in padding bytes).
2260 else
2262 /* We lost the race. Leave the data in st. The
2263 * file descriptor points to the wrong thing.
2265 close(fd);
2266 fd = -1;
2270 else
2272 st = fst;
2278 our_pred = insert_primary (entry);
2279 our_pred->args.samefileid.ino = st.st_ino;
2280 our_pred->args.samefileid.dev = st.st_dev;
2281 our_pred->args.samefileid.fd = fd;
2282 our_pred->need_type = false;
2283 our_pred->need_stat = true;
2284 our_pred->est_success_rate = 0.01f;
2285 return true;
2288 #if 0
2289 /* This function is commented out partly because support for it is
2290 * uneven.
2292 static boolean
2293 parse_show_control_chars (const struct parser_table* entry,
2294 char **argv,
2295 int *arg_ptr)
2297 const char *arg;
2298 const char *errmsg = _("The -show-control-chars option takes "
2299 "a single argument which "
2300 "must be 'literal' or 'safe'");
2302 if ((argv == NULL) || (argv[*arg_ptr] == NULL))
2304 error (1, errno, "%s", errmsg);
2305 return false;
2307 else
2309 arg = argv[*arg_ptr];
2311 if (0 == strcmp("literal", arg))
2313 options.literal_control_chars = true;
2315 else if (0 == strcmp("safe", arg))
2317 options.literal_control_chars = false;
2319 else
2321 error (1, errno, "%s", errmsg);
2322 return false;
2324 (*arg_ptr)++; /* consume the argument. */
2325 return true;
2328 #endif
2331 static boolean
2332 parse_true (const struct parser_table* entry, char **argv, int *arg_ptr)
2334 struct predicate *our_pred;
2336 (void) argv;
2337 (void) arg_ptr;
2339 our_pred = insert_primary (entry);
2340 our_pred->need_stat = our_pred->need_type = false;
2341 our_pred->est_success_rate = 1.0f;
2342 return true;
2345 static boolean
2346 parse_noop (const struct parser_table* entry, char **argv, int *arg_ptr)
2348 (void) entry;
2349 return parse_true(get_noop(), argv, arg_ptr);
2352 static boolean
2353 parse_accesscheck (const struct parser_table* entry, char **argv, int *arg_ptr)
2355 struct predicate *our_pred;
2356 (void) argv;
2357 (void) arg_ptr;
2358 our_pred = insert_primary (entry);
2359 our_pred->need_stat = our_pred->need_type = false;
2360 our_pred->side_effects = our_pred->no_default_print = false;
2361 if (pred_is(our_pred, pred_executable))
2362 our_pred->est_success_rate = 0.2;
2363 else
2364 our_pred->est_success_rate = 0.9;
2365 return true;
2368 static boolean
2369 parse_type (const struct parser_table* entry, char **argv, int *arg_ptr)
2371 return insert_type (argv, arg_ptr, entry, pred_type);
2374 static boolean
2375 parse_uid (const struct parser_table* entry, char **argv, int *arg_ptr)
2377 struct predicate *p = insert_num (argv, arg_ptr, entry);
2378 if (p)
2380 p->est_success_rate = (p->args.numinfo.l_val < 100) ? 0.99 : 0.2;
2381 return true;
2383 else
2385 return false;
2389 static boolean
2390 parse_used (const struct parser_table* entry, char **argv, int *arg_ptr)
2392 struct predicate *our_pred;
2393 struct time_val tval;
2394 const char *offset_str;
2395 const char *errmsg = "arithmetic overflow while converting %s days to a number of seconds";
2397 if (collect_arg(argv, arg_ptr, &offset_str))
2399 /* The timespec is actually a delta value, so we use an origin of 0. */
2400 if (get_relative_timestamp(offset_str, &tval, 0, DAYSECS, errmsg))
2402 our_pred = insert_primary (entry);
2403 our_pred->args.reftime = tval;
2404 our_pred->est_success_rate = estimate_file_age_success_rate(tval.ts.tv_sec / DAYSECS);
2405 return true;
2407 else
2409 error(1, 0, _("Invalid argument %s to -used"), offset_str);
2410 return false;
2413 else
2415 return false; /* missing argument */
2419 static boolean
2420 parse_user (const struct parser_table* entry, char **argv, int *arg_ptr)
2422 const char *username;
2424 if (collect_arg(argv, arg_ptr, &username))
2426 struct predicate *our_pred;
2427 uid_t uid;
2428 struct passwd *cur_pwd = getpwnam(username);
2429 endpwent();
2430 if (cur_pwd != NULL)
2432 uid = cur_pwd->pw_uid;
2434 else
2436 int uid_len = strspn (username, "0123456789");
2437 if (uid_len && (username[uid_len]==0))
2438 uid = safe_atoi (username);
2439 else
2440 return false;
2442 our_pred = insert_primary (entry);
2443 our_pred->args.uid = uid;
2444 our_pred->est_success_rate = (our_pred->args.uid < 100) ? 0.99 : 0.2;
2445 return true;
2447 return false;
2450 static boolean
2451 parse_version (const struct parser_table* entry, char **argv, int *arg_ptr)
2453 int features = 0;
2454 int flags;
2456 (void) argv;
2457 (void) arg_ptr;
2458 (void) entry;
2460 display_findutils_version("find");
2461 printf (_("Features enabled: "));
2463 #if CACHE_IDS
2464 printf("CACHE_IDS ");
2465 ++features;
2466 #endif
2467 #if DEBUG
2468 printf("DEBUG ");
2469 ++features;
2470 #endif
2471 #if DEBUG_STAT
2472 printf("DEBUG_STAT ");
2473 ++features;
2474 #endif
2475 #if defined USE_STRUCT_DIRENT_D_TYPE && defined HAVE_STRUCT_DIRENT_D_TYPE
2476 printf("D_TYPE ");
2477 ++features;
2478 #endif
2479 #if defined O_NOFOLLOW
2480 printf("O_NOFOLLOW(%s) ",
2481 (options.open_nofollow_available ? "enabled" : "disabled"));
2482 ++features;
2483 #endif
2484 #if defined LEAF_OPTIMISATION
2485 printf("LEAF_OPTIMISATION ");
2486 ++features;
2487 #endif
2489 flags = 0;
2490 if (is_fts_enabled(&flags))
2492 int nflags = 0;
2493 printf("FTS(");
2494 ++features;
2496 if (flags & FTS_CWDFD)
2498 if (nflags)
2500 printf(",");
2502 printf("FTS_CWDFD");
2503 ++nflags;
2505 printf(") ");
2508 printf("CBO(level=%d) ", (int)(options.optimisation_level));
2509 ++features;
2511 if (0 == features)
2513 /* For the moment, leave this as English in case someone wants
2514 to parse these strings. */
2515 printf("none");
2517 printf("\n");
2519 exit (0);
2522 static boolean
2523 parse_xdev (const struct parser_table* entry, char **argv, int *arg_ptr)
2525 options.stay_on_filesystem = true;
2526 return parse_noop(entry, argv, arg_ptr);
2529 static boolean
2530 parse_ignore_race (const struct parser_table* entry, char **argv, int *arg_ptr)
2532 options.ignore_readdir_race = true;
2533 return parse_noop(entry, argv, arg_ptr);
2536 static boolean
2537 parse_noignore_race (const struct parser_table* entry, char **argv, int *arg_ptr)
2539 options.ignore_readdir_race = false;
2540 return parse_noop(entry, argv, arg_ptr);
2543 static boolean
2544 parse_warn (const struct parser_table* entry, char **argv, int *arg_ptr)
2546 options.warnings = true;
2547 return parse_noop(entry, argv, arg_ptr);
2550 static boolean
2551 parse_xtype (const struct parser_table* entry, char **argv, int *arg_ptr)
2553 return insert_type (argv, arg_ptr, entry, pred_xtype);
2556 static boolean
2557 insert_type (char **argv, int *arg_ptr,
2558 const struct parser_table *entry,
2559 PRED_FUNC which_pred)
2561 mode_t type_cell;
2562 struct predicate *our_pred;
2563 float rate = 0.5;
2564 const char *typeletter;
2566 if (collect_arg(argv, arg_ptr, &typeletter))
2568 if (strlen(typeletter) != 1u)
2570 error(1, 0, _("Arguments to -type should contain only one letter"));
2571 return false;
2574 switch (typeletter[0])
2576 case 'b': /* block special */
2577 type_cell = S_IFBLK;
2578 rate = 0.01f;
2579 break;
2580 case 'c': /* character special */
2581 type_cell = S_IFCHR;
2582 rate = 0.01f;
2583 break;
2584 case 'd': /* directory */
2585 type_cell = S_IFDIR;
2586 rate = 0.4f;
2587 break;
2588 case 'f': /* regular file */
2589 type_cell = S_IFREG;
2590 rate = 0.95f;
2591 break;
2592 #ifdef S_IFLNK
2593 case 'l': /* symbolic link */
2594 type_cell = S_IFLNK;
2595 rate = 0.1f;
2596 break;
2597 #endif
2598 #ifdef S_IFIFO
2599 case 'p': /* pipe */
2600 type_cell = S_IFIFO;
2601 rate = 0.01f;
2602 break;
2603 #endif
2604 #ifdef S_IFSOCK
2605 case 's': /* socket */
2606 type_cell = S_IFSOCK;
2607 rate = 0.01f;
2608 break;
2609 #endif
2610 #ifdef S_IFDOOR
2611 case 'D': /* Solaris door */
2612 type_cell = S_IFDOOR;
2613 rate = 0.01f;
2614 break;
2615 #endif
2616 default: /* None of the above ... nuke 'em. */
2617 error(1, 0, _("Unknown argument to -type: %c"), (*typeletter));
2618 return false;
2620 our_pred = insert_primary_withpred (entry, which_pred);
2621 our_pred->est_success_rate = rate;
2623 /* Figure out if we will need to stat the file, because if we don't
2624 * need to follow symlinks, we can avoid a stat call by using
2625 * struct dirent.d_type.
2627 if (which_pred == pred_xtype)
2629 our_pred->need_stat = true;
2630 our_pred->need_type = false;
2632 else
2634 our_pred->need_stat = false; /* struct dirent is enough */
2635 our_pred->need_type = true;
2637 our_pred->args.type = type_cell;
2638 return true;
2640 return false;
2644 /* Return true if the file accessed via FP is a terminal.
2646 static boolean
2647 stream_is_tty(FILE *fp)
2649 int fd = fileno(fp);
2650 if (-1 == fd)
2652 return false; /* not a valid stream */
2654 else
2656 return isatty(fd) ? true : false;
2664 /* XXX: do we need to pass FUNC to this function? */
2665 static boolean
2666 insert_fprintf (struct format_val *vec,
2667 const struct parser_table *entry, PRED_FUNC func,
2668 const char *format_const)
2670 char *format = (char*)format_const; /* XXX: casting away constness */
2671 register char *scan; /* Current address in scanning `format'. */
2672 register char *scan2; /* Address inside of element being scanned. */
2673 struct segment **segmentp; /* Address of current segment. */
2674 struct predicate *our_pred;
2676 our_pred = insert_primary_withpred (entry, func);
2677 our_pred->side_effects = our_pred->no_default_print = true;
2678 our_pred->args.printf_vec = *vec;
2679 our_pred->need_type = false;
2680 our_pred->need_stat = false;
2681 our_pred->p_cost = NeedsNothing;
2683 segmentp = &our_pred->args.printf_vec.segment;
2684 *segmentp = NULL;
2686 for (scan = format; *scan; scan++)
2688 if (*scan == '\\')
2690 scan2 = scan + 1;
2691 if (*scan2 >= '0' && *scan2 <= '7')
2693 register int n, i;
2695 for (i = n = 0; i < 3 && (*scan2 >= '0' && *scan2 <= '7');
2696 i++, scan2++)
2697 n = 8 * n + *scan2 - '0';
2698 scan2--;
2699 *scan = n;
2701 else
2703 switch (*scan2)
2705 case 'a':
2706 *scan = 7;
2707 break;
2708 case 'b':
2709 *scan = '\b';
2710 break;
2711 case 'c':
2712 make_segment (segmentp, format, scan - format,
2713 KIND_STOP, 0, 0,
2714 our_pred);
2715 if (our_pred->need_stat && (our_pred->p_cost < NeedsStatInfo))
2716 our_pred->p_cost = NeedsStatInfo;
2717 return true;
2718 case 'f':
2719 *scan = '\f';
2720 break;
2721 case 'n':
2722 *scan = '\n';
2723 break;
2724 case 'r':
2725 *scan = '\r';
2726 break;
2727 case 't':
2728 *scan = '\t';
2729 break;
2730 case 'v':
2731 *scan = '\v';
2732 break;
2733 case '\\':
2734 /* *scan = '\\'; * it already is */
2735 break;
2736 default:
2737 error (0, 0,
2738 _("warning: unrecognized escape `\\%c'"), *scan2);
2739 scan++;
2740 continue;
2743 segmentp = make_segment (segmentp, format, scan - format + 1,
2744 KIND_PLAIN, 0, 0,
2745 our_pred);
2746 format = scan2 + 1; /* Move past the escape. */
2747 scan = scan2; /* Incremented immediately by `for'. */
2749 else if (*scan == '%')
2751 if (scan[1] == 0)
2753 /* Trailing %. We don't like those. */
2754 error (1, 0, _("error: %s at end of format string"), scan);
2756 else if (scan[1] == '%')
2758 segmentp = make_segment (segmentp, format, scan - format + 1,
2759 KIND_PLAIN, 0, 0,
2760 our_pred);
2761 scan++;
2762 format = scan + 1;
2763 continue;
2765 /* Scan past flags, width and precision, to verify kind. */
2766 for (scan2 = scan; *++scan2 && strchr ("-+ #", *scan2);)
2767 /* Do nothing. */ ;
2768 while (ISDIGIT (*scan2))
2769 scan2++;
2770 if (*scan2 == '.')
2771 for (scan2++; ISDIGIT (*scan2); scan2++)
2772 /* Do nothing. */ ;
2773 if (strchr ("abcdDfFgGhHiklmMnpPsStuUyY", *scan2))
2775 segmentp = make_segment (segmentp, format, scan2 - format,
2776 KIND_FORMAT, *scan2, 0,
2777 our_pred);
2778 scan = scan2;
2779 format = scan + 1;
2781 else if (strchr ("ABCT", *scan2) && scan2[1])
2783 segmentp = make_segment (segmentp, format, scan2 - format,
2784 KIND_FORMAT, scan2[0], scan2[1],
2785 our_pred);
2786 scan = scan2 + 1;
2787 format = scan + 1;
2788 continue;
2790 else
2792 /* An unrecognized % escape. Print the char after the %. */
2793 error (0, 0, _("warning: unrecognized format directive `%%%c'"),
2794 *scan2);
2795 segmentp = make_segment (segmentp, format, scan - format,
2796 KIND_PLAIN, 0, 0,
2797 our_pred);
2798 format = scan + 1;
2799 continue;
2804 if (scan > format)
2805 make_segment (segmentp, format, scan - format, KIND_PLAIN, 0, 0,
2806 our_pred);
2807 return true;
2810 /* Create a new fprintf segment in *SEGMENT, with type KIND,
2811 from the text in FORMAT, which has length LEN.
2812 Return the address of the `next' pointer of the new segment. */
2814 static struct segment **
2815 make_segment (struct segment **segment,
2816 char *format,
2817 int len,
2818 int kind,
2819 char format_char,
2820 char aux_format_char,
2821 struct predicate *pred)
2823 enum EvaluationCost mycost = NeedsNothing;
2824 char *fmt;
2826 *segment = xmalloc (sizeof (struct segment));
2828 (*segment)->segkind = kind;
2829 (*segment)->format_char[0] = format_char;
2830 (*segment)->format_char[1] = aux_format_char;
2831 (*segment)->next = NULL;
2832 (*segment)->text_len = len;
2834 fmt = (*segment)->text = xmalloc (len + sizeof "d");
2835 strncpy (fmt, format, len);
2836 fmt += len;
2838 switch (kind)
2840 case KIND_PLAIN: /* Plain text string, no % conversion. */
2841 case KIND_STOP: /* Terminate argument, no newline. */
2842 assert (0 == format_char);
2843 assert (0 == aux_format_char);
2844 *fmt = '\0';
2845 if (mycost > pred->p_cost)
2846 pred->p_cost = NeedsNothing;
2847 return &(*segment)->next;
2848 break;
2851 assert (kind == KIND_FORMAT);
2852 switch (format_char)
2854 case 'l': /* object of symlink */
2855 pred->need_stat = true;
2856 mycost = NeedsLinkName;
2857 *fmt++ = 's';
2858 break;
2860 case 'y': /* file type */
2861 pred->need_type = true;
2862 mycost = NeedsType;
2863 *fmt++ = 's';
2864 break;
2866 case 'a': /* atime in `ctime' format */
2867 case 'A': /* atime in user-specified strftime format */
2868 case 'B': /* birth time in user-specified strftime format */
2869 case 'c': /* ctime in `ctime' format */
2870 case 'C': /* ctime in user-specified strftime format */
2871 case 'F': /* file system type */
2872 case 'g': /* group name */
2873 case 'i': /* inode number */
2874 case 'M': /* mode in `ls -l' format (eg., "drwxr-xr-x") */
2875 case 's': /* size in bytes */
2876 case 't': /* mtime in `ctime' format */
2877 case 'T': /* mtime in user-specified strftime format */
2878 case 'u': /* user name */
2879 pred->need_stat = true;
2880 mycost = NeedsStatInfo;
2881 *fmt++ = 's';
2882 break;
2884 case 'S': /* sparseness */
2885 pred->need_stat = true;
2886 mycost = NeedsStatInfo;
2887 *fmt++ = 'g';
2888 break;
2890 case 'Y': /* symlink pointed file type */
2891 pred->need_stat = true;
2892 mycost = NeedsType; /* true for amortised effect */
2893 *fmt++ = 's';
2894 break;
2896 case 'f': /* basename of path */
2897 case 'h': /* leading directories part of path */
2898 case 'p': /* pathname */
2899 case 'P': /* pathname with ARGV element stripped */
2900 *fmt++ = 's';
2901 break;
2903 case 'H': /* ARGV element file was found under */
2904 *fmt++ = 's';
2905 break;
2907 /* Numeric items that one might expect to honour
2908 * #, 0, + flags but which do not.
2910 case 'G': /* GID number */
2911 case 'U': /* UID number */
2912 case 'b': /* size in 512-byte blocks (NOT birthtime in ctime fmt)*/
2913 case 'D': /* Filesystem device on which the file exits */
2914 case 'k': /* size in 1K blocks */
2915 case 'n': /* number of links */
2916 pred->need_stat = true;
2917 mycost = NeedsStatInfo;
2918 *fmt++ = 's';
2919 break;
2921 /* Numeric items that DO honour #, 0, + flags.
2923 case 'd': /* depth in search tree (0 = ARGV element) */
2924 *fmt++ = 'd';
2925 break;
2927 case 'm': /* mode as octal number (perms only) */
2928 *fmt++ = 'o';
2929 pred->need_stat = true;
2930 mycost = NeedsStatInfo;
2931 break;
2933 case '{':
2934 case '[':
2935 case '(':
2936 error (1, 0,
2937 _("error: the format directive `%%%c' is reserved for future use"),
2938 (int)kind);
2939 /*NOTREACHED*/
2940 break;
2942 *fmt = '\0';
2944 if (mycost > pred->p_cost)
2945 pred->p_cost = mycost;
2946 return &(*segment)->next;
2949 static void
2950 check_path_safety(const char *action, char **argv)
2952 char *s;
2953 const char *path = getenv("PATH");
2954 if (NULL == path)
2956 /* $PATH is not set. Assume the OS default is safe.
2957 * That may not be true on Windows, but I'm not aware
2958 * of a way to get Windows to avoid searching the
2959 * current directory anyway.
2961 return;
2964 (void)argv;
2966 s = next_element(path, 1);
2967 while ((s = next_element ((char *) NULL, 1)) != NULL)
2969 if (0 == strcmp(s, "."))
2971 error(1, 0, _("The current directory is included in the PATH "
2972 "environment variable, which is insecure in "
2973 "combination with the %s action of find. "
2974 "Please remove the current directory from your "
2975 "$PATH (that is, remove \".\" or leading or trailing "
2976 "colons)"),
2977 action);
2979 else if ('/' != s[0])
2981 /* Relative paths are also dangerous in $PATH. */
2982 error(1, 0, _("The relative path %s is included in the PATH "
2983 "environment variable, which is insecure in "
2984 "combination with the %s action of find. "
2985 "Please remove that entry from $PATH"),
2986 safely_quote_err_filename(0, s),
2987 action);
2993 /* handles both exec and ok predicate */
2994 static boolean
2995 new_insert_exec_ok (const char *action,
2996 const struct parser_table *entry,
2997 int dirfd,
2998 char **argv,
2999 int *arg_ptr)
3001 int start, end; /* Indexes in ARGV of start & end of cmd. */
3002 int i; /* Index into cmd args */
3003 int saw_braces; /* True if previous arg was '{}'. */
3004 boolean allow_plus; /* True if + is a valid terminator */
3005 int brace_count; /* Number of instances of {}. */
3006 PRED_FUNC func = entry->pred_func;
3007 enum BC_INIT_STATUS bcstatus;
3009 struct predicate *our_pred;
3010 struct exec_val *execp; /* Pointer for efficiency. */
3012 if ((argv == NULL) || (argv[*arg_ptr] == NULL))
3013 return false;
3015 our_pred = insert_primary_withpred (entry, func);
3016 our_pred->side_effects = our_pred->no_default_print = true;
3017 our_pred->need_type = our_pred->need_stat = false;
3019 execp = &our_pred->args.exec_vec;
3021 if ((func != pred_okdir) && (func != pred_ok))
3023 allow_plus = true;
3024 execp->close_stdin = false;
3026 else
3028 allow_plus = false;
3029 /* If find reads stdin (i.e. for -ok and similar), close stdin
3030 * in the child to prevent some script from consiming the output
3031 * intended for find.
3033 execp->close_stdin = true;
3037 if ((func == pred_execdir) || (func == pred_okdir))
3039 options.ignore_readdir_race = false;
3040 check_path_safety(action, argv);
3041 execp->use_current_dir = true;
3043 else
3045 execp->use_current_dir = false;
3048 our_pred->args.exec_vec.multiple = 0;
3050 /* Count the number of args with path replacements, up until the ';'.
3051 * Also figure out if the command is terminated by ";" or by "+".
3053 start = *arg_ptr;
3054 for (end = start, saw_braces=0, brace_count=0;
3055 (argv[end] != NULL)
3056 && ((argv[end][0] != ';') || (argv[end][1] != '\0'));
3057 end++)
3059 /* For -exec and -execdir, "{} +" can terminate the command. */
3060 if ( allow_plus
3061 && argv[end][0] == '+' && argv[end][1] == 0
3062 && saw_braces)
3064 our_pred->args.exec_vec.multiple = 1;
3065 break;
3068 saw_braces = 0;
3069 if (mbsstr (argv[end], "{}"))
3071 saw_braces = 1;
3072 ++brace_count;
3074 if (0 == end && (func == pred_execdir || func == pred_okdir))
3076 /* The POSIX standard says that {} replacement should
3077 * occur even in the utility name. This is insecure
3078 * since it means we will be executing a command whose
3079 * name is chosen according to whatever find finds in
3080 * the file system. That can be influenced by an
3081 * attacker. Hence for -execdir and -okdir this is not
3082 * allowed. We can specify this as those options are
3083 * not defined by POSIX.
3085 error(1, 0, _("You may not use {} within the utility name for "
3086 "-execdir and -okdir, because this is a potential "
3087 "security problem."));
3092 /* Fail if no command given or no semicolon found. */
3093 if ((end == start) || (argv[end] == NULL))
3095 *arg_ptr = end;
3096 free(our_pred);
3097 return false;
3100 if (our_pred->args.exec_vec.multiple && brace_count > 1)
3103 const char *suffix;
3104 if (func == pred_execdir)
3105 suffix = "dir";
3106 else
3107 suffix = "";
3109 error(1, 0,
3110 _("Only one instance of {} is supported with -exec%s ... +"),
3111 suffix);
3114 /* We use a switch statement here so that the compiler warns us when
3115 * we forget to handle a newly invented enum value.
3117 * Like xargs, we allow 2KiB of headroom for the launched utility to
3118 * export its own environment variables before calling something
3119 * else.
3121 bcstatus = bc_init_controlinfo(&execp->ctl, 2048u);
3122 switch (bcstatus)
3124 case BC_INIT_ENV_TOO_BIG:
3125 case BC_INIT_CANNOT_ACCOMODATE_HEADROOM:
3126 error(1, 0,
3127 _("The environment is too large for exec()."));
3128 break;
3129 case BC_INIT_OK:
3130 /* Good news. Carry on. */
3131 break;
3133 bc_use_sensible_arg_max(&execp->ctl);
3136 execp->ctl.exec_callback = launch;
3138 if (our_pred->args.exec_vec.multiple)
3140 /* "+" terminator, so we can just append our arguments after the
3141 * command and initial arguments.
3143 execp->replace_vec = NULL;
3144 execp->ctl.replace_pat = NULL;
3145 execp->ctl.rplen = 0;
3146 execp->ctl.lines_per_exec = 0; /* no limit */
3147 execp->ctl.args_per_exec = 0; /* no limit */
3149 /* remember how many arguments there are */
3150 execp->ctl.initial_argc = (end-start) - 1;
3152 /* execp->state = xmalloc(sizeof struct buildcmd_state); */
3153 bc_init_state(&execp->ctl, &execp->state, execp);
3155 /* Gather the initial arguments. Skip the {}. */
3156 for (i=start; i<end-1; ++i)
3158 bc_push_arg(&execp->ctl, &execp->state,
3159 argv[i], strlen(argv[i])+1,
3160 NULL, 0,
3164 else
3166 /* Semicolon terminator - more than one {} is supported, so we
3167 * have to do brace-replacement.
3169 execp->num_args = end - start;
3171 execp->ctl.replace_pat = "{}";
3172 execp->ctl.rplen = strlen(execp->ctl.replace_pat);
3173 execp->ctl.lines_per_exec = 0; /* no limit */
3174 execp->ctl.args_per_exec = 0; /* no limit */
3175 execp->replace_vec = xmalloc(sizeof(char*)*execp->num_args);
3178 /* execp->state = xmalloc(sizeof(*(execp->state))); */
3179 bc_init_state(&execp->ctl, &execp->state, execp);
3181 /* Remember the (pre-replacement) arguments for later. */
3182 for (i=0; i<execp->num_args; ++i)
3184 execp->replace_vec[i] = argv[i+start];
3188 if (argv[end] == NULL)
3189 *arg_ptr = end;
3190 else
3191 *arg_ptr = end + 1;
3193 return true;
3198 static boolean
3199 insert_exec_ok (const char *action,
3200 const struct parser_table *entry,
3201 int dirfd,
3202 char **argv,
3203 int *arg_ptr)
3205 return new_insert_exec_ok(action, entry, dirfd, argv, arg_ptr);
3210 /* Get a timestamp and comparison type.
3212 STR is the ASCII representation.
3213 Set *NUM_DAYS to the number of days/minutes/whatever, taken as being
3214 relative to ORIGIN (usually the current moment or midnight).
3215 Thus the sense of the comparison type appears to be reversed.
3216 Set *COMP_TYPE to the kind of comparison that is requested.
3217 Issue OVERFLOWMESSAGE if overflow occurs.
3218 Return true if all okay, false if input error.
3220 Used by -atime, -ctime and -mtime (parsers) to
3221 get the appropriate information for a time predicate processor. */
3223 static boolean
3224 get_relative_timestamp (const char *str,
3225 struct time_val *result,
3226 time_t origin,
3227 double sec_per_unit,
3228 const char *overflowmessage)
3230 uintmax_t checkval;
3231 double offset, seconds, f;
3233 if (get_comp_type(&str, &result->kind))
3235 /* Invert the sense of the comparison */
3236 switch (result->kind)
3238 case COMP_LT: result->kind = COMP_GT; break;
3239 case COMP_GT: result->kind = COMP_LT; break;
3240 default: break;
3243 /* Convert the ASCII number into floating-point. */
3244 if (xstrtod(str, NULL, &offset, strtod))
3246 /* Separate the floating point number the user specified
3247 * (which is a number of days, or minutes, etc) into an
3248 * integral number of seconds (SECONDS) and a fraction (F).
3250 f = modf(offset * sec_per_unit, &seconds);
3252 result->ts.tv_sec = origin - seconds;
3253 result->ts.tv_nsec = fabs(f * 1e9);
3255 /* Check for overflow. */
3256 checkval = (uintmax_t)origin - seconds;
3257 if (checkval != result->ts.tv_sec)
3259 /* an overflow has occurred. */
3260 error (1, 0, overflowmessage, str);
3262 return true;
3264 else
3266 /* Conversion from ASCII to double failed. */
3267 return false;
3270 else
3272 return false;
3276 /* Insert a time predicate based on the information in ENTRY.
3277 ARGV is a pointer to the argument array.
3278 ARG_PTR is a pointer to an index into the array, incremented if
3279 all went well.
3281 Return true if input is valid, false if not.
3283 A new predicate node is assigned, along with an argument node
3284 obtained with malloc.
3286 Used by -atime, -ctime, and -mtime parsers. */
3288 static boolean
3289 parse_time (const struct parser_table* entry, char *argv[], int *arg_ptr)
3291 struct predicate *our_pred;
3292 struct time_val tval;
3293 enum comparison_type comp;
3294 const char *timearg, *orig_timearg;
3295 const char *errmsg = "arithmetic overflow while converting %s "
3296 "days to a number of seconds";
3297 time_t origin;
3299 if (!collect_arg(argv, arg_ptr, &timearg))
3300 return false;
3301 orig_timearg = timearg;
3303 /* Decide the origin by previewing the comparison type. */
3304 origin = options.cur_day_start;
3306 if (get_comp_type(&timearg, &comp))
3308 /* Remember, we invert the sense of the comparison, so this tests
3309 * against COMP_LT instead of COMP_GT...
3311 if (COMP_LT == comp)
3313 uintmax_t expected = origin + (DAYSECS-1);
3314 origin += (DAYSECS-1);
3315 if (origin != expected)
3317 error(1, 0,
3318 _("arithmetic overflow when trying to calculate the end of today"));
3322 /* We discard the value of comp here, as get_relative_timestamp
3323 * will set tval.kind. For that to work, we have to restore
3324 * timearg so that it points to the +/- prefix, if any. get_comp_type()
3325 * will have advanced timearg, so we restore it.
3327 timearg = orig_timearg;
3329 if (!get_relative_timestamp(timearg, &tval, origin, DAYSECS, errmsg))
3330 return false;
3332 our_pred = insert_primary (entry);
3333 our_pred->args.reftime = tval;
3334 our_pred->est_success_rate = estimate_timestamp_success_rate(tval.ts.tv_sec);
3336 if (options.debug_options & DebugExpressionTree)
3338 time_t t;
3340 fprintf (stderr, "inserting %s\n", our_pred->p_name);
3341 fprintf (stderr, " type: %s %s ",
3342 (tval.kind == COMP_GT) ? "gt" :
3343 ((tval.kind == COMP_LT) ? "lt" : ((tval.kind == COMP_EQ) ? "eq" : "?")),
3344 (tval.kind == COMP_GT) ? " >" :
3345 ((tval.kind == COMP_LT) ? " <" : ((tval.kind == COMP_EQ) ? ">=" : " ?")));
3346 t = our_pred->args.reftime.ts.tv_sec;
3347 fprintf (stderr, "%ju %s",
3348 (uintmax_t) our_pred->args.reftime.ts.tv_sec,
3349 ctime (&t));
3350 if (tval.kind == COMP_EQ)
3352 t = our_pred->args.reftime.ts.tv_sec + DAYSECS;
3353 fprintf (stderr, " < %ju %s",
3354 (uintmax_t) t, ctime (&t));
3358 return true;
3361 /* Get the comparison type prefix (if any) from a number argument.
3362 The prefix is at *STR.
3363 Set *COMP_TYPE to the kind of comparison that is requested.
3364 Advance *STR beyond any initial comparison prefix.
3366 Return true if all okay, false if input error. */
3367 static boolean
3368 get_comp_type(const char **str, enum comparison_type *comp_type)
3370 switch (**str)
3372 case '+':
3373 *comp_type = COMP_GT;
3374 (*str)++;
3375 break;
3376 case '-':
3377 *comp_type = COMP_LT;
3378 (*str)++;
3379 break;
3380 default:
3381 *comp_type = COMP_EQ;
3382 break;
3384 return true;
3391 /* Get a number with comparison information.
3392 The sense of the comparison information is 'normal'; that is,
3393 '+' looks for a count > than the number and '-' less than.
3395 STR is the ASCII representation of the number.
3396 Set *NUM to the number.
3397 Set *COMP_TYPE to the kind of comparison that is requested.
3399 Return true if all okay, false if input error. */
3401 static boolean
3402 get_num (const char *str,
3403 uintmax_t *num,
3404 enum comparison_type *comp_type)
3406 char *pend;
3408 if (str == NULL)
3409 return false;
3411 /* Figure out the comparison type if the caller accepts one. */
3412 if (comp_type)
3414 if (!get_comp_type(&str, comp_type))
3415 return false;
3418 return xstrtoumax (str, &pend, 10, num, "") == LONGINT_OK;
3421 /* Insert a number predicate.
3422 ARGV is a pointer to the argument array.
3423 *ARG_PTR is an index into ARGV, incremented if all went well.
3424 *PRED is the predicate processor to insert.
3426 Return true if input is valid, false if error.
3428 A new predicate node is assigned, along with an argument node
3429 obtained with malloc.
3431 Used by -inum and -links parsers. */
3433 static struct predicate *
3434 insert_num (char **argv, int *arg_ptr, const struct parser_table *entry)
3436 const char *numstr;
3438 if (collect_arg(argv, arg_ptr, &numstr))
3440 uintmax_t num;
3441 enum comparison_type c_type;
3443 if (get_num (numstr, &num, &c_type))
3445 struct predicate *our_pred = insert_primary (entry);
3446 our_pred->args.numinfo.kind = c_type;
3447 our_pred->args.numinfo.l_val = num;
3449 if (options.debug_options & DebugExpressionTree)
3451 fprintf (stderr, "inserting %s\n", our_pred->p_name);
3452 fprintf (stderr, " type: %s %s ",
3453 (c_type == COMP_GT) ? "gt" :
3454 ((c_type == COMP_LT) ? "lt" : ((c_type == COMP_EQ) ? "eq" : "?")),
3455 (c_type == COMP_GT) ? " >" :
3456 ((c_type == COMP_LT) ? " <" : ((c_type == COMP_EQ) ? " =" : " ?")));
3457 fprintf (stderr, "%ju\n", our_pred->args.numinfo.l_val);
3459 return our_pred;
3462 return NULL;
3465 static void
3466 open_output_file (const char *path, struct format_val *p)
3468 p->segment = NULL;
3469 p->quote_opts = clone_quoting_options (NULL);
3471 if (!strcmp (path, "/dev/stderr"))
3473 p->stream = stderr;
3474 p->filename = _("standard error");
3476 else if (!strcmp (path, "/dev/stdout"))
3478 p->stream = stdout;
3479 p->filename = _("standard output");
3481 else
3483 p->stream = fopen_safer (path, "w");
3484 p->filename = path;
3486 if (p->stream == NULL)
3488 fatal_file_error(path);
3492 p->dest_is_tty = stream_is_tty(p->stream);
3495 static void
3496 open_stdout (struct format_val *p)
3498 open_output_file("/dev/stdout", p);