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 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 2, or (at your option)
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, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
30 #include "modechange.h"
38 #include "stdio-safer.h"
39 #include "regextype.h"
40 #include "stat-time.h"
45 #include "gnulib-version.h"
53 /* The presence of unistd.h is assumed by gnulib these days, so we
54 * might as well assume it too.
56 /* We need <unistd.h> for isatty(). */
61 # define _(Text) gettext (Text)
66 # define N_(String) gettext_noop (String)
68 /* See locate.c for explanation as to why not use (String) */
69 # define N_(String) String
72 #if !defined (isascii) || defined (STDC_HEADERS)
79 #define ISDIGIT(c) (isascii ((unsigned char)c) && isdigit ((unsigned char)c))
80 #define ISUPPER(c) (isascii ((unsigned char)c) && isupper ((unsigned char)c))
89 static boolean parse_accesscheck
PARAMS((const struct parser_table
* entry
, char **argv
, int *arg_ptr
));
90 static boolean parse_amin
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
91 static boolean parse_and
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
92 static boolean parse_anewer
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
93 static boolean parse_cmin
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
94 static boolean parse_cnewer
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
95 static boolean parse_comma
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
96 static boolean parse_daystart
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
97 static boolean parse_delete
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
98 static boolean parse_d
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
99 static boolean parse_depth
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
100 static boolean parse_empty
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
101 static boolean parse_exec
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
102 static boolean parse_execdir
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
103 static boolean parse_false
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
104 static boolean parse_fls
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
105 static boolean parse_fprintf
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
106 static boolean parse_follow
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
107 static boolean parse_fprint
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
108 static boolean parse_fprint0
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
109 static boolean parse_fstype
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
110 static boolean parse_gid
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
111 static boolean parse_group
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
112 static boolean parse_help
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
113 static boolean parse_ilname
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
114 static boolean parse_iname
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
115 static boolean parse_inum
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
116 static boolean parse_ipath
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
117 static boolean parse_iregex
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
118 static boolean parse_iwholename
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
119 static boolean parse_links
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
120 static boolean parse_lname
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
121 static boolean parse_ls
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
122 static boolean parse_maxdepth
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
123 static boolean parse_mindepth
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
124 static boolean parse_mmin
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
125 static boolean parse_name
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
126 static boolean parse_negate
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
127 static boolean parse_newer
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
128 static boolean parse_newerXY
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
129 static boolean parse_noleaf
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
130 static boolean parse_nogroup
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
131 static boolean parse_nouser
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
132 static boolean parse_nowarn
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
133 static boolean parse_ok
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
134 static boolean parse_okdir
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
135 static boolean parse_or
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
136 static boolean parse_path
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
137 static boolean parse_perm
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
138 static boolean parse_print0
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
139 static boolean parse_printf
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
140 static boolean parse_prune
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
141 static boolean parse_regex
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
142 static boolean parse_regextype
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
143 static boolean parse_samefile
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
145 static boolean parse_show_control_chars
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
147 static boolean parse_size
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
148 static boolean parse_time
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
149 static boolean parse_true
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
150 static boolean parse_type
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
151 static boolean parse_uid
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
152 static boolean parse_used
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
153 static boolean parse_user
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
154 static boolean parse_version
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
155 static boolean parse_wholename
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
156 static boolean parse_xdev
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
157 static boolean parse_ignore_race
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
158 static boolean parse_noignore_race
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
159 static boolean parse_warn
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
160 static boolean parse_xtype
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
161 static boolean parse_quit
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
163 boolean parse_print
PARAMS((const struct parser_table
*, char *argv
[], int *arg_ptr
));
166 static boolean insert_type
PARAMS((char **argv
, int *arg_ptr
, const struct parser_table
*entry
, PRED_FUNC which_pred
));
167 static boolean insert_regex
PARAMS((char *argv
[], int *arg_ptr
, const struct parser_table
*entry
, int regex_options
));
168 static boolean
insert_fprintf (struct format_val
*vec
,
169 const struct parser_table
*entry
,
173 static struct segment
**make_segment
PARAMS((struct segment
**segment
, char *format
, int len
,
174 int kind
, char format_char
, char aux_format_char
,
175 struct predicate
*pred
));
176 static boolean insert_exec_ok
PARAMS((const char *action
, const struct parser_table
*entry
, int dirfd
, char *argv
[], int *arg_ptr
));
177 static boolean get_comp_type
PARAMS((const char **str
, enum comparison_type
*comp_type
));
178 static boolean get_relative_timestamp
PARAMS((const char *str
, struct time_val
*tval
, time_t origin
, double sec_per_unit
, const char *overflowmessage
));
179 static boolean get_num
PARAMS((const char *str
, uintmax_t *num
, enum comparison_type
*comp_type
));
180 static struct predicate
* insert_num
PARAMS((char *argv
[], int *arg_ptr
, const struct parser_table
*entry
));
181 static void open_output_file (const char *path
, struct format_val
*p
);
182 static void open_stdout (struct format_val
*p
);
183 static boolean
stream_is_tty(FILE *fp
);
184 static boolean parse_noop
PARAMS((const struct parser_table
* entry
, char **argv
, int *arg_ptr
));
186 #define PASTE(x,y) x##y
187 #define STRINGIFY(s) #s
189 #define PARSE_OPTION(what,suffix) \
190 { (ARG_OPTION), (what), PASTE(parse_,suffix), NULL }
192 #define PARSE_POSOPT(what,suffix) \
193 { (ARG_POSITIONAL_OPTION), (what), PASTE(parse_,suffix), NULL }
195 #define PARSE_TEST(what,suffix) \
196 { (ARG_TEST), (what), PASTE(parse_,suffix), PASTE(pred_,suffix) }
198 #define PARSE_TEST_NP(what,suffix) \
199 { (ARG_TEST), (what), PASTE(parse_,suffix), NULL }
201 #define PARSE_ACTION(what,suffix) \
202 { (ARG_ACTION), (what), PASTE(parse_,suffix), PASTE(pred_,suffix) }
204 #define PARSE_ACTION_NP(what,suffix) \
205 { (ARG_ACTION), (what), PASTE(parse_,suffix), NULL }
207 #define PARSE_PUNCTUATION(what,suffix) \
208 { (ARG_PUNCTUATION), (what), PASTE(parse_,suffix), PASTE(pred_,suffix) }
211 /* Predicates we cannot handle in the usual way. If you add an entry
212 * to this table, double-check the switch statement in
213 * pred_sanity_check() to make sure that the new case is being
216 static struct parser_table
const parse_entry_newerXY
=
218 ARG_SPECIAL_PARSE
, "newerXY", parse_newerXY
, pred_newerXY
/* BSD */
221 /* GNU find predicates that are not mentioned in POSIX.2 are marked `GNU'.
222 If they are in some Unix versions of find, they are marked `Unix'. */
224 static struct parser_table
const parse_table
[] =
226 PARSE_PUNCTUATION("!", negate
),
227 PARSE_PUNCTUATION("not", negate
), /* GNU */
228 PARSE_PUNCTUATION("(", openparen
),
229 PARSE_PUNCTUATION(")", closeparen
),
230 PARSE_PUNCTUATION(",", comma
), /* GNU */
231 PARSE_PUNCTUATION("a", and),
232 PARSE_TEST ("amin", amin
), /* GNU */
233 PARSE_PUNCTUATION("and", and), /* GNU */
234 PARSE_TEST ("anewer", anewer
), /* GNU */
235 {ARG_TEST
, "atime", parse_time
, pred_atime
},
236 PARSE_TEST ("cmin", cmin
), /* GNU */
237 PARSE_TEST ("cnewer", cnewer
), /* GNU */
238 {ARG_TEST
, "ctime", parse_time
, pred_ctime
},
239 PARSE_POSOPT ("daystart", daystart
), /* GNU */
240 PARSE_ACTION ("delete", delete), /* GNU, Mac OS, FreeBSD */
241 PARSE_OPTION ("d", d
), /* Mac OS X, FreeBSD, NetBSD, OpenBSD, but deprecated in favour of -depth */
242 PARSE_OPTION ("depth", depth
),
243 PARSE_TEST ("empty", empty
), /* GNU */
244 {ARG_ACTION
, "exec", parse_exec
, pred_exec
}, /* POSIX */
245 {ARG_TEST
, "executable", parse_accesscheck
, pred_executable
}, /* GNU, 4.3.0+ */
246 PARSE_ACTION ("execdir", execdir
), /* *BSD, GNU */
247 PARSE_ACTION ("fls", fls
), /* GNU */
248 PARSE_POSOPT ("follow", follow
), /* GNU, Unix */
249 PARSE_ACTION ("fprint", fprint
), /* GNU */
250 PARSE_ACTION ("fprint0", fprint0
), /* GNU */
251 {ARG_ACTION
, "fprintf", parse_fprintf
, pred_fprintf
}, /* GNU */
252 PARSE_TEST ("fstype", fstype
), /* GNU, Unix */
253 PARSE_TEST ("gid", gid
), /* GNU */
254 PARSE_TEST ("group", group
),
255 PARSE_OPTION ("ignore_readdir_race", ignore_race
), /* GNU */
256 PARSE_TEST ("ilname", ilname
), /* GNU */
257 PARSE_TEST ("iname", iname
), /* GNU */
258 PARSE_TEST ("inum", inum
), /* GNU, Unix */
259 PARSE_TEST ("ipath", ipath
), /* GNU, deprecated in favour of iwholename */
260 PARSE_TEST_NP ("iregex", iregex
), /* GNU */
261 PARSE_TEST_NP ("iwholename", iwholename
), /* GNU */
262 PARSE_TEST ("links", links
),
263 PARSE_TEST ("lname", lname
), /* GNU */
264 PARSE_ACTION ("ls", ls
), /* GNU, Unix */
265 PARSE_OPTION ("maxdepth", maxdepth
), /* GNU */
266 PARSE_OPTION ("mindepth", mindepth
), /* GNU */
267 PARSE_TEST ("mmin", mmin
), /* GNU */
268 PARSE_OPTION ("mount", xdev
), /* Unix */
269 {ARG_TEST
, "mtime", parse_time
, pred_mtime
},
270 PARSE_TEST ("name", name
),
271 #ifdef UNIMPLEMENTED_UNIX
272 PARSE(ARG_UNIMPLEMENTED
, "ncpio", ncpio
), /* Unix */
274 PARSE_TEST ("newer", newer
),
275 {ARG_TEST
, "atime", parse_time
, pred_atime
},
276 PARSE_OPTION ("noleaf", noleaf
), /* GNU */
277 PARSE_TEST ("nogroup", nogroup
),
278 PARSE_TEST ("nouser", nouser
),
279 PARSE_OPTION ("noignore_readdir_race", noignore_race
), /* GNU */
280 PARSE_POSOPT ("nowarn", nowarn
), /* GNU */
281 PARSE_PUNCTUATION("o", or),
282 PARSE_PUNCTUATION("or", or), /* GNU */
283 PARSE_ACTION ("ok", ok
),
284 PARSE_ACTION ("okdir", okdir
), /* GNU (-execdir is BSD) */
285 PARSE_TEST ("path", path
), /* GNU, HP-UX, GNU prefers wholename */
286 PARSE_TEST ("perm", perm
),
287 PARSE_ACTION ("print", print
),
288 PARSE_ACTION ("print0", print0
), /* GNU */
289 {ARG_ACTION
, "printf", parse_printf
, NULL
}, /* GNU */
290 PARSE_ACTION ("prune", prune
),
291 PARSE_ACTION ("quit", quit
), /* GNU */
292 {ARG_TEST
, "readable", parse_accesscheck
, pred_readable
}, /* GNU, 4.3.0+ */
293 PARSE_TEST ("regex", regex
), /* GNU */
294 PARSE_OPTION ("regextype", regextype
), /* GNU */
295 PARSE_TEST ("samefile", samefile
), /* GNU */
297 PARSE_OPTION ("show-control-chars", show_control_chars
), /* GNU, 4.3.0+ */
299 PARSE_TEST ("size", size
),
300 PARSE_TEST ("type", type
),
301 PARSE_TEST ("uid", uid
), /* GNU */
302 PARSE_TEST ("used", used
), /* GNU */
303 PARSE_TEST ("user", user
),
304 PARSE_OPTION ("warn", warn
), /* GNU */
305 PARSE_TEST_NP ("wholename", wholename
), /* GNU, replaces -path */
306 {ARG_TEST
, "writable", parse_accesscheck
, pred_writable
}, /* GNU, 4.3.0+ */
307 PARSE_OPTION ("xdev", xdev
),
308 PARSE_TEST ("xtype", xtype
), /* GNU */
309 #ifdef UNIMPLEMENTED_UNIX
310 /* It's pretty ugly for find to know about archive formats.
311 Plus what it could do with cpio archives is very limited.
312 Better to leave it out. */
313 PARSE(ARG_UNIMPLEMENTED
, "cpio", cpio
), /* Unix */
315 /* gnulib's stdbool.h might have made true and false into macros,
316 * so we can't leave named 'true' and 'false' tokens, so we have
317 * to expeant the relevant entries longhand.
319 {ARG_TEST
, "false", parse_false
, pred_false
}, /* GNU */
320 {ARG_TEST
, "true", parse_true
, pred_true
}, /* GNU */
321 {ARG_NOOP
, "noop", NULL
, pred_true
}, /* GNU, internal use only */
323 /* Various other cases that don't fit neatly into our macro scheme. */
324 {ARG_TEST
, "help", parse_help
, NULL
}, /* GNU */
325 {ARG_TEST
, "-help", parse_help
, NULL
}, /* GNU */
326 {ARG_TEST
, "version", parse_version
, NULL
}, /* GNU */
327 {ARG_TEST
, "-version", parse_version
, NULL
}, /* GNU */
332 static const char *first_nonoption_arg
= NULL
;
333 static const struct parser_table
*noop
= NULL
;
336 static const struct parser_table
*
342 for (i
= 0; parse_table
[i
].parser_name
!= 0; i
++)
344 if (ARG_NOOP
==parse_table
[i
].type
)
346 noop
= &(parse_table
[i
]);
355 get_stat_Ytime(const struct stat
*p
,
357 struct timespec
*ret
)
362 *ret
= get_stat_atime(p
);
365 *ret
= get_stat_birthtime(p
);
366 return (ret
->tv_nsec
>= 0);
368 *ret
= get_stat_ctime(p
);
371 *ret
= get_stat_mtime(p
);
381 set_follow_state(enum SymlinkOption opt
)
383 if (options
.debug_options
& DebugStat
)
385 /* For DebugStat, the choice is made at runtime within debug_stat()
386 * by checking the contents of the symlink_handling variable.
388 options
.xstat
= debug_stat
;
394 case SYMLINK_ALWAYS_DEREF
: /* -L */
395 options
.xstat
= optionl_stat
;
396 options
.no_leaf_check
= true;
399 case SYMLINK_NEVER_DEREF
: /* -P (default) */
400 options
.xstat
= optionp_stat
;
401 /* Can't turn no_leaf_check off because the user might have specified
406 case SYMLINK_DEREF_ARGSONLY
: /* -H */
407 options
.xstat
= optionh_stat
;
408 options
.no_leaf_check
= true;
411 options
.symlink_handling
= opt
;
416 parse_begin_user_args (char **args
, int argno
, const struct predicate
*last
, const struct predicate
*predicates
)
422 first_nonoption_arg
= NULL
;
426 parse_end_user_args (char **args
, int argno
, const struct predicate
*last
, const struct predicate
*predicates
)
436 /* Check that it is legal to fid the given primary in its
437 * position and return it.
439 const struct parser_table
*
440 found_parser(const char *original_arg
, const struct parser_table
*entry
)
442 /* If this is an option, but we have already had a
443 * non-option argument, the user may be under the
444 * impression that the behaviour of the option
445 * argument is conditional on some preceding
446 * tests. This might typically be the case with,
447 * for example, -maxdepth.
449 * The options -daystart and -follow are exempt
450 * from this treatment, since their positioning
451 * in the command line does have an effect on
452 * subsequent tests but not previous ones. That
453 * might be intentional on the part of the user.
455 if (entry
->type
!= ARG_POSITIONAL_OPTION
)
457 /* Something other than -follow/-daystart.
458 * If this is an option, check if it followed
459 * a non-option and if so, issue a warning.
461 if (entry
->type
== ARG_OPTION
)
463 if ((first_nonoption_arg
!= NULL
)
464 && options
.warnings
)
466 /* option which follows a non-option */
468 _("warning: you have specified the %s "
469 "option after a non-option argument %s, "
470 "but options are not positional (%s affects "
471 "tests specified before it as well as those "
472 "specified after it). Please specify options "
473 "before other arguments.\n"),
481 /* Not an option or a positional option,
482 * so remember we've seen it in order to
483 * use it in a possible future warning message.
485 if (first_nonoption_arg
== NULL
)
487 first_nonoption_arg
= original_arg
;
496 /* Return a pointer to the parser function to invoke for predicate
498 Return NULL if SEARCH_NAME is not a valid predicate name. */
500 const struct parser_table
*
501 find_parser (char *search_name
)
504 const char *original_arg
= search_name
;
506 /* Ugh. Special case -newerXY. */
507 if (0 == strncmp("-newer", search_name
, 6)
508 && (8 == strlen(search_name
)))
510 return found_parser(original_arg
, &parse_entry_newerXY
);
513 if (*search_name
== '-')
516 for (i
= 0; parse_table
[i
].parser_name
!= 0; i
++)
518 if (strcmp (parse_table
[i
].parser_name
, search_name
) == 0)
520 return found_parser(original_arg
, &parse_table
[i
]);
527 estimate_file_age_success_rate(float num_days
)
531 /* Assume 1% of files have timestamps in the future */
534 else if (num_days
< 1)
536 /* Assume 30% of files have timestamps today */
539 else if (num_days
> 100)
541 /* Assume 30% of files are very old */
546 /* Assume 39% of files are between 1 and 100 days old. */
552 estimate_timestamp_success_rate(time_t when
)
554 int num_days
= (options
.cur_day_start
- when
) / 86400;
555 return estimate_file_age_success_rate(num_days
);
558 /* Collect an argument from the argument list, or
562 collect_arg(char **argv
, int *arg_ptr
, const char **collected_arg
)
564 if ((argv
== NULL
) || (argv
[*arg_ptr
] == NULL
))
566 *collected_arg
= NULL
;
571 *collected_arg
= argv
[*arg_ptr
];
578 collect_arg_stat_info(char **argv
, int *arg_ptr
, struct stat
*p
)
580 const char *filename
;
581 if (collect_arg(argv
, arg_ptr
, &filename
))
583 if (0 == (options
.xstat
)(filename
, p
))
589 fatal_file_error(filename
);
598 /* The parsers are responsible to continue scanning ARGV for
599 their arguments. Each parser knows what is and isn't
602 ARGV is the argument array.
603 *ARG_PTR is the index to start at in ARGV,
604 updated to point beyond the last element consumed.
606 The predicate structure is updated with the new information. */
610 parse_and (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
612 struct predicate
*our_pred
;
617 our_pred
= get_new_pred (entry
);
618 our_pred
->pred_func
= pred_and
;
619 our_pred
->p_type
= BI_OP
;
620 our_pred
->p_prec
= AND_PREC
;
621 our_pred
->need_stat
= our_pred
->need_type
= false;
626 parse_anewer (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
628 struct stat stat_newer
;
630 set_stat_placeholders(&stat_newer
);
631 if (collect_arg_stat_info(argv
, arg_ptr
, &stat_newer
))
633 struct predicate
*our_pred
= insert_primary (entry
);
634 our_pred
->args
.reftime
.xval
= XVAL_ATIME
;
635 our_pred
->args
.reftime
.ts
= get_stat_mtime(&stat_newer
);
636 our_pred
->args
.reftime
.kind
= COMP_GT
;
637 our_pred
->est_success_rate
= estimate_timestamp_success_rate(stat_newer
.st_mtime
);
644 parse_closeparen (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
646 struct predicate
*our_pred
;
651 our_pred
= get_new_pred (entry
);
652 our_pred
->pred_func
= pred_closeparen
;
653 our_pred
->p_type
= CLOSE_PAREN
;
654 our_pred
->p_prec
= NO_PREC
;
655 our_pred
->need_stat
= our_pred
->need_type
= false;
660 parse_cnewer (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
662 struct stat stat_newer
;
664 set_stat_placeholders(&stat_newer
);
665 if (collect_arg_stat_info(argv
, arg_ptr
, &stat_newer
))
667 struct predicate
*our_pred
= insert_primary (entry
);
668 our_pred
->args
.reftime
.xval
= XVAL_CTIME
; /* like -newercm */
669 our_pred
->args
.reftime
.ts
= get_stat_mtime(&stat_newer
);
670 our_pred
->args
.reftime
.kind
= COMP_GT
;
671 our_pred
->est_success_rate
= estimate_timestamp_success_rate(stat_newer
.st_mtime
);
678 parse_comma (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
680 struct predicate
*our_pred
;
685 our_pred
= get_new_pred (entry
);
686 our_pred
->pred_func
= pred_comma
;
687 our_pred
->p_type
= BI_OP
;
688 our_pred
->p_prec
= COMMA_PREC
;
689 our_pred
->need_stat
= our_pred
->need_type
= false;
690 our_pred
->est_success_rate
= 1.0f
;
695 parse_daystart (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
703 if (options
.full_days
== false)
705 options
.cur_day_start
+= DAYSECS
;
706 local
= localtime (&options
.cur_day_start
);
707 options
.cur_day_start
-= (local
708 ? (local
->tm_sec
+ local
->tm_min
* 60
709 + local
->tm_hour
* 3600)
710 : options
.cur_day_start
% DAYSECS
);
711 options
.full_days
= true;
717 parse_delete (const struct parser_table
* entry
, char *argv
[], int *arg_ptr
)
719 struct predicate
*our_pred
;
723 our_pred
= insert_primary (entry
);
724 our_pred
->side_effects
= our_pred
->no_default_print
= true;
725 /* -delete implies -depth */
726 options
.do_dir_first
= false;
728 /* We do not need stat information because we check for the case
729 * (errno==EISDIR) in pred_delete.
731 our_pred
->need_stat
= our_pred
->need_type
= false;
733 our_pred
->est_success_rate
= 1.0f
;
738 parse_depth (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
743 options
.do_dir_first
= false;
744 return parse_noop(entry
, argv
, arg_ptr
);
748 parse_d (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
750 if (options
.warnings
)
753 _("warning: the -d option is deprecated; please use -depth instead, because the latter is a POSIX-compliant feature."));
755 return parse_depth(entry
, argv
, arg_ptr
);
759 parse_empty (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
761 struct predicate
*our_pred
;
765 our_pred
= insert_primary (entry
);
766 our_pred
->est_success_rate
= 0.01f
; /* assume 1% of files are empty. */
771 parse_exec (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
773 return insert_exec_ok ("-exec", entry
, get_start_dirfd(), argv
, arg_ptr
);
777 parse_execdir (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
779 return insert_exec_ok ("-execdir", entry
, -1, argv
, arg_ptr
);
783 parse_false (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
785 struct predicate
*our_pred
;
790 our_pred
= insert_primary (entry
);
791 our_pred
->need_stat
= our_pred
->need_type
= false;
792 our_pred
->side_effects
= our_pred
->no_default_print
= false;
793 our_pred
->est_success_rate
= 0.0f
;
798 insert_fls (const struct parser_table
* entry
, const char *filename
)
800 struct predicate
*our_pred
= insert_primary (entry
);
802 open_output_file (filename
, &our_pred
->args
.printf_vec
);
804 open_stdout (&our_pred
->args
.printf_vec
);
805 our_pred
->side_effects
= our_pred
->no_default_print
= true;
806 our_pred
->est_success_rate
= 1.0f
;
812 parse_fls (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
814 const char *filename
;
815 return collect_arg(argv
, arg_ptr
, &filename
)
816 && insert_fls(entry
, filename
);
820 parse_follow (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
822 set_follow_state(SYMLINK_ALWAYS_DEREF
);
823 return parse_noop(entry
, argv
, arg_ptr
);
827 parse_fprint (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
829 struct predicate
*our_pred
;
830 const char *filename
;
831 if (collect_arg(argv
, arg_ptr
, &filename
))
833 our_pred
= insert_primary (entry
);
834 open_output_file (filename
, &our_pred
->args
.printf_vec
);
835 our_pred
->side_effects
= our_pred
->no_default_print
= true;
836 our_pred
->need_stat
= our_pred
->need_type
= false;
837 our_pred
->est_success_rate
= 1.0f
;
847 insert_fprint(const struct parser_table
* entry
, const char *filename
)
849 struct predicate
*our_pred
= insert_primary (entry
);
851 open_output_file (filename
, &our_pred
->args
.printf_vec
);
853 open_stdout (&our_pred
->args
.printf_vec
);
854 our_pred
->side_effects
= our_pred
->no_default_print
= true;
855 our_pred
->need_stat
= our_pred
->need_type
= false;
856 our_pred
->est_success_rate
= 1.0f
;
862 parse_fprint0 (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
864 const char *filename
;
865 if (collect_arg(argv
, arg_ptr
, &filename
))
866 return insert_fprint(entry
, filename
);
871 static float estimate_fstype_success_rate(const char *fsname
)
873 struct stat dir_stat
;
874 const char *dir
= "/";
875 if (0 == stat(dir
, &dir_stat
))
877 const char *fstype
= filesystem_type(&dir_stat
, dir
);
878 /* Assume most files are on the same filesystem type as the root fs. */
879 if (0 == strcmp(fsname
, fstype
))
889 parse_fstype (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
891 const char *typename
;
892 if (collect_arg(argv
, arg_ptr
, &typename
))
894 struct predicate
*our_pred
= insert_primary (entry
);
895 our_pred
->args
.str
= typename
;
897 /* This is an expensive operation, so although there are
898 * circumstances where it is selective, we ignore this fact
899 * because we probably don't want to promote this test to the
902 our_pred
->est_success_rate
= estimate_fstype_success_rate(typename
);
912 parse_gid (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
914 struct predicate
*p
= insert_num (argv
, arg_ptr
, entry
);
917 p
->est_success_rate
= (p
->args
.numinfo
.l_val
< 100) ? 0.99 : 0.2;
928 safe_atoi (const char *s
)
934 lval
= strtol(s
, &end
, 10);
935 if ( (LONG_MAX
== lval
) || (LONG_MIN
== lval
) )
937 /* max/min possible value, or an error. */
940 /* too big, or too small. */
941 error(1, errno
, "%s", s
);
945 /* not a valid number */
946 error(1, errno
, "%s", s
);
948 /* Otherwise, we do a range chack against INT_MAX and INT_MIN
953 if (lval
> INT_MAX
|| lval
< INT_MIN
)
955 /* The number was in range for long, but not int. */
957 error(1, errno
, "%s", s
);
961 error(1, errno
, "Unexpected suffix %s on %s",
962 quotearg_n_style(0, options
.err_quoting_style
, end
),
963 quotearg_n_style(1, options
.err_quoting_style
, s
));
967 error(1, errno
, "Expected an integer: %s",
968 quotearg_n_style(0, options
.err_quoting_style
, s
));
975 parse_group (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
977 const char *groupname
;
979 if (collect_arg(argv
, arg_ptr
, &groupname
))
982 struct predicate
*our_pred
;
983 struct group
*cur_gr
= getgrnam(groupname
);
987 gid
= cur_gr
->gr_gid
;
991 const int gid_len
= strspn (groupname
, "0123456789");
994 if (groupname
[gid_len
] == 0)
996 gid
= safe_atoi (groupname
);
1000 /* XXX: no test in test suite for this */
1001 error(1, 0, _("%s is not the name of an existing group and"
1002 " it does not look like a numeric group ID "
1003 "because it has the unexpected suffix %s"),
1004 quotearg_n_style(0, options
.err_quoting_style
, groupname
),
1005 quotearg_n_style(1, options
.err_quoting_style
, groupname
+gid_len
));
1013 /* XXX: no test in test suite for this */
1014 error(1, 0, _("%s is not the name of an existing group"),
1015 quotearg_n_style(0, options
.err_quoting_style
, groupname
));
1019 error(1, 0, _("argument to -group is empty, but should be a group name"));
1024 our_pred
= insert_primary (entry
);
1025 our_pred
->args
.gid
= gid
;
1026 our_pred
->est_success_rate
= (our_pred
->args
.numinfo
.l_val
< 100) ? 0.99 : 0.2;
1033 parse_help (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1039 usage(stdout
, 0, NULL
);
1041 default path is the current directory; default expression is -print\n\
1042 expression may consist of: operators, options, tests, and actions:\n"));
1044 operators (decreasing precedence; -and is implicit where no others are given):\n\
1045 ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2\n\
1046 EXPR1 -o EXPR2 EXPR1 -or EXPR2 EXPR1 , EXPR2\n"));
1048 positional options (always true): -daystart -follow -regextype\n\n\
1049 normal options (always true, specified before other expressions):\n\
1050 -depth --help -maxdepth LEVELS -mindepth LEVELS -mount -noleaf\n\
1051 --version -xdev -ignore_readdir_race -noignore_readdir_race\n"));
1053 tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n\
1054 -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n\
1055 -ilname PATTERN -iname PATTERN -inum N -iwholename PATTERN -iregex PATTERN\n\
1056 -links N -lname PATTERN -mmin N -mtime N -name PATTERN -newer FILE"));
1058 -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n\
1059 -readable -writable -executable\n\
1060 -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n\
1061 -used N -user NAME -xtype [bcdpfls]\n"));
1063 actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n\
1064 -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n\
1065 -exec COMMAND ; -exec COMMAND {} + -ok COMMAND ;\n\
1066 -execdir COMMAND ; -execdir COMMAND {} + -okdir COMMAND ;\n\
1068 puts (_("Report (and track progress on fixing) bugs via the findutils bug-reporting\n\
1069 page at http://savannah.gnu.org/ or, if you have no web access, by sending\n\
1070 email to <bug-findutils@gnu.org>."));
1075 estimate_pattern_match_rate(const char *pattern
, int is_regex
)
1077 if (strpbrk(pattern
, "*?[") || (is_regex
&& strpbrk(pattern
, ".")))
1079 /* A wildcard; assume the pattern matches most files. */
1089 parse_ilname (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1092 if (collect_arg(argv
, arg_ptr
, &name
))
1094 struct predicate
*our_pred
= insert_primary (entry
);
1095 our_pred
->args
.str
= name
;
1096 /* Use the generic glob pattern estimator to figure out how many
1097 * links will match, but bear in mind that most files won't be links.
1099 our_pred
->est_success_rate
= 0.1 * estimate_pattern_match_rate(name
, 0);
1109 /* sanity check the fnmatch() function to make sure that case folding
1110 * is supported (as opposed to just having the flag ignored).
1113 fnmatch_sanitycheck(void)
1115 static boolean checked
= false;
1118 if (0 != fnmatch("foo", "foo", 0)
1119 || 0 == fnmatch("Foo", "foo", 0)
1120 || 0 != fnmatch("Foo", "foo", FNM_CASEFOLD
))
1122 error (1, 0, _("sanity check of the fnmatch() library function failed."));
1132 check_name_arg(const char *pred
, const char *arg
)
1134 if (strchr(arg
, '/'))
1136 error(0, 0,_("warning: Unix filenames usually don't contain slashes (though pathnames do). That means that '%s %s' will probably evaluate to false all the time on this system. You might find the '-wholename' test more useful, or perhaps '-samefile'. Alternatively, if you are using GNU grep, you could use 'find ... -print0 | grep -FzZ %s'."),
1138 safely_quote_err_filename(0, arg
),
1139 safely_quote_err_filename(1, arg
));
1141 return true; /* allow it anyway */
1147 parse_iname (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1150 fnmatch_sanitycheck();
1151 if (collect_arg(argv
, arg_ptr
, &name
))
1153 if (check_name_arg("-iname", name
))
1155 struct predicate
*our_pred
= insert_primary (entry
);
1156 our_pred
->need_stat
= our_pred
->need_type
= false;
1157 our_pred
->args
.str
= name
;
1158 our_pred
->est_success_rate
= estimate_pattern_match_rate(name
, 0);
1166 parse_inum (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1168 struct predicate
*p
= insert_num (argv
, arg_ptr
, entry
);
1171 /* inode number is exact match only, so very low proportions of
1174 p
->est_success_rate
= 1e-6;
1183 /* -ipath is deprecated (at RMS's request) in favour of
1184 * -iwholename. See the node "GNU Manuals" in standards.texi
1185 * for the rationale for this (basically, GNU prefers the use
1186 * of the phrase "file name" to "path name"
1189 parse_ipath (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1192 _("warning: the predicate -ipath is deprecated; please use -iwholename instead."));
1194 return parse_iwholename(entry
, argv
, arg_ptr
);
1198 parse_iwholename (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1202 fnmatch_sanitycheck();
1203 if (collect_arg(argv
, arg_ptr
, &name
))
1205 struct predicate
*our_pred
= insert_primary_withpred (entry
, pred_ipath
);
1206 our_pred
->need_stat
= our_pred
->need_type
= false;
1207 our_pred
->args
.str
= name
;
1208 our_pred
->est_success_rate
= estimate_pattern_match_rate(name
, 0);
1215 parse_iregex (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1217 return insert_regex (argv
, arg_ptr
, entry
, RE_ICASE
|options
.regex_options
);
1221 parse_links (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1223 struct predicate
*p
= insert_num (argv
, arg_ptr
, entry
);
1226 if (p
->args
.numinfo
.l_val
== 1)
1227 p
->est_success_rate
= 0.99;
1228 else if (p
->args
.numinfo
.l_val
== 2)
1229 p
->est_success_rate
= 0.01;
1231 p
->est_success_rate
= 1e-3;
1241 parse_lname (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1244 fnmatch_sanitycheck();
1245 if (collect_arg(argv
, arg_ptr
, &name
))
1247 struct predicate
*our_pred
= insert_primary (entry
);
1248 our_pred
->args
.str
= name
;
1249 our_pred
->est_success_rate
= 0.1 * estimate_pattern_match_rate(name
, 0);
1256 parse_ls (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1260 return insert_fls(entry
, NULL
);
1264 insert_depthspec(const struct parser_table
* entry
, char **argv
, int *arg_ptr
,
1267 const char *depthstr
;
1269 const char *predicate
= argv
[(*arg_ptr
)-1];
1270 if (collect_arg(argv
, arg_ptr
, &depthstr
))
1272 depth_len
= strspn (depthstr
, "0123456789");
1273 if ((depth_len
> 0) && (depthstr
[depth_len
] == 0))
1275 (*limitptr
) = safe_atoi (depthstr
);
1278 return parse_noop(entry
, argv
, arg_ptr
);
1281 error(1, 0, _("Expected a positive decimal integer argument to %s, but got %s"),
1283 quotearg_n_style(0, options
.err_quoting_style
, depthstr
));
1286 /* missing argument */
1292 parse_maxdepth (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1294 return insert_depthspec(entry
, argv
, arg_ptr
, &options
.maxdepth
);
1298 parse_mindepth (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1300 return insert_depthspec(entry
, argv
, arg_ptr
, &options
.mindepth
);
1305 do_parse_xmin (const struct parser_table
* entry
, char **argv
, int *arg_ptr
, enum xval xv
)
1307 const char *minutes
;
1309 if (collect_arg(argv
, arg_ptr
, &minutes
))
1311 struct time_val tval
;
1313 if (get_relative_timestamp(minutes
, &tval
,
1314 options
.cur_day_start
+ DAYSECS
, 60,
1315 "arithmetic overflow while converting %s "
1316 "minutes to a number of seconds"))
1318 struct predicate
*our_pred
= insert_primary (entry
);
1319 our_pred
->args
.reftime
= tval
;
1320 our_pred
->est_success_rate
= estimate_timestamp_success_rate(tval
.ts
.tv_sec
);
1327 parse_amin (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1329 return do_parse_xmin(entry
, argv
, arg_ptr
, XVAL_ATIME
);
1333 parse_cmin (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1335 return do_parse_xmin(entry
, argv
, arg_ptr
, XVAL_CTIME
);
1340 parse_mmin (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1342 return do_parse_xmin(entry
, argv
, arg_ptr
, XVAL_MTIME
);
1346 parse_name (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1349 if (collect_arg(argv
, arg_ptr
, &name
))
1351 fnmatch_sanitycheck();
1352 if (check_name_arg("-name", name
))
1354 struct predicate
*our_pred
= insert_primary (entry
);
1355 our_pred
->need_stat
= our_pred
->need_type
= false;
1356 our_pred
->args
.str
= name
;
1357 our_pred
->est_success_rate
= estimate_pattern_match_rate(name
, 0);
1365 parse_negate (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1367 struct predicate
*our_pred
;
1372 our_pred
= get_new_pred_chk_op (entry
);
1373 our_pred
->pred_func
= pred_negate
;
1374 our_pred
->p_type
= UNI_OP
;
1375 our_pred
->p_prec
= NEGATE_PREC
;
1376 our_pred
->need_stat
= our_pred
->need_type
= false;
1381 parse_newer (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1383 struct predicate
*our_pred
;
1384 struct stat stat_newer
;
1386 set_stat_placeholders(&stat_newer
);
1387 if (collect_arg_stat_info(argv
, arg_ptr
, &stat_newer
))
1389 our_pred
= insert_primary (entry
);
1390 our_pred
->args
.reftime
.ts
= get_stat_mtime(&stat_newer
);
1391 our_pred
->args
.reftime
.xval
= XVAL_MTIME
;
1392 our_pred
->args
.reftime
.kind
= COMP_GT
;
1393 our_pred
->est_success_rate
= estimate_timestamp_success_rate(stat_newer
.st_mtime
);
1401 parse_newerXY (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1406 if ((argv
== NULL
) || (argv
[*arg_ptr
] == NULL
))
1410 else if (8u != strlen(argv
[*arg_ptr
]))
1417 const char validchars
[] = "aBcmt";
1419 assert(0 == strncmp("-newer", argv
[*arg_ptr
], 6));
1420 x
= argv
[*arg_ptr
][6];
1421 y
= argv
[*arg_ptr
][7];
1424 #if !defined(HAVE_STRUCT_STAT_ST_BIRTHTIME) && !defined(HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC) && !defined(HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC)
1425 if ('B' == x
|| 'B' == y
)
1428 _("This system does not provide a way to find the birth time of a file."));
1433 /* -newertY (for any Y) is invalid. */
1435 || 0 == strchr(validchars
, x
)
1436 || 0 == strchr( validchars
, y
))
1442 struct predicate
*our_pred
;
1444 /* Because this item is ARG_SPECIAL_PARSE, we have to advance arg_ptr
1445 * past the test name (for most other tests, this is already done)
1449 our_pred
= insert_primary (entry
);
1455 our_pred
->args
.reftime
.xval
= XVAL_ATIME
;
1458 our_pred
->args
.reftime
.xval
= XVAL_BIRTHTIME
;
1461 our_pred
->args
.reftime
.xval
= XVAL_CTIME
;
1464 our_pred
->args
.reftime
.xval
= XVAL_MTIME
;
1467 assert(strchr(validchars
, x
));
1473 if (!get_date(&our_pred
->args
.reftime
.ts
,
1475 &options
.start_time
))
1478 _("I cannot figure out how to interpret %s as a date or time"),
1479 quotearg_n_style(0, options
.err_quoting_style
, argv
[*arg_ptr
]));
1484 struct stat stat_newer
;
1486 /* Stat the named file. */
1487 set_stat_placeholders(&stat_newer
);
1488 if ((*options
.xstat
) (argv
[*arg_ptr
], &stat_newer
))
1489 fatal_file_error(argv
[*arg_ptr
]);
1491 if (!get_stat_Ytime(&stat_newer
, y
, &our_pred
->args
.reftime
.ts
))
1493 /* We cannot extract a timestamp from the struct stat. */
1494 error(1, 0, _("Cannot obtain birth time of file %s"),
1495 safely_quote_err_filename(0, argv
[*arg_ptr
]));
1498 our_pred
->args
.reftime
.kind
= COMP_GT
;
1499 our_pred
->est_success_rate
= estimate_timestamp_success_rate(our_pred
->args
.reftime
.ts
.tv_sec
);
1502 assert(our_pred
->pred_func
!= NULL
);
1503 assert(our_pred
->pred_func
== pred_newerXY
);
1504 assert(our_pred
->need_stat
);
1512 parse_noleaf (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1514 options
.no_leaf_check
= true;
1515 return parse_noop(entry
, argv
, arg_ptr
);
1519 /* Arbitrary amount by which to increase size
1520 of `uid_unused' and `gid_unused'. */
1521 #define ALLOC_STEP 2048
1523 /* Boolean: if uid_unused[n] is nonzero, then UID n has no passwd entry. */
1524 char *uid_unused
= NULL
;
1526 /* Number of elements in `uid_unused'. */
1527 unsigned uid_allocated
;
1529 /* Similar for GIDs and group entries. */
1530 char *gid_unused
= NULL
;
1531 unsigned gid_allocated
;
1535 parse_nogroup (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1537 struct predicate
*our_pred
;
1542 our_pred
= insert_primary (entry
);
1543 our_pred
->est_success_rate
= 1e-4;
1545 if (gid_unused
== NULL
)
1549 gid_allocated
= ALLOC_STEP
;
1550 gid_unused
= xmalloc (gid_allocated
);
1551 memset (gid_unused
, 1, gid_allocated
);
1553 while ((gr
= getgrent ()) != NULL
)
1555 if ((unsigned) gr
->gr_gid
>= gid_allocated
)
1557 unsigned new_allocated
= (unsigned) gr
->gr_gid
+ ALLOC_STEP
;
1558 gid_unused
= xrealloc (gid_unused
, new_allocated
);
1559 memset (gid_unused
+ gid_allocated
, 1,
1560 new_allocated
- gid_allocated
);
1561 gid_allocated
= new_allocated
;
1563 gid_unused
[(unsigned) gr
->gr_gid
] = 0;
1572 parse_nouser (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1574 struct predicate
*our_pred
;
1579 our_pred
= insert_primary (entry
);
1580 our_pred
->est_success_rate
= 1e-3;
1582 if (uid_unused
== NULL
)
1586 uid_allocated
= ALLOC_STEP
;
1587 uid_unused
= xmalloc (uid_allocated
);
1588 memset (uid_unused
, 1, uid_allocated
);
1590 while ((pw
= getpwent ()) != NULL
)
1592 if ((unsigned) pw
->pw_uid
>= uid_allocated
)
1594 unsigned new_allocated
= (unsigned) pw
->pw_uid
+ ALLOC_STEP
;
1595 uid_unused
= xrealloc (uid_unused
, new_allocated
);
1596 memset (uid_unused
+ uid_allocated
, 1,
1597 new_allocated
- uid_allocated
);
1598 uid_allocated
= new_allocated
;
1600 uid_unused
[(unsigned) pw
->pw_uid
] = 0;
1609 parse_nowarn (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1611 options
.warnings
= false;
1612 return parse_noop(entry
, argv
, arg_ptr
);
1616 parse_ok (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1618 return insert_exec_ok ("-ok", entry
, get_start_dirfd(), argv
, arg_ptr
);
1622 parse_okdir (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1624 return insert_exec_ok ("-okdir", entry
, -1, argv
, arg_ptr
);
1628 parse_openparen (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1630 struct predicate
*our_pred
;
1635 our_pred
= get_new_pred_chk_op (entry
);
1636 our_pred
->pred_func
= pred_openparen
;
1637 our_pred
->p_type
= OPEN_PAREN
;
1638 our_pred
->p_prec
= NO_PREC
;
1639 our_pred
->need_stat
= our_pred
->need_type
= false;
1644 parse_or (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1646 struct predicate
*our_pred
;
1651 our_pred
= get_new_pred (entry
);
1652 our_pred
->pred_func
= pred_or
;
1653 our_pred
->p_type
= BI_OP
;
1654 our_pred
->p_prec
= OR_PREC
;
1655 our_pred
->need_stat
= our_pred
->need_type
= false;
1659 /* -path is deprecated (at RMS's request) in favour of
1660 * -iwholename. See the node "GNU Manuals" in standards.texi
1661 * for the rationale for this (basically, GNU prefers the use
1662 * of the phrase "file name" to "path name".
1664 * We do not issue a warning that this usage is deprecated
1665 * since HPUX find supports this predicate also.
1668 parse_path (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1670 return parse_wholename(entry
, argv
, arg_ptr
);
1674 parse_wholename (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1677 if (collect_arg(argv
, arg_ptr
, &name
))
1679 struct predicate
*our_pred
= insert_primary_withpred (entry
, pred_path
);
1680 our_pred
->need_stat
= our_pred
->need_type
= false;
1681 our_pred
->args
.str
= name
;
1682 our_pred
->est_success_rate
= estimate_pattern_match_rate(name
, 0);
1689 parse_perm (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1694 boolean havekind
= false;
1695 enum permissions_type kind
= PERM_EXACT
;
1696 struct mode_change
*change
= NULL
;
1697 struct predicate
*our_pred
;
1698 const char *perm_expr
;
1700 if (!collect_arg(argv
, arg_ptr
, &perm_expr
))
1703 switch (perm_expr
[0])
1707 kind
= PERM_AT_LEAST
;
1713 change
= mode_compile (perm_expr
);
1716 /* Most likely the caller is an old script that is still
1717 * using the obsolete GNU syntax '-perm +MODE'. This old
1718 * syntax was withdrawn in favor of '-perm /MODE' because
1719 * it is incompatible with POSIX in some cases, but we
1720 * still support uses of it that are not incompatible with
1729 /* This is a POSIX-compatible usage */
1737 case '/': /* GNU extension */
1745 /* For example, '-perm 0644', which is valid and matches
1746 * only files whose mode is exactly 0644.
1757 change
= mode_compile (perm_expr
+ mode_start
);
1759 error (1, 0, _("invalid mode %s"),
1760 quotearg_n_style(0, options
.err_quoting_style
, perm_expr
));
1762 perm_val
[0] = mode_adjust (0, false, 0, change
, NULL
);
1763 perm_val
[1] = mode_adjust (0, true, 0, change
, NULL
);
1766 if (('/' == perm_expr
[0]) && (0 == perm_val
[0]) && (0 == perm_val
[1]))
1768 /* The meaning of -perm /000 will change in the future. It
1769 * currently matches no files, but like -perm -000 it should
1772 * Starting in 2005, we used to issue a warning message
1773 * informing the user that the behaviour would change in the
1774 * future. We have now changed the behaviour and issue a
1775 * warning message that the behaviour recently changed.
1778 _("warning: you have specified a mode pattern %s (which is "
1779 "equivalent to /000). The meaning of -perm /000 has now been "
1780 "changed to be consistent with -perm -000; that is, while it "
1781 "used to match no files, it now matches all files."),
1784 kind
= PERM_AT_LEAST
;
1787 /* The "magic" number below is just the fraction of files on my
1788 * own system that "-type l -xtype l" fails for (i.e. unbroken symlinks).
1789 * Actual totals are 1472 and 1073833.
1791 rate
= 0.9986; /* probably matches anything but a broken symlink */
1794 our_pred
= insert_primary (entry
);
1795 our_pred
->est_success_rate
= rate
;
1798 our_pred
->args
.perm
.kind
= kind
;
1803 switch (perm_expr
[0])
1806 our_pred
->args
.perm
.kind
= PERM_AT_LEAST
;
1809 our_pred
->args
.perm
.kind
= PERM_ANY
;
1812 our_pred
->args
.perm
.kind
= PERM_EXACT
;
1816 memcpy (our_pred
->args
.perm
.val
, perm_val
, sizeof perm_val
);
1821 parse_print (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1823 struct predicate
*our_pred
;
1828 our_pred
= insert_primary (entry
);
1829 /* -print has the side effect of printing. This prevents us
1830 from doing undesired multiple printing when the user has
1831 already specified -print. */
1832 our_pred
->side_effects
= our_pred
->no_default_print
= true;
1833 our_pred
->need_stat
= our_pred
->need_type
= false;
1834 open_stdout(&our_pred
->args
.printf_vec
);
1839 parse_print0 (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1841 return insert_fprint(entry
, NULL
);
1845 parse_printf (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1848 if (collect_arg(argv
, arg_ptr
, &format
))
1850 struct format_val fmt
;
1852 return insert_fprintf (&fmt
, entry
, pred_fprintf
, format
);
1858 parse_fprintf (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1860 const char *format
, *filename
;
1861 if (collect_arg(argv
, arg_ptr
, &filename
))
1863 if (collect_arg(argv
, arg_ptr
, &format
))
1865 struct format_val fmt
;
1866 open_output_file (filename
, &fmt
);
1867 return insert_fprintf (&fmt
, entry
, pred_fprintf
, format
);
1874 parse_prune (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1876 struct predicate
*our_pred
;
1881 our_pred
= insert_primary (entry
);
1882 our_pred
->need_stat
= our_pred
->need_type
= false;
1883 /* -prune has a side effect that it does not descend into
1884 the current directory. */
1885 our_pred
->side_effects
= true;
1886 our_pred
->no_default_print
= false;
1891 parse_quit (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1893 struct predicate
*our_pred
= insert_primary (entry
);
1896 our_pred
->need_stat
= our_pred
->need_type
= false;
1897 our_pred
->side_effects
= true; /* Exiting is a side effect... */
1898 our_pred
->no_default_print
= false; /* Don't inhibit the default print, though. */
1899 our_pred
->est_success_rate
= 1.0f
;
1905 parse_regextype (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1907 const char *type_name
;
1908 if (collect_arg(argv
, arg_ptr
, &type_name
))
1910 /* collect the regex type name */
1911 options
.regex_options
= get_regex_type(type_name
);
1912 return parse_noop(entry
, argv
, arg_ptr
);
1919 parse_regex (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1921 return insert_regex (argv
, arg_ptr
, entry
, options
.regex_options
);
1925 insert_regex (char **argv
, int *arg_ptr
, const struct parser_table
*entry
, int regex_options
)
1928 if (collect_arg(argv
, arg_ptr
, &rx
))
1930 struct re_pattern_buffer
*re
;
1931 const char *error_message
;
1932 struct predicate
*our_pred
= insert_primary_withpred (entry
, pred_regex
);
1933 our_pred
->need_stat
= our_pred
->need_type
= false;
1934 re
= (struct re_pattern_buffer
*)
1935 xmalloc (sizeof (struct re_pattern_buffer
));
1936 our_pred
->args
.regex
= re
;
1937 re
->allocated
= 100;
1938 re
->buffer
= (unsigned char *) xmalloc (re
->allocated
);
1941 re_set_syntax(regex_options
);
1942 re
->syntax
= regex_options
;
1943 re
->translate
= NULL
;
1945 error_message
= re_compile_pattern (rx
, strlen(rx
), re
);
1947 error (1, 0, "%s", error_message
);
1948 our_pred
->est_success_rate
= estimate_pattern_match_rate(rx
, 1);
1955 parse_size (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
1957 struct predicate
*our_pred
;
1960 enum comparison_type c_type
;
1965 /* XXX: cannot (yet) convert to ue collect_arg() as this
1966 * function modifies the args in-place.
1968 if ((argv
== NULL
) || (argv
[*arg_ptr
] == NULL
))
1971 len
= strlen (argv
[*arg_ptr
]);
1973 error (1, 0, _("invalid null argument to -size"));
1975 suffix
= argv
[*arg_ptr
][len
- 1];
1980 argv
[*arg_ptr
][len
- 1] = '\0';
1985 argv
[*arg_ptr
][len
- 1] = '\0';
1990 argv
[*arg_ptr
][len
- 1] = '\0';
1993 case 'M': /* Megabytes */
1994 blksize
= 1024*1024;
1995 argv
[*arg_ptr
][len
- 1] = '\0';
1998 case 'G': /* Gigabytes */
1999 blksize
= 1024*1024*1024;
2000 argv
[*arg_ptr
][len
- 1] = '\0';
2005 argv
[*arg_ptr
][len
- 1] = '\0';
2021 error (1, 0, _("invalid -size type `%c'"), argv
[*arg_ptr
][len
- 1]);
2023 /* TODO: accept fractional megabytes etc. ? */
2024 if (!get_num (argv
[*arg_ptr
], &num
, &c_type
))
2026 error(1, 0, _("Invalid argument `%s%c' to -size"), argv
[*arg_ptr
], (int)suffix
);
2029 our_pred
= insert_primary (entry
);
2030 our_pred
->args
.size
.kind
= c_type
;
2031 our_pred
->args
.size
.blocksize
= blksize
;
2032 our_pred
->args
.size
.size
= num
;
2033 our_pred
->need_stat
= true;
2034 our_pred
->need_type
= false;
2036 if (COMP_GT
== c_type
)
2037 our_pred
->est_success_rate
= (num
*blksize
> 20480) ? 0.1 : 0.9;
2038 else if (COMP_LT
== c_type
)
2039 our_pred
->est_success_rate
= (num
*blksize
> 20480) ? 0.9 : 0.1;
2041 our_pred
->est_success_rate
= 0.01;
2049 parse_samefile (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
2051 /* General idea: stat the file, remember device and inode numbers.
2052 * If a candidate file matches those, it's the same file.
2054 struct predicate
*our_pred
;
2055 struct stat st
, fst
;
2058 set_stat_placeholders(&st
);
2059 if (!collect_arg_stat_info(argv
, arg_ptr
, &st
))
2062 set_stat_placeholders(&fst
);
2063 /* POSIX systems are free to re-use the inode number of a deleted
2064 * file. To ensure that we are not fooled by inode reuse, we hold
2065 * the file open if we can. This would prevent the system reusing
2068 fd
= -3; /* means, uninitialised */
2069 openflags
= O_RDONLY
;
2071 if (options
.symlink_handling
== SYMLINK_NEVER_DEREF
)
2073 if (options
.open_nofollow_available
)
2075 assert(O_NOFOLLOW
!= 0);
2076 openflags
|= O_NOFOLLOW
;
2077 fd
= -1; /* safe to open it. */
2081 if (S_ISLNK(st
.st_mode
))
2083 /* no way to ensure that a symlink will not be followed
2084 * by open(2), so fall back on using lstat(). Accept
2085 * the risk that the named file will be deleted and
2086 * replaced with another having the same inode.
2088 * Avoid opening the file.
2090 fd
= -2; /* Do not open it */
2095 /* Race condition here: the file might become a symlink here. */
2101 /* We want to dereference the symlink anyway */
2102 fd
= -1; /* safe to open it without O_NOFOLLOW */
2105 assert(fd
!= -3); /* check we made a decision */
2108 /* Race condition here. The file might become a
2109 * symbolic link in between out call to stat and
2112 fd
= open(argv
[*arg_ptr
], openflags
);
2116 /* We stat the file again here to prevent a race condition
2117 * between the first stat and the call to open(2).
2119 if (0 != fstat(fd
, &fst
))
2121 fatal_file_error(argv
[*arg_ptr
]);
2125 /* Worry about the race condition. If the file became a
2126 * symlink after our first stat and before our call to
2127 * open, fst may contain the stat information for the
2128 * destination of the link, not the link itself.
2130 if ((*options
.xstat
) (argv
[*arg_ptr
], &st
))
2131 fatal_file_error(argv
[*arg_ptr
]);
2133 if ((options
.symlink_handling
== SYMLINK_NEVER_DEREF
)
2134 && (!options
.open_nofollow_available
))
2136 if (S_ISLNK(st
.st_mode
))
2138 /* We lost the race. Leave the data in st. The
2139 * file descriptor points to the wrong thing.
2146 /* Several possibilities here:
2147 * 1. There was no race
2148 * 2. The file changed into a symlink after the stat and
2149 * before the open, and then back into a non-symlink
2150 * before the second stat.
2152 * In case (1) there is no problem. In case (2),
2153 * the stat() and fstat() calls will have returned
2154 * different data. O_NOFOLLOW was not available,
2155 * so the open() call may have followed a symlink
2156 * even if the -P option is in effect.
2158 if ((st
.st_dev
== fst
.st_dev
)
2159 && (st
.st_ino
== fst
.st_ino
))
2161 /* No race. No need to copy fst to st,
2162 * since they should be identical (modulo
2163 * differences in padding bytes).
2168 /* We lost the race. Leave the data in st. The
2169 * file descriptor points to the wrong thing.
2184 our_pred
= insert_primary (entry
);
2185 our_pred
->args
.samefileid
.ino
= st
.st_ino
;
2186 our_pred
->args
.samefileid
.dev
= st
.st_dev
;
2187 our_pred
->args
.samefileid
.fd
= fd
;
2188 our_pred
->need_type
= false;
2189 our_pred
->need_stat
= true;
2190 our_pred
->est_success_rate
= 0.01f
;
2195 /* This function is commented out partly because support for it is
2199 parse_show_control_chars (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
2202 const char *errmsg
= _("The -show-control-chars option takes a single argument which "
2203 "must be 'literal' or 'safe'");
2205 if ((argv
== NULL
) || (argv
[*arg_ptr
] == NULL
))
2207 error (1, errno
, "%s", errmsg
);
2212 arg
= argv
[*arg_ptr
];
2214 if (0 == strcmp("literal", arg
))
2216 options
.literal_control_chars
= true;
2218 else if (0 == strcmp("safe", arg
))
2220 options
.literal_control_chars
= false;
2224 error (1, errno
, "%s", errmsg
);
2227 (*arg_ptr
)++; /* consume the argument. */
2235 parse_true (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
2237 struct predicate
*our_pred
;
2242 our_pred
= insert_primary (entry
);
2243 our_pred
->need_stat
= our_pred
->need_type
= false;
2244 our_pred
->est_success_rate
= 1.0f
;
2249 parse_noop (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
2252 return parse_true(get_noop(), argv
, arg_ptr
);
2256 parse_accesscheck (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
2258 struct predicate
*our_pred
;
2261 our_pred
= insert_primary (entry
);
2262 our_pred
->need_stat
= our_pred
->need_type
= false;
2263 our_pred
->side_effects
= our_pred
->no_default_print
= false;
2264 if (pred_is(our_pred
, pred_executable
))
2265 our_pred
->est_success_rate
= 0.2;
2267 our_pred
->est_success_rate
= 0.9;
2272 parse_type (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
2274 return insert_type (argv
, arg_ptr
, entry
, pred_type
);
2278 parse_uid (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
2280 struct predicate
*p
= insert_num (argv
, arg_ptr
, entry
);
2283 p
->est_success_rate
= (p
->args
.numinfo
.l_val
< 100) ? 0.99 : 0.2;
2293 parse_used (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
2295 struct predicate
*our_pred
;
2296 struct time_val tval
;
2297 const char *offset_str
;
2298 const char *errmsg
= "arithmetic overflow while converting %s days to a number of seconds";
2300 if (collect_arg(argv
, arg_ptr
, &offset_str
))
2302 /* The timespec is actually a delta value, so we use an origin of 0. */
2303 if (get_relative_timestamp(offset_str
, &tval
, 0, DAYSECS
, errmsg
))
2305 our_pred
= insert_primary (entry
);
2306 our_pred
->args
.reftime
= tval
;
2307 our_pred
->est_success_rate
= estimate_file_age_success_rate(tval
.ts
.tv_sec
/ DAYSECS
);
2312 error(1, 0, _("Invalid argument %s to -used"), offset_str
);
2318 return false; /* missing argument */
2323 parse_user (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
2325 const char *username
;
2327 if (collect_arg(argv
, arg_ptr
, &username
))
2329 struct predicate
*our_pred
;
2331 struct passwd
*cur_pwd
= getpwnam(username
);
2333 if (cur_pwd
!= NULL
)
2335 uid
= cur_pwd
->pw_uid
;
2339 int uid_len
= strspn (username
, "0123456789");
2340 if (uid_len
&& (username
[uid_len
]==0))
2341 uid
= safe_atoi (username
);
2345 our_pred
= insert_primary (entry
);
2346 our_pred
->args
.uid
= uid
;
2347 our_pred
->est_success_rate
= (our_pred
->args
.uid
< 100) ? 0.99 : 0.2;
2354 parse_version (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
2356 extern char *version_string
;
2365 printf (_("GNU find version %s\n"), version_string
);
2366 printf (_("Built using GNU gnulib version %s\n"), gnulib_version
);
2367 printf (_("Features enabled: "));
2370 printf("CACHE_IDS ");
2378 printf("DEBUG_STAT ");
2381 #if defined(USE_STRUCT_DIRENT_D_TYPE) && defined(HAVE_STRUCT_DIRENT_D_TYPE)
2385 #if defined(O_NOFOLLOW)
2386 printf("O_NOFOLLOW(%s) ",
2387 (options
.open_nofollow_available
? "enabled" : "disabled"));
2390 #if defined(LEAF_OPTIMISATION)
2391 printf("LEAF_OPTIMISATION ");
2396 if (is_fts_enabled(&flags
))
2402 if (flags
& FTS_CWDFD
)
2408 printf("FTS_CWDFD");
2414 printf("CBO(level=%d) ", (int)(options
.optimisation_level
));
2419 /* For the moment, leave this as English in case someone wants
2420 to parse these strings. */
2429 parse_xdev (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
2431 options
.stay_on_filesystem
= true;
2432 return parse_noop(entry
, argv
, arg_ptr
);
2436 parse_ignore_race (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
2438 options
.ignore_readdir_race
= true;
2439 return parse_noop(entry
, argv
, arg_ptr
);
2443 parse_noignore_race (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
2445 options
.ignore_readdir_race
= false;
2446 return parse_noop(entry
, argv
, arg_ptr
);
2450 parse_warn (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
2452 options
.warnings
= true;
2453 return parse_noop(entry
, argv
, arg_ptr
);
2457 parse_xtype (const struct parser_table
* entry
, char **argv
, int *arg_ptr
)
2459 return insert_type (argv
, arg_ptr
, entry
, pred_xtype
);
2463 insert_type (char **argv
, int *arg_ptr
, const struct parser_table
*entry
, PRED_FUNC which_pred
)
2466 struct predicate
*our_pred
;
2468 const char *typeletter
;
2470 if (collect_arg(argv
, arg_ptr
, &typeletter
))
2472 if (strlen(typeletter
) != 1u)
2474 error(1, 0, _("Arguments to -type should contain only one letter"));
2478 switch (typeletter
[0])
2480 case 'b': /* block special */
2481 type_cell
= S_IFBLK
;
2484 case 'c': /* character special */
2485 type_cell
= S_IFCHR
;
2488 case 'd': /* directory */
2489 type_cell
= S_IFDIR
;
2492 case 'f': /* regular file */
2493 type_cell
= S_IFREG
;
2497 case 'l': /* symbolic link */
2498 type_cell
= S_IFLNK
;
2503 case 'p': /* pipe */
2504 type_cell
= S_IFIFO
;
2509 case 's': /* socket */
2510 type_cell
= S_IFSOCK
;
2515 case 'D': /* Solaris door */
2516 type_cell
= S_IFDOOR
;
2520 default: /* None of the above ... nuke 'em. */
2521 error(1, 0, _("Unknown argument to -type: %c"), (*typeletter
));
2524 our_pred
= insert_primary_withpred (entry
, which_pred
);
2525 our_pred
->est_success_rate
= rate
;
2527 /* Figure out if we will need to stat the file, because if we don't
2528 * need to follow symlinks, we can avoid a stat call by using
2529 * struct dirent.d_type.
2531 if (which_pred
== pred_xtype
)
2533 our_pred
->need_stat
= true;
2534 our_pred
->need_type
= false;
2538 our_pred
->need_stat
= false; /* struct dirent is enough */
2539 our_pred
->need_type
= true;
2541 our_pred
->args
.type
= type_cell
;
2548 /* Return true if the file accessed via FP is a terminal.
2551 stream_is_tty(FILE *fp
)
2553 int fd
= fileno(fp
);
2556 return false; /* not a valid stream */
2560 return isatty(fd
) ? true : false;
2568 /* XXX: do we need to pass FUNC to this function? */
2570 insert_fprintf (struct format_val
*vec
,
2571 const struct parser_table
*entry
, PRED_FUNC func
,
2572 const char *format_const
)
2574 char *format
= (char*)format_const
; /* XXX: casting away constness */
2575 register char *scan
; /* Current address in scanning `format'. */
2576 register char *scan2
; /* Address inside of element being scanned. */
2577 struct segment
**segmentp
; /* Address of current segment. */
2578 struct predicate
*our_pred
;
2580 our_pred
= insert_primary_withpred (entry
, func
);
2581 our_pred
->side_effects
= our_pred
->no_default_print
= true;
2582 our_pred
->args
.printf_vec
= *vec
;
2583 our_pred
->need_type
= false;
2584 our_pred
->need_stat
= false;
2585 our_pred
->p_cost
= NeedsNothing
;
2587 segmentp
= &our_pred
->args
.printf_vec
.segment
;
2590 for (scan
= format
; *scan
; scan
++)
2595 if (*scan2
>= '0' && *scan2
<= '7')
2599 for (i
= n
= 0; i
< 3 && (*scan2
>= '0' && *scan2
<= '7');
2601 n
= 8 * n
+ *scan2
- '0';
2616 make_segment (segmentp
, format
, scan
- format
,
2619 if (our_pred
->need_stat
&& (our_pred
->p_cost
< NeedsStatInfo
))
2620 our_pred
->p_cost
= NeedsStatInfo
;
2638 /* *scan = '\\'; * it already is */
2642 _("warning: unrecognized escape `\\%c'"), *scan2
);
2647 segmentp
= make_segment (segmentp
, format
, scan
- format
+ 1,
2650 format
= scan2
+ 1; /* Move past the escape. */
2651 scan
= scan2
; /* Incremented immediately by `for'. */
2653 else if (*scan
== '%')
2657 /* Trailing %. We don't like those. */
2658 error (1, 0, _("error: %s at end of format string"), scan
);
2660 else if (scan
[1] == '%')
2662 segmentp
= make_segment (segmentp
, format
, scan
- format
+ 1,
2669 /* Scan past flags, width and precision, to verify kind. */
2670 for (scan2
= scan
; *++scan2
&& strchr ("-+ #", *scan2
);)
2672 while (ISDIGIT (*scan2
))
2675 for (scan2
++; ISDIGIT (*scan2
); scan2
++)
2677 if (strchr ("abcdDfFgGhHiklmMnpPsStuUyY", *scan2
))
2679 segmentp
= make_segment (segmentp
, format
, scan2
- format
,
2680 KIND_FORMAT
, *scan2
, 0,
2685 else if (strchr ("ABCT", *scan2
) && scan2
[1])
2687 segmentp
= make_segment (segmentp
, format
, scan2
- format
,
2688 KIND_FORMAT
, scan2
[0], scan2
[1],
2696 /* An unrecognized % escape. Print the char after the %. */
2697 error (0, 0, _("warning: unrecognized format directive `%%%c'"),
2699 segmentp
= make_segment (segmentp
, format
, scan
- format
,
2709 make_segment (segmentp
, format
, scan
- format
, KIND_PLAIN
, 0, 0,
2714 /* Create a new fprintf segment in *SEGMENT, with type KIND,
2715 from the text in FORMAT, which has length LEN.
2716 Return the address of the `next' pointer of the new segment. */
2718 static struct segment
**
2719 make_segment (struct segment
**segment
,
2724 char aux_format_char
,
2725 struct predicate
*pred
)
2727 enum EvaluationCost mycost
= NeedsNothing
;
2730 *segment
= (struct segment
*) xmalloc (sizeof (struct segment
));
2732 (*segment
)->segkind
= kind
;
2733 (*segment
)->format_char
[0] = format_char
;
2734 (*segment
)->format_char
[1] = aux_format_char
;
2735 (*segment
)->next
= NULL
;
2736 (*segment
)->text_len
= len
;
2738 fmt
= (*segment
)->text
= xmalloc (len
+ sizeof "d");
2739 strncpy (fmt
, format
, len
);
2744 case KIND_PLAIN
: /* Plain text string, no % conversion. */
2745 case KIND_STOP
: /* Terminate argument, no newline. */
2746 assert(0 == format_char
);
2747 assert(0 == aux_format_char
);
2749 if (mycost
> pred
->p_cost
)
2750 pred
->p_cost
= NeedsNothing
;
2751 return &(*segment
)->next
;
2755 assert(kind
== KIND_FORMAT
);
2756 switch (format_char
)
2758 case 'l': /* object of symlink */
2759 pred
->need_stat
= true;
2760 mycost
= NeedsLinkName
;
2764 case 'y': /* file type */
2765 pred
->need_type
= true;
2770 case 'a': /* atime in `ctime' format */
2771 case 'A': /* atime in user-specified strftime format */
2772 case 'B': /* birth time in user-specified strftime format */
2773 case 'c': /* ctime in `ctime' format */
2774 case 'C': /* ctime in user-specified strftime format */
2775 case 'F': /* filesystem type */
2776 case 'g': /* group name */
2777 case 'i': /* inode number */
2778 case 'M': /* mode in `ls -l' format (eg., "drwxr-xr-x") */
2779 case 's': /* size in bytes */
2780 case 't': /* mtime in `ctime' format */
2781 case 'T': /* mtime in user-specified strftime format */
2782 case 'u': /* user name */
2783 pred
->need_stat
= true;
2784 mycost
= NeedsStatInfo
;
2788 case 'S': /* sparseness */
2789 pred
->need_stat
= true;
2790 mycost
= NeedsStatInfo
;
2794 case 'Y': /* symlink pointed file type */
2795 pred
->need_stat
= true;
2796 mycost
= NeedsType
; /* true for amortised effect */
2800 case 'f': /* basename of path */
2801 case 'h': /* leading directories part of path */
2802 case 'p': /* pathname */
2803 case 'P': /* pathname with ARGV element stripped */
2807 case 'H': /* ARGV element file was found under */
2811 /* Numeric items that one might expect to honour
2812 * #, 0, + flags but which do not.
2814 case 'G': /* GID number */
2815 case 'U': /* UID number */
2816 case 'b': /* size in 512-byte blocks (NOT birthtime in ctime fmt)*/
2817 case 'D': /* Filesystem device on which the file exits */
2818 case 'k': /* size in 1K blocks */
2819 case 'n': /* number of links */
2820 pred
->need_stat
= true;
2821 mycost
= NeedsStatInfo
;
2825 /* Numeric items that DO honour #, 0, + flags.
2827 case 'd': /* depth in search tree (0 = ARGV element) */
2831 case 'm': /* mode as octal number (perms only) */
2833 pred
->need_stat
= true;
2834 mycost
= NeedsStatInfo
;
2841 _("error: the format directive `%%%c' is reserved for future use"),
2848 if (mycost
> pred
->p_cost
)
2849 pred
->p_cost
= mycost
;
2850 return &(*segment
)->next
;
2854 check_path_safety(const char *action
, char **argv
)
2856 const char *path
= getenv("PATH");
2861 s
= next_element(path
, 1);
2862 while ((s
= next_element ((char *) NULL
, 1)) != NULL
)
2864 if (0 == strcmp(s
, "."))
2866 error(1, 0, _("The current directory is included in the PATH environment variable, which is insecure in combination with the %s action of find. Please remove the current directory from your $PATH (that is, remove \".\" or leading or trailing colons)"),
2869 else if ('/' != s
[0])
2871 /* Relative paths are also dangerous in $PATH. */
2872 error(1, 0, _("The relative path %s is included in the PATH "
2873 "environment variable, which is insecure in "
2874 "combination with the %s action of find. "
2875 "Please remove that entry from $PATH"),
2876 safely_quote_err_filename(0, s
),
2883 /* handles both exec and ok predicate */
2885 new_insert_exec_ok (const char *action
,
2886 const struct parser_table
*entry
,
2891 int start
, end
; /* Indexes in ARGV of start & end of cmd. */
2892 int i
; /* Index into cmd args */
2893 int saw_braces
; /* True if previous arg was '{}'. */
2894 boolean allow_plus
; /* True if + is a valid terminator */
2895 int brace_count
; /* Number of instances of {}. */
2896 PRED_FUNC func
= entry
->pred_func
;
2897 enum BC_INIT_STATUS bcstatus
;
2899 struct predicate
*our_pred
;
2900 struct exec_val
*execp
; /* Pointer for efficiency. */
2902 if ((argv
== NULL
) || (argv
[*arg_ptr
] == NULL
))
2905 our_pred
= insert_primary_withpred (entry
, func
);
2906 our_pred
->side_effects
= our_pred
->no_default_print
= true;
2907 our_pred
->need_type
= our_pred
->need_stat
= false;
2909 execp
= &our_pred
->args
.exec_vec
;
2911 if ((func
!= pred_okdir
) && (func
!= pred_ok
))
2914 execp
->close_stdin
= false;
2919 /* If find reads stdin (i.e. for -ok and similar), close stdin
2920 * in the child to prevent some script from consiming the output
2921 * intended for find.
2923 execp
->close_stdin
= true;
2927 if ((func
== pred_execdir
) || (func
== pred_okdir
))
2929 options
.ignore_readdir_race
= false;
2930 check_path_safety(action
, argv
);
2931 execp
->use_current_dir
= true;
2935 execp
->use_current_dir
= false;
2938 our_pred
->args
.exec_vec
.multiple
= 0;
2940 /* Count the number of args with path replacements, up until the ';'.
2941 * Also figure out if the command is terminated by ";" or by "+".
2944 for (end
= start
, saw_braces
=0, brace_count
=0;
2946 && ((argv
[end
][0] != ';') || (argv
[end
][1] != '\0'));
2949 /* For -exec and -execdir, "{} +" can terminate the command. */
2951 && argv
[end
][0] == '+' && argv
[end
][1] == 0
2954 our_pred
->args
.exec_vec
.multiple
= 1;
2959 if (mbsstr (argv
[end
], "{}"))
2964 if (0 == end
&& (func
== pred_execdir
|| func
== pred_okdir
))
2966 /* The POSIX standard says that {} replacement should
2967 * occur even in the utility name. This is insecure
2968 * since it means we will be executing a command whose
2969 * name is chosen according to whatever find finds in
2970 * the filesystem. That can be influenced by an
2971 * attacker. Hence for -execdir and -okdir this is not
2972 * allowed. We can specify this as those options are
2973 * not defined by POSIX.
2975 error(1, 0, _("You may not use {} within the utility name for -execdir and -okdir, because this is a potential security problem."));
2980 /* Fail if no command given or no semicolon found. */
2981 if ((end
== start
) || (argv
[end
] == NULL
))
2988 if (our_pred
->args
.exec_vec
.multiple
&& brace_count
> 1)
2992 if (func
== pred_execdir
)
2998 _("Only one instance of {} is supported with -exec%s ... +"),
3002 /* We use a switch statement here so that the compiler warns us when
3003 * we forget to handle a newly invented enum value.
3005 * Like xargs, we allow 2KiB of headroom for the launched utility to
3006 * export its own environment variables before calling something
3009 bcstatus
= bc_init_controlinfo(&execp
->ctl
, 2048u);
3012 case BC_INIT_ENV_TOO_BIG
:
3013 case BC_INIT_CANNOT_ACCOMODATE_HEADROOM
:
3015 _("The environment is too large for exec()."));
3018 /* Good news. Carry on. */
3021 bc_use_sensible_arg_max(&execp
->ctl
);
3024 execp
->ctl
.exec_callback
= launch
;
3026 if (our_pred
->args
.exec_vec
.multiple
)
3028 /* "+" terminator, so we can just append our arguments after the
3029 * command and initial arguments.
3031 execp
->replace_vec
= NULL
;
3032 execp
->ctl
.replace_pat
= NULL
;
3033 execp
->ctl
.rplen
= 0;
3034 execp
->ctl
.lines_per_exec
= 0; /* no limit */
3035 execp
->ctl
.args_per_exec
= 0; /* no limit */
3037 /* remember how many arguments there are */
3038 execp
->ctl
.initial_argc
= (end
-start
) - 1;
3040 /* execp->state = xmalloc(sizeof struct buildcmd_state); */
3041 bc_init_state(&execp
->ctl
, &execp
->state
, execp
);
3043 /* Gather the initial arguments. Skip the {}. */
3044 for (i
=start
; i
<end
-1; ++i
)
3046 bc_push_arg(&execp
->ctl
, &execp
->state
,
3047 argv
[i
], strlen(argv
[i
])+1,
3054 /* Semicolon terminator - more than one {} is supported, so we
3055 * have to do brace-replacement.
3057 execp
->num_args
= end
- start
;
3059 execp
->ctl
.replace_pat
= "{}";
3060 execp
->ctl
.rplen
= strlen(execp
->ctl
.replace_pat
);
3061 execp
->ctl
.lines_per_exec
= 0; /* no limit */
3062 execp
->ctl
.args_per_exec
= 0; /* no limit */
3063 execp
->replace_vec
= xmalloc(sizeof(char*)*execp
->num_args
);
3066 /* execp->state = xmalloc(sizeof(*(execp->state))); */
3067 bc_init_state(&execp
->ctl
, &execp
->state
, execp
);
3069 /* Remember the (pre-replacement) arguments for later. */
3070 for (i
=0; i
<execp
->num_args
; ++i
)
3072 execp
->replace_vec
[i
] = argv
[i
+start
];
3076 if (argv
[end
] == NULL
)
3087 insert_exec_ok (const char *action
, const struct parser_table
*entry
, int dirfd
, char **argv
, int *arg_ptr
)
3089 return new_insert_exec_ok(action
, entry
, dirfd
, argv
, arg_ptr
);
3094 /* Get a timestamp and comparison type.
3096 STR is the ASCII representation.
3097 Set *NUM_DAYS to the number of days/minutes/whatever, taken as being
3098 relative to ORIGIN (usually the current moment or midnight).
3099 Thus the sense of the comparison type appears to be reversed.
3100 Set *COMP_TYPE to the kind of comparison that is requested.
3101 Issue OVERFLOWMESSAGE if overflow occurs.
3102 Return true if all okay, false if input error.
3104 Used by -atime, -ctime and -mtime (parsers) to
3105 get the appropriate information for a time predicate processor. */
3108 get_relative_timestamp (const char *str
,
3109 struct time_val
*result
,
3111 double sec_per_unit
,
3112 const char *overflowmessage
)
3115 double offset
, seconds
, f
;
3117 if (get_comp_type(&str
, &result
->kind
))
3119 /* Invert the sense of the comparison */
3120 switch (result
->kind
)
3122 case COMP_LT
: result
->kind
= COMP_GT
; break;
3123 case COMP_GT
: result
->kind
= COMP_LT
; break;
3127 /* Convert the ASCII number into floating-point. */
3128 if (xstrtod(str
, NULL
, &offset
, strtod
))
3130 /* Separate the floating point number the user specified
3131 * (which is a number of days, or minutes, etc) into an
3132 * integral number of seconds (SECONDS) and a fraction (F).
3134 f
= modf(offset
* sec_per_unit
, &seconds
);
3136 result
->ts
.tv_sec
= origin
- seconds
;
3137 result
->ts
.tv_nsec
= fabs(f
* 1e9
);
3139 /* Check for overflow. */
3140 checkval
= (uintmax_t)origin
- seconds
;
3141 if (checkval
!= result
->ts
.tv_sec
)
3143 /* an overflow has occurred. */
3144 error (1, 0, overflowmessage
, str
);
3150 /* Conversion from ASCII to double failed. */
3160 /* Insert a time predicate based on the information in ENTRY.
3161 ARGV is a pointer to the argument array.
3162 ARG_PTR is a pointer to an index into the array, incremented if
3165 Return true if input is valid, false if not.
3167 A new predicate node is assigned, along with an argument node
3168 obtained with malloc.
3170 Used by -atime, -ctime, and -mtime parsers. */
3173 parse_time (const struct parser_table
* entry
, char *argv
[], int *arg_ptr
)
3175 struct predicate
*our_pred
;
3176 struct time_val tval
;
3177 enum comparison_type comp
;
3178 const char *timearg
;
3179 const char *errmsg
= "arithmetic overflow while converting %s days to a number of seconds";
3182 if (!collect_arg(argv
, arg_ptr
, &timearg
))
3185 /* Decide the origin by previewing the comparison type. */
3186 origin
= options
.cur_day_start
;
3188 if (get_comp_type(&timearg
, &comp
))
3190 /* Remember, we invert the sense of the comparison, so this tests against COMP_LT instead of COMP_GT... */
3191 if (COMP_LT
== tval
.kind
)
3193 uintmax_t expected
= origin
+ (DAYSECS
-1);
3194 origin
+= (DAYSECS
-1);
3195 if (origin
!= expected
)
3198 _("arithmetic overflow when trying to calculate the end of today"));
3201 /* We discard the value of comp here, as get_relative_timestamp
3202 * will set tval.kind.
3206 if (!get_relative_timestamp(timearg
, &tval
, origin
, DAYSECS
, errmsg
))
3209 our_pred
= insert_primary (entry
);
3210 our_pred
->args
.reftime
= tval
;
3211 our_pred
->est_success_rate
= estimate_timestamp_success_rate(tval
.ts
.tv_sec
);
3213 if (options
.debug_options
& DebugExpressionTree
)
3217 fprintf (stderr
, "inserting %s\n", our_pred
->p_name
);
3218 fprintf (stderr
, " type: %s %s ",
3219 (tval
.kind
== COMP_GT
) ? "gt" :
3220 ((tval
.kind
== COMP_LT
) ? "lt" : ((tval
.kind
== COMP_EQ
) ? "eq" : "?")),
3221 (tval
.kind
== COMP_GT
) ? " >" :
3222 ((tval
.kind
== COMP_LT
) ? " <" : ((tval
.kind
== COMP_EQ
) ? ">=" : " ?")));
3223 t
= our_pred
->args
.reftime
.ts
.tv_sec
;
3224 fprintf (stderr
, "%ju %s", (uintmax_t) our_pred
->args
.reftime
.ts
.tv_sec
, ctime (&t
));
3225 if (tval
.kind
== COMP_EQ
)
3227 t
= our_pred
->args
.reftime
.ts
.tv_sec
+= DAYSECS
;
3228 fprintf (stderr
, " < %ju %s",
3229 (uintmax_t) our_pred
->args
.reftime
.ts
.tv_sec
, ctime (&t
));
3230 our_pred
->args
.reftime
.ts
.tv_sec
-= DAYSECS
;
3237 /* Get the comparison type prefix (if any) from a number argument.
3238 The prefix is at *STR.
3239 Set *COMP_TYPE to the kind of comparison that is requested.
3240 Advance *STR beyond any initial comparison prefix.
3242 Return true if all okay, false if input error. */
3244 get_comp_type(const char **str
, enum comparison_type
*comp_type
)
3249 *comp_type
= COMP_GT
;
3253 *comp_type
= COMP_LT
;
3257 *comp_type
= COMP_EQ
;
3267 /* Get a number with comparison information.
3268 The sense of the comparison information is 'normal'; that is,
3269 '+' looks for a count > than the number and '-' less than.
3271 STR is the ASCII representation of the number.
3272 Set *NUM to the number.
3273 Set *COMP_TYPE to the kind of comparison that is requested.
3275 Return true if all okay, false if input error. */
3278 get_num (const char *str
,
3280 enum comparison_type
*comp_type
)
3287 /* Figure out the comparison type if the caller accepts one. */
3290 if (!get_comp_type(&str
, comp_type
))
3294 return xstrtoumax (str
, &pend
, 10, num
, "") == LONGINT_OK
;
3297 /* Insert a number predicate.
3298 ARGV is a pointer to the argument array.
3299 *ARG_PTR is an index into ARGV, incremented if all went well.
3300 *PRED is the predicate processor to insert.
3302 Return true if input is valid, false if error.
3304 A new predicate node is assigned, along with an argument node
3305 obtained with malloc.
3307 Used by -inum and -links parsers. */
3309 static struct predicate
*
3310 insert_num (char **argv
, int *arg_ptr
, const struct parser_table
*entry
)
3314 if (collect_arg(argv
, arg_ptr
, &numstr
))
3317 enum comparison_type c_type
;
3319 if (get_num (numstr
, &num
, &c_type
))
3321 struct predicate
*our_pred
= insert_primary (entry
);
3322 our_pred
->args
.numinfo
.kind
= c_type
;
3323 our_pred
->args
.numinfo
.l_val
= num
;
3325 if (options
.debug_options
& DebugExpressionTree
)
3327 fprintf (stderr
, "inserting %s\n", our_pred
->p_name
);
3328 fprintf (stderr
, " type: %s %s ",
3329 (c_type
== COMP_GT
) ? "gt" :
3330 ((c_type
== COMP_LT
) ? "lt" : ((c_type
== COMP_EQ
) ? "eq" : "?")),
3331 (c_type
== COMP_GT
) ? " >" :
3332 ((c_type
== COMP_LT
) ? " <" : ((c_type
== COMP_EQ
) ? " =" : " ?")));
3333 fprintf (stderr
, "%ju\n", our_pred
->args
.numinfo
.l_val
);
3342 open_output_file (const char *path
, struct format_val
*p
)
3345 p
->quote_opts
= clone_quoting_options (NULL
);
3347 if (!strcmp (path
, "/dev/stderr"))
3350 p
->filename
= _("standard error");
3352 else if (!strcmp (path
, "/dev/stdout"))
3355 p
->filename
= _("standard output");
3359 p
->stream
= fopen_safer (path
, "w");
3362 if (p
->stream
== NULL
)
3364 fatal_file_error(path
);
3368 p
->dest_is_tty
= stream_is_tty(p
->stream
);
3372 open_stdout (struct format_val
*p
)
3374 open_output_file("/dev/stdout", p
);