Bernhard Reutner-Fischer | aaf0e23 | 2005-09-23 15:38:49 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2 | /* |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 3 | * Mini grep implementation for busybox using libc regex. |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 4 | * |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 6 | * Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org> |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 7 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 9 | */ |
Denis Vlasenko | 1d42665 | 2008-03-17 09:09:09 +0000 | [diff] [blame] | 10 | /* BB_AUDIT SUSv3 defects - unsupported option -x "match whole line only". */ |
Bernhard Reutner-Fischer | aaf0e23 | 2005-09-23 15:38:49 +0000 | [diff] [blame] | 11 | /* BB_AUDIT GNU defects - always acts as -a. */ |
| 12 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/grep.html */ |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 13 | /* |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 14 | * 2004,2006 (C) Vladimir Oleynik <dzo@simtreas.ru> - |
Eric Andersen | 7f164cd | 2004-05-26 09:46:41 +0000 | [diff] [blame] | 15 | * correction "-e pattern1 -e pattern2" logic and more optimizations. |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 16 | * precompiled regex |
Denys Vlasenko | 4f731ce | 2010-06-15 15:40:16 +0200 | [diff] [blame] | 17 | * |
Denis Vlasenko | 5193753 | 2006-09-29 20:58:53 +0000 | [diff] [blame] | 18 | * (C) 2006 Jac Goudsmit added -o option |
| 19 | */ |
Denys Vlasenko | 7fb68f1 | 2010-05-09 04:22:48 +0200 | [diff] [blame] | 20 | //config:config GREP |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 21 | //config: bool "grep (8.6 kb)" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 22 | //config: default y |
Denys Vlasenko | 7fb68f1 | 2010-05-09 04:22:48 +0200 | [diff] [blame] | 23 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 24 | //config: grep is used to search files for a specified pattern. |
Denys Vlasenko | 7fb68f1 | 2010-05-09 04:22:48 +0200 | [diff] [blame] | 25 | //config: |
Denys Vlasenko | 1924e99 | 2016-11-14 05:09:48 +0100 | [diff] [blame] | 26 | //config:config EGREP |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 27 | //config: bool "egrep (7.8 kb)" |
Denys Vlasenko | 7fb68f1 | 2010-05-09 04:22:48 +0200 | [diff] [blame] | 28 | //config: default y |
Denys Vlasenko | 7fb68f1 | 2010-05-09 04:22:48 +0200 | [diff] [blame] | 29 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 30 | //config: Alias to "grep -E". |
Denys Vlasenko | 7fb68f1 | 2010-05-09 04:22:48 +0200 | [diff] [blame] | 31 | //config: |
Denys Vlasenko | 1924e99 | 2016-11-14 05:09:48 +0100 | [diff] [blame] | 32 | //config:config FGREP |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 33 | //config: bool "fgrep (7.8 kb)" |
Denys Vlasenko | 7fb68f1 | 2010-05-09 04:22:48 +0200 | [diff] [blame] | 34 | //config: default y |
Denys Vlasenko | 7fb68f1 | 2010-05-09 04:22:48 +0200 | [diff] [blame] | 35 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 36 | //config: Alias to "grep -F". |
Denys Vlasenko | 7fb68f1 | 2010-05-09 04:22:48 +0200 | [diff] [blame] | 37 | //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 Vlasenko | c5496d3 | 2017-04-12 17:53:54 +0200 | [diff] [blame] | 41 | //config: depends on GREP || EGREP || FGREP |
Denys Vlasenko | 7fb68f1 | 2010-05-09 04:22:48 +0200 | [diff] [blame] | 42 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 43 | //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 Vlasenko | 7fb68f1 | 2010-05-09 04:22:48 +0200 | [diff] [blame] | 46 | |
Denys Vlasenko | 1924e99 | 2016-11-14 05:09:48 +0100 | [diff] [blame] | 47 | //applet:IF_GREP(APPLET(grep, BB_DIR_BIN, BB_SUID_DROP)) |
Denys Vlasenko | 205d48e | 2017-01-29 14:57:33 +0100 | [diff] [blame] | 48 | // APPLET_ODDNAME:name main location suid_type help |
Denys Vlasenko | 1924e99 | 2016-11-14 05:09:48 +0100 | [diff] [blame] | 49 | //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 Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 56 | #include "libbb.h" |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 57 | #include "common_bufsiz.h" |
"Vladimir N. Oleynik" | 23f62fc | 2005-09-14 16:59:11 +0000 | [diff] [blame] | 58 | #include "xregex.h" |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 59 | |
Denys Vlasenko | 4f731ce | 2010-06-15 15:40:16 +0200 | [diff] [blame] | 60 | //usage:#define grep_trivial_usage |
Tomi Leppanen | 1b76ffa | 2019-11-25 17:59:52 +0200 | [diff] [blame] | 61 | //usage: "[-HhnlLoqvsrRiwFE" |
Denys Vlasenko | 4f731ce | 2010-06-15 15:40:16 +0200 | [diff] [blame] | 62 | //usage: IF_EXTRA_COMPAT("z") |
| 63 | //usage: "] [-m N] " |
Denys Vlasenko | e2b9215 | 2021-06-14 20:47:20 +0200 | [diff] [blame] | 64 | //usage: IF_FEATURE_GREP_CONTEXT("[-A|B|C N] ") |
Denys Vlasenko | 609df6f | 2021-06-16 14:24:27 +0200 | [diff] [blame] | 65 | //usage: "{ PATTERN | -e PATTERN... | -f FILE... } [FILE]..." |
Denys Vlasenko | 4f731ce | 2010-06-15 15:40:16 +0200 | [diff] [blame] | 66 | //usage:#define grep_full_usage "\n\n" |
| 67 | //usage: "Search for PATTERN in FILEs (or stdin)\n" |
Denys Vlasenko | 4f731ce | 2010-06-15 15:40:16 +0200 | [diff] [blame] | 68 | //usage: "\n -H Add 'filename:' prefix" |
| 69 | //usage: "\n -h Do not add 'filename:' prefix" |
| 70 | //usage: "\n -n Add 'line_no:' prefix" |
| 71 | //usage: "\n -l Show only names of files that match" |
| 72 | //usage: "\n -L Show only names of files that don't match" |
| 73 | //usage: "\n -c Show only count of matching lines" |
| 74 | //usage: "\n -o Show only the matching part of line" |
| 75 | //usage: "\n -q Quiet. Return 0 if PATTERN is found, 1 otherwise" |
| 76 | //usage: "\n -v Select non-matching lines" |
| 77 | //usage: "\n -s Suppress open and read errors" |
| 78 | //usage: "\n -r Recurse" |
Tomi Leppanen | 1b76ffa | 2019-11-25 17:59:52 +0200 | [diff] [blame] | 79 | //usage: "\n -R Recurse and dereference symlinks" |
Denys Vlasenko | 4f731ce | 2010-06-15 15:40:16 +0200 | [diff] [blame] | 80 | //usage: "\n -i Ignore case" |
| 81 | //usage: "\n -w Match whole words only" |
Natanael Copa | cd09e81 | 2012-02-23 14:20:22 +0000 | [diff] [blame] | 82 | //usage: "\n -x Match whole lines only" |
Denys Vlasenko | 4f731ce | 2010-06-15 15:40:16 +0200 | [diff] [blame] | 83 | //usage: "\n -F PATTERN is a literal (not regexp)" |
Denys Vlasenko | 4f731ce | 2010-06-15 15:40:16 +0200 | [diff] [blame] | 84 | //usage: "\n -E PATTERN is an extended regexp" |
Denys Vlasenko | 4f731ce | 2010-06-15 15:40:16 +0200 | [diff] [blame] | 85 | //usage: IF_EXTRA_COMPAT( |
Denys Vlasenko | 1e7ca18 | 2021-08-22 15:43:29 +0200 | [diff] [blame] | 86 | //usage: "\n -z NUL terminated input" |
Denys Vlasenko | 4f731ce | 2010-06-15 15:40:16 +0200 | [diff] [blame] | 87 | //usage: ) |
| 88 | //usage: "\n -m N Match up to N times per file" |
| 89 | //usage: IF_FEATURE_GREP_CONTEXT( |
| 90 | //usage: "\n -A N Print N lines of trailing context" |
| 91 | //usage: "\n -B N Print N lines of leading context" |
| 92 | //usage: "\n -C N Same as '-A N -B N'" |
| 93 | //usage: ) |
| 94 | //usage: "\n -e PTRN Pattern to match" |
| 95 | //usage: "\n -f FILE Read pattern from file" |
| 96 | //usage: |
| 97 | //usage:#define grep_example_usage |
| 98 | //usage: "$ grep root /etc/passwd\n" |
| 99 | //usage: "root:x:0:0:root:/root:/bin/bash\n" |
| 100 | //usage: "$ grep ^[rR]oo. /etc/passwd\n" |
| 101 | //usage: "root:x:0:0:root:/root:/bin/bash\n" |
| 102 | //usage: |
| 103 | //usage:#define egrep_trivial_usage NOUSAGE_STR |
| 104 | //usage:#define egrep_full_usage "" |
| 105 | //usage:#define fgrep_trivial_usage NOUSAGE_STR |
| 106 | //usage:#define fgrep_full_usage "" |
| 107 | |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 108 | /* -e,-f are lists; -m,-A,-B,-C have numeric param */ |
Denis Vlasenko | 385304d | 2007-02-25 02:38:20 +0000 | [diff] [blame] | 109 | #define OPTSTR_GREP \ |
Tomi Leppanen | 1b76ffa | 2019-11-25 17:59:52 +0200 | [diff] [blame] | 110 | "lnqvscFiHhe:*f:*LorRm:+wx" \ |
Denys Vlasenko | 237bedd | 2016-07-06 21:58:02 +0200 | [diff] [blame] | 111 | IF_FEATURE_GREP_CONTEXT("A:+B:+C:+") \ |
Denys Vlasenko | 1924e99 | 2016-11-14 05:09:48 +0100 | [diff] [blame] | 112 | "E" \ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 113 | IF_EXTRA_COMPAT("z") \ |
Denis Vlasenko | f8ea0f3 | 2007-02-25 02:38:54 +0000 | [diff] [blame] | 114 | "aI" |
| 115 | /* ignored: -a "assume all files to be text" */ |
| 116 | /* ignored: -I "assume binary files have no matches" */ |
Denis Vlasenko | 385304d | 2007-02-25 02:38:20 +0000 | [diff] [blame] | 117 | enum { |
Denis Vlasenko | 4652daa | 2007-07-15 12:39:08 +0000 | [diff] [blame] | 118 | OPTBIT_l, /* list matched file names only */ |
| 119 | OPTBIT_n, /* print line# */ |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 120 | OPTBIT_q, /* quiet - exit(EXIT_SUCCESS) of first match */ |
Denis Vlasenko | 4652daa | 2007-07-15 12:39:08 +0000 | [diff] [blame] | 121 | OPTBIT_v, /* invert the match, to select non-matching lines */ |
| 122 | OPTBIT_s, /* suppress errors about file open errors */ |
| 123 | OPTBIT_c, /* count matches per file (suppresses normal output) */ |
| 124 | OPTBIT_F, /* literal match */ |
| 125 | OPTBIT_i, /* case-insensitive */ |
| 126 | OPTBIT_H, /* force filename display */ |
| 127 | OPTBIT_h, /* inhibit filename display */ |
| 128 | OPTBIT_e, /* -e PATTERN */ |
| 129 | OPTBIT_f, /* -f FILE_WITH_PATTERNS */ |
| 130 | OPTBIT_L, /* list unmatched file names only */ |
| 131 | OPTBIT_o, /* show only matching parts of lines */ |
| 132 | OPTBIT_r, /* recurse dirs */ |
Tomi Leppanen | 1b76ffa | 2019-11-25 17:59:52 +0200 | [diff] [blame] | 133 | OPTBIT_R, /* recurse dirs and symlinks to dirs */ |
Denis Vlasenko | 4652daa | 2007-07-15 12:39:08 +0000 | [diff] [blame] | 134 | OPTBIT_m, /* -m MAX_MATCHES */ |
Denys Vlasenko | 05273da | 2010-04-26 08:45:44 +0200 | [diff] [blame] | 135 | OPTBIT_w, /* -w whole word match */ |
Natanael Copa | cd09e81 | 2012-02-23 14:20:22 +0000 | [diff] [blame] | 136 | OPTBIT_x, /* -x whole line match */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 137 | IF_FEATURE_GREP_CONTEXT( OPTBIT_A ,) /* -A NUM: after-match context */ |
| 138 | IF_FEATURE_GREP_CONTEXT( OPTBIT_B ,) /* -B NUM: before-match context */ |
| 139 | IF_FEATURE_GREP_CONTEXT( OPTBIT_C ,) /* -C NUM: -A and -B combined */ |
Denys Vlasenko | 1924e99 | 2016-11-14 05:09:48 +0100 | [diff] [blame] | 140 | OPTBIT_E, /* extended regexp */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 141 | IF_EXTRA_COMPAT( OPTBIT_z ,) /* input is NUL terminated */ |
Denis Vlasenko | 385304d | 2007-02-25 02:38:20 +0000 | [diff] [blame] | 142 | OPT_l = 1 << OPTBIT_l, |
| 143 | OPT_n = 1 << OPTBIT_n, |
| 144 | OPT_q = 1 << OPTBIT_q, |
| 145 | OPT_v = 1 << OPTBIT_v, |
| 146 | OPT_s = 1 << OPTBIT_s, |
| 147 | OPT_c = 1 << OPTBIT_c, |
| 148 | OPT_F = 1 << OPTBIT_F, |
| 149 | OPT_i = 1 << OPTBIT_i, |
| 150 | OPT_H = 1 << OPTBIT_H, |
| 151 | OPT_h = 1 << OPTBIT_h, |
| 152 | OPT_e = 1 << OPTBIT_e, |
| 153 | OPT_f = 1 << OPTBIT_f, |
| 154 | OPT_L = 1 << OPTBIT_L, |
| 155 | OPT_o = 1 << OPTBIT_o, |
| 156 | OPT_r = 1 << OPTBIT_r, |
Tomi Leppanen | 1b76ffa | 2019-11-25 17:59:52 +0200 | [diff] [blame] | 157 | OPT_R = 1 << OPTBIT_R, |
Denis Vlasenko | 4652daa | 2007-07-15 12:39:08 +0000 | [diff] [blame] | 158 | OPT_m = 1 << OPTBIT_m, |
Denys Vlasenko | 05273da | 2010-04-26 08:45:44 +0200 | [diff] [blame] | 159 | OPT_w = 1 << OPTBIT_w, |
Natanael Copa | cd09e81 | 2012-02-23 14:20:22 +0000 | [diff] [blame] | 160 | OPT_x = 1 << OPTBIT_x, |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 161 | OPT_A = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_A)) + 0, |
| 162 | OPT_B = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_B)) + 0, |
| 163 | OPT_C = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_C)) + 0, |
Denys Vlasenko | 1924e99 | 2016-11-14 05:09:48 +0100 | [diff] [blame] | 164 | OPT_E = 1 << OPTBIT_E, |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 165 | OPT_z = IF_EXTRA_COMPAT( (1 << OPTBIT_z)) + 0, |
Denis Vlasenko | 385304d | 2007-02-25 02:38:20 +0000 | [diff] [blame] | 166 | }; |
| 167 | |
Denis Vlasenko | 9acfed2 | 2007-06-08 15:41:27 +0000 | [diff] [blame] | 168 | #define PRINT_LINE_NUM (option_mask32 & OPT_n) |
| 169 | #define BE_QUIET (option_mask32 & OPT_q) |
| 170 | #define SUPPRESS_ERR_MSGS (option_mask32 & OPT_s) |
| 171 | #define PRINT_MATCH_COUNTS (option_mask32 & OPT_c) |
| 172 | #define FGREP_FLAG (option_mask32 & OPT_F) |
Denis Vlasenko | 83518d1 | 2009-03-20 22:17:13 +0000 | [diff] [blame] | 173 | #define NUL_DELIMITED (option_mask32 & OPT_z) |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 174 | |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 175 | struct globals { |
| 176 | int max_matches; |
Denis Vlasenko | c110b7d | 2008-09-19 21:29:21 +0000 | [diff] [blame] | 177 | #if !ENABLE_EXTRA_COMPAT |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 178 | int reflags; |
Denis Vlasenko | c110b7d | 2008-09-19 21:29:21 +0000 | [diff] [blame] | 179 | #else |
| 180 | RE_TRANSLATE_TYPE case_fold; /* RE_TRANSLATE_TYPE is [[un]signed] char* */ |
| 181 | #endif |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 182 | smalluint invert_search; |
| 183 | smalluint print_filename; |
| 184 | smalluint open_errors; |
Bernhard Reutner-Fischer | aaf0e23 | 2005-09-23 15:38:49 +0000 | [diff] [blame] | 185 | #if ENABLE_FEATURE_GREP_CONTEXT |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 186 | smalluint did_print_line; |
| 187 | int lines_before; |
| 188 | int lines_after; |
| 189 | char **before_buf; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 190 | IF_EXTRA_COMPAT(size_t *before_buf_size;) |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 191 | int last_line_printed; |
| 192 | #endif |
| 193 | /* globals used internally */ |
| 194 | llist_t *pattern_head; /* growable list of patterns to match */ |
| 195 | const char *cur_file; /* the current file we are reading */ |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 196 | } FIX_ALIASING; |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 197 | #define G (*(struct globals*)bb_common_bufsiz1) |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 198 | #define INIT_G() do { \ |
Denys Vlasenko | 47cfbf3 | 2016-04-21 18:18:48 +0200 | [diff] [blame] | 199 | setup_common_bufsiz(); \ |
Denys Vlasenko | 7b85ec3 | 2015-10-13 17:17:34 +0200 | [diff] [blame] | 200 | BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \ |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 201 | } while (0) |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 202 | #define max_matches (G.max_matches ) |
Denis Vlasenko | c110b7d | 2008-09-19 21:29:21 +0000 | [diff] [blame] | 203 | #if !ENABLE_EXTRA_COMPAT |
Denys Vlasenko | 0944963 | 2009-07-29 01:20:09 +0200 | [diff] [blame] | 204 | # define reflags (G.reflags ) |
Denis Vlasenko | c110b7d | 2008-09-19 21:29:21 +0000 | [diff] [blame] | 205 | #else |
Denys Vlasenko | 0944963 | 2009-07-29 01:20:09 +0200 | [diff] [blame] | 206 | # define case_fold (G.case_fold ) |
Denis Vlasenko | c110b7d | 2008-09-19 21:29:21 +0000 | [diff] [blame] | 207 | /* http://www.delorie.com/gnu/docs/regex/regex_46.html */ |
Denys Vlasenko | 0944963 | 2009-07-29 01:20:09 +0200 | [diff] [blame] | 208 | # define reflags re_syntax_options |
| 209 | # undef REG_NOSUB |
| 210 | # undef REG_EXTENDED |
| 211 | # undef REG_ICASE |
| 212 | # define REG_NOSUB bug:is:here /* should not be used */ |
| 213 | /* Just RE_SYNTAX_EGREP is not enough, need to enable {n[,[m]]} too */ |
| 214 | # define REG_EXTENDED (RE_SYNTAX_EGREP | RE_INTERVALS | RE_NO_BK_BRACES) |
| 215 | # define REG_ICASE bug:is:here /* should not be used */ |
Denis Vlasenko | c110b7d | 2008-09-19 21:29:21 +0000 | [diff] [blame] | 216 | #endif |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 217 | #define invert_search (G.invert_search ) |
| 218 | #define print_filename (G.print_filename ) |
| 219 | #define open_errors (G.open_errors ) |
| 220 | #define did_print_line (G.did_print_line ) |
| 221 | #define lines_before (G.lines_before ) |
| 222 | #define lines_after (G.lines_after ) |
| 223 | #define before_buf (G.before_buf ) |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 224 | #define before_buf_size (G.before_buf_size ) |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 225 | #define last_line_printed (G.last_line_printed ) |
| 226 | #define pattern_head (G.pattern_head ) |
| 227 | #define cur_file (G.cur_file ) |
| 228 | |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 229 | |
Denis Vlasenko | 4222ae4 | 2007-02-25 02:37:49 +0000 | [diff] [blame] | 230 | typedef struct grep_list_data_t { |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 231 | char *pattern; |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 232 | /* for GNU regex, matched_range must be persistent across grep_file() calls */ |
| 233 | #if !ENABLE_EXTRA_COMPAT |
| 234 | regex_t compiled_regex; |
| 235 | regmatch_t matched_range; |
| 236 | #else |
| 237 | struct re_pattern_buffer compiled_regex; |
| 238 | struct re_registers matched_range; |
| 239 | #endif |
Denis Vlasenko | a05c071 | 2008-06-07 05:19:31 +0000 | [diff] [blame] | 240 | #define ALLOCATED 1 |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 241 | #define COMPILED 2 |
Denys Vlasenko | 7373759 | 2016-09-17 20:58:22 +0200 | [diff] [blame] | 242 | int flg_mem_allocated_compiled; |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 243 | } grep_list_data_t; |
Mark Whitley | fa43e54 | 2001-05-24 18:36:18 +0000 | [diff] [blame] | 244 | |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 245 | #if !ENABLE_EXTRA_COMPAT |
| 246 | #define print_line(line, line_len, linenum, decoration) \ |
| 247 | print_line(line, linenum, decoration) |
| 248 | #endif |
| 249 | static void print_line(const char *line, size_t line_len, int linenum, char decoration) |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 250 | { |
Bernhard Reutner-Fischer | aaf0e23 | 2005-09-23 15:38:49 +0000 | [diff] [blame] | 251 | #if ENABLE_FEATURE_GREP_CONTEXT |
Denis Vlasenko | 8d5aa87 | 2007-07-15 12:38:18 +0000 | [diff] [blame] | 252 | /* Happens when we go to next file, immediately hit match |
| 253 | * and try to print prev context... from prev file! Don't do it */ |
| 254 | if (linenum < 1) |
| 255 | return; |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 256 | /* possibly print the little '--' separator */ |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 257 | if ((lines_before || lines_after) && did_print_line |
| 258 | && last_line_printed != linenum - 1 |
| 259 | ) { |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 260 | puts("--"); |
| 261 | } |
Denis Vlasenko | 8d5aa87 | 2007-07-15 12:38:18 +0000 | [diff] [blame] | 262 | /* guard against printing "--" before first line of first file */ |
| 263 | did_print_line = 1; |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 264 | last_line_printed = linenum; |
| 265 | #endif |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 266 | if (print_filename) |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 267 | printf("%s%c", cur_file, decoration); |
Bernhard Reutner-Fischer | aaf0e23 | 2005-09-23 15:38:49 +0000 | [diff] [blame] | 268 | if (PRINT_LINE_NUM) |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 269 | printf("%i%c", linenum, decoration); |
Denis Vlasenko | 5193753 | 2006-09-29 20:58:53 +0000 | [diff] [blame] | 270 | /* Emulate weird GNU grep behavior with -ov */ |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 271 | if ((option_mask32 & (OPT_v|OPT_o)) != (OPT_v|OPT_o)) { |
| 272 | #if !ENABLE_EXTRA_COMPAT |
Denis Vlasenko | 5193753 | 2006-09-29 20:58:53 +0000 | [diff] [blame] | 273 | puts(line); |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 274 | #else |
| 275 | fwrite(line, 1, line_len, stdout); |
Denis Vlasenko | 83518d1 | 2009-03-20 22:17:13 +0000 | [diff] [blame] | 276 | putchar(NUL_DELIMITED ? '\0' : '\n'); |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 277 | #endif |
| 278 | } |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 279 | } |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 280 | |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 281 | #if ENABLE_EXTRA_COMPAT |
| 282 | /* Unlike getline, this one removes trailing '\n' */ |
| 283 | static ssize_t FAST_FUNC bb_getline(char **line_ptr, size_t *line_alloc_len, FILE *file) |
| 284 | { |
| 285 | ssize_t res_sz; |
| 286 | char *line; |
Denis Vlasenko | 83518d1 | 2009-03-20 22:17:13 +0000 | [diff] [blame] | 287 | int delim = (NUL_DELIMITED ? '\0' : '\n'); |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 288 | |
Denis Vlasenko | 83518d1 | 2009-03-20 22:17:13 +0000 | [diff] [blame] | 289 | res_sz = getdelim(line_ptr, line_alloc_len, delim, file); |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 290 | line = *line_ptr; |
| 291 | |
| 292 | if (res_sz > 0) { |
Denis Vlasenko | 83518d1 | 2009-03-20 22:17:13 +0000 | [diff] [blame] | 293 | if (line[res_sz - 1] == delim) |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 294 | line[--res_sz] = '\0'; |
| 295 | } else { |
| 296 | free(line); /* uclibc allocates a buffer even on EOF. WTF? */ |
| 297 | } |
| 298 | return res_sz; |
| 299 | } |
| 300 | #endif |
| 301 | |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 302 | static int grep_file(FILE *file) |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 303 | { |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 304 | smalluint found; |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 305 | int linenum = 0; |
Matt Kraai | deb95f6 | 2000-08-06 15:25:53 +0000 | [diff] [blame] | 306 | int nmatches = 0; |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 307 | #if !ENABLE_EXTRA_COMPAT |
| 308 | char *line; |
| 309 | #else |
| 310 | char *line = NULL; |
| 311 | ssize_t line_len; |
| 312 | size_t line_alloc_len; |
Denys Vlasenko | 6dc0ace | 2009-12-04 02:48:14 +0100 | [diff] [blame] | 313 | # define rm_so start[0] |
| 314 | # define rm_eo end[0] |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 315 | #endif |
Bernhard Reutner-Fischer | aaf0e23 | 2005-09-23 15:38:49 +0000 | [diff] [blame] | 316 | #if ENABLE_FEATURE_GREP_CONTEXT |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 317 | int print_n_lines_after = 0; |
| 318 | int curpos = 0; /* track where we are in the circular 'before' buffer */ |
| 319 | int idx = 0; /* used for iteration through the circular buffer */ |
Denis Vlasenko | 4652daa | 2007-07-15 12:39:08 +0000 | [diff] [blame] | 320 | #else |
| 321 | enum { print_n_lines_after = 0 }; |
Denys Vlasenko | 6dc0ace | 2009-12-04 02:48:14 +0100 | [diff] [blame] | 322 | #endif |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 323 | |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 324 | while ( |
| 325 | #if !ENABLE_EXTRA_COMPAT |
| 326 | (line = xmalloc_fgetline(file)) != NULL |
| 327 | #else |
| 328 | (line_len = bb_getline(&line, &line_alloc_len, file)) >= 0 |
| 329 | #endif |
| 330 | ) { |
Glenn L McGrath | 26df70a | 2003-04-27 01:50:57 +0000 | [diff] [blame] | 331 | llist_t *pattern_ptr = pattern_head; |
Denis Vlasenko | 6810236 | 2007-11-04 00:46:03 +0000 | [diff] [blame] | 332 | grep_list_data_t *gl = gl; /* for gcc */ |
Glenn L McGrath | 26df70a | 2003-04-27 01:50:57 +0000 | [diff] [blame] | 333 | |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 334 | linenum++; |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 335 | found = 0; |
Glenn L McGrath | 26df70a | 2003-04-27 01:50:57 +0000 | [diff] [blame] | 336 | while (pattern_ptr) { |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 337 | gl = (grep_list_data_t *)pattern_ptr->data; |
Bernhard Reutner-Fischer | aaf0e23 | 2005-09-23 15:38:49 +0000 | [diff] [blame] | 338 | if (FGREP_FLAG) { |
Denys Vlasenko | 2f5b5be | 2013-01-20 16:57:19 +0100 | [diff] [blame] | 339 | char *match; |
| 340 | char *str = line; |
| 341 | opt_f_again: |
| 342 | match = ((option_mask32 & OPT_i) |
| 343 | ? strcasestr(str, gl->pattern) |
| 344 | : strstr(str, gl->pattern) |
| 345 | ); |
| 346 | if (match) { |
| 347 | if (option_mask32 & OPT_x) { |
| 348 | if (match != str) |
| 349 | goto opt_f_not_found; |
| 350 | if (str[strlen(gl->pattern)] != '\0') |
| 351 | goto opt_f_not_found; |
| 352 | } else |
| 353 | if (option_mask32 & OPT_w) { |
Denys Vlasenko | 03fd7e0 | 2018-03-29 18:03:50 +0200 | [diff] [blame] | 354 | char c = (match != line) ? match[-1] : ' '; |
Denys Vlasenko | 2f5b5be | 2013-01-20 16:57:19 +0100 | [diff] [blame] | 355 | if (!isalnum(c) && c != '_') { |
| 356 | c = match[strlen(gl->pattern)]; |
| 357 | if (!c || (!isalnum(c) && c != '_')) |
| 358 | goto opt_f_found; |
| 359 | } |
| 360 | str = match + 1; |
| 361 | goto opt_f_again; |
| 362 | } |
| 363 | opt_f_found: |
| 364 | found = 1; |
| 365 | opt_f_not_found: ; |
| 366 | } |
Glenn L McGrath | 26df70a | 2003-04-27 01:50:57 +0000 | [diff] [blame] | 367 | } else { |
Denys Vlasenko | cd55f2d | 2014-01-07 14:57:42 +0100 | [diff] [blame] | 368 | #if ENABLE_EXTRA_COMPAT |
| 369 | unsigned start_pos; |
Bartosz Golaszewski | 3ba2df8 | 2014-02-07 17:14:37 +0100 | [diff] [blame] | 370 | #else |
| 371 | int match_flg; |
Denys Vlasenko | cd55f2d | 2014-01-07 14:57:42 +0100 | [diff] [blame] | 372 | #endif |
Bartosz Golaszewski | 414db79 | 2013-05-15 03:53:26 +0200 | [diff] [blame] | 373 | char *match_at; |
| 374 | |
Denys Vlasenko | 7373759 | 2016-09-17 20:58:22 +0200 | [diff] [blame] | 375 | if (!(gl->flg_mem_allocated_compiled & COMPILED)) { |
| 376 | gl->flg_mem_allocated_compiled |= COMPILED; |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 377 | #if !ENABLE_EXTRA_COMPAT |
| 378 | xregcomp(&gl->compiled_regex, gl->pattern, reflags); |
| 379 | #else |
| 380 | memset(&gl->compiled_regex, 0, sizeof(gl->compiled_regex)); |
Denis Vlasenko | c110b7d | 2008-09-19 21:29:21 +0000 | [diff] [blame] | 381 | gl->compiled_regex.translate = case_fold; /* for -i */ |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 382 | if (re_compile_pattern(gl->pattern, strlen(gl->pattern), &gl->compiled_regex)) |
| 383 | bb_error_msg_and_die("bad regex '%s'", gl->pattern); |
| 384 | #endif |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 385 | } |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 386 | #if !ENABLE_EXTRA_COMPAT |
| 387 | gl->matched_range.rm_so = 0; |
| 388 | gl->matched_range.rm_eo = 0; |
Bartosz Golaszewski | 3ba2df8 | 2014-02-07 17:14:37 +0100 | [diff] [blame] | 389 | match_flg = 0; |
Denys Vlasenko | cd55f2d | 2014-01-07 14:57:42 +0100 | [diff] [blame] | 390 | #else |
| 391 | start_pos = 0; |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 392 | #endif |
Bartosz Golaszewski | 414db79 | 2013-05-15 03:53:26 +0200 | [diff] [blame] | 393 | match_at = line; |
| 394 | opt_w_again: |
Denys Vlasenko | cd55f2d | 2014-01-07 14:57:42 +0100 | [diff] [blame] | 395 | //bb_error_msg("'%s' start_pos:%d line_len:%d", match_at, start_pos, line_len); |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 396 | if ( |
| 397 | #if !ENABLE_EXTRA_COMPAT |
Bartosz Golaszewski | 3ba2df8 | 2014-02-07 17:14:37 +0100 | [diff] [blame] | 398 | regexec(&gl->compiled_regex, match_at, 1, &gl->matched_range, match_flg) == 0 |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 399 | #else |
Bartosz Golaszewski | 414db79 | 2013-05-15 03:53:26 +0200 | [diff] [blame] | 400 | re_search(&gl->compiled_regex, match_at, line_len, |
Denys Vlasenko | cd55f2d | 2014-01-07 14:57:42 +0100 | [diff] [blame] | 401 | start_pos, /*range:*/ line_len, |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 402 | &gl->matched_range) >= 0 |
| 403 | #endif |
| 404 | ) { |
Natanael Copa | cd09e81 | 2012-02-23 14:20:22 +0000 | [diff] [blame] | 405 | if (option_mask32 & OPT_x) { |
Ari Sundholm | 9a9c6e3 | 2019-01-29 14:42:57 +0100 | [diff] [blame] | 406 | found |= (gl->matched_range.rm_so == 0 |
Bartosz Golaszewski | 414db79 | 2013-05-15 03:53:26 +0200 | [diff] [blame] | 407 | && match_at[gl->matched_range.rm_eo] == '\0'); |
Denys Vlasenko | 2f5b5be | 2013-01-20 16:57:19 +0100 | [diff] [blame] | 408 | } else |
| 409 | if (!(option_mask32 & OPT_w)) { |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 410 | found = 1; |
Natanael Copa | cd09e81 | 2012-02-23 14:20:22 +0000 | [diff] [blame] | 411 | } else { |
Denis Vlasenko | 385304d | 2007-02-25 02:38:20 +0000 | [diff] [blame] | 412 | char c = ' '; |
Denys Vlasenko | 83e49ad | 2014-02-27 14:56:12 +0100 | [diff] [blame] | 413 | if (match_at > line || gl->matched_range.rm_so != 0) { |
Bartosz Golaszewski | 414db79 | 2013-05-15 03:53:26 +0200 | [diff] [blame] | 414 | c = match_at[gl->matched_range.rm_so - 1]; |
Denys Vlasenko | 83e49ad | 2014-02-27 14:56:12 +0100 | [diff] [blame] | 415 | } |
Denis Vlasenko | 385304d | 2007-02-25 02:38:20 +0000 | [diff] [blame] | 416 | if (!isalnum(c) && c != '_') { |
Bartosz Golaszewski | 414db79 | 2013-05-15 03:53:26 +0200 | [diff] [blame] | 417 | c = match_at[gl->matched_range.rm_eo]; |
Denys Vlasenko | 83e49ad | 2014-02-27 14:56:12 +0100 | [diff] [blame] | 418 | } |
| 419 | if (!isalnum(c) && c != '_') { |
| 420 | found = 1; |
| 421 | } else { |
Denys Vlasenko | cd55f2d | 2014-01-07 14:57:42 +0100 | [diff] [blame] | 422 | /* |
| 423 | * Why check gl->matched_range.rm_eo? |
| 424 | * Zero-length match makes -w skip the line: |
| 425 | * "echo foo | grep ^" prints "foo", |
| 426 | * "echo foo | grep -w ^" prints nothing. |
| 427 | * Without such check, we can loop forever. |
| 428 | */ |
| 429 | #if !ENABLE_EXTRA_COMPAT |
Denys Vlasenko | 83e49ad | 2014-02-27 14:56:12 +0100 | [diff] [blame] | 430 | if (gl->matched_range.rm_eo != 0) { |
| 431 | match_at += gl->matched_range.rm_eo; |
| 432 | match_flg |= REG_NOTBOL; |
| 433 | goto opt_w_again; |
Bartosz Golaszewski | 414db79 | 2013-05-15 03:53:26 +0200 | [diff] [blame] | 434 | } |
Denys Vlasenko | 83e49ad | 2014-02-27 14:56:12 +0100 | [diff] [blame] | 435 | #else |
| 436 | if (gl->matched_range.rm_eo > start_pos) { |
| 437 | start_pos = gl->matched_range.rm_eo; |
| 438 | goto opt_w_again; |
| 439 | } |
| 440 | #endif |
Denis Vlasenko | 385304d | 2007-02-25 02:38:20 +0000 | [diff] [blame] | 441 | } |
| 442 | } |
| 443 | } |
Glenn L McGrath | 26df70a | 2003-04-27 01:50:57 +0000 | [diff] [blame] | 444 | } |
Ari Sundholm | d4b568c | 2019-01-28 19:41:12 +0200 | [diff] [blame] | 445 | /* If it's a non-inverted search, we can stop |
| 446 | * at first match and report it. |
| 447 | * If it's an inverted search, we can move on |
| 448 | * to the next line of input, ignoring the |
| 449 | * rest of the patterns. |
| 450 | */ |
| 451 | if (found) { |
| 452 | //if (invert_search) |
| 453 | // goto do_not_found; |
| 454 | //goto do_found; |
| 455 | break; // this accomplishes both |
| 456 | } |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 457 | pattern_ptr = pattern_ptr->link; |
| 458 | } /* while (pattern_ptr) */ |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 459 | |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 460 | if (found ^ invert_search) { |
Ari Sundholm | d4b568c | 2019-01-28 19:41:12 +0200 | [diff] [blame] | 461 | //do_found: |
Denis Vlasenko | 4222ae4 | 2007-02-25 02:37:49 +0000 | [diff] [blame] | 462 | /* keep track of matches */ |
| 463 | nmatches++; |
Mark Whitley | 1d9d411 | 2001-05-21 21:13:00 +0000 | [diff] [blame] | 464 | |
Denis Vlasenko | 8d5aa87 | 2007-07-15 12:38:18 +0000 | [diff] [blame] | 465 | /* quiet/print (non)matching file names only? */ |
| 466 | if (option_mask32 & (OPT_q|OPT_l|OPT_L)) { |
| 467 | free(line); /* we don't need line anymore */ |
| 468 | if (BE_QUIET) { |
| 469 | /* manpage says about -q: |
| 470 | * "exit immediately with zero status |
| 471 | * if any match is found, |
| 472 | * even if errors were detected" */ |
Denys Vlasenko | db5546c | 2022-01-05 22:16:06 +0100 | [diff] [blame] | 473 | exit_SUCCESS(); |
Denis Vlasenko | 8d5aa87 | 2007-07-15 12:38:18 +0000 | [diff] [blame] | 474 | } |
Denys Vlasenko | a77f3ec | 2020-08-15 00:39:30 +0200 | [diff] [blame] | 475 | /* -l "print filenames with matches": stop after the first match */ |
| 476 | if (option_mask32 & OPT_l) { |
Denis Vlasenko | 8d5aa87 | 2007-07-15 12:38:18 +0000 | [diff] [blame] | 477 | puts(cur_file); |
Denys Vlasenko | a77f3ec | 2020-08-15 00:39:30 +0200 | [diff] [blame] | 478 | return 1; |
Denis Vlasenko | 8d5aa87 | 2007-07-15 12:38:18 +0000 | [diff] [blame] | 479 | } |
Denys Vlasenko | a77f3ec | 2020-08-15 00:39:30 +0200 | [diff] [blame] | 480 | /* -L "print filenames without matches": return early too */ |
| 481 | return 0; /* 0: we do not print fname, hence it's "not a match" */ |
Denis Vlasenko | 8d5aa87 | 2007-07-15 12:38:18 +0000 | [diff] [blame] | 482 | } |
Mark Whitley | 1d9d411 | 2001-05-21 21:13:00 +0000 | [diff] [blame] | 483 | |
Denis Vlasenko | 4652daa | 2007-07-15 12:39:08 +0000 | [diff] [blame] | 484 | #if ENABLE_FEATURE_GREP_CONTEXT |
| 485 | /* Were we printing context and saw next (unwanted) match? */ |
| 486 | if ((option_mask32 & OPT_m) && nmatches > max_matches) |
| 487 | break; |
| 488 | #endif |
| 489 | |
Denis Vlasenko | 4222ae4 | 2007-02-25 02:37:49 +0000 | [diff] [blame] | 490 | /* print the matched line */ |
| 491 | if (PRINT_MATCH_COUNTS == 0) { |
Bernhard Reutner-Fischer | aaf0e23 | 2005-09-23 15:38:49 +0000 | [diff] [blame] | 492 | #if ENABLE_FEATURE_GREP_CONTEXT |
Denis Vlasenko | 4222ae4 | 2007-02-25 02:37:49 +0000 | [diff] [blame] | 493 | int prevpos = (curpos == 0) ? lines_before - 1 : curpos - 1; |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 494 | |
Denis Vlasenko | 4222ae4 | 2007-02-25 02:37:49 +0000 | [diff] [blame] | 495 | /* if we were told to print 'before' lines and there is at least |
| 496 | * one line in the circular buffer, print them */ |
| 497 | if (lines_before && before_buf[prevpos] != NULL) { |
| 498 | int first_buf_entry_line_num = linenum - lines_before; |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 499 | |
Denis Vlasenko | 4222ae4 | 2007-02-25 02:37:49 +0000 | [diff] [blame] | 500 | /* advance to the first entry in the circular buffer, and |
| 501 | * figure out the line number is of the first line in the |
| 502 | * buffer */ |
| 503 | idx = curpos; |
| 504 | while (before_buf[idx] == NULL) { |
| 505 | idx = (idx + 1) % lines_before; |
| 506 | first_buf_entry_line_num++; |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 507 | } |
| 508 | |
Denis Vlasenko | 4222ae4 | 2007-02-25 02:37:49 +0000 | [diff] [blame] | 509 | /* now print each line in the buffer, clearing them as we go */ |
| 510 | while (before_buf[idx] != NULL) { |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 511 | print_line(before_buf[idx], before_buf_size[idx], first_buf_entry_line_num, '-'); |
Denis Vlasenko | 4222ae4 | 2007-02-25 02:37:49 +0000 | [diff] [blame] | 512 | free(before_buf[idx]); |
| 513 | before_buf[idx] = NULL; |
| 514 | idx = (idx + 1) % lines_before; |
| 515 | first_buf_entry_line_num++; |
| 516 | } |
| 517 | } |
| 518 | |
| 519 | /* make a note that we need to print 'after' lines */ |
| 520 | print_n_lines_after = lines_after; |
Bernhard Reutner-Fischer | aaf0e23 | 2005-09-23 15:38:49 +0000 | [diff] [blame] | 521 | #endif |
Denis Vlasenko | 385304d | 2007-02-25 02:38:20 +0000 | [diff] [blame] | 522 | if (option_mask32 & OPT_o) { |
Denis Vlasenko | 6810236 | 2007-11-04 00:46:03 +0000 | [diff] [blame] | 523 | if (FGREP_FLAG) { |
| 524 | /* -Fo just prints the pattern |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 525 | * (unless -v: -Fov doesn't print anything at all) */ |
Denis Vlasenko | 6810236 | 2007-11-04 00:46:03 +0000 | [diff] [blame] | 526 | if (found) |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 527 | print_line(gl->pattern, strlen(gl->pattern), linenum, ':'); |
Denis Vlasenko | f60719c | 2008-09-30 22:37:29 +0000 | [diff] [blame] | 528 | } else while (1) { |
Denys Vlasenko | 3d8b96d | 2010-08-23 02:39:47 +0200 | [diff] [blame] | 529 | unsigned start = gl->matched_range.rm_so; |
Denys Vlasenko | 0944963 | 2009-07-29 01:20:09 +0200 | [diff] [blame] | 530 | unsigned end = gl->matched_range.rm_eo; |
Denys Vlasenko | 3d8b96d | 2010-08-23 02:39:47 +0200 | [diff] [blame] | 531 | unsigned len = end - start; |
Denys Vlasenko | 0944963 | 2009-07-29 01:20:09 +0200 | [diff] [blame] | 532 | char old = line[end]; |
| 533 | line[end] = '\0'; |
Denys Vlasenko | 3d8b96d | 2010-08-23 02:39:47 +0200 | [diff] [blame] | 534 | /* Empty match is not printed: try "echo test | grep -o ''" */ |
| 535 | if (len != 0) |
| 536 | print_line(line + start, len, linenum, ':'); |
Denys Vlasenko | 6dc0ace | 2009-12-04 02:48:14 +0100 | [diff] [blame] | 537 | if (old == '\0') |
| 538 | break; |
Denys Vlasenko | 0944963 | 2009-07-29 01:20:09 +0200 | [diff] [blame] | 539 | line[end] = old; |
Denys Vlasenko | 3d8b96d | 2010-08-23 02:39:47 +0200 | [diff] [blame] | 540 | if (len == 0) |
| 541 | end++; |
Denis Vlasenko | f60719c | 2008-09-30 22:37:29 +0000 | [diff] [blame] | 542 | #if !ENABLE_EXTRA_COMPAT |
Denys Vlasenko | 0944963 | 2009-07-29 01:20:09 +0200 | [diff] [blame] | 543 | if (regexec(&gl->compiled_regex, line + end, |
| 544 | 1, &gl->matched_range, REG_NOTBOL) != 0) |
| 545 | break; |
| 546 | gl->matched_range.rm_so += end; |
| 547 | gl->matched_range.rm_eo += end; |
Denis Vlasenko | f60719c | 2008-09-30 22:37:29 +0000 | [diff] [blame] | 548 | #else |
| 549 | if (re_search(&gl->compiled_regex, line, line_len, |
Denys Vlasenko | 0944963 | 2009-07-29 01:20:09 +0200 | [diff] [blame] | 550 | end, line_len - end, |
Denis Vlasenko | f60719c | 2008-09-30 22:37:29 +0000 | [diff] [blame] | 551 | &gl->matched_range) < 0) |
| 552 | break; |
| 553 | #endif |
Denis Vlasenko | a9acbe6 | 2008-11-24 13:25:20 +0000 | [diff] [blame] | 554 | } |
Denis Vlasenko | 4222ae4 | 2007-02-25 02:37:49 +0000 | [diff] [blame] | 555 | } else { |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 556 | print_line(line, line_len, linenum, ':'); |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 557 | } |
Matt Kraai | 0810f72 | 2001-01-04 15:11:52 +0000 | [diff] [blame] | 558 | } |
Denis Vlasenko | 4222ae4 | 2007-02-25 02:37:49 +0000 | [diff] [blame] | 559 | } |
Bernhard Reutner-Fischer | aaf0e23 | 2005-09-23 15:38:49 +0000 | [diff] [blame] | 560 | #if ENABLE_FEATURE_GREP_CONTEXT |
Denis Vlasenko | 4222ae4 | 2007-02-25 02:37:49 +0000 | [diff] [blame] | 561 | else { /* no match */ |
Ari Sundholm | d4b568c | 2019-01-28 19:41:12 +0200 | [diff] [blame] | 562 | //do_not_found: |
Denis Vlasenko | 8d5aa87 | 2007-07-15 12:38:18 +0000 | [diff] [blame] | 563 | /* if we need to print some context lines after the last match, do so */ |
Denis Vlasenko | 4652daa | 2007-07-15 12:39:08 +0000 | [diff] [blame] | 564 | if (print_n_lines_after) { |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 565 | print_line(line, strlen(line), linenum, '-'); |
Denis Vlasenko | 8d5aa87 | 2007-07-15 12:38:18 +0000 | [diff] [blame] | 566 | print_n_lines_after--; |
| 567 | } else if (lines_before) { |
| 568 | /* Add the line to the circular 'before' buffer */ |
Denis Vlasenko | 4222ae4 | 2007-02-25 02:37:49 +0000 | [diff] [blame] | 569 | free(before_buf[curpos]); |
Denis Vlasenko | 8d5aa87 | 2007-07-15 12:38:18 +0000 | [diff] [blame] | 570 | before_buf[curpos] = line; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 571 | IF_EXTRA_COMPAT(before_buf_size[curpos] = line_len;) |
Denis Vlasenko | 4222ae4 | 2007-02-25 02:37:49 +0000 | [diff] [blame] | 572 | curpos = (curpos + 1) % lines_before; |
Denis Vlasenko | 1d42665 | 2008-03-17 09:09:09 +0000 | [diff] [blame] | 573 | /* avoid free(line) - we took the line */ |
Denis Vlasenko | 4652daa | 2007-07-15 12:39:08 +0000 | [diff] [blame] | 574 | line = NULL; |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 575 | } |
Denis Vlasenko | 4222ae4 | 2007-02-25 02:37:49 +0000 | [diff] [blame] | 576 | } |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 577 | |
Bernhard Reutner-Fischer | aaf0e23 | 2005-09-23 15:38:49 +0000 | [diff] [blame] | 578 | #endif /* ENABLE_FEATURE_GREP_CONTEXT */ |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 579 | #if !ENABLE_EXTRA_COMPAT |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 580 | free(line); |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 581 | #endif |
Denis Vlasenko | 4652daa | 2007-07-15 12:39:08 +0000 | [diff] [blame] | 582 | /* Did we print all context after last requested match? */ |
| 583 | if ((option_mask32 & OPT_m) |
Denis Vlasenko | 83518d1 | 2009-03-20 22:17:13 +0000 | [diff] [blame] | 584 | && !print_n_lines_after |
| 585 | && nmatches == max_matches |
| 586 | ) { |
Denis Vlasenko | 4652daa | 2007-07-15 12:39:08 +0000 | [diff] [blame] | 587 | break; |
Denis Vlasenko | 83518d1 | 2009-03-20 22:17:13 +0000 | [diff] [blame] | 588 | } |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 589 | } /* while (read line) */ |
Mark Whitley | 8f12243 | 2000-07-18 18:37:01 +0000 | [diff] [blame] | 590 | |
Mark Whitley | 35e59be | 2001-05-14 19:40:32 +0000 | [diff] [blame] | 591 | /* special-case file post-processing for options where we don't print line |
Mark Whitley | 1d9d411 | 2001-05-21 21:13:00 +0000 | [diff] [blame] | 592 | * matches, just filenames and possibly match counts */ |
Mark Whitley | 35e59be | 2001-05-14 19:40:32 +0000 | [diff] [blame] | 593 | |
Mark Whitley | 1d9d411 | 2001-05-21 21:13:00 +0000 | [diff] [blame] | 594 | /* grep -c: print [filename:]count, even if count is zero */ |
Bernhard Reutner-Fischer | aaf0e23 | 2005-09-23 15:38:49 +0000 | [diff] [blame] | 595 | if (PRINT_MATCH_COUNTS) { |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 596 | if (print_filename) |
Mark Whitley | 1d9d411 | 2001-05-21 21:13:00 +0000 | [diff] [blame] | 597 | printf("%s:", cur_file); |
Denis Vlasenko | 9275814 | 2006-10-03 19:56:34 +0000 | [diff] [blame] | 598 | printf("%d\n", nmatches); |
Mark Whitley | 35e59be | 2001-05-14 19:40:32 +0000 | [diff] [blame] | 599 | } |
Mark Whitley | 1d9d411 | 2001-05-21 21:13:00 +0000 | [diff] [blame] | 600 | |
Denys Vlasenko | a77f3ec | 2020-08-15 00:39:30 +0200 | [diff] [blame] | 601 | /* grep -L: "print filenames without matches" */ |
| 602 | if (option_mask32 & OPT_L) { |
Denis Vlasenko | 8d5aa87 | 2007-07-15 12:38:18 +0000 | [diff] [blame] | 603 | /* nmatches is zero, no need to check it: |
Denys Vlasenko | a77f3ec | 2020-08-15 00:39:30 +0200 | [diff] [blame] | 604 | * we return 0 early if -L and we detect a match |
| 605 | */ |
Eric Andersen | dec7f81 | 2004-05-26 11:47:55 +0000 | [diff] [blame] | 606 | puts(cur_file); |
Denys Vlasenko | a77f3ec | 2020-08-15 00:39:30 +0200 | [diff] [blame] | 607 | return 1; /* 1: we printed fname, hence it's "a match" */ |
Eric Andersen | dec7f81 | 2004-05-26 11:47:55 +0000 | [diff] [blame] | 608 | } |
| 609 | |
Denys Vlasenko | a77f3ec | 2020-08-15 00:39:30 +0200 | [diff] [blame] | 610 | return nmatches != 0; /* we return not a count, but a boolean */ |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 611 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 612 | |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 613 | #if ENABLE_FEATURE_CLEAN_UP |
| 614 | #define new_grep_list_data(p, m) add_grep_list_data(p, m) |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 615 | static char *add_grep_list_data(char *pattern, int flg_used_mem) |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 616 | #else |
| 617 | #define new_grep_list_data(p, m) add_grep_list_data(p) |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 618 | static char *add_grep_list_data(char *pattern) |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 619 | #endif |
| 620 | { |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 621 | grep_list_data_t *gl = xzalloc(sizeof(*gl)); |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 622 | gl->pattern = pattern; |
| 623 | #if ENABLE_FEATURE_CLEAN_UP |
Denys Vlasenko | 7373759 | 2016-09-17 20:58:22 +0200 | [diff] [blame] | 624 | gl->flg_mem_allocated_compiled = flg_used_mem; |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 625 | #else |
Denys Vlasenko | 7373759 | 2016-09-17 20:58:22 +0200 | [diff] [blame] | 626 | /*gl->flg_mem_allocated_compiled = 0;*/ |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 627 | #endif |
| 628 | return (char *)gl; |
| 629 | } |
| 630 | |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 631 | static void load_regexes_from_file(llist_t *fopt) |
Mark Whitley | fa43e54 | 2001-05-24 18:36:18 +0000 | [diff] [blame] | 632 | { |
Denis Vlasenko | 6c30db8 | 2006-09-29 21:04:12 +0000 | [diff] [blame] | 633 | while (fopt) { |
Lauri Kasanen | 7b46220 | 2011-08-28 12:39:04 +0200 | [diff] [blame] | 634 | char *line; |
| 635 | FILE *fp; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 636 | llist_t *cur = fopt; |
| 637 | char *ffile = cur->data; |
| 638 | |
| 639 | fopt = cur->link; |
| 640 | free(cur); |
Lauri Kasanen | 7b46220 | 2011-08-28 12:39:04 +0200 | [diff] [blame] | 641 | fp = xfopen_stdin(ffile); |
| 642 | while ((line = xmalloc_fgetline(fp)) != NULL) { |
Rob Landley | 8bb5078 | 2006-05-26 23:44:51 +0000 | [diff] [blame] | 643 | llist_add_to(&pattern_head, |
Denis Vlasenko | a05c071 | 2008-06-07 05:19:31 +0000 | [diff] [blame] | 644 | new_grep_list_data(line, ALLOCATED)); |
Eric Andersen | 31c27a9 | 2004-10-08 08:10:57 +0000 | [diff] [blame] | 645 | } |
Lauri Kasanen | 7b46220 | 2011-08-28 12:39:04 +0200 | [diff] [blame] | 646 | fclose_if_not_stdin(fp); |
Mark Whitley | fa43e54 | 2001-05-24 18:36:18 +0000 | [diff] [blame] | 647 | } |
| 648 | } |
Mark Whitley | fa43e54 | 2001-05-24 18:36:18 +0000 | [diff] [blame] | 649 | |
Sören Tempel | 42a8984 | 2020-03-30 11:02:08 +0200 | [diff] [blame] | 650 | static void load_pattern_list(llist_t **lst, char *pattern) |
| 651 | { |
| 652 | char *p; |
| 653 | while ((p = strsep(&pattern, "\n")) != NULL) |
| 654 | llist_add_to(lst, new_grep_list_data(p, 0)); |
| 655 | } |
| 656 | |
Denys Vlasenko | 689d065 | 2020-10-01 21:52:16 +0200 | [diff] [blame] | 657 | static int FAST_FUNC file_action_grep(struct recursive_state *state UNUSED_PARAM, |
| 658 | const char *filename, |
| 659 | struct stat *statbuf) |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 660 | { |
James Clarke | 6bcc2c0 | 2017-10-07 18:53:24 +0100 | [diff] [blame] | 661 | FILE *file; |
| 662 | |
| 663 | /* If we are given a link to a directory, we should bail out now, rather |
| 664 | * than trying to open the "file" and hoping getline gives us nothing, |
| 665 | * since that is not portable across operating systems (FreeBSD for |
| 666 | * example will return the raw directory contents). */ |
| 667 | if (S_ISLNK(statbuf->st_mode)) { |
| 668 | struct stat sb; |
| 669 | if (stat(filename, &sb) != 0) { |
| 670 | if (!SUPPRESS_ERR_MSGS) |
| 671 | bb_simple_perror_msg(filename); |
| 672 | return 0; |
| 673 | } |
| 674 | if (S_ISDIR(sb.st_mode)) |
| 675 | return 1; |
| 676 | } |
| 677 | |
| 678 | file = fopen_for_read(filename); |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 679 | if (file == NULL) { |
| 680 | if (!SUPPRESS_ERR_MSGS) |
Denis Vlasenko | 8e8200a | 2008-01-24 01:30:36 +0000 | [diff] [blame] | 681 | bb_simple_perror_msg(filename); |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 682 | open_errors = 1; |
| 683 | return 0; |
| 684 | } |
| 685 | cur_file = filename; |
Denys Vlasenko | 689d065 | 2020-10-01 21:52:16 +0200 | [diff] [blame] | 686 | *(int*)state->userData |= grep_file(file); |
Denis Vlasenko | bf39216 | 2006-10-15 18:38:01 +0000 | [diff] [blame] | 687 | fclose(file); |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 688 | return 1; |
| 689 | } |
| 690 | |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 691 | static int grep_dir(const char *dir) |
| 692 | { |
| 693 | int matched = 0; |
Denys Vlasenko | 3c3928f | 2020-10-01 20:27:28 +0200 | [diff] [blame] | 694 | recursive_action(dir, 0 |
| 695 | | ACTION_RECURSE |
| 696 | | ((option_mask32 & OPT_R) ? ACTION_FOLLOWLINKS : 0) |
| 697 | | ACTION_FOLLOWLINKS_L0 /* grep -r ... SYMLINK follows it */ |
| 698 | | ACTION_DEPTHFIRST |
| 699 | | 0, |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 700 | /* fileAction= */ file_action_grep, |
| 701 | /* dirAction= */ NULL, |
Denys Vlasenko | 689d065 | 2020-10-01 21:52:16 +0200 | [diff] [blame] | 702 | /* userData= */ &matched |
| 703 | ); |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 704 | return matched; |
| 705 | } |
| 706 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 707 | int grep_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denys Vlasenko | 2ec91ae | 2010-01-04 14:15:38 +0100 | [diff] [blame] | 708 | int grep_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 709 | { |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 710 | FILE *file; |
| 711 | int matched; |
Eric Andersen | 31c27a9 | 2004-10-08 08:10:57 +0000 | [diff] [blame] | 712 | llist_t *fopt = NULL; |
Denys Vlasenko | 73dfdda | 2016-03-28 22:12:09 +0200 | [diff] [blame] | 713 | #if ENABLE_FEATURE_GREP_CONTEXT |
| 714 | int Copt, opts; |
| 715 | #endif |
Denys Vlasenko | 94046d0 | 2016-06-20 00:36:21 +0200 | [diff] [blame] | 716 | INIT_G(); |
Denys Vlasenko | 73dfdda | 2016-03-28 22:12:09 +0200 | [diff] [blame] | 717 | |
| 718 | /* For grep, exitcode of 1 is "not found". Other errors are 2: */ |
| 719 | xfunc_error_retval = 2; |
Matt Kraai | 999623e | 2001-10-29 15:49:03 +0000 | [diff] [blame] | 720 | |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 721 | /* do normal option parsing */ |
Bernhard Reutner-Fischer | aaf0e23 | 2005-09-23 15:38:49 +0000 | [diff] [blame] | 722 | #if ENABLE_FEATURE_GREP_CONTEXT |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 723 | /* -H unsets -h; -C unsets -A,-B */ |
Denys Vlasenko | 8717b14 | 2018-07-13 20:40:40 +0200 | [diff] [blame] | 724 | opts = getopt32long(argv, "^" |
| 725 | OPTSTR_GREP |
| 726 | "\0" |
| 727 | "H-h:C-AB", |
| 728 | "color\0" Optional_argument "\xff", |
Denis Vlasenko | 1d42665 | 2008-03-17 09:09:09 +0000 | [diff] [blame] | 729 | &pattern_head, &fopt, &max_matches, |
Denys Vlasenko | 8717b14 | 2018-07-13 20:40:40 +0200 | [diff] [blame] | 730 | &lines_after, &lines_before, &Copt |
| 731 | , NULL |
| 732 | ); |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 733 | |
Denys Vlasenko | 0296fd3 | 2010-10-02 12:42:28 +0200 | [diff] [blame] | 734 | if (opts & OPT_C) { |
Denis Vlasenko | 2295b49 | 2006-10-22 11:42:51 +0000 | [diff] [blame] | 735 | /* -C unsets prev -A and -B, but following -A or -B |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 736 | * may override it */ |
Denys Vlasenko | 0296fd3 | 2010-10-02 12:42:28 +0200 | [diff] [blame] | 737 | if (!(opts & OPT_A)) /* not overridden */ |
Denis Vlasenko | 1d42665 | 2008-03-17 09:09:09 +0000 | [diff] [blame] | 738 | lines_after = Copt; |
Denys Vlasenko | 0296fd3 | 2010-10-02 12:42:28 +0200 | [diff] [blame] | 739 | if (!(opts & OPT_B)) /* not overridden */ |
Denis Vlasenko | 1d42665 | 2008-03-17 09:09:09 +0000 | [diff] [blame] | 740 | lines_before = Copt; |
Bernhard Reutner-Fischer | aaf0e23 | 2005-09-23 15:38:49 +0000 | [diff] [blame] | 741 | } |
Denis Vlasenko | 2295b49 | 2006-10-22 11:42:51 +0000 | [diff] [blame] | 742 | /* sanity checks */ |
Denys Vlasenko | 0296fd3 | 2010-10-02 12:42:28 +0200 | [diff] [blame] | 743 | if (opts & (OPT_c|OPT_q|OPT_l|OPT_L)) { |
Denis Vlasenko | 385304d | 2007-02-25 02:38:20 +0000 | [diff] [blame] | 744 | option_mask32 &= ~OPT_n; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 745 | lines_before = 0; |
| 746 | lines_after = 0; |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 747 | } else if (lines_before > 0) { |
Denys Vlasenko | 0296fd3 | 2010-10-02 12:42:28 +0200 | [diff] [blame] | 748 | if (lines_before > INT_MAX / sizeof(long long)) |
| 749 | lines_before = INT_MAX / sizeof(long long); |
| 750 | /* overflow in (lines_before * sizeof(x)) is prevented (above) */ |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 751 | before_buf = xzalloc(lines_before * sizeof(before_buf[0])); |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 752 | IF_EXTRA_COMPAT(before_buf_size = xzalloc(lines_before * sizeof(before_buf_size[0]));) |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 753 | } |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 754 | #else |
| 755 | /* with auto sanity checks */ |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 756 | getopt32(argv, "^" OPTSTR_GREP "\0" "H-h:c-n:q-n:l-n:", // why trailing ":"? |
Denis Vlasenko | 1d42665 | 2008-03-17 09:09:09 +0000 | [diff] [blame] | 757 | &pattern_head, &fopt, &max_matches); |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 758 | #endif |
Denis Vlasenko | 385304d | 2007-02-25 02:38:20 +0000 | [diff] [blame] | 759 | invert_search = ((option_mask32 & OPT_v) != 0); /* 0 | 1 */ |
Bernhard Reutner-Fischer | aaf0e23 | 2005-09-23 15:38:49 +0000 | [diff] [blame] | 760 | |
Sören Tempel | 42a8984 | 2020-03-30 11:02:08 +0200 | [diff] [blame] | 761 | { /* convert char **argv to pattern_list */ |
| 762 | llist_t *cur, *new = NULL; |
Denis Vlasenko | 6c30db8 | 2006-09-29 21:04:12 +0000 | [diff] [blame] | 763 | for (cur = pattern_head; cur; cur = cur->link) |
Sören Tempel | 42a8984 | 2020-03-30 11:02:08 +0200 | [diff] [blame] | 764 | load_pattern_list(&new, cur->data); |
| 765 | llist_free(pattern_head, NULL); |
| 766 | pattern_head = new; |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 767 | } |
Lauri Kasanen | 7b46220 | 2011-08-28 12:39:04 +0200 | [diff] [blame] | 768 | if (option_mask32 & OPT_f) { |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 769 | load_regexes_from_file(fopt); |
Lauri Kasanen | 7b46220 | 2011-08-28 12:39:04 +0200 | [diff] [blame] | 770 | if (!pattern_head) { /* -f EMPTY_FILE? */ |
Gray Wolf | c3295d2 | 2020-04-29 15:49:17 +0200 | [diff] [blame] | 771 | /* GNU grep treats it as "nothing matches" except when -x */ |
| 772 | const char *data = (option_mask32 & OPT_x) ? ".*" : ""; |
| 773 | llist_add_to(&pattern_head, new_grep_list_data((char*)data, 0)); |
Lauri Kasanen | 7b46220 | 2011-08-28 12:39:04 +0200 | [diff] [blame] | 774 | invert_search ^= 1; |
| 775 | } |
| 776 | } |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 777 | |
Denys Vlasenko | 1924e99 | 2016-11-14 05:09:48 +0100 | [diff] [blame] | 778 | if (ENABLE_FGREP && applet_name[0] == 'f') |
Denis Vlasenko | 385304d | 2007-02-25 02:38:20 +0000 | [diff] [blame] | 779 | option_mask32 |= OPT_F; |
Mike Frysinger | 15ca586 | 2005-07-31 22:41:05 +0000 | [diff] [blame] | 780 | |
Denis Vlasenko | c110b7d | 2008-09-19 21:29:21 +0000 | [diff] [blame] | 781 | #if !ENABLE_EXTRA_COMPAT |
James Hogan | 5fc0585 | 2013-05-07 12:32:21 +0100 | [diff] [blame] | 782 | if (!(option_mask32 & (OPT_o | OPT_w | OPT_x))) |
Denis Vlasenko | 5193753 | 2006-09-29 20:58:53 +0000 | [diff] [blame] | 783 | reflags = REG_NOSUB; |
Denis Vlasenko | c110b7d | 2008-09-19 21:29:21 +0000 | [diff] [blame] | 784 | #endif |
Denis Vlasenko | 5193753 | 2006-09-29 20:58:53 +0000 | [diff] [blame] | 785 | |
Denys Vlasenko | 1924e99 | 2016-11-14 05:09:48 +0100 | [diff] [blame] | 786 | if ((ENABLE_EGREP && applet_name[0] == 'e') |
| 787 | || (option_mask32 & OPT_E) |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 788 | ) { |
Denis Vlasenko | 5193753 | 2006-09-29 20:58:53 +0000 | [diff] [blame] | 789 | reflags |= REG_EXTENDED; |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 790 | } |
Denis Vlasenko | 9ac706b | 2008-09-19 21:32:51 +0000 | [diff] [blame] | 791 | #if ENABLE_EXTRA_COMPAT |
| 792 | else { |
| 793 | reflags = RE_SYNTAX_GREP; |
| 794 | } |
| 795 | #endif |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 796 | |
Denis Vlasenko | c110b7d | 2008-09-19 21:29:21 +0000 | [diff] [blame] | 797 | if (option_mask32 & OPT_i) { |
| 798 | #if !ENABLE_EXTRA_COMPAT |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 799 | reflags |= REG_ICASE; |
Denis Vlasenko | c110b7d | 2008-09-19 21:29:21 +0000 | [diff] [blame] | 800 | #else |
| 801 | int i; |
| 802 | case_fold = xmalloc(256); |
| 803 | for (i = 0; i < 256; i++) |
| 804 | case_fold[i] = (unsigned char)i; |
| 805 | for (i = 'a'; i <= 'z'; i++) |
| 806 | case_fold[i] = (unsigned char)(i - ('a' - 'A')); |
| 807 | #endif |
| 808 | } |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 809 | |
| 810 | argv += optind; |
Eric Andersen | 053b146 | 2000-06-13 06:24:53 +0000 | [diff] [blame] | 811 | |
Denis Vlasenko | 1d42665 | 2008-03-17 09:09:09 +0000 | [diff] [blame] | 812 | /* if we didn't get a pattern from -e and no command file was specified, |
| 813 | * first parameter should be the pattern. no pattern, no worky */ |
Glenn L McGrath | 26df70a | 2003-04-27 01:50:57 +0000 | [diff] [blame] | 814 | if (pattern_head == NULL) { |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 815 | if (*argv == NULL) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 816 | bb_show_usage(); |
Sören Tempel | 42a8984 | 2020-03-30 11:02:08 +0200 | [diff] [blame] | 817 | load_pattern_list(&pattern_head, *argv++); |
Mark Whitley | fa43e54 | 2001-05-24 18:36:18 +0000 | [diff] [blame] | 818 | } |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 819 | |
Denis Vlasenko | a05c071 | 2008-06-07 05:19:31 +0000 | [diff] [blame] | 820 | /* argv[0..(argc-1)] should be names of file to grep through. If |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 821 | * there is more than one file to grep, we will print the filenames. */ |
Denys Vlasenko | 2ec91ae | 2010-01-04 14:15:38 +0100 | [diff] [blame] | 822 | if (argv[0] && argv[1]) |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 823 | print_filename = 1; |
Denis Vlasenko | 2295b49 | 2006-10-22 11:42:51 +0000 | [diff] [blame] | 824 | /* -H / -h of course override */ |
Denis Vlasenko | 385304d | 2007-02-25 02:38:20 +0000 | [diff] [blame] | 825 | if (option_mask32 & OPT_H) |
Denis Vlasenko | 2295b49 | 2006-10-22 11:42:51 +0000 | [diff] [blame] | 826 | print_filename = 1; |
Denis Vlasenko | 385304d | 2007-02-25 02:38:20 +0000 | [diff] [blame] | 827 | if (option_mask32 & OPT_h) |
Denis Vlasenko | 2295b49 | 2006-10-22 11:42:51 +0000 | [diff] [blame] | 828 | print_filename = 0; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 829 | |
Mark Whitley | 2e1148b | 2000-06-28 22:59:30 +0000 | [diff] [blame] | 830 | /* If no files were specified, or '-' was specified, take input from |
| 831 | * stdin. Otherwise, we grep through all the files specified. */ |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 832 | matched = 0; |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 833 | do { |
Denys Vlasenko | 2ec91ae | 2010-01-04 14:15:38 +0100 | [diff] [blame] | 834 | cur_file = *argv; |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 835 | file = stdin; |
Denis Vlasenko | 1d42665 | 2008-03-17 09:09:09 +0000 | [diff] [blame] | 836 | if (!cur_file || LONE_DASH(cur_file)) { |
Bernhard Reutner-Fischer | aaf0e23 | 2005-09-23 15:38:49 +0000 | [diff] [blame] | 837 | cur_file = "(standard input)"; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 838 | } else { |
Tomi Leppanen | 1b76ffa | 2019-11-25 17:59:52 +0200 | [diff] [blame] | 839 | if (option_mask32 & (OPT_r|OPT_R)) { |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 840 | struct stat st; |
| 841 | if (stat(cur_file, &st) == 0 && S_ISDIR(st.st_mode)) { |
Denis Vlasenko | 385304d | 2007-02-25 02:38:20 +0000 | [diff] [blame] | 842 | if (!(option_mask32 & OPT_h)) |
Denis Vlasenko | 3544ae6 | 2006-10-14 14:51:59 +0000 | [diff] [blame] | 843 | print_filename = 1; |
Denys Vlasenko | a77f3ec | 2020-08-15 00:39:30 +0200 | [diff] [blame] | 844 | matched |= grep_dir(cur_file); |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 845 | goto grep_done; |
| 846 | } |
Mark Whitley | 2ef880b | 2000-07-18 21:02:06 +0000 | [diff] [blame] | 847 | } |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 848 | /* else: fopen(dir) will succeed, but reading won't */ |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 849 | file = fopen_for_read(cur_file); |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 850 | if (file == NULL) { |
| 851 | if (!SUPPRESS_ERR_MSGS) |
Denis Vlasenko | 0c97c9d | 2007-10-01 11:58:38 +0000 | [diff] [blame] | 852 | bb_simple_perror_msg(cur_file); |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 853 | open_errors = 1; |
| 854 | continue; |
| 855 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 856 | } |
Denys Vlasenko | a77f3ec | 2020-08-15 00:39:30 +0200 | [diff] [blame] | 857 | matched |= grep_file(file); |
Denis Vlasenko | ddec5af | 2006-10-26 23:25:17 +0000 | [diff] [blame] | 858 | fclose_if_not_stdin(file); |
Denis Vlasenko | 4652daa | 2007-07-15 12:39:08 +0000 | [diff] [blame] | 859 | grep_done: ; |
Denys Vlasenko | 2ec91ae | 2010-01-04 14:15:38 +0100 | [diff] [blame] | 860 | } while (*argv && *++argv); |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 861 | |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 862 | /* destroy all the elements in the pattern list */ |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 863 | if (ENABLE_FEATURE_CLEAN_UP) { |
| 864 | while (pattern_head) { |
| 865 | llist_t *pattern_head_ptr = pattern_head; |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 866 | grep_list_data_t *gl = (grep_list_data_t *)pattern_head_ptr->data; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 867 | |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 868 | pattern_head = pattern_head->link; |
Denys Vlasenko | 7373759 | 2016-09-17 20:58:22 +0200 | [diff] [blame] | 869 | if (gl->flg_mem_allocated_compiled & ALLOCATED) |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 870 | free(gl->pattern); |
Denys Vlasenko | 7373759 | 2016-09-17 20:58:22 +0200 | [diff] [blame] | 871 | if (gl->flg_mem_allocated_compiled & COMPILED) |
Denis Vlasenko | 3fd15e1 | 2008-08-09 16:15:14 +0000 | [diff] [blame] | 872 | regfree(&gl->compiled_regex); |
Mike Frysinger | 3a62a73 | 2007-04-12 18:29:27 +0000 | [diff] [blame] | 873 | free(gl); |
"Vladimir N. Oleynik" | 716bbe9 | 2006-02-28 10:10:19 +0000 | [diff] [blame] | 874 | free(pattern_head_ptr); |
| 875 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 876 | } |
Bernhard Reutner-Fischer | aaf0e23 | 2005-09-23 15:38:49 +0000 | [diff] [blame] | 877 | /* 0 = success, 1 = failed, 2 = error */ |
Denis Vlasenko | 3a6755f | 2006-10-14 14:24:30 +0000 | [diff] [blame] | 878 | if (open_errors) |
"Vladimir N. Oleynik" | bf44974 | 2005-09-23 13:50:24 +0000 | [diff] [blame] | 879 | return 2; |
Denis Vlasenko | 04ea11b | 2007-09-10 12:18:32 +0000 | [diff] [blame] | 880 | return !matched; /* invert return value: 0 = success, 1 = failed */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 881 | } |