blob: a705df912d3ac330a28efa22d634bc983bb5f4ac [file] [log] [blame]
Eric Andersencc8ed391999-10-05 16:24:54 +00001/*
Mark Whitleyd3721892000-06-28 22:00:26 +00002 * Mini grep implementation for busybox using libc regex.
Eric Andersenc4996011999-10-20 22:08:37 +00003 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00004 * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
Eric Andersencc8ed391999-10-05 16:24:54 +00006 *
Eric Andersen3e0fbae1999-10-19 06:02:44 +00007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
Eric Andersencc8ed391999-10-05 16:24:54 +000021 */
Eric Andersen8876fb22003-06-20 09:01:58 +000022/*
Eric Andersen7f164cd2004-05-26 09:46:41 +000023 * Apr 2004 by Vladimir Oleynik <dzo@simtreas.ru> -
24 * correction "-e pattern1 -e pattern2" logic and more optimizations.
Eric Andersen8876fb22003-06-20 09:01:58 +000025*/
Eric Andersencc8ed391999-10-05 16:24:54 +000026
Eric Andersencc8ed391999-10-05 16:24:54 +000027#include <stdio.h>
Mark Whitleyd3721892000-06-28 22:00:26 +000028#include <stdlib.h>
Eric Andersene9b527a2000-07-09 05:56:14 +000029#include <getopt.h>
Eric Andersen8876fb22003-06-20 09:01:58 +000030#include <string.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000031#include <errno.h>
Eric Andersen3570a342000-09-25 21:45:58 +000032#include "busybox.h"
"Vladimir N. Oleynik"23f62fc2005-09-14 16:59:11 +000033#include "xregex.h"
Mark Whitleyd3721892000-06-28 22:00:26 +000034
Eric Andersened3ef502001-01-27 08:24:39 +000035
Mark Whitleyd3721892000-06-28 22:00:26 +000036/* options */
Eric Andersendec7f812004-05-26 11:47:55 +000037#define GREP_OPTS "lnqvscFiHhe:f:L"
Eric Andersenabc513a2004-05-26 11:48:29 +000038#define GREP_OPT_l (1<<0)
Eric Andersen8876fb22003-06-20 09:01:58 +000039static char print_files_with_matches;
Eric Andersenabc513a2004-05-26 11:48:29 +000040#define GREP_OPT_n (1<<1)
Eric Andersen8876fb22003-06-20 09:01:58 +000041static char print_line_num;
Eric Andersenabc513a2004-05-26 11:48:29 +000042#define GREP_OPT_q (1<<2)
Eric Andersen8876fb22003-06-20 09:01:58 +000043static char be_quiet;
Eric Andersenabc513a2004-05-26 11:48:29 +000044#define GREP_OPT_v (1<<3)
Eric Andersen8876fb22003-06-20 09:01:58 +000045typedef char invert_search_t;
46static invert_search_t invert_search;
Eric Andersenabc513a2004-05-26 11:48:29 +000047#define GREP_OPT_s (1<<4)
Eric Andersen8876fb22003-06-20 09:01:58 +000048static char suppress_err_msgs;
Eric Andersenabc513a2004-05-26 11:48:29 +000049#define GREP_OPT_c (1<<5)
Eric Andersen8876fb22003-06-20 09:01:58 +000050static char print_match_counts;
Eric Andersenabc513a2004-05-26 11:48:29 +000051#define GREP_OPT_F (1<<6)
Eric Andersen8876fb22003-06-20 09:01:58 +000052static char fgrep_flag;
Eric Andersenabc513a2004-05-26 11:48:29 +000053#define GREP_OPT_i (1<<7)
54#define GREP_OPT_H (1<<8)
55#define GREP_OPT_h (1<<9)
56#define GREP_OPT_e (1<<10)
57#define GREP_OPT_f (1<<11)
58#define GREP_OPT_L (1<<12)
Eric Andersendec7f812004-05-26 11:47:55 +000059static char print_files_without_matches;
Eric Andersen8876fb22003-06-20 09:01:58 +000060#ifdef CONFIG_FEATURE_GREP_CONTEXT
61#define GREP_OPT_CONTEXT "A:B:C"
Eric Andersenabc513a2004-05-26 11:48:29 +000062#define GREP_OPT_A (1<<13)
63#define GREP_OPT_B (1<<14)
64#define GREP_OPT_C (1<<15)
65#define GREP_OPT_E (1<<16)
Eric Andersen8876fb22003-06-20 09:01:58 +000066#else
67#define GREP_OPT_CONTEXT ""
Eric Andersenabc513a2004-05-26 11:48:29 +000068#define GREP_OPT_E (1<<13)
Eric Andersen8876fb22003-06-20 09:01:58 +000069#endif
70#ifdef CONFIG_FEATURE_GREP_EGREP_ALIAS
71# define OPT_EGREP "E"
72#else
73# define OPT_EGREP ""
74#endif
75
76static int reflags;
77static int print_filename;
Mark Whitleyd3721892000-06-28 22:00:26 +000078
Eric Andersenbdfd0d72001-10-24 05:00:29 +000079#ifdef CONFIG_FEATURE_GREP_CONTEXT
Eric Andersen8876fb22003-06-20 09:01:58 +000080static int lines_before;
81static int lines_after;
82static char **before_buf;
83static int last_line_printed;
Eric Andersenbdfd0d72001-10-24 05:00:29 +000084#endif /* CONFIG_FEATURE_GREP_CONTEXT */
Mark Whitley2fd52982001-02-09 00:41:10 +000085
86/* globals used internally */
Eric Andersen8876fb22003-06-20 09:01:58 +000087static llist_t *pattern_head; /* growable list of patterns to match */
88static char *cur_file; /* the current file we are reading */
Mark Whitleyd3721892000-06-28 22:00:26 +000089
Mark Whitleyfa43e542001-05-24 18:36:18 +000090
Mark Whitley2fd52982001-02-09 00:41:10 +000091static void print_line(const char *line, int linenum, char decoration)
92{
Eric Andersenbdfd0d72001-10-24 05:00:29 +000093#ifdef CONFIG_FEATURE_GREP_CONTEXT
Eric Andersenaff114c2004-04-14 17:51:38 +000094 /* possibly print the little '--' separator */
Matt Kraaiedc80652001-05-22 14:29:27 +000095 if ((lines_before || lines_after) && last_line_printed &&
96 last_line_printed < linenum - 1) {
Mark Whitley2fd52982001-02-09 00:41:10 +000097 puts("--");
98 }
99 last_line_printed = linenum;
100#endif
Mike Frysinger5ba5f4d2005-04-16 04:56:11 +0000101 if (print_filename > 0)
Mark Whitley2fd52982001-02-09 00:41:10 +0000102 printf("%s%c", cur_file, decoration);
103 if (print_line_num)
104 printf("%i%c", linenum, decoration);
105 puts(line);
106}
Mark Whitleyd3721892000-06-28 22:00:26 +0000107
Eric Andersen8876fb22003-06-20 09:01:58 +0000108
109static int grep_file(FILE *file)
Mark Whitleyd3721892000-06-28 22:00:26 +0000110{
Eric Andersen8876fb22003-06-20 09:01:58 +0000111 char *line;
112 invert_search_t ret;
Mark Whitleyd3721892000-06-28 22:00:26 +0000113 int linenum = 0;
Matt Kraaideb95f62000-08-06 15:25:53 +0000114 int nmatches = 0;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000115#ifdef CONFIG_FEATURE_GREP_CONTEXT
Mark Whitley2fd52982001-02-09 00:41:10 +0000116 int print_n_lines_after = 0;
117 int curpos = 0; /* track where we are in the circular 'before' buffer */
118 int idx = 0; /* used for iteration through the circular buffer */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000119#endif /* CONFIG_FEATURE_GREP_CONTEXT */
Mark Whitleyd3721892000-06-28 22:00:26 +0000120
Manuel Novoa III cad53642003-03-19 09:13:01 +0000121 while ((line = bb_get_chomped_line_from_file(file)) != NULL) {
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000122 llist_t *pattern_ptr = pattern_head;
123
Mark Whitleyd3721892000-06-28 22:00:26 +0000124 linenum++;
Eric Andersen8876fb22003-06-20 09:01:58 +0000125 ret = 0;
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000126 while (pattern_ptr) {
127 if (fgrep_flag) {
Eric Andersen8876fb22003-06-20 09:01:58 +0000128 ret = strstr(line, pattern_ptr->data) != NULL;
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000129 } else {
130 /*
131 * test for a postitive-assertion match (regexec returns success (0)
132 * and the user did not specify invert search), or a negative-assertion
133 * match (regexec returns failure (REG_NOMATCH) and the user specified
134 * invert search)
135 */
136 regex_t regex;
137 xregcomp(&regex, pattern_ptr->data, reflags);
Eric Andersen7f164cd2004-05-26 09:46:41 +0000138 ret |= regexec(&regex, line, 0, NULL, 0) == 0;
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000139 regfree(&regex);
140 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000141 pattern_ptr = pattern_ptr->link;
142 } /* while (pattern_ptr) */
Mark Whitleyd3721892000-06-28 22:00:26 +0000143
Eric Andersen8876fb22003-06-20 09:01:58 +0000144 if ((ret ^ invert_search)) {
145
146 if (print_files_with_matches || be_quiet)
147 free(line);
148
149 /* if we found a match but were told to be quiet, stop here */
Eric Andersendec7f812004-05-26 11:47:55 +0000150 if (be_quiet || print_files_without_matches)
Eric Andersen8876fb22003-06-20 09:01:58 +0000151 return -1;
Mark Whitleyd3721892000-06-28 22:00:26 +0000152
Mark Whitleyfa43e542001-05-24 18:36:18 +0000153 /* keep track of matches */
154 nmatches++;
Mark Whitley1d9d4112001-05-21 21:13:00 +0000155
Mark Whitleyfa43e542001-05-24 18:36:18 +0000156 /* if we're just printing filenames, we stop after the first match */
157 if (print_files_with_matches)
158 break;
Mark Whitley1d9d4112001-05-21 21:13:00 +0000159
Mark Whitleyfa43e542001-05-24 18:36:18 +0000160 /* print the matched line */
161 if (print_match_counts == 0) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000162#ifdef CONFIG_FEATURE_GREP_CONTEXT
Mark Whitleyfa43e542001-05-24 18:36:18 +0000163 int prevpos = (curpos == 0) ? lines_before - 1 : curpos - 1;
Mark Whitley2fd52982001-02-09 00:41:10 +0000164
Mark Whitleyfa43e542001-05-24 18:36:18 +0000165 /* if we were told to print 'before' lines and there is at least
166 * one line in the circular buffer, print them */
167 if (lines_before && before_buf[prevpos] != NULL) {
168 int first_buf_entry_line_num = linenum - lines_before;
Mark Whitley2fd52982001-02-09 00:41:10 +0000169
Mark Whitleyfa43e542001-05-24 18:36:18 +0000170 /* advance to the first entry in the circular buffer, and
171 * figure out the line number is of the first line in the
172 * buffer */
173 idx = curpos;
174 while (before_buf[idx] == NULL) {
175 idx = (idx + 1) % lines_before;
176 first_buf_entry_line_num++;
177 }
178
179 /* now print each line in the buffer, clearing them as we go */
180 while (before_buf[idx] != NULL) {
181 print_line(before_buf[idx], first_buf_entry_line_num, '-');
182 free(before_buf[idx]);
183 before_buf[idx] = NULL;
184 idx = (idx + 1) % lines_before;
185 first_buf_entry_line_num++;
186 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000187 }
188
Mark Whitleyfa43e542001-05-24 18:36:18 +0000189 /* make a note that we need to print 'after' lines */
190 print_n_lines_after = lines_after;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000191#endif /* CONFIG_FEATURE_GREP_CONTEXT */
Mark Whitleyfa43e542001-05-24 18:36:18 +0000192 print_line(line, linenum, ':');
Mark Whitley2fd52982001-02-09 00:41:10 +0000193 }
Matt Kraai0810f722001-01-04 15:11:52 +0000194 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000195#ifdef CONFIG_FEATURE_GREP_CONTEXT
Mark Whitleyfa43e542001-05-24 18:36:18 +0000196 else { /* no match */
197 /* Add the line to the circular 'before' buffer */
198 if(lines_before) {
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000199 free(before_buf[curpos]);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000200 before_buf[curpos] = bb_xstrdup(line);
Mark Whitleyfa43e542001-05-24 18:36:18 +0000201 curpos = (curpos + 1) % lines_before;
202 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000203 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000204
Mark Whitleyfa43e542001-05-24 18:36:18 +0000205 /* if we need to print some context lines after the last match, do so */
206 if (print_n_lines_after && (last_line_printed != linenum)) {
207 print_line(line, linenum, '-');
208 print_n_lines_after--;
209 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000210#endif /* CONFIG_FEATURE_GREP_CONTEXT */
Mark Whitleyd3721892000-06-28 22:00:26 +0000211 free(line);
212 }
Mark Whitley8f122432000-07-18 18:37:01 +0000213
Mark Whitley35e59be2001-05-14 19:40:32 +0000214
215 /* special-case file post-processing for options where we don't print line
Mark Whitley1d9d4112001-05-21 21:13:00 +0000216 * matches, just filenames and possibly match counts */
Mark Whitley35e59be2001-05-14 19:40:32 +0000217
Mark Whitley1d9d4112001-05-21 21:13:00 +0000218 /* grep -c: print [filename:]count, even if count is zero */
Mark Whitley35e59be2001-05-14 19:40:32 +0000219 if (print_match_counts) {
Mike Frysinger5ba5f4d2005-04-16 04:56:11 +0000220 if (print_filename > 0)
Mark Whitley1d9d4112001-05-21 21:13:00 +0000221 printf("%s:", cur_file);
Eric Andersen00344432001-07-31 23:18:49 +0000222 printf("%d\n", nmatches);
Mark Whitley35e59be2001-05-14 19:40:32 +0000223 }
Mark Whitley1d9d4112001-05-21 21:13:00 +0000224
225 /* grep -l: print just the filename, but only if we grepped the line in the file */
226 if (print_files_with_matches && nmatches > 0) {
Matt Kraai59df6f72001-05-16 14:21:09 +0000227 puts(cur_file);
Mark Whitley35e59be2001-05-14 19:40:32 +0000228 }
229
Eric Andersendec7f812004-05-26 11:47:55 +0000230 /* grep -L: print just the filename, but only if we didn't grep the line in the file */
231 if (print_files_without_matches && nmatches == 0) {
232 puts(cur_file);
233 }
234
Eric Andersen8876fb22003-06-20 09:01:58 +0000235 return nmatches;
Mark Whitleyd3721892000-06-28 22:00:26 +0000236}
Eric Andersencc8ed391999-10-05 16:24:54 +0000237
Eric Andersen8876fb22003-06-20 09:01:58 +0000238static void load_regexes_from_file(llist_t *fopt)
Mark Whitleyfa43e542001-05-24 18:36:18 +0000239{
240 char *line;
Eric Andersen8876fb22003-06-20 09:01:58 +0000241 FILE *f;
242
243 while(fopt) {
244 llist_t *cur = fopt;
245 char *ffile = cur->data;
246
247 fopt = cur->link;
248 free(cur);
249 f = bb_xfopen(ffile, "r");
Eric Andersen31c27a92004-10-08 08:10:57 +0000250 while ((line = bb_get_chomped_line_from_file(f)) != NULL) {
251 pattern_head = llist_add_to(pattern_head, line);
252 }
Mark Whitleyfa43e542001-05-24 18:36:18 +0000253 }
254}
Mark Whitleyfa43e542001-05-24 18:36:18 +0000255
256
Erik Andersene49d5ec2000-02-08 19:58:47 +0000257extern int grep_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000258{
Eric Andersen8876fb22003-06-20 09:01:58 +0000259 FILE *file;
260 int matched;
261 unsigned long opt;
Eric Andersen31c27a92004-10-08 08:10:57 +0000262 llist_t *fopt = NULL;
Matt Kraai999623e2001-10-29 15:49:03 +0000263
Mark Whitleyd3721892000-06-28 22:00:26 +0000264 /* do normal option parsing */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000265#ifdef CONFIG_FEATURE_GREP_CONTEXT
Eric Andersen8876fb22003-06-20 09:01:58 +0000266 {
267 char *junk;
268 char *slines_after;
269 char *slines_before;
270 char *Copt;
271
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000272 bb_opt_complementally = "H-h:e*:f*:C-AB";
Eric Andersen8876fb22003-06-20 09:01:58 +0000273 opt = bb_getopt_ulflags(argc, argv,
274 GREP_OPTS GREP_OPT_CONTEXT OPT_EGREP,
275 &pattern_head, &fopt,
276 &slines_after, &slines_before, &Copt);
277
278 if(opt & GREP_OPT_C) {
279 /* C option unseted A and B options, but next -A or -B
280 may be ovewrite own option */
281 if(!(opt & GREP_OPT_A)) /* not overwtited */
282 slines_after = Copt;
283 if(!(opt & GREP_OPT_B)) /* not overwtited */
284 slines_before = Copt;
285 opt |= GREP_OPT_A|GREP_OPT_B; /* set for parse now */
Eric Andersen053b1462000-06-13 06:24:53 +0000286 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000287 if(opt & GREP_OPT_A) {
288 lines_after = strtoul(slines_after, &junk, 10);
289 if(*junk != '\0')
290 bb_error_msg_and_die("invalid context length argument");
291 }
292 if(opt & GREP_OPT_B) {
293 lines_before = strtoul(slines_before, &junk, 10);
294 if(*junk != '\0')
295 bb_error_msg_and_die("invalid context length argument");
296 }
297 /* sanity checks after parse may be invalid numbers ;-) */
Eric Andersendec7f812004-05-26 11:47:55 +0000298 if ((opt & (GREP_OPT_c|GREP_OPT_q|GREP_OPT_l|GREP_OPT_L))) {
Eric Andersen8876fb22003-06-20 09:01:58 +0000299 opt &= ~GREP_OPT_n;
300 lines_before = 0;
301 lines_after = 0;
302 } else if(lines_before > 0)
303 before_buf = (char **)xcalloc(lines_before, sizeof(char *));
304 }
305#else
306 /* with auto sanity checks */
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000307 bb_opt_complementally = "H-h:e*:f*:c-n:q-n:l-n";
Eric Andersen8876fb22003-06-20 09:01:58 +0000308 opt = bb_getopt_ulflags(argc, argv, GREP_OPTS OPT_EGREP,
309 &pattern_head, &fopt);
310
311#endif
312 print_files_with_matches = opt & GREP_OPT_l;
Eric Andersendec7f812004-05-26 11:47:55 +0000313 print_files_without_matches = (opt & GREP_OPT_L) != 0;
Eric Andersen8876fb22003-06-20 09:01:58 +0000314 print_line_num = opt & GREP_OPT_n;
315 be_quiet = opt & GREP_OPT_q;
316 invert_search = (opt & GREP_OPT_v) != 0; /* 0 | 1 */
317 suppress_err_msgs = opt & GREP_OPT_s;
318 print_match_counts = opt & GREP_OPT_c;
319 fgrep_flag = opt & GREP_OPT_F;
320 if(opt & GREP_OPT_H)
321 print_filename++;
322 if(opt & GREP_OPT_h)
323 print_filename--;
324 if(opt & GREP_OPT_f)
325 load_regexes_from_file(fopt);
326
Mike Frysinger15ca5862005-07-31 22:41:05 +0000327#ifdef CONFIG_FEATURE_GREP_FGREP_ALIAS
328 if(bb_applet_name[0] == 'f')
329 fgrep_flag = 1;
330#endif
331
Eric Andersen8876fb22003-06-20 09:01:58 +0000332#ifdef CONFIG_FEATURE_GREP_EGREP_ALIAS
333 if(bb_applet_name[0] == 'e' || (opt & GREP_OPT_E))
334 reflags = REG_EXTENDED | REG_NOSUB;
335 else
336#endif
337 reflags = REG_NOSUB;
338
339 if(opt & GREP_OPT_i)
340 reflags |= REG_ICASE;
341
342 argv += optind;
343 argc -= optind;
Eric Andersen053b1462000-06-13 06:24:53 +0000344
Mark Whitleyfa43e542001-05-24 18:36:18 +0000345 /* if we didn't get a pattern from a -e and no command file was specified,
346 * argv[optind] should be the pattern. no pattern, no worky */
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000347 if (pattern_head == NULL) {
Eric Andersen8876fb22003-06-20 09:01:58 +0000348 if (*argv == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000349 bb_show_usage();
Mark Whitleyfa43e542001-05-24 18:36:18 +0000350 else {
Eric Andersen8876fb22003-06-20 09:01:58 +0000351 pattern_head = llist_add_to(pattern_head, *argv++);
352 argc--;
Mark Whitleyfa43e542001-05-24 18:36:18 +0000353 }
354 }
Mark Whitleyd3721892000-06-28 22:00:26 +0000355
Mark Whitleyfa43e542001-05-24 18:36:18 +0000356 /* argv[(optind)..(argc-1)] should be names of file to grep through. If
Mark Whitleyd3721892000-06-28 22:00:26 +0000357 * there is more than one file to grep, we will print the filenames */
Eric Andersen8876fb22003-06-20 09:01:58 +0000358 if (argc > 1) {
Mark Whitleyd3721892000-06-28 22:00:26 +0000359 print_filename++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000360
Mark Whitley2e1148b2000-06-28 22:59:30 +0000361 /* If no files were specified, or '-' was specified, take input from
362 * stdin. Otherwise, we grep through all the files specified. */
Eric Andersen8876fb22003-06-20 09:01:58 +0000363 } else if (argc == 0) {
364 argc++;
Mark Whitley2ef880b2000-07-18 21:02:06 +0000365 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000366 matched = 0;
367 while (argc--) {
368 cur_file = *argv++;
369 if(!cur_file || (*cur_file == '-' && !cur_file[1])) {
370 cur_file = "-";
371 file = stdin;
372 } else {
Mark Whitleyd3721892000-06-28 22:00:26 +0000373 file = fopen(cur_file, "r");
Eric Andersen8876fb22003-06-20 09:01:58 +0000374 }
Mark Whitleyd3721892000-06-28 22:00:26 +0000375 if (file == NULL) {
376 if (!suppress_err_msgs)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000377 bb_perror_msg("%s", cur_file);
Eric Andersen8876fb22003-06-20 09:01:58 +0000378 } else {
379 matched += grep_file(file);
380 if(matched < 0) {
381 /* we found a match but were told to be quiet, stop here and
382 * return success */
383 break;
Mark Whitley2ef880b2000-07-18 21:02:06 +0000384 }
Mark Whitleyd3721892000-06-28 22:00:26 +0000385 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000386 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000387 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000388
389#ifdef CONFIG_FEATURE_CLEAN_UP
390 /* destroy all the elments in the pattern list */
391 while (pattern_head) {
392 llist_t *pattern_head_ptr = pattern_head;
393
394 pattern_head = pattern_head->link;
395 free(pattern_head_ptr);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000396 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000397#endif
Mark Whitleyd3721892000-06-28 22:00:26 +0000398
Mark Whitleyb5c29852001-02-01 21:02:41 +0000399 return !matched; /* invert return value 0 = success, 1 = failed */
Eric Andersencc8ed391999-10-05 16:24:54 +0000400}