blob: 8d18f43ec708b018cd320bf9f46ce774e41de6a3 [file] [log] [blame]
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +00001/* vi: set sw=4 ts=4: */
Eric Andersencc8ed391999-10-05 16:24:54 +00002/*
Mark Whitleyd3721892000-06-28 22:00:26 +00003 * Mini grep implementation for busybox using libc regex.
Eric Andersenc4996011999-10-20 22:08:37 +00004 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
Eric Andersenc7bda1c2004-03-15 08:29:22 +00006 * Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
Eric Andersencc8ed391999-10-05 16:24:54 +00007 *
Bernhard Reutner-Fischer7fee0c42006-09-13 16:39:19 +00008 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersencc8ed391999-10-05 16:24:54 +00009 */
Denis Vlasenko1d426652008-03-17 09:09:09 +000010/* BB_AUDIT SUSv3 defects - unsupported option -x "match whole line only". */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +000011/* BB_AUDIT GNU defects - always acts as -a. */
12/* http://www.opengroup.org/onlinepubs/007904975/utilities/grep.html */
Eric Andersen8876fb22003-06-20 09:01:58 +000013/*
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +000014 * 2004,2006 (C) Vladimir Oleynik <dzo@simtreas.ru> -
Eric Andersen7f164cd2004-05-26 09:46:41 +000015 * correction "-e pattern1 -e pattern2" logic and more optimizations.
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +000016 * precompiled regex
Denis Vlasenko51937532006-09-29 20:58:53 +000017 */
18/*
19 * (C) 2006 Jac Goudsmit added -o option
20 */
Eric Andersencc8ed391999-10-05 16:24:54 +000021
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000022#include "libbb.h"
"Vladimir N. Oleynik"23f62fc2005-09-14 16:59:11 +000023#include "xregex.h"
Mark Whitleyd3721892000-06-28 22:00:26 +000024
Mark Whitleyd3721892000-06-28 22:00:26 +000025/* options */
Denis Vlasenko385304d2007-02-25 02:38:20 +000026#define OPTSTR_GREP \
Denis Vlasenko4652daa2007-07-15 12:39:08 +000027 "lnqvscFiHhe:f:Lorm:" \
Denis Vlasenko385304d2007-02-25 02:38:20 +000028 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 {
Denis Vlasenko4652daa2007-07-15 12:39:08 +000036 OPTBIT_l, /* list matched file names only */
37 OPTBIT_n, /* print line# */
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +000038 OPTBIT_q, /* quiet - exit(EXIT_SUCCESS) of first match */
Denis Vlasenko4652daa2007-07-15 12:39:08 +000039 OPTBIT_v, /* invert the match, to select non-matching lines */
40 OPTBIT_s, /* suppress errors about file open errors */
41 OPTBIT_c, /* count matches per file (suppresses normal output) */
42 OPTBIT_F, /* literal match */
43 OPTBIT_i, /* case-insensitive */
44 OPTBIT_H, /* force filename display */
45 OPTBIT_h, /* inhibit filename display */
46 OPTBIT_e, /* -e PATTERN */
47 OPTBIT_f, /* -f FILE_WITH_PATTERNS */
48 OPTBIT_L, /* list unmatched file names only */
49 OPTBIT_o, /* show only matching parts of lines */
50 OPTBIT_r, /* recurse dirs */
51 OPTBIT_m, /* -m MAX_MATCHES */
52 USE_FEATURE_GREP_CONTEXT( OPTBIT_A ,) /* -A NUM: after-match context */
53 USE_FEATURE_GREP_CONTEXT( OPTBIT_B ,) /* -B NUM: before-match context */
54 USE_FEATURE_GREP_CONTEXT( OPTBIT_C ,) /* -C NUM: -A and -B combined */
55 USE_FEATURE_GREP_EGREP_ALIAS(OPTBIT_E ,) /* extended regexp */
56 USE_DESKTOP( OPTBIT_w ,) /* whole word match */
Denis Vlasenko385304d2007-02-25 02:38:20 +000057 OPT_l = 1 << OPTBIT_l,
58 OPT_n = 1 << OPTBIT_n,
59 OPT_q = 1 << OPTBIT_q,
60 OPT_v = 1 << OPTBIT_v,
61 OPT_s = 1 << OPTBIT_s,
62 OPT_c = 1 << OPTBIT_c,
63 OPT_F = 1 << OPTBIT_F,
64 OPT_i = 1 << OPTBIT_i,
65 OPT_H = 1 << OPTBIT_H,
66 OPT_h = 1 << OPTBIT_h,
67 OPT_e = 1 << OPTBIT_e,
68 OPT_f = 1 << OPTBIT_f,
69 OPT_L = 1 << OPTBIT_L,
70 OPT_o = 1 << OPTBIT_o,
71 OPT_r = 1 << OPTBIT_r,
Denis Vlasenko4652daa2007-07-15 12:39:08 +000072 OPT_m = 1 << OPTBIT_m,
Denis Vlasenko9acfed22007-06-08 15:41:27 +000073 OPT_A = USE_FEATURE_GREP_CONTEXT( (1 << OPTBIT_A)) + 0,
74 OPT_B = USE_FEATURE_GREP_CONTEXT( (1 << OPTBIT_B)) + 0,
75 OPT_C = USE_FEATURE_GREP_CONTEXT( (1 << OPTBIT_C)) + 0,
76 OPT_E = USE_FEATURE_GREP_EGREP_ALIAS((1 << OPTBIT_E)) + 0,
77 OPT_w = USE_DESKTOP( (1 << OPTBIT_w)) + 0,
Denis Vlasenko385304d2007-02-25 02:38:20 +000078};
79
Denis Vlasenko9acfed22007-06-08 15:41:27 +000080#define PRINT_FILES_WITH_MATCHES (option_mask32 & OPT_l)
81#define PRINT_LINE_NUM (option_mask32 & OPT_n)
82#define BE_QUIET (option_mask32 & OPT_q)
83#define SUPPRESS_ERR_MSGS (option_mask32 & OPT_s)
84#define PRINT_MATCH_COUNTS (option_mask32 & OPT_c)
85#define FGREP_FLAG (option_mask32 & OPT_F)
Denis Vlasenko385304d2007-02-25 02:38:20 +000086#define PRINT_FILES_WITHOUT_MATCHES (option_mask32 & OPT_L)
Eric Andersen8876fb22003-06-20 09:01:58 +000087
Denis Vlasenko04ea11b2007-09-10 12:18:32 +000088struct globals {
89 int max_matches;
90 int reflags;
91 smalluint invert_search;
92 smalluint print_filename;
93 smalluint open_errors;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +000094#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko04ea11b2007-09-10 12:18:32 +000095 smalluint did_print_line;
96 int lines_before;
97 int lines_after;
98 char **before_buf;
99 int last_line_printed;
100#endif
101 /* globals used internally */
102 llist_t *pattern_head; /* growable list of patterns to match */
103 const char *cur_file; /* the current file we are reading */
104};
105#define G (*(struct globals*)&bb_common_bufsiz1)
Denis Vlasenko7049ff82008-06-25 09:53:17 +0000106#define INIT_G() do { \
107 struct G_sizecheck { \
108 char G_sizecheck[sizeof(G) > COMMON_BUFSIZE ? -1 : 1]; \
109 }; \
110} while (0)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000111#define max_matches (G.max_matches )
112#define reflags (G.reflags )
113#define invert_search (G.invert_search )
114#define print_filename (G.print_filename )
115#define open_errors (G.open_errors )
116#define did_print_line (G.did_print_line )
117#define lines_before (G.lines_before )
118#define lines_after (G.lines_after )
119#define before_buf (G.before_buf )
120#define last_line_printed (G.last_line_printed )
121#define pattern_head (G.pattern_head )
122#define cur_file (G.cur_file )
123
Mark Whitleyd3721892000-06-28 22:00:26 +0000124
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000125typedef struct grep_list_data_t {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000126 char *pattern;
127 regex_t preg;
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000128#define ALLOCATED 1
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000129#define COMPILED 2
130 int flg_mem_alocated_compiled;
131} grep_list_data_t;
Mark Whitleyfa43e542001-05-24 18:36:18 +0000132
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000133
Mark Whitley2fd52982001-02-09 00:41:10 +0000134static void print_line(const char *line, int linenum, char decoration)
135{
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000136#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000137 /* Happens when we go to next file, immediately hit match
138 * and try to print prev context... from prev file! Don't do it */
139 if (linenum < 1)
140 return;
Eric Andersenaff114c2004-04-14 17:51:38 +0000141 /* possibly print the little '--' separator */
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000142 if ((lines_before || lines_after) && did_print_line &&
143 last_line_printed != linenum - 1) {
Mark Whitley2fd52982001-02-09 00:41:10 +0000144 puts("--");
145 }
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000146 /* guard against printing "--" before first line of first file */
147 did_print_line = 1;
Mark Whitley2fd52982001-02-09 00:41:10 +0000148 last_line_printed = linenum;
149#endif
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000150 if (print_filename)
Mark Whitley2fd52982001-02-09 00:41:10 +0000151 printf("%s%c", cur_file, decoration);
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000152 if (PRINT_LINE_NUM)
Mark Whitley2fd52982001-02-09 00:41:10 +0000153 printf("%i%c", linenum, decoration);
Denis Vlasenko51937532006-09-29 20:58:53 +0000154 /* Emulate weird GNU grep behavior with -ov */
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000155 if ((option_mask32 & (OPT_v|OPT_o)) != (OPT_v|OPT_o))
Denis Vlasenko51937532006-09-29 20:58:53 +0000156 puts(line);
Mark Whitley2fd52982001-02-09 00:41:10 +0000157}
Mark Whitleyd3721892000-06-28 22:00:26 +0000158
Eric Andersen8876fb22003-06-20 09:01:58 +0000159static int grep_file(FILE *file)
Mark Whitleyd3721892000-06-28 22:00:26 +0000160{
Eric Andersen8876fb22003-06-20 09:01:58 +0000161 char *line;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000162 smalluint found;
Mark Whitleyd3721892000-06-28 22:00:26 +0000163 int linenum = 0;
Matt Kraaideb95f62000-08-06 15:25:53 +0000164 int nmatches = 0;
Denis Vlasenko51937532006-09-29 20:58:53 +0000165 regmatch_t regmatch;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000166#if ENABLE_FEATURE_GREP_CONTEXT
Mark Whitley2fd52982001-02-09 00:41:10 +0000167 int print_n_lines_after = 0;
168 int curpos = 0; /* track where we are in the circular 'before' buffer */
169 int idx = 0; /* used for iteration through the circular buffer */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000170#else
171 enum { print_n_lines_after = 0 };
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000172#endif /* ENABLE_FEATURE_GREP_CONTEXT */
Mark Whitleyd3721892000-06-28 22:00:26 +0000173
Denis Vlasenko8ee649a2008-03-26 20:04:27 +0000174 while ((line = xmalloc_fgetline(file)) != NULL) {
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000175 llist_t *pattern_ptr = pattern_head;
Denis Vlasenko68102362007-11-04 00:46:03 +0000176 grep_list_data_t *gl = gl; /* for gcc */
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000177
Mark Whitleyd3721892000-06-28 22:00:26 +0000178 linenum++;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000179 found = 0;
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000180 while (pattern_ptr) {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000181 gl = (grep_list_data_t *)pattern_ptr->data;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000182 if (FGREP_FLAG) {
Denis Vlasenkoac074b32007-09-10 12:23:27 +0000183 found |= (strstr(line, gl->pattern) != NULL);
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000184 } else {
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000185 if (!(gl->flg_mem_alocated_compiled & COMPILED)) {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000186 gl->flg_mem_alocated_compiled |= COMPILED;
187 xregcomp(&(gl->preg), gl->pattern, reflags);
188 }
Denis Vlasenko51937532006-09-29 20:58:53 +0000189 regmatch.rm_so = 0;
190 regmatch.rm_eo = 0;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000191 if (regexec(&(gl->preg), line, 1, &regmatch, 0) == 0) {
192 if (!(option_mask32 & OPT_w))
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000193 found = 1;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000194 else {
195 char c = ' ';
196 if (regmatch.rm_so)
197 c = line[regmatch.rm_so - 1];
198 if (!isalnum(c) && c != '_') {
199 c = line[regmatch.rm_eo];
200 if (!c || (!isalnum(c) && c != '_'))
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000201 found = 1;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000202 }
203 }
204 }
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000205 }
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000206 /* If it's non-inverted search, we can stop
207 * at first match */
208 if (found && !invert_search)
209 goto do_found;
Eric Andersen8876fb22003-06-20 09:01:58 +0000210 pattern_ptr = pattern_ptr->link;
211 } /* while (pattern_ptr) */
Mark Whitleyd3721892000-06-28 22:00:26 +0000212
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000213 if (found ^ invert_search) {
214 do_found:
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000215 /* keep track of matches */
216 nmatches++;
Mark Whitley1d9d4112001-05-21 21:13:00 +0000217
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000218 /* quiet/print (non)matching file names only? */
219 if (option_mask32 & (OPT_q|OPT_l|OPT_L)) {
220 free(line); /* we don't need line anymore */
221 if (BE_QUIET) {
222 /* manpage says about -q:
223 * "exit immediately with zero status
224 * if any match is found,
225 * even if errors were detected" */
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000226 exit(EXIT_SUCCESS);
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000227 }
228 /* if we're just printing filenames, we stop after the first match */
229 if (PRINT_FILES_WITH_MATCHES) {
230 puts(cur_file);
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +0000231 /* fall through to "return 1" */
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000232 }
233 /* OPT_L aka PRINT_FILES_WITHOUT_MATCHES: return early */
234 return 1; /* one match */
235 }
Mark Whitley1d9d4112001-05-21 21:13:00 +0000236
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000237#if ENABLE_FEATURE_GREP_CONTEXT
238 /* Were we printing context and saw next (unwanted) match? */
239 if ((option_mask32 & OPT_m) && nmatches > max_matches)
240 break;
241#endif
242
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000243 /* print the matched line */
244 if (PRINT_MATCH_COUNTS == 0) {
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000245#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000246 int prevpos = (curpos == 0) ? lines_before - 1 : curpos - 1;
Mark Whitley2fd52982001-02-09 00:41:10 +0000247
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000248 /* if we were told to print 'before' lines and there is at least
249 * one line in the circular buffer, print them */
250 if (lines_before && before_buf[prevpos] != NULL) {
251 int first_buf_entry_line_num = linenum - lines_before;
Mark Whitley2fd52982001-02-09 00:41:10 +0000252
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000253 /* advance to the first entry in the circular buffer, and
254 * figure out the line number is of the first line in the
255 * buffer */
256 idx = curpos;
257 while (before_buf[idx] == NULL) {
258 idx = (idx + 1) % lines_before;
259 first_buf_entry_line_num++;
Mark Whitley2fd52982001-02-09 00:41:10 +0000260 }
261
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000262 /* now print each line in the buffer, clearing them as we go */
263 while (before_buf[idx] != NULL) {
264 print_line(before_buf[idx], first_buf_entry_line_num, '-');
265 free(before_buf[idx]);
266 before_buf[idx] = NULL;
267 idx = (idx + 1) % lines_before;
268 first_buf_entry_line_num++;
269 }
270 }
271
272 /* make a note that we need to print 'after' lines */
273 print_n_lines_after = lines_after;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000274#endif
Denis Vlasenko385304d2007-02-25 02:38:20 +0000275 if (option_mask32 & OPT_o) {
Denis Vlasenko68102362007-11-04 00:46:03 +0000276 if (FGREP_FLAG) {
277 /* -Fo just prints the pattern
278 * (unless -v: -Fov doesnt print anything at all) */
279 if (found)
280 print_line(gl->pattern, linenum, ':');
281 } else {
282 line[regmatch.rm_eo] = '\0';
283 print_line(line + regmatch.rm_so, linenum, ':');
284 }
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000285 } else {
286 print_line(line, linenum, ':');
Mark Whitley2fd52982001-02-09 00:41:10 +0000287 }
Matt Kraai0810f722001-01-04 15:11:52 +0000288 }
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000289 }
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000290#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000291 else { /* no match */
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000292 /* if we need to print some context lines after the last match, do so */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000293 if (print_n_lines_after) {
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000294 print_line(line, linenum, '-');
295 print_n_lines_after--;
296 } else if (lines_before) {
297 /* Add the line to the circular 'before' buffer */
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000298 free(before_buf[curpos]);
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000299 before_buf[curpos] = line;
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000300 curpos = (curpos + 1) % lines_before;
Denis Vlasenko1d426652008-03-17 09:09:09 +0000301 /* avoid free(line) - we took the line */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000302 line = NULL;
Mark Whitley2fd52982001-02-09 00:41:10 +0000303 }
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000304 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000305
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000306#endif /* ENABLE_FEATURE_GREP_CONTEXT */
Mark Whitleyd3721892000-06-28 22:00:26 +0000307 free(line);
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000308
309 /* Did we print all context after last requested match? */
310 if ((option_mask32 & OPT_m)
311 && !print_n_lines_after && nmatches == max_matches)
312 break;
Mark Whitleyd3721892000-06-28 22:00:26 +0000313 }
Mark Whitley8f122432000-07-18 18:37:01 +0000314
Mark Whitley35e59be2001-05-14 19:40:32 +0000315 /* special-case file post-processing for options where we don't print line
Mark Whitley1d9d4112001-05-21 21:13:00 +0000316 * matches, just filenames and possibly match counts */
Mark Whitley35e59be2001-05-14 19:40:32 +0000317
Mark Whitley1d9d4112001-05-21 21:13:00 +0000318 /* grep -c: print [filename:]count, even if count is zero */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000319 if (PRINT_MATCH_COUNTS) {
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000320 if (print_filename)
Mark Whitley1d9d4112001-05-21 21:13:00 +0000321 printf("%s:", cur_file);
Denis Vlasenko92758142006-10-03 19:56:34 +0000322 printf("%d\n", nmatches);
Mark Whitley35e59be2001-05-14 19:40:32 +0000323 }
Mark Whitley1d9d4112001-05-21 21:13:00 +0000324
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000325 /* grep -L: print just the filename */
326 if (PRINT_FILES_WITHOUT_MATCHES) {
327 /* nmatches is zero, no need to check it:
328 * we return 1 early if we detected a match
329 * and PRINT_FILES_WITHOUT_MATCHES is set */
Eric Andersendec7f812004-05-26 11:47:55 +0000330 puts(cur_file);
331 }
332
Eric Andersen8876fb22003-06-20 09:01:58 +0000333 return nmatches;
Mark Whitleyd3721892000-06-28 22:00:26 +0000334}
Eric Andersencc8ed391999-10-05 16:24:54 +0000335
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000336#if ENABLE_FEATURE_CLEAN_UP
337#define new_grep_list_data(p, m) add_grep_list_data(p, m)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000338static char *add_grep_list_data(char *pattern, int flg_used_mem)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000339#else
340#define new_grep_list_data(p, m) add_grep_list_data(p)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000341static char *add_grep_list_data(char *pattern)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000342#endif
343{
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000344 grep_list_data_t *gl = xzalloc(sizeof(*gl));
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000345 gl->pattern = pattern;
346#if ENABLE_FEATURE_CLEAN_UP
347 gl->flg_mem_alocated_compiled = flg_used_mem;
348#else
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000349 /*gl->flg_mem_alocated_compiled = 0;*/
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000350#endif
351 return (char *)gl;
352}
353
Eric Andersen8876fb22003-06-20 09:01:58 +0000354static void load_regexes_from_file(llist_t *fopt)
Mark Whitleyfa43e542001-05-24 18:36:18 +0000355{
356 char *line;
Eric Andersen8876fb22003-06-20 09:01:58 +0000357 FILE *f;
358
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000359 while (fopt) {
Eric Andersen8876fb22003-06-20 09:01:58 +0000360 llist_t *cur = fopt;
361 char *ffile = cur->data;
362
363 fopt = cur->link;
364 free(cur);
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000365 f = xfopen_stdin(ffile);
Denis Vlasenko8ee649a2008-03-26 20:04:27 +0000366 while ((line = xmalloc_fgetline(f)) != NULL) {
Rob Landley8bb50782006-05-26 23:44:51 +0000367 llist_add_to(&pattern_head,
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000368 new_grep_list_data(line, ALLOCATED));
Eric Andersen31c27a92004-10-08 08:10:57 +0000369 }
Mark Whitleyfa43e542001-05-24 18:36:18 +0000370 }
371}
Mark Whitleyfa43e542001-05-24 18:36:18 +0000372
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000373static int FAST_FUNC file_action_grep(const char *filename,
Denis Vlasenko1d426652008-03-17 09:09:09 +0000374 struct stat *statbuf ATTRIBUTE_UNUSED,
375 void* matched,
376 int depth ATTRIBUTE_UNUSED)
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000377{
378 FILE *file = fopen(filename, "r");
379 if (file == NULL) {
380 if (!SUPPRESS_ERR_MSGS)
Denis Vlasenko8e8200a2008-01-24 01:30:36 +0000381 bb_simple_perror_msg(filename);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000382 open_errors = 1;
383 return 0;
384 }
385 cur_file = filename;
386 *(int*)matched += grep_file(file);
Denis Vlasenkobf392162006-10-15 18:38:01 +0000387 fclose(file);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000388 return 1;
389}
390
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000391static int grep_dir(const char *dir)
392{
393 int matched = 0;
394 recursive_action(dir,
Denis Vlasenkobbd695d2007-04-08 10:52:28 +0000395 /* recurse=yes */ ACTION_RECURSE |
396 /* followLinks=no */
397 /* depthFirst=yes */ ACTION_DEPTHFIRST,
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000398 /* fileAction= */ file_action_grep,
399 /* dirAction= */ NULL,
Denis Vlasenko8c35d652006-10-27 23:42:25 +0000400 /* userData= */ &matched,
401 /* depth= */ 0);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000402 return matched;
403}
404
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000405int grep_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000406int grep_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000407{
Eric Andersen8876fb22003-06-20 09:01:58 +0000408 FILE *file;
409 int matched;
Eric Andersen31c27a92004-10-08 08:10:57 +0000410 llist_t *fopt = NULL;
Matt Kraai999623e2001-10-29 15:49:03 +0000411
Mark Whitleyd3721892000-06-28 22:00:26 +0000412 /* do normal option parsing */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000413#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko1d426652008-03-17 09:09:09 +0000414 int Copt;
Eric Andersen8876fb22003-06-20 09:01:58 +0000415
Denis Vlasenko1d426652008-03-17 09:09:09 +0000416 /* -H unsets -h; -C unsets -A,-B; -e,-f are lists;
417 * -m,-A,-B,-C have numeric param */
418 opt_complementary = "H-h:C-AB:e::f::m+:A+:B+:C+";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000419 getopt32(argv,
Denis Vlasenko385304d2007-02-25 02:38:20 +0000420 OPTSTR_GREP,
Denis Vlasenko1d426652008-03-17 09:09:09 +0000421 &pattern_head, &fopt, &max_matches,
422 &lines_after, &lines_before, &Copt);
Eric Andersen8876fb22003-06-20 09:01:58 +0000423
Denis Vlasenko385304d2007-02-25 02:38:20 +0000424 if (option_mask32 & OPT_C) {
Denis Vlasenko2295b492006-10-22 11:42:51 +0000425 /* -C unsets prev -A and -B, but following -A or -B
426 may override it */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000427 if (!(option_mask32 & OPT_A)) /* not overridden */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000428 lines_after = Copt;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000429 if (!(option_mask32 & OPT_B)) /* not overridden */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000430 lines_before = Copt;
431 //option_mask32 |= OPT_A|OPT_B; /* for parser */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000432 }
Denis Vlasenko2295b492006-10-22 11:42:51 +0000433 /* sanity checks */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000434 if (option_mask32 & (OPT_c|OPT_q|OPT_l|OPT_L)) {
435 option_mask32 &= ~OPT_n;
Eric Andersen8876fb22003-06-20 09:01:58 +0000436 lines_before = 0;
437 lines_after = 0;
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000438 } else if (lines_before > 0)
Denis Vlasenko4cccc032006-12-22 18:37:07 +0000439 before_buf = xzalloc(lines_before * sizeof(char *));
Eric Andersen8876fb22003-06-20 09:01:58 +0000440#else
441 /* with auto sanity checks */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000442 /* -H unsets -h; -c,-q or -l unset -n; -e,-f are lists; -m N */
443 opt_complementary = "H-h:c-n:q-n:l-n:e::f::m+";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000444 getopt32(argv, OPTSTR_GREP,
Denis Vlasenko1d426652008-03-17 09:09:09 +0000445 &pattern_head, &fopt, &max_matches);
Eric Andersen8876fb22003-06-20 09:01:58 +0000446#endif
Denis Vlasenko385304d2007-02-25 02:38:20 +0000447 invert_search = ((option_mask32 & OPT_v) != 0); /* 0 | 1 */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000448
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000449 if (pattern_head != NULL) {
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +0000450 /* convert char **argv to grep_list_data_t */
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000451 llist_t *cur;
452
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000453 for (cur = pattern_head; cur; cur = cur->link)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000454 cur->data = new_grep_list_data(cur->data, 0);
455 }
Denis Vlasenko385304d2007-02-25 02:38:20 +0000456 if (option_mask32 & OPT_f)
Eric Andersen8876fb22003-06-20 09:01:58 +0000457 load_regexes_from_file(fopt);
458
Denis Vlasenko8f8f2682006-10-03 21:00:43 +0000459 if (ENABLE_FEATURE_GREP_FGREP_ALIAS && applet_name[0] == 'f')
Denis Vlasenko385304d2007-02-25 02:38:20 +0000460 option_mask32 |= OPT_F;
Mike Frysinger15ca5862005-07-31 22:41:05 +0000461
Denis Vlasenko385304d2007-02-25 02:38:20 +0000462 if (!(option_mask32 & (OPT_o | OPT_w)))
Denis Vlasenko51937532006-09-29 20:58:53 +0000463 reflags = REG_NOSUB;
464
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000465 if (ENABLE_FEATURE_GREP_EGREP_ALIAS
466 && (applet_name[0] == 'e' || (option_mask32 & OPT_E))
467 ) {
Denis Vlasenko51937532006-09-29 20:58:53 +0000468 reflags |= REG_EXTENDED;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000469 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000470
Denis Vlasenko385304d2007-02-25 02:38:20 +0000471 if (option_mask32 & OPT_i)
Eric Andersen8876fb22003-06-20 09:01:58 +0000472 reflags |= REG_ICASE;
473
474 argv += optind;
475 argc -= optind;
Eric Andersen053b1462000-06-13 06:24:53 +0000476
Denis Vlasenko1d426652008-03-17 09:09:09 +0000477 /* if we didn't get a pattern from -e and no command file was specified,
478 * first parameter should be the pattern. no pattern, no worky */
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000479 if (pattern_head == NULL) {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000480 char *pattern;
Eric Andersen8876fb22003-06-20 09:01:58 +0000481 if (*argv == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000482 bb_show_usage();
Denis Vlasenko385304d2007-02-25 02:38:20 +0000483 pattern = new_grep_list_data(*argv++, 0);
484 llist_add_to(&pattern_head, pattern);
485 argc--;
Mark Whitleyfa43e542001-05-24 18:36:18 +0000486 }
Mark Whitleyd3721892000-06-28 22:00:26 +0000487
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000488 /* argv[0..(argc-1)] should be names of file to grep through. If
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000489 * there is more than one file to grep, we will print the filenames. */
Denis Vlasenko2295b492006-10-22 11:42:51 +0000490 if (argc > 1)
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000491 print_filename = 1;
Denis Vlasenko2295b492006-10-22 11:42:51 +0000492 /* -H / -h of course override */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000493 if (option_mask32 & OPT_H)
Denis Vlasenko2295b492006-10-22 11:42:51 +0000494 print_filename = 1;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000495 if (option_mask32 & OPT_h)
Denis Vlasenko2295b492006-10-22 11:42:51 +0000496 print_filename = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000497
Mark Whitley2e1148b2000-06-28 22:59:30 +0000498 /* If no files were specified, or '-' was specified, take input from
499 * stdin. Otherwise, we grep through all the files specified. */
Eric Andersen8876fb22003-06-20 09:01:58 +0000500 matched = 0;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000501 do {
Eric Andersen8876fb22003-06-20 09:01:58 +0000502 cur_file = *argv++;
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000503 file = stdin;
Denis Vlasenko1d426652008-03-17 09:09:09 +0000504 if (!cur_file || LONE_DASH(cur_file)) {
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000505 cur_file = "(standard input)";
Eric Andersen8876fb22003-06-20 09:01:58 +0000506 } else {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000507 if (option_mask32 & OPT_r) {
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000508 struct stat st;
509 if (stat(cur_file, &st) == 0 && S_ISDIR(st.st_mode)) {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000510 if (!(option_mask32 & OPT_h))
Denis Vlasenko3544ae62006-10-14 14:51:59 +0000511 print_filename = 1;
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000512 matched += grep_dir(cur_file);
513 goto grep_done;
514 }
Mark Whitley2ef880b2000-07-18 21:02:06 +0000515 }
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000516 /* else: fopen(dir) will succeed, but reading won't */
517 file = fopen(cur_file, "r");
518 if (file == NULL) {
519 if (!SUPPRESS_ERR_MSGS)
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +0000520 bb_simple_perror_msg(cur_file);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000521 open_errors = 1;
522 continue;
523 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000524 }
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000525 matched += grep_file(file);
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000526 fclose_if_not_stdin(file);
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000527 grep_done: ;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000528 } while (--argc > 0);
Eric Andersen8876fb22003-06-20 09:01:58 +0000529
Eric Andersen8876fb22003-06-20 09:01:58 +0000530 /* destroy all the elments in the pattern list */
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000531 if (ENABLE_FEATURE_CLEAN_UP) {
532 while (pattern_head) {
533 llist_t *pattern_head_ptr = pattern_head;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000534 grep_list_data_t *gl = (grep_list_data_t *)pattern_head_ptr->data;
Eric Andersen8876fb22003-06-20 09:01:58 +0000535
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000536 pattern_head = pattern_head->link;
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000537 if (gl->flg_mem_alocated_compiled & ALLOCATED)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000538 free(gl->pattern);
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000539 if (gl->flg_mem_alocated_compiled & COMPILED)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000540 regfree(&(gl->preg));
Mike Frysinger3a62a732007-04-12 18:29:27 +0000541 free(gl);
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000542 free(pattern_head_ptr);
543 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000544 }
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000545 /* 0 = success, 1 = failed, 2 = error */
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000546 if (open_errors)
"Vladimir N. Oleynik"bf449742005-09-23 13:50:24 +0000547 return 2;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000548 return !matched; /* invert return value: 0 = success, 1 = failed */
Eric Andersencc8ed391999-10-05 16:24:54 +0000549}