]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/find/find.c
Merge llvm-project main llvmorg-17-init-19304-gd0b54bb50e51
[FreeBSD/FreeBSD.git] / usr.bin / find / find.c
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1991, 1993, 1994
5  *      The Regents of the University of California.  All rights reserved.
6  *
7  * This code is derived from software contributed to Berkeley by
8  * Cimarron D. Taylor of the University of California, Berkeley.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  */
34
35 #include <sys/types.h>
36 #include <sys/stat.h>
37
38 #include <err.h>
39 #include <errno.h>
40 #include <fts.h>
41 #include <regex.h>
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <string.h>
45
46 #include "find.h"
47
48 static int find_compare(const FTSENT * const *s1, const FTSENT * const *s2);
49
50 /*
51  * find_compare --
52  *      tell fts_open() how to order the traversal of the hierarchy. 
53  *      This variant gives lexicographical order, i.e., alphabetical
54  *      order within each directory.
55  */
56 static int
57 find_compare(const FTSENT * const *s1, const FTSENT * const *s2)
58 {
59
60         return (strcoll((*s1)->fts_name, (*s2)->fts_name));
61 }
62
63 /*
64  * find_formplan --
65  *      process the command line and create a "plan" corresponding to the
66  *      command arguments.
67  */
68 PLAN *
69 find_formplan(char *argv[])
70 {
71         PLAN *plan, *tail, *new;
72
73         /*
74          * for each argument in the command line, determine what kind of node
75          * it is, create the appropriate node type and add the new plan node
76          * to the end of the existing plan.  The resulting plan is a linked
77          * list of plan nodes.  For example, the string:
78          *
79          *      % find . -name foo -newer bar -print
80          *
81          * results in the plan:
82          *
83          *      [-name foo]--> [-newer bar]--> [-print]
84          *
85          * in this diagram, `[-name foo]' represents the plan node generated
86          * by c_name() with an argument of foo and `-->' represents the
87          * plan->next pointer.
88          */
89         for (plan = tail = NULL; *argv;) {
90                 if (!(new = find_create(&argv)))
91                         continue;
92                 if (plan == NULL)
93                         tail = plan = new;
94                 else {
95                         tail->next = new;
96                         tail = new;
97                 }
98         }
99
100         /*
101          * if the user didn't specify one of -print, -ok or -exec, then -print
102          * is assumed so we bracket the current expression with parens, if
103          * necessary, and add a -print node on the end.
104          */
105         if (!isoutput) {
106                 OPTION *p;
107                 char **argv1 = 0;
108
109                 if (plan == NULL) {
110                         p = lookup_option("-print");
111                         new = (p->create)(p, &argv1);
112                         tail = plan = new;
113                 } else {
114                         p = lookup_option("(");
115                         new = (p->create)(p, &argv1);
116                         new->next = plan;
117                         plan = new;
118                         p = lookup_option(")");
119                         new = (p->create)(p, &argv1);
120                         tail->next = new;
121                         tail = new;
122                         p = lookup_option("-print");
123                         new = (p->create)(p, &argv1);
124                         tail->next = new;
125                         tail = new;
126                 }
127         }
128
129         /*
130          * the command line has been completely processed into a search plan
131          * except for the (, ), !, and -o operators.  Rearrange the plan so
132          * that the portions of the plan which are affected by the operators
133          * are moved into operator nodes themselves.  For example:
134          *
135          *      [!]--> [-name foo]--> [-print]
136          *
137          * becomes
138          *
139          *      [! [-name foo] ]--> [-print]
140          *
141          * and
142          *
143          *      [(]--> [-depth]--> [-name foo]--> [)]--> [-print]
144          *
145          * becomes
146          *
147          *      [expr [-depth]-->[-name foo] ]--> [-print]
148          *
149          * operators are handled in order of precedence.
150          */
151
152         plan = paren_squish(plan);              /* ()'s */
153         plan = not_squish(plan);                /* !'s */
154         plan = or_squish(plan);                 /* -o's */
155         return (plan);
156 }
157
158 FTS *tree;                      /* pointer to top of FTS hierarchy */
159
160 /*
161  * find_execute --
162  *      take a search plan and an array of search paths and executes the plan
163  *      over all FTSENT's returned for the given search paths.
164  */
165 int
166 find_execute(PLAN *plan, char *paths[])
167 {
168         FTSENT *entry;
169         PLAN *p;
170         int e;
171
172         tree = fts_open(paths, ftsoptions, (issort ? find_compare : NULL));
173         if (tree == NULL)
174                 err(1, "ftsopen");
175
176         exitstatus = 0;
177         while (errno = 0, (entry = fts_read(tree)) != NULL) {
178                 if (maxdepth != -1 && entry->fts_level >= maxdepth) {
179                         if (fts_set(tree, entry, FTS_SKIP))
180                                 err(1, "%s", entry->fts_path);
181                 }
182
183                 switch (entry->fts_info) {
184                 case FTS_D:
185                         if (isdepth)
186                                 continue;
187                         break;
188                 case FTS_DP:
189                         if (!isdepth)
190                                 continue;
191                         break;
192                 case FTS_DNR:
193                 case FTS_NS:
194                         if (ignore_readdir_race &&
195                             entry->fts_errno == ENOENT && entry->fts_level > 0)
196                                 continue;
197                         /* FALLTHROUGH */
198                 case FTS_ERR:
199                         (void)fflush(stdout);
200                         warnx("%s: %s",
201                             entry->fts_path, strerror(entry->fts_errno));
202                         exitstatus = 1;
203                         continue;
204 #if defined(FTS_W) && defined(FTS_WHITEOUT)
205                 case FTS_W:
206                         if (ftsoptions & FTS_WHITEOUT)
207                                 break;
208                         continue;
209 #endif /* FTS_W */
210                 }
211 #define BADCH   " \t\n\\'\""
212                 if (isxargs && strpbrk(entry->fts_path, BADCH)) {
213                         (void)fflush(stdout);
214                         warnx("%s: illegal path", entry->fts_path);
215                         exitstatus = 1;
216                         continue;
217                 }
218
219                 if (mindepth != -1 && entry->fts_level < mindepth)
220                         continue;
221
222                 /*
223                  * Call all the functions in the execution plan until one is
224                  * false or all have been executed.  This is where we do all
225                  * the work specified by the user on the command line.
226                  */
227                 for (p = plan; p && (p->execute)(p, entry); p = p->next);
228         }
229         e = errno;
230         finish_execplus();
231         if (e && (!ignore_readdir_race || e != ENOENT))
232                 errc(1, e, "fts_read");
233         return (exitstatus);
234 }