blob: 5b8644c36d9a7dce7d829479fe2256944f186515 [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 */
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020020//config:config GREP
Denys Vlasenkob097a842018-12-28 03:20:17 +010021//config: bool "grep (8.6 kb)"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020022//config: default y
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020023//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020024//config: grep is used to search files for a specified pattern.
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020025//config:
Denys Vlasenko1924e992016-11-14 05:09:48 +010026//config:config EGREP
Denys Vlasenkob097a842018-12-28 03:20:17 +010027//config: bool "egrep (7.8 kb)"
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020028//config: default y
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020029//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020030//config: Alias to "grep -E".
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020031//config:
Denys Vlasenko1924e992016-11-14 05:09:48 +010032//config:config FGREP
Denys Vlasenkob097a842018-12-28 03:20:17 +010033//config: bool "fgrep (7.8 kb)"
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020034//config: default y
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020035//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020036//config: Alias to "grep -F".
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020037//config:
38//config:config FEATURE_GREP_CONTEXT
39//config: bool "Enable before and after context flags (-A, -B and -C)"
40//config: default y
Denys Vlasenkoc5496d32017-04-12 17:53:54 +020041//config: depends on GREP || EGREP || FGREP
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020042//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020043//config: Print the specified number of leading (-B) and/or trailing (-A)
44//config: context surrounding our matching lines.
45//config: Print the specified number of context lines (-C).
Denys Vlasenko7fb68f12010-05-09 04:22:48 +020046
Denys Vlasenko1924e992016-11-14 05:09:48 +010047//applet:IF_GREP(APPLET(grep, BB_DIR_BIN, BB_SUID_DROP))
Denys Vlasenko205d48e2017-01-29 14:57:33 +010048// APPLET_ODDNAME:name main location suid_type help
Denys Vlasenko1924e992016-11-14 05:09:48 +010049//applet:IF_EGREP(APPLET_ODDNAME(egrep, grep, BB_DIR_BIN, BB_SUID_DROP, egrep))
50//applet:IF_FGREP(APPLET_ODDNAME(fgrep, grep, BB_DIR_BIN, BB_SUID_DROP, fgrep))
51
52//kbuild:lib-$(CONFIG_GREP) += grep.o
53//kbuild:lib-$(CONFIG_EGREP) += grep.o
54//kbuild:lib-$(CONFIG_FGREP) += grep.o
55
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000056#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020057#include "common_bufsiz.h"
"Vladimir N. Oleynik"23f62fc2005-09-14 16:59:11 +000058#include "xregex.h"
Mark Whitleyd3721892000-06-28 22:00:26 +000059
Denys Vlasenko4f731ce2010-06-15 15:40:16 +020060
Mark Whitleyd3721892000-06-28 22:00:26 +000061/* options */
Denys Vlasenko4f731ce2010-06-15 15:40:16 +020062//usage:#define grep_trivial_usage
Tomi Leppanen1b76ffa2019-11-25 17:59:52 +020063//usage: "[-HhnlLoqvsrRiwFE"
Denys Vlasenko4f731ce2010-06-15 15:40:16 +020064//usage: IF_EXTRA_COMPAT("z")
65//usage: "] [-m N] "
66//usage: IF_FEATURE_GREP_CONTEXT("[-A/B/C N] ")
67//usage: "PATTERN/-e PATTERN.../-f FILE [FILE]..."
68//usage:#define grep_full_usage "\n\n"
69//usage: "Search for PATTERN in FILEs (or stdin)\n"
Denys Vlasenko4f731ce2010-06-15 15:40:16 +020070//usage: "\n -H Add 'filename:' prefix"
71//usage: "\n -h Do not add 'filename:' prefix"
72//usage: "\n -n Add 'line_no:' prefix"
73//usage: "\n -l Show only names of files that match"
74//usage: "\n -L Show only names of files that don't match"
75//usage: "\n -c Show only count of matching lines"
76//usage: "\n -o Show only the matching part of line"
77//usage: "\n -q Quiet. Return 0 if PATTERN is found, 1 otherwise"
78//usage: "\n -v Select non-matching lines"
79//usage: "\n -s Suppress open and read errors"
80//usage: "\n -r Recurse"
Tomi Leppanen1b76ffa2019-11-25 17:59:52 +020081//usage: "\n -R Recurse and dereference symlinks"
Denys Vlasenko4f731ce2010-06-15 15:40:16 +020082//usage: "\n -i Ignore case"
83//usage: "\n -w Match whole words only"
Natanael Copacd09e812012-02-23 14:20:22 +000084//usage: "\n -x Match whole lines only"
Denys Vlasenko4f731ce2010-06-15 15:40:16 +020085//usage: "\n -F PATTERN is a literal (not regexp)"
Denys Vlasenko4f731ce2010-06-15 15:40:16 +020086//usage: "\n -E PATTERN is an extended regexp"
Denys Vlasenko4f731ce2010-06-15 15:40:16 +020087//usage: IF_EXTRA_COMPAT(
88//usage: "\n -z Input is NUL terminated"
89//usage: )
90//usage: "\n -m N Match up to N times per file"
91//usage: IF_FEATURE_GREP_CONTEXT(
92//usage: "\n -A N Print N lines of trailing context"
93//usage: "\n -B N Print N lines of leading context"
94//usage: "\n -C N Same as '-A N -B N'"
95//usage: )
96//usage: "\n -e PTRN Pattern to match"
97//usage: "\n -f FILE Read pattern from file"
98//usage:
99//usage:#define grep_example_usage
100//usage: "$ grep root /etc/passwd\n"
101//usage: "root:x:0:0:root:/root:/bin/bash\n"
102//usage: "$ grep ^[rR]oo. /etc/passwd\n"
103//usage: "root:x:0:0:root:/root:/bin/bash\n"
104//usage:
105//usage:#define egrep_trivial_usage NOUSAGE_STR
106//usage:#define egrep_full_usage ""
107//usage:#define fgrep_trivial_usage NOUSAGE_STR
108//usage:#define fgrep_full_usage ""
109
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200110/* -e,-f are lists; -m,-A,-B,-C have numeric param */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000111#define OPTSTR_GREP \
Tomi Leppanen1b76ffa2019-11-25 17:59:52 +0200112 "lnqvscFiHhe:*f:*LorRm:+wx" \
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200113 IF_FEATURE_GREP_CONTEXT("A:+B:+C:+") \
Denys Vlasenko1924e992016-11-14 05:09:48 +0100114 "E" \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000115 IF_EXTRA_COMPAT("z") \
Denis Vlasenkof8ea0f32007-02-25 02:38:54 +0000116 "aI"
117/* ignored: -a "assume all files to be text" */
118/* ignored: -I "assume binary files have no matches" */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000119enum {
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000120 OPTBIT_l, /* list matched file names only */
121 OPTBIT_n, /* print line# */
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000122 OPTBIT_q, /* quiet - exit(EXIT_SUCCESS) of first match */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000123 OPTBIT_v, /* invert the match, to select non-matching lines */
124 OPTBIT_s, /* suppress errors about file open errors */
125 OPTBIT_c, /* count matches per file (suppresses normal output) */
126 OPTBIT_F, /* literal match */
127 OPTBIT_i, /* case-insensitive */
128 OPTBIT_H, /* force filename display */
129 OPTBIT_h, /* inhibit filename display */
130 OPTBIT_e, /* -e PATTERN */
131 OPTBIT_f, /* -f FILE_WITH_PATTERNS */
132 OPTBIT_L, /* list unmatched file names only */
133 OPTBIT_o, /* show only matching parts of lines */
134 OPTBIT_r, /* recurse dirs */
Tomi Leppanen1b76ffa2019-11-25 17:59:52 +0200135 OPTBIT_R, /* recurse dirs and symlinks to dirs */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000136 OPTBIT_m, /* -m MAX_MATCHES */
Denys Vlasenko05273da2010-04-26 08:45:44 +0200137 OPTBIT_w, /* -w whole word match */
Natanael Copacd09e812012-02-23 14:20:22 +0000138 OPTBIT_x, /* -x whole line match */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000139 IF_FEATURE_GREP_CONTEXT( OPTBIT_A ,) /* -A NUM: after-match context */
140 IF_FEATURE_GREP_CONTEXT( OPTBIT_B ,) /* -B NUM: before-match context */
141 IF_FEATURE_GREP_CONTEXT( OPTBIT_C ,) /* -C NUM: -A and -B combined */
Denys Vlasenko1924e992016-11-14 05:09:48 +0100142 OPTBIT_E, /* extended regexp */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000143 IF_EXTRA_COMPAT( OPTBIT_z ,) /* input is NUL terminated */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000144 OPT_l = 1 << OPTBIT_l,
145 OPT_n = 1 << OPTBIT_n,
146 OPT_q = 1 << OPTBIT_q,
147 OPT_v = 1 << OPTBIT_v,
148 OPT_s = 1 << OPTBIT_s,
149 OPT_c = 1 << OPTBIT_c,
150 OPT_F = 1 << OPTBIT_F,
151 OPT_i = 1 << OPTBIT_i,
152 OPT_H = 1 << OPTBIT_H,
153 OPT_h = 1 << OPTBIT_h,
154 OPT_e = 1 << OPTBIT_e,
155 OPT_f = 1 << OPTBIT_f,
156 OPT_L = 1 << OPTBIT_L,
157 OPT_o = 1 << OPTBIT_o,
158 OPT_r = 1 << OPTBIT_r,
Tomi Leppanen1b76ffa2019-11-25 17:59:52 +0200159 OPT_R = 1 << OPTBIT_R,
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000160 OPT_m = 1 << OPTBIT_m,
Denys Vlasenko05273da2010-04-26 08:45:44 +0200161 OPT_w = 1 << OPTBIT_w,
Natanael Copacd09e812012-02-23 14:20:22 +0000162 OPT_x = 1 << OPTBIT_x,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000163 OPT_A = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_A)) + 0,
164 OPT_B = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_B)) + 0,
165 OPT_C = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_C)) + 0,
Denys Vlasenko1924e992016-11-14 05:09:48 +0100166 OPT_E = 1 << OPTBIT_E,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000167 OPT_z = IF_EXTRA_COMPAT( (1 << OPTBIT_z)) + 0,
Denis Vlasenko385304d2007-02-25 02:38:20 +0000168};
169
Denis Vlasenko9acfed22007-06-08 15:41:27 +0000170#define PRINT_FILES_WITH_MATCHES (option_mask32 & OPT_l)
171#define PRINT_LINE_NUM (option_mask32 & OPT_n)
172#define BE_QUIET (option_mask32 & OPT_q)
173#define SUPPRESS_ERR_MSGS (option_mask32 & OPT_s)
174#define PRINT_MATCH_COUNTS (option_mask32 & OPT_c)
175#define FGREP_FLAG (option_mask32 & OPT_F)
Denis Vlasenko385304d2007-02-25 02:38:20 +0000176#define PRINT_FILES_WITHOUT_MATCHES (option_mask32 & OPT_L)
Denis Vlasenko83518d12009-03-20 22:17:13 +0000177#define NUL_DELIMITED (option_mask32 & OPT_z)
Eric Andersen8876fb22003-06-20 09:01:58 +0000178
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000179struct globals {
180 int max_matches;
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000181#if !ENABLE_EXTRA_COMPAT
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000182 int reflags;
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000183#else
184 RE_TRANSLATE_TYPE case_fold; /* RE_TRANSLATE_TYPE is [[un]signed] char* */
185#endif
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000186 smalluint invert_search;
187 smalluint print_filename;
188 smalluint open_errors;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000189#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000190 smalluint did_print_line;
191 int lines_before;
192 int lines_after;
193 char **before_buf;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000194 IF_EXTRA_COMPAT(size_t *before_buf_size;)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000195 int last_line_printed;
196#endif
197 /* globals used internally */
198 llist_t *pattern_head; /* growable list of patterns to match */
199 const char *cur_file; /* the current file we are reading */
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100200} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200201#define G (*(struct globals*)bb_common_bufsiz1)
Denis Vlasenko7049ff82008-06-25 09:53:17 +0000202#define INIT_G() do { \
Denys Vlasenko47cfbf32016-04-21 18:18:48 +0200203 setup_common_bufsiz(); \
Denys Vlasenko7b85ec32015-10-13 17:17:34 +0200204 BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \
Denis Vlasenko7049ff82008-06-25 09:53:17 +0000205} while (0)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000206#define max_matches (G.max_matches )
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000207#if !ENABLE_EXTRA_COMPAT
Denys Vlasenko09449632009-07-29 01:20:09 +0200208# define reflags (G.reflags )
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000209#else
Denys Vlasenko09449632009-07-29 01:20:09 +0200210# define case_fold (G.case_fold )
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000211/* http://www.delorie.com/gnu/docs/regex/regex_46.html */
Denys Vlasenko09449632009-07-29 01:20:09 +0200212# define reflags re_syntax_options
213# undef REG_NOSUB
214# undef REG_EXTENDED
215# undef REG_ICASE
216# define REG_NOSUB bug:is:here /* should not be used */
217/* Just RE_SYNTAX_EGREP is not enough, need to enable {n[,[m]]} too */
218# define REG_EXTENDED (RE_SYNTAX_EGREP | RE_INTERVALS | RE_NO_BK_BRACES)
219# define REG_ICASE bug:is:here /* should not be used */
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000220#endif
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000221#define invert_search (G.invert_search )
222#define print_filename (G.print_filename )
223#define open_errors (G.open_errors )
224#define did_print_line (G.did_print_line )
225#define lines_before (G.lines_before )
226#define lines_after (G.lines_after )
227#define before_buf (G.before_buf )
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000228#define before_buf_size (G.before_buf_size )
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000229#define last_line_printed (G.last_line_printed )
230#define pattern_head (G.pattern_head )
231#define cur_file (G.cur_file )
232
Mark Whitleyd3721892000-06-28 22:00:26 +0000233
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000234typedef struct grep_list_data_t {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000235 char *pattern;
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000236/* for GNU regex, matched_range must be persistent across grep_file() calls */
237#if !ENABLE_EXTRA_COMPAT
238 regex_t compiled_regex;
239 regmatch_t matched_range;
240#else
241 struct re_pattern_buffer compiled_regex;
242 struct re_registers matched_range;
243#endif
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000244#define ALLOCATED 1
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000245#define COMPILED 2
Denys Vlasenko73737592016-09-17 20:58:22 +0200246 int flg_mem_allocated_compiled;
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000247} grep_list_data_t;
Mark Whitleyfa43e542001-05-24 18:36:18 +0000248
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000249#if !ENABLE_EXTRA_COMPAT
250#define print_line(line, line_len, linenum, decoration) \
251 print_line(line, linenum, decoration)
252#endif
253static void print_line(const char *line, size_t line_len, int linenum, char decoration)
Mark Whitley2fd52982001-02-09 00:41:10 +0000254{
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000255#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000256 /* Happens when we go to next file, immediately hit match
257 * and try to print prev context... from prev file! Don't do it */
258 if (linenum < 1)
259 return;
Eric Andersenaff114c2004-04-14 17:51:38 +0000260 /* possibly print the little '--' separator */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000261 if ((lines_before || lines_after) && did_print_line
262 && last_line_printed != linenum - 1
263 ) {
Mark Whitley2fd52982001-02-09 00:41:10 +0000264 puts("--");
265 }
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000266 /* guard against printing "--" before first line of first file */
267 did_print_line = 1;
Mark Whitley2fd52982001-02-09 00:41:10 +0000268 last_line_printed = linenum;
269#endif
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000270 if (print_filename)
Mark Whitley2fd52982001-02-09 00:41:10 +0000271 printf("%s%c", cur_file, decoration);
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000272 if (PRINT_LINE_NUM)
Mark Whitley2fd52982001-02-09 00:41:10 +0000273 printf("%i%c", linenum, decoration);
Denis Vlasenko51937532006-09-29 20:58:53 +0000274 /* Emulate weird GNU grep behavior with -ov */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000275 if ((option_mask32 & (OPT_v|OPT_o)) != (OPT_v|OPT_o)) {
276#if !ENABLE_EXTRA_COMPAT
Denis Vlasenko51937532006-09-29 20:58:53 +0000277 puts(line);
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000278#else
279 fwrite(line, 1, line_len, stdout);
Denis Vlasenko83518d12009-03-20 22:17:13 +0000280 putchar(NUL_DELIMITED ? '\0' : '\n');
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000281#endif
282 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000283}
Mark Whitleyd3721892000-06-28 22:00:26 +0000284
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000285#if ENABLE_EXTRA_COMPAT
286/* Unlike getline, this one removes trailing '\n' */
287static ssize_t FAST_FUNC bb_getline(char **line_ptr, size_t *line_alloc_len, FILE *file)
288{
289 ssize_t res_sz;
290 char *line;
Denis Vlasenko83518d12009-03-20 22:17:13 +0000291 int delim = (NUL_DELIMITED ? '\0' : '\n');
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000292
Denis Vlasenko83518d12009-03-20 22:17:13 +0000293 res_sz = getdelim(line_ptr, line_alloc_len, delim, file);
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000294 line = *line_ptr;
295
296 if (res_sz > 0) {
Denis Vlasenko83518d12009-03-20 22:17:13 +0000297 if (line[res_sz - 1] == delim)
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000298 line[--res_sz] = '\0';
299 } else {
300 free(line); /* uclibc allocates a buffer even on EOF. WTF? */
301 }
302 return res_sz;
303}
304#endif
305
Eric Andersen8876fb22003-06-20 09:01:58 +0000306static int grep_file(FILE *file)
Mark Whitleyd3721892000-06-28 22:00:26 +0000307{
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000308 smalluint found;
Mark Whitleyd3721892000-06-28 22:00:26 +0000309 int linenum = 0;
Matt Kraaideb95f62000-08-06 15:25:53 +0000310 int nmatches = 0;
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000311#if !ENABLE_EXTRA_COMPAT
312 char *line;
313#else
314 char *line = NULL;
315 ssize_t line_len;
316 size_t line_alloc_len;
Denys Vlasenko6dc0ace2009-12-04 02:48:14 +0100317# define rm_so start[0]
318# define rm_eo end[0]
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000319#endif
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000320#if ENABLE_FEATURE_GREP_CONTEXT
Mark Whitley2fd52982001-02-09 00:41:10 +0000321 int print_n_lines_after = 0;
322 int curpos = 0; /* track where we are in the circular 'before' buffer */
323 int idx = 0; /* used for iteration through the circular buffer */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000324#else
325 enum { print_n_lines_after = 0 };
Denys Vlasenko6dc0ace2009-12-04 02:48:14 +0100326#endif
Mark Whitleyd3721892000-06-28 22:00:26 +0000327
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000328 while (
329#if !ENABLE_EXTRA_COMPAT
330 (line = xmalloc_fgetline(file)) != NULL
331#else
332 (line_len = bb_getline(&line, &line_alloc_len, file)) >= 0
333#endif
334 ) {
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000335 llist_t *pattern_ptr = pattern_head;
Denis Vlasenko68102362007-11-04 00:46:03 +0000336 grep_list_data_t *gl = gl; /* for gcc */
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000337
Mark Whitleyd3721892000-06-28 22:00:26 +0000338 linenum++;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000339 found = 0;
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000340 while (pattern_ptr) {
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000341 gl = (grep_list_data_t *)pattern_ptr->data;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000342 if (FGREP_FLAG) {
Denys Vlasenko2f5b5be2013-01-20 16:57:19 +0100343 char *match;
344 char *str = line;
345 opt_f_again:
346 match = ((option_mask32 & OPT_i)
347 ? strcasestr(str, gl->pattern)
348 : strstr(str, gl->pattern)
349 );
350 if (match) {
351 if (option_mask32 & OPT_x) {
352 if (match != str)
353 goto opt_f_not_found;
354 if (str[strlen(gl->pattern)] != '\0')
355 goto opt_f_not_found;
356 } else
357 if (option_mask32 & OPT_w) {
Denys Vlasenko03fd7e02018-03-29 18:03:50 +0200358 char c = (match != line) ? match[-1] : ' ';
Denys Vlasenko2f5b5be2013-01-20 16:57:19 +0100359 if (!isalnum(c) && c != '_') {
360 c = match[strlen(gl->pattern)];
361 if (!c || (!isalnum(c) && c != '_'))
362 goto opt_f_found;
363 }
364 str = match + 1;
365 goto opt_f_again;
366 }
367 opt_f_found:
368 found = 1;
369 opt_f_not_found: ;
370 }
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000371 } else {
Denys Vlasenkocd55f2d2014-01-07 14:57:42 +0100372#if ENABLE_EXTRA_COMPAT
373 unsigned start_pos;
Bartosz Golaszewski3ba2df82014-02-07 17:14:37 +0100374#else
375 int match_flg;
Denys Vlasenkocd55f2d2014-01-07 14:57:42 +0100376#endif
Bartosz Golaszewski414db792013-05-15 03:53:26 +0200377 char *match_at;
378
Denys Vlasenko73737592016-09-17 20:58:22 +0200379 if (!(gl->flg_mem_allocated_compiled & COMPILED)) {
380 gl->flg_mem_allocated_compiled |= COMPILED;
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000381#if !ENABLE_EXTRA_COMPAT
382 xregcomp(&gl->compiled_regex, gl->pattern, reflags);
383#else
384 memset(&gl->compiled_regex, 0, sizeof(gl->compiled_regex));
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000385 gl->compiled_regex.translate = case_fold; /* for -i */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000386 if (re_compile_pattern(gl->pattern, strlen(gl->pattern), &gl->compiled_regex))
387 bb_error_msg_and_die("bad regex '%s'", gl->pattern);
388#endif
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000389 }
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000390#if !ENABLE_EXTRA_COMPAT
391 gl->matched_range.rm_so = 0;
392 gl->matched_range.rm_eo = 0;
Bartosz Golaszewski3ba2df82014-02-07 17:14:37 +0100393 match_flg = 0;
Denys Vlasenkocd55f2d2014-01-07 14:57:42 +0100394#else
395 start_pos = 0;
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000396#endif
Bartosz Golaszewski414db792013-05-15 03:53:26 +0200397 match_at = line;
398 opt_w_again:
Denys Vlasenkocd55f2d2014-01-07 14:57:42 +0100399//bb_error_msg("'%s' start_pos:%d line_len:%d", match_at, start_pos, line_len);
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000400 if (
401#if !ENABLE_EXTRA_COMPAT
Bartosz Golaszewski3ba2df82014-02-07 17:14:37 +0100402 regexec(&gl->compiled_regex, match_at, 1, &gl->matched_range, match_flg) == 0
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000403#else
Bartosz Golaszewski414db792013-05-15 03:53:26 +0200404 re_search(&gl->compiled_regex, match_at, line_len,
Denys Vlasenkocd55f2d2014-01-07 14:57:42 +0100405 start_pos, /*range:*/ line_len,
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000406 &gl->matched_range) >= 0
407#endif
408 ) {
Natanael Copacd09e812012-02-23 14:20:22 +0000409 if (option_mask32 & OPT_x) {
Ari Sundholm9a9c6e32019-01-29 14:42:57 +0100410 found |= (gl->matched_range.rm_so == 0
Bartosz Golaszewski414db792013-05-15 03:53:26 +0200411 && match_at[gl->matched_range.rm_eo] == '\0');
Denys Vlasenko2f5b5be2013-01-20 16:57:19 +0100412 } else
413 if (!(option_mask32 & OPT_w)) {
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000414 found = 1;
Natanael Copacd09e812012-02-23 14:20:22 +0000415 } else {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000416 char c = ' ';
Denys Vlasenko83e49ad2014-02-27 14:56:12 +0100417 if (match_at > line || gl->matched_range.rm_so != 0) {
Bartosz Golaszewski414db792013-05-15 03:53:26 +0200418 c = match_at[gl->matched_range.rm_so - 1];
Denys Vlasenko83e49ad2014-02-27 14:56:12 +0100419 }
Denis Vlasenko385304d2007-02-25 02:38:20 +0000420 if (!isalnum(c) && c != '_') {
Bartosz Golaszewski414db792013-05-15 03:53:26 +0200421 c = match_at[gl->matched_range.rm_eo];
Denys Vlasenko83e49ad2014-02-27 14:56:12 +0100422 }
423 if (!isalnum(c) && c != '_') {
424 found = 1;
425 } else {
Denys Vlasenkocd55f2d2014-01-07 14:57:42 +0100426 /*
427 * Why check gl->matched_range.rm_eo?
428 * Zero-length match makes -w skip the line:
429 * "echo foo | grep ^" prints "foo",
430 * "echo foo | grep -w ^" prints nothing.
431 * Without such check, we can loop forever.
432 */
433#if !ENABLE_EXTRA_COMPAT
Denys Vlasenko83e49ad2014-02-27 14:56:12 +0100434 if (gl->matched_range.rm_eo != 0) {
435 match_at += gl->matched_range.rm_eo;
436 match_flg |= REG_NOTBOL;
437 goto opt_w_again;
Bartosz Golaszewski414db792013-05-15 03:53:26 +0200438 }
Denys Vlasenko83e49ad2014-02-27 14:56:12 +0100439#else
440 if (gl->matched_range.rm_eo > start_pos) {
441 start_pos = gl->matched_range.rm_eo;
442 goto opt_w_again;
443 }
444#endif
Denis Vlasenko385304d2007-02-25 02:38:20 +0000445 }
446 }
447 }
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000448 }
Ari Sundholmd4b568c2019-01-28 19:41:12 +0200449 /* If it's a non-inverted search, we can stop
450 * at first match and report it.
451 * If it's an inverted search, we can move on
452 * to the next line of input, ignoring the
453 * rest of the patterns.
454 */
455 if (found) {
456 //if (invert_search)
457 // goto do_not_found;
458 //goto do_found;
459 break; // this accomplishes both
460 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000461 pattern_ptr = pattern_ptr->link;
462 } /* while (pattern_ptr) */
Mark Whitleyd3721892000-06-28 22:00:26 +0000463
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000464 if (found ^ invert_search) {
Ari Sundholmd4b568c2019-01-28 19:41:12 +0200465 //do_found:
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000466 /* keep track of matches */
467 nmatches++;
Mark Whitley1d9d4112001-05-21 21:13:00 +0000468
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000469 /* quiet/print (non)matching file names only? */
470 if (option_mask32 & (OPT_q|OPT_l|OPT_L)) {
471 free(line); /* we don't need line anymore */
472 if (BE_QUIET) {
473 /* manpage says about -q:
474 * "exit immediately with zero status
475 * if any match is found,
476 * even if errors were detected" */
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000477 exit(EXIT_SUCCESS);
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000478 }
479 /* if we're just printing filenames, we stop after the first match */
480 if (PRINT_FILES_WITH_MATCHES) {
481 puts(cur_file);
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +0000482 /* fall through to "return 1" */
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000483 }
484 /* OPT_L aka PRINT_FILES_WITHOUT_MATCHES: return early */
485 return 1; /* one match */
486 }
Mark Whitley1d9d4112001-05-21 21:13:00 +0000487
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000488#if ENABLE_FEATURE_GREP_CONTEXT
489 /* Were we printing context and saw next (unwanted) match? */
490 if ((option_mask32 & OPT_m) && nmatches > max_matches)
491 break;
492#endif
493
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000494 /* print the matched line */
495 if (PRINT_MATCH_COUNTS == 0) {
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000496#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000497 int prevpos = (curpos == 0) ? lines_before - 1 : curpos - 1;
Mark Whitley2fd52982001-02-09 00:41:10 +0000498
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000499 /* if we were told to print 'before' lines and there is at least
500 * one line in the circular buffer, print them */
501 if (lines_before && before_buf[prevpos] != NULL) {
502 int first_buf_entry_line_num = linenum - lines_before;
Mark Whitley2fd52982001-02-09 00:41:10 +0000503
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000504 /* advance to the first entry in the circular buffer, and
505 * figure out the line number is of the first line in the
506 * buffer */
507 idx = curpos;
508 while (before_buf[idx] == NULL) {
509 idx = (idx + 1) % lines_before;
510 first_buf_entry_line_num++;
Mark Whitley2fd52982001-02-09 00:41:10 +0000511 }
512
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000513 /* now print each line in the buffer, clearing them as we go */
514 while (before_buf[idx] != NULL) {
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000515 print_line(before_buf[idx], before_buf_size[idx], first_buf_entry_line_num, '-');
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000516 free(before_buf[idx]);
517 before_buf[idx] = NULL;
518 idx = (idx + 1) % lines_before;
519 first_buf_entry_line_num++;
520 }
521 }
522
523 /* make a note that we need to print 'after' lines */
524 print_n_lines_after = lines_after;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000525#endif
Denis Vlasenko385304d2007-02-25 02:38:20 +0000526 if (option_mask32 & OPT_o) {
Denis Vlasenko68102362007-11-04 00:46:03 +0000527 if (FGREP_FLAG) {
528 /* -Fo just prints the pattern
Denys Vlasenko10ad6222017-04-17 16:13:32 +0200529 * (unless -v: -Fov doesn't print anything at all) */
Denis Vlasenko68102362007-11-04 00:46:03 +0000530 if (found)
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000531 print_line(gl->pattern, strlen(gl->pattern), linenum, ':');
Denis Vlasenkof60719c2008-09-30 22:37:29 +0000532 } else while (1) {
Denys Vlasenko3d8b96d2010-08-23 02:39:47 +0200533 unsigned start = gl->matched_range.rm_so;
Denys Vlasenko09449632009-07-29 01:20:09 +0200534 unsigned end = gl->matched_range.rm_eo;
Denys Vlasenko3d8b96d2010-08-23 02:39:47 +0200535 unsigned len = end - start;
Denys Vlasenko09449632009-07-29 01:20:09 +0200536 char old = line[end];
537 line[end] = '\0';
Denys Vlasenko3d8b96d2010-08-23 02:39:47 +0200538 /* Empty match is not printed: try "echo test | grep -o ''" */
539 if (len != 0)
540 print_line(line + start, len, linenum, ':');
Denys Vlasenko6dc0ace2009-12-04 02:48:14 +0100541 if (old == '\0')
542 break;
Denys Vlasenko09449632009-07-29 01:20:09 +0200543 line[end] = old;
Denys Vlasenko3d8b96d2010-08-23 02:39:47 +0200544 if (len == 0)
545 end++;
Denis Vlasenkof60719c2008-09-30 22:37:29 +0000546#if !ENABLE_EXTRA_COMPAT
Denys Vlasenko09449632009-07-29 01:20:09 +0200547 if (regexec(&gl->compiled_regex, line + end,
548 1, &gl->matched_range, REG_NOTBOL) != 0)
549 break;
550 gl->matched_range.rm_so += end;
551 gl->matched_range.rm_eo += end;
Denis Vlasenkof60719c2008-09-30 22:37:29 +0000552#else
553 if (re_search(&gl->compiled_regex, line, line_len,
Denys Vlasenko09449632009-07-29 01:20:09 +0200554 end, line_len - end,
Denis Vlasenkof60719c2008-09-30 22:37:29 +0000555 &gl->matched_range) < 0)
556 break;
557#endif
Denis Vlasenkoa9acbe62008-11-24 13:25:20 +0000558 }
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000559 } else {
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000560 print_line(line, line_len, linenum, ':');
Mark Whitley2fd52982001-02-09 00:41:10 +0000561 }
Matt Kraai0810f722001-01-04 15:11:52 +0000562 }
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000563 }
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000564#if ENABLE_FEATURE_GREP_CONTEXT
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000565 else { /* no match */
Ari Sundholmd4b568c2019-01-28 19:41:12 +0200566 //do_not_found:
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000567 /* if we need to print some context lines after the last match, do so */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000568 if (print_n_lines_after) {
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000569 print_line(line, strlen(line), linenum, '-');
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000570 print_n_lines_after--;
571 } else if (lines_before) {
572 /* Add the line to the circular 'before' buffer */
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000573 free(before_buf[curpos]);
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000574 before_buf[curpos] = line;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000575 IF_EXTRA_COMPAT(before_buf_size[curpos] = line_len;)
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000576 curpos = (curpos + 1) % lines_before;
Denis Vlasenko1d426652008-03-17 09:09:09 +0000577 /* avoid free(line) - we took the line */
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000578 line = NULL;
Mark Whitley2fd52982001-02-09 00:41:10 +0000579 }
Denis Vlasenko4222ae42007-02-25 02:37:49 +0000580 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000581
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000582#endif /* ENABLE_FEATURE_GREP_CONTEXT */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000583#if !ENABLE_EXTRA_COMPAT
Mark Whitleyd3721892000-06-28 22:00:26 +0000584 free(line);
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000585#endif
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000586 /* Did we print all context after last requested match? */
587 if ((option_mask32 & OPT_m)
Denis Vlasenko83518d12009-03-20 22:17:13 +0000588 && !print_n_lines_after
589 && nmatches == max_matches
590 ) {
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000591 break;
Denis Vlasenko83518d12009-03-20 22:17:13 +0000592 }
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000593 } /* while (read line) */
Mark Whitley8f122432000-07-18 18:37:01 +0000594
Mark Whitley35e59be2001-05-14 19:40:32 +0000595 /* special-case file post-processing for options where we don't print line
Mark Whitley1d9d4112001-05-21 21:13:00 +0000596 * matches, just filenames and possibly match counts */
Mark Whitley35e59be2001-05-14 19:40:32 +0000597
Mark Whitley1d9d4112001-05-21 21:13:00 +0000598 /* grep -c: print [filename:]count, even if count is zero */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000599 if (PRINT_MATCH_COUNTS) {
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000600 if (print_filename)
Mark Whitley1d9d4112001-05-21 21:13:00 +0000601 printf("%s:", cur_file);
Denis Vlasenko92758142006-10-03 19:56:34 +0000602 printf("%d\n", nmatches);
Mark Whitley35e59be2001-05-14 19:40:32 +0000603 }
Mark Whitley1d9d4112001-05-21 21:13:00 +0000604
Denis Vlasenko8d5aa872007-07-15 12:38:18 +0000605 /* grep -L: print just the filename */
606 if (PRINT_FILES_WITHOUT_MATCHES) {
607 /* nmatches is zero, no need to check it:
608 * we return 1 early if we detected a match
609 * and PRINT_FILES_WITHOUT_MATCHES is set */
Eric Andersendec7f812004-05-26 11:47:55 +0000610 puts(cur_file);
611 }
612
Eric Andersen8876fb22003-06-20 09:01:58 +0000613 return nmatches;
Mark Whitleyd3721892000-06-28 22:00:26 +0000614}
Eric Andersencc8ed391999-10-05 16:24:54 +0000615
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000616#if ENABLE_FEATURE_CLEAN_UP
617#define new_grep_list_data(p, m) add_grep_list_data(p, m)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000618static char *add_grep_list_data(char *pattern, int flg_used_mem)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000619#else
620#define new_grep_list_data(p, m) add_grep_list_data(p)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000621static char *add_grep_list_data(char *pattern)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000622#endif
623{
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000624 grep_list_data_t *gl = xzalloc(sizeof(*gl));
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000625 gl->pattern = pattern;
626#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko73737592016-09-17 20:58:22 +0200627 gl->flg_mem_allocated_compiled = flg_used_mem;
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000628#else
Denys Vlasenko73737592016-09-17 20:58:22 +0200629 /*gl->flg_mem_allocated_compiled = 0;*/
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000630#endif
631 return (char *)gl;
632}
633
Eric Andersen8876fb22003-06-20 09:01:58 +0000634static void load_regexes_from_file(llist_t *fopt)
Mark Whitleyfa43e542001-05-24 18:36:18 +0000635{
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000636 while (fopt) {
Lauri Kasanen7b462202011-08-28 12:39:04 +0200637 char *line;
638 FILE *fp;
Eric Andersen8876fb22003-06-20 09:01:58 +0000639 llist_t *cur = fopt;
640 char *ffile = cur->data;
641
642 fopt = cur->link;
643 free(cur);
Lauri Kasanen7b462202011-08-28 12:39:04 +0200644 fp = xfopen_stdin(ffile);
645 while ((line = xmalloc_fgetline(fp)) != NULL) {
Rob Landley8bb50782006-05-26 23:44:51 +0000646 llist_add_to(&pattern_head,
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000647 new_grep_list_data(line, ALLOCATED));
Eric Andersen31c27a92004-10-08 08:10:57 +0000648 }
Lauri Kasanen7b462202011-08-28 12:39:04 +0200649 fclose_if_not_stdin(fp);
Mark Whitleyfa43e542001-05-24 18:36:18 +0000650 }
651}
Mark Whitleyfa43e542001-05-24 18:36:18 +0000652
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000653static int FAST_FUNC file_action_grep(const char *filename,
James Clarke6bcc2c02017-10-07 18:53:24 +0100654 struct stat *statbuf,
Denis Vlasenko1d426652008-03-17 09:09:09 +0000655 void* matched,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000656 int depth UNUSED_PARAM)
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000657{
James Clarke6bcc2c02017-10-07 18:53:24 +0100658 FILE *file;
659
660 /* If we are given a link to a directory, we should bail out now, rather
661 * than trying to open the "file" and hoping getline gives us nothing,
662 * since that is not portable across operating systems (FreeBSD for
663 * example will return the raw directory contents). */
664 if (S_ISLNK(statbuf->st_mode)) {
665 struct stat sb;
666 if (stat(filename, &sb) != 0) {
667 if (!SUPPRESS_ERR_MSGS)
668 bb_simple_perror_msg(filename);
669 return 0;
670 }
671 if (S_ISDIR(sb.st_mode))
672 return 1;
673 }
674
675 file = fopen_for_read(filename);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000676 if (file == NULL) {
677 if (!SUPPRESS_ERR_MSGS)
Denis Vlasenko8e8200a2008-01-24 01:30:36 +0000678 bb_simple_perror_msg(filename);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000679 open_errors = 1;
680 return 0;
681 }
682 cur_file = filename;
683 *(int*)matched += grep_file(file);
Denis Vlasenkobf392162006-10-15 18:38:01 +0000684 fclose(file);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000685 return 1;
686}
687
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000688static int grep_dir(const char *dir)
689{
690 int matched = 0;
691 recursive_action(dir,
Denis Vlasenkobbd695d2007-04-08 10:52:28 +0000692 /* recurse=yes */ ACTION_RECURSE |
Tomi Leppanen1b76ffa2019-11-25 17:59:52 +0200693 /* followLinks=always */ ((option_mask32 & OPT_R) ? ACTION_FOLLOWLINKS : 0) |
Denys Vlasenko34cc6c92014-08-28 15:50:09 +0200694 /* followLinks=command line only */ ACTION_FOLLOWLINKS_L0 |
Denis Vlasenkobbd695d2007-04-08 10:52:28 +0000695 /* depthFirst=yes */ ACTION_DEPTHFIRST,
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000696 /* fileAction= */ file_action_grep,
697 /* dirAction= */ NULL,
Denis Vlasenko8c35d652006-10-27 23:42:25 +0000698 /* userData= */ &matched,
699 /* depth= */ 0);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000700 return matched;
701}
702
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000703int grep_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100704int grep_main(int argc UNUSED_PARAM, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000705{
Eric Andersen8876fb22003-06-20 09:01:58 +0000706 FILE *file;
707 int matched;
Eric Andersen31c27a92004-10-08 08:10:57 +0000708 llist_t *fopt = NULL;
Denys Vlasenko73dfdda2016-03-28 22:12:09 +0200709#if ENABLE_FEATURE_GREP_CONTEXT
710 int Copt, opts;
711#endif
Denys Vlasenko94046d02016-06-20 00:36:21 +0200712 INIT_G();
Denys Vlasenko73dfdda2016-03-28 22:12:09 +0200713
714 /* For grep, exitcode of 1 is "not found". Other errors are 2: */
715 xfunc_error_retval = 2;
Matt Kraai999623e2001-10-29 15:49:03 +0000716
Mark Whitleyd3721892000-06-28 22:00:26 +0000717 /* do normal option parsing */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000718#if ENABLE_FEATURE_GREP_CONTEXT
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200719 /* -H unsets -h; -C unsets -A,-B */
Denys Vlasenko8717b142018-07-13 20:40:40 +0200720 opts = getopt32long(argv, "^"
721 OPTSTR_GREP
722 "\0"
723 "H-h:C-AB",
724 "color\0" Optional_argument "\xff",
Denis Vlasenko1d426652008-03-17 09:09:09 +0000725 &pattern_head, &fopt, &max_matches,
Denys Vlasenko8717b142018-07-13 20:40:40 +0200726 &lines_after, &lines_before, &Copt
727 , NULL
728 );
Eric Andersen8876fb22003-06-20 09:01:58 +0000729
Denys Vlasenko0296fd32010-10-02 12:42:28 +0200730 if (opts & OPT_C) {
Denis Vlasenko2295b492006-10-22 11:42:51 +0000731 /* -C unsets prev -A and -B, but following -A or -B
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100732 * may override it */
Denys Vlasenko0296fd32010-10-02 12:42:28 +0200733 if (!(opts & OPT_A)) /* not overridden */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000734 lines_after = Copt;
Denys Vlasenko0296fd32010-10-02 12:42:28 +0200735 if (!(opts & OPT_B)) /* not overridden */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000736 lines_before = Copt;
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000737 }
Denis Vlasenko2295b492006-10-22 11:42:51 +0000738 /* sanity checks */
Denys Vlasenko0296fd32010-10-02 12:42:28 +0200739 if (opts & (OPT_c|OPT_q|OPT_l|OPT_L)) {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000740 option_mask32 &= ~OPT_n;
Eric Andersen8876fb22003-06-20 09:01:58 +0000741 lines_before = 0;
742 lines_after = 0;
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000743 } else if (lines_before > 0) {
Denys Vlasenko0296fd32010-10-02 12:42:28 +0200744 if (lines_before > INT_MAX / sizeof(long long))
745 lines_before = INT_MAX / sizeof(long long);
746 /* overflow in (lines_before * sizeof(x)) is prevented (above) */
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000747 before_buf = xzalloc(lines_before * sizeof(before_buf[0]));
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000748 IF_EXTRA_COMPAT(before_buf_size = xzalloc(lines_before * sizeof(before_buf_size[0]));)
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000749 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000750#else
751 /* with auto sanity checks */
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200752 getopt32(argv, "^" OPTSTR_GREP "\0" "H-h:c-n:q-n:l-n:", // why trailing ":"?
Denis Vlasenko1d426652008-03-17 09:09:09 +0000753 &pattern_head, &fopt, &max_matches);
Eric Andersen8876fb22003-06-20 09:01:58 +0000754#endif
Denis Vlasenko385304d2007-02-25 02:38:20 +0000755 invert_search = ((option_mask32 & OPT_v) != 0); /* 0 | 1 */
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000756
Lauri Kasanen7b462202011-08-28 12:39:04 +0200757 { /* convert char **argv to grep_list_data_t */
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000758 llist_t *cur;
Denis Vlasenko6c30db82006-09-29 21:04:12 +0000759 for (cur = pattern_head; cur; cur = cur->link)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000760 cur->data = new_grep_list_data(cur->data, 0);
761 }
Lauri Kasanen7b462202011-08-28 12:39:04 +0200762 if (option_mask32 & OPT_f) {
Eric Andersen8876fb22003-06-20 09:01:58 +0000763 load_regexes_from_file(fopt);
Lauri Kasanen7b462202011-08-28 12:39:04 +0200764 if (!pattern_head) { /* -f EMPTY_FILE? */
765 /* GNU grep treats it as "nothing matches" */
766 llist_add_to(&pattern_head, new_grep_list_data((char*) "", 0));
767 invert_search ^= 1;
768 }
769 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000770
Denys Vlasenko1924e992016-11-14 05:09:48 +0100771 if (ENABLE_FGREP && applet_name[0] == 'f')
Denis Vlasenko385304d2007-02-25 02:38:20 +0000772 option_mask32 |= OPT_F;
Mike Frysinger15ca5862005-07-31 22:41:05 +0000773
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000774#if !ENABLE_EXTRA_COMPAT
James Hogan5fc05852013-05-07 12:32:21 +0100775 if (!(option_mask32 & (OPT_o | OPT_w | OPT_x)))
Denis Vlasenko51937532006-09-29 20:58:53 +0000776 reflags = REG_NOSUB;
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000777#endif
Denis Vlasenko51937532006-09-29 20:58:53 +0000778
Denys Vlasenko1924e992016-11-14 05:09:48 +0100779 if ((ENABLE_EGREP && applet_name[0] == 'e')
780 || (option_mask32 & OPT_E)
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000781 ) {
Denis Vlasenko51937532006-09-29 20:58:53 +0000782 reflags |= REG_EXTENDED;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000783 }
Denis Vlasenko9ac706b2008-09-19 21:32:51 +0000784#if ENABLE_EXTRA_COMPAT
785 else {
786 reflags = RE_SYNTAX_GREP;
787 }
788#endif
Eric Andersen8876fb22003-06-20 09:01:58 +0000789
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000790 if (option_mask32 & OPT_i) {
791#if !ENABLE_EXTRA_COMPAT
Eric Andersen8876fb22003-06-20 09:01:58 +0000792 reflags |= REG_ICASE;
Denis Vlasenkoc110b7d2008-09-19 21:29:21 +0000793#else
794 int i;
795 case_fold = xmalloc(256);
796 for (i = 0; i < 256; i++)
797 case_fold[i] = (unsigned char)i;
798 for (i = 'a'; i <= 'z'; i++)
799 case_fold[i] = (unsigned char)(i - ('a' - 'A'));
800#endif
801 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000802
803 argv += optind;
Eric Andersen053b1462000-06-13 06:24:53 +0000804
Denis Vlasenko1d426652008-03-17 09:09:09 +0000805 /* if we didn't get a pattern from -e and no command file was specified,
806 * first parameter should be the pattern. no pattern, no worky */
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000807 if (pattern_head == NULL) {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000808 char *pattern;
Eric Andersen8876fb22003-06-20 09:01:58 +0000809 if (*argv == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000810 bb_show_usage();
Denis Vlasenko385304d2007-02-25 02:38:20 +0000811 pattern = new_grep_list_data(*argv++, 0);
812 llist_add_to(&pattern_head, pattern);
Mark Whitleyfa43e542001-05-24 18:36:18 +0000813 }
Mark Whitleyd3721892000-06-28 22:00:26 +0000814
Denis Vlasenkoa05c0712008-06-07 05:19:31 +0000815 /* argv[0..(argc-1)] should be names of file to grep through. If
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000816 * there is more than one file to grep, we will print the filenames. */
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100817 if (argv[0] && argv[1])
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000818 print_filename = 1;
Denis Vlasenko2295b492006-10-22 11:42:51 +0000819 /* -H / -h of course override */
Denis Vlasenko385304d2007-02-25 02:38:20 +0000820 if (option_mask32 & OPT_H)
Denis Vlasenko2295b492006-10-22 11:42:51 +0000821 print_filename = 1;
Denis Vlasenko385304d2007-02-25 02:38:20 +0000822 if (option_mask32 & OPT_h)
Denis Vlasenko2295b492006-10-22 11:42:51 +0000823 print_filename = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000824
Mark Whitley2e1148b2000-06-28 22:59:30 +0000825 /* If no files were specified, or '-' was specified, take input from
826 * stdin. Otherwise, we grep through all the files specified. */
Eric Andersen8876fb22003-06-20 09:01:58 +0000827 matched = 0;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000828 do {
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100829 cur_file = *argv;
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000830 file = stdin;
Denis Vlasenko1d426652008-03-17 09:09:09 +0000831 if (!cur_file || LONE_DASH(cur_file)) {
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000832 cur_file = "(standard input)";
Eric Andersen8876fb22003-06-20 09:01:58 +0000833 } else {
Tomi Leppanen1b76ffa2019-11-25 17:59:52 +0200834 if (option_mask32 & (OPT_r|OPT_R)) {
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000835 struct stat st;
836 if (stat(cur_file, &st) == 0 && S_ISDIR(st.st_mode)) {
Denis Vlasenko385304d2007-02-25 02:38:20 +0000837 if (!(option_mask32 & OPT_h))
Denis Vlasenko3544ae62006-10-14 14:51:59 +0000838 print_filename = 1;
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000839 matched += grep_dir(cur_file);
840 goto grep_done;
841 }
Mark Whitley2ef880b2000-07-18 21:02:06 +0000842 }
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000843 /* else: fopen(dir) will succeed, but reading won't */
Denis Vlasenko5415c852008-07-21 23:05:26 +0000844 file = fopen_for_read(cur_file);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000845 if (file == NULL) {
846 if (!SUPPRESS_ERR_MSGS)
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +0000847 bb_simple_perror_msg(cur_file);
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000848 open_errors = 1;
849 continue;
850 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000851 }
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000852 matched += grep_file(file);
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000853 fclose_if_not_stdin(file);
Denis Vlasenko4652daa2007-07-15 12:39:08 +0000854 grep_done: ;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100855 } while (*argv && *++argv);
Eric Andersen8876fb22003-06-20 09:01:58 +0000856
Denys Vlasenko10ad6222017-04-17 16:13:32 +0200857 /* destroy all the elements in the pattern list */
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000858 if (ENABLE_FEATURE_CLEAN_UP) {
859 while (pattern_head) {
860 llist_t *pattern_head_ptr = pattern_head;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000861 grep_list_data_t *gl = (grep_list_data_t *)pattern_head_ptr->data;
Eric Andersen8876fb22003-06-20 09:01:58 +0000862
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000863 pattern_head = pattern_head->link;
Denys Vlasenko73737592016-09-17 20:58:22 +0200864 if (gl->flg_mem_allocated_compiled & ALLOCATED)
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000865 free(gl->pattern);
Denys Vlasenko73737592016-09-17 20:58:22 +0200866 if (gl->flg_mem_allocated_compiled & COMPILED)
Denis Vlasenko3fd15e12008-08-09 16:15:14 +0000867 regfree(&gl->compiled_regex);
Mike Frysinger3a62a732007-04-12 18:29:27 +0000868 free(gl);
"Vladimir N. Oleynik"716bbe92006-02-28 10:10:19 +0000869 free(pattern_head_ptr);
870 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000871 }
Bernhard Reutner-Fischeraaf0e232005-09-23 15:38:49 +0000872 /* 0 = success, 1 = failed, 2 = error */
Denis Vlasenko3a6755f2006-10-14 14:24:30 +0000873 if (open_errors)
"Vladimir N. Oleynik"bf449742005-09-23 13:50:24 +0000874 return 2;
Denis Vlasenko04ea11b2007-09-10 12:18:32 +0000875 return !matched; /* invert return value: 0 = success, 1 = failed */
Eric Andersencc8ed391999-10-05 16:24:54 +0000876}