blob: f43417601d539f0f5bc4b3db5477b4a10b696a09 [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 */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +000010/* BB_AUDIT SUSv3 defects - unsupported option -x. */
11/* 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
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000022#include "busybox.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 \
27 "lnqvscFiHhe:f:Lor" \
28 USE_FEATURE_GREP_CONTEXT("A:B:C:") \
29 USE_FEATURE_GREP_EGREP_ALIAS("E") \
30 USE_DESKTOP("w") \
Denis Vlasenkof8ea0f32007-02-25 02:38:54 +000031 "aI"
32/* ignored: -a "assume all files to be text" */
33/* ignored: -I "assume binary files have no matches" */
Denis Vlasenko385304d2007-02-25 02:38:20 +000034
35enum {
36 OPTBIT_l,
37 OPTBIT_n,
38 OPTBIT_q,
39 OPTBIT_v,
40 OPTBIT_s,
41 OPTBIT_c,
42 OPTBIT_F,
43 OPTBIT_i,
44 OPTBIT_H,
45 OPTBIT_h,
46 OPTBIT_e,
47 OPTBIT_f,
48 OPTBIT_L,
49 OPTBIT_o,
50 OPTBIT_r,
51 USE_FEATURE_GREP_CONTEXT(OPTBIT_A ,)
52 USE_FEATURE_GREP_CONTEXT(OPTBIT_B ,)
53 USE_FEATURE_GREP_CONTEXT(OPTBIT_C ,)
54 USE_FEATURE_GREP_CONTEXT(OPTBIT_E ,)
55 USE_DESKTOP( OPTBIT_w ,)
56 OPT_l = 1 << OPTBIT_l,
57 OPT_n = 1 << OPTBIT_n,
58 OPT_q = 1 << OPTBIT_q,
59 OPT_v = 1 << OPTBIT_v,
60 OPT_s = 1 << OPTBIT_s,
61 OPT_c = 1 << OPTBIT_c,
62 OPT_F = 1 << OPTBIT_F,
63 OPT_i = 1 << OPTBIT_i,
64 OPT_H = 1 << OPTBIT_H,
65 OPT_h = 1 << OPTBIT_h,
66 OPT_e = 1 << OPTBIT_e,
67 OPT_f = 1 << OPTBIT_f,
68 OPT_L = 1 << OPTBIT_L,
69 OPT_o = 1 << OPTBIT_o,
70 OPT_r = 1 << OPTBIT_r,
71 OPT_A = USE_FEATURE_GREP_CONTEXT((1 << OPTBIT_A)) + 0,
72 OPT_B = USE_FEATURE_GREP_CONTEXT((1 << OPTBIT_B)) + 0,
73 OPT_C = USE_FEATURE_GREP_CONTEXT((1 << OPTBIT_C)) + 0,
74 OPT_E = USE_FEATURE_GREP_CONTEXT((1 << OPTBIT_E)) + 0,
75 OPT_w = USE_DESKTOP( (1 << OPTBIT_w)) + 0,
76};
77
78#define PRINT_FILES_WITH_MATCHES (option_mask32 & OPT_l)
79#define PRINT_LINE_NUM (option_mask32 & OPT_n)
80#define BE_QUIET (option_mask32 & OPT_q)
81#define SUPPRESS_ERR_MSGS (option_mask32 & OPT_s)
82#define PRINT_MATCH_COUNTS (option_mask32 & OPT_c)
83#define FGREP_FLAG (option_mask32 & OPT_F)
84#define PRINT_FILES_WITHOUT_MATCHES (option_mask32 & OPT_L)
Eric Andersen8876fb22003-06-20 09:01:58 +000085
Denis Vlasenko3a6755f2006-10-14 14:24:30 +000086typedef unsigned char byte_t;
87
Eric Andersen8876fb22003-06-20 09:01:58 +000088static int reflags;
Denis Vlasenko3a6755f2006-10-14 14:24:30 +000089static byte_t invert_search;
90static byte_t print_filename;
91static byte_t open_errors;
Mark Whitleyd3721892000-06-28 22:00:26 +000092
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +000093#if ENABLE_FEATURE_GREP_CONTEXT
Eric Andersen8876fb22003-06-20 09:01:58 +000094static int lines_before;
95static int lines_after;
96static char **before_buf;
97static int last_line_printed;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +000098#endif /* ENABLE_FEATURE_GREP_CONTEXT */
Mark Whitley2fd52982001-02-09 00:41:10 +000099
100/* globals used internally */
Eric Andersen8876fb22003-06-20 09:01:58 +0000101static llist_t *pattern_head; /* growable list of patterns to match */
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000102static const char *cur_file; /* the current file we are reading */
Mark Whitleyd3721892000-06-28 22:00:26 +0000103
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000104typedef struct grep_list_data_t {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000105 char *pattern;
106 regex_t preg;
107#define PATTERN_MEM_A 1
108#define COMPILED 2
109 int flg_mem_alocated_compiled;
110} grep_list_data_t;
Mark Whitleyfa43e542001-05-24 18:36:18 +0000111
Mark Whitley2fd52982001-02-09 00:41:10 +0000112static void print_line(const char *line, int linenum, char decoration)
113{
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000114#if ENABLE_FEATURE_GREP_CONTEXT
Eric Andersenaff114c2004-04-14 17:51:38 +0000115 /* possibly print the little '--' separator */
Matt Kraaiedc80652001-05-22 14:29:27 +0000116 if ((lines_before || lines_after) && last_line_printed &&
117 last_line_printed < linenum - 1) {
Mark Whitley2fd52982001-02-09 00:41:10 +0000118 puts("--");
119 }
120 last_line_printed = linenum;
121#endif
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000122 if (print_filename)
Mark Whitley2fd52982001-02-09 00:41:10 +0000123 printf("%s%c", cur_file, decoration);
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000124 if (PRINT_LINE_NUM)
Mark Whitley2fd52982001-02-09 00:41:10 +0000125 printf("%i%c", linenum, decoration);
Denis Vlasenko51937532006-09-29 20:58:53 +0000126 /* Emulate weird GNU grep behavior with -ov */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000127 if ((option_mask32 & (OPT_v+OPT_o)) != (OPT_v+OPT_o))
Denis Vlasenko51937532006-09-29 20:58:53 +0000128 puts(line);
Mark Whitley2fd52982001-02-09 00:41:10 +0000129}
Mark Whitleyd3721892000-06-28 22:00:26 +0000130
Eric Andersen8876fb22003-06-20 09:01:58 +0000131static int grep_file(FILE *file)
Mark Whitleyd3721892000-06-28 22:00:26 +0000132{
Eric Andersen8876fb22003-06-20 09:01:58 +0000133 char *line;
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000134 byte_t ret;
Mark Whitleyd3721892000-06-28 22:00:26 +0000135 int linenum = 0;
Matt Kraaideb95f62000-08-06 15:25:53 +0000136 int nmatches = 0;
Denis Vlasenko51937532006-09-29 20:58:53 +0000137 regmatch_t regmatch;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000138#if ENABLE_FEATURE_GREP_CONTEXT
Mark Whitley2fd52982001-02-09 00:41:10 +0000139 int print_n_lines_after = 0;
140 int curpos = 0; /* track where we are in the circular 'before' buffer */
141 int idx = 0; /* used for iteration through the circular buffer */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000142#endif /* ENABLE_FEATURE_GREP_CONTEXT */
Mark Whitleyd3721892000-06-28 22:00:26 +0000143
Denis Vlasenko2d5ca602006-10-12 22:43:20 +0000144 while ((line = xmalloc_getline(file)) != NULL) {
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000145 llist_t *pattern_ptr = pattern_head;
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000146 grep_list_data_t * gl;
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000147
Mark Whitleyd3721892000-06-28 22:00:26 +0000148 linenum++;
Eric Andersen8876fb22003-06-20 09:01:58 +0000149 ret = 0;
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000150 while (pattern_ptr) {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000151 gl = (grep_list_data_t *)pattern_ptr->data;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000152 if (FGREP_FLAG) {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000153 ret = strstr(line, gl->pattern) != NULL;
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000154 } else {
155 /*
156 * test for a postitive-assertion match (regexec returns success (0)
157 * and the user did not specify invert search), or a negative-assertion
158 * match (regexec returns failure (REG_NOMATCH) and the user specified
159 * invert search)
160 */
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000161 if (!(gl->flg_mem_alocated_compiled & COMPILED)) {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000162 gl->flg_mem_alocated_compiled |= COMPILED;
163 xregcomp(&(gl->preg), gl->pattern, reflags);
164 }
Denis Vlasenko51937532006-09-29 20:58:53 +0000165 regmatch.rm_so = 0;
166 regmatch.rm_eo = 0;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000167 if (regexec(&(gl->preg), line, 1, &regmatch, 0) == 0) {
168 if (!(option_mask32 & OPT_w))
169 ret = 1;
170 else {
171 char c = ' ';
172 if (regmatch.rm_so)
173 c = line[regmatch.rm_so - 1];
174 if (!isalnum(c) && c != '_') {
175 c = line[regmatch.rm_eo];
176 if (!c || (!isalnum(c) && c != '_'))
177 ret = 1;
178 }
179 }
180 }
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000181 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000182 pattern_ptr = pattern_ptr->link;
183 } /* while (pattern_ptr) */
Mark Whitleyd3721892000-06-28 22:00:26 +0000184
Denis Vlasenko51937532006-09-29 20:58:53 +0000185 if (ret ^ invert_search) {
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000186 if (PRINT_FILES_WITH_MATCHES || BE_QUIET)
Eric Andersen8876fb22003-06-20 09:01:58 +0000187 free(line);
188
189 /* if we found a match but were told to be quiet, stop here */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000190 if (BE_QUIET || PRINT_FILES_WITHOUT_MATCHES)
Eric Andersen8876fb22003-06-20 09:01:58 +0000191 return -1;
Mark Whitleyd3721892000-06-28 22:00:26 +0000192
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000193 /* keep track of matches */
194 nmatches++;
Mark Whitley1d9d4112001-05-21 21:13:00 +0000195
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000196 /* if we're just printing filenames, we stop after the first match */
197 if (PRINT_FILES_WITH_MATCHES)
198 break;
Mark Whitley1d9d4112001-05-21 21:13:00 +0000199
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000200 /* print the matched line */
201 if (PRINT_MATCH_COUNTS == 0) {
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000202#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000203 int prevpos = (curpos == 0) ? lines_before - 1 : curpos - 1;
Mark Whitley2fd52982001-02-09 00:41:10 +0000204
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000205 /* if we were told to print 'before' lines and there is at least
206 * one line in the circular buffer, print them */
207 if (lines_before && before_buf[prevpos] != NULL) {
208 int first_buf_entry_line_num = linenum - lines_before;
Mark Whitley2fd52982001-02-09 00:41:10 +0000209
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000210 /* advance to the first entry in the circular buffer, and
211 * figure out the line number is of the first line in the
212 * buffer */
213 idx = curpos;
214 while (before_buf[idx] == NULL) {
215 idx = (idx + 1) % lines_before;
216 first_buf_entry_line_num++;
Mark Whitley2fd52982001-02-09 00:41:10 +0000217 }
218
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000219 /* now print each line in the buffer, clearing them as we go */
220 while (before_buf[idx] != NULL) {
221 print_line(before_buf[idx], first_buf_entry_line_num, '-');
222 free(before_buf[idx]);
223 before_buf[idx] = NULL;
224 idx = (idx + 1) % lines_before;
225 first_buf_entry_line_num++;
226 }
227 }
228
229 /* make a note that we need to print 'after' lines */
230 print_n_lines_after = lines_after;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000231#endif
Denis Vlasenko385304d2007-02-25 02:38:20 +0000232 if (option_mask32 & OPT_o) {
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000233 line[regmatch.rm_eo] = '\0';
234 print_line(line + regmatch.rm_so, linenum, ':');
235 } else {
236 print_line(line, linenum, ':');
Mark Whitley2fd52982001-02-09 00:41:10 +0000237 }
Matt Kraai0810f722001-01-04 15:11:52 +0000238 }
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000239 }
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000240#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000241 else { /* no match */
242 /* Add the line to the circular 'before' buffer */
243 if (lines_before) {
244 free(before_buf[curpos]);
245 before_buf[curpos] = xstrdup(line);
246 curpos = (curpos + 1) % lines_before;
Mark Whitley2fd52982001-02-09 00:41:10 +0000247 }
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000248 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000249
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000250 /* if we need to print some context lines after the last match, do so */
251 if (print_n_lines_after && (last_line_printed != linenum)) {
252 print_line(line, linenum, '-');
253 print_n_lines_after--;
254 }
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000255#endif /* ENABLE_FEATURE_GREP_CONTEXT */
Mark Whitleyd3721892000-06-28 22:00:26 +0000256 free(line);
257 }
Mark Whitley8f122432000-07-18 18:37:01 +0000258
Mark Whitley35e59be2001-05-14 19:40:32 +0000259 /* special-case file post-processing for options where we don't print line
Mark Whitley1d9d4112001-05-21 21:13:00 +0000260 * matches, just filenames and possibly match counts */
Mark Whitley35e59be2001-05-14 19:40:32 +0000261
Mark Whitley1d9d4112001-05-21 21:13:00 +0000262 /* grep -c: print [filename:]count, even if count is zero */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000263 if (PRINT_MATCH_COUNTS) {
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000264 if (print_filename)
Mark Whitley1d9d4112001-05-21 21:13:00 +0000265 printf("%s:", cur_file);
Denis Vlasenko92758142006-10-03 19:56:34 +0000266 printf("%d\n", nmatches);
Mark Whitley35e59be2001-05-14 19:40:32 +0000267 }
Mark Whitley1d9d4112001-05-21 21:13:00 +0000268
269 /* grep -l: print just the filename, but only if we grepped the line in the file */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000270 if (PRINT_FILES_WITH_MATCHES && nmatches > 0) {
Matt Kraai59df6f72001-05-16 14:21:09 +0000271 puts(cur_file);
Mark Whitley35e59be2001-05-14 19:40:32 +0000272 }
273
Eric Andersendec7f812004-05-26 11:47:55 +0000274 /* grep -L: print just the filename, but only if we didn't grep the line in the file */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000275 if (PRINT_FILES_WITHOUT_MATCHES && nmatches == 0) {
Eric Andersendec7f812004-05-26 11:47:55 +0000276 puts(cur_file);
277 }
278
Eric Andersen8876fb22003-06-20 09:01:58 +0000279 return nmatches;
Mark Whitleyd3721892000-06-28 22:00:26 +0000280}
Eric Andersencc8ed391999-10-05 16:24:54 +0000281
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000282#if ENABLE_FEATURE_CLEAN_UP
283#define new_grep_list_data(p, m) add_grep_list_data(p, m)
284static char * add_grep_list_data(char *pattern, int flg_used_mem)
285#else
286#define new_grep_list_data(p, m) add_grep_list_data(p)
287static char * add_grep_list_data(char *pattern)
288#endif
289{
290 grep_list_data_t *gl = xmalloc(sizeof(grep_list_data_t));
291 gl->pattern = pattern;
292#if ENABLE_FEATURE_CLEAN_UP
293 gl->flg_mem_alocated_compiled = flg_used_mem;
294#else
295 gl->flg_mem_alocated_compiled = 0;
296#endif
297 return (char *)gl;
298}
299
300
Eric Andersen8876fb22003-06-20 09:01:58 +0000301static void load_regexes_from_file(llist_t *fopt)
Mark Whitleyfa43e542001-05-24 18:36:18 +0000302{
303 char *line;
Eric Andersen8876fb22003-06-20 09:01:58 +0000304 FILE *f;
305
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000306 while (fopt) {
Eric Andersen8876fb22003-06-20 09:01:58 +0000307 llist_t *cur = fopt;
308 char *ffile = cur->data;
309
310 fopt = cur->link;
311 free(cur);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000312 f = xfopen(ffile, "r");
Denis Vlasenko2d5ca602006-10-12 22:43:20 +0000313 while ((line = xmalloc_getline(f)) != NULL) {
Rob Landley8bb50782006-05-26 23:44:51 +0000314 llist_add_to(&pattern_head,
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000315 new_grep_list_data(line, PATTERN_MEM_A));
Eric Andersen31c27a92004-10-08 08:10:57 +0000316 }
Mark Whitleyfa43e542001-05-24 18:36:18 +0000317 }
318}
Mark Whitleyfa43e542001-05-24 18:36:18 +0000319
Denis Vlasenko8c35d652006-10-27 23:42:25 +0000320static int file_action_grep(const char *filename, struct stat *statbuf, void* matched, int depth)
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000321{
322 FILE *file = fopen(filename, "r");
323 if (file == NULL) {
324 if (!SUPPRESS_ERR_MSGS)
325 bb_perror_msg("%s", cur_file);
326 open_errors = 1;
327 return 0;
328 }
329 cur_file = filename;
330 *(int*)matched += grep_file(file);
Denis Vlasenkobf392162006-10-15 18:38:01 +0000331 fclose(file);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000332 return 1;
333}
334
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000335static int grep_dir(const char *dir)
336{
337 int matched = 0;
338 recursive_action(dir,
Denis Vlasenkobbd695d2007-04-08 10:52:28 +0000339 /* recurse=yes */ ACTION_RECURSE |
340 /* followLinks=no */
341 /* depthFirst=yes */ ACTION_DEPTHFIRST,
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000342 /* fileAction= */ file_action_grep,
343 /* dirAction= */ NULL,
Denis Vlasenko8c35d652006-10-27 23:42:25 +0000344 /* userData= */ &matched,
345 /* depth= */ 0);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000346 return matched;
347}
348
Denis Vlasenko06af2162007-02-03 17:28:39 +0000349int grep_main(int argc, char **argv);
Rob Landleydfba7412006-03-06 20:47:33 +0000350int grep_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000351{
Eric Andersen8876fb22003-06-20 09:01:58 +0000352 FILE *file;
353 int matched;
Eric Andersen31c27a92004-10-08 08:10:57 +0000354 llist_t *fopt = NULL;
Matt Kraai999623e2001-10-29 15:49:03 +0000355
Mark Whitleyd3721892000-06-28 22:00:26 +0000356 /* do normal option parsing */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000357#if ENABLE_FEATURE_GREP_CONTEXT
Eric Andersen8876fb22003-06-20 09:01:58 +0000358 char *slines_after;
359 char *slines_before;
360 char *Copt;
361
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000362 opt_complementary = "H-h:e::f::C-AB";
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000363 getopt32(argc, argv,
Denis Vlasenko385304d2007-02-25 02:38:20 +0000364 OPTSTR_GREP,
Eric Andersen8876fb22003-06-20 09:01:58 +0000365 &pattern_head, &fopt,
366 &slines_after, &slines_before, &Copt);
367
Denis Vlasenko385304d2007-02-25 02:38:20 +0000368 if (option_mask32 & OPT_C) {
Denis Vlasenko2295b492006-10-22 11:42:51 +0000369 /* -C unsets prev -A and -B, but following -A or -B
370 may override it */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000371 if (!(option_mask32 & OPT_A)) /* not overridden */
Eric Andersen8876fb22003-06-20 09:01:58 +0000372 slines_after = Copt;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000373 if (!(option_mask32 & OPT_B)) /* not overridden */
Eric Andersen8876fb22003-06-20 09:01:58 +0000374 slines_before = Copt;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000375 option_mask32 |= OPT_A|OPT_B; /* for parser */
Eric Andersen053b1462000-06-13 06:24:53 +0000376 }
Denis Vlasenko385304d2007-02-25 02:38:20 +0000377 if (option_mask32 & OPT_A) {
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000378 lines_after = xatoi_u(slines_after);
Eric Andersen8876fb22003-06-20 09:01:58 +0000379 }
Denis Vlasenko385304d2007-02-25 02:38:20 +0000380 if (option_mask32 & OPT_B) {
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000381 lines_before = xatoi_u(slines_before);
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000382 }
Denis Vlasenko2295b492006-10-22 11:42:51 +0000383 /* sanity checks */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000384 if (option_mask32 & (OPT_c|OPT_q|OPT_l|OPT_L)) {
385 option_mask32 &= ~OPT_n;
Eric Andersen8876fb22003-06-20 09:01:58 +0000386 lines_before = 0;
387 lines_after = 0;
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000388 } else if (lines_before > 0)
Denis Vlasenko4cccc032006-12-22 18:37:07 +0000389 before_buf = xzalloc(lines_before * sizeof(char *));
Eric Andersen8876fb22003-06-20 09:01:58 +0000390#else
391 /* with auto sanity checks */
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000392 opt_complementary = "H-h:e::f::c-n:q-n:l-n";
Denis Vlasenko385304d2007-02-25 02:38:20 +0000393 getopt32(argc, argv, OPTSTR_GREP,
Eric Andersen8876fb22003-06-20 09:01:58 +0000394 &pattern_head, &fopt);
Eric Andersen8876fb22003-06-20 09:01:58 +0000395#endif
Denis Vlasenko385304d2007-02-25 02:38:20 +0000396 invert_search = ((option_mask32 & OPT_v) != 0); /* 0 | 1 */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000397
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000398 if (pattern_head != NULL) {
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +0000399 /* convert char **argv to grep_list_data_t */
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000400 llist_t *cur;
401
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000402 for (cur = pattern_head; cur; cur = cur->link)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000403 cur->data = new_grep_list_data(cur->data, 0);
404 }
Denis Vlasenko385304d2007-02-25 02:38:20 +0000405 if (option_mask32 & OPT_f)
Eric Andersen8876fb22003-06-20 09:01:58 +0000406 load_regexes_from_file(fopt);
407
Denis Vlasenko8f8f2682006-10-03 21:00:43 +0000408 if (ENABLE_FEATURE_GREP_FGREP_ALIAS && applet_name[0] == 'f')
Denis Vlasenko385304d2007-02-25 02:38:20 +0000409 option_mask32 |= OPT_F;
Mike Frysinger15ca5862005-07-31 22:41:05 +0000410
Denis Vlasenko385304d2007-02-25 02:38:20 +0000411 if (!(option_mask32 & (OPT_o | OPT_w)))
Denis Vlasenko51937532006-09-29 20:58:53 +0000412 reflags = REG_NOSUB;
413
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000414 if (ENABLE_FEATURE_GREP_EGREP_ALIAS &&
Denis Vlasenko385304d2007-02-25 02:38:20 +0000415 (applet_name[0] == 'e' || (option_mask32 & OPT_E)))
Denis Vlasenko51937532006-09-29 20:58:53 +0000416 reflags |= REG_EXTENDED;
Eric Andersen8876fb22003-06-20 09:01:58 +0000417
Denis Vlasenko385304d2007-02-25 02:38:20 +0000418 if (option_mask32 & OPT_i)
Eric Andersen8876fb22003-06-20 09:01:58 +0000419 reflags |= REG_ICASE;
420
421 argv += optind;
422 argc -= optind;
Eric Andersen053b1462000-06-13 06:24:53 +0000423
Mark Whitleyfa43e542001-05-24 18:36:18 +0000424 /* if we didn't get a pattern from a -e and no command file was specified,
425 * argv[optind] should be the pattern. no pattern, no worky */
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000426 if (pattern_head == NULL) {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000427 char *pattern;
Eric Andersen8876fb22003-06-20 09:01:58 +0000428 if (*argv == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000429 bb_show_usage();
Denis Vlasenko385304d2007-02-25 02:38:20 +0000430 pattern = new_grep_list_data(*argv++, 0);
431 llist_add_to(&pattern_head, pattern);
432 argc--;
Mark Whitleyfa43e542001-05-24 18:36:18 +0000433 }
Mark Whitleyd3721892000-06-28 22:00:26 +0000434
Mark Whitleyfa43e542001-05-24 18:36:18 +0000435 /* argv[(optind)..(argc-1)] should be names of file to grep through. If
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000436 * there is more than one file to grep, we will print the filenames. */
Denis Vlasenko2295b492006-10-22 11:42:51 +0000437 if (argc > 1)
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000438 print_filename = 1;
Denis Vlasenko2295b492006-10-22 11:42:51 +0000439 /* -H / -h of course override */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000440 if (option_mask32 & OPT_H)
Denis Vlasenko2295b492006-10-22 11:42:51 +0000441 print_filename = 1;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000442 if (option_mask32 & OPT_h)
Denis Vlasenko2295b492006-10-22 11:42:51 +0000443 print_filename = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000444
Mark Whitley2e1148b2000-06-28 22:59:30 +0000445 /* If no files were specified, or '-' was specified, take input from
446 * stdin. Otherwise, we grep through all the files specified. */
Denis Vlasenko2295b492006-10-22 11:42:51 +0000447 if (argc == 0)
Eric Andersen8876fb22003-06-20 09:01:58 +0000448 argc++;
Eric Andersen8876fb22003-06-20 09:01:58 +0000449 matched = 0;
450 while (argc--) {
451 cur_file = *argv++;
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000452 file = stdin;
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000453 if (!cur_file || (*cur_file == '-' && !cur_file[1])) {
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000454 cur_file = "(standard input)";
Eric Andersen8876fb22003-06-20 09:01:58 +0000455 } else {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000456 if (option_mask32 & OPT_r) {
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000457 struct stat st;
458 if (stat(cur_file, &st) == 0 && S_ISDIR(st.st_mode)) {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000459 if (!(option_mask32 & OPT_h))
Denis Vlasenko3544ae62006-10-14 14:51:59 +0000460 print_filename = 1;
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000461 matched += grep_dir(cur_file);
462 goto grep_done;
463 }
Mark Whitley2ef880b2000-07-18 21:02:06 +0000464 }
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000465 /* else: fopen(dir) will succeed, but reading won't */
466 file = fopen(cur_file, "r");
467 if (file == NULL) {
468 if (!SUPPRESS_ERR_MSGS)
469 bb_perror_msg("%s", cur_file);
470 open_errors = 1;
471 continue;
472 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000473 }
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000474 matched += grep_file(file);
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000475 fclose_if_not_stdin(file);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000476 grep_done:
477 if (matched < 0) {
478 /* we found a match but were told to be quiet, stop here and
479 * return success */
480 break;
481 }
"Vladimir N. Oleynik"cf40d812005-09-23 13:23:15 +0000482 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000483
Eric Andersen8876fb22003-06-20 09:01:58 +0000484 /* destroy all the elments in the pattern list */
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000485 if (ENABLE_FEATURE_CLEAN_UP) {
486 while (pattern_head) {
487 llist_t *pattern_head_ptr = pattern_head;
488 grep_list_data_t *gl =
489 (grep_list_data_t *)pattern_head_ptr->data;
Eric Andersen8876fb22003-06-20 09:01:58 +0000490
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000491 pattern_head = pattern_head->link;
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000492 if ((gl->flg_mem_alocated_compiled & PATTERN_MEM_A))
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000493 free(gl->pattern);
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000494 if ((gl->flg_mem_alocated_compiled & COMPILED))
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000495 regfree(&(gl->preg));
Mike Frysinger3a62a732007-04-12 18:29:27 +0000496 free(gl);
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000497 free(pattern_head_ptr);
498 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000499 }
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000500 /* 0 = success, 1 = failed, 2 = error */
501 /* If the -q option is specified, the exit status shall be zero
502 * if an input line is selected, even if an error was detected. */
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000503 if (BE_QUIET && matched)
"Vladimir N. Oleynik"bf449742005-09-23 13:50:24 +0000504 return 0;
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000505 if (open_errors)
"Vladimir N. Oleynik"bf449742005-09-23 13:50:24 +0000506 return 2;
Mark Whitleyb5c29852001-02-01 21:02:41 +0000507 return !matched; /* invert return value 0 = success, 1 = failed */
Eric Andersencc8ed391999-10-05 16:24:54 +0000508}