blob: 15e693ab9acd628b50688a15afd1b24283588d62 [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 Andersenc4996011999-10-20 22:08:37 +00005 *
Eric Andersen8ec10a92001-01-27 09:33:39 +00006 * Copyright (C) 1999,2000,2001 by Lineo, inc.
Eric Andersenc4996011999-10-20 22:08:37 +00007 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
Matt Kraai096370d2001-02-07 03:52:38 +00008 * Reworked by David Douthitt <n9ubh@callsign.net> and
9 * Matt Kraai <kraai@alumni.carnegiemellon.edu>.
Eric Andersen17d49ef1999-10-06 20:25:32 +000010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 *
25 */
26
27#include <stdio.h>
28#include <unistd.h>
29#include <dirent.h>
Eric Andersened3ef502001-01-27 08:24:39 +000030#include <string.h>
31#include <stdlib.h>
Matt Kraai096370d2001-02-07 03:52:38 +000032#include <fnmatch.h>
33#include <time.h>
34#include <ctype.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000035#include "busybox.h"
Eric Andersen17d49ef1999-10-06 20:25:32 +000036
37
Matt Kraai096370d2001-02-07 03:52:38 +000038static char *pattern;
39
40#ifdef BB_FEATURE_FIND_TYPE
41static int type_mask = 0;
42#endif
43
44#ifdef BB_FEATURE_FIND_PERM
45static char perm_char = 0;
46static int perm_mask = 0;
47#endif
48
49#ifdef BB_FEATURE_FIND_MTIME
50static char mtime_char;
51static int mtime_days;
52#endif
Eric Andersen17d49ef1999-10-06 20:25:32 +000053
Erik Andersen3364d782000-03-28 00:58:14 +000054static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
Eric Andersen17d49ef1999-10-06 20:25:32 +000055{
Matt Kraai096370d2001-02-07 03:52:38 +000056 if (pattern != NULL) {
57 const char *tmp = strrchr(fileName, '/');
Erik Andersene49d5ec2000-02-08 19:58:47 +000058
59 if (tmp == NULL)
Matt Kraai096370d2001-02-07 03:52:38 +000060 tmp = fileName;
Erik Andersene49d5ec2000-02-08 19:58:47 +000061 else
62 tmp++;
Matt Kraai096370d2001-02-07 03:52:38 +000063 if (!(fnmatch(pattern, tmp, FNM_PERIOD) == 0))
64 goto no_match;
Erik Andersene49d5ec2000-02-08 19:58:47 +000065 }
Matt Kraai096370d2001-02-07 03:52:38 +000066#ifdef BB_FEATURE_FIND_TYPE
67 if (type_mask != 0) {
68 if (!((statbuf->st_mode & S_IFMT) == type_mask))
69 goto no_match;
70 }
71#endif
72#ifdef BB_FEATURE_FIND_PERM
73 if (perm_mask != 0) {
74 if (!((isdigit(perm_char) && (statbuf->st_mode & 07777) == perm_mask) ||
75 (perm_char == '-' && (statbuf->st_mode & perm_mask) == perm_mask) ||
76 (perm_char == '+' && (statbuf->st_mode & perm_mask) != 0)))
77 goto no_match;
78 }
79#endif
80#ifdef BB_FEATURE_FIND_MTIME
81 if (mtime_days != 0) {
82 time_t file_age = time(NULL) - statbuf->st_mtime;
83 time_t mtime_secs = mtime_days * 24 * 60 * 60;
84 if (!((isdigit(mtime_char) && mtime_secs >= file_age &&
85 mtime_secs < file_age + 24 * 60 * 60) ||
86 (mtime_char == '+' && mtime_secs >= file_age) ||
87 (mtime_char == '-' && mtime_secs < file_age)))
88 goto no_match;
89 }
90#endif
91 puts(fileName);
92no_match:
Erik Andersene49d5ec2000-02-08 19:58:47 +000093 return (TRUE);
Eric Andersen17d49ef1999-10-06 20:25:32 +000094}
95
Matt Kraai096370d2001-02-07 03:52:38 +000096#ifdef BB_FEATURE_FIND_TYPE
97static int find_type(char *type)
98{
99 int mask = 0;
100
101 switch (type[0]) {
102 case 'b':
103 mask = S_IFBLK;
104 break;
105 case 'c':
106 mask = S_IFCHR;
107 break;
108 case 'd':
109 mask = S_IFDIR;
110 break;
111 case 'p':
112 mask = S_IFIFO;
113 break;
114 case 'f':
115 mask = S_IFREG;
116 break;
117 case 'l':
118 mask = S_IFLNK;
119 break;
120 case 's':
121 mask = S_IFSOCK;
122 break;
123 }
124
125 if (mask == 0 || type[1] != '\0')
126 error_msg_and_die("invalid argument `%s' to `-type'", type);
127
128 return mask;
129}
130#endif
131
Eric Andersen17d49ef1999-10-06 20:25:32 +0000132int find_main(int argc, char **argv)
133{
Matt Kraai096370d2001-02-07 03:52:38 +0000134 int dereference = FALSE;
135 int i, firstopt, status = EXIT_SUCCESS;
Eric Andersen17d49ef1999-10-06 20:25:32 +0000136
Matt Kraai096370d2001-02-07 03:52:38 +0000137 for (firstopt = 1; firstopt < argc; firstopt++) {
138 if (argv[firstopt][0] == '-')
139 break;
Eric Andersen17d49ef1999-10-06 20:25:32 +0000140 }
Eric Andersen17d49ef1999-10-06 20:25:32 +0000141
Erik Andersene49d5ec2000-02-08 19:58:47 +0000142 /* Parse any options */
Matt Kraai096370d2001-02-07 03:52:38 +0000143 for (i = firstopt; i < argc; i++) {
144 if (strcmp(argv[i], "-follow") == 0)
145 dereference = TRUE;
146 else if (strcmp(argv[i], "-name") == 0) {
147 if (++i == argc)
148 error_msg_and_die("option `-name' requires an argument");
149 pattern = argv[i];
150#ifdef BB_FEATURE_FIND_TYPE
151 } else if (strcmp(argv[i], "-type") == 0) {
152 if (++i == argc)
153 error_msg_and_die("option `-type' requires an argument");
154 type_mask = find_type(argv[i]);
155#endif
156#ifdef BB_FEATURE_FIND_PERM
157 } else if (strcmp(argv[i], "-perm") == 0) {
158 char *end;
159 if (++i == argc)
160 error_msg_and_die("option `-perm' requires an argument");
161 perm_mask = strtol(argv[i], &end, 8);
162 if (end[0] != '\0')
163 error_msg_and_die("invalid argument `%s' to `-perm'", argv[i]);
164 if (perm_mask > 07777)
165 error_msg_and_die("invalid argument `%s' to `-perm'", argv[i]);
166 if ((perm_char = argv[i][0]) == '-')
167 perm_mask = -perm_mask;
168#endif
169#ifdef BB_FEATURE_FIND_MTIME
170 } else if (strcmp(argv[i], "-mtime") == 0) {
171 char *end;
172 if (++i == argc)
173 error_msg_and_die("option `-mtime' requires an argument");
174 mtime_days = strtol(argv[i], &end, 10);
175 if (end[0] != '\0')
176 error_msg_and_die("invalid argument `%s' to `-mtime'", argv[i]);
177 if ((mtime_char = argv[i][0]) == '-')
178 mtime_days = -mtime_days;
179#endif
180 } else
Eric Andersen67991cf2001-02-14 21:23:06 +0000181 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000182 }
183
Matt Kraai096370d2001-02-07 03:52:38 +0000184 if (firstopt == 1) {
185 if (recursive_action(".", TRUE, dereference, FALSE, fileAction,
186 fileAction, NULL) == FALSE)
187 status = EXIT_FAILURE;
188 } else {
189 for (i = 1; i < firstopt; i++) {
190 if (recursive_action(argv[i], TRUE, dereference, FALSE, fileAction,
191 fileAction, NULL) == FALSE)
192 status = EXIT_FAILURE;
193 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000194 }
195
Matt Kraai096370d2001-02-07 03:52:38 +0000196 return status;
Eric Andersen17d49ef1999-10-06 20:25:32 +0000197}