blob: 0f2f2144c2fb52d3a0a29133bd914a2a5fa6ad18 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen17d49ef1999-10-06 20:25:32 +00002/*
3 * Mini find implementation for busybox
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersenc4996011999-10-20 22:08:37 +00006 *
Matt Kraai096370d2001-02-07 03:52:38 +00007 * Reworked by David Douthitt <n9ubh@callsign.net> and
8 * Matt Kraai <kraai@alumni.carnegiemellon.edu>.
Eric Andersen17d49ef1999-10-06 20:25:32 +00009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
24 */
25
26#include <stdio.h>
27#include <unistd.h>
28#include <dirent.h>
Eric Andersened3ef502001-01-27 08:24:39 +000029#include <string.h>
30#include <stdlib.h>
Matt Kraai096370d2001-02-07 03:52:38 +000031#include <fnmatch.h>
32#include <time.h>
33#include <ctype.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000034#include "busybox.h"
Eric Andersen17d49ef1999-10-06 20:25:32 +000035
Eric Andersen97d86f22003-01-23 05:27:42 +000036//XXX just found out about libbb/messages.c . maybe move stuff there ? - ghoz
"Vladimir N. Oleynik"007a0112005-09-22 11:11:11 +000037static const char msg_req_arg[] = "option `%s' requires an argument";
38static const char msg_invalid_arg[] = "invalid argument `%s' to `%s'";
Eric Andersen17d49ef1999-10-06 20:25:32 +000039
Matt Kraai096370d2001-02-07 03:52:38 +000040static char *pattern;
41
Rob Landleycee605c2005-10-06 16:39:17 +000042#ifdef CONFIG_FEATURE_FIND_TYPE
Matt Kraai096370d2001-02-07 03:52:38 +000043static int type_mask = 0;
44#endif
45
Rob Landleycee605c2005-10-06 16:39:17 +000046#ifdef CONFIG_FEATURE_FIND_PERM
Matt Kraai096370d2001-02-07 03:52:38 +000047static char perm_char = 0;
48static int perm_mask = 0;
49#endif
50
Rob Landleycee605c2005-10-06 16:39:17 +000051#ifdef CONFIG_FEATURE_FIND_MTIME
Matt Kraai096370d2001-02-07 03:52:38 +000052static char mtime_char;
53static int mtime_days;
54#endif
Eric Andersen17d49ef1999-10-06 20:25:32 +000055
Paul Fox72d1a232006-01-13 21:05:41 +000056#ifdef CONFIG_FEATURE_FIND_MMIN
57static char mmin_char;
58static int mmin_mins;
59#endif
60
Rob Landleycee605c2005-10-06 16:39:17 +000061#ifdef CONFIG_FEATURE_FIND_XDEV
Robert Griebl41369af2002-07-24 00:34:48 +000062static dev_t *xdev_dev;
63static int xdev_count = 0;
64#endif
65
Rob Landleycee605c2005-10-06 16:39:17 +000066#ifdef CONFIG_FEATURE_FIND_NEWER
Eric Andersen14f5c8d2005-04-16 19:39:00 +000067static time_t newer_mtime;
Eric Andersen97d86f22003-01-23 05:27:42 +000068#endif
69
Rob Landleycee605c2005-10-06 16:39:17 +000070#ifdef CONFIG_FEATURE_FIND_INUM
Eric Andersen97d86f22003-01-23 05:27:42 +000071static ino_t inode_num;
72#endif
Robert Griebl41369af2002-07-24 00:34:48 +000073
Rob Landleycee605c2005-10-06 16:39:17 +000074#ifdef CONFIG_FEATURE_FIND_EXEC
Rob Landley5d3a0e82005-10-04 03:34:39 +000075static char **exec_str;
76static int num_matches;
77static int exec_opt;
78#endif
79
Erik Andersen3364d782000-03-28 00:58:14 +000080static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
Eric Andersen17d49ef1999-10-06 20:25:32 +000081{
Matt Kraai096370d2001-02-07 03:52:38 +000082 if (pattern != NULL) {
83 const char *tmp = strrchr(fileName, '/');
Erik Andersene49d5ec2000-02-08 19:58:47 +000084
85 if (tmp == NULL)
Matt Kraai096370d2001-02-07 03:52:38 +000086 tmp = fileName;
Erik Andersene49d5ec2000-02-08 19:58:47 +000087 else
88 tmp++;
Matt Kraai096370d2001-02-07 03:52:38 +000089 if (!(fnmatch(pattern, tmp, FNM_PERIOD) == 0))
90 goto no_match;
Erik Andersene49d5ec2000-02-08 19:58:47 +000091 }
Rob Landleycee605c2005-10-06 16:39:17 +000092#ifdef CONFIG_FEATURE_FIND_TYPE
93 if (type_mask != 0) {
Matt Kraai096370d2001-02-07 03:52:38 +000094 if (!((statbuf->st_mode & S_IFMT) == type_mask))
95 goto no_match;
96 }
Rob Landleycee605c2005-10-06 16:39:17 +000097#endif
98#ifdef CONFIG_FEATURE_FIND_PERM
99 if (perm_mask != 0) {
Matt Kraai096370d2001-02-07 03:52:38 +0000100 if (!((isdigit(perm_char) && (statbuf->st_mode & 07777) == perm_mask) ||
101 (perm_char == '-' && (statbuf->st_mode & perm_mask) == perm_mask) ||
102 (perm_char == '+' && (statbuf->st_mode & perm_mask) != 0)))
103 goto no_match;
104 }
Rob Landleycee605c2005-10-06 16:39:17 +0000105#endif
106#ifdef CONFIG_FEATURE_FIND_MTIME
107 if (mtime_char != 0) {
Matt Kraai096370d2001-02-07 03:52:38 +0000108 time_t file_age = time(NULL) - statbuf->st_mtime;
109 time_t mtime_secs = mtime_days * 24 * 60 * 60;
Glenn L McGrath49b0f862002-12-11 21:22:21 +0000110 if (!((isdigit(mtime_char) && file_age >= mtime_secs &&
111 file_age < mtime_secs + 24 * 60 * 60) ||
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000112 (mtime_char == '+' && file_age >= mtime_secs + 24 * 60 * 60) ||
Glenn L McGrath49b0f862002-12-11 21:22:21 +0000113 (mtime_char == '-' && file_age < mtime_secs)))
Matt Kraai096370d2001-02-07 03:52:38 +0000114 goto no_match;
115 }
Rob Landleycee605c2005-10-06 16:39:17 +0000116#endif
Paul Fox72d1a232006-01-13 21:05:41 +0000117#ifdef CONFIG_FEATURE_FIND_MMIN
118 if (mmin_char != 0) {
119 time_t file_age = time(NULL) - statbuf->st_mtime;
120 time_t mmin_secs = mmin_mins * 60;
121 if (!((isdigit(mmin_char) && file_age >= mmin_secs &&
122 file_age < mmin_secs + 60) ||
123 (mmin_char == '+' && file_age >= mmin_secs + 60) ||
124 (mmin_char == '-' && file_age < mmin_secs)))
125 goto no_match;
126 }
127#endif
Rob Landleycee605c2005-10-06 16:39:17 +0000128#ifdef CONFIG_FEATURE_FIND_XDEV
129 if (xdev_count) {
Robert Griebl41369af2002-07-24 00:34:48 +0000130 int i;
131 for (i=0; i<xdev_count; i++) {
132 if (xdev_dev[i] == statbuf-> st_dev)
133 break;
134 }
135 if (i == xdev_count) {
136 if(S_ISDIR(statbuf->st_mode))
137 return SKIP;
138 else
139 goto no_match;
140 }
141 }
Rob Landleycee605c2005-10-06 16:39:17 +0000142#endif
143#ifdef CONFIG_FEATURE_FIND_NEWER
144 if (newer_mtime != 0) {
Eric Andersen97d86f22003-01-23 05:27:42 +0000145 time_t file_age = newer_mtime - statbuf->st_mtime;
146 if (file_age >= 0)
147 goto no_match;
148 }
Rob Landleycee605c2005-10-06 16:39:17 +0000149#endif
150#ifdef CONFIG_FEATURE_FIND_INUM
151 if (inode_num != 0) {
Eric Andersen97d86f22003-01-23 05:27:42 +0000152 if (!(statbuf->st_ino == inode_num))
153 goto no_match;
154 }
Rob Landleycee605c2005-10-06 16:39:17 +0000155#endif
156#ifdef CONFIG_FEATURE_FIND_EXEC
157 if (exec_opt) {
Rob Landley5d3a0e82005-10-04 03:34:39 +0000158 int i;
159 char *cmd_string = "";
160 for (i = 0; i < num_matches; i++)
161 cmd_string = bb_xasprintf("%s%s%s", cmd_string, exec_str[i], fileName);
162 cmd_string = bb_xasprintf("%s%s", cmd_string, exec_str[num_matches]);
163 system(cmd_string);
164 goto no_match;
165 }
Rob Landleycee605c2005-10-06 16:39:17 +0000166#endif
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000167
Matt Kraai096370d2001-02-07 03:52:38 +0000168 puts(fileName);
169no_match:
Erik Andersene49d5ec2000-02-08 19:58:47 +0000170 return (TRUE);
Eric Andersen17d49ef1999-10-06 20:25:32 +0000171}
172
Rob Landleycee605c2005-10-06 16:39:17 +0000173#ifdef CONFIG_FEATURE_FIND_TYPE
Matt Kraai096370d2001-02-07 03:52:38 +0000174static int find_type(char *type)
175{
176 int mask = 0;
177
178 switch (type[0]) {
179 case 'b':
180 mask = S_IFBLK;
181 break;
182 case 'c':
183 mask = S_IFCHR;
184 break;
185 case 'd':
186 mask = S_IFDIR;
187 break;
188 case 'p':
189 mask = S_IFIFO;
190 break;
191 case 'f':
192 mask = S_IFREG;
193 break;
194 case 'l':
195 mask = S_IFLNK;
196 break;
197 case 's':
198 mask = S_IFSOCK;
199 break;
200 }
201
202 if (mask == 0 || type[1] != '\0')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000203 bb_error_msg_and_die(msg_invalid_arg, type, "-type");
Matt Kraai096370d2001-02-07 03:52:38 +0000204
205 return mask;
206}
207#endif
208
Eric Andersen17d49ef1999-10-06 20:25:32 +0000209int find_main(int argc, char **argv)
210{
Matt Kraai096370d2001-02-07 03:52:38 +0000211 int dereference = FALSE;
212 int i, firstopt, status = EXIT_SUCCESS;
Eric Andersen17d49ef1999-10-06 20:25:32 +0000213
Matt Kraai096370d2001-02-07 03:52:38 +0000214 for (firstopt = 1; firstopt < argc; firstopt++) {
215 if (argv[firstopt][0] == '-')
216 break;
Eric Andersen17d49ef1999-10-06 20:25:32 +0000217 }
Eric Andersen17d49ef1999-10-06 20:25:32 +0000218
Erik Andersene49d5ec2000-02-08 19:58:47 +0000219 /* Parse any options */
Matt Kraai096370d2001-02-07 03:52:38 +0000220 for (i = firstopt; i < argc; i++) {
221 if (strcmp(argv[i], "-follow") == 0)
222 dereference = TRUE;
Mark Whitleye0a7f912001-03-28 22:04:42 +0000223 else if (strcmp(argv[i], "-print") == 0) {
224 ;
225 }
Matt Kraai096370d2001-02-07 03:52:38 +0000226 else if (strcmp(argv[i], "-name") == 0) {
227 if (++i == argc)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000228 bb_error_msg_and_die(msg_req_arg, "-name");
Matt Kraai096370d2001-02-07 03:52:38 +0000229 pattern = argv[i];
Rob Landleycee605c2005-10-06 16:39:17 +0000230#ifdef CONFIG_FEATURE_FIND_TYPE
231 } else if (strcmp(argv[i], "-type") == 0) {
Matt Kraai096370d2001-02-07 03:52:38 +0000232 if (++i == argc)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000233 bb_error_msg_and_die(msg_req_arg, "-type");
Matt Kraai096370d2001-02-07 03:52:38 +0000234 type_mask = find_type(argv[i]);
Rob Landleycee605c2005-10-06 16:39:17 +0000235#endif
236#ifdef CONFIG_FEATURE_FIND_PERM
237 } else if (strcmp(argv[i], "-perm") == 0) {
Matt Kraai096370d2001-02-07 03:52:38 +0000238 char *end;
239 if (++i == argc)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000240 bb_error_msg_and_die(msg_req_arg, "-perm");
Matt Kraai096370d2001-02-07 03:52:38 +0000241 perm_mask = strtol(argv[i], &end, 8);
Eric Andersen97d86f22003-01-23 05:27:42 +0000242 if ((end[0] != '\0') || (perm_mask > 07777))
Manuel Novoa III cad53642003-03-19 09:13:01 +0000243 bb_error_msg_and_die(msg_invalid_arg, argv[i], "-perm");
Matt Kraai096370d2001-02-07 03:52:38 +0000244 if ((perm_char = argv[i][0]) == '-')
245 perm_mask = -perm_mask;
Rob Landleycee605c2005-10-06 16:39:17 +0000246#endif
247#ifdef CONFIG_FEATURE_FIND_MTIME
248 } else if (strcmp(argv[i], "-mtime") == 0) {
Matt Kraai096370d2001-02-07 03:52:38 +0000249 char *end;
250 if (++i == argc)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000251 bb_error_msg_and_die(msg_req_arg, "-mtime");
Matt Kraai096370d2001-02-07 03:52:38 +0000252 mtime_days = strtol(argv[i], &end, 10);
253 if (end[0] != '\0')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000254 bb_error_msg_and_die(msg_invalid_arg, argv[i], "-mtime");
Matt Kraai096370d2001-02-07 03:52:38 +0000255 if ((mtime_char = argv[i][0]) == '-')
256 mtime_days = -mtime_days;
Rob Landleycee605c2005-10-06 16:39:17 +0000257#endif
Paul Fox72d1a232006-01-13 21:05:41 +0000258#ifdef CONFIG_FEATURE_FIND_MMIN
259 } else if (strcmp(argv[i], "-mmin") == 0) {
260 char *end;
261 if (++i == argc)
262 bb_error_msg_and_die(msg_req_arg, "-mmin");
263 mmin_mins = strtol(argv[i], &end, 10);
264 if (end[0] != '\0')
265 bb_error_msg_and_die(msg_invalid_arg, argv[i], "-mmin");
266 if ((mmin_char = argv[i][0]) == '-')
267 mmin_mins = -mmin_mins;
268#endif
Rob Landleycee605c2005-10-06 16:39:17 +0000269#ifdef CONFIG_FEATURE_FIND_XDEV
270 } else if (strcmp(argv[i], "-xdev") == 0) {
Robert Griebl41369af2002-07-24 00:34:48 +0000271 struct stat stbuf;
272
273 xdev_count = ( firstopt - 1 ) ? ( firstopt - 1 ) : 1;
274 xdev_dev = xmalloc ( xdev_count * sizeof( dev_t ));
275
276 if ( firstopt == 1 ) {
277 if ( stat ( ".", &stbuf ) < 0 )
Manuel Novoa III cad53642003-03-19 09:13:01 +0000278 bb_error_msg_and_die("could not stat '.'" );
Robert Griebl41369af2002-07-24 00:34:48 +0000279 xdev_dev [0] = stbuf. st_dev;
280 }
281 else {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000282
Robert Griebl41369af2002-07-24 00:34:48 +0000283 for (i = 1; i < firstopt; i++) {
284 if ( stat ( argv [i], &stbuf ) < 0 )
Manuel Novoa III cad53642003-03-19 09:13:01 +0000285 bb_error_msg_and_die("could not stat '%s'", argv [i] );
Robert Griebl41369af2002-07-24 00:34:48 +0000286 xdev_dev [i-1] = stbuf. st_dev;
287 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000288 }
Rob Landleycee605c2005-10-06 16:39:17 +0000289#endif
290#ifdef CONFIG_FEATURE_FIND_NEWER
291 } else if (strcmp(argv[i], "-newer") == 0) {
Eric Andersen97d86f22003-01-23 05:27:42 +0000292 struct stat stat_newer;
293 if (++i == argc)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000294 bb_error_msg_and_die(msg_req_arg, "-newer");
Eric Andersen97d86f22003-01-23 05:27:42 +0000295 if (stat (argv[i], &stat_newer) != 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000296 bb_error_msg_and_die("file %s not found", argv[i]);
Eric Andersen97d86f22003-01-23 05:27:42 +0000297 newer_mtime = stat_newer.st_mtime;
Rob Landleycee605c2005-10-06 16:39:17 +0000298#endif
299#ifdef CONFIG_FEATURE_FIND_INUM
300 } else if (strcmp(argv[i], "-inum") == 0) {
Eric Andersen97d86f22003-01-23 05:27:42 +0000301 char *end;
302 if (++i == argc)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000303 bb_error_msg_and_die(msg_req_arg, "-inum");
Eric Andersen97d86f22003-01-23 05:27:42 +0000304 inode_num = strtol(argv[i], &end, 10);
305 if (end[0] != '\0')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000306 bb_error_msg_and_die(msg_invalid_arg, argv[i], "-inum");
Rob Landleycee605c2005-10-06 16:39:17 +0000307#endif
308#ifdef CONFIG_FEATURE_FIND_EXEC
309 } else if (strcmp(argv[i], "-exec") == 0) {
Rob Landley5d3a0e82005-10-04 03:34:39 +0000310 int b_pos;
311 char *cmd_string = "";
312
313 while (i++) {
314 if (i == argc)
315 bb_error_msg_and_die(msg_req_arg, "-exec");
316 if (*argv[i] == ';')
317 break;
318 cmd_string = bb_xasprintf("%s %s", cmd_string, argv[i]);
319 }
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000320
Rob Landley5d3a0e82005-10-04 03:34:39 +0000321 if (*cmd_string == 0)
322 bb_error_msg_and_die(msg_req_arg, "-exec");
323 cmd_string++;
324 exec_str = xmalloc(sizeof(char *));
325
326 while ((b_pos = strstr(cmd_string, "{}") - cmd_string), (b_pos >= 0)) {
327 num_matches++;
328 exec_str = xrealloc(exec_str, (num_matches + 1) * sizeof(char *));
329 exec_str[num_matches - 1] = bb_xstrndup(cmd_string, b_pos);
330 cmd_string += b_pos + 2;
331 }
332 exec_str[num_matches] = bb_xstrdup(cmd_string);
333 exec_opt = 1;
Rob Landleycee605c2005-10-06 16:39:17 +0000334#endif
Matt Kraai096370d2001-02-07 03:52:38 +0000335 } else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000336 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000337 }
338
Matt Kraai096370d2001-02-07 03:52:38 +0000339 if (firstopt == 1) {
Matt Kraai1f0c4362001-12-20 23:13:26 +0000340 if (! recursive_action(".", TRUE, dereference, FALSE, fileAction,
341 fileAction, NULL))
Matt Kraai096370d2001-02-07 03:52:38 +0000342 status = EXIT_FAILURE;
343 } else {
344 for (i = 1; i < firstopt; i++) {
Matt Kraai1f0c4362001-12-20 23:13:26 +0000345 if (! recursive_action(argv[i], TRUE, dereference, FALSE, fileAction,
346 fileAction, NULL))
Matt Kraai096370d2001-02-07 03:52:38 +0000347 status = EXIT_FAILURE;
348 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000349 }
350
Matt Kraai096370d2001-02-07 03:52:38 +0000351 return status;
Eric Andersen17d49ef1999-10-06 20:25:32 +0000352}