find.h revision 1.27 1 1.27 cheusov /* $NetBSD: find.h,v 1.27 2021/03/18 18:21:18 cheusov Exp $ */
2 1.6 tls
3 1.1 cgd /*-
4 1.5 jtc * Copyright (c) 1990, 1993
5 1.5 jtc * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * This code is derived from software contributed to Berkeley by
8 1.1 cgd * Cimarron D. Taylor of the University of California, Berkeley.
9 1.1 cgd *
10 1.1 cgd * Redistribution and use in source and binary forms, with or without
11 1.1 cgd * modification, are permitted provided that the following conditions
12 1.1 cgd * are met:
13 1.1 cgd * 1. Redistributions of source code must retain the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer.
15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer in the
17 1.1 cgd * documentation and/or other materials provided with the distribution.
18 1.18 agc * 3. Neither the name of the University nor the names of its contributors
19 1.1 cgd * may be used to endorse or promote products derived from this software
20 1.1 cgd * without specific prior written permission.
21 1.1 cgd *
22 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1 cgd * SUCH DAMAGE.
33 1.1 cgd *
34 1.5 jtc * from: @(#)find.h 8.1 (Berkeley) 6/6/93
35 1.1 cgd */
36 1.1 cgd
37 1.12 cgd #include <regex.h>
38 1.25 uebayasi #include <time.h>
39 1.12 cgd
40 1.1 cgd /* node type */
41 1.1 cgd enum ntype {
42 1.1 cgd N_AND = 1, /* must start > 0 */
43 1.26 pgoyette N_AMIN, N_ANEWER, N_ASINCE, N_ATIME, N_CLOSEPAREN, N_CMIN, N_CNEWER,
44 1.26 pgoyette N_CSINCE, N_CTIME, N_DEPTH, N_EMPTY, N_EXEC, N_EXECDIR, N_EXIT,
45 1.26 pgoyette N_EXPR, N_FALSE, N_FLAGS, N_FOLLOW, N_FPRINT, N_FSTYPE, N_GROUP,
46 1.17 provos N_INAME, N_INUM, N_IREGEX, N_LINKS, N_LS, N_MINDEPTH, N_MAXDEPTH,
47 1.11 simonb N_MMIN, N_MTIME, N_NAME, N_NEWER, N_NOGROUP, N_NOT, N_NOUSER, N_OK,
48 1.11 simonb N_OPENPAREN, N_OR, N_PATH, N_PERM, N_PRINT, N_PRINT0, N_PRINTX,
49 1.26 pgoyette N_PRUNE, N_REGEX, N_SINCE, N_SIZE, N_TYPE, N_USER, N_XDEV, N_DELETE
50 1.1 cgd };
51 1.1 cgd
52 1.1 cgd /* node definition */
53 1.1 cgd typedef struct _plandata {
54 1.1 cgd struct _plandata *next; /* next node */
55 1.23 apb int (*eval)(struct _plandata *, FTSENT *);
56 1.23 apb /* node evaluation function */
57 1.5 jtc #define F_EQUAL 1 /* [acm]time inum links size */
58 1.5 jtc #define F_LESSTHAN 2
59 1.5 jtc #define F_GREATER 3
60 1.5 jtc #define F_NEEDOK 1 /* exec ok */
61 1.22 apb #define F_PLUSSET 2 /* -exec ... {} + */
62 1.5 jtc #define F_MTFLAG 1 /* fstype */
63 1.5 jtc #define F_MTTYPE 2
64 1.5 jtc #define F_ATLEAST 1 /* perm */
65 1.1 cgd int flags; /* private flags */
66 1.1 cgd enum ntype type; /* plan node type */
67 1.1 cgd union {
68 1.27 cheusov uint32_t _f_data; /* flags */
69 1.1 cgd gid_t _g_data; /* gid */
70 1.1 cgd ino_t _i_data; /* inode */
71 1.1 cgd mode_t _m_data; /* mode mask */
72 1.1 cgd nlink_t _l_data; /* link count */
73 1.1 cgd off_t _o_data; /* file size */
74 1.1 cgd time_t _t_data; /* time value */
75 1.25 uebayasi struct timespec _ts_data; /* time value */
76 1.1 cgd uid_t _u_data; /* uid */
77 1.5 jtc short _mt_data; /* mount flags */
78 1.1 cgd struct _plandata *_p_data[2]; /* PLAN trees */
79 1.1 cgd struct _ex {
80 1.1 cgd char **_e_argv; /* argv array */
81 1.1 cgd char **_e_orig; /* original strings */
82 1.1 cgd int *_e_len; /* allocated length */
83 1.22 apb char **_ep_bxp; /* ptr to 1st addt'l arg */
84 1.22 apb char *_ep_p; /* current buffer pointer */
85 1.22 apb char *_ep_bbp; /* begin buffer pointer */
86 1.22 apb char *_ep_ebp; /* end buffer pointer */
87 1.22 apb int _ep_maxargs; /* max #args */
88 1.22 apb int _ep_narg; /* # addt'l args */
89 1.22 apb int _ep_rval; /* return value */
90 1.1 cgd } ex;
91 1.1 cgd char *_a_data[2]; /* array of char pointers */
92 1.1 cgd char *_c_data; /* char pointer */
93 1.21 jschauma int _exit_val; /* exit value */
94 1.15 provos int _max_data; /* tree depth */
95 1.15 provos int _min_data; /* tree depth */
96 1.12 cgd regex_t _regexp_data; /* compiled regexp */
97 1.19 reed FILE *_fprint_file; /* file stream for -fprint */
98 1.1 cgd } p_un;
99 1.5 jtc } PLAN;
100 1.16 jhawk #define a_data p_un._a_data
101 1.16 jhawk #define c_data p_un._c_data
102 1.16 jhawk #define i_data p_un._i_data
103 1.16 jhawk #define f_data p_un._f_data
104 1.16 jhawk #define g_data p_un._g_data
105 1.16 jhawk #define l_data p_un._l_data
106 1.16 jhawk #define m_data p_un._m_data
107 1.16 jhawk #define mt_data p_un._mt_data
108 1.16 jhawk #define o_data p_un._o_data
109 1.16 jhawk #define p_data p_un._p_data
110 1.16 jhawk #define t_data p_un._t_data
111 1.25 uebayasi #define ts_data p_un._ts_data
112 1.16 jhawk #define u_data p_un._u_data
113 1.16 jhawk #define e_argv p_un.ex._e_argv
114 1.16 jhawk #define e_orig p_un.ex._e_orig
115 1.16 jhawk #define e_len p_un.ex._e_len
116 1.22 apb #define ep_p p_un.ex._ep_p
117 1.22 apb #define ep_bbp p_un.ex._ep_bbp
118 1.22 apb #define ep_ebp p_un.ex._ep_ebp
119 1.22 apb #define ep_bxp p_un.ex._ep_bxp
120 1.22 apb #define ep_cnt p_un.ex._ep_cnt
121 1.22 apb #define ep_maxargs p_un.ex._ep_maxargs
122 1.22 apb #define ep_nline p_un.ex._ep_nline
123 1.22 apb #define ep_narg p_un.ex._ep_narg
124 1.22 apb #define ep_rval p_un.ex._ep_rval
125 1.21 jschauma #define exit_val p_un._exit_val
126 1.16 jhawk #define max_data p_un._max_data
127 1.16 jhawk #define min_data p_un._min_data
128 1.16 jhawk #define regexp_data p_un._regexp_data
129 1.19 reed #define fprint_file p_un._fprint_file
130 1.5 jtc
131 1.5 jtc typedef struct _option {
132 1.26 pgoyette const char *name; /* option name */
133 1.26 pgoyette enum ntype token; /* token type */
134 1.26 pgoyette PLAN *(*create)(char ***, int, char *); /* create function */
135 1.26 pgoyette int arg; /* function needs arg */
136 1.5 jtc } OPTION;
137 1.1 cgd
138 1.1 cgd #include "extern.h"
139