blob: be290118fbf68fb010fbed8a1081733af73451d8 [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
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020022//kbuild:lib-$(CONFIG_GREP) += grep.o
23//config:
24//config:config GREP
25//config: bool "grep"
26//config: default n
27//config: help
28//config: grep is used to search files for a specified pattern.
29//config:
30//config:config FEATURE_GREP_EGREP_ALIAS
31//config: bool "Enable extended regular expressions (egrep & grep -E)"
32//config: default y
33//config: depends on GREP
34//config: help
35//config: Enabled support for extended regular expressions. Extended
36//config: regular expressions allow for alternation (foo|bar), grouping,
37//config: and various repetition operators.
38//config:
39//config:config FEATURE_GREP_FGREP_ALIAS
40//config: bool "Alias fgrep to grep -F"
41//config: default y
42//config: depends on GREP
43//config: help
44//config: fgrep sees the search pattern as a normal string rather than
45//config: regular expressions.
46//config: grep -F always works, this just creates the fgrep alias.
47//config:
48//config:config FEATURE_GREP_CONTEXT
49//config: bool "Enable before and after context flags (-A, -B and -C)"
50//config: default y
51//config: depends on GREP
52//config: help
53//config: Print the specified number of leading (-B) and/or trailing (-A)
54//config: context surrounding our matching lines.
55//config: Print the specified number of context lines (-C).
56
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000057#include "libbb.h"
"Vladimir N. Oleynik"23f62fc2005-09-14 16:59:11 +000058#include "xregex.h"
Mark Whitleyd3721892000-06-28 22:00:26 +000059
Mark Whitleyd3721892000-06-28 22:00:26 +000060/* options */
Denis Vlasenko385304d2007-02-25 02:38:20 +000061#define OPTSTR_GREP \
Denys Vlasenko05273da2010-04-26 08:45:44 +020062 "lnqvscFiHhe:f:Lorm:w" \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000063 IF_FEATURE_GREP_CONTEXT("A:B:C:") \
64 IF_FEATURE_GREP_EGREP_ALIAS("E") \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000065 IF_EXTRA_COMPAT("z") \
Denis Vlasenkof8ea0f32007-02-25 02:38:54 +000066 "aI"
Denis Vlasenko3266aa92009-04-01 11:24:04 +000067
Denis Vlasenkof8ea0f32007-02-25 02:38:54 +000068/* ignored: -a "assume all files to be text" */
69/* ignored: -I "assume binary files have no matches" */
Denis Vlasenko385304d2007-02-25 02:38:20 +000070
71enum {
Denis Vlasenko4652daa2007-07-15 12:39:08 +000072 OPTBIT_l, /* list matched file names only */
73 OPTBIT_n, /* print line# */
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +000074 OPTBIT_q, /* quiet - exit(EXIT_SUCCESS) of first match */
Denis Vlasenko4652daa2007-07-15 12:39:08 +000075 OPTBIT_v, /* invert the match, to select non-matching lines */
76 OPTBIT_s, /* suppress errors about file open errors */
77 OPTBIT_c, /* count matches per file (suppresses normal output) */
78 OPTBIT_F, /* literal match */
79 OPTBIT_i, /* case-insensitive */
80 OPTBIT_H, /* force filename display */
81 OPTBIT_h, /* inhibit filename display */
82 OPTBIT_e, /* -e PATTERN */
83 OPTBIT_f, /* -f FILE_WITH_PATTERNS */
84 OPTBIT_L, /* list unmatched file names only */
85 OPTBIT_o, /* show only matching parts of lines */
86 OPTBIT_r, /* recurse dirs */
87 OPTBIT_m, /* -m MAX_MATCHES */
Denys Vlasenko05273da2010-04-26 08:45:44 +020088 OPTBIT_w, /* -w whole word match */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000089 IF_FEATURE_GREP_CONTEXT( OPTBIT_A ,) /* -A NUM: after-match context */
90 IF_FEATURE_GREP_CONTEXT( OPTBIT_B ,) /* -B NUM: before-match context */
91 IF_FEATURE_GREP_CONTEXT( OPTBIT_C ,) /* -C NUM: -A and -B combined */
92 IF_FEATURE_GREP_EGREP_ALIAS(OPTBIT_E ,) /* extended regexp */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000093 IF_EXTRA_COMPAT( OPTBIT_z ,) /* input is NUL terminated */
Denis Vlasenko385304d2007-02-25 02:38:20 +000094 OPT_l = 1 << OPTBIT_l,
95 OPT_n = 1 << OPTBIT_n,
96 OPT_q = 1 << OPTBIT_q,
97 OPT_v = 1 << OPTBIT_v,
98 OPT_s = 1 << OPTBIT_s,
99 OPT_c = 1 << OPTBIT_c,
100 OPT_F = 1 << OPTBIT_F,
101 OPT_i = 1 << OPTBIT_i,
102 OPT_H = 1 << OPTBIT_H,
103 OPT_h = 1 << OPTBIT_h,
104 OPT_e = 1 << OPTBIT_e,
105 OPT_f = 1 << OPTBIT_f,
106 OPT_L = 1 << OPTBIT_L,
107 OPT_o = 1 << OPTBIT_o,
108 OPT_r = 1 << OPTBIT_r,
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000109 OPT_m = 1 << OPTBIT_m,
Denys Vlasenko05273da2010-04-26 08:45:44 +0200110 OPT_w = 1 << OPTBIT_w,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000111 OPT_A = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_A)) + 0,
112 OPT_B = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_B)) + 0,
113 OPT_C = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_C)) + 0,
114 OPT_E = IF_FEATURE_GREP_EGREP_ALIAS((1 << OPTBIT_E)) + 0,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000115 OPT_z = IF_EXTRA_COMPAT( (1 << OPTBIT_z)) + 0,
Denis Vlasenko385304d2007-02-25 02:38:20 +0000116};
117
Denis Vlasenko9acfed22007-06-08 15:41:27 +0000118#define PRINT_FILES_WITH_MATCHES (option_mask32 & OPT_l)
119#define PRINT_LINE_NUM (option_mask32 & OPT_n)
120#define BE_QUIET (option_mask32 & OPT_q)
121#define SUPPRESS_ERR_MSGS (option_mask32 & OPT_s)
122#define PRINT_MATCH_COUNTS (option_mask32 & OPT_c)
123#define FGREP_FLAG (option_mask32 & OPT_F)
Denis Vlasenko385304d2007-02-25 02:38:20 +0000124#define PRINT_FILES_WITHOUT_MATCHES (option_mask32 & OPT_L)
Denis Vlasenko83518d12009-03-20 22:17:13 +0000125#define NUL_DELIMITED (option_mask32 & OPT_z)
Eric Andersen8876fb22003-06-20 09:01:58 +0000126
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000127struct globals {
128 int max_matches;
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000129#if !ENABLE_EXTRA_COMPAT
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000130 int reflags;
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000131#else
132 RE_TRANSLATE_TYPE case_fold; /* RE_TRANSLATE_TYPE is [[un]signed] char* */
133#endif
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000134 smalluint invert_search;
135 smalluint print_filename;
136 smalluint open_errors;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000137#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000138 smalluint did_print_line;
139 int lines_before;
140 int lines_after;
141 char **before_buf;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000142 IF_EXTRA_COMPAT(size_t *before_buf_size;)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000143 int last_line_printed;
144#endif
145 /* globals used internally */
146 llist_t *pattern_head; /* growable list of patterns to match */
147 const char *cur_file; /* the current file we are reading */
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100148} FIX_ALIASING;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000149#define G (*(struct globals*)&bb_common_bufsiz1)
Denis Vlasenko7049ff82008-06-25 09:53:17 +0000150#define INIT_G() do { \
151 struct G_sizecheck { \
152 char G_sizecheck[sizeof(G) > COMMON_BUFSIZE ? -1 : 1]; \
153 }; \
154} while (0)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000155#define max_matches (G.max_matches )
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000156#if !ENABLE_EXTRA_COMPAT
Denys Vlasenko09449632009-07-29 01:20:09 +0200157# define reflags (G.reflags )
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000158#else
Denys Vlasenko09449632009-07-29 01:20:09 +0200159# define case_fold (G.case_fold )
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000160/* http://www.delorie.com/gnu/docs/regex/regex_46.html */
Denys Vlasenko09449632009-07-29 01:20:09 +0200161# define reflags re_syntax_options
162# undef REG_NOSUB
163# undef REG_EXTENDED
164# undef REG_ICASE
165# define REG_NOSUB bug:is:here /* should not be used */
166/* Just RE_SYNTAX_EGREP is not enough, need to enable {n[,[m]]} too */
167# define REG_EXTENDED (RE_SYNTAX_EGREP | RE_INTERVALS | RE_NO_BK_BRACES)
168# define REG_ICASE bug:is:here /* should not be used */
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000169#endif
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000170#define invert_search (G.invert_search )
171#define print_filename (G.print_filename )
172#define open_errors (G.open_errors )
173#define did_print_line (G.did_print_line )
174#define lines_before (G.lines_before )
175#define lines_after (G.lines_after )
176#define before_buf (G.before_buf )
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000177#define before_buf_size (G.before_buf_size )
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000178#define last_line_printed (G.last_line_printed )
179#define pattern_head (G.pattern_head )
180#define cur_file (G.cur_file )
181
Mark Whitleyd3721892000-06-28 22:00:26 +0000182
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000183typedef struct grep_list_data_t {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000184 char *pattern;
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000185/* for GNU regex, matched_range must be persistent across grep_file() calls */
186#if !ENABLE_EXTRA_COMPAT
187 regex_t compiled_regex;
188 regmatch_t matched_range;
189#else
190 struct re_pattern_buffer compiled_regex;
191 struct re_registers matched_range;
192#endif
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000193#define ALLOCATED 1
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000194#define COMPILED 2
195 int flg_mem_alocated_compiled;
196} grep_list_data_t;
Mark Whitleyfa43e542001-05-24 18:36:18 +0000197
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000198#if !ENABLE_EXTRA_COMPAT
199#define print_line(line, line_len, linenum, decoration) \
200 print_line(line, linenum, decoration)
201#endif
202static void print_line(const char *line, size_t line_len, int linenum, char decoration)
Mark Whitley2fd52982001-02-09 00:41:10 +0000203{
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000204#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000205 /* Happens when we go to next file, immediately hit match
206 * and try to print prev context... from prev file! Don't do it */
207 if (linenum < 1)
208 return;
Eric Andersenaff114c2004-04-14 17:51:38 +0000209 /* possibly print the little '--' separator */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000210 if ((lines_before || lines_after) && did_print_line
211 && last_line_printed != linenum - 1
212 ) {
Mark Whitley2fd52982001-02-09 00:41:10 +0000213 puts("--");
214 }
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000215 /* guard against printing "--" before first line of first file */
216 did_print_line = 1;
Mark Whitley2fd52982001-02-09 00:41:10 +0000217 last_line_printed = linenum;
218#endif
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000219 if (print_filename)
Mark Whitley2fd52982001-02-09 00:41:10 +0000220 printf("%s%c", cur_file, decoration);
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000221 if (PRINT_LINE_NUM)
Mark Whitley2fd52982001-02-09 00:41:10 +0000222 printf("%i%c", linenum, decoration);
Denis Vlasenko51937532006-09-29 20:58:53 +0000223 /* Emulate weird GNU grep behavior with -ov */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000224 if ((option_mask32 & (OPT_v|OPT_o)) != (OPT_v|OPT_o)) {
225#if !ENABLE_EXTRA_COMPAT
Denis Vlasenko51937532006-09-29 20:58:53 +0000226 puts(line);
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000227#else
228 fwrite(line, 1, line_len, stdout);
Denis Vlasenko83518d12009-03-20 22:17:13 +0000229 putchar(NUL_DELIMITED ? '\0' : '\n');
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000230#endif
231 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000232}
Mark Whitleyd3721892000-06-28 22:00:26 +0000233
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000234#if ENABLE_EXTRA_COMPAT
235/* Unlike getline, this one removes trailing '\n' */
236static ssize_t FAST_FUNC bb_getline(char **line_ptr, size_t *line_alloc_len, FILE *file)
237{
238 ssize_t res_sz;
239 char *line;
Denis Vlasenko83518d12009-03-20 22:17:13 +0000240 int delim = (NUL_DELIMITED ? '\0' : '\n');
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000241
Denis Vlasenko83518d12009-03-20 22:17:13 +0000242 res_sz = getdelim(line_ptr, line_alloc_len, delim, file);
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000243 line = *line_ptr;
244
245 if (res_sz > 0) {
Denis Vlasenko83518d12009-03-20 22:17:13 +0000246 if (line[res_sz - 1] == delim)
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000247 line[--res_sz] = '\0';
248 } else {
249 free(line); /* uclibc allocates a buffer even on EOF. WTF? */
250 }
251 return res_sz;
252}
253#endif
254
Eric Andersen8876fb22003-06-20 09:01:58 +0000255static int grep_file(FILE *file)
Mark Whitleyd3721892000-06-28 22:00:26 +0000256{
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000257 smalluint found;
Mark Whitleyd3721892000-06-28 22:00:26 +0000258 int linenum = 0;
Matt Kraaideb95f62000-08-06 15:25:53 +0000259 int nmatches = 0;
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000260#if !ENABLE_EXTRA_COMPAT
261 char *line;
262#else
263 char *line = NULL;
264 ssize_t line_len;
265 size_t line_alloc_len;
Denys Vlasenko6dc0ace2009-12-04 02:48:14 +0100266# define rm_so start[0]
267# define rm_eo end[0]
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000268#endif
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000269#if ENABLE_FEATURE_GREP_CONTEXT
Mark Whitley2fd52982001-02-09 00:41:10 +0000270 int print_n_lines_after = 0;
271 int curpos = 0; /* track where we are in the circular 'before' buffer */
272 int idx = 0; /* used for iteration through the circular buffer */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000273#else
274 enum { print_n_lines_after = 0 };
Denys Vlasenko6dc0ace2009-12-04 02:48:14 +0100275#endif
Mark Whitleyd3721892000-06-28 22:00:26 +0000276
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000277 while (
278#if !ENABLE_EXTRA_COMPAT
279 (line = xmalloc_fgetline(file)) != NULL
280#else
281 (line_len = bb_getline(&line, &line_alloc_len, file)) >= 0
282#endif
283 ) {
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000284 llist_t *pattern_ptr = pattern_head;
Denis Vlasenko68102362007-11-04 00:46:03 +0000285 grep_list_data_t *gl = gl; /* for gcc */
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000286
Mark Whitleyd3721892000-06-28 22:00:26 +0000287 linenum++;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000288 found = 0;
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000289 while (pattern_ptr) {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000290 gl = (grep_list_data_t *)pattern_ptr->data;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000291 if (FGREP_FLAG) {
Ian Wienand0a2c7932010-04-30 09:32:10 +0200292 found |= (((option_mask32 & OPT_i)
293 ? strcasestr(line, gl->pattern)
294 : strstr(line, gl->pattern)
295 ) != NULL);
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000296 } else {
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000297 if (!(gl->flg_mem_alocated_compiled & COMPILED)) {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000298 gl->flg_mem_alocated_compiled |= COMPILED;
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000299#if !ENABLE_EXTRA_COMPAT
300 xregcomp(&gl->compiled_regex, gl->pattern, reflags);
301#else
302 memset(&gl->compiled_regex, 0, sizeof(gl->compiled_regex));
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000303 gl->compiled_regex.translate = case_fold; /* for -i */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000304 if (re_compile_pattern(gl->pattern, strlen(gl->pattern), &gl->compiled_regex))
305 bb_error_msg_and_die("bad regex '%s'", gl->pattern);
306#endif
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000307 }
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000308#if !ENABLE_EXTRA_COMPAT
309 gl->matched_range.rm_so = 0;
310 gl->matched_range.rm_eo = 0;
311#endif
312 if (
313#if !ENABLE_EXTRA_COMPAT
314 regexec(&gl->compiled_regex, line, 1, &gl->matched_range, 0) == 0
315#else
316 re_search(&gl->compiled_regex, line, line_len,
317 /*start:*/ 0, /*range:*/ line_len,
318 &gl->matched_range) >= 0
319#endif
320 ) {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000321 if (!(option_mask32 & OPT_w))
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000322 found = 1;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000323 else {
324 char c = ' ';
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000325 if (gl->matched_range.rm_so)
326 c = line[gl->matched_range.rm_so - 1];
Denis Vlasenko385304d2007-02-25 02:38:20 +0000327 if (!isalnum(c) && c != '_') {
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000328 c = line[gl->matched_range.rm_eo];
Denis Vlasenko385304d2007-02-25 02:38:20 +0000329 if (!c || (!isalnum(c) && c != '_'))
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000330 found = 1;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000331 }
332 }
333 }
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000334 }
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000335 /* If it's non-inverted search, we can stop
336 * at first match */
337 if (found && !invert_search)
338 goto do_found;
Eric Andersen8876fb22003-06-20 09:01:58 +0000339 pattern_ptr = pattern_ptr->link;
340 } /* while (pattern_ptr) */
Mark Whitleyd3721892000-06-28 22:00:26 +0000341
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000342 if (found ^ invert_search) {
343 do_found:
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000344 /* keep track of matches */
345 nmatches++;
Mark Whitley1d9d4112001-05-21 21:13:00 +0000346
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000347 /* quiet/print (non)matching file names only? */
348 if (option_mask32 & (OPT_q|OPT_l|OPT_L)) {
349 free(line); /* we don't need line anymore */
350 if (BE_QUIET) {
351 /* manpage says about -q:
352 * "exit immediately with zero status
353 * if any match is found,
354 * even if errors were detected" */
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000355 exit(EXIT_SUCCESS);
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000356 }
357 /* if we're just printing filenames, we stop after the first match */
358 if (PRINT_FILES_WITH_MATCHES) {
359 puts(cur_file);
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +0000360 /* fall through to "return 1" */
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000361 }
362 /* OPT_L aka PRINT_FILES_WITHOUT_MATCHES: return early */
363 return 1; /* one match */
364 }
Mark Whitley1d9d4112001-05-21 21:13:00 +0000365
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000366#if ENABLE_FEATURE_GREP_CONTEXT
367 /* Were we printing context and saw next (unwanted) match? */
368 if ((option_mask32 & OPT_m) && nmatches > max_matches)
369 break;
370#endif
371
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000372 /* print the matched line */
373 if (PRINT_MATCH_COUNTS == 0) {
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000374#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000375 int prevpos = (curpos == 0) ? lines_before - 1 : curpos - 1;
Mark Whitley2fd52982001-02-09 00:41:10 +0000376
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000377 /* if we were told to print 'before' lines and there is at least
378 * one line in the circular buffer, print them */
379 if (lines_before && before_buf[prevpos] != NULL) {
380 int first_buf_entry_line_num = linenum - lines_before;
Mark Whitley2fd52982001-02-09 00:41:10 +0000381
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000382 /* advance to the first entry in the circular buffer, and
383 * figure out the line number is of the first line in the
384 * buffer */
385 idx = curpos;
386 while (before_buf[idx] == NULL) {
387 idx = (idx + 1) % lines_before;
388 first_buf_entry_line_num++;
Mark Whitley2fd52982001-02-09 00:41:10 +0000389 }
390
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000391 /* now print each line in the buffer, clearing them as we go */
392 while (before_buf[idx] != NULL) {
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000393 print_line(before_buf[idx], before_buf_size[idx], first_buf_entry_line_num, '-');
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000394 free(before_buf[idx]);
395 before_buf[idx] = NULL;
396 idx = (idx + 1) % lines_before;
397 first_buf_entry_line_num++;
398 }
399 }
400
401 /* make a note that we need to print 'after' lines */
402 print_n_lines_after = lines_after;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000403#endif
Denis Vlasenko385304d2007-02-25 02:38:20 +0000404 if (option_mask32 & OPT_o) {
Denis Vlasenko68102362007-11-04 00:46:03 +0000405 if (FGREP_FLAG) {
406 /* -Fo just prints the pattern
407 * (unless -v: -Fov doesnt print anything at all) */
408 if (found)
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000409 print_line(gl->pattern, strlen(gl->pattern), linenum, ':');
Denis Vlasenkof60719c2008-09-30 22:37:29 +0000410 } else while (1) {
Denys Vlasenko09449632009-07-29 01:20:09 +0200411 unsigned end = gl->matched_range.rm_eo;
412 char old = line[end];
413 line[end] = '\0';
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000414 print_line(line + gl->matched_range.rm_so,
Denys Vlasenko09449632009-07-29 01:20:09 +0200415 end - gl->matched_range.rm_so,
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000416 linenum, ':');
Denys Vlasenko6dc0ace2009-12-04 02:48:14 +0100417 if (old == '\0')
418 break;
Denys Vlasenko09449632009-07-29 01:20:09 +0200419 line[end] = old;
Denis Vlasenkof60719c2008-09-30 22:37:29 +0000420#if !ENABLE_EXTRA_COMPAT
Denys Vlasenko09449632009-07-29 01:20:09 +0200421 if (regexec(&gl->compiled_regex, line + end,
422 1, &gl->matched_range, REG_NOTBOL) != 0)
423 break;
424 gl->matched_range.rm_so += end;
425 gl->matched_range.rm_eo += end;
Denis Vlasenkof60719c2008-09-30 22:37:29 +0000426#else
427 if (re_search(&gl->compiled_regex, line, line_len,
Denys Vlasenko09449632009-07-29 01:20:09 +0200428 end, line_len - end,
Denis Vlasenkof60719c2008-09-30 22:37:29 +0000429 &gl->matched_range) < 0)
430 break;
431#endif
Denis Vlasenkoa9acbe62008-11-24 13:25:20 +0000432 }
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000433 } else {
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000434 print_line(line, line_len, linenum, ':');
Mark Whitley2fd52982001-02-09 00:41:10 +0000435 }
Matt Kraai0810f722001-01-04 15:11:52 +0000436 }
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000437 }
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000438#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000439 else { /* no match */
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000440 /* if we need to print some context lines after the last match, do so */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000441 if (print_n_lines_after) {
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000442 print_line(line, strlen(line), linenum, '-');
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000443 print_n_lines_after--;
444 } else if (lines_before) {
445 /* Add the line to the circular 'before' buffer */
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000446 free(before_buf[curpos]);
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000447 before_buf[curpos] = line;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000448 IF_EXTRA_COMPAT(before_buf_size[curpos] = line_len;)
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000449 curpos = (curpos + 1) % lines_before;
Denis Vlasenko1d426652008-03-17 09:09:09 +0000450 /* avoid free(line) - we took the line */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000451 line = NULL;
Mark Whitley2fd52982001-02-09 00:41:10 +0000452 }
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000453 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000454
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000455#endif /* ENABLE_FEATURE_GREP_CONTEXT */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000456#if !ENABLE_EXTRA_COMPAT
Mark Whitleyd3721892000-06-28 22:00:26 +0000457 free(line);
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000458#endif
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000459 /* Did we print all context after last requested match? */
460 if ((option_mask32 & OPT_m)
Denis Vlasenko83518d12009-03-20 22:17:13 +0000461 && !print_n_lines_after
462 && nmatches == max_matches
463 ) {
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000464 break;
Denis Vlasenko83518d12009-03-20 22:17:13 +0000465 }
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000466 } /* while (read line) */
Mark Whitley8f122432000-07-18 18:37:01 +0000467
Mark Whitley35e59be2001-05-14 19:40:32 +0000468 /* special-case file post-processing for options where we don't print line
Mark Whitley1d9d4112001-05-21 21:13:00 +0000469 * matches, just filenames and possibly match counts */
Mark Whitley35e59be2001-05-14 19:40:32 +0000470
Mark Whitley1d9d4112001-05-21 21:13:00 +0000471 /* grep -c: print [filename:]count, even if count is zero */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000472 if (PRINT_MATCH_COUNTS) {
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000473 if (print_filename)
Mark Whitley1d9d4112001-05-21 21:13:00 +0000474 printf("%s:", cur_file);
Denis Vlasenko92758142006-10-03 19:56:34 +0000475 printf("%d\n", nmatches);
Mark Whitley35e59be2001-05-14 19:40:32 +0000476 }
Mark Whitley1d9d4112001-05-21 21:13:00 +0000477
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000478 /* grep -L: print just the filename */
479 if (PRINT_FILES_WITHOUT_MATCHES) {
480 /* nmatches is zero, no need to check it:
481 * we return 1 early if we detected a match
482 * and PRINT_FILES_WITHOUT_MATCHES is set */
Eric Andersendec7f812004-05-26 11:47:55 +0000483 puts(cur_file);
484 }
485
Eric Andersen8876fb22003-06-20 09:01:58 +0000486 return nmatches;
Mark Whitleyd3721892000-06-28 22:00:26 +0000487}
Eric Andersencc8ed391999-10-05 16:24:54 +0000488
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000489#if ENABLE_FEATURE_CLEAN_UP
490#define new_grep_list_data(p, m) add_grep_list_data(p, m)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000491static char *add_grep_list_data(char *pattern, int flg_used_mem)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000492#else
493#define new_grep_list_data(p, m) add_grep_list_data(p)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000494static char *add_grep_list_data(char *pattern)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000495#endif
496{
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000497 grep_list_data_t *gl = xzalloc(sizeof(*gl));
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000498 gl->pattern = pattern;
499#if ENABLE_FEATURE_CLEAN_UP
500 gl->flg_mem_alocated_compiled = flg_used_mem;
501#else
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000502 /*gl->flg_mem_alocated_compiled = 0;*/
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000503#endif
504 return (char *)gl;
505}
506
Eric Andersen8876fb22003-06-20 09:01:58 +0000507static void load_regexes_from_file(llist_t *fopt)
Mark Whitleyfa43e542001-05-24 18:36:18 +0000508{
509 char *line;
Eric Andersen8876fb22003-06-20 09:01:58 +0000510 FILE *f;
511
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000512 while (fopt) {
Eric Andersen8876fb22003-06-20 09:01:58 +0000513 llist_t *cur = fopt;
514 char *ffile = cur->data;
515
516 fopt = cur->link;
517 free(cur);
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000518 f = xfopen_stdin(ffile);
Denis Vlasenko8ee649a2008-03-26 20:04:27 +0000519 while ((line = xmalloc_fgetline(f)) != NULL) {
Rob Landley8bb50782006-05-26 23:44:51 +0000520 llist_add_to(&pattern_head,
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000521 new_grep_list_data(line, ALLOCATED));
Eric Andersen31c27a92004-10-08 08:10:57 +0000522 }
Mark Whitleyfa43e542001-05-24 18:36:18 +0000523 }
524}
Mark Whitleyfa43e542001-05-24 18:36:18 +0000525
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000526static int FAST_FUNC file_action_grep(const char *filename,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000527 struct stat *statbuf UNUSED_PARAM,
Denis Vlasenko1d426652008-03-17 09:09:09 +0000528 void* matched,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000529 int depth UNUSED_PARAM)
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000530{
Denis Vlasenko5415c852008-07-21 23:05:26 +0000531 FILE *file = fopen_for_read(filename);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000532 if (file == NULL) {
533 if (!SUPPRESS_ERR_MSGS)
Denis Vlasenko8e8200a2008-01-24 01:30:36 +0000534 bb_simple_perror_msg(filename);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000535 open_errors = 1;
536 return 0;
537 }
538 cur_file = filename;
539 *(int*)matched += grep_file(file);
Denis Vlasenkobf392162006-10-15 18:38:01 +0000540 fclose(file);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000541 return 1;
542}
543
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000544static int grep_dir(const char *dir)
545{
546 int matched = 0;
547 recursive_action(dir,
Denis Vlasenkobbd695d2007-04-08 10:52:28 +0000548 /* recurse=yes */ ACTION_RECURSE |
549 /* followLinks=no */
550 /* depthFirst=yes */ ACTION_DEPTHFIRST,
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000551 /* fileAction= */ file_action_grep,
552 /* dirAction= */ NULL,
Denis Vlasenko8c35d652006-10-27 23:42:25 +0000553 /* userData= */ &matched,
554 /* depth= */ 0);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000555 return matched;
556}
557
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000558int grep_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100559int grep_main(int argc UNUSED_PARAM, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000560{
Eric Andersen8876fb22003-06-20 09:01:58 +0000561 FILE *file;
562 int matched;
Eric Andersen31c27a92004-10-08 08:10:57 +0000563 llist_t *fopt = NULL;
Matt Kraai999623e2001-10-29 15:49:03 +0000564
Mark Whitleyd3721892000-06-28 22:00:26 +0000565 /* do normal option parsing */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000566#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko1d426652008-03-17 09:09:09 +0000567 int Copt;
Eric Andersen8876fb22003-06-20 09:01:58 +0000568
Denis Vlasenko1d426652008-03-17 09:09:09 +0000569 /* -H unsets -h; -C unsets -A,-B; -e,-f are lists;
570 * -m,-A,-B,-C have numeric param */
571 opt_complementary = "H-h:C-AB:e::f::m+:A+:B+:C+";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000572 getopt32(argv,
Denis Vlasenko385304d2007-02-25 02:38:20 +0000573 OPTSTR_GREP,
Denis Vlasenko1d426652008-03-17 09:09:09 +0000574 &pattern_head, &fopt, &max_matches,
575 &lines_after, &lines_before, &Copt);
Eric Andersen8876fb22003-06-20 09:01:58 +0000576
Denis Vlasenko385304d2007-02-25 02:38:20 +0000577 if (option_mask32 & OPT_C) {
Denis Vlasenko2295b492006-10-22 11:42:51 +0000578 /* -C unsets prev -A and -B, but following -A or -B
579 may override it */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000580 if (!(option_mask32 & OPT_A)) /* not overridden */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000581 lines_after = Copt;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000582 if (!(option_mask32 & OPT_B)) /* not overridden */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000583 lines_before = Copt;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000584 }
Denis Vlasenko2295b492006-10-22 11:42:51 +0000585 /* sanity checks */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000586 if (option_mask32 & (OPT_c|OPT_q|OPT_l|OPT_L)) {
587 option_mask32 &= ~OPT_n;
Eric Andersen8876fb22003-06-20 09:01:58 +0000588 lines_before = 0;
589 lines_after = 0;
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000590 } else if (lines_before > 0) {
591 before_buf = xzalloc(lines_before * sizeof(before_buf[0]));
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000592 IF_EXTRA_COMPAT(before_buf_size = xzalloc(lines_before * sizeof(before_buf_size[0]));)
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000593 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000594#else
595 /* with auto sanity checks */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000596 /* -H unsets -h; -c,-q or -l unset -n; -e,-f are lists; -m N */
597 opt_complementary = "H-h:c-n:q-n:l-n:e::f::m+";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000598 getopt32(argv, OPTSTR_GREP,
Denis Vlasenko1d426652008-03-17 09:09:09 +0000599 &pattern_head, &fopt, &max_matches);
Eric Andersen8876fb22003-06-20 09:01:58 +0000600#endif
Denis Vlasenko385304d2007-02-25 02:38:20 +0000601 invert_search = ((option_mask32 & OPT_v) != 0); /* 0 | 1 */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000602
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000603 if (pattern_head != NULL) {
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +0000604 /* convert char **argv to grep_list_data_t */
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000605 llist_t *cur;
606
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000607 for (cur = pattern_head; cur; cur = cur->link)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000608 cur->data = new_grep_list_data(cur->data, 0);
609 }
Denis Vlasenko385304d2007-02-25 02:38:20 +0000610 if (option_mask32 & OPT_f)
Eric Andersen8876fb22003-06-20 09:01:58 +0000611 load_regexes_from_file(fopt);
612
Denis Vlasenko8f8f2682006-10-03 21:00:43 +0000613 if (ENABLE_FEATURE_GREP_FGREP_ALIAS && applet_name[0] == 'f')
Denis Vlasenko385304d2007-02-25 02:38:20 +0000614 option_mask32 |= OPT_F;
Mike Frysinger15ca5862005-07-31 22:41:05 +0000615
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000616#if !ENABLE_EXTRA_COMPAT
Denis Vlasenko385304d2007-02-25 02:38:20 +0000617 if (!(option_mask32 & (OPT_o | OPT_w)))
Denis Vlasenko51937532006-09-29 20:58:53 +0000618 reflags = REG_NOSUB;
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000619#endif
Denis Vlasenko51937532006-09-29 20:58:53 +0000620
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000621 if (ENABLE_FEATURE_GREP_EGREP_ALIAS
622 && (applet_name[0] == 'e' || (option_mask32 & OPT_E))
623 ) {
Denis Vlasenko51937532006-09-29 20:58:53 +0000624 reflags |= REG_EXTENDED;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000625 }
Denis Vlasenko9ac706b2008-09-19 21:32:51 +0000626#if ENABLE_EXTRA_COMPAT
627 else {
628 reflags = RE_SYNTAX_GREP;
629 }
630#endif
Eric Andersen8876fb22003-06-20 09:01:58 +0000631
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000632 if (option_mask32 & OPT_i) {
633#if !ENABLE_EXTRA_COMPAT
Eric Andersen8876fb22003-06-20 09:01:58 +0000634 reflags |= REG_ICASE;
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000635#else
636 int i;
637 case_fold = xmalloc(256);
638 for (i = 0; i < 256; i++)
639 case_fold[i] = (unsigned char)i;
640 for (i = 'a'; i <= 'z'; i++)
641 case_fold[i] = (unsigned char)(i - ('a' - 'A'));
642#endif
643 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000644
645 argv += optind;
Eric Andersen053b1462000-06-13 06:24:53 +0000646
Denis Vlasenko1d426652008-03-17 09:09:09 +0000647 /* if we didn't get a pattern from -e and no command file was specified,
648 * first parameter should be the pattern. no pattern, no worky */
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000649 if (pattern_head == NULL) {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000650 char *pattern;
Eric Andersen8876fb22003-06-20 09:01:58 +0000651 if (*argv == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000652 bb_show_usage();
Denis Vlasenko385304d2007-02-25 02:38:20 +0000653 pattern = new_grep_list_data(*argv++, 0);
654 llist_add_to(&pattern_head, pattern);
Mark Whitleyfa43e542001-05-24 18:36:18 +0000655 }
Mark Whitleyd3721892000-06-28 22:00:26 +0000656
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000657 /* argv[0..(argc-1)] should be names of file to grep through. If
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000658 * there is more than one file to grep, we will print the filenames. */
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100659 if (argv[0] && argv[1])
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000660 print_filename = 1;
Denis Vlasenko2295b492006-10-22 11:42:51 +0000661 /* -H / -h of course override */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000662 if (option_mask32 & OPT_H)
Denis Vlasenko2295b492006-10-22 11:42:51 +0000663 print_filename = 1;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000664 if (option_mask32 & OPT_h)
Denis Vlasenko2295b492006-10-22 11:42:51 +0000665 print_filename = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000666
Mark Whitley2e1148b2000-06-28 22:59:30 +0000667 /* If no files were specified, or '-' was specified, take input from
668 * stdin. Otherwise, we grep through all the files specified. */
Eric Andersen8876fb22003-06-20 09:01:58 +0000669 matched = 0;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000670 do {
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100671 cur_file = *argv;
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000672 file = stdin;
Denis Vlasenko1d426652008-03-17 09:09:09 +0000673 if (!cur_file || LONE_DASH(cur_file)) {
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000674 cur_file = "(standard input)";
Eric Andersen8876fb22003-06-20 09:01:58 +0000675 } else {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000676 if (option_mask32 & OPT_r) {
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000677 struct stat st;
678 if (stat(cur_file, &st) == 0 && S_ISDIR(st.st_mode)) {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000679 if (!(option_mask32 & OPT_h))
Denis Vlasenko3544ae62006-10-14 14:51:59 +0000680 print_filename = 1;
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000681 matched += grep_dir(cur_file);
682 goto grep_done;
683 }
Mark Whitley2ef880b2000-07-18 21:02:06 +0000684 }
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000685 /* else: fopen(dir) will succeed, but reading won't */
Denis Vlasenko5415c852008-07-21 23:05:26 +0000686 file = fopen_for_read(cur_file);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000687 if (file == NULL) {
688 if (!SUPPRESS_ERR_MSGS)
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +0000689 bb_simple_perror_msg(cur_file);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000690 open_errors = 1;
691 continue;
692 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000693 }
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000694 matched += grep_file(file);
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000695 fclose_if_not_stdin(file);
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000696 grep_done: ;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100697 } while (*argv && *++argv);
Eric Andersen8876fb22003-06-20 09:01:58 +0000698
Eric Andersen8876fb22003-06-20 09:01:58 +0000699 /* destroy all the elments in the pattern list */
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000700 if (ENABLE_FEATURE_CLEAN_UP) {
701 while (pattern_head) {
702 llist_t *pattern_head_ptr = pattern_head;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000703 grep_list_data_t *gl = (grep_list_data_t *)pattern_head_ptr->data;
Eric Andersen8876fb22003-06-20 09:01:58 +0000704
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000705 pattern_head = pattern_head->link;
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000706 if (gl->flg_mem_alocated_compiled & ALLOCATED)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000707 free(gl->pattern);
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000708 if (gl->flg_mem_alocated_compiled & COMPILED)
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000709 regfree(&gl->compiled_regex);
Mike Frysinger3a62a732007-04-12 18:29:27 +0000710 free(gl);
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000711 free(pattern_head_ptr);
712 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000713 }
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000714 /* 0 = success, 1 = failed, 2 = error */
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000715 if (open_errors)
"Vladimir N. Oleynik"bf449742005-09-23 13:50:24 +0000716 return 2;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000717 return !matched; /* invert return value: 0 = success, 1 = failed */
Eric Andersencc8ed391999-10-05 16:24:54 +0000718}