blob: 193b48c1130e980696554eccb9d032f5a598dce6 [file] [log] [blame]
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +00001/* vi: set sw=4 ts=4: */
Eric Andersencc8ed391999-10-05 16:24:54 +00002/*
Mark Whitleyd3721892000-06-28 22:00:26 +00003 * Mini grep implementation for busybox using libc regex.
Eric Andersenc4996011999-10-20 22:08:37 +00004 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
Eric Andersenc7bda1c2004-03-15 08:29:22 +00006 * Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
Eric Andersencc8ed391999-10-05 16:24:54 +00007 *
Bernhard Reutner-Fischer7fee0c42006-09-13 16:39:19 +00008 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersencc8ed391999-10-05 16:24:54 +00009 */
Denis Vlasenko1d426652008-03-17 09:09:09 +000010/* BB_AUDIT SUSv3 defects - unsupported option -x "match whole line only". */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +000011/* BB_AUDIT GNU defects - always acts as -a. */
12/* http://www.opengroup.org/onlinepubs/007904975/utilities/grep.html */
Eric Andersen8876fb22003-06-20 09:01:58 +000013/*
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +000014 * 2004,2006 (C) Vladimir Oleynik <dzo@simtreas.ru> -
Eric Andersen7f164cd2004-05-26 09:46:41 +000015 * correction "-e pattern1 -e pattern2" logic and more optimizations.
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +000016 * precompiled regex
Denis Vlasenko51937532006-09-29 20:58:53 +000017 */
18/*
19 * (C) 2006 Jac Goudsmit added -o option
20 */
Eric Andersencc8ed391999-10-05 16:24:54 +000021
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000022#include "libbb.h"
"Vladimir N. Oleynik"23f62fc2005-09-14 16:59:11 +000023#include "xregex.h"
Mark Whitleyd3721892000-06-28 22:00:26 +000024
Mark Whitleyd3721892000-06-28 22:00:26 +000025/* options */
Denis Vlasenko385304d2007-02-25 02:38:20 +000026#define OPTSTR_GREP \
Denis Vlasenko4652daa2007-07-15 12:39:08 +000027 "lnqvscFiHhe:f:Lorm:" \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000028 IF_FEATURE_GREP_CONTEXT("A:B:C:") \
29 IF_FEATURE_GREP_EGREP_ALIAS("E") \
30 IF_DESKTOP("w") \
31 IF_EXTRA_COMPAT("z") \
Denis Vlasenkof8ea0f32007-02-25 02:38:54 +000032 "aI"
Denis Vlasenko3266aa92009-04-01 11:24:04 +000033
Denis Vlasenkof8ea0f32007-02-25 02:38:54 +000034/* ignored: -a "assume all files to be text" */
35/* ignored: -I "assume binary files have no matches" */
Denis Vlasenko385304d2007-02-25 02:38:20 +000036
37enum {
Denis Vlasenko4652daa2007-07-15 12:39:08 +000038 OPTBIT_l, /* list matched file names only */
39 OPTBIT_n, /* print line# */
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +000040 OPTBIT_q, /* quiet - exit(EXIT_SUCCESS) of first match */
Denis Vlasenko4652daa2007-07-15 12:39:08 +000041 OPTBIT_v, /* invert the match, to select non-matching lines */
42 OPTBIT_s, /* suppress errors about file open errors */
43 OPTBIT_c, /* count matches per file (suppresses normal output) */
44 OPTBIT_F, /* literal match */
45 OPTBIT_i, /* case-insensitive */
46 OPTBIT_H, /* force filename display */
47 OPTBIT_h, /* inhibit filename display */
48 OPTBIT_e, /* -e PATTERN */
49 OPTBIT_f, /* -f FILE_WITH_PATTERNS */
50 OPTBIT_L, /* list unmatched file names only */
51 OPTBIT_o, /* show only matching parts of lines */
52 OPTBIT_r, /* recurse dirs */
53 OPTBIT_m, /* -m MAX_MATCHES */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000054 IF_FEATURE_GREP_CONTEXT( OPTBIT_A ,) /* -A NUM: after-match context */
55 IF_FEATURE_GREP_CONTEXT( OPTBIT_B ,) /* -B NUM: before-match context */
56 IF_FEATURE_GREP_CONTEXT( OPTBIT_C ,) /* -C NUM: -A and -B combined */
57 IF_FEATURE_GREP_EGREP_ALIAS(OPTBIT_E ,) /* extended regexp */
58 IF_DESKTOP( OPTBIT_w ,) /* whole word match */
59 IF_EXTRA_COMPAT( OPTBIT_z ,) /* input is NUL terminated */
Denis Vlasenko385304d2007-02-25 02:38:20 +000060 OPT_l = 1 << OPTBIT_l,
61 OPT_n = 1 << OPTBIT_n,
62 OPT_q = 1 << OPTBIT_q,
63 OPT_v = 1 << OPTBIT_v,
64 OPT_s = 1 << OPTBIT_s,
65 OPT_c = 1 << OPTBIT_c,
66 OPT_F = 1 << OPTBIT_F,
67 OPT_i = 1 << OPTBIT_i,
68 OPT_H = 1 << OPTBIT_H,
69 OPT_h = 1 << OPTBIT_h,
70 OPT_e = 1 << OPTBIT_e,
71 OPT_f = 1 << OPTBIT_f,
72 OPT_L = 1 << OPTBIT_L,
73 OPT_o = 1 << OPTBIT_o,
74 OPT_r = 1 << OPTBIT_r,
Denis Vlasenko4652daa2007-07-15 12:39:08 +000075 OPT_m = 1 << OPTBIT_m,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000076 OPT_A = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_A)) + 0,
77 OPT_B = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_B)) + 0,
78 OPT_C = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_C)) + 0,
79 OPT_E = IF_FEATURE_GREP_EGREP_ALIAS((1 << OPTBIT_E)) + 0,
80 OPT_w = IF_DESKTOP( (1 << OPTBIT_w)) + 0,
81 OPT_z = IF_EXTRA_COMPAT( (1 << OPTBIT_z)) + 0,
Denis Vlasenko385304d2007-02-25 02:38:20 +000082};
83
Denis Vlasenko9acfed22007-06-08 15:41:27 +000084#define PRINT_FILES_WITH_MATCHES (option_mask32 & OPT_l)
85#define PRINT_LINE_NUM (option_mask32 & OPT_n)
86#define BE_QUIET (option_mask32 & OPT_q)
87#define SUPPRESS_ERR_MSGS (option_mask32 & OPT_s)
88#define PRINT_MATCH_COUNTS (option_mask32 & OPT_c)
89#define FGREP_FLAG (option_mask32 & OPT_F)
Denis Vlasenko385304d2007-02-25 02:38:20 +000090#define PRINT_FILES_WITHOUT_MATCHES (option_mask32 & OPT_L)
Denis Vlasenko83518d12009-03-20 22:17:13 +000091#define NUL_DELIMITED (option_mask32 & OPT_z)
Eric Andersen8876fb22003-06-20 09:01:58 +000092
Denis Vlasenko04ea11b2007-09-10 12:18:32 +000093struct globals {
94 int max_matches;
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +000095#if !ENABLE_EXTRA_COMPAT
Denis Vlasenko04ea11b2007-09-10 12:18:32 +000096 int reflags;
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +000097#else
98 RE_TRANSLATE_TYPE case_fold; /* RE_TRANSLATE_TYPE is [[un]signed] char* */
99#endif
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000100 smalluint invert_search;
101 smalluint print_filename;
102 smalluint open_errors;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000103#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000104 smalluint did_print_line;
105 int lines_before;
106 int lines_after;
107 char **before_buf;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000108 IF_EXTRA_COMPAT(size_t *before_buf_size;)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000109 int last_line_printed;
110#endif
111 /* globals used internally */
112 llist_t *pattern_head; /* growable list of patterns to match */
113 const char *cur_file; /* the current file we are reading */
114};
115#define G (*(struct globals*)&bb_common_bufsiz1)
Denis Vlasenko7049ff82008-06-25 09:53:17 +0000116#define INIT_G() do { \
117 struct G_sizecheck { \
118 char G_sizecheck[sizeof(G) > COMMON_BUFSIZE ? -1 : 1]; \
119 }; \
120} while (0)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000121#define max_matches (G.max_matches )
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000122#if !ENABLE_EXTRA_COMPAT
Denys Vlasenko09449632009-07-29 01:20:09 +0200123# define reflags (G.reflags )
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000124#else
Denys Vlasenko09449632009-07-29 01:20:09 +0200125# define case_fold (G.case_fold )
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000126/* http://www.delorie.com/gnu/docs/regex/regex_46.html */
Denys Vlasenko09449632009-07-29 01:20:09 +0200127# define reflags re_syntax_options
128# undef REG_NOSUB
129# undef REG_EXTENDED
130# undef REG_ICASE
131# define REG_NOSUB bug:is:here /* should not be used */
132/* Just RE_SYNTAX_EGREP is not enough, need to enable {n[,[m]]} too */
133# define REG_EXTENDED (RE_SYNTAX_EGREP | RE_INTERVALS | RE_NO_BK_BRACES)
134# define REG_ICASE bug:is:here /* should not be used */
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000135#endif
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000136#define invert_search (G.invert_search )
137#define print_filename (G.print_filename )
138#define open_errors (G.open_errors )
139#define did_print_line (G.did_print_line )
140#define lines_before (G.lines_before )
141#define lines_after (G.lines_after )
142#define before_buf (G.before_buf )
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000143#define before_buf_size (G.before_buf_size )
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000144#define last_line_printed (G.last_line_printed )
145#define pattern_head (G.pattern_head )
146#define cur_file (G.cur_file )
147
Mark Whitleyd3721892000-06-28 22:00:26 +0000148
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000149typedef struct grep_list_data_t {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000150 char *pattern;
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000151/* for GNU regex, matched_range must be persistent across grep_file() calls */
152#if !ENABLE_EXTRA_COMPAT
153 regex_t compiled_regex;
154 regmatch_t matched_range;
155#else
156 struct re_pattern_buffer compiled_regex;
157 struct re_registers matched_range;
158#endif
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000159#define ALLOCATED 1
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000160#define COMPILED 2
161 int flg_mem_alocated_compiled;
162} grep_list_data_t;
Mark Whitleyfa43e542001-05-24 18:36:18 +0000163
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000164#if !ENABLE_EXTRA_COMPAT
165#define print_line(line, line_len, linenum, decoration) \
166 print_line(line, linenum, decoration)
167#endif
168static void print_line(const char *line, size_t line_len, int linenum, char decoration)
Mark Whitley2fd52982001-02-09 00:41:10 +0000169{
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000170#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000171 /* Happens when we go to next file, immediately hit match
172 * and try to print prev context... from prev file! Don't do it */
173 if (linenum < 1)
174 return;
Eric Andersenaff114c2004-04-14 17:51:38 +0000175 /* possibly print the little '--' separator */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000176 if ((lines_before || lines_after) && did_print_line
177 && last_line_printed != linenum - 1
178 ) {
Mark Whitley2fd52982001-02-09 00:41:10 +0000179 puts("--");
180 }
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000181 /* guard against printing "--" before first line of first file */
182 did_print_line = 1;
Mark Whitley2fd52982001-02-09 00:41:10 +0000183 last_line_printed = linenum;
184#endif
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000185 if (print_filename)
Mark Whitley2fd52982001-02-09 00:41:10 +0000186 printf("%s%c", cur_file, decoration);
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000187 if (PRINT_LINE_NUM)
Mark Whitley2fd52982001-02-09 00:41:10 +0000188 printf("%i%c", linenum, decoration);
Denis Vlasenko51937532006-09-29 20:58:53 +0000189 /* Emulate weird GNU grep behavior with -ov */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000190 if ((option_mask32 & (OPT_v|OPT_o)) != (OPT_v|OPT_o)) {
191#if !ENABLE_EXTRA_COMPAT
Denis Vlasenko51937532006-09-29 20:58:53 +0000192 puts(line);
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000193#else
194 fwrite(line, 1, line_len, stdout);
Denis Vlasenko83518d12009-03-20 22:17:13 +0000195 putchar(NUL_DELIMITED ? '\0' : '\n');
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000196#endif
197 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000198}
Mark Whitleyd3721892000-06-28 22:00:26 +0000199
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000200#if ENABLE_EXTRA_COMPAT
201/* Unlike getline, this one removes trailing '\n' */
202static ssize_t FAST_FUNC bb_getline(char **line_ptr, size_t *line_alloc_len, FILE *file)
203{
204 ssize_t res_sz;
205 char *line;
Denis Vlasenko83518d12009-03-20 22:17:13 +0000206 int delim = (NUL_DELIMITED ? '\0' : '\n');
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000207
Denis Vlasenko83518d12009-03-20 22:17:13 +0000208 res_sz = getdelim(line_ptr, line_alloc_len, delim, file);
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000209 line = *line_ptr;
210
211 if (res_sz > 0) {
Denis Vlasenko83518d12009-03-20 22:17:13 +0000212 if (line[res_sz - 1] == delim)
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000213 line[--res_sz] = '\0';
214 } else {
215 free(line); /* uclibc allocates a buffer even on EOF. WTF? */
216 }
217 return res_sz;
218}
219#endif
220
Eric Andersen8876fb22003-06-20 09:01:58 +0000221static int grep_file(FILE *file)
Mark Whitleyd3721892000-06-28 22:00:26 +0000222{
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000223 smalluint found;
Mark Whitleyd3721892000-06-28 22:00:26 +0000224 int linenum = 0;
Matt Kraaideb95f62000-08-06 15:25:53 +0000225 int nmatches = 0;
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000226#if !ENABLE_EXTRA_COMPAT
227 char *line;
228#else
229 char *line = NULL;
230 ssize_t line_len;
231 size_t line_alloc_len;
Denys Vlasenko6dc0ace2009-12-04 02:48:14 +0100232# define rm_so start[0]
233# define rm_eo end[0]
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000234#endif
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000235#if ENABLE_FEATURE_GREP_CONTEXT
Mark Whitley2fd52982001-02-09 00:41:10 +0000236 int print_n_lines_after = 0;
237 int curpos = 0; /* track where we are in the circular 'before' buffer */
238 int idx = 0; /* used for iteration through the circular buffer */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000239#else
240 enum { print_n_lines_after = 0 };
Denys Vlasenko6dc0ace2009-12-04 02:48:14 +0100241#endif
Mark Whitleyd3721892000-06-28 22:00:26 +0000242
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000243 while (
244#if !ENABLE_EXTRA_COMPAT
245 (line = xmalloc_fgetline(file)) != NULL
246#else
247 (line_len = bb_getline(&line, &line_alloc_len, file)) >= 0
248#endif
249 ) {
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000250 llist_t *pattern_ptr = pattern_head;
Denis Vlasenko68102362007-11-04 00:46:03 +0000251 grep_list_data_t *gl = gl; /* for gcc */
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000252
Mark Whitleyd3721892000-06-28 22:00:26 +0000253 linenum++;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000254 found = 0;
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000255 while (pattern_ptr) {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000256 gl = (grep_list_data_t *)pattern_ptr->data;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000257 if (FGREP_FLAG) {
Denis Vlasenkoac074b32007-09-10 12:23:27 +0000258 found |= (strstr(line, gl->pattern) != NULL);
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000259 } else {
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000260 if (!(gl->flg_mem_alocated_compiled & COMPILED)) {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000261 gl->flg_mem_alocated_compiled |= COMPILED;
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000262#if !ENABLE_EXTRA_COMPAT
263 xregcomp(&gl->compiled_regex, gl->pattern, reflags);
264#else
265 memset(&gl->compiled_regex, 0, sizeof(gl->compiled_regex));
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000266 gl->compiled_regex.translate = case_fold; /* for -i */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000267 if (re_compile_pattern(gl->pattern, strlen(gl->pattern), &gl->compiled_regex))
268 bb_error_msg_and_die("bad regex '%s'", gl->pattern);
269#endif
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000270 }
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000271#if !ENABLE_EXTRA_COMPAT
272 gl->matched_range.rm_so = 0;
273 gl->matched_range.rm_eo = 0;
274#endif
275 if (
276#if !ENABLE_EXTRA_COMPAT
277 regexec(&gl->compiled_regex, line, 1, &gl->matched_range, 0) == 0
278#else
279 re_search(&gl->compiled_regex, line, line_len,
280 /*start:*/ 0, /*range:*/ line_len,
281 &gl->matched_range) >= 0
282#endif
283 ) {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000284 if (!(option_mask32 & OPT_w))
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000285 found = 1;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000286 else {
287 char c = ' ';
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000288 if (gl->matched_range.rm_so)
289 c = line[gl->matched_range.rm_so - 1];
Denis Vlasenko385304d2007-02-25 02:38:20 +0000290 if (!isalnum(c) && c != '_') {
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000291 c = line[gl->matched_range.rm_eo];
Denis Vlasenko385304d2007-02-25 02:38:20 +0000292 if (!c || (!isalnum(c) && c != '_'))
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000293 found = 1;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000294 }
295 }
296 }
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000297 }
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000298 /* If it's non-inverted search, we can stop
299 * at first match */
300 if (found && !invert_search)
301 goto do_found;
Eric Andersen8876fb22003-06-20 09:01:58 +0000302 pattern_ptr = pattern_ptr->link;
303 } /* while (pattern_ptr) */
Mark Whitleyd3721892000-06-28 22:00:26 +0000304
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000305 if (found ^ invert_search) {
306 do_found:
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000307 /* keep track of matches */
308 nmatches++;
Mark Whitley1d9d4112001-05-21 21:13:00 +0000309
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000310 /* quiet/print (non)matching file names only? */
311 if (option_mask32 & (OPT_q|OPT_l|OPT_L)) {
312 free(line); /* we don't need line anymore */
313 if (BE_QUIET) {
314 /* manpage says about -q:
315 * "exit immediately with zero status
316 * if any match is found,
317 * even if errors were detected" */
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000318 exit(EXIT_SUCCESS);
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000319 }
320 /* if we're just printing filenames, we stop after the first match */
321 if (PRINT_FILES_WITH_MATCHES) {
322 puts(cur_file);
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +0000323 /* fall through to "return 1" */
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000324 }
325 /* OPT_L aka PRINT_FILES_WITHOUT_MATCHES: return early */
326 return 1; /* one match */
327 }
Mark Whitley1d9d4112001-05-21 21:13:00 +0000328
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000329#if ENABLE_FEATURE_GREP_CONTEXT
330 /* Were we printing context and saw next (unwanted) match? */
331 if ((option_mask32 & OPT_m) && nmatches > max_matches)
332 break;
333#endif
334
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000335 /* print the matched line */
336 if (PRINT_MATCH_COUNTS == 0) {
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000337#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000338 int prevpos = (curpos == 0) ? lines_before - 1 : curpos - 1;
Mark Whitley2fd52982001-02-09 00:41:10 +0000339
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000340 /* if we were told to print 'before' lines and there is at least
341 * one line in the circular buffer, print them */
342 if (lines_before && before_buf[prevpos] != NULL) {
343 int first_buf_entry_line_num = linenum - lines_before;
Mark Whitley2fd52982001-02-09 00:41:10 +0000344
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000345 /* advance to the first entry in the circular buffer, and
346 * figure out the line number is of the first line in the
347 * buffer */
348 idx = curpos;
349 while (before_buf[idx] == NULL) {
350 idx = (idx + 1) % lines_before;
351 first_buf_entry_line_num++;
Mark Whitley2fd52982001-02-09 00:41:10 +0000352 }
353
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000354 /* now print each line in the buffer, clearing them as we go */
355 while (before_buf[idx] != NULL) {
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000356 print_line(before_buf[idx], before_buf_size[idx], first_buf_entry_line_num, '-');
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000357 free(before_buf[idx]);
358 before_buf[idx] = NULL;
359 idx = (idx + 1) % lines_before;
360 first_buf_entry_line_num++;
361 }
362 }
363
364 /* make a note that we need to print 'after' lines */
365 print_n_lines_after = lines_after;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000366#endif
Denis Vlasenko385304d2007-02-25 02:38:20 +0000367 if (option_mask32 & OPT_o) {
Denis Vlasenko68102362007-11-04 00:46:03 +0000368 if (FGREP_FLAG) {
369 /* -Fo just prints the pattern
370 * (unless -v: -Fov doesnt print anything at all) */
371 if (found)
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000372 print_line(gl->pattern, strlen(gl->pattern), linenum, ':');
Denis Vlasenkof60719c2008-09-30 22:37:29 +0000373 } else while (1) {
Denys Vlasenko09449632009-07-29 01:20:09 +0200374 unsigned end = gl->matched_range.rm_eo;
375 char old = line[end];
376 line[end] = '\0';
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000377 print_line(line + gl->matched_range.rm_so,
Denys Vlasenko09449632009-07-29 01:20:09 +0200378 end - gl->matched_range.rm_so,
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000379 linenum, ':');
Denys Vlasenko6dc0ace2009-12-04 02:48:14 +0100380 if (old == '\0')
381 break;
Denys Vlasenko09449632009-07-29 01:20:09 +0200382 line[end] = old;
Denis Vlasenkof60719c2008-09-30 22:37:29 +0000383#if !ENABLE_EXTRA_COMPAT
Denys Vlasenko09449632009-07-29 01:20:09 +0200384 if (regexec(&gl->compiled_regex, line + end,
385 1, &gl->matched_range, REG_NOTBOL) != 0)
386 break;
387 gl->matched_range.rm_so += end;
388 gl->matched_range.rm_eo += end;
Denis Vlasenkof60719c2008-09-30 22:37:29 +0000389#else
390 if (re_search(&gl->compiled_regex, line, line_len,
Denys Vlasenko09449632009-07-29 01:20:09 +0200391 end, line_len - end,
Denis Vlasenkof60719c2008-09-30 22:37:29 +0000392 &gl->matched_range) < 0)
393 break;
394#endif
Denis Vlasenkoa9acbe62008-11-24 13:25:20 +0000395 }
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000396 } else {
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000397 print_line(line, line_len, linenum, ':');
Mark Whitley2fd52982001-02-09 00:41:10 +0000398 }
Matt Kraai0810f722001-01-04 15:11:52 +0000399 }
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000400 }
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000401#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000402 else { /* no match */
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000403 /* if we need to print some context lines after the last match, do so */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000404 if (print_n_lines_after) {
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000405 print_line(line, strlen(line), linenum, '-');
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000406 print_n_lines_after--;
407 } else if (lines_before) {
408 /* Add the line to the circular 'before' buffer */
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000409 free(before_buf[curpos]);
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000410 before_buf[curpos] = line;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000411 IF_EXTRA_COMPAT(before_buf_size[curpos] = line_len;)
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000412 curpos = (curpos + 1) % lines_before;
Denis Vlasenko1d426652008-03-17 09:09:09 +0000413 /* avoid free(line) - we took the line */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000414 line = NULL;
Mark Whitley2fd52982001-02-09 00:41:10 +0000415 }
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000416 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000417
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000418#endif /* ENABLE_FEATURE_GREP_CONTEXT */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000419#if !ENABLE_EXTRA_COMPAT
Mark Whitleyd3721892000-06-28 22:00:26 +0000420 free(line);
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000421#endif
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000422 /* Did we print all context after last requested match? */
423 if ((option_mask32 & OPT_m)
Denis Vlasenko83518d12009-03-20 22:17:13 +0000424 && !print_n_lines_after
425 && nmatches == max_matches
426 ) {
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000427 break;
Denis Vlasenko83518d12009-03-20 22:17:13 +0000428 }
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000429 } /* while (read line) */
Mark Whitley8f122432000-07-18 18:37:01 +0000430
Mark Whitley35e59be2001-05-14 19:40:32 +0000431 /* special-case file post-processing for options where we don't print line
Mark Whitley1d9d4112001-05-21 21:13:00 +0000432 * matches, just filenames and possibly match counts */
Mark Whitley35e59be2001-05-14 19:40:32 +0000433
Mark Whitley1d9d4112001-05-21 21:13:00 +0000434 /* grep -c: print [filename:]count, even if count is zero */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000435 if (PRINT_MATCH_COUNTS) {
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000436 if (print_filename)
Mark Whitley1d9d4112001-05-21 21:13:00 +0000437 printf("%s:", cur_file);
Denis Vlasenko92758142006-10-03 19:56:34 +0000438 printf("%d\n", nmatches);
Mark Whitley35e59be2001-05-14 19:40:32 +0000439 }
Mark Whitley1d9d4112001-05-21 21:13:00 +0000440
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000441 /* grep -L: print just the filename */
442 if (PRINT_FILES_WITHOUT_MATCHES) {
443 /* nmatches is zero, no need to check it:
444 * we return 1 early if we detected a match
445 * and PRINT_FILES_WITHOUT_MATCHES is set */
Eric Andersendec7f812004-05-26 11:47:55 +0000446 puts(cur_file);
447 }
448
Eric Andersen8876fb22003-06-20 09:01:58 +0000449 return nmatches;
Mark Whitleyd3721892000-06-28 22:00:26 +0000450}
Eric Andersencc8ed391999-10-05 16:24:54 +0000451
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000452#if ENABLE_FEATURE_CLEAN_UP
453#define new_grep_list_data(p, m) add_grep_list_data(p, m)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000454static char *add_grep_list_data(char *pattern, int flg_used_mem)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000455#else
456#define new_grep_list_data(p, m) add_grep_list_data(p)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000457static char *add_grep_list_data(char *pattern)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000458#endif
459{
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000460 grep_list_data_t *gl = xzalloc(sizeof(*gl));
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000461 gl->pattern = pattern;
462#if ENABLE_FEATURE_CLEAN_UP
463 gl->flg_mem_alocated_compiled = flg_used_mem;
464#else
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000465 /*gl->flg_mem_alocated_compiled = 0;*/
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000466#endif
467 return (char *)gl;
468}
469
Eric Andersen8876fb22003-06-20 09:01:58 +0000470static void load_regexes_from_file(llist_t *fopt)
Mark Whitleyfa43e542001-05-24 18:36:18 +0000471{
472 char *line;
Eric Andersen8876fb22003-06-20 09:01:58 +0000473 FILE *f;
474
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000475 while (fopt) {
Eric Andersen8876fb22003-06-20 09:01:58 +0000476 llist_t *cur = fopt;
477 char *ffile = cur->data;
478
479 fopt = cur->link;
480 free(cur);
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000481 f = xfopen_stdin(ffile);
Denis Vlasenko8ee649a2008-03-26 20:04:27 +0000482 while ((line = xmalloc_fgetline(f)) != NULL) {
Rob Landley8bb50782006-05-26 23:44:51 +0000483 llist_add_to(&pattern_head,
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000484 new_grep_list_data(line, ALLOCATED));
Eric Andersen31c27a92004-10-08 08:10:57 +0000485 }
Mark Whitleyfa43e542001-05-24 18:36:18 +0000486 }
487}
Mark Whitleyfa43e542001-05-24 18:36:18 +0000488
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000489static int FAST_FUNC file_action_grep(const char *filename,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000490 struct stat *statbuf UNUSED_PARAM,
Denis Vlasenko1d426652008-03-17 09:09:09 +0000491 void* matched,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000492 int depth UNUSED_PARAM)
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000493{
Denis Vlasenko5415c852008-07-21 23:05:26 +0000494 FILE *file = fopen_for_read(filename);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000495 if (file == NULL) {
496 if (!SUPPRESS_ERR_MSGS)
Denis Vlasenko8e8200a2008-01-24 01:30:36 +0000497 bb_simple_perror_msg(filename);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000498 open_errors = 1;
499 return 0;
500 }
501 cur_file = filename;
502 *(int*)matched += grep_file(file);
Denis Vlasenkobf392162006-10-15 18:38:01 +0000503 fclose(file);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000504 return 1;
505}
506
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000507static int grep_dir(const char *dir)
508{
509 int matched = 0;
510 recursive_action(dir,
Denis Vlasenkobbd695d2007-04-08 10:52:28 +0000511 /* recurse=yes */ ACTION_RECURSE |
512 /* followLinks=no */
513 /* depthFirst=yes */ ACTION_DEPTHFIRST,
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000514 /* fileAction= */ file_action_grep,
515 /* dirAction= */ NULL,
Denis Vlasenko8c35d652006-10-27 23:42:25 +0000516 /* userData= */ &matched,
517 /* depth= */ 0);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000518 return matched;
519}
520
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000521int grep_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100522int grep_main(int argc UNUSED_PARAM, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000523{
Eric Andersen8876fb22003-06-20 09:01:58 +0000524 FILE *file;
525 int matched;
Eric Andersen31c27a92004-10-08 08:10:57 +0000526 llist_t *fopt = NULL;
Matt Kraai999623e2001-10-29 15:49:03 +0000527
Mark Whitleyd3721892000-06-28 22:00:26 +0000528 /* do normal option parsing */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000529#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko1d426652008-03-17 09:09:09 +0000530 int Copt;
Eric Andersen8876fb22003-06-20 09:01:58 +0000531
Denis Vlasenko1d426652008-03-17 09:09:09 +0000532 /* -H unsets -h; -C unsets -A,-B; -e,-f are lists;
533 * -m,-A,-B,-C have numeric param */
534 opt_complementary = "H-h:C-AB:e::f::m+:A+:B+:C+";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000535 getopt32(argv,
Denis Vlasenko385304d2007-02-25 02:38:20 +0000536 OPTSTR_GREP,
Denis Vlasenko1d426652008-03-17 09:09:09 +0000537 &pattern_head, &fopt, &max_matches,
538 &lines_after, &lines_before, &Copt);
Eric Andersen8876fb22003-06-20 09:01:58 +0000539
Denis Vlasenko385304d2007-02-25 02:38:20 +0000540 if (option_mask32 & OPT_C) {
Denis Vlasenko2295b492006-10-22 11:42:51 +0000541 /* -C unsets prev -A and -B, but following -A or -B
542 may override it */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000543 if (!(option_mask32 & OPT_A)) /* not overridden */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000544 lines_after = Copt;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000545 if (!(option_mask32 & OPT_B)) /* not overridden */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000546 lines_before = Copt;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000547 }
Denis Vlasenko2295b492006-10-22 11:42:51 +0000548 /* sanity checks */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000549 if (option_mask32 & (OPT_c|OPT_q|OPT_l|OPT_L)) {
550 option_mask32 &= ~OPT_n;
Eric Andersen8876fb22003-06-20 09:01:58 +0000551 lines_before = 0;
552 lines_after = 0;
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000553 } else if (lines_before > 0) {
554 before_buf = xzalloc(lines_before * sizeof(before_buf[0]));
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000555 IF_EXTRA_COMPAT(before_buf_size = xzalloc(lines_before * sizeof(before_buf_size[0]));)
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000556 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000557#else
558 /* with auto sanity checks */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000559 /* -H unsets -h; -c,-q or -l unset -n; -e,-f are lists; -m N */
560 opt_complementary = "H-h:c-n:q-n:l-n:e::f::m+";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000561 getopt32(argv, OPTSTR_GREP,
Denis Vlasenko1d426652008-03-17 09:09:09 +0000562 &pattern_head, &fopt, &max_matches);
Eric Andersen8876fb22003-06-20 09:01:58 +0000563#endif
Denis Vlasenko385304d2007-02-25 02:38:20 +0000564 invert_search = ((option_mask32 & OPT_v) != 0); /* 0 | 1 */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000565
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000566 if (pattern_head != NULL) {
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +0000567 /* convert char **argv to grep_list_data_t */
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000568 llist_t *cur;
569
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000570 for (cur = pattern_head; cur; cur = cur->link)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000571 cur->data = new_grep_list_data(cur->data, 0);
572 }
Denis Vlasenko385304d2007-02-25 02:38:20 +0000573 if (option_mask32 & OPT_f)
Eric Andersen8876fb22003-06-20 09:01:58 +0000574 load_regexes_from_file(fopt);
575
Denis Vlasenko8f8f2682006-10-03 21:00:43 +0000576 if (ENABLE_FEATURE_GREP_FGREP_ALIAS && applet_name[0] == 'f')
Denis Vlasenko385304d2007-02-25 02:38:20 +0000577 option_mask32 |= OPT_F;
Mike Frysinger15ca5862005-07-31 22:41:05 +0000578
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000579#if !ENABLE_EXTRA_COMPAT
Denis Vlasenko385304d2007-02-25 02:38:20 +0000580 if (!(option_mask32 & (OPT_o | OPT_w)))
Denis Vlasenko51937532006-09-29 20:58:53 +0000581 reflags = REG_NOSUB;
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000582#endif
Denis Vlasenko51937532006-09-29 20:58:53 +0000583
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000584 if (ENABLE_FEATURE_GREP_EGREP_ALIAS
585 && (applet_name[0] == 'e' || (option_mask32 & OPT_E))
586 ) {
Denis Vlasenko51937532006-09-29 20:58:53 +0000587 reflags |= REG_EXTENDED;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000588 }
Denis Vlasenko9ac706b2008-09-19 21:32:51 +0000589#if ENABLE_EXTRA_COMPAT
590 else {
591 reflags = RE_SYNTAX_GREP;
592 }
593#endif
Eric Andersen8876fb22003-06-20 09:01:58 +0000594
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000595 if (option_mask32 & OPT_i) {
596#if !ENABLE_EXTRA_COMPAT
Eric Andersen8876fb22003-06-20 09:01:58 +0000597 reflags |= REG_ICASE;
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000598#else
599 int i;
600 case_fold = xmalloc(256);
601 for (i = 0; i < 256; i++)
602 case_fold[i] = (unsigned char)i;
603 for (i = 'a'; i <= 'z'; i++)
604 case_fold[i] = (unsigned char)(i - ('a' - 'A'));
605#endif
606 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000607
608 argv += optind;
Eric Andersen053b1462000-06-13 06:24:53 +0000609
Denis Vlasenko1d426652008-03-17 09:09:09 +0000610 /* if we didn't get a pattern from -e and no command file was specified,
611 * first parameter should be the pattern. no pattern, no worky */
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000612 if (pattern_head == NULL) {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000613 char *pattern;
Eric Andersen8876fb22003-06-20 09:01:58 +0000614 if (*argv == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000615 bb_show_usage();
Denis Vlasenko385304d2007-02-25 02:38:20 +0000616 pattern = new_grep_list_data(*argv++, 0);
617 llist_add_to(&pattern_head, pattern);
Mark Whitleyfa43e542001-05-24 18:36:18 +0000618 }
Mark Whitleyd3721892000-06-28 22:00:26 +0000619
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000620 /* argv[0..(argc-1)] should be names of file to grep through. If
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000621 * there is more than one file to grep, we will print the filenames. */
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100622 if (argv[0] && argv[1])
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000623 print_filename = 1;
Denis Vlasenko2295b492006-10-22 11:42:51 +0000624 /* -H / -h of course override */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000625 if (option_mask32 & OPT_H)
Denis Vlasenko2295b492006-10-22 11:42:51 +0000626 print_filename = 1;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000627 if (option_mask32 & OPT_h)
Denis Vlasenko2295b492006-10-22 11:42:51 +0000628 print_filename = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000629
Mark Whitley2e1148b2000-06-28 22:59:30 +0000630 /* If no files were specified, or '-' was specified, take input from
631 * stdin. Otherwise, we grep through all the files specified. */
Eric Andersen8876fb22003-06-20 09:01:58 +0000632 matched = 0;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000633 do {
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100634 cur_file = *argv;
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000635 file = stdin;
Denis Vlasenko1d426652008-03-17 09:09:09 +0000636 if (!cur_file || LONE_DASH(cur_file)) {
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000637 cur_file = "(standard input)";
Eric Andersen8876fb22003-06-20 09:01:58 +0000638 } else {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000639 if (option_mask32 & OPT_r) {
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000640 struct stat st;
641 if (stat(cur_file, &st) == 0 && S_ISDIR(st.st_mode)) {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000642 if (!(option_mask32 & OPT_h))
Denis Vlasenko3544ae62006-10-14 14:51:59 +0000643 print_filename = 1;
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000644 matched += grep_dir(cur_file);
645 goto grep_done;
646 }
Mark Whitley2ef880b2000-07-18 21:02:06 +0000647 }
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000648 /* else: fopen(dir) will succeed, but reading won't */
Denis Vlasenko5415c852008-07-21 23:05:26 +0000649 file = fopen_for_read(cur_file);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000650 if (file == NULL) {
651 if (!SUPPRESS_ERR_MSGS)
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +0000652 bb_simple_perror_msg(cur_file);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000653 open_errors = 1;
654 continue;
655 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000656 }
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000657 matched += grep_file(file);
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000658 fclose_if_not_stdin(file);
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000659 grep_done: ;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100660 } while (*argv && *++argv);
Eric Andersen8876fb22003-06-20 09:01:58 +0000661
Eric Andersen8876fb22003-06-20 09:01:58 +0000662 /* destroy all the elments in the pattern list */
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000663 if (ENABLE_FEATURE_CLEAN_UP) {
664 while (pattern_head) {
665 llist_t *pattern_head_ptr = pattern_head;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000666 grep_list_data_t *gl = (grep_list_data_t *)pattern_head_ptr->data;
Eric Andersen8876fb22003-06-20 09:01:58 +0000667
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000668 pattern_head = pattern_head->link;
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000669 if (gl->flg_mem_alocated_compiled & ALLOCATED)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000670 free(gl->pattern);
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000671 if (gl->flg_mem_alocated_compiled & COMPILED)
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000672 regfree(&gl->compiled_regex);
Mike Frysinger3a62a732007-04-12 18:29:27 +0000673 free(gl);
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000674 free(pattern_head_ptr);
675 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000676 }
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000677 /* 0 = success, 1 = failed, 2 = error */
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000678 if (open_errors)
"Vladimir N. Oleynik"bf449742005-09-23 13:50:24 +0000679 return 2;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000680 return !matched; /* invert return value: 0 = success, 1 = failed */
Eric Andersencc8ed391999-10-05 16:24:54 +0000681}