When wd_sanity_check() fails, enumerate the mounted devices, rather than the mounted...
[findutils.git] / find / defs.h
bloba984e8069c453b52d87911b0981fcaf5b43497ed
1 /* defs.h -- data types and declarations.
2 Copyright (C) 1990, 91, 92, 93, 94, 2000 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
7 any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
17 USA.
19 #ifndef INC_DEFS_H
20 #define INC_DEFS_H 1
22 #include <config.h>
23 #include <sys/types.h>
24 #include <sys/stat.h>
25 #include <stdio.h>
27 #if defined(HAVE_STRING_H) || defined(STDC_HEADERS)
28 #include <string.h>
29 #else
30 #include <strings.h>
31 #ifndef strchr
32 #define strchr index
33 #endif
34 #ifndef strrchr
35 #define strrchr rindex
36 #endif
37 #endif
39 #include <errno.h>
40 #ifndef errno
41 extern int errno;
42 #endif
44 #ifdef STDC_HEADERS
45 #include <stdlib.h>
46 #endif
48 #ifdef HAVE_UNISTD_H
49 #include <unistd.h>
50 #endif
52 #include <time.h>
54 #if HAVE_LIMITS_H
55 # include <limits.h>
56 #endif
57 #ifndef CHAR_BIT
58 # define CHAR_BIT 8
59 #endif
61 #if HAVE_INTTYPES_H
62 # include <inttypes.h>
63 #endif
65 #include "regex.h"
67 #ifndef S_IFLNK
68 #define lstat stat
69 #endif
71 # ifndef PARAMS
72 # if defined PROTOTYPES || (defined __STDC__ && __STDC__)
73 # define PARAMS(Args) Args
74 # else
75 # define PARAMS(Args) ()
76 # endif
77 # endif
79 int lstat PARAMS((const char *__path, struct stat *__statbuf));
80 int stat PARAMS((const char *__path, struct stat *__statbuf));
82 int optionl_stat PARAMS((const char *name, struct stat *p));
83 int optionp_stat PARAMS((const char *name, struct stat *p));
84 int optionh_stat PARAMS((const char *name, struct stat *p));
86 #ifndef S_ISUID
87 # define S_ISUID 0004000
88 #endif
89 #ifndef S_ISGID
90 # define S_ISGID 0002000
91 #endif
92 #ifndef S_ISVTX
93 # define S_ISVTX 0001000
94 #endif
95 #ifndef S_IRUSR
96 # define S_IRUSR 0000400
97 #endif
98 #ifndef S_IWUSR
99 # define S_IWUSR 0000200
100 #endif
101 #ifndef S_IXUSR
102 # define S_IXUSR 0000100
103 #endif
104 #ifndef S_IRGRP
105 # define S_IRGRP 0000040
106 #endif
107 #ifndef S_IWGRP
108 # define S_IWGRP 0000020
109 #endif
110 #ifndef S_IXGRP
111 # define S_IXGRP 0000010
112 #endif
113 #ifndef S_IROTH
114 # define S_IROTH 0000004
115 #endif
116 #ifndef S_IWOTH
117 # define S_IWOTH 0000002
118 #endif
119 #ifndef S_IXOTH
120 # define S_IXOTH 0000001
121 #endif
123 #define MODE_WXUSR (S_IWUSR | S_IXUSR)
124 #define MODE_R (S_IRUSR | S_IRGRP | S_IROTH)
125 #define MODE_RW (S_IWUSR | S_IWGRP | S_IWOTH | MODE_R)
126 #define MODE_RWX (S_IXUSR | S_IXGRP | S_IXOTH | MODE_RW)
127 #define MODE_ALL (S_ISUID | S_ISGID | S_ISVTX | MODE_RWX)
129 #if 1
130 #include <stdbool.h>
131 typedef bool boolean;
132 #else
133 /* Not char because of type promotion; NeXT gcc can't handle it. */
134 typedef int boolean;
135 #define true 1
136 #define false 0
137 #endif
139 /* Pointer to function returning boolean. */
140 typedef boolean (*PFB)();
142 /* The number of seconds in a day. */
143 #define DAYSECS 86400
145 /* Argument structures for predicates. */
147 enum comparison_type
149 COMP_GT,
150 COMP_LT,
151 COMP_EQ
154 enum permissions_type
156 PERM_AT_LEAST,
157 PERM_ANY,
158 PERM_EXACT
161 enum predicate_type
163 NO_TYPE,
164 PRIMARY_TYPE,
165 UNI_OP,
166 BI_OP,
167 OPEN_PAREN,
168 CLOSE_PAREN
171 enum predicate_precedence
173 NO_PREC,
174 COMMA_PREC,
175 OR_PREC,
176 AND_PREC,
177 NEGATE_PREC,
178 MAX_PREC
181 struct long_val
183 enum comparison_type kind;
184 boolean negative; /* Defined only when representing time_t. */
185 uintmax_t l_val;
188 struct perm_val
190 enum permissions_type kind;
191 mode_t val;
194 struct size_val
196 enum comparison_type kind;
197 int blocksize;
198 uintmax_t size;
201 struct path_arg
203 short offset; /* Offset in `vec' of this arg. */
204 short count; /* Number of path replacements in this arg. */
205 char *origarg; /* Arg with "{}" intact. */
208 struct exec_val
210 struct path_arg *paths; /* Array of args with path replacements. */
211 char **vec; /* Array of args to pass to program. */
214 /* The format string for a -printf or -fprintf is chopped into one or
215 more `struct segment', linked together into a list.
216 Each stretch of plain text is a segment, and
217 each \c and `%' conversion is a segment. */
219 /* Special values for the `kind' field of `struct segment'. */
220 #define KIND_PLAIN 0 /* Segment containing just plain text. */
221 #define KIND_STOP 1 /* \c -- stop printing and flush output. */
223 struct segment
225 int kind; /* Format chars or KIND_{PLAIN,STOP}. */
226 char *text; /* Plain text or `%' format string. */
227 int text_len; /* Length of `text'. */
228 struct segment *next; /* Next segment for this predicate. */
231 struct format_val
233 struct segment *segment; /* Linked list of segments. */
234 FILE *stream; /* Output stream to print on. */
237 struct predicate
239 /* Pointer to the function that implements this predicate. */
240 PFB pred_func;
242 /* Only used for debugging, but defined unconditionally so individual
243 modules can be compiled with -DDEBUG. */
244 char *p_name;
246 /* The type of this node. There are two kinds. The first is real
247 predicates ("primaries") such as -perm, -print, or -exec. The
248 other kind is operators for combining predicates. */
249 enum predicate_type p_type;
251 /* The precedence of this node. Only has meaning for operators. */
252 enum predicate_precedence p_prec;
254 /* True if this predicate node produces side effects.
255 If side_effects are produced
256 then optimization will not be performed */
257 boolean side_effects;
259 /* True if this predicate node requires default print be turned off. */
260 boolean no_default_print;
262 /* True if this predicate node requires a stat system call to execute. */
263 boolean need_stat;
265 /* Information needed by the predicate processor.
266 Next to each member are listed the predicates that use it. */
267 union
269 char *str; /* fstype [i]lname [i]name [i]path */
270 struct re_pattern_buffer *regex; /* regex */
271 struct exec_val exec_vec; /* exec ok */
272 struct long_val info; /* atime ctime gid inum links mtime
273 size uid */
274 struct size_val size; /* size */
275 uid_t uid; /* user */
276 gid_t gid; /* group */
277 time_t time; /* newer */
278 struct perm_val perm; /* perm */
279 mode_t type; /* type */
280 FILE *stream; /* fprint fprint0 */
281 struct format_val printf_vec; /* printf fprintf */
282 } args;
284 /* The next predicate in the user input sequence,
285 which repesents the order in which the user supplied the
286 predicates on the command line. */
287 struct predicate *pred_next;
289 /* The right and left branches from this node in the expression
290 tree, which represents the order in which the nodes should be
291 processed. */
292 struct predicate *pred_left;
293 struct predicate *pred_right;
296 /* find library function declarations. */
298 /* dirname.c */
299 char *dirname PARAMS((char *path));
301 /* error.c */
302 void error PARAMS((int status, int errnum, char *message, ...));
304 /* listfile.c */
305 void list_file PARAMS((char *name, char *relname, struct stat *statp, time_t current_time, int output_block_size, FILE *stream));
306 char *get_link_name PARAMS((char *name, char *relname));
308 /* stpcpy.c */
309 #if !HAVE_STPCPY
310 char *stpcpy PARAMS((char *dest, const char *src));
311 #endif
313 /* xgetcwd.c */
314 char *xgetcwd PARAMS((void));
316 /* xmalloc.c */
317 #if __STDC__
318 #define VOID void
319 #else
320 #define VOID char
321 #endif
323 VOID *xmalloc PARAMS((size_t n));
324 VOID *xrealloc PARAMS((VOID *p, size_t n));
326 /* xstrdup.c */
327 char *xstrdup PARAMS((char *string));
329 /* find global function declarations. */
331 /* find.c */
332 /* SymlinkOption represents the choice of
333 * -P, -L or -P (default) on the command line.
335 enum SymlinkOption
337 SYMLINK_ALWAYS_DEREF, /* Option -L */
338 SYMLINK_NEVER_DEREF, /* Option -P */
339 SYMLINK_DEREF_ARGSONLY /* Option -H */
341 extern enum SymlinkOption symlink_handling; /* defined in find.c. */
343 void set_follow_state PARAMS((enum SymlinkOption opt));
345 /* fstype.c */
346 char *filesystem_type PARAMS((const char *path, const char *relpath, const struct stat *statp));
347 char * get_mounted_filesystems (void);
348 dev_t * get_mounted_devices PARAMS((size_t *));
350 /* parser.c */
351 PFB find_parser PARAMS((char *search_name));
352 boolean parse_close PARAMS((char *argv[], int *arg_ptr));
353 boolean parse_open PARAMS((char *argv[], int *arg_ptr));
354 boolean parse_print PARAMS((char *argv[], int *arg_ptr));
356 /* pred.c */
357 boolean pred_amin PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
358 boolean pred_and PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
359 boolean pred_anewer PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
360 boolean pred_atime PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
361 boolean pred_close PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
362 boolean pred_cmin PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
363 boolean pred_cnewer PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
364 boolean pred_comma PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
365 boolean pred_ctime PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
366 boolean pred_delete PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
367 boolean pred_empty PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
368 boolean pred_exec PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
369 boolean pred_false PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
370 boolean pred_fls PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
371 boolean pred_fprint PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
372 boolean pred_fprint0 PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
373 boolean pred_fprintf PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
374 boolean pred_fstype PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
375 boolean pred_gid PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
376 boolean pred_group PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
377 boolean pred_ilname PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
378 boolean pred_iname PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
379 boolean pred_inum PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
380 boolean pred_ipath PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
381 boolean pred_links PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
382 boolean pred_lname PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
383 boolean pred_ls PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
384 boolean pred_mmin PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
385 boolean pred_mtime PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
386 boolean pred_name PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
387 boolean pred_negate PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
388 boolean pred_newer PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
389 boolean pred_nogroup PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
390 boolean pred_nouser PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
391 boolean pred_ok PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
392 boolean pred_open PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
393 boolean pred_or PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
394 boolean pred_path PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
395 boolean pred_perm PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
396 boolean pred_print PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
397 boolean pred_print0 PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
398 boolean pred_prune PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
399 boolean pred_quit PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
400 boolean pred_regex PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
401 boolean pred_size PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
402 boolean pred_true PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
403 boolean pred_type PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
404 boolean pred_uid PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
405 boolean pred_used PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
406 boolean pred_user PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
407 boolean pred_xtype PARAMS((char *pathname, struct stat *stat_buf, struct predicate *pred_ptr));
408 char *find_pred_name PARAMS((PFB pred_func));
409 #ifdef DEBUG
410 void print_tree PARAMS((struct predicate *node, int indent));
411 void print_list PARAMS((struct predicate *node));
412 #endif /* DEBUG */
414 /* tree.c */
415 struct predicate *
416 get_expr PARAMS((struct predicate **input, short int prev_prec));
417 boolean opt_expr PARAMS((struct predicate **eval_treep));
418 boolean mark_stat PARAMS((struct predicate *tree));
420 /* util.c */
421 struct predicate *get_new_pred PARAMS((void));
422 struct predicate *get_new_pred_chk_op PARAMS((void));
423 struct predicate *insert_primary PARAMS((boolean (*pred_func )()));
424 void usage PARAMS((char *msg));
426 extern char *program_name;
427 extern struct predicate *predicates;
428 extern struct predicate *last_pred;
429 extern boolean do_dir_first;
430 extern int maxdepth;
431 extern int mindepth;
432 extern int curdepth;
433 extern int output_block_size;
434 extern time_t start_time;
435 extern time_t cur_day_start;
436 extern boolean full_days;
437 extern boolean no_leaf_check;
438 extern boolean stay_on_filesystem;
439 extern boolean ignore_readdir_race;
440 extern boolean stop_at_current_level;
441 extern boolean have_stat;
442 extern char *rel_pathname;
443 extern char const *starting_dir;
444 extern int starting_desc;
445 #if ! defined HAVE_FCHDIR && ! defined fchdir
446 # define fchdir(fd) (-1)
447 #endif
448 extern int exit_status;
449 extern int path_length;
450 extern int (*xstat) ();
451 extern boolean dereference;
452 extern boolean warnings;
454 #endif