remove defconfig. Now "make defconfig" simply uses defaults from Config.in
[oweals/busybox.git] / findutils / grep.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini grep implementation for busybox using libc regex.
4  *
5  * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
6  * Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
7  *
8  * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
9  */
10 /* BB_AUDIT SUSv3 defects - unsupported option -x "match whole line only". */
11 /* BB_AUDIT GNU defects - always acts as -a.  */
12 /* http://www.opengroup.org/onlinepubs/007904975/utilities/grep.html */
13 /*
14  * 2004,2006 (C) Vladimir Oleynik <dzo@simtreas.ru> -
15  * correction "-e pattern1 -e pattern2" logic and more optimizations.
16  * precompiled regex
17  */
18 /*
19  * (C) 2006 Jac Goudsmit added -o option
20  */
21
22 //kbuild:lib-$(CONFIG_GREP) += grep.o
23 //config:
24 //config:config GREP
25 //config:       bool "grep"
26 //config:       default y
27 //config:       help
28 //config:         grep is used to search files for a specified pattern.
29 //config:
30 //config:config FEATURE_GREP_EGREP_ALIAS
31 //config:       bool "Enable extended regular expressions (egrep & grep -E)"
32 //config:       default y
33 //config:       depends on GREP
34 //config:       help
35 //config:         Enabled support for extended regular expressions. Extended
36 //config:         regular expressions allow for alternation (foo|bar), grouping,
37 //config:         and various repetition operators.
38 //config:
39 //config:config FEATURE_GREP_FGREP_ALIAS
40 //config:       bool "Alias fgrep to grep -F"
41 //config:       default y
42 //config:       depends on GREP
43 //config:       help
44 //config:         fgrep sees the search pattern as a normal string rather than
45 //config:         regular expressions.
46 //config:         grep -F always works, this just creates the fgrep alias.
47 //config:
48 //config:config FEATURE_GREP_CONTEXT
49 //config:       bool "Enable before and after context flags (-A, -B and -C)"
50 //config:       default y
51 //config:       depends on GREP
52 //config:       help
53 //config:         Print the specified number of leading (-B) and/or trailing (-A)
54 //config:         context surrounding our matching lines.
55 //config:         Print the specified number of context lines (-C).
56
57 #include "libbb.h"
58 #include "xregex.h"
59
60 /* options */
61 #define OPTSTR_GREP \
62         "lnqvscFiHhe:f:Lorm:w" \
63         IF_FEATURE_GREP_CONTEXT("A:B:C:") \
64         IF_FEATURE_GREP_EGREP_ALIAS("E") \
65         IF_EXTRA_COMPAT("z") \
66         "aI"
67
68 /* ignored: -a "assume all files to be text" */
69 /* ignored: -I "assume binary files have no matches" */
70
71 enum {
72         OPTBIT_l, /* list matched file names only */
73         OPTBIT_n, /* print line# */
74         OPTBIT_q, /* quiet - exit(EXIT_SUCCESS) of first match */
75         OPTBIT_v, /* invert the match, to select non-matching lines */
76         OPTBIT_s, /* suppress errors about file open errors */
77         OPTBIT_c, /* count matches per file (suppresses normal output) */
78         OPTBIT_F, /* literal match */
79         OPTBIT_i, /* case-insensitive */
80         OPTBIT_H, /* force filename display */
81         OPTBIT_h, /* inhibit filename display */
82         OPTBIT_e, /* -e PATTERN */
83         OPTBIT_f, /* -f FILE_WITH_PATTERNS */
84         OPTBIT_L, /* list unmatched file names only */
85         OPTBIT_o, /* show only matching parts of lines */
86         OPTBIT_r, /* recurse dirs */
87         OPTBIT_m, /* -m MAX_MATCHES */
88         OPTBIT_w, /* -w whole word match */
89         IF_FEATURE_GREP_CONTEXT(    OPTBIT_A ,) /* -A NUM: after-match context */
90         IF_FEATURE_GREP_CONTEXT(    OPTBIT_B ,) /* -B NUM: before-match context */
91         IF_FEATURE_GREP_CONTEXT(    OPTBIT_C ,) /* -C NUM: -A and -B combined */
92         IF_FEATURE_GREP_EGREP_ALIAS(OPTBIT_E ,) /* extended regexp */
93         IF_EXTRA_COMPAT(            OPTBIT_z ,) /* input is NUL terminated */
94         OPT_l = 1 << OPTBIT_l,
95         OPT_n = 1 << OPTBIT_n,
96         OPT_q = 1 << OPTBIT_q,
97         OPT_v = 1 << OPTBIT_v,
98         OPT_s = 1 << OPTBIT_s,
99         OPT_c = 1 << OPTBIT_c,
100         OPT_F = 1 << OPTBIT_F,
101         OPT_i = 1 << OPTBIT_i,
102         OPT_H = 1 << OPTBIT_H,
103         OPT_h = 1 << OPTBIT_h,
104         OPT_e = 1 << OPTBIT_e,
105         OPT_f = 1 << OPTBIT_f,
106         OPT_L = 1 << OPTBIT_L,
107         OPT_o = 1 << OPTBIT_o,
108         OPT_r = 1 << OPTBIT_r,
109         OPT_m = 1 << OPTBIT_m,
110         OPT_w = 1 << OPTBIT_w,
111         OPT_A = IF_FEATURE_GREP_CONTEXT(    (1 << OPTBIT_A)) + 0,
112         OPT_B = IF_FEATURE_GREP_CONTEXT(    (1 << OPTBIT_B)) + 0,
113         OPT_C = IF_FEATURE_GREP_CONTEXT(    (1 << OPTBIT_C)) + 0,
114         OPT_E = IF_FEATURE_GREP_EGREP_ALIAS((1 << OPTBIT_E)) + 0,
115         OPT_z = IF_EXTRA_COMPAT(            (1 << OPTBIT_z)) + 0,
116 };
117
118 #define PRINT_FILES_WITH_MATCHES    (option_mask32 & OPT_l)
119 #define PRINT_LINE_NUM              (option_mask32 & OPT_n)
120 #define BE_QUIET                    (option_mask32 & OPT_q)
121 #define SUPPRESS_ERR_MSGS           (option_mask32 & OPT_s)
122 #define PRINT_MATCH_COUNTS          (option_mask32 & OPT_c)
123 #define FGREP_FLAG                  (option_mask32 & OPT_F)
124 #define PRINT_FILES_WITHOUT_MATCHES (option_mask32 & OPT_L)
125 #define NUL_DELIMITED               (option_mask32 & OPT_z)
126
127 struct globals {
128         int max_matches;
129 #if !ENABLE_EXTRA_COMPAT
130         int reflags;
131 #else
132         RE_TRANSLATE_TYPE case_fold; /* RE_TRANSLATE_TYPE is [[un]signed] char* */
133 #endif
134         smalluint invert_search;
135         smalluint print_filename;
136         smalluint open_errors;
137 #if ENABLE_FEATURE_GREP_CONTEXT
138         smalluint did_print_line;
139         int lines_before;
140         int lines_after;
141         char **before_buf;
142         IF_EXTRA_COMPAT(size_t *before_buf_size;)
143         int last_line_printed;
144 #endif
145         /* globals used internally */
146         llist_t *pattern_head;   /* growable list of patterns to match */
147         const char *cur_file;    /* the current file we are reading */
148 } FIX_ALIASING;
149 #define G (*(struct globals*)&bb_common_bufsiz1)
150 #define INIT_G() do { \
151         struct G_sizecheck { \
152                 char G_sizecheck[sizeof(G) > COMMON_BUFSIZE ? -1 : 1]; \
153         }; \
154 } while (0)
155 #define max_matches       (G.max_matches         )
156 #if !ENABLE_EXTRA_COMPAT
157 # define reflags          (G.reflags             )
158 #else
159 # define case_fold        (G.case_fold           )
160 /* http://www.delorie.com/gnu/docs/regex/regex_46.html */
161 # define reflags           re_syntax_options
162 # undef REG_NOSUB
163 # undef REG_EXTENDED
164 # undef REG_ICASE
165 # define REG_NOSUB    bug:is:here /* should not be used */
166 /* Just RE_SYNTAX_EGREP is not enough, need to enable {n[,[m]]} too */
167 # define REG_EXTENDED (RE_SYNTAX_EGREP | RE_INTERVALS | RE_NO_BK_BRACES)
168 # define REG_ICASE    bug:is:here /* should not be used */
169 #endif
170 #define invert_search     (G.invert_search       )
171 #define print_filename    (G.print_filename      )
172 #define open_errors       (G.open_errors         )
173 #define did_print_line    (G.did_print_line      )
174 #define lines_before      (G.lines_before        )
175 #define lines_after       (G.lines_after         )
176 #define before_buf        (G.before_buf          )
177 #define before_buf_size   (G.before_buf_size     )
178 #define last_line_printed (G.last_line_printed   )
179 #define pattern_head      (G.pattern_head        )
180 #define cur_file          (G.cur_file            )
181
182
183 typedef struct grep_list_data_t {
184         char *pattern;
185 /* for GNU regex, matched_range must be persistent across grep_file() calls */
186 #if !ENABLE_EXTRA_COMPAT
187         regex_t compiled_regex;
188         regmatch_t matched_range;
189 #else
190         struct re_pattern_buffer compiled_regex;
191         struct re_registers matched_range;
192 #endif
193 #define ALLOCATED 1
194 #define COMPILED 2
195         int flg_mem_alocated_compiled;
196 } grep_list_data_t;
197
198 #if !ENABLE_EXTRA_COMPAT
199 #define print_line(line, line_len, linenum, decoration) \
200         print_line(line, linenum, decoration)
201 #endif
202 static void print_line(const char *line, size_t line_len, int linenum, char decoration)
203 {
204 #if ENABLE_FEATURE_GREP_CONTEXT
205         /* Happens when we go to next file, immediately hit match
206          * and try to print prev context... from prev file! Don't do it */
207         if (linenum < 1)
208                 return;
209         /* possibly print the little '--' separator */
210         if ((lines_before || lines_after) && did_print_line
211          && last_line_printed != linenum - 1
212         ) {
213                 puts("--");
214         }
215         /* guard against printing "--" before first line of first file */
216         did_print_line = 1;
217         last_line_printed = linenum;
218 #endif
219         if (print_filename)
220                 printf("%s%c", cur_file, decoration);
221         if (PRINT_LINE_NUM)
222                 printf("%i%c", linenum, decoration);
223         /* Emulate weird GNU grep behavior with -ov */
224         if ((option_mask32 & (OPT_v|OPT_o)) != (OPT_v|OPT_o)) {
225 #if !ENABLE_EXTRA_COMPAT
226                 puts(line);
227 #else
228                 fwrite(line, 1, line_len, stdout);
229                 putchar(NUL_DELIMITED ? '\0' : '\n');
230 #endif
231         }
232 }
233
234 #if ENABLE_EXTRA_COMPAT
235 /* Unlike getline, this one removes trailing '\n' */
236 static ssize_t FAST_FUNC bb_getline(char **line_ptr, size_t *line_alloc_len, FILE *file)
237 {
238         ssize_t res_sz;
239         char *line;
240         int delim = (NUL_DELIMITED ? '\0' : '\n');
241
242         res_sz = getdelim(line_ptr, line_alloc_len, delim, file);
243         line = *line_ptr;
244
245         if (res_sz > 0) {
246                 if (line[res_sz - 1] == delim)
247                         line[--res_sz] = '\0';
248         } else {
249                 free(line); /* uclibc allocates a buffer even on EOF. WTF? */
250         }
251         return res_sz;
252 }
253 #endif
254
255 static int grep_file(FILE *file)
256 {
257         smalluint found;
258         int linenum = 0;
259         int nmatches = 0;
260 #if !ENABLE_EXTRA_COMPAT
261         char *line;
262 #else
263         char *line = NULL;
264         ssize_t line_len;
265         size_t line_alloc_len;
266 # define rm_so start[0]
267 # define rm_eo end[0]
268 #endif
269 #if ENABLE_FEATURE_GREP_CONTEXT
270         int print_n_lines_after = 0;
271         int curpos = 0; /* track where we are in the circular 'before' buffer */
272         int idx = 0; /* used for iteration through the circular buffer */
273 #else
274         enum { print_n_lines_after = 0 };
275 #endif
276
277         while (
278 #if !ENABLE_EXTRA_COMPAT
279                 (line = xmalloc_fgetline(file)) != NULL
280 #else
281                 (line_len = bb_getline(&line, &line_alloc_len, file)) >= 0
282 #endif
283         ) {
284                 llist_t *pattern_ptr = pattern_head;
285                 grep_list_data_t *gl = gl; /* for gcc */
286
287                 linenum++;
288                 found = 0;
289                 while (pattern_ptr) {
290                         gl = (grep_list_data_t *)pattern_ptr->data;
291                         if (FGREP_FLAG) {
292                                 found |= (((option_mask32 & OPT_i)
293                                         ? strcasestr(line, gl->pattern)
294                                         : strstr(line, gl->pattern)
295                                         ) != NULL);
296                         } else {
297                                 if (!(gl->flg_mem_alocated_compiled & COMPILED)) {
298                                         gl->flg_mem_alocated_compiled |= COMPILED;
299 #if !ENABLE_EXTRA_COMPAT
300                                         xregcomp(&gl->compiled_regex, gl->pattern, reflags);
301 #else
302                                         memset(&gl->compiled_regex, 0, sizeof(gl->compiled_regex));
303                                         gl->compiled_regex.translate = case_fold; /* for -i */
304                                         if (re_compile_pattern(gl->pattern, strlen(gl->pattern), &gl->compiled_regex))
305                                                 bb_error_msg_and_die("bad regex '%s'", gl->pattern);
306 #endif
307                                 }
308 #if !ENABLE_EXTRA_COMPAT
309                                 gl->matched_range.rm_so = 0;
310                                 gl->matched_range.rm_eo = 0;
311 #endif
312                                 if (
313 #if !ENABLE_EXTRA_COMPAT
314                                         regexec(&gl->compiled_regex, line, 1, &gl->matched_range, 0) == 0
315 #else
316                                         re_search(&gl->compiled_regex, line, line_len,
317                                                         /*start:*/ 0, /*range:*/ line_len,
318                                                         &gl->matched_range) >= 0
319 #endif
320                                 ) {
321                                         if (!(option_mask32 & OPT_w))
322                                                 found = 1;
323                                         else {
324                                                 char c = ' ';
325                                                 if (gl->matched_range.rm_so)
326                                                         c = line[gl->matched_range.rm_so - 1];
327                                                 if (!isalnum(c) && c != '_') {
328                                                         c = line[gl->matched_range.rm_eo];
329                                                         if (!c || (!isalnum(c) && c != '_'))
330                                                                 found = 1;
331                                                 }
332                                         }
333                                 }
334                         }
335                         /* If it's non-inverted search, we can stop
336                          * at first match */
337                         if (found && !invert_search)
338                                 goto do_found;
339                         pattern_ptr = pattern_ptr->link;
340                 } /* while (pattern_ptr) */
341
342                 if (found ^ invert_search) {
343  do_found:
344                         /* keep track of matches */
345                         nmatches++;
346
347                         /* quiet/print (non)matching file names only? */
348                         if (option_mask32 & (OPT_q|OPT_l|OPT_L)) {
349                                 free(line); /* we don't need line anymore */
350                                 if (BE_QUIET) {
351                                         /* manpage says about -q:
352                                          * "exit immediately with zero status
353                                          * if any match is found,
354                                          * even if errors were detected" */
355                                         exit(EXIT_SUCCESS);
356                                 }
357                                 /* if we're just printing filenames, we stop after the first match */
358                                 if (PRINT_FILES_WITH_MATCHES) {
359                                         puts(cur_file);
360                                         /* fall through to "return 1" */
361                                 }
362                                 /* OPT_L aka PRINT_FILES_WITHOUT_MATCHES: return early */
363                                 return 1; /* one match */
364                         }
365
366 #if ENABLE_FEATURE_GREP_CONTEXT
367                         /* Were we printing context and saw next (unwanted) match? */
368                         if ((option_mask32 & OPT_m) && nmatches > max_matches)
369                                 break;
370 #endif
371
372                         /* print the matched line */
373                         if (PRINT_MATCH_COUNTS == 0) {
374 #if ENABLE_FEATURE_GREP_CONTEXT
375                                 int prevpos = (curpos == 0) ? lines_before - 1 : curpos - 1;
376
377                                 /* if we were told to print 'before' lines and there is at least
378                                  * one line in the circular buffer, print them */
379                                 if (lines_before && before_buf[prevpos] != NULL) {
380                                         int first_buf_entry_line_num = linenum - lines_before;
381
382                                         /* advance to the first entry in the circular buffer, and
383                                          * figure out the line number is of the first line in the
384                                          * buffer */
385                                         idx = curpos;
386                                         while (before_buf[idx] == NULL) {
387                                                 idx = (idx + 1) % lines_before;
388                                                 first_buf_entry_line_num++;
389                                         }
390
391                                         /* now print each line in the buffer, clearing them as we go */
392                                         while (before_buf[idx] != NULL) {
393                                                 print_line(before_buf[idx], before_buf_size[idx], first_buf_entry_line_num, '-');
394                                                 free(before_buf[idx]);
395                                                 before_buf[idx] = NULL;
396                                                 idx = (idx + 1) % lines_before;
397                                                 first_buf_entry_line_num++;
398                                         }
399                                 }
400
401                                 /* make a note that we need to print 'after' lines */
402                                 print_n_lines_after = lines_after;
403 #endif
404                                 if (option_mask32 & OPT_o) {
405                                         if (FGREP_FLAG) {
406                                                 /* -Fo just prints the pattern
407                                                  * (unless -v: -Fov doesnt print anything at all) */
408                                                 if (found)
409                                                         print_line(gl->pattern, strlen(gl->pattern), linenum, ':');
410                                         } else while (1) {
411                                                 unsigned end = gl->matched_range.rm_eo;
412                                                 char old = line[end];
413                                                 line[end] = '\0';
414                                                 print_line(line + gl->matched_range.rm_so,
415                                                                 end - gl->matched_range.rm_so,
416                                                                 linenum, ':');
417                                                 if (old == '\0')
418                                                         break;
419                                                 line[end] = old;
420 #if !ENABLE_EXTRA_COMPAT
421                                                 if (regexec(&gl->compiled_regex, line + end,
422                                                                 1, &gl->matched_range, REG_NOTBOL) != 0)
423                                                         break;
424                                                 gl->matched_range.rm_so += end;
425                                                 gl->matched_range.rm_eo += end;
426 #else
427                                                 if (re_search(&gl->compiled_regex, line, line_len,
428                                                                 end, line_len - end,
429                                                                 &gl->matched_range) < 0)
430                                                         break;
431 #endif
432                                         }
433                                 } else {
434                                         print_line(line, line_len, linenum, ':');
435                                 }
436                         }
437                 }
438 #if ENABLE_FEATURE_GREP_CONTEXT
439                 else { /* no match */
440                         /* if we need to print some context lines after the last match, do so */
441                         if (print_n_lines_after) {
442                                 print_line(line, strlen(line), linenum, '-');
443                                 print_n_lines_after--;
444                         } else if (lines_before) {
445                                 /* Add the line to the circular 'before' buffer */
446                                 free(before_buf[curpos]);
447                                 before_buf[curpos] = line;
448                                 IF_EXTRA_COMPAT(before_buf_size[curpos] = line_len;)
449                                 curpos = (curpos + 1) % lines_before;
450                                 /* avoid free(line) - we took the line */
451                                 line = NULL;
452                         }
453                 }
454
455 #endif /* ENABLE_FEATURE_GREP_CONTEXT */
456 #if !ENABLE_EXTRA_COMPAT
457                 free(line);
458 #endif
459                 /* Did we print all context after last requested match? */
460                 if ((option_mask32 & OPT_m)
461                  && !print_n_lines_after
462                  && nmatches == max_matches
463                 ) {
464                         break;
465                 }
466         } /* while (read line) */
467
468         /* special-case file post-processing for options where we don't print line
469          * matches, just filenames and possibly match counts */
470
471         /* grep -c: print [filename:]count, even if count is zero */
472         if (PRINT_MATCH_COUNTS) {
473                 if (print_filename)
474                         printf("%s:", cur_file);
475                 printf("%d\n", nmatches);
476         }
477
478         /* grep -L: print just the filename */
479         if (PRINT_FILES_WITHOUT_MATCHES) {
480                 /* nmatches is zero, no need to check it:
481                  * we return 1 early if we detected a match
482                  * and PRINT_FILES_WITHOUT_MATCHES is set */
483                 puts(cur_file);
484         }
485
486         return nmatches;
487 }
488
489 #if ENABLE_FEATURE_CLEAN_UP
490 #define new_grep_list_data(p, m) add_grep_list_data(p, m)
491 static char *add_grep_list_data(char *pattern, int flg_used_mem)
492 #else
493 #define new_grep_list_data(p, m) add_grep_list_data(p)
494 static char *add_grep_list_data(char *pattern)
495 #endif
496 {
497         grep_list_data_t *gl = xzalloc(sizeof(*gl));
498         gl->pattern = pattern;
499 #if ENABLE_FEATURE_CLEAN_UP
500         gl->flg_mem_alocated_compiled = flg_used_mem;
501 #else
502         /*gl->flg_mem_alocated_compiled = 0;*/
503 #endif
504         return (char *)gl;
505 }
506
507 static void load_regexes_from_file(llist_t *fopt)
508 {
509         char *line;
510         FILE *f;
511
512         while (fopt) {
513                 llist_t *cur = fopt;
514                 char *ffile = cur->data;
515
516                 fopt = cur->link;
517                 free(cur);
518                 f = xfopen_stdin(ffile);
519                 while ((line = xmalloc_fgetline(f)) != NULL) {
520                         llist_add_to(&pattern_head,
521                                 new_grep_list_data(line, ALLOCATED));
522                 }
523         }
524 }
525
526 static int FAST_FUNC file_action_grep(const char *filename,
527                         struct stat *statbuf UNUSED_PARAM,
528                         void* matched,
529                         int depth UNUSED_PARAM)
530 {
531         FILE *file = fopen_for_read(filename);
532         if (file == NULL) {
533                 if (!SUPPRESS_ERR_MSGS)
534                         bb_simple_perror_msg(filename);
535                 open_errors = 1;
536                 return 0;
537         }
538         cur_file = filename;
539         *(int*)matched += grep_file(file);
540         fclose(file);
541         return 1;
542 }
543
544 static int grep_dir(const char *dir)
545 {
546         int matched = 0;
547         recursive_action(dir,
548                 /* recurse=yes */ ACTION_RECURSE |
549                 /* followLinks=no */
550                 /* depthFirst=yes */ ACTION_DEPTHFIRST,
551                 /* fileAction= */ file_action_grep,
552                 /* dirAction= */ NULL,
553                 /* userData= */ &matched,
554                 /* depth= */ 0);
555         return matched;
556 }
557
558 int grep_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
559 int grep_main(int argc UNUSED_PARAM, char **argv)
560 {
561         FILE *file;
562         int matched;
563         llist_t *fopt = NULL;
564
565         /* do normal option parsing */
566 #if ENABLE_FEATURE_GREP_CONTEXT
567         int Copt;
568
569         /* -H unsets -h; -C unsets -A,-B; -e,-f are lists;
570          * -m,-A,-B,-C have numeric param */
571         opt_complementary = "H-h:C-AB:e::f::m+:A+:B+:C+";
572         getopt32(argv,
573                 OPTSTR_GREP,
574                 &pattern_head, &fopt, &max_matches,
575                 &lines_after, &lines_before, &Copt);
576
577         if (option_mask32 & OPT_C) {
578                 /* -C unsets prev -A and -B, but following -A or -B
579                    may override it */
580                 if (!(option_mask32 & OPT_A)) /* not overridden */
581                         lines_after = Copt;
582                 if (!(option_mask32 & OPT_B)) /* not overridden */
583                         lines_before = Copt;
584         }
585         /* sanity checks */
586         if (option_mask32 & (OPT_c|OPT_q|OPT_l|OPT_L)) {
587                 option_mask32 &= ~OPT_n;
588                 lines_before = 0;
589                 lines_after = 0;
590         } else if (lines_before > 0) {
591                 before_buf = xzalloc(lines_before * sizeof(before_buf[0]));
592                 IF_EXTRA_COMPAT(before_buf_size = xzalloc(lines_before * sizeof(before_buf_size[0]));)
593         }
594 #else
595         /* with auto sanity checks */
596         /* -H unsets -h; -c,-q or -l unset -n; -e,-f are lists; -m N */
597         opt_complementary = "H-h:c-n:q-n:l-n:e::f::m+";
598         getopt32(argv, OPTSTR_GREP,
599                 &pattern_head, &fopt, &max_matches);
600 #endif
601         invert_search = ((option_mask32 & OPT_v) != 0); /* 0 | 1 */
602
603         if (pattern_head != NULL) {
604                 /* convert char **argv to grep_list_data_t */
605                 llist_t *cur;
606
607                 for (cur = pattern_head; cur; cur = cur->link)
608                         cur->data = new_grep_list_data(cur->data, 0);
609         }
610         if (option_mask32 & OPT_f)
611                 load_regexes_from_file(fopt);
612
613         if (ENABLE_FEATURE_GREP_FGREP_ALIAS && applet_name[0] == 'f')
614                 option_mask32 |= OPT_F;
615
616 #if !ENABLE_EXTRA_COMPAT
617         if (!(option_mask32 & (OPT_o | OPT_w)))
618                 reflags = REG_NOSUB;
619 #endif
620
621         if (ENABLE_FEATURE_GREP_EGREP_ALIAS
622          && (applet_name[0] == 'e' || (option_mask32 & OPT_E))
623         ) {
624                 reflags |= REG_EXTENDED;
625         }
626 #if ENABLE_EXTRA_COMPAT
627         else {
628                 reflags = RE_SYNTAX_GREP;
629         }
630 #endif
631
632         if (option_mask32 & OPT_i) {
633 #if !ENABLE_EXTRA_COMPAT
634                 reflags |= REG_ICASE;
635 #else
636                 int i;
637                 case_fold = xmalloc(256);
638                 for (i = 0; i < 256; i++)
639                         case_fold[i] = (unsigned char)i;
640                 for (i = 'a'; i <= 'z'; i++)
641                         case_fold[i] = (unsigned char)(i - ('a' - 'A'));
642 #endif
643         }
644
645         argv += optind;
646
647         /* if we didn't get a pattern from -e and no command file was specified,
648          * first parameter should be the pattern. no pattern, no worky */
649         if (pattern_head == NULL) {
650                 char *pattern;
651                 if (*argv == NULL)
652                         bb_show_usage();
653                 pattern = new_grep_list_data(*argv++, 0);
654                 llist_add_to(&pattern_head, pattern);
655         }
656
657         /* argv[0..(argc-1)] should be names of file to grep through. If
658          * there is more than one file to grep, we will print the filenames. */
659         if (argv[0] && argv[1])
660                 print_filename = 1;
661         /* -H / -h of course override */
662         if (option_mask32 & OPT_H)
663                 print_filename = 1;
664         if (option_mask32 & OPT_h)
665                 print_filename = 0;
666
667         /* If no files were specified, or '-' was specified, take input from
668          * stdin. Otherwise, we grep through all the files specified. */
669         matched = 0;
670         do {
671                 cur_file = *argv;
672                 file = stdin;
673                 if (!cur_file || LONE_DASH(cur_file)) {
674                         cur_file = "(standard input)";
675                 } else {
676                         if (option_mask32 & OPT_r) {
677                                 struct stat st;
678                                 if (stat(cur_file, &st) == 0 && S_ISDIR(st.st_mode)) {
679                                         if (!(option_mask32 & OPT_h))
680                                                 print_filename = 1;
681                                         matched += grep_dir(cur_file);
682                                         goto grep_done;
683                                 }
684                         }
685                         /* else: fopen(dir) will succeed, but reading won't */
686                         file = fopen_for_read(cur_file);
687                         if (file == NULL) {
688                                 if (!SUPPRESS_ERR_MSGS)
689                                         bb_simple_perror_msg(cur_file);
690                                 open_errors = 1;
691                                 continue;
692                         }
693                 }
694                 matched += grep_file(file);
695                 fclose_if_not_stdin(file);
696  grep_done: ;
697         } while (*argv && *++argv);
698
699         /* destroy all the elments in the pattern list */
700         if (ENABLE_FEATURE_CLEAN_UP) {
701                 while (pattern_head) {
702                         llist_t *pattern_head_ptr = pattern_head;
703                         grep_list_data_t *gl = (grep_list_data_t *)pattern_head_ptr->data;
704
705                         pattern_head = pattern_head->link;
706                         if (gl->flg_mem_alocated_compiled & ALLOCATED)
707                                 free(gl->pattern);
708                         if (gl->flg_mem_alocated_compiled & COMPILED)
709                                 regfree(&gl->compiled_regex);
710                         free(gl);
711                         free(pattern_head_ptr);
712                 }
713         }
714         /* 0 = success, 1 = failed, 2 = error */
715         if (open_errors)
716                 return 2;
717         return !matched; /* invert return value: 0 = success, 1 = failed */
718 }