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
|
|
|
*
|
2006-09-13 22:09:19 +05:30
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
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
|
2006-09-30 02:28:53 +05:30
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* (C) 2006 Jac Goudsmit added -o option
|
|
|
|
*/
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2005-09-14 22:29:11 +05:30
|
|
|
#include "xregex.h"
|
2000-06-29 03:30:26 +05:30
|
|
|
|
|
|
|
/* options */
|
2007-02-25 08:08:20 +05:30
|
|
|
#define OPTSTR_GREP \
|
2007-07-15 18:09:08 +05:30
|
|
|
"lnqvscFiHhe:f:Lorm:" \
|
2007-02-25 08:08:20 +05:30
|
|
|
USE_FEATURE_GREP_CONTEXT("A:B:C:") \
|
|
|
|
USE_FEATURE_GREP_EGREP_ALIAS("E") \
|
|
|
|
USE_DESKTOP("w") \
|
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 */
|
|
|
|
USE_FEATURE_GREP_CONTEXT( OPTBIT_A ,) /* -A NUM: after-match context */
|
|
|
|
USE_FEATURE_GREP_CONTEXT( OPTBIT_B ,) /* -B NUM: before-match context */
|
|
|
|
USE_FEATURE_GREP_CONTEXT( OPTBIT_C ,) /* -C NUM: -A and -B combined */
|
|
|
|
USE_FEATURE_GREP_EGREP_ALIAS(OPTBIT_E ,) /* extended regexp */
|
|
|
|
USE_DESKTOP( OPTBIT_w ,) /* whole word match */
|
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,
|
2007-06-08 21:11:27 +05:30
|
|
|
OPT_A = USE_FEATURE_GREP_CONTEXT( (1 << OPTBIT_A)) + 0,
|
|
|
|
OPT_B = USE_FEATURE_GREP_CONTEXT( (1 << OPTBIT_B)) + 0,
|
|
|
|
OPT_C = USE_FEATURE_GREP_CONTEXT( (1 << OPTBIT_C)) + 0,
|
|
|
|
OPT_E = USE_FEATURE_GREP_EGREP_ALIAS((1 << OPTBIT_E)) + 0,
|
|
|
|
OPT_w = USE_DESKTOP( (1 << OPTBIT_w)) + 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)
|
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;
|
2008-08-09 21:45:14 +05:30
|
|
|
USE_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 */
|
|
|
|
};
|
|
|
|
#define G (*(struct globals*)&bb_common_bufsiz1)
|
2008-06-25 15:23:17 +05:30
|
|
|
#define INIT_G() do { \
|
|
|
|
struct G_sizecheck { \
|
|
|
|
char G_sizecheck[sizeof(G) > COMMON_BUFSIZE ? -1 : 1]; \
|
|
|
|
}; \
|
|
|
|
} 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
|
2007-09-10 17:48:32 +05:30
|
|
|
#define reflags (G.reflags )
|
2008-09-20 02:59:21 +05:30
|
|
|
#else
|
|
|
|
#define case_fold (G.case_fold )
|
|
|
|
/* http://www.delorie.com/gnu/docs/regex/regex_46.html */
|
|
|
|
#define reflags re_syntax_options
|
|
|
|
#undef REG_NOSUB
|
|
|
|
#undef REG_EXTENDED
|
|
|
|
#undef REG_ICASE
|
|
|
|
#define REG_NOSUB bug:is:here /* should not be used */
|
|
|
|
#define REG_EXTENDED RE_SYNTAX_EGREP
|
|
|
|
#define REG_ICASE bug:is:here /* should not be used */
|
|
|
|
#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
|
|
|
|
int flg_mem_alocated_compiled;
|
|
|
|
} 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);
|
|
|
|
putchar('\n');
|
|
|
|
#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;
|
2008-08-09 21:45:14 +05:30
|
|
|
|
|
|
|
res_sz = getline(line_ptr, line_alloc_len, file);
|
|
|
|
line = *line_ptr;
|
|
|
|
|
|
|
|
if (res_sz > 0) {
|
|
|
|
if (line[res_sz - 1] == '\n')
|
|
|
|
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;
|
|
|
|
#define rm_so start[0]
|
|
|
|
#define rm_eo end[0]
|
|
|
|
#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 };
|
2005-09-23 21:08:49 +05:30
|
|
|
#endif /* ENABLE_FEATURE_GREP_CONTEXT */
|
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) {
|
2007-09-10 17:53:27 +05:30
|
|
|
found |= (strstr(line, gl->pattern) != NULL);
|
2003-04-27 07:20:57 +05:30
|
|
|
} else {
|
2006-09-30 02:34:12 +05:30
|
|
|
if (!(gl->flg_mem_alocated_compiled & COMPILED)) {
|
2006-02-28 15:40:19 +05:30
|
|
|
gl->flg_mem_alocated_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;
|
|
|
|
#endif
|
|
|
|
if (
|
|
|
|
#if !ENABLE_EXTRA_COMPAT
|
|
|
|
regexec(&gl->compiled_regex, line, 1, &gl->matched_range, 0) == 0
|
|
|
|
#else
|
|
|
|
re_search(&gl->compiled_regex, line, line_len,
|
|
|
|
/*start:*/ 0, /*range:*/ line_len,
|
|
|
|
&gl->matched_range) >= 0
|
|
|
|
#endif
|
|
|
|
) {
|
2007-02-25 08:08:20 +05:30
|
|
|
if (!(option_mask32 & OPT_w))
|
2007-09-10 17:48:32 +05:30
|
|
|
found = 1;
|
2007-02-25 08:08:20 +05:30
|
|
|
else {
|
|
|
|
char c = ' ';
|
2008-08-09 21:45:14 +05:30
|
|
|
if (gl->matched_range.rm_so)
|
|
|
|
c = line[gl->matched_range.rm_so - 1];
|
2007-02-25 08:08:20 +05:30
|
|
|
if (!isalnum(c) && c != '_') {
|
2008-08-09 21:45:14 +05:30
|
|
|
c = line[gl->matched_range.rm_eo];
|
2007-02-25 08:08:20 +05:30
|
|
|
if (!c || (!isalnum(c) && c != '_'))
|
2007-09-10 17:48:32 +05:30
|
|
|
found = 1;
|
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) {
|
|
|
|
char old = line[gl->matched_range.rm_eo];
|
2008-08-09 21:45:14 +05:30
|
|
|
line[gl->matched_range.rm_eo] = '\0';
|
|
|
|
print_line(line + gl->matched_range.rm_so,
|
|
|
|
gl->matched_range.rm_eo - gl->matched_range.rm_so,
|
|
|
|
linenum, ':');
|
2008-10-01 04:07:29 +05:30
|
|
|
line[gl->matched_range.rm_eo] = old;
|
|
|
|
#if !ENABLE_EXTRA_COMPAT
|
|
|
|
break;
|
|
|
|
#else
|
|
|
|
if (re_search(&gl->compiled_regex, line, line_len,
|
2008-11-24 18:55:20 +05:30
|
|
|
gl->matched_range.rm_eo, line_len - gl->matched_range.rm_eo,
|
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;
|
2008-08-09 21:45:14 +05:30
|
|
|
USE_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)
|
|
|
|
&& !print_n_lines_after && nmatches == max_matches)
|
|
|
|
break;
|
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
|
|
|
|
gl->flg_mem_alocated_compiled = flg_used_mem;
|
|
|
|
#else
|
2007-09-10 17:48:32 +05:30
|
|
|
/*gl->flg_mem_alocated_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
|
|
|
{
|
|
|
|
char *line;
|
2003-06-20 14:31:58 +05:30
|
|
|
FILE *f;
|
|
|
|
|
2006-09-30 02:34:12 +05:30
|
|
|
while (fopt) {
|
2003-06-20 14:31:58 +05:30
|
|
|
llist_t *cur = fopt;
|
|
|
|
char *ffile = cur->data;
|
|
|
|
|
|
|
|
fopt = cur->link;
|
|
|
|
free(cur);
|
2008-06-07 10:49:31 +05:30
|
|
|
f = xfopen_stdin(ffile);
|
2008-03-27 01:34:27 +05:30
|
|
|
while ((line = xmalloc_fgetline(f)) != 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
|
|
|
}
|
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 |
|
|
|
|
/* followLinks=no */
|
|
|
|
/* 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;
|
2006-03-07 02:17:33 +05:30
|
|
|
int grep_main(int argc, 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;
|
2001-10-29 21:19:03 +05:30
|
|
|
|
2000-06-29 03:30:26 +05:30
|
|
|
/* do normal option parsing */
|
2005-09-23 21:08:49 +05:30
|
|
|
#if ENABLE_FEATURE_GREP_CONTEXT
|
2008-03-17 14:39:09 +05:30
|
|
|
int Copt;
|
2003-06-20 14:31:58 +05:30
|
|
|
|
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 */
|
|
|
|
opt_complementary = "H-h:C-AB:e::f::m+:A+:B+:C+";
|
2007-08-18 21:02:12 +05:30
|
|
|
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
|
|
|
|
2007-02-25 08:08:20 +05:30
|
|
|
if (option_mask32 & OPT_C) {
|
2006-10-22 17:12:51 +05:30
|
|
|
/* -C unsets prev -A and -B, but following -A or -B
|
|
|
|
may override it */
|
2007-02-25 08:08:20 +05:30
|
|
|
if (!(option_mask32 & OPT_A)) /* not overridden */
|
2008-03-17 14:39:09 +05:30
|
|
|
lines_after = Copt;
|
2007-02-25 08:08:20 +05:30
|
|
|
if (!(option_mask32 & 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 */
|
2007-02-25 08:08:20 +05:30
|
|
|
if (option_mask32 & (OPT_c|OPT_q|OPT_l|OPT_L)) {
|
|
|
|
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) {
|
|
|
|
before_buf = xzalloc(lines_before * sizeof(before_buf[0]));
|
|
|
|
USE_EXTRA_COMPAT(before_buf_size = xzalloc(lines_before * sizeof(before_buf_size[0]));)
|
|
|
|
}
|
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 */
|
|
|
|
opt_complementary = "H-h:c-n:q-n:l-n:e::f::m+";
|
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
|
|
|
|
2006-02-28 15:40:19 +05:30
|
|
|
if (pattern_head != NULL) {
|
2007-04-05 02:22:03 +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);
|
|
|
|
}
|
2007-02-25 08:08:20 +05:30
|
|
|
if (option_mask32 & OPT_f)
|
2003-06-20 14:31:58 +05:30
|
|
|
load_regexes_from_file(fopt);
|
|
|
|
|
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
|
2007-02-25 08:08:20 +05:30
|
|
|
if (!(option_mask32 & (OPT_o | OPT_w)))
|
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;
|
|
|
|
argc -= 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);
|
|
|
|
argc--;
|
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. */
|
2006-10-22 17:12:51 +05:30
|
|
|
if (argc > 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 {
|
2003-06-20 14:31:58 +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: ;
|
2007-09-10 17:48:32 +05:30
|
|
|
} while (--argc > 0);
|
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;
|
2008-06-07 10:49:31 +05:30
|
|
|
if (gl->flg_mem_alocated_compiled & ALLOCATED)
|
2006-02-28 15:40:19 +05:30
|
|
|
free(gl->pattern);
|
2008-06-07 10:49:31 +05:30
|
|
|
if (gl->flg_mem_alocated_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
|
|
|
}
|