blob: b8ad1bf8f6293b9c530ebf56a9c2fc57f4a0bf66 [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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02008 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
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
Denys Vlasenko4f731ce2010-06-15 15:40:16 +020017 *
Denis Vlasenko51937532006-09-29 20:58:53 +000018 * (C) 2006 Jac Goudsmit added -o option
19 */
Eric Andersencc8ed391999-10-05 16:24:54 +000020
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +010021//applet:IF_GREP(APPLET(grep, BB_DIR_BIN, BB_SUID_DROP))
22//applet:IF_FEATURE_GREP_EGREP_ALIAS(APPLET_ODDNAME(egrep, grep, BB_DIR_BIN, BB_SUID_DROP, egrep))
23//applet:IF_FEATURE_GREP_FGREP_ALIAS(APPLET_ODDNAME(fgrep, grep, BB_DIR_BIN, BB_SUID_DROP, fgrep))
Denys Vlasenko4f731ce2010-06-15 15:40:16 +020024
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020025//kbuild:lib-$(CONFIG_GREP) += grep.o
Denys Vlasenko4f731ce2010-06-15 15:40:16 +020026
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020027//config:config GREP
28//config: bool "grep"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020029//config: default y
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020030//config: help
31//config: grep is used to search files for a specified pattern.
32//config:
33//config:config FEATURE_GREP_EGREP_ALIAS
34//config: bool "Enable extended regular expressions (egrep & grep -E)"
35//config: default y
36//config: depends on GREP
37//config: help
38//config: Enabled support for extended regular expressions. Extended
39//config: regular expressions allow for alternation (foo|bar), grouping,
40//config: and various repetition operators.
41//config:
42//config:config FEATURE_GREP_FGREP_ALIAS
43//config: bool "Alias fgrep to grep -F"
44//config: default y
45//config: depends on GREP
46//config: help
47//config: fgrep sees the search pattern as a normal string rather than
48//config: regular expressions.
49//config: grep -F always works, this just creates the fgrep alias.
50//config:
51//config:config FEATURE_GREP_CONTEXT
52//config: bool "Enable before and after context flags (-A, -B and -C)"
53//config: default y
54//config: depends on GREP
55//config: help
56//config: Print the specified number of leading (-B) and/or trailing (-A)
57//config: context surrounding our matching lines.
58//config: Print the specified number of context lines (-C).
59
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000060#include "libbb.h"
"Vladimir N. Oleynik"23f62fc2005-09-14 16:59:11 +000061#include "xregex.h"
Mark Whitleyd3721892000-06-28 22:00:26 +000062
Denys Vlasenko4f731ce2010-06-15 15:40:16 +020063
Mark Whitleyd3721892000-06-28 22:00:26 +000064/* options */
Denys Vlasenko4f731ce2010-06-15 15:40:16 +020065//usage:#define grep_trivial_usage
66//usage: "[-HhnlLoqvsriw"
67//usage: "F"
68//usage: IF_FEATURE_GREP_EGREP_ALIAS("E")
69//usage: IF_EXTRA_COMPAT("z")
70//usage: "] [-m N] "
71//usage: IF_FEATURE_GREP_CONTEXT("[-A/B/C N] ")
72//usage: "PATTERN/-e PATTERN.../-f FILE [FILE]..."
73//usage:#define grep_full_usage "\n\n"
74//usage: "Search for PATTERN in FILEs (or stdin)\n"
Denys Vlasenko4f731ce2010-06-15 15:40:16 +020075//usage: "\n -H Add 'filename:' prefix"
76//usage: "\n -h Do not add 'filename:' prefix"
77//usage: "\n -n Add 'line_no:' prefix"
78//usage: "\n -l Show only names of files that match"
79//usage: "\n -L Show only names of files that don't match"
80//usage: "\n -c Show only count of matching lines"
81//usage: "\n -o Show only the matching part of line"
82//usage: "\n -q Quiet. Return 0 if PATTERN is found, 1 otherwise"
83//usage: "\n -v Select non-matching lines"
84//usage: "\n -s Suppress open and read errors"
85//usage: "\n -r Recurse"
86//usage: "\n -i Ignore case"
87//usage: "\n -w Match whole words only"
Natanael Copacd09e812012-02-23 14:20:22 +000088//usage: "\n -x Match whole lines only"
Denys Vlasenko4f731ce2010-06-15 15:40:16 +020089//usage: "\n -F PATTERN is a literal (not regexp)"
90//usage: IF_FEATURE_GREP_EGREP_ALIAS(
91//usage: "\n -E PATTERN is an extended regexp"
92//usage: )
93//usage: IF_EXTRA_COMPAT(
94//usage: "\n -z Input is NUL terminated"
95//usage: )
96//usage: "\n -m N Match up to N times per file"
97//usage: IF_FEATURE_GREP_CONTEXT(
98//usage: "\n -A N Print N lines of trailing context"
99//usage: "\n -B N Print N lines of leading context"
100//usage: "\n -C N Same as '-A N -B N'"
101//usage: )
102//usage: "\n -e PTRN Pattern to match"
103//usage: "\n -f FILE Read pattern from file"
104//usage:
105//usage:#define grep_example_usage
106//usage: "$ grep root /etc/passwd\n"
107//usage: "root:x:0:0:root:/root:/bin/bash\n"
108//usage: "$ grep ^[rR]oo. /etc/passwd\n"
109//usage: "root:x:0:0:root:/root:/bin/bash\n"
110//usage:
111//usage:#define egrep_trivial_usage NOUSAGE_STR
112//usage:#define egrep_full_usage ""
113//usage:#define fgrep_trivial_usage NOUSAGE_STR
114//usage:#define fgrep_full_usage ""
115
Denis Vlasenko385304d2007-02-25 02:38:20 +0000116#define OPTSTR_GREP \
Natanael Copacd09e812012-02-23 14:20:22 +0000117 "lnqvscFiHhe:f:Lorm:wx" \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000118 IF_FEATURE_GREP_CONTEXT("A:B:C:") \
119 IF_FEATURE_GREP_EGREP_ALIAS("E") \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000120 IF_EXTRA_COMPAT("z") \
Denis Vlasenkof8ea0f32007-02-25 02:38:54 +0000121 "aI"
122/* ignored: -a "assume all files to be text" */
123/* ignored: -I "assume binary files have no matches" */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000124enum {
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000125 OPTBIT_l, /* list matched file names only */
126 OPTBIT_n, /* print line# */
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000127 OPTBIT_q, /* quiet - exit(EXIT_SUCCESS) of first match */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000128 OPTBIT_v, /* invert the match, to select non-matching lines */
129 OPTBIT_s, /* suppress errors about file open errors */
130 OPTBIT_c, /* count matches per file (suppresses normal output) */
131 OPTBIT_F, /* literal match */
132 OPTBIT_i, /* case-insensitive */
133 OPTBIT_H, /* force filename display */
134 OPTBIT_h, /* inhibit filename display */
135 OPTBIT_e, /* -e PATTERN */
136 OPTBIT_f, /* -f FILE_WITH_PATTERNS */
137 OPTBIT_L, /* list unmatched file names only */
138 OPTBIT_o, /* show only matching parts of lines */
139 OPTBIT_r, /* recurse dirs */
140 OPTBIT_m, /* -m MAX_MATCHES */
Denys Vlasenko05273da2010-04-26 08:45:44 +0200141 OPTBIT_w, /* -w whole word match */
Natanael Copacd09e812012-02-23 14:20:22 +0000142 OPTBIT_x, /* -x whole line match */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000143 IF_FEATURE_GREP_CONTEXT( OPTBIT_A ,) /* -A NUM: after-match context */
144 IF_FEATURE_GREP_CONTEXT( OPTBIT_B ,) /* -B NUM: before-match context */
145 IF_FEATURE_GREP_CONTEXT( OPTBIT_C ,) /* -C NUM: -A and -B combined */
146 IF_FEATURE_GREP_EGREP_ALIAS(OPTBIT_E ,) /* extended regexp */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000147 IF_EXTRA_COMPAT( OPTBIT_z ,) /* input is NUL terminated */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000148 OPT_l = 1 << OPTBIT_l,
149 OPT_n = 1 << OPTBIT_n,
150 OPT_q = 1 << OPTBIT_q,
151 OPT_v = 1 << OPTBIT_v,
152 OPT_s = 1 << OPTBIT_s,
153 OPT_c = 1 << OPTBIT_c,
154 OPT_F = 1 << OPTBIT_F,
155 OPT_i = 1 << OPTBIT_i,
156 OPT_H = 1 << OPTBIT_H,
157 OPT_h = 1 << OPTBIT_h,
158 OPT_e = 1 << OPTBIT_e,
159 OPT_f = 1 << OPTBIT_f,
160 OPT_L = 1 << OPTBIT_L,
161 OPT_o = 1 << OPTBIT_o,
162 OPT_r = 1 << OPTBIT_r,
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000163 OPT_m = 1 << OPTBIT_m,
Denys Vlasenko05273da2010-04-26 08:45:44 +0200164 OPT_w = 1 << OPTBIT_w,
Natanael Copacd09e812012-02-23 14:20:22 +0000165 OPT_x = 1 << OPTBIT_x,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000166 OPT_A = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_A)) + 0,
167 OPT_B = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_B)) + 0,
168 OPT_C = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_C)) + 0,
169 OPT_E = IF_FEATURE_GREP_EGREP_ALIAS((1 << OPTBIT_E)) + 0,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000170 OPT_z = IF_EXTRA_COMPAT( (1 << OPTBIT_z)) + 0,
Denis Vlasenko385304d2007-02-25 02:38:20 +0000171};
172
Denis Vlasenko9acfed22007-06-08 15:41:27 +0000173#define PRINT_FILES_WITH_MATCHES (option_mask32 & OPT_l)
174#define PRINT_LINE_NUM (option_mask32 & OPT_n)
175#define BE_QUIET (option_mask32 & OPT_q)
176#define SUPPRESS_ERR_MSGS (option_mask32 & OPT_s)
177#define PRINT_MATCH_COUNTS (option_mask32 & OPT_c)
178#define FGREP_FLAG (option_mask32 & OPT_F)
Denis Vlasenko385304d2007-02-25 02:38:20 +0000179#define PRINT_FILES_WITHOUT_MATCHES (option_mask32 & OPT_L)
Denis Vlasenko83518d12009-03-20 22:17:13 +0000180#define NUL_DELIMITED (option_mask32 & OPT_z)
Eric Andersen8876fb22003-06-20 09:01:58 +0000181
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000182struct globals {
183 int max_matches;
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000184#if !ENABLE_EXTRA_COMPAT
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000185 int reflags;
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000186#else
187 RE_TRANSLATE_TYPE case_fold; /* RE_TRANSLATE_TYPE is [[un]signed] char* */
188#endif
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000189 smalluint invert_search;
190 smalluint print_filename;
191 smalluint open_errors;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000192#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000193 smalluint did_print_line;
194 int lines_before;
195 int lines_after;
196 char **before_buf;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000197 IF_EXTRA_COMPAT(size_t *before_buf_size;)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000198 int last_line_printed;
199#endif
200 /* globals used internally */
201 llist_t *pattern_head; /* growable list of patterns to match */
202 const char *cur_file; /* the current file we are reading */
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100203} FIX_ALIASING;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000204#define G (*(struct globals*)&bb_common_bufsiz1)
Denis Vlasenko7049ff82008-06-25 09:53:17 +0000205#define INIT_G() do { \
206 struct G_sizecheck { \
207 char G_sizecheck[sizeof(G) > COMMON_BUFSIZE ? -1 : 1]; \
208 }; \
209} while (0)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000210#define max_matches (G.max_matches )
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000211#if !ENABLE_EXTRA_COMPAT
Denys Vlasenko09449632009-07-29 01:20:09 +0200212# define reflags (G.reflags )
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000213#else
Denys Vlasenko09449632009-07-29 01:20:09 +0200214# define case_fold (G.case_fold )
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000215/* http://www.delorie.com/gnu/docs/regex/regex_46.html */
Denys Vlasenko09449632009-07-29 01:20:09 +0200216# define reflags re_syntax_options
217# undef REG_NOSUB
218# undef REG_EXTENDED
219# undef REG_ICASE
220# define REG_NOSUB bug:is:here /* should not be used */
221/* Just RE_SYNTAX_EGREP is not enough, need to enable {n[,[m]]} too */
222# define REG_EXTENDED (RE_SYNTAX_EGREP | RE_INTERVALS | RE_NO_BK_BRACES)
223# define REG_ICASE bug:is:here /* should not be used */
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000224#endif
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000225#define invert_search (G.invert_search )
226#define print_filename (G.print_filename )
227#define open_errors (G.open_errors )
228#define did_print_line (G.did_print_line )
229#define lines_before (G.lines_before )
230#define lines_after (G.lines_after )
231#define before_buf (G.before_buf )
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000232#define before_buf_size (G.before_buf_size )
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000233#define last_line_printed (G.last_line_printed )
234#define pattern_head (G.pattern_head )
235#define cur_file (G.cur_file )
236
Mark Whitleyd3721892000-06-28 22:00:26 +0000237
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000238typedef struct grep_list_data_t {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000239 char *pattern;
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000240/* for GNU regex, matched_range must be persistent across grep_file() calls */
241#if !ENABLE_EXTRA_COMPAT
242 regex_t compiled_regex;
243 regmatch_t matched_range;
244#else
245 struct re_pattern_buffer compiled_regex;
246 struct re_registers matched_range;
247#endif
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000248#define ALLOCATED 1
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000249#define COMPILED 2
250 int flg_mem_alocated_compiled;
251} grep_list_data_t;
Mark Whitleyfa43e542001-05-24 18:36:18 +0000252
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000253#if !ENABLE_EXTRA_COMPAT
254#define print_line(line, line_len, linenum, decoration) \
255 print_line(line, linenum, decoration)
256#endif
257static void print_line(const char *line, size_t line_len, int linenum, char decoration)
Mark Whitley2fd52982001-02-09 00:41:10 +0000258{
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000259#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000260 /* Happens when we go to next file, immediately hit match
261 * and try to print prev context... from prev file! Don't do it */
262 if (linenum < 1)
263 return;
Eric Andersenaff114c2004-04-14 17:51:38 +0000264 /* possibly print the little '--' separator */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000265 if ((lines_before || lines_after) && did_print_line
266 && last_line_printed != linenum - 1
267 ) {
Mark Whitley2fd52982001-02-09 00:41:10 +0000268 puts("--");
269 }
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000270 /* guard against printing "--" before first line of first file */
271 did_print_line = 1;
Mark Whitley2fd52982001-02-09 00:41:10 +0000272 last_line_printed = linenum;
273#endif
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000274 if (print_filename)
Mark Whitley2fd52982001-02-09 00:41:10 +0000275 printf("%s%c", cur_file, decoration);
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000276 if (PRINT_LINE_NUM)
Mark Whitley2fd52982001-02-09 00:41:10 +0000277 printf("%i%c", linenum, decoration);
Denis Vlasenko51937532006-09-29 20:58:53 +0000278 /* Emulate weird GNU grep behavior with -ov */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000279 if ((option_mask32 & (OPT_v|OPT_o)) != (OPT_v|OPT_o)) {
280#if !ENABLE_EXTRA_COMPAT
Denis Vlasenko51937532006-09-29 20:58:53 +0000281 puts(line);
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000282#else
283 fwrite(line, 1, line_len, stdout);
Denis Vlasenko83518d12009-03-20 22:17:13 +0000284 putchar(NUL_DELIMITED ? '\0' : '\n');
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000285#endif
286 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000287}
Mark Whitleyd3721892000-06-28 22:00:26 +0000288
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000289#if ENABLE_EXTRA_COMPAT
290/* Unlike getline, this one removes trailing '\n' */
291static ssize_t FAST_FUNC bb_getline(char **line_ptr, size_t *line_alloc_len, FILE *file)
292{
293 ssize_t res_sz;
294 char *line;
Denis Vlasenko83518d12009-03-20 22:17:13 +0000295 int delim = (NUL_DELIMITED ? '\0' : '\n');
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000296
Denis Vlasenko83518d12009-03-20 22:17:13 +0000297 res_sz = getdelim(line_ptr, line_alloc_len, delim, file);
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000298 line = *line_ptr;
299
300 if (res_sz > 0) {
Denis Vlasenko83518d12009-03-20 22:17:13 +0000301 if (line[res_sz - 1] == delim)
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000302 line[--res_sz] = '\0';
303 } else {
304 free(line); /* uclibc allocates a buffer even on EOF. WTF? */
305 }
306 return res_sz;
307}
308#endif
309
Eric Andersen8876fb22003-06-20 09:01:58 +0000310static int grep_file(FILE *file)
Mark Whitleyd3721892000-06-28 22:00:26 +0000311{
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000312 smalluint found;
Mark Whitleyd3721892000-06-28 22:00:26 +0000313 int linenum = 0;
Matt Kraaideb95f62000-08-06 15:25:53 +0000314 int nmatches = 0;
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000315#if !ENABLE_EXTRA_COMPAT
316 char *line;
317#else
318 char *line = NULL;
319 ssize_t line_len;
320 size_t line_alloc_len;
Denys Vlasenko6dc0ace2009-12-04 02:48:14 +0100321# define rm_so start[0]
322# define rm_eo end[0]
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000323#endif
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000324#if ENABLE_FEATURE_GREP_CONTEXT
Mark Whitley2fd52982001-02-09 00:41:10 +0000325 int print_n_lines_after = 0;
326 int curpos = 0; /* track where we are in the circular 'before' buffer */
327 int idx = 0; /* used for iteration through the circular buffer */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000328#else
329 enum { print_n_lines_after = 0 };
Denys Vlasenko6dc0ace2009-12-04 02:48:14 +0100330#endif
Mark Whitleyd3721892000-06-28 22:00:26 +0000331
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000332 while (
333#if !ENABLE_EXTRA_COMPAT
334 (line = xmalloc_fgetline(file)) != NULL
335#else
336 (line_len = bb_getline(&line, &line_alloc_len, file)) >= 0
337#endif
338 ) {
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000339 llist_t *pattern_ptr = pattern_head;
Denis Vlasenko68102362007-11-04 00:46:03 +0000340 grep_list_data_t *gl = gl; /* for gcc */
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000341
Mark Whitleyd3721892000-06-28 22:00:26 +0000342 linenum++;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000343 found = 0;
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000344 while (pattern_ptr) {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000345 gl = (grep_list_data_t *)pattern_ptr->data;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000346 if (FGREP_FLAG) {
Denys Vlasenko2f5b5be2013-01-20 16:57:19 +0100347 char *match;
348 char *str = line;
349 opt_f_again:
350 match = ((option_mask32 & OPT_i)
351 ? strcasestr(str, gl->pattern)
352 : strstr(str, gl->pattern)
353 );
354 if (match) {
355 if (option_mask32 & OPT_x) {
356 if (match != str)
357 goto opt_f_not_found;
358 if (str[strlen(gl->pattern)] != '\0')
359 goto opt_f_not_found;
360 } else
361 if (option_mask32 & OPT_w) {
362 char c = (match != str) ? match[-1] : ' ';
363 if (!isalnum(c) && c != '_') {
364 c = match[strlen(gl->pattern)];
365 if (!c || (!isalnum(c) && c != '_'))
366 goto opt_f_found;
367 }
368 str = match + 1;
369 goto opt_f_again;
370 }
371 opt_f_found:
372 found = 1;
373 opt_f_not_found: ;
374 }
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000375 } else {
Bartosz Golaszewski414db792013-05-15 03:53:26 +0200376 char *match_at;
377
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000378 if (!(gl->flg_mem_alocated_compiled & COMPILED)) {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000379 gl->flg_mem_alocated_compiled |= COMPILED;
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000380#if !ENABLE_EXTRA_COMPAT
381 xregcomp(&gl->compiled_regex, gl->pattern, reflags);
382#else
383 memset(&gl->compiled_regex, 0, sizeof(gl->compiled_regex));
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000384 gl->compiled_regex.translate = case_fold; /* for -i */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000385 if (re_compile_pattern(gl->pattern, strlen(gl->pattern), &gl->compiled_regex))
386 bb_error_msg_and_die("bad regex '%s'", gl->pattern);
387#endif
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000388 }
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000389#if !ENABLE_EXTRA_COMPAT
390 gl->matched_range.rm_so = 0;
391 gl->matched_range.rm_eo = 0;
392#endif
Bartosz Golaszewski414db792013-05-15 03:53:26 +0200393 match_at = line;
394 opt_w_again:
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000395 if (
396#if !ENABLE_EXTRA_COMPAT
Bartosz Golaszewski414db792013-05-15 03:53:26 +0200397 regexec(&gl->compiled_regex, match_at, 1, &gl->matched_range, 0) == 0
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000398#else
Bartosz Golaszewski414db792013-05-15 03:53:26 +0200399 re_search(&gl->compiled_regex, match_at, line_len,
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000400 /*start:*/ 0, /*range:*/ line_len,
401 &gl->matched_range) >= 0
402#endif
403 ) {
Natanael Copacd09e812012-02-23 14:20:22 +0000404 if (option_mask32 & OPT_x) {
405 found = (gl->matched_range.rm_so == 0
Bartosz Golaszewski414db792013-05-15 03:53:26 +0200406 && match_at[gl->matched_range.rm_eo] == '\0');
Denys Vlasenko2f5b5be2013-01-20 16:57:19 +0100407 } else
408 if (!(option_mask32 & OPT_w)) {
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000409 found = 1;
Natanael Copacd09e812012-02-23 14:20:22 +0000410 } else {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000411 char c = ' ';
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000412 if (gl->matched_range.rm_so)
Bartosz Golaszewski414db792013-05-15 03:53:26 +0200413 c = match_at[gl->matched_range.rm_so - 1];
Denis Vlasenko385304d2007-02-25 02:38:20 +0000414 if (!isalnum(c) && c != '_') {
Bartosz Golaszewski414db792013-05-15 03:53:26 +0200415 c = match_at[gl->matched_range.rm_eo];
416 if (!c || (!isalnum(c) && c != '_')) {
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000417 found = 1;
Bartosz Golaszewski414db792013-05-15 03:53:26 +0200418 } else {
419 match_at += gl->matched_range.rm_eo;
420 goto opt_w_again;
421 }
Denis Vlasenko385304d2007-02-25 02:38:20 +0000422 }
423 }
424 }
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000425 }
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000426 /* If it's non-inverted search, we can stop
427 * at first match */
428 if (found && !invert_search)
429 goto do_found;
Eric Andersen8876fb22003-06-20 09:01:58 +0000430 pattern_ptr = pattern_ptr->link;
431 } /* while (pattern_ptr) */
Mark Whitleyd3721892000-06-28 22:00:26 +0000432
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000433 if (found ^ invert_search) {
434 do_found:
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000435 /* keep track of matches */
436 nmatches++;
Mark Whitley1d9d4112001-05-21 21:13:00 +0000437
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000438 /* quiet/print (non)matching file names only? */
439 if (option_mask32 & (OPT_q|OPT_l|OPT_L)) {
440 free(line); /* we don't need line anymore */
441 if (BE_QUIET) {
442 /* manpage says about -q:
443 * "exit immediately with zero status
444 * if any match is found,
445 * even if errors were detected" */
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000446 exit(EXIT_SUCCESS);
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000447 }
448 /* if we're just printing filenames, we stop after the first match */
449 if (PRINT_FILES_WITH_MATCHES) {
450 puts(cur_file);
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +0000451 /* fall through to "return 1" */
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000452 }
453 /* OPT_L aka PRINT_FILES_WITHOUT_MATCHES: return early */
454 return 1; /* one match */
455 }
Mark Whitley1d9d4112001-05-21 21:13:00 +0000456
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000457#if ENABLE_FEATURE_GREP_CONTEXT
458 /* Were we printing context and saw next (unwanted) match? */
459 if ((option_mask32 & OPT_m) && nmatches > max_matches)
460 break;
461#endif
462
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000463 /* print the matched line */
464 if (PRINT_MATCH_COUNTS == 0) {
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000465#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000466 int prevpos = (curpos == 0) ? lines_before - 1 : curpos - 1;
Mark Whitley2fd52982001-02-09 00:41:10 +0000467
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000468 /* if we were told to print 'before' lines and there is at least
469 * one line in the circular buffer, print them */
470 if (lines_before && before_buf[prevpos] != NULL) {
471 int first_buf_entry_line_num = linenum - lines_before;
Mark Whitley2fd52982001-02-09 00:41:10 +0000472
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000473 /* advance to the first entry in the circular buffer, and
474 * figure out the line number is of the first line in the
475 * buffer */
476 idx = curpos;
477 while (before_buf[idx] == NULL) {
478 idx = (idx + 1) % lines_before;
479 first_buf_entry_line_num++;
Mark Whitley2fd52982001-02-09 00:41:10 +0000480 }
481
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000482 /* now print each line in the buffer, clearing them as we go */
483 while (before_buf[idx] != NULL) {
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000484 print_line(before_buf[idx], before_buf_size[idx], first_buf_entry_line_num, '-');
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000485 free(before_buf[idx]);
486 before_buf[idx] = NULL;
487 idx = (idx + 1) % lines_before;
488 first_buf_entry_line_num++;
489 }
490 }
491
492 /* make a note that we need to print 'after' lines */
493 print_n_lines_after = lines_after;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000494#endif
Denis Vlasenko385304d2007-02-25 02:38:20 +0000495 if (option_mask32 & OPT_o) {
Denis Vlasenko68102362007-11-04 00:46:03 +0000496 if (FGREP_FLAG) {
497 /* -Fo just prints the pattern
498 * (unless -v: -Fov doesnt print anything at all) */
499 if (found)
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000500 print_line(gl->pattern, strlen(gl->pattern), linenum, ':');
Denis Vlasenkof60719c2008-09-30 22:37:29 +0000501 } else while (1) {
Denys Vlasenko3d8b96d2010-08-23 02:39:47 +0200502 unsigned start = gl->matched_range.rm_so;
Denys Vlasenko09449632009-07-29 01:20:09 +0200503 unsigned end = gl->matched_range.rm_eo;
Denys Vlasenko3d8b96d2010-08-23 02:39:47 +0200504 unsigned len = end - start;
Denys Vlasenko09449632009-07-29 01:20:09 +0200505 char old = line[end];
506 line[end] = '\0';
Denys Vlasenko3d8b96d2010-08-23 02:39:47 +0200507 /* Empty match is not printed: try "echo test | grep -o ''" */
508 if (len != 0)
509 print_line(line + start, len, linenum, ':');
Denys Vlasenko6dc0ace2009-12-04 02:48:14 +0100510 if (old == '\0')
511 break;
Denys Vlasenko09449632009-07-29 01:20:09 +0200512 line[end] = old;
Denys Vlasenko3d8b96d2010-08-23 02:39:47 +0200513 if (len == 0)
514 end++;
Denis Vlasenkof60719c2008-09-30 22:37:29 +0000515#if !ENABLE_EXTRA_COMPAT
Denys Vlasenko09449632009-07-29 01:20:09 +0200516 if (regexec(&gl->compiled_regex, line + end,
517 1, &gl->matched_range, REG_NOTBOL) != 0)
518 break;
519 gl->matched_range.rm_so += end;
520 gl->matched_range.rm_eo += end;
Denis Vlasenkof60719c2008-09-30 22:37:29 +0000521#else
522 if (re_search(&gl->compiled_regex, line, line_len,
Denys Vlasenko09449632009-07-29 01:20:09 +0200523 end, line_len - end,
Denis Vlasenkof60719c2008-09-30 22:37:29 +0000524 &gl->matched_range) < 0)
525 break;
526#endif
Denis Vlasenkoa9acbe62008-11-24 13:25:20 +0000527 }
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000528 } else {
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000529 print_line(line, line_len, linenum, ':');
Mark Whitley2fd52982001-02-09 00:41:10 +0000530 }
Matt Kraai0810f722001-01-04 15:11:52 +0000531 }
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000532 }
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000533#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000534 else { /* no match */
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000535 /* if we need to print some context lines after the last match, do so */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000536 if (print_n_lines_after) {
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000537 print_line(line, strlen(line), linenum, '-');
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000538 print_n_lines_after--;
539 } else if (lines_before) {
540 /* Add the line to the circular 'before' buffer */
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000541 free(before_buf[curpos]);
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000542 before_buf[curpos] = line;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000543 IF_EXTRA_COMPAT(before_buf_size[curpos] = line_len;)
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000544 curpos = (curpos + 1) % lines_before;
Denis Vlasenko1d426652008-03-17 09:09:09 +0000545 /* avoid free(line) - we took the line */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000546 line = NULL;
Mark Whitley2fd52982001-02-09 00:41:10 +0000547 }
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000548 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000549
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000550#endif /* ENABLE_FEATURE_GREP_CONTEXT */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000551#if !ENABLE_EXTRA_COMPAT
Mark Whitleyd3721892000-06-28 22:00:26 +0000552 free(line);
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000553#endif
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000554 /* Did we print all context after last requested match? */
555 if ((option_mask32 & OPT_m)
Denis Vlasenko83518d12009-03-20 22:17:13 +0000556 && !print_n_lines_after
557 && nmatches == max_matches
558 ) {
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000559 break;
Denis Vlasenko83518d12009-03-20 22:17:13 +0000560 }
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000561 } /* while (read line) */
Mark Whitley8f122432000-07-18 18:37:01 +0000562
Mark Whitley35e59be2001-05-14 19:40:32 +0000563 /* special-case file post-processing for options where we don't print line
Mark Whitley1d9d4112001-05-21 21:13:00 +0000564 * matches, just filenames and possibly match counts */
Mark Whitley35e59be2001-05-14 19:40:32 +0000565
Mark Whitley1d9d4112001-05-21 21:13:00 +0000566 /* grep -c: print [filename:]count, even if count is zero */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000567 if (PRINT_MATCH_COUNTS) {
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000568 if (print_filename)
Mark Whitley1d9d4112001-05-21 21:13:00 +0000569 printf("%s:", cur_file);
Denis Vlasenko92758142006-10-03 19:56:34 +0000570 printf("%d\n", nmatches);
Mark Whitley35e59be2001-05-14 19:40:32 +0000571 }
Mark Whitley1d9d4112001-05-21 21:13:00 +0000572
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000573 /* grep -L: print just the filename */
574 if (PRINT_FILES_WITHOUT_MATCHES) {
575 /* nmatches is zero, no need to check it:
576 * we return 1 early if we detected a match
577 * and PRINT_FILES_WITHOUT_MATCHES is set */
Eric Andersendec7f812004-05-26 11:47:55 +0000578 puts(cur_file);
579 }
580
Eric Andersen8876fb22003-06-20 09:01:58 +0000581 return nmatches;
Mark Whitleyd3721892000-06-28 22:00:26 +0000582}
Eric Andersencc8ed391999-10-05 16:24:54 +0000583
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000584#if ENABLE_FEATURE_CLEAN_UP
585#define new_grep_list_data(p, m) add_grep_list_data(p, m)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000586static char *add_grep_list_data(char *pattern, int flg_used_mem)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000587#else
588#define new_grep_list_data(p, m) add_grep_list_data(p)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000589static char *add_grep_list_data(char *pattern)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000590#endif
591{
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000592 grep_list_data_t *gl = xzalloc(sizeof(*gl));
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000593 gl->pattern = pattern;
594#if ENABLE_FEATURE_CLEAN_UP
595 gl->flg_mem_alocated_compiled = flg_used_mem;
596#else
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000597 /*gl->flg_mem_alocated_compiled = 0;*/
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000598#endif
599 return (char *)gl;
600}
601
Eric Andersen8876fb22003-06-20 09:01:58 +0000602static void load_regexes_from_file(llist_t *fopt)
Mark Whitleyfa43e542001-05-24 18:36:18 +0000603{
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000604 while (fopt) {
Lauri Kasanen7b462202011-08-28 12:39:04 +0200605 char *line;
606 FILE *fp;
Eric Andersen8876fb22003-06-20 09:01:58 +0000607 llist_t *cur = fopt;
608 char *ffile = cur->data;
609
610 fopt = cur->link;
611 free(cur);
Lauri Kasanen7b462202011-08-28 12:39:04 +0200612 fp = xfopen_stdin(ffile);
613 while ((line = xmalloc_fgetline(fp)) != NULL) {
Rob Landley8bb50782006-05-26 23:44:51 +0000614 llist_add_to(&pattern_head,
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000615 new_grep_list_data(line, ALLOCATED));
Eric Andersen31c27a92004-10-08 08:10:57 +0000616 }
Lauri Kasanen7b462202011-08-28 12:39:04 +0200617 fclose_if_not_stdin(fp);
Mark Whitleyfa43e542001-05-24 18:36:18 +0000618 }
619}
Mark Whitleyfa43e542001-05-24 18:36:18 +0000620
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000621static int FAST_FUNC file_action_grep(const char *filename,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000622 struct stat *statbuf UNUSED_PARAM,
Denis Vlasenko1d426652008-03-17 09:09:09 +0000623 void* matched,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000624 int depth UNUSED_PARAM)
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000625{
Denis Vlasenko5415c852008-07-21 23:05:26 +0000626 FILE *file = fopen_for_read(filename);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000627 if (file == NULL) {
628 if (!SUPPRESS_ERR_MSGS)
Denis Vlasenko8e8200a2008-01-24 01:30:36 +0000629 bb_simple_perror_msg(filename);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000630 open_errors = 1;
631 return 0;
632 }
633 cur_file = filename;
634 *(int*)matched += grep_file(file);
Denis Vlasenkobf392162006-10-15 18:38:01 +0000635 fclose(file);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000636 return 1;
637}
638
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000639static int grep_dir(const char *dir)
640{
641 int matched = 0;
642 recursive_action(dir,
Denis Vlasenkobbd695d2007-04-08 10:52:28 +0000643 /* recurse=yes */ ACTION_RECURSE |
644 /* followLinks=no */
645 /* depthFirst=yes */ ACTION_DEPTHFIRST,
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000646 /* fileAction= */ file_action_grep,
647 /* dirAction= */ NULL,
Denis Vlasenko8c35d652006-10-27 23:42:25 +0000648 /* userData= */ &matched,
649 /* depth= */ 0);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000650 return matched;
651}
652
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000653int grep_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100654int grep_main(int argc UNUSED_PARAM, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000655{
Eric Andersen8876fb22003-06-20 09:01:58 +0000656 FILE *file;
657 int matched;
Eric Andersen31c27a92004-10-08 08:10:57 +0000658 llist_t *fopt = NULL;
Matt Kraai999623e2001-10-29 15:49:03 +0000659
Mark Whitleyd3721892000-06-28 22:00:26 +0000660 /* do normal option parsing */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000661#if ENABLE_FEATURE_GREP_CONTEXT
Denys Vlasenko0296fd32010-10-02 12:42:28 +0200662 int Copt, opts;
Eric Andersen8876fb22003-06-20 09:01:58 +0000663
Denis Vlasenko1d426652008-03-17 09:09:09 +0000664 /* -H unsets -h; -C unsets -A,-B; -e,-f are lists;
665 * -m,-A,-B,-C have numeric param */
666 opt_complementary = "H-h:C-AB:e::f::m+:A+:B+:C+";
Denys Vlasenko0296fd32010-10-02 12:42:28 +0200667 opts = getopt32(argv,
Denis Vlasenko385304d2007-02-25 02:38:20 +0000668 OPTSTR_GREP,
Denis Vlasenko1d426652008-03-17 09:09:09 +0000669 &pattern_head, &fopt, &max_matches,
670 &lines_after, &lines_before, &Copt);
Eric Andersen8876fb22003-06-20 09:01:58 +0000671
Denys Vlasenko0296fd32010-10-02 12:42:28 +0200672 if (opts & OPT_C) {
Denis Vlasenko2295b492006-10-22 11:42:51 +0000673 /* -C unsets prev -A and -B, but following -A or -B
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100674 * may override it */
Denys Vlasenko0296fd32010-10-02 12:42:28 +0200675 if (!(opts & OPT_A)) /* not overridden */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000676 lines_after = Copt;
Denys Vlasenko0296fd32010-10-02 12:42:28 +0200677 if (!(opts & OPT_B)) /* not overridden */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000678 lines_before = Copt;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000679 }
Denis Vlasenko2295b492006-10-22 11:42:51 +0000680 /* sanity checks */
Denys Vlasenko0296fd32010-10-02 12:42:28 +0200681 if (opts & (OPT_c|OPT_q|OPT_l|OPT_L)) {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000682 option_mask32 &= ~OPT_n;
Eric Andersen8876fb22003-06-20 09:01:58 +0000683 lines_before = 0;
684 lines_after = 0;
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000685 } else if (lines_before > 0) {
Denys Vlasenko0296fd32010-10-02 12:42:28 +0200686 if (lines_before > INT_MAX / sizeof(long long))
687 lines_before = INT_MAX / sizeof(long long);
688 /* overflow in (lines_before * sizeof(x)) is prevented (above) */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000689 before_buf = xzalloc(lines_before * sizeof(before_buf[0]));
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000690 IF_EXTRA_COMPAT(before_buf_size = xzalloc(lines_before * sizeof(before_buf_size[0]));)
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000691 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000692#else
693 /* with auto sanity checks */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000694 /* -H unsets -h; -c,-q or -l unset -n; -e,-f are lists; -m N */
695 opt_complementary = "H-h:c-n:q-n:l-n:e::f::m+";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000696 getopt32(argv, OPTSTR_GREP,
Denis Vlasenko1d426652008-03-17 09:09:09 +0000697 &pattern_head, &fopt, &max_matches);
Eric Andersen8876fb22003-06-20 09:01:58 +0000698#endif
Denis Vlasenko385304d2007-02-25 02:38:20 +0000699 invert_search = ((option_mask32 & OPT_v) != 0); /* 0 | 1 */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000700
Lauri Kasanen7b462202011-08-28 12:39:04 +0200701 { /* convert char **argv to grep_list_data_t */
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000702 llist_t *cur;
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000703 for (cur = pattern_head; cur; cur = cur->link)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000704 cur->data = new_grep_list_data(cur->data, 0);
705 }
Lauri Kasanen7b462202011-08-28 12:39:04 +0200706 if (option_mask32 & OPT_f) {
Eric Andersen8876fb22003-06-20 09:01:58 +0000707 load_regexes_from_file(fopt);
Lauri Kasanen7b462202011-08-28 12:39:04 +0200708 if (!pattern_head) { /* -f EMPTY_FILE? */
709 /* GNU grep treats it as "nothing matches" */
710 llist_add_to(&pattern_head, new_grep_list_data((char*) "", 0));
711 invert_search ^= 1;
712 }
713 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000714
Denis Vlasenko8f8f2682006-10-03 21:00:43 +0000715 if (ENABLE_FEATURE_GREP_FGREP_ALIAS && applet_name[0] == 'f')
Denis Vlasenko385304d2007-02-25 02:38:20 +0000716 option_mask32 |= OPT_F;
Mike Frysinger15ca5862005-07-31 22:41:05 +0000717
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000718#if !ENABLE_EXTRA_COMPAT
James Hogan5fc05852013-05-07 12:32:21 +0100719 if (!(option_mask32 & (OPT_o | OPT_w | OPT_x)))
Denis Vlasenko51937532006-09-29 20:58:53 +0000720 reflags = REG_NOSUB;
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000721#endif
Denis Vlasenko51937532006-09-29 20:58:53 +0000722
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000723 if (ENABLE_FEATURE_GREP_EGREP_ALIAS
724 && (applet_name[0] == 'e' || (option_mask32 & OPT_E))
725 ) {
Denis Vlasenko51937532006-09-29 20:58:53 +0000726 reflags |= REG_EXTENDED;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000727 }
Denis Vlasenko9ac706b2008-09-19 21:32:51 +0000728#if ENABLE_EXTRA_COMPAT
729 else {
730 reflags = RE_SYNTAX_GREP;
731 }
732#endif
Eric Andersen8876fb22003-06-20 09:01:58 +0000733
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000734 if (option_mask32 & OPT_i) {
735#if !ENABLE_EXTRA_COMPAT
Eric Andersen8876fb22003-06-20 09:01:58 +0000736 reflags |= REG_ICASE;
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000737#else
738 int i;
739 case_fold = xmalloc(256);
740 for (i = 0; i < 256; i++)
741 case_fold[i] = (unsigned char)i;
742 for (i = 'a'; i <= 'z'; i++)
743 case_fold[i] = (unsigned char)(i - ('a' - 'A'));
744#endif
745 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000746
747 argv += optind;
Eric Andersen053b1462000-06-13 06:24:53 +0000748
Denis Vlasenko1d426652008-03-17 09:09:09 +0000749 /* if we didn't get a pattern from -e and no command file was specified,
750 * first parameter should be the pattern. no pattern, no worky */
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000751 if (pattern_head == NULL) {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000752 char *pattern;
Eric Andersen8876fb22003-06-20 09:01:58 +0000753 if (*argv == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000754 bb_show_usage();
Denis Vlasenko385304d2007-02-25 02:38:20 +0000755 pattern = new_grep_list_data(*argv++, 0);
756 llist_add_to(&pattern_head, pattern);
Mark Whitleyfa43e542001-05-24 18:36:18 +0000757 }
Mark Whitleyd3721892000-06-28 22:00:26 +0000758
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000759 /* argv[0..(argc-1)] should be names of file to grep through. If
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000760 * there is more than one file to grep, we will print the filenames. */
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100761 if (argv[0] && argv[1])
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000762 print_filename = 1;
Denis Vlasenko2295b492006-10-22 11:42:51 +0000763 /* -H / -h of course override */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000764 if (option_mask32 & OPT_H)
Denis Vlasenko2295b492006-10-22 11:42:51 +0000765 print_filename = 1;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000766 if (option_mask32 & OPT_h)
Denis Vlasenko2295b492006-10-22 11:42:51 +0000767 print_filename = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000768
Mark Whitley2e1148b2000-06-28 22:59:30 +0000769 /* If no files were specified, or '-' was specified, take input from
770 * stdin. Otherwise, we grep through all the files specified. */
Eric Andersen8876fb22003-06-20 09:01:58 +0000771 matched = 0;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000772 do {
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100773 cur_file = *argv;
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000774 file = stdin;
Denis Vlasenko1d426652008-03-17 09:09:09 +0000775 if (!cur_file || LONE_DASH(cur_file)) {
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000776 cur_file = "(standard input)";
Eric Andersen8876fb22003-06-20 09:01:58 +0000777 } else {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000778 if (option_mask32 & OPT_r) {
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000779 struct stat st;
780 if (stat(cur_file, &st) == 0 && S_ISDIR(st.st_mode)) {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000781 if (!(option_mask32 & OPT_h))
Denis Vlasenko3544ae62006-10-14 14:51:59 +0000782 print_filename = 1;
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000783 matched += grep_dir(cur_file);
784 goto grep_done;
785 }
Mark Whitley2ef880b2000-07-18 21:02:06 +0000786 }
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000787 /* else: fopen(dir) will succeed, but reading won't */
Denis Vlasenko5415c852008-07-21 23:05:26 +0000788 file = fopen_for_read(cur_file);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000789 if (file == NULL) {
790 if (!SUPPRESS_ERR_MSGS)
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +0000791 bb_simple_perror_msg(cur_file);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000792 open_errors = 1;
793 continue;
794 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000795 }
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000796 matched += grep_file(file);
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000797 fclose_if_not_stdin(file);
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000798 grep_done: ;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100799 } while (*argv && *++argv);
Eric Andersen8876fb22003-06-20 09:01:58 +0000800
Eric Andersen8876fb22003-06-20 09:01:58 +0000801 /* destroy all the elments in the pattern list */
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000802 if (ENABLE_FEATURE_CLEAN_UP) {
803 while (pattern_head) {
804 llist_t *pattern_head_ptr = pattern_head;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000805 grep_list_data_t *gl = (grep_list_data_t *)pattern_head_ptr->data;
Eric Andersen8876fb22003-06-20 09:01:58 +0000806
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000807 pattern_head = pattern_head->link;
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000808 if (gl->flg_mem_alocated_compiled & ALLOCATED)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000809 free(gl->pattern);
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000810 if (gl->flg_mem_alocated_compiled & COMPILED)
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000811 regfree(&gl->compiled_regex);
Mike Frysinger3a62a732007-04-12 18:29:27 +0000812 free(gl);
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000813 free(pattern_head_ptr);
814 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000815 }
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000816 /* 0 = success, 1 = failed, 2 = error */
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000817 if (open_errors)
"Vladimir N. Oleynik"bf449742005-09-23 13:50:24 +0000818 return 2;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000819 return !matched; /* invert return value: 0 = success, 1 = failed */
Eric Andersencc8ed391999-10-05 16:24:54 +0000820}