2005-09-23 21:08:49 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-05 21:54:54 +05:30
|
|
|
/*
|
2000-06-29 03:30:26 +05:30
|
|
|
* Mini grep implementation for busybox using libc regex.
|
1999-10-21 03:38:37 +05:30
|
|
|
*
|
2001-10-24 10:30:29 +05:30
|
|
|
* Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
|
1999-10-19 11:32:44 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
1999-10-05 21:54:54 +05:30
|
|
|
*/
|
2008-03-17 14:39:09 +05:30
|
|
|
/* BB_AUDIT SUSv3 defects - unsupported option -x "match whole line only". */
|
2005-09-23 21:08:49 +05:30
|
|
|
/* BB_AUDIT GNU defects - always acts as -a. */
|
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/grep.html */
|
2003-06-20 14:31:58 +05:30
|
|
|
/*
|
2006-02-28 15:40:19 +05:30
|
|
|
* 2004,2006 (C) Vladimir Oleynik <dzo@simtreas.ru> -
|
2004-05-26 15:16:41 +05:30
|
|
|
* correction "-e pattern1 -e pattern2" logic and more optimizations.
|
2006-02-28 15:40:19 +05:30
|
|
|
* precompiled regex
|
2010-06-15 19:10:16 +05:30
|
|
|
*
|
2006-09-30 02:28:53 +05:30
|
|
|
* (C) 2006 Jac Goudsmit added -o option
|
|
|
|
*/
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2011-01-18 18:28:01 +05:30
|
|
|
//applet:IF_GREP(APPLET(grep, BB_DIR_BIN, BB_SUID_DROP))
|
|
|
|
//applet:IF_FEATURE_GREP_EGREP_ALIAS(APPLET_ODDNAME(egrep, grep, BB_DIR_BIN, BB_SUID_DROP, egrep))
|
|
|
|
//applet:IF_FEATURE_GREP_FGREP_ALIAS(APPLET_ODDNAME(fgrep, grep, BB_DIR_BIN, BB_SUID_DROP, fgrep))
|
2010-06-15 19:10:16 +05:30
|
|
|
|
2010-05-09 07:52:48 +05:30
|
|
|
//kbuild:lib-$(CONFIG_GREP) += grep.o
|
2010-06-15 19:10:16 +05:30
|
|
|
|
2010-05-09 07:52:48 +05:30
|
|
|
//config:config GREP
|
|
|
|
//config: bool "grep"
|
2010-06-06 07:44:28 +05:30
|
|
|
//config: default y
|
2010-05-09 07:52:48 +05:30
|
|
|
//config: help
|
|
|
|
//config: grep is used to search files for a specified pattern.
|
|
|
|
//config:
|
|
|
|
//config:config FEATURE_GREP_EGREP_ALIAS
|
|
|
|
//config: bool "Enable extended regular expressions (egrep & grep -E)"
|
|
|
|
//config: default y
|
|
|
|
//config: depends on GREP
|
|
|
|
//config: help
|
|
|
|
//config: Enabled support for extended regular expressions. Extended
|
|
|
|
//config: regular expressions allow for alternation (foo|bar), grouping,
|
|
|
|
//config: and various repetition operators.
|
|
|
|
//config:
|
|
|
|
//config:config FEATURE_GREP_FGREP_ALIAS
|
|
|
|
//config: bool "Alias fgrep to grep -F"
|
|
|
|
//config: default y
|
|
|
|
//config: depends on GREP
|
|
|
|
//config: help
|
|
|
|
//config: fgrep sees the search pattern as a normal string rather than
|
|
|
|
//config: regular expressions.
|
|
|
|
//config: grep -F always works, this just creates the fgrep alias.
|
|
|
|
//config:
|
|
|
|
//config:config FEATURE_GREP_CONTEXT
|
|
|
|
//config: bool "Enable before and after context flags (-A, -B and -C)"
|
|
|
|
//config: default y
|
|
|
|
//config: depends on GREP
|
|
|
|
//config: help
|
|
|
|
//config: Print the specified number of leading (-B) and/or trailing (-A)
|
|
|
|
//config: context surrounding our matching lines.
|
|
|
|
//config: Print the specified number of context lines (-C).
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2016-04-21 19:56:30 +05:30
|
|
|
#include "common_bufsiz.h"
|
2005-09-14 22:29:11 +05:30
|
|
|
#include "xregex.h"
|
2000-06-29 03:30:26 +05:30
|
|
|
|
2010-06-15 19:10:16 +05:30
|
|
|
|
2000-06-29 03:30:26 +05:30
|
|
|
/* options */
|
2010-06-15 19:10:16 +05:30
|
|
|
//usage:#define grep_trivial_usage
|
|
|
|
//usage: "[-HhnlLoqvsriw"
|
|
|
|
//usage: "F"
|
|
|
|
//usage: IF_FEATURE_GREP_EGREP_ALIAS("E")
|
|
|
|
//usage: IF_EXTRA_COMPAT("z")
|
|
|
|
//usage: "] [-m N] "
|
|
|
|
//usage: IF_FEATURE_GREP_CONTEXT("[-A/B/C N] ")
|
|
|
|
//usage: "PATTERN/-e PATTERN.../-f FILE [FILE]..."
|
|
|
|
//usage:#define grep_full_usage "\n\n"
|
|
|
|
//usage: "Search for PATTERN in FILEs (or stdin)\n"
|
|
|
|
//usage: "\n -H Add 'filename:' prefix"
|
|
|
|
//usage: "\n -h Do not add 'filename:' prefix"
|
|
|
|
//usage: "\n -n Add 'line_no:' prefix"
|
|
|
|
//usage: "\n -l Show only names of files that match"
|
|
|
|
//usage: "\n -L Show only names of files that don't match"
|
|
|
|
//usage: "\n -c Show only count of matching lines"
|
|
|
|
//usage: "\n -o Show only the matching part of line"
|
|
|
|
//usage: "\n -q Quiet. Return 0 if PATTERN is found, 1 otherwise"
|
|
|
|
//usage: "\n -v Select non-matching lines"
|
|
|
|
//usage: "\n -s Suppress open and read errors"
|
|
|
|
//usage: "\n -r Recurse"
|
|
|
|
//usage: "\n -i Ignore case"
|
|
|
|
//usage: "\n -w Match whole words only"
|
2012-02-23 19:50:22 +05:30
|
|
|
//usage: "\n -x Match whole lines only"
|
2010-06-15 19:10:16 +05:30
|
|
|
//usage: "\n -F PATTERN is a literal (not regexp)"
|
|
|
|
//usage: IF_FEATURE_GREP_EGREP_ALIAS(
|
|
|
|
//usage: "\n -E PATTERN is an extended regexp"
|
|
|
|
//usage: )
|
|
|
|
//usage: IF_EXTRA_COMPAT(
|
|
|
|
//usage: "\n -z Input is NUL terminated"
|
|
|
|
//usage: )
|
|
|
|
//usage: "\n -m N Match up to N times per file"
|
|
|
|
//usage: IF_FEATURE_GREP_CONTEXT(
|
|
|
|
//usage: "\n -A N Print N lines of trailing context"
|
|
|
|
//usage: "\n -B N Print N lines of leading context"
|
|
|
|
//usage: "\n -C N Same as '-A N -B N'"
|
|
|
|
//usage: )
|
|
|
|
//usage: "\n -e PTRN Pattern to match"
|
|
|
|
//usage: "\n -f FILE Read pattern from file"
|
|
|
|
//usage:
|
|
|
|
//usage:#define grep_example_usage
|
|
|
|
//usage: "$ grep root /etc/passwd\n"
|
|
|
|
//usage: "root:x:0:0:root:/root:/bin/bash\n"
|
|
|
|
//usage: "$ grep ^[rR]oo. /etc/passwd\n"
|
|
|
|
//usage: "root:x:0:0:root:/root:/bin/bash\n"
|
|
|
|
//usage:
|
|
|
|
//usage:#define egrep_trivial_usage NOUSAGE_STR
|
|
|
|
//usage:#define egrep_full_usage ""
|
|
|
|
//usage:#define fgrep_trivial_usage NOUSAGE_STR
|
|
|
|
//usage:#define fgrep_full_usage ""
|
|
|
|
|
2007-02-25 08:08:20 +05:30
|
|
|
#define OPTSTR_GREP \
|
2016-07-07 01:28:02 +05:30
|
|
|
"lnqvscFiHhe:*f:*Lorm:+wx" \
|
|
|
|
IF_FEATURE_GREP_CONTEXT("A:+B:+C:+") \
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_FEATURE_GREP_EGREP_ALIAS("E") \
|
|
|
|
IF_EXTRA_COMPAT("z") \
|
2007-02-25 08:08:54 +05:30
|
|
|
"aI"
|
|
|
|
/* ignored: -a "assume all files to be text" */
|
|
|
|
/* ignored: -I "assume binary files have no matches" */
|
2007-02-25 08:08:20 +05:30
|
|
|
enum {
|
2007-07-15 18:09:08 +05:30
|
|
|
OPTBIT_l, /* list matched file names only */
|
|
|
|
OPTBIT_n, /* print line# */
|
2008-05-19 14:59:47 +05:30
|
|
|
OPTBIT_q, /* quiet - exit(EXIT_SUCCESS) of first match */
|
2007-07-15 18:09:08 +05:30
|
|
|
OPTBIT_v, /* invert the match, to select non-matching lines */
|
|
|
|
OPTBIT_s, /* suppress errors about file open errors */
|
|
|
|
OPTBIT_c, /* count matches per file (suppresses normal output) */
|
|
|
|
OPTBIT_F, /* literal match */
|
|
|
|
OPTBIT_i, /* case-insensitive */
|
|
|
|
OPTBIT_H, /* force filename display */
|
|
|
|
OPTBIT_h, /* inhibit filename display */
|
|
|
|
OPTBIT_e, /* -e PATTERN */
|
|
|
|
OPTBIT_f, /* -f FILE_WITH_PATTERNS */
|
|
|
|
OPTBIT_L, /* list unmatched file names only */
|
|
|
|
OPTBIT_o, /* show only matching parts of lines */
|
|
|
|
OPTBIT_r, /* recurse dirs */
|
|
|
|
OPTBIT_m, /* -m MAX_MATCHES */
|
2010-04-26 12:15:44 +05:30
|
|
|
OPTBIT_w, /* -w whole word match */
|
2012-02-23 19:50:22 +05:30
|
|
|
OPTBIT_x, /* -x whole line match */
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_FEATURE_GREP_CONTEXT( OPTBIT_A ,) /* -A NUM: after-match context */
|
|
|
|
IF_FEATURE_GREP_CONTEXT( OPTBIT_B ,) /* -B NUM: before-match context */
|
|
|
|
IF_FEATURE_GREP_CONTEXT( OPTBIT_C ,) /* -C NUM: -A and -B combined */
|
|
|
|
IF_FEATURE_GREP_EGREP_ALIAS(OPTBIT_E ,) /* extended regexp */
|
|
|
|
IF_EXTRA_COMPAT( OPTBIT_z ,) /* input is NUL terminated */
|
2007-02-25 08:08:20 +05:30
|
|
|
OPT_l = 1 << OPTBIT_l,
|
|
|
|
OPT_n = 1 << OPTBIT_n,
|
|
|
|
OPT_q = 1 << OPTBIT_q,
|
|
|
|
OPT_v = 1 << OPTBIT_v,
|
|
|
|
OPT_s = 1 << OPTBIT_s,
|
|
|
|
OPT_c = 1 << OPTBIT_c,
|
|
|
|
OPT_F = 1 << OPTBIT_F,
|
|
|
|
OPT_i = 1 << OPTBIT_i,
|
|
|
|
OPT_H = 1 << OPTBIT_H,
|
|
|
|
OPT_h = 1 << OPTBIT_h,
|
|
|
|
OPT_e = 1 << OPTBIT_e,
|
|
|
|
OPT_f = 1 << OPTBIT_f,
|
|
|
|
OPT_L = 1 << OPTBIT_L,
|
|
|
|
OPT_o = 1 << OPTBIT_o,
|
|
|
|
OPT_r = 1 << OPTBIT_r,
|
2007-07-15 18:09:08 +05:30
|
|
|
OPT_m = 1 << OPTBIT_m,
|
2010-04-26 12:15:44 +05:30
|
|
|
OPT_w = 1 << OPTBIT_w,
|
2012-02-23 19:50:22 +05:30
|
|
|
OPT_x = 1 << OPTBIT_x,
|
2009-04-21 16:39:40 +05:30
|
|
|
OPT_A = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_A)) + 0,
|
|
|
|
OPT_B = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_B)) + 0,
|
|
|
|
OPT_C = IF_FEATURE_GREP_CONTEXT( (1 << OPTBIT_C)) + 0,
|
|
|
|
OPT_E = IF_FEATURE_GREP_EGREP_ALIAS((1 << OPTBIT_E)) + 0,
|
|
|
|
OPT_z = IF_EXTRA_COMPAT( (1 << OPTBIT_z)) + 0,
|
2007-02-25 08:08:20 +05:30
|
|
|
};
|
|
|
|
|
2007-06-08 21:11:27 +05:30
|
|
|
#define PRINT_FILES_WITH_MATCHES (option_mask32 & OPT_l)
|
|
|
|
#define PRINT_LINE_NUM (option_mask32 & OPT_n)
|
|
|
|
#define BE_QUIET (option_mask32 & OPT_q)
|
|
|
|
#define SUPPRESS_ERR_MSGS (option_mask32 & OPT_s)
|
|
|
|
#define PRINT_MATCH_COUNTS (option_mask32 & OPT_c)
|
|
|
|
#define FGREP_FLAG (option_mask32 & OPT_F)
|
2007-02-25 08:08:20 +05:30
|
|
|
#define PRINT_FILES_WITHOUT_MATCHES (option_mask32 & OPT_L)
|
2009-03-21 03:47:13 +05:30
|
|
|
#define NUL_DELIMITED (option_mask32 & OPT_z)
|
2003-06-20 14:31:58 +05:30
|
|
|
|
2007-09-10 17:48:32 +05:30
|
|
|
struct globals {
|
|
|
|
int max_matches;
|
2008-09-20 02:59:21 +05:30
|
|
|
#if !ENABLE_EXTRA_COMPAT
|
2007-09-10 17:48:32 +05:30
|
|
|
int reflags;
|
2008-09-20 02:59:21 +05:30
|
|
|
#else
|
|
|
|
RE_TRANSLATE_TYPE case_fold; /* RE_TRANSLATE_TYPE is [[un]signed] char* */
|
|
|
|
#endif
|
2007-09-10 17:48:32 +05:30
|
|
|
smalluint invert_search;
|
|
|
|
smalluint print_filename;
|
|
|
|
smalluint open_errors;
|
2005-09-23 21:08:49 +05:30
|
|
|
#if ENABLE_FEATURE_GREP_CONTEXT
|
2007-09-10 17:48:32 +05:30
|
|
|
smalluint did_print_line;
|
|
|
|
int lines_before;
|
|
|
|
int lines_after;
|
|
|
|
char **before_buf;
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_EXTRA_COMPAT(size_t *before_buf_size;)
|
2007-09-10 17:48:32 +05:30
|
|
|
int last_line_printed;
|
|
|
|
#endif
|
|
|
|
/* globals used internally */
|
|
|
|
llist_t *pattern_head; /* growable list of patterns to match */
|
|
|
|
const char *cur_file; /* the current file we are reading */
|
2010-02-04 19:30:15 +05:30
|
|
|
} FIX_ALIASING;
|
2016-04-21 19:56:30 +05:30
|
|
|
#define G (*(struct globals*)bb_common_bufsiz1)
|
2008-06-25 15:23:17 +05:30
|
|
|
#define INIT_G() do { \
|
2016-04-21 21:48:48 +05:30
|
|
|
setup_common_bufsiz(); \
|
2015-10-13 20:47:34 +05:30
|
|
|
BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \
|
2008-06-25 15:23:17 +05:30
|
|
|
} while (0)
|
2007-09-10 17:48:32 +05:30
|
|
|
#define max_matches (G.max_matches )
|
2008-09-20 02:59:21 +05:30
|
|
|
#if !ENABLE_EXTRA_COMPAT
|
2009-07-29 04:50:09 +05:30
|
|
|
# define reflags (G.reflags )
|
2008-09-20 02:59:21 +05:30
|
|
|
#else
|
2009-07-29 04:50:09 +05:30
|
|
|
# define case_fold (G.case_fold )
|
2008-09-20 02:59:21 +05:30
|
|
|
/* http://www.delorie.com/gnu/docs/regex/regex_46.html */
|
2009-07-29 04:50:09 +05:30
|
|
|
# define reflags re_syntax_options
|
|
|
|
# undef REG_NOSUB
|
|
|
|
# undef REG_EXTENDED
|
|
|
|
# undef REG_ICASE
|
|
|
|
# define REG_NOSUB bug:is:here /* should not be used */
|
|
|
|
/* Just RE_SYNTAX_EGREP is not enough, need to enable {n[,[m]]} too */
|
|
|
|
# define REG_EXTENDED (RE_SYNTAX_EGREP | RE_INTERVALS | RE_NO_BK_BRACES)
|
|
|
|
# define REG_ICASE bug:is:here /* should not be used */
|
2008-09-20 02:59:21 +05:30
|
|
|
#endif
|
2007-09-10 17:48:32 +05:30
|
|
|
#define invert_search (G.invert_search )
|
|
|
|
#define print_filename (G.print_filename )
|
|
|
|
#define open_errors (G.open_errors )
|
|
|
|
#define did_print_line (G.did_print_line )
|
|
|
|
#define lines_before (G.lines_before )
|
|
|
|
#define lines_after (G.lines_after )
|
|
|
|
#define before_buf (G.before_buf )
|
2008-08-09 21:45:14 +05:30
|
|
|
#define before_buf_size (G.before_buf_size )
|
2007-09-10 17:48:32 +05:30
|
|
|
#define last_line_printed (G.last_line_printed )
|
|
|
|
#define pattern_head (G.pattern_head )
|
|
|
|
#define cur_file (G.cur_file )
|
|
|
|
|
2000-06-29 03:30:26 +05:30
|
|
|
|
2007-02-25 08:07:49 +05:30
|
|
|
typedef struct grep_list_data_t {
|
2006-02-28 15:40:19 +05:30
|
|
|
char *pattern;
|
2008-08-09 21:45:14 +05:30
|
|
|
/* for GNU regex, matched_range must be persistent across grep_file() calls */
|
|
|
|
#if !ENABLE_EXTRA_COMPAT
|
|
|
|
regex_t compiled_regex;
|
|
|
|
regmatch_t matched_range;
|
|
|
|
#else
|
|
|
|
struct re_pattern_buffer compiled_regex;
|
|
|
|
struct re_registers matched_range;
|
|
|
|
#endif
|
2008-06-07 10:49:31 +05:30
|
|
|
#define ALLOCATED 1
|
2006-02-28 15:40:19 +05:30
|
|
|
#define COMPILED 2
|
2016-09-18 00:28:22 +05:30
|
|
|
int flg_mem_allocated_compiled;
|
2006-02-28 15:40:19 +05:30
|
|
|
} grep_list_data_t;
|
2001-05-25 00:06:18 +05:30
|
|
|
|
2008-08-09 21:45:14 +05:30
|
|
|
#if !ENABLE_EXTRA_COMPAT
|
|
|
|
#define print_line(line, line_len, linenum, decoration) \
|
|
|
|
print_line(line, linenum, decoration)
|
|
|
|
#endif
|
|
|
|
static void print_line(const char *line, size_t line_len, int linenum, char decoration)
|
2001-02-09 06:11:10 +05:30
|
|
|
{
|
2005-09-23 21:08:49 +05:30
|
|
|
#if ENABLE_FEATURE_GREP_CONTEXT
|
2007-07-15 18:08:18 +05:30
|
|
|
/* Happens when we go to next file, immediately hit match
|
|
|
|
* and try to print prev context... from prev file! Don't do it */
|
|
|
|
if (linenum < 1)
|
|
|
|
return;
|
2004-04-14 23:21:38 +05:30
|
|
|
/* possibly print the little '--' separator */
|
2008-08-09 21:45:14 +05:30
|
|
|
if ((lines_before || lines_after) && did_print_line
|
|
|
|
&& last_line_printed != linenum - 1
|
|
|
|
) {
|
2001-02-09 06:11:10 +05:30
|
|
|
puts("--");
|
|
|
|
}
|
2007-07-15 18:08:18 +05:30
|
|
|
/* guard against printing "--" before first line of first file */
|
|
|
|
did_print_line = 1;
|
2001-02-09 06:11:10 +05:30
|
|
|
last_line_printed = linenum;
|
|
|
|
#endif
|
2006-10-14 19:54:30 +05:30
|
|
|
if (print_filename)
|
2001-02-09 06:11:10 +05:30
|
|
|
printf("%s%c", cur_file, decoration);
|
2005-09-23 21:08:49 +05:30
|
|
|
if (PRINT_LINE_NUM)
|
2001-02-09 06:11:10 +05:30
|
|
|
printf("%i%c", linenum, decoration);
|
2006-09-30 02:28:53 +05:30
|
|
|
/* Emulate weird GNU grep behavior with -ov */
|
2008-08-09 21:45:14 +05:30
|
|
|
if ((option_mask32 & (OPT_v|OPT_o)) != (OPT_v|OPT_o)) {
|
|
|
|
#if !ENABLE_EXTRA_COMPAT
|
2006-09-30 02:28:53 +05:30
|
|
|
puts(line);
|
2008-08-09 21:45:14 +05:30
|
|
|
#else
|
|
|
|
fwrite(line, 1, line_len, stdout);
|
2009-03-21 03:47:13 +05:30
|
|
|
putchar(NUL_DELIMITED ? '\0' : '\n');
|
2008-08-09 21:45:14 +05:30
|
|
|
#endif
|
|
|
|
}
|
2001-02-09 06:11:10 +05:30
|
|
|
}
|
1999-11-08 22:30:52 +05:30
|
|
|
|
2008-08-09 21:45:14 +05:30
|
|
|
#if ENABLE_EXTRA_COMPAT
|
|
|
|
/* Unlike getline, this one removes trailing '\n' */
|
|
|
|
static ssize_t FAST_FUNC bb_getline(char **line_ptr, size_t *line_alloc_len, FILE *file)
|
2000-06-29 03:30:26 +05:30
|
|
|
{
|
2008-08-09 21:45:14 +05:30
|
|
|
ssize_t res_sz;
|
2003-06-20 14:31:58 +05:30
|
|
|
char *line;
|
2009-03-21 03:47:13 +05:30
|
|
|
int delim = (NUL_DELIMITED ? '\0' : '\n');
|
2008-08-09 21:45:14 +05:30
|
|
|
|
2009-03-21 03:47:13 +05:30
|
|
|
res_sz = getdelim(line_ptr, line_alloc_len, delim, file);
|
2008-08-09 21:45:14 +05:30
|
|
|
line = *line_ptr;
|
|
|
|
|
|
|
|
if (res_sz > 0) {
|
2009-03-21 03:47:13 +05:30
|
|
|
if (line[res_sz - 1] == delim)
|
2008-08-09 21:45:14 +05:30
|
|
|
line[--res_sz] = '\0';
|
|
|
|
} else {
|
|
|
|
free(line); /* uclibc allocates a buffer even on EOF. WTF? */
|
|
|
|
}
|
|
|
|
return res_sz;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static int grep_file(FILE *file)
|
|
|
|
{
|
2007-09-10 17:48:32 +05:30
|
|
|
smalluint found;
|
2000-06-29 03:30:26 +05:30
|
|
|
int linenum = 0;
|
2000-08-06 20:55:53 +05:30
|
|
|
int nmatches = 0;
|
2008-08-09 21:45:14 +05:30
|
|
|
#if !ENABLE_EXTRA_COMPAT
|
|
|
|
char *line;
|
|
|
|
#else
|
|
|
|
char *line = NULL;
|
|
|
|
ssize_t line_len;
|
|
|
|
size_t line_alloc_len;
|
2009-12-04 07:18:14 +05:30
|
|
|
# define rm_so start[0]
|
|
|
|
# define rm_eo end[0]
|
2008-08-09 21:45:14 +05:30
|
|
|
#endif
|
2005-09-23 21:08:49 +05:30
|
|
|
#if ENABLE_FEATURE_GREP_CONTEXT
|
2001-02-09 06:11:10 +05:30
|
|
|
int print_n_lines_after = 0;
|
|
|
|
int curpos = 0; /* track where we are in the circular 'before' buffer */
|
|
|
|
int idx = 0; /* used for iteration through the circular buffer */
|
2007-07-15 18:09:08 +05:30
|
|
|
#else
|
|
|
|
enum { print_n_lines_after = 0 };
|
2009-12-04 07:18:14 +05:30
|
|
|
#endif
|
2000-06-29 03:30:26 +05:30
|
|
|
|
2008-08-09 21:45:14 +05:30
|
|
|
while (
|
|
|
|
#if !ENABLE_EXTRA_COMPAT
|
|
|
|
(line = xmalloc_fgetline(file)) != NULL
|
|
|
|
#else
|
|
|
|
(line_len = bb_getline(&line, &line_alloc_len, file)) >= 0
|
|
|
|
#endif
|
|
|
|
) {
|
2003-04-27 07:20:57 +05:30
|
|
|
llist_t *pattern_ptr = pattern_head;
|
2007-11-04 06:16:03 +05:30
|
|
|
grep_list_data_t *gl = gl; /* for gcc */
|
2003-04-27 07:20:57 +05:30
|
|
|
|
2000-06-29 03:30:26 +05:30
|
|
|
linenum++;
|
2007-09-10 17:48:32 +05:30
|
|
|
found = 0;
|
2003-04-27 07:20:57 +05:30
|
|
|
while (pattern_ptr) {
|
2006-02-28 15:40:19 +05:30
|
|
|
gl = (grep_list_data_t *)pattern_ptr->data;
|
2005-09-23 21:08:49 +05:30
|
|
|
if (FGREP_FLAG) {
|
2013-01-20 21:27:19 +05:30
|
|
|
char *match;
|
|
|
|
char *str = line;
|
|
|
|
opt_f_again:
|
|
|
|
match = ((option_mask32 & OPT_i)
|
|
|
|
? strcasestr(str, gl->pattern)
|
|
|
|
: strstr(str, gl->pattern)
|
|
|
|
);
|
|
|
|
if (match) {
|
|
|
|
if (option_mask32 & OPT_x) {
|
|
|
|
if (match != str)
|
|
|
|
goto opt_f_not_found;
|
|
|
|
if (str[strlen(gl->pattern)] != '\0')
|
|
|
|
goto opt_f_not_found;
|
|
|
|
} else
|
|
|
|
if (option_mask32 & OPT_w) {
|
|
|
|
char c = (match != str) ? match[-1] : ' ';
|
|
|
|
if (!isalnum(c) && c != '_') {
|
|
|
|
c = match[strlen(gl->pattern)];
|
|
|
|
if (!c || (!isalnum(c) && c != '_'))
|
|
|
|
goto opt_f_found;
|
|
|
|
}
|
|
|
|
str = match + 1;
|
|
|
|
goto opt_f_again;
|
|
|
|
}
|
|
|
|
opt_f_found:
|
|
|
|
found = 1;
|
|
|
|
opt_f_not_found: ;
|
|
|
|
}
|
2003-04-27 07:20:57 +05:30
|
|
|
} else {
|
2014-01-07 19:27:42 +05:30
|
|
|
#if ENABLE_EXTRA_COMPAT
|
|
|
|
unsigned start_pos;
|
2014-02-07 21:44:37 +05:30
|
|
|
#else
|
|
|
|
int match_flg;
|
2014-01-07 19:27:42 +05:30
|
|
|
#endif
|
2013-05-15 07:23:26 +05:30
|
|
|
char *match_at;
|
|
|
|
|
2016-09-18 00:28:22 +05:30
|
|
|
if (!(gl->flg_mem_allocated_compiled & COMPILED)) {
|
|
|
|
gl->flg_mem_allocated_compiled |= COMPILED;
|
2008-08-09 21:45:14 +05:30
|
|
|
#if !ENABLE_EXTRA_COMPAT
|
|
|
|
xregcomp(&gl->compiled_regex, gl->pattern, reflags);
|
|
|
|
#else
|
|
|
|
memset(&gl->compiled_regex, 0, sizeof(gl->compiled_regex));
|
2008-09-20 02:59:21 +05:30
|
|
|
gl->compiled_regex.translate = case_fold; /* for -i */
|
2008-08-09 21:45:14 +05:30
|
|
|
if (re_compile_pattern(gl->pattern, strlen(gl->pattern), &gl->compiled_regex))
|
|
|
|
bb_error_msg_and_die("bad regex '%s'", gl->pattern);
|
|
|
|
#endif
|
2006-02-28 15:40:19 +05:30
|
|
|
}
|
2008-08-09 21:45:14 +05:30
|
|
|
#if !ENABLE_EXTRA_COMPAT
|
|
|
|
gl->matched_range.rm_so = 0;
|
|
|
|
gl->matched_range.rm_eo = 0;
|
2014-02-07 21:44:37 +05:30
|
|
|
match_flg = 0;
|
2014-01-07 19:27:42 +05:30
|
|
|
#else
|
|
|
|
start_pos = 0;
|
2008-08-09 21:45:14 +05:30
|
|
|
#endif
|
2013-05-15 07:23:26 +05:30
|
|
|
match_at = line;
|
|
|
|
opt_w_again:
|
2014-01-07 19:27:42 +05:30
|
|
|
//bb_error_msg("'%s' start_pos:%d line_len:%d", match_at, start_pos, line_len);
|
2008-08-09 21:45:14 +05:30
|
|
|
if (
|
|
|
|
#if !ENABLE_EXTRA_COMPAT
|
2014-02-07 21:44:37 +05:30
|
|
|
regexec(&gl->compiled_regex, match_at, 1, &gl->matched_range, match_flg) == 0
|
2008-08-09 21:45:14 +05:30
|
|
|
#else
|
2013-05-15 07:23:26 +05:30
|
|
|
re_search(&gl->compiled_regex, match_at, line_len,
|
2014-01-07 19:27:42 +05:30
|
|
|
start_pos, /*range:*/ line_len,
|
2008-08-09 21:45:14 +05:30
|
|
|
&gl->matched_range) >= 0
|
|
|
|
#endif
|
|
|
|
) {
|
2012-02-23 19:50:22 +05:30
|
|
|
if (option_mask32 & OPT_x) {
|
|
|
|
found = (gl->matched_range.rm_so == 0
|
2013-05-15 07:23:26 +05:30
|
|
|
&& match_at[gl->matched_range.rm_eo] == '\0');
|
2013-01-20 21:27:19 +05:30
|
|
|
} else
|
|
|
|
if (!(option_mask32 & OPT_w)) {
|
2007-09-10 17:48:32 +05:30
|
|
|
found = 1;
|
2012-02-23 19:50:22 +05:30
|
|
|
} else {
|
2007-02-25 08:08:20 +05:30
|
|
|
char c = ' ';
|
2014-02-27 19:26:12 +05:30
|
|
|
if (match_at > line || gl->matched_range.rm_so != 0) {
|
2013-05-15 07:23:26 +05:30
|
|
|
c = match_at[gl->matched_range.rm_so - 1];
|
2014-02-27 19:26:12 +05:30
|
|
|
}
|
2007-02-25 08:08:20 +05:30
|
|
|
if (!isalnum(c) && c != '_') {
|
2013-05-15 07:23:26 +05:30
|
|
|
c = match_at[gl->matched_range.rm_eo];
|
2014-02-27 19:26:12 +05:30
|
|
|
}
|
|
|
|
if (!isalnum(c) && c != '_') {
|
|
|
|
found = 1;
|
|
|
|
} else {
|
2014-01-07 19:27:42 +05:30
|
|
|
/*
|
|
|
|
* Why check gl->matched_range.rm_eo?
|
|
|
|
* Zero-length match makes -w skip the line:
|
|
|
|
* "echo foo | grep ^" prints "foo",
|
|
|
|
* "echo foo | grep -w ^" prints nothing.
|
|
|
|
* Without such check, we can loop forever.
|
|
|
|
*/
|
|
|
|
#if !ENABLE_EXTRA_COMPAT
|
2014-02-27 19:26:12 +05:30
|
|
|
if (gl->matched_range.rm_eo != 0) {
|
|
|
|
match_at += gl->matched_range.rm_eo;
|
|
|
|
match_flg |= REG_NOTBOL;
|
|
|
|
goto opt_w_again;
|
|
|
|
}
|
2014-01-07 19:27:42 +05:30
|
|
|
#else
|
2014-02-27 19:26:12 +05:30
|
|
|
if (gl->matched_range.rm_eo > start_pos) {
|
|
|
|
start_pos = gl->matched_range.rm_eo;
|
|
|
|
goto opt_w_again;
|
2013-05-15 07:23:26 +05:30
|
|
|
}
|
2014-02-27 19:26:12 +05:30
|
|
|
#endif
|
2007-02-25 08:08:20 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-04-27 07:20:57 +05:30
|
|
|
}
|
2007-09-10 17:48:32 +05:30
|
|
|
/* If it's non-inverted search, we can stop
|
|
|
|
* at first match */
|
|
|
|
if (found && !invert_search)
|
|
|
|
goto do_found;
|
2003-06-20 14:31:58 +05:30
|
|
|
pattern_ptr = pattern_ptr->link;
|
|
|
|
} /* while (pattern_ptr) */
|
|
|
|
|
2007-09-10 17:48:32 +05:30
|
|
|
if (found ^ invert_search) {
|
|
|
|
do_found:
|
2007-02-25 08:07:49 +05:30
|
|
|
/* keep track of matches */
|
|
|
|
nmatches++;
|
2001-05-25 00:06:18 +05:30
|
|
|
|
2007-07-15 18:08:18 +05:30
|
|
|
/* quiet/print (non)matching file names only? */
|
|
|
|
if (option_mask32 & (OPT_q|OPT_l|OPT_L)) {
|
|
|
|
free(line); /* we don't need line anymore */
|
|
|
|
if (BE_QUIET) {
|
|
|
|
/* manpage says about -q:
|
|
|
|
* "exit immediately with zero status
|
|
|
|
* if any match is found,
|
|
|
|
* even if errors were detected" */
|
2008-05-19 14:59:47 +05:30
|
|
|
exit(EXIT_SUCCESS);
|
2007-07-15 18:08:18 +05:30
|
|
|
}
|
|
|
|
/* if we're just printing filenames, we stop after the first match */
|
|
|
|
if (PRINT_FILES_WITH_MATCHES) {
|
|
|
|
puts(cur_file);
|
2008-02-11 17:14:38 +05:30
|
|
|
/* fall through to "return 1" */
|
2007-07-15 18:08:18 +05:30
|
|
|
}
|
|
|
|
/* OPT_L aka PRINT_FILES_WITHOUT_MATCHES: return early */
|
|
|
|
return 1; /* one match */
|
|
|
|
}
|
2001-05-25 00:06:18 +05:30
|
|
|
|
2007-07-15 18:09:08 +05:30
|
|
|
#if ENABLE_FEATURE_GREP_CONTEXT
|
|
|
|
/* Were we printing context and saw next (unwanted) match? */
|
|
|
|
if ((option_mask32 & OPT_m) && nmatches > max_matches)
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2007-02-25 08:07:49 +05:30
|
|
|
/* print the matched line */
|
|
|
|
if (PRINT_MATCH_COUNTS == 0) {
|
2005-09-23 21:08:49 +05:30
|
|
|
#if ENABLE_FEATURE_GREP_CONTEXT
|
2007-02-25 08:07:49 +05:30
|
|
|
int prevpos = (curpos == 0) ? lines_before - 1 : curpos - 1;
|
|
|
|
|
|
|
|
/* if we were told to print 'before' lines and there is at least
|
|
|
|
* one line in the circular buffer, print them */
|
|
|
|
if (lines_before && before_buf[prevpos] != NULL) {
|
|
|
|
int first_buf_entry_line_num = linenum - lines_before;
|
|
|
|
|
|
|
|
/* advance to the first entry in the circular buffer, and
|
|
|
|
* figure out the line number is of the first line in the
|
|
|
|
* buffer */
|
|
|
|
idx = curpos;
|
|
|
|
while (before_buf[idx] == NULL) {
|
|
|
|
idx = (idx + 1) % lines_before;
|
|
|
|
first_buf_entry_line_num++;
|
2001-02-09 06:11:10 +05:30
|
|
|
}
|
|
|
|
|
2007-02-25 08:07:49 +05:30
|
|
|
/* now print each line in the buffer, clearing them as we go */
|
|
|
|
while (before_buf[idx] != NULL) {
|
2008-08-09 21:45:14 +05:30
|
|
|
print_line(before_buf[idx], before_buf_size[idx], first_buf_entry_line_num, '-');
|
2007-02-25 08:07:49 +05:30
|
|
|
free(before_buf[idx]);
|
|
|
|
before_buf[idx] = NULL;
|
|
|
|
idx = (idx + 1) % lines_before;
|
|
|
|
first_buf_entry_line_num++;
|
2006-09-30 02:28:53 +05:30
|
|
|
}
|
2001-05-25 00:06:18 +05:30
|
|
|
}
|
2007-02-25 08:07:49 +05:30
|
|
|
|
|
|
|
/* make a note that we need to print 'after' lines */
|
|
|
|
print_n_lines_after = lines_after;
|
|
|
|
#endif
|
2007-02-25 08:08:20 +05:30
|
|
|
if (option_mask32 & OPT_o) {
|
2007-11-04 06:16:03 +05:30
|
|
|
if (FGREP_FLAG) {
|
|
|
|
/* -Fo just prints the pattern
|
|
|
|
* (unless -v: -Fov doesnt print anything at all) */
|
|
|
|
if (found)
|
2008-08-09 21:45:14 +05:30
|
|
|
print_line(gl->pattern, strlen(gl->pattern), linenum, ':');
|
2008-10-01 04:07:29 +05:30
|
|
|
} else while (1) {
|
2010-08-23 06:09:47 +05:30
|
|
|
unsigned start = gl->matched_range.rm_so;
|
2009-07-29 04:50:09 +05:30
|
|
|
unsigned end = gl->matched_range.rm_eo;
|
2010-08-23 06:09:47 +05:30
|
|
|
unsigned len = end - start;
|
2009-07-29 04:50:09 +05:30
|
|
|
char old = line[end];
|
|
|
|
line[end] = '\0';
|
2010-08-23 06:09:47 +05:30
|
|
|
/* Empty match is not printed: try "echo test | grep -o ''" */
|
|
|
|
if (len != 0)
|
|
|
|
print_line(line + start, len, linenum, ':');
|
2009-12-04 07:18:14 +05:30
|
|
|
if (old == '\0')
|
|
|
|
break;
|
2009-07-29 04:50:09 +05:30
|
|
|
line[end] = old;
|
2010-08-23 06:09:47 +05:30
|
|
|
if (len == 0)
|
|
|
|
end++;
|
2008-10-01 04:07:29 +05:30
|
|
|
#if !ENABLE_EXTRA_COMPAT
|
2009-07-29 04:50:09 +05:30
|
|
|
if (regexec(&gl->compiled_regex, line + end,
|
|
|
|
1, &gl->matched_range, REG_NOTBOL) != 0)
|
|
|
|
break;
|
|
|
|
gl->matched_range.rm_so += end;
|
|
|
|
gl->matched_range.rm_eo += end;
|
2008-10-01 04:07:29 +05:30
|
|
|
#else
|
|
|
|
if (re_search(&gl->compiled_regex, line, line_len,
|
2009-07-29 04:50:09 +05:30
|
|
|
end, line_len - end,
|
2008-10-01 04:07:29 +05:30
|
|
|
&gl->matched_range) < 0)
|
|
|
|
break;
|
|
|
|
#endif
|
2008-11-24 18:55:20 +05:30
|
|
|
}
|
2007-02-25 08:07:49 +05:30
|
|
|
} else {
|
2008-08-09 21:45:14 +05:30
|
|
|
print_line(line, line_len, linenum, ':');
|
2007-02-25 08:07:49 +05:30
|
|
|
}
|
2001-02-09 06:11:10 +05:30
|
|
|
}
|
2007-02-25 08:07:49 +05:30
|
|
|
}
|
2005-09-23 21:08:49 +05:30
|
|
|
#if ENABLE_FEATURE_GREP_CONTEXT
|
2007-02-25 08:07:49 +05:30
|
|
|
else { /* no match */
|
2007-07-15 18:08:18 +05:30
|
|
|
/* if we need to print some context lines after the last match, do so */
|
2007-07-15 18:09:08 +05:30
|
|
|
if (print_n_lines_after) {
|
2008-08-09 21:45:14 +05:30
|
|
|
print_line(line, strlen(line), linenum, '-');
|
2007-07-15 18:08:18 +05:30
|
|
|
print_n_lines_after--;
|
|
|
|
} else if (lines_before) {
|
|
|
|
/* Add the line to the circular 'before' buffer */
|
2007-02-25 08:07:49 +05:30
|
|
|
free(before_buf[curpos]);
|
2007-07-15 18:08:18 +05:30
|
|
|
before_buf[curpos] = line;
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_EXTRA_COMPAT(before_buf_size[curpos] = line_len;)
|
2007-02-25 08:07:49 +05:30
|
|
|
curpos = (curpos + 1) % lines_before;
|
2008-03-17 14:39:09 +05:30
|
|
|
/* avoid free(line) - we took the line */
|
2007-07-15 18:09:08 +05:30
|
|
|
line = NULL;
|
2001-01-04 20:41:52 +05:30
|
|
|
}
|
2007-02-25 08:07:49 +05:30
|
|
|
}
|
2001-02-09 06:11:10 +05:30
|
|
|
|
2005-09-23 21:08:49 +05:30
|
|
|
#endif /* ENABLE_FEATURE_GREP_CONTEXT */
|
2008-08-09 21:45:14 +05:30
|
|
|
#if !ENABLE_EXTRA_COMPAT
|
2000-06-29 03:30:26 +05:30
|
|
|
free(line);
|
2008-08-09 21:45:14 +05:30
|
|
|
#endif
|
2007-07-15 18:09:08 +05:30
|
|
|
/* Did we print all context after last requested match? */
|
|
|
|
if ((option_mask32 & OPT_m)
|
2009-03-21 03:47:13 +05:30
|
|
|
&& !print_n_lines_after
|
|
|
|
&& nmatches == max_matches
|
|
|
|
) {
|
2007-07-15 18:09:08 +05:30
|
|
|
break;
|
2009-03-21 03:47:13 +05:30
|
|
|
}
|
2008-08-09 21:45:14 +05:30
|
|
|
} /* while (read line) */
|
2000-07-19 00:07:01 +05:30
|
|
|
|
2001-05-15 01:10:32 +05:30
|
|
|
/* special-case file post-processing for options where we don't print line
|
2001-05-22 02:43:00 +05:30
|
|
|
* matches, just filenames and possibly match counts */
|
2001-05-15 01:10:32 +05:30
|
|
|
|
2001-05-22 02:43:00 +05:30
|
|
|
/* grep -c: print [filename:]count, even if count is zero */
|
2005-09-23 21:08:49 +05:30
|
|
|
if (PRINT_MATCH_COUNTS) {
|
2006-10-14 19:54:30 +05:30
|
|
|
if (print_filename)
|
2001-05-22 02:43:00 +05:30
|
|
|
printf("%s:", cur_file);
|
2006-10-04 01:26:34 +05:30
|
|
|
printf("%d\n", nmatches);
|
2001-05-15 01:10:32 +05:30
|
|
|
}
|
2001-05-22 02:43:00 +05:30
|
|
|
|
2007-07-15 18:08:18 +05:30
|
|
|
/* grep -L: print just the filename */
|
|
|
|
if (PRINT_FILES_WITHOUT_MATCHES) {
|
|
|
|
/* nmatches is zero, no need to check it:
|
|
|
|
* we return 1 early if we detected a match
|
|
|
|
* and PRINT_FILES_WITHOUT_MATCHES is set */
|
2004-05-26 17:17:55 +05:30
|
|
|
puts(cur_file);
|
|
|
|
}
|
|
|
|
|
2003-06-20 14:31:58 +05:30
|
|
|
return nmatches;
|
2001-05-25 00:06:18 +05:30
|
|
|
}
|
|
|
|
|
2006-02-28 15:40:19 +05:30
|
|
|
#if ENABLE_FEATURE_CLEAN_UP
|
|
|
|
#define new_grep_list_data(p, m) add_grep_list_data(p, m)
|
2007-09-10 17:48:32 +05:30
|
|
|
static char *add_grep_list_data(char *pattern, int flg_used_mem)
|
2006-02-28 15:40:19 +05:30
|
|
|
#else
|
|
|
|
#define new_grep_list_data(p, m) add_grep_list_data(p)
|
2007-09-10 17:48:32 +05:30
|
|
|
static char *add_grep_list_data(char *pattern)
|
2006-02-28 15:40:19 +05:30
|
|
|
#endif
|
|
|
|
{
|
2007-09-10 17:48:32 +05:30
|
|
|
grep_list_data_t *gl = xzalloc(sizeof(*gl));
|
2006-02-28 15:40:19 +05:30
|
|
|
gl->pattern = pattern;
|
|
|
|
#if ENABLE_FEATURE_CLEAN_UP
|
2016-09-18 00:28:22 +05:30
|
|
|
gl->flg_mem_allocated_compiled = flg_used_mem;
|
2006-02-28 15:40:19 +05:30
|
|
|
#else
|
2016-09-18 00:28:22 +05:30
|
|
|
/*gl->flg_mem_allocated_compiled = 0;*/
|
2006-02-28 15:40:19 +05:30
|
|
|
#endif
|
|
|
|
return (char *)gl;
|
|
|
|
}
|
|
|
|
|
2003-06-20 14:31:58 +05:30
|
|
|
static void load_regexes_from_file(llist_t *fopt)
|
2001-05-25 00:06:18 +05:30
|
|
|
{
|
2006-09-30 02:34:12 +05:30
|
|
|
while (fopt) {
|
2011-08-28 16:09:04 +05:30
|
|
|
char *line;
|
|
|
|
FILE *fp;
|
2003-06-20 14:31:58 +05:30
|
|
|
llist_t *cur = fopt;
|
|
|
|
char *ffile = cur->data;
|
|
|
|
|
|
|
|
fopt = cur->link;
|
|
|
|
free(cur);
|
2011-08-28 16:09:04 +05:30
|
|
|
fp = xfopen_stdin(ffile);
|
|
|
|
while ((line = xmalloc_fgetline(fp)) != NULL) {
|
2006-05-27 05:14:51 +05:30
|
|
|
llist_add_to(&pattern_head,
|
2008-06-07 10:49:31 +05:30
|
|
|
new_grep_list_data(line, ALLOCATED));
|
2004-10-08 13:40:57 +05:30
|
|
|
}
|
2011-08-28 16:09:04 +05:30
|
|
|
fclose_if_not_stdin(fp);
|
2001-05-25 00:06:18 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
static int FAST_FUNC file_action_grep(const char *filename,
|
2008-07-05 14:48:54 +05:30
|
|
|
struct stat *statbuf UNUSED_PARAM,
|
2008-03-17 14:39:09 +05:30
|
|
|
void* matched,
|
2008-07-05 14:48:54 +05:30
|
|
|
int depth UNUSED_PARAM)
|
2006-10-14 19:54:30 +05:30
|
|
|
{
|
2008-07-22 04:35:26 +05:30
|
|
|
FILE *file = fopen_for_read(filename);
|
2006-10-14 19:54:30 +05:30
|
|
|
if (file == NULL) {
|
|
|
|
if (!SUPPRESS_ERR_MSGS)
|
2008-01-24 07:00:36 +05:30
|
|
|
bb_simple_perror_msg(filename);
|
2006-10-14 19:54:30 +05:30
|
|
|
open_errors = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
cur_file = filename;
|
|
|
|
*(int*)matched += grep_file(file);
|
2006-10-16 00:08:01 +05:30
|
|
|
fclose(file);
|
2006-10-14 19:54:30 +05:30
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int grep_dir(const char *dir)
|
|
|
|
{
|
|
|
|
int matched = 0;
|
|
|
|
recursive_action(dir,
|
2007-04-08 16:22:28 +05:30
|
|
|
/* recurse=yes */ ACTION_RECURSE |
|
2014-08-28 19:20:09 +05:30
|
|
|
/* followLinks=command line only */ ACTION_FOLLOWLINKS_L0 |
|
2007-04-08 16:22:28 +05:30
|
|
|
/* depthFirst=yes */ ACTION_DEPTHFIRST,
|
2006-10-14 19:54:30 +05:30
|
|
|
/* fileAction= */ file_action_grep,
|
|
|
|
/* dirAction= */ NULL,
|
2006-10-28 05:12:25 +05:30
|
|
|
/* userData= */ &matched,
|
|
|
|
/* depth= */ 0);
|
2006-10-14 19:54:30 +05:30
|
|
|
return matched;
|
|
|
|
}
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int grep_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2010-01-04 18:45:38 +05:30
|
|
|
int grep_main(int argc UNUSED_PARAM, char **argv)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2003-06-20 14:31:58 +05:30
|
|
|
FILE *file;
|
|
|
|
int matched;
|
2004-10-08 13:40:57 +05:30
|
|
|
llist_t *fopt = NULL;
|
2005-09-23 21:08:49 +05:30
|
|
|
#if ENABLE_FEATURE_GREP_CONTEXT
|
2010-10-02 16:12:28 +05:30
|
|
|
int Copt, opts;
|
2016-03-29 01:42:09 +05:30
|
|
|
#endif
|
2016-06-20 04:06:21 +05:30
|
|
|
INIT_G();
|
2003-06-20 14:31:58 +05:30
|
|
|
|
2016-03-29 01:42:09 +05:30
|
|
|
/* For grep, exitcode of 1 is "not found". Other errors are 2: */
|
|
|
|
xfunc_error_retval = 2;
|
|
|
|
|
|
|
|
/* do normal option parsing */
|
|
|
|
#if ENABLE_FEATURE_GREP_CONTEXT
|
2008-03-17 14:39:09 +05:30
|
|
|
/* -H unsets -h; -C unsets -A,-B; -e,-f are lists;
|
|
|
|
* -m,-A,-B,-C have numeric param */
|
2016-07-07 01:28:02 +05:30
|
|
|
opt_complementary = "H-h:C-AB";
|
2010-10-02 16:12:28 +05:30
|
|
|
opts = getopt32(argv,
|
2007-02-25 08:08:20 +05:30
|
|
|
OPTSTR_GREP,
|
2008-03-17 14:39:09 +05:30
|
|
|
&pattern_head, &fopt, &max_matches,
|
|
|
|
&lines_after, &lines_before, &Copt);
|
2003-06-20 14:31:58 +05:30
|
|
|
|
2010-10-02 16:12:28 +05:30
|
|
|
if (opts & OPT_C) {
|
2006-10-22 17:12:51 +05:30
|
|
|
/* -C unsets prev -A and -B, but following -A or -B
|
2013-01-14 20:27:44 +05:30
|
|
|
* may override it */
|
2010-10-02 16:12:28 +05:30
|
|
|
if (!(opts & OPT_A)) /* not overridden */
|
2008-03-17 14:39:09 +05:30
|
|
|
lines_after = Copt;
|
2010-10-02 16:12:28 +05:30
|
|
|
if (!(opts & OPT_B)) /* not overridden */
|
2008-03-17 14:39:09 +05:30
|
|
|
lines_before = Copt;
|
2005-09-23 21:08:49 +05:30
|
|
|
}
|
2006-10-22 17:12:51 +05:30
|
|
|
/* sanity checks */
|
2010-10-02 16:12:28 +05:30
|
|
|
if (opts & (OPT_c|OPT_q|OPT_l|OPT_L)) {
|
2007-02-25 08:08:20 +05:30
|
|
|
option_mask32 &= ~OPT_n;
|
2003-06-20 14:31:58 +05:30
|
|
|
lines_before = 0;
|
|
|
|
lines_after = 0;
|
2008-08-09 21:45:14 +05:30
|
|
|
} else if (lines_before > 0) {
|
2010-10-02 16:12:28 +05:30
|
|
|
if (lines_before > INT_MAX / sizeof(long long))
|
|
|
|
lines_before = INT_MAX / sizeof(long long);
|
|
|
|
/* overflow in (lines_before * sizeof(x)) is prevented (above) */
|
2008-08-09 21:45:14 +05:30
|
|
|
before_buf = xzalloc(lines_before * sizeof(before_buf[0]));
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_EXTRA_COMPAT(before_buf_size = xzalloc(lines_before * sizeof(before_buf_size[0]));)
|
2008-08-09 21:45:14 +05:30
|
|
|
}
|
2003-06-20 14:31:58 +05:30
|
|
|
#else
|
|
|
|
/* with auto sanity checks */
|
2008-03-17 14:39:09 +05:30
|
|
|
/* -H unsets -h; -c,-q or -l unset -n; -e,-f are lists; -m N */
|
2016-07-07 01:28:02 +05:30
|
|
|
opt_complementary = "H-h:c-n:q-n:l-n:";
|
2007-08-18 21:02:12 +05:30
|
|
|
getopt32(argv, OPTSTR_GREP,
|
2008-03-17 14:39:09 +05:30
|
|
|
&pattern_head, &fopt, &max_matches);
|
2003-06-20 14:31:58 +05:30
|
|
|
#endif
|
2007-02-25 08:08:20 +05:30
|
|
|
invert_search = ((option_mask32 & OPT_v) != 0); /* 0 | 1 */
|
2005-09-23 21:08:49 +05:30
|
|
|
|
2011-08-28 16:09:04 +05:30
|
|
|
{ /* convert char **argv to grep_list_data_t */
|
2006-02-28 15:40:19 +05:30
|
|
|
llist_t *cur;
|
2006-09-30 02:34:12 +05:30
|
|
|
for (cur = pattern_head; cur; cur = cur->link)
|
2006-02-28 15:40:19 +05:30
|
|
|
cur->data = new_grep_list_data(cur->data, 0);
|
|
|
|
}
|
2011-08-28 16:09:04 +05:30
|
|
|
if (option_mask32 & OPT_f) {
|
2003-06-20 14:31:58 +05:30
|
|
|
load_regexes_from_file(fopt);
|
2011-08-28 16:09:04 +05:30
|
|
|
if (!pattern_head) { /* -f EMPTY_FILE? */
|
|
|
|
/* GNU grep treats it as "nothing matches" */
|
|
|
|
llist_add_to(&pattern_head, new_grep_list_data((char*) "", 0));
|
|
|
|
invert_search ^= 1;
|
|
|
|
}
|
|
|
|
}
|
2003-06-20 14:31:58 +05:30
|
|
|
|
2006-10-04 02:30:43 +05:30
|
|
|
if (ENABLE_FEATURE_GREP_FGREP_ALIAS && applet_name[0] == 'f')
|
2007-02-25 08:08:20 +05:30
|
|
|
option_mask32 |= OPT_F;
|
2005-08-01 04:11:05 +05:30
|
|
|
|
2008-09-20 02:59:21 +05:30
|
|
|
#if !ENABLE_EXTRA_COMPAT
|
2013-05-07 17:02:21 +05:30
|
|
|
if (!(option_mask32 & (OPT_o | OPT_w | OPT_x)))
|
2006-09-30 02:28:53 +05:30
|
|
|
reflags = REG_NOSUB;
|
2008-09-20 02:59:21 +05:30
|
|
|
#endif
|
2006-09-30 02:28:53 +05:30
|
|
|
|
2007-09-10 17:48:32 +05:30
|
|
|
if (ENABLE_FEATURE_GREP_EGREP_ALIAS
|
|
|
|
&& (applet_name[0] == 'e' || (option_mask32 & OPT_E))
|
|
|
|
) {
|
2006-09-30 02:28:53 +05:30
|
|
|
reflags |= REG_EXTENDED;
|
2007-09-10 17:48:32 +05:30
|
|
|
}
|
2008-09-20 03:02:51 +05:30
|
|
|
#if ENABLE_EXTRA_COMPAT
|
|
|
|
else {
|
|
|
|
reflags = RE_SYNTAX_GREP;
|
|
|
|
}
|
|
|
|
#endif
|
2003-06-20 14:31:58 +05:30
|
|
|
|
2008-09-20 02:59:21 +05:30
|
|
|
if (option_mask32 & OPT_i) {
|
|
|
|
#if !ENABLE_EXTRA_COMPAT
|
2003-06-20 14:31:58 +05:30
|
|
|
reflags |= REG_ICASE;
|
2008-09-20 02:59:21 +05:30
|
|
|
#else
|
|
|
|
int i;
|
|
|
|
case_fold = xmalloc(256);
|
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
case_fold[i] = (unsigned char)i;
|
|
|
|
for (i = 'a'; i <= 'z'; i++)
|
|
|
|
case_fold[i] = (unsigned char)(i - ('a' - 'A'));
|
|
|
|
#endif
|
|
|
|
}
|
2003-06-20 14:31:58 +05:30
|
|
|
|
|
|
|
argv += optind;
|
2000-06-13 11:54:53 +05:30
|
|
|
|
2008-03-17 14:39:09 +05:30
|
|
|
/* if we didn't get a pattern from -e and no command file was specified,
|
|
|
|
* first parameter should be the pattern. no pattern, no worky */
|
2003-04-27 07:20:57 +05:30
|
|
|
if (pattern_head == NULL) {
|
2007-02-25 08:08:20 +05:30
|
|
|
char *pattern;
|
2003-06-20 14:31:58 +05:30
|
|
|
if (*argv == NULL)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2007-02-25 08:08:20 +05:30
|
|
|
pattern = new_grep_list_data(*argv++, 0);
|
|
|
|
llist_add_to(&pattern_head, pattern);
|
2001-05-25 00:06:18 +05:30
|
|
|
}
|
2000-06-29 03:30:26 +05:30
|
|
|
|
2008-06-07 10:49:31 +05:30
|
|
|
/* argv[0..(argc-1)] should be names of file to grep through. If
|
2006-10-14 19:54:30 +05:30
|
|
|
* there is more than one file to grep, we will print the filenames. */
|
2010-01-04 18:45:38 +05:30
|
|
|
if (argv[0] && argv[1])
|
2006-10-14 19:54:30 +05:30
|
|
|
print_filename = 1;
|
2006-10-22 17:12:51 +05:30
|
|
|
/* -H / -h of course override */
|
2007-02-25 08:08:20 +05:30
|
|
|
if (option_mask32 & OPT_H)
|
2006-10-22 17:12:51 +05:30
|
|
|
print_filename = 1;
|
2007-02-25 08:08:20 +05:30
|
|
|
if (option_mask32 & OPT_h)
|
2006-10-22 17:12:51 +05:30
|
|
|
print_filename = 0;
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-06-29 04:29:30 +05:30
|
|
|
/* If no files were specified, or '-' was specified, take input from
|
|
|
|
* stdin. Otherwise, we grep through all the files specified. */
|
2003-06-20 14:31:58 +05:30
|
|
|
matched = 0;
|
2007-09-10 17:48:32 +05:30
|
|
|
do {
|
2010-01-04 18:45:38 +05:30
|
|
|
cur_file = *argv;
|
2006-10-14 19:54:30 +05:30
|
|
|
file = stdin;
|
2008-03-17 14:39:09 +05:30
|
|
|
if (!cur_file || LONE_DASH(cur_file)) {
|
2005-09-23 21:08:49 +05:30
|
|
|
cur_file = "(standard input)";
|
2003-06-20 14:31:58 +05:30
|
|
|
} else {
|
2007-02-25 08:08:20 +05:30
|
|
|
if (option_mask32 & OPT_r) {
|
2006-10-14 19:54:30 +05:30
|
|
|
struct stat st;
|
|
|
|
if (stat(cur_file, &st) == 0 && S_ISDIR(st.st_mode)) {
|
2007-02-25 08:08:20 +05:30
|
|
|
if (!(option_mask32 & OPT_h))
|
2006-10-14 20:21:59 +05:30
|
|
|
print_filename = 1;
|
2006-10-14 19:54:30 +05:30
|
|
|
matched += grep_dir(cur_file);
|
|
|
|
goto grep_done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* else: fopen(dir) will succeed, but reading won't */
|
2008-07-22 04:35:26 +05:30
|
|
|
file = fopen_for_read(cur_file);
|
2006-10-14 19:54:30 +05:30
|
|
|
if (file == NULL) {
|
|
|
|
if (!SUPPRESS_ERR_MSGS)
|
2007-10-01 17:28:38 +05:30
|
|
|
bb_simple_perror_msg(cur_file);
|
2006-10-14 19:54:30 +05:30
|
|
|
open_errors = 1;
|
|
|
|
continue;
|
2000-07-19 02:32:06 +05:30
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2006-10-14 19:54:30 +05:30
|
|
|
matched += grep_file(file);
|
2006-10-27 04:55:17 +05:30
|
|
|
fclose_if_not_stdin(file);
|
2007-07-15 18:09:08 +05:30
|
|
|
grep_done: ;
|
2010-01-04 18:45:38 +05:30
|
|
|
} while (*argv && *++argv);
|
2003-06-20 14:31:58 +05:30
|
|
|
|
|
|
|
/* destroy all the elments in the pattern list */
|
2006-02-28 15:40:19 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP) {
|
|
|
|
while (pattern_head) {
|
|
|
|
llist_t *pattern_head_ptr = pattern_head;
|
2007-09-10 17:48:32 +05:30
|
|
|
grep_list_data_t *gl = (grep_list_data_t *)pattern_head_ptr->data;
|
2006-02-28 15:40:19 +05:30
|
|
|
|
|
|
|
pattern_head = pattern_head->link;
|
2016-09-18 00:28:22 +05:30
|
|
|
if (gl->flg_mem_allocated_compiled & ALLOCATED)
|
2006-02-28 15:40:19 +05:30
|
|
|
free(gl->pattern);
|
2016-09-18 00:28:22 +05:30
|
|
|
if (gl->flg_mem_allocated_compiled & COMPILED)
|
2008-08-09 21:45:14 +05:30
|
|
|
regfree(&gl->compiled_regex);
|
2007-04-12 23:59:27 +05:30
|
|
|
free(gl);
|
2006-02-28 15:40:19 +05:30
|
|
|
free(pattern_head_ptr);
|
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2005-09-23 21:08:49 +05:30
|
|
|
/* 0 = success, 1 = failed, 2 = error */
|
2006-10-14 19:54:30 +05:30
|
|
|
if (open_errors)
|
2005-09-23 19:20:24 +05:30
|
|
|
return 2;
|
2007-09-10 17:48:32 +05:30
|
|
|
return !matched; /* invert return value: 0 = success, 1 = failed */
|
2000-06-29 03:30:26 +05:30
|
|
|
}
|