| 74 |
#define OFFSET_SIZE 99 |
#define OFFSET_SIZE 99 |
| 75 |
|
|
| 76 |
#if BUFSIZ > 8192 |
#if BUFSIZ > 8192 |
| 77 |
#define MBUFTHIRD BUFSIZ |
#define PATBUFSIZE BUFSIZ |
| 78 |
#else |
#else |
| 79 |
#define MBUFTHIRD 8192 |
#define PATBUFSIZE 8192 |
| 80 |
#endif |
#endif |
| 81 |
|
|
| 82 |
/* Values for the "filenames" variable, which specifies options for file name |
/* Values for the "filenames" variable, which specifies options for file name |
| 135 |
static char *colour_option = NULL; |
static char *colour_option = NULL; |
| 136 |
static char *dee_option = NULL; |
static char *dee_option = NULL; |
| 137 |
static char *DEE_option = NULL; |
static char *DEE_option = NULL; |
| 138 |
|
static char *main_buffer = NULL; |
| 139 |
static char *newline = NULL; |
static char *newline = NULL; |
| 140 |
static char *pattern_filename = NULL; |
static char *pattern_filename = NULL; |
| 141 |
static char *stdin_name = (char *)"(standard input)"; |
static char *stdin_name = (char *)"(standard input)"; |
| 160 |
static int after_context = 0; |
static int after_context = 0; |
| 161 |
static int before_context = 0; |
static int before_context = 0; |
| 162 |
static int both_context = 0; |
static int both_context = 0; |
| 163 |
|
static int bufthird = PCREGREP_BUFSIZE; |
| 164 |
|
static int bufsize = 3*PCREGREP_BUFSIZE; |
| 165 |
static int dee_action = dee_READ; |
static int dee_action = dee_READ; |
| 166 |
static int DEE_action = DEE_READ; |
static int DEE_action = DEE_READ; |
| 167 |
static int error_count = 0; |
static int error_count = 0; |
| 169 |
static int only_matching = -1; |
static int only_matching = -1; |
| 170 |
static int process_options = 0; |
static int process_options = 0; |
| 171 |
|
|
| 172 |
|
#ifdef SUPPORT_PCREGREP_JIT |
| 173 |
|
static int study_options = PCRE_STUDY_JIT_COMPILE; |
| 174 |
|
#else |
| 175 |
|
static int study_options = 0; |
| 176 |
|
#endif |
| 177 |
|
|
| 178 |
static unsigned long int match_limit = 0; |
static unsigned long int match_limit = 0; |
| 179 |
static unsigned long int match_limit_recursion = 0; |
static unsigned long int match_limit_recursion = 0; |
| 180 |
|
|
| 223 |
#define N_LBUFFER (-12) |
#define N_LBUFFER (-12) |
| 224 |
#define N_M_LIMIT (-13) |
#define N_M_LIMIT (-13) |
| 225 |
#define N_M_LIMIT_REC (-14) |
#define N_M_LIMIT_REC (-14) |
| 226 |
|
#define N_BUFSIZE (-15) |
| 227 |
|
#define N_NOJIT (-16) |
| 228 |
|
|
| 229 |
static option_item optionlist[] = { |
static option_item optionlist[] = { |
| 230 |
{ OP_NODATA, N_NULL, NULL, "", " terminate options" }, |
{ OP_NODATA, N_NULL, NULL, "", " terminate options" }, |
| 231 |
{ OP_NODATA, N_HELP, NULL, "help", "display this help and exit" }, |
{ OP_NODATA, N_HELP, NULL, "help", "display this help and exit" }, |
| 232 |
{ OP_NUMBER, 'A', &after_context, "after-context=number", "set number of following context lines" }, |
{ OP_NUMBER, 'A', &after_context, "after-context=number", "set number of following context lines" }, |
| 233 |
{ OP_NUMBER, 'B', &before_context, "before-context=number", "set number of prior context lines" }, |
{ OP_NUMBER, 'B', &before_context, "before-context=number", "set number of prior context lines" }, |
| 234 |
|
{ OP_NUMBER, N_BUFSIZE,&bufthird, "buffer-size=number", "set processing buffer size parameter" }, |
| 235 |
{ OP_OP_STRING, N_COLOUR, &colour_option, "color=option", "matched text color option" }, |
{ OP_OP_STRING, N_COLOUR, &colour_option, "color=option", "matched text color option" }, |
| 236 |
{ OP_OP_STRING, N_COLOUR, &colour_option, "colour=option", "matched text colour option" }, |
{ OP_OP_STRING, N_COLOUR, &colour_option, "colour=option", "matched text colour option" }, |
| 237 |
{ OP_NUMBER, 'C', &both_context, "context=number", "set number of context lines, before & after" }, |
{ OP_NUMBER, 'C', &both_context, "context=number", "set number of context lines, before & after" }, |
| 245 |
{ OP_NODATA, 'H', NULL, "with-filename", "force the prefixing filename on output" }, |
{ OP_NODATA, 'H', NULL, "with-filename", "force the prefixing filename on output" }, |
| 246 |
{ OP_NODATA, 'h', NULL, "no-filename", "suppress the prefixing filename on output" }, |
{ OP_NODATA, 'h', NULL, "no-filename", "suppress the prefixing filename on output" }, |
| 247 |
{ OP_NODATA, 'i', NULL, "ignore-case", "ignore case distinctions" }, |
{ OP_NODATA, 'i', NULL, "ignore-case", "ignore case distinctions" }, |
| 248 |
|
#ifdef SUPPORT_PCREGREP_JIT |
| 249 |
|
{ OP_NODATA, N_NOJIT, NULL, "no-jit", "do not use just-in-time compiler optimization" }, |
| 250 |
|
#else |
| 251 |
|
{ OP_NODATA, N_NOJIT, NULL, "no-jit", "ignored: this pcregrep does not support JIT" }, |
| 252 |
|
#endif |
| 253 |
{ OP_NODATA, 'l', NULL, "files-with-matches", "print only FILE names containing matches" }, |
{ OP_NODATA, 'l', NULL, "files-with-matches", "print only FILE names containing matches" }, |
| 254 |
{ OP_NODATA, 'L', NULL, "files-without-match","print only FILE names not containing matches" }, |
{ OP_NODATA, 'L', NULL, "files-without-match","print only FILE names not containing matches" }, |
| 255 |
{ OP_STRING, N_LABEL, &stdin_name, "label=name", "set name for standard input" }, |
{ OP_STRING, N_LABEL, &stdin_name, "label=name", "set name for standard input" }, |
| 327 |
{ |
{ |
| 328 |
if (resource_error) |
if (resource_error) |
| 329 |
{ |
{ |
| 330 |
fprintf(stderr, "pcregrep: Error %d or %d means that a resource limit " |
fprintf(stderr, "pcregrep: Error %d, %d or %d means that a resource limit " |
| 331 |
"was exceeded.\n", PCRE_ERROR_MATCHLIMIT, PCRE_ERROR_RECURSIONLIMIT); |
"was exceeded.\n", PCRE_ERROR_MATCHLIMIT, PCRE_ERROR_RECURSIONLIMIT, |
| 332 |
|
PCRE_ERROR_JIT_STACKLIMIT); |
| 333 |
fprintf(stderr, "pcregrep: Check your regex for nested unlimited loops.\n"); |
fprintf(stderr, "pcregrep: Check your regex for nested unlimited loops.\n"); |
| 334 |
} |
} |
| 335 |
|
|
| 652 |
endptr end of available data |
endptr end of available data |
| 653 |
lenptr where to put the length of the eol sequence |
lenptr where to put the length of the eol sequence |
| 654 |
|
|
| 655 |
Returns: pointer to the last byte of the line, including the newline byte(s) |
Returns: pointer after the last byte of the line, |
| 656 |
|
including the newline byte(s) |
| 657 |
*/ |
*/ |
| 658 |
|
|
| 659 |
static char * |
static char * |
| 954 |
to find all possible matches. |
to find all possible matches. |
| 955 |
|
|
| 956 |
Arguments: |
Arguments: |
| 957 |
matchptr the start of the subject |
matchptr the start of the subject |
| 958 |
length the length of the subject to match |
length the length of the subject to match |
| 959 |
offsets the offets vector to fill in |
startoffset where to start matching |
| 960 |
mrc address of where to put the result of pcre_exec() |
offsets the offets vector to fill in |
| 961 |
|
mrc address of where to put the result of pcre_exec() |
| 962 |
|
|
| 963 |
Returns: TRUE if there was a match |
Returns: TRUE if there was a match |
| 964 |
FALSE if there was no match |
FALSE if there was no match |
| 966 |
*/ |
*/ |
| 967 |
|
|
| 968 |
static BOOL |
static BOOL |
| 969 |
match_patterns(char *matchptr, size_t length, int *offsets, int *mrc) |
match_patterns(char *matchptr, size_t length, int startoffset, int *offsets, |
| 970 |
|
int *mrc) |
| 971 |
{ |
{ |
| 972 |
int i; |
int i; |
| 973 |
size_t slen = length; |
size_t slen = length; |
| 979 |
} |
} |
| 980 |
for (i = 0; i < pattern_count; i++) |
for (i = 0; i < pattern_count; i++) |
| 981 |
{ |
{ |
| 982 |
*mrc = pcre_exec(pattern_list[i], hints_list[i], matchptr, (int)length, 0, |
*mrc = pcre_exec(pattern_list[i], hints_list[i], matchptr, (int)length, |
| 983 |
PCRE_NOTEMPTY, offsets, OFFSET_SIZE); |
startoffset, PCRE_NOTEMPTY, offsets, OFFSET_SIZE); |
| 984 |
if (*mrc >= 0) return TRUE; |
if (*mrc >= 0) return TRUE; |
| 985 |
if (*mrc == PCRE_ERROR_NOMATCH) continue; |
if (*mrc == PCRE_ERROR_NOMATCH) continue; |
| 986 |
fprintf(stderr, "pcregrep: pcre_exec() gave error %d while matching ", *mrc); |
fprintf(stderr, "pcregrep: pcre_exec() gave error %d while matching ", *mrc); |
| 988 |
fprintf(stderr, "%s", msg); |
fprintf(stderr, "%s", msg); |
| 989 |
FWRITE(matchptr, 1, slen, stderr); /* In case binary zero included */ |
FWRITE(matchptr, 1, slen, stderr); /* In case binary zero included */ |
| 990 |
fprintf(stderr, "\n\n"); |
fprintf(stderr, "\n\n"); |
| 991 |
if (*mrc == PCRE_ERROR_MATCHLIMIT || *mrc == PCRE_ERROR_RECURSIONLIMIT) |
if (*mrc == PCRE_ERROR_MATCHLIMIT || *mrc == PCRE_ERROR_RECURSIONLIMIT || |
| 992 |
|
*mrc == PCRE_ERROR_JIT_STACKLIMIT) |
| 993 |
resource_error = TRUE; |
resource_error = TRUE; |
| 994 |
if (error_count++ > 20) |
if (error_count++ > 20) |
| 995 |
{ |
{ |
| 1009 |
*************************************************/ |
*************************************************/ |
| 1010 |
|
|
| 1011 |
/* This is called from grep_or_recurse() below. It uses a buffer that is three |
/* This is called from grep_or_recurse() below. It uses a buffer that is three |
| 1012 |
times the value of MBUFTHIRD. The matching point is never allowed to stray into |
times the value of bufthird. The matching point is never allowed to stray into |
| 1013 |
the top third of the buffer, thus keeping more of the file available for |
the top third of the buffer, thus keeping more of the file available for |
| 1014 |
context printing or for multiline scanning. For large files, the pointer will |
context printing or for multiline scanning. For large files, the pointer will |
| 1015 |
be in the middle third most of the time, so the bottom third is available for |
be in the middle third most of the time, so the bottom third is available for |
| 1020 |
the gzFile pointer when reading is via libz |
the gzFile pointer when reading is via libz |
| 1021 |
the BZFILE pointer when reading is via libbz2 |
the BZFILE pointer when reading is via libbz2 |
| 1022 |
frtype FR_PLAIN, FR_LIBZ, or FR_LIBBZ2 |
frtype FR_PLAIN, FR_LIBZ, or FR_LIBBZ2 |
| 1023 |
|
filename the file name or NULL (for errors) |
| 1024 |
printname the file name if it is to be printed for each match |
printname the file name if it is to be printed for each match |
| 1025 |
or NULL if the file name is not to be printed |
or NULL if the file name is not to be printed |
| 1026 |
it cannot be NULL if filenames[_nomatch]_only is set |
it cannot be NULL if filenames[_nomatch]_only is set |
| 1027 |
|
|
| 1028 |
Returns: 0 if there was at least one match |
Returns: 0 if there was at least one match |
| 1029 |
1 otherwise (no matches) |
1 otherwise (no matches) |
| 1030 |
2 if there is a read error on a .bz2 file |
2 if an overlong line is encountered |
| 1031 |
|
3 if there is a read error on a .bz2 file |
| 1032 |
*/ |
*/ |
| 1033 |
|
|
| 1034 |
static int |
static int |
| 1035 |
pcregrep(void *handle, int frtype, char *printname) |
pcregrep(void *handle, int frtype, char *filename, char *printname) |
| 1036 |
{ |
{ |
| 1037 |
int rc = 1; |
int rc = 1; |
| 1038 |
int linenumber = 1; |
int linenumber = 1; |
| 1041 |
int filepos = 0; |
int filepos = 0; |
| 1042 |
int offsets[OFFSET_SIZE]; |
int offsets[OFFSET_SIZE]; |
| 1043 |
char *lastmatchrestart = NULL; |
char *lastmatchrestart = NULL; |
| 1044 |
char buffer[3*MBUFTHIRD]; |
char *ptr = main_buffer; |
|
char *ptr = buffer; |
|
| 1045 |
char *endptr; |
char *endptr; |
| 1046 |
size_t bufflength; |
size_t bufflength; |
| 1047 |
BOOL endhyphenpending = FALSE; |
BOOL endhyphenpending = FALSE; |
| 1066 |
if (frtype == FR_LIBZ) |
if (frtype == FR_LIBZ) |
| 1067 |
{ |
{ |
| 1068 |
ingz = (gzFile)handle; |
ingz = (gzFile)handle; |
| 1069 |
bufflength = gzread (ingz, buffer, 3*MBUFTHIRD); |
bufflength = gzread (ingz, main_buffer, bufsize); |
| 1070 |
} |
} |
| 1071 |
else |
else |
| 1072 |
#endif |
#endif |
| 1075 |
if (frtype == FR_LIBBZ2) |
if (frtype == FR_LIBBZ2) |
| 1076 |
{ |
{ |
| 1077 |
inbz2 = (BZFILE *)handle; |
inbz2 = (BZFILE *)handle; |
| 1078 |
bufflength = BZ2_bzread(inbz2, buffer, 3*MBUFTHIRD); |
bufflength = BZ2_bzread(inbz2, main_buffer, bufsize); |
| 1079 |
if ((int)bufflength < 0) return 2; /* Gotcha: bufflength is size_t; */ |
if ((int)bufflength < 0) return 2; /* Gotcha: bufflength is size_t; */ |
| 1080 |
} /* without the cast it is unsigned. */ |
} /* without the cast it is unsigned. */ |
| 1081 |
else |
else |
| 1085 |
in = (FILE *)handle; |
in = (FILE *)handle; |
| 1086 |
if (is_file_tty(in)) input_line_buffered = TRUE; |
if (is_file_tty(in)) input_line_buffered = TRUE; |
| 1087 |
bufflength = input_line_buffered? |
bufflength = input_line_buffered? |
| 1088 |
read_one_line(buffer, 3*MBUFTHIRD, in) : |
read_one_line(main_buffer, bufsize, in) : |
| 1089 |
fread(buffer, 1, 3*MBUFTHIRD, in); |
fread(main_buffer, 1, bufsize, in); |
| 1090 |
} |
} |
| 1091 |
|
|
| 1092 |
endptr = buffer + bufflength; |
endptr = main_buffer + bufflength; |
| 1093 |
|
|
| 1094 |
/* Loop while the current pointer is not at the end of the file. For large |
/* Loop while the current pointer is not at the end of the file. For large |
| 1095 |
files, endptr will be at the end of the buffer when we are in the middle of the |
files, endptr will be at the end of the buffer when we are in the middle of the |
| 1100 |
{ |
{ |
| 1101 |
int endlinelength; |
int endlinelength; |
| 1102 |
int mrc = 0; |
int mrc = 0; |
| 1103 |
|
int startoffset = 0; |
| 1104 |
BOOL match; |
BOOL match; |
| 1105 |
char *matchptr = ptr; |
char *matchptr = ptr; |
| 1106 |
char *t = ptr; |
char *t = ptr; |
| 1118 |
linelength = t - ptr - endlinelength; |
linelength = t - ptr - endlinelength; |
| 1119 |
length = multiline? (size_t)(endptr - ptr) : linelength; |
length = multiline? (size_t)(endptr - ptr) : linelength; |
| 1120 |
|
|
| 1121 |
|
/* Check to see if the line we are looking at extends right to the very end |
| 1122 |
|
of the buffer without a line terminator. This means the line is too long to |
| 1123 |
|
handle. */ |
| 1124 |
|
|
| 1125 |
|
if (endlinelength == 0 && t == main_buffer + bufsize) |
| 1126 |
|
{ |
| 1127 |
|
fprintf(stderr, "pcregrep: line %d%s%s is too long for the internal buffer\n" |
| 1128 |
|
"pcregrep: check the --buffer-size option\n", |
| 1129 |
|
linenumber, |
| 1130 |
|
(filename == NULL)? "" : " of file ", |
| 1131 |
|
(filename == NULL)? "" : filename); |
| 1132 |
|
return 2; |
| 1133 |
|
} |
| 1134 |
|
|
| 1135 |
/* Extra processing for Jeffrey Friedl's debugging. */ |
/* Extra processing for Jeffrey Friedl's debugging. */ |
| 1136 |
|
|
| 1137 |
#ifdef JFRIEDL_DEBUG |
#ifdef JFRIEDL_DEBUG |
| 1191 |
than NOMATCH. This code is in a subroutine so that it can be re-used for |
than NOMATCH. This code is in a subroutine so that it can be re-used for |
| 1192 |
finding subsequent matches when colouring matched lines. */ |
finding subsequent matches when colouring matched lines. */ |
| 1193 |
|
|
| 1194 |
match = match_patterns(matchptr, length, offsets, &mrc); |
match = match_patterns(matchptr, length, startoffset, offsets, &mrc); |
| 1195 |
|
|
| 1196 |
/* If it's a match or a not-match (as required), do what's wanted. */ |
/* If it's a match or a not-match (as required), do what's wanted. */ |
| 1197 |
|
|
| 1224 |
captured portion of it, as long as this string is not empty, and the |
captured portion of it, as long as this string is not empty, and the |
| 1225 |
--file-offsets and --line-offsets options output offsets for the matching |
--file-offsets and --line-offsets options output offsets for the matching |
| 1226 |
substring (they both force --only-matching = 0). None of these options |
substring (they both force --only-matching = 0). None of these options |
| 1227 |
prints any context. Afterwards, adjust the start and length, and then jump |
prints any context. Afterwards, adjust the start and then jump back to look |
| 1228 |
back to look for further matches in the same line. If we are in invert |
for further matches in the same line. If we are in invert mode, however, |
| 1229 |
mode, however, nothing is printed and we do not restart - this could still |
nothing is printed and we do not restart - this could still be useful |
| 1230 |
be useful because the return code is set. */ |
because the return code is set. */ |
| 1231 |
|
|
| 1232 |
else if (only_matching >= 0) |
else if (only_matching >= 0) |
| 1233 |
{ |
{ |
| 1254 |
} |
} |
| 1255 |
} |
} |
| 1256 |
else if (printname != NULL || number) fprintf(stdout, "\n"); |
else if (printname != NULL || number) fprintf(stdout, "\n"); |
|
matchptr += offsets[1]; |
|
|
length -= offsets[1]; |
|
| 1257 |
match = FALSE; |
match = FALSE; |
| 1258 |
if (line_buffered) fflush(stdout); |
if (line_buffered) fflush(stdout); |
| 1259 |
rc = 0; /* Had some success */ |
rc = 0; /* Had some success */ |
| 1260 |
|
startoffset = offsets[1]; /* Restart after the match */ |
| 1261 |
goto ONLY_MATCHING_RESTART; |
goto ONLY_MATCHING_RESTART; |
| 1262 |
} |
} |
| 1263 |
} |
} |
| 1316 |
int linecount = 0; |
int linecount = 0; |
| 1317 |
char *p = ptr; |
char *p = ptr; |
| 1318 |
|
|
| 1319 |
while (p > buffer && (lastmatchnumber == 0 || p > lastmatchrestart) && |
while (p > main_buffer && (lastmatchnumber == 0 || p > lastmatchrestart) && |
| 1320 |
linecount < before_context) |
linecount < before_context) |
| 1321 |
{ |
{ |
| 1322 |
linecount++; |
linecount++; |
| 1323 |
p = previous_line(p, buffer); |
p = previous_line(p, main_buffer); |
| 1324 |
} |
} |
| 1325 |
|
|
| 1326 |
if (lastmatchnumber > 0 && p > lastmatchrestart && !hyphenprinted) |
if (lastmatchnumber > 0 && p > lastmatchrestart && !hyphenprinted) |
| 1386 |
|
|
| 1387 |
/* We have to split the line(s) up if colouring, and search for further |
/* We have to split the line(s) up if colouring, and search for further |
| 1388 |
matches, but not of course if the line is a non-match. */ |
matches, but not of course if the line is a non-match. */ |
| 1389 |
|
|
| 1390 |
if (do_colour && !invert) |
if (do_colour && !invert) |
| 1391 |
{ |
{ |
| 1392 |
int plength; |
int plength; |
|
int last_offset = 0; |
|
| 1393 |
FWRITE(ptr, 1, offsets[0], stdout); |
FWRITE(ptr, 1, offsets[0], stdout); |
| 1394 |
fprintf(stdout, "%c[%sm", 0x1b, colour_string); |
fprintf(stdout, "%c[%sm", 0x1b, colour_string); |
| 1395 |
FWRITE(ptr + offsets[0], 1, offsets[1] - offsets[0], stdout); |
FWRITE(ptr + offsets[0], 1, offsets[1] - offsets[0], stdout); |
| 1396 |
fprintf(stdout, "%c[00m", 0x1b); |
fprintf(stdout, "%c[00m", 0x1b); |
| 1397 |
for (;;) |
for (;;) |
| 1398 |
{ |
{ |
| 1399 |
last_offset += offsets[1]; |
startoffset = offsets[1]; |
| 1400 |
matchptr += offsets[1]; |
if (startoffset >= (int)linelength + endlinelength || |
| 1401 |
length -= offsets[1]; |
!match_patterns(matchptr, length, startoffset, offsets, &mrc)) |
| 1402 |
if (last_offset >= linelength + endlinelength || |
break; |
| 1403 |
!match_patterns(matchptr, length, offsets, &mrc)) break; |
FWRITE(matchptr + startoffset, 1, offsets[0] - startoffset, stdout); |
|
FWRITE(matchptr, 1, offsets[0], stdout); |
|
| 1404 |
fprintf(stdout, "%c[%sm", 0x1b, colour_string); |
fprintf(stdout, "%c[%sm", 0x1b, colour_string); |
| 1405 |
FWRITE(matchptr + offsets[0], 1, offsets[1] - offsets[0], stdout); |
FWRITE(matchptr + offsets[0], 1, offsets[1] - offsets[0], stdout); |
| 1406 |
fprintf(stdout, "%c[00m", 0x1b); |
fprintf(stdout, "%c[00m", 0x1b); |
| 1407 |
} |
} |
| 1408 |
|
|
| 1409 |
/* In multiline mode, we may have already printed the complete line |
/* In multiline mode, we may have already printed the complete line |
| 1410 |
and its line-ending characters (if they matched the pattern), so there |
and its line-ending characters (if they matched the pattern), so there |
| 1411 |
may be no more to print. */ |
may be no more to print. */ |
| 1412 |
|
|
| 1413 |
plength = (linelength + endlinelength) - last_offset; |
plength = (linelength + endlinelength) - startoffset; |
| 1414 |
if (plength > 0) |
if (plength > 0) FWRITE(ptr + startoffset, 1, plength, stdout); |
|
FWRITE(ptr + last_offset, 1, plength, stdout); |
|
| 1415 |
} |
} |
| 1416 |
|
|
| 1417 |
/* Not colouring; no need to search for further matches */ |
/* Not colouring; no need to search for further matches */ |
| 1460 |
/* If input is line buffered, and the buffer is not yet full, read another |
/* If input is line buffered, and the buffer is not yet full, read another |
| 1461 |
line and add it into the buffer. */ |
line and add it into the buffer. */ |
| 1462 |
|
|
| 1463 |
if (input_line_buffered && bufflength < sizeof(buffer)) |
if (input_line_buffered && bufflength < (size_t)bufsize) |
| 1464 |
{ |
{ |
| 1465 |
int add = read_one_line(ptr, sizeof(buffer) - (ptr - buffer), in); |
int add = read_one_line(ptr, bufsize - (ptr - main_buffer), in); |
| 1466 |
bufflength += add; |
bufflength += add; |
| 1467 |
endptr += add; |
endptr += add; |
| 1468 |
} |
} |
| 1472 |
1/3 and refill it. Before we do this, if some unprinted "after" lines are |
1/3 and refill it. Before we do this, if some unprinted "after" lines are |
| 1473 |
about to be lost, print them. */ |
about to be lost, print them. */ |
| 1474 |
|
|
| 1475 |
if (bufflength >= sizeof(buffer) && ptr > buffer + 2*MBUFTHIRD) |
if (bufflength >= (size_t)bufsize && ptr > main_buffer + 2*bufthird) |
| 1476 |
{ |
{ |
| 1477 |
if (after_context > 0 && |
if (after_context > 0 && |
| 1478 |
lastmatchnumber > 0 && |
lastmatchnumber > 0 && |
| 1479 |
lastmatchrestart < buffer + MBUFTHIRD) |
lastmatchrestart < main_buffer + bufthird) |
| 1480 |
{ |
{ |
| 1481 |
do_after_lines(lastmatchnumber, lastmatchrestart, endptr, printname); |
do_after_lines(lastmatchnumber, lastmatchrestart, endptr, printname); |
| 1482 |
lastmatchnumber = 0; |
lastmatchnumber = 0; |
| 1484 |
|
|
| 1485 |
/* Now do the shuffle */ |
/* Now do the shuffle */ |
| 1486 |
|
|
| 1487 |
memmove(buffer, buffer + MBUFTHIRD, 2*MBUFTHIRD); |
memmove(main_buffer, main_buffer + bufthird, 2*bufthird); |
| 1488 |
ptr -= MBUFTHIRD; |
ptr -= bufthird; |
| 1489 |
|
|
| 1490 |
#ifdef SUPPORT_LIBZ |
#ifdef SUPPORT_LIBZ |
| 1491 |
if (frtype == FR_LIBZ) |
if (frtype == FR_LIBZ) |
| 1492 |
bufflength = 2*MBUFTHIRD + |
bufflength = 2*bufthird + |
| 1493 |
gzread (ingz, buffer + 2*MBUFTHIRD, MBUFTHIRD); |
gzread (ingz, main_buffer + 2*bufthird, bufthird); |
| 1494 |
else |
else |
| 1495 |
#endif |
#endif |
| 1496 |
|
|
| 1497 |
#ifdef SUPPORT_LIBBZ2 |
#ifdef SUPPORT_LIBBZ2 |
| 1498 |
if (frtype == FR_LIBBZ2) |
if (frtype == FR_LIBBZ2) |
| 1499 |
bufflength = 2*MBUFTHIRD + |
bufflength = 2*bufthird + |
| 1500 |
BZ2_bzread(inbz2, buffer + 2*MBUFTHIRD, MBUFTHIRD); |
BZ2_bzread(inbz2, main_buffer + 2*bufthird, bufthird); |
| 1501 |
else |
else |
| 1502 |
#endif |
#endif |
| 1503 |
|
|
| 1504 |
bufflength = 2*MBUFTHIRD + |
bufflength = 2*bufthird + |
| 1505 |
(input_line_buffered? |
(input_line_buffered? |
| 1506 |
read_one_line(buffer + 2*MBUFTHIRD, MBUFTHIRD, in) : |
read_one_line(main_buffer + 2*bufthird, bufthird, in) : |
| 1507 |
fread(buffer + 2*MBUFTHIRD, 1, MBUFTHIRD, in)); |
fread(main_buffer + 2*bufthird, 1, bufthird, in)); |
| 1508 |
endptr = buffer + bufflength; |
endptr = main_buffer + bufflength; |
| 1509 |
|
|
| 1510 |
/* Adjust any last match point */ |
/* Adjust any last match point */ |
| 1511 |
|
|
| 1512 |
if (lastmatchnumber > 0) lastmatchrestart -= MBUFTHIRD; |
if (lastmatchnumber > 0) lastmatchrestart -= bufthird; |
| 1513 |
} |
} |
| 1514 |
} /* Loop through the whole file */ |
} /* Loop through the whole file */ |
| 1515 |
|
|
| 1589 |
|
|
| 1590 |
if (strcmp(pathname, "-") == 0) |
if (strcmp(pathname, "-") == 0) |
| 1591 |
{ |
{ |
| 1592 |
return pcregrep(stdin, FR_PLAIN, |
return pcregrep(stdin, FR_PLAIN, stdin_name, |
| 1593 |
(filenames > FN_DEFAULT || (filenames == FN_DEFAULT && !only_one_at_top))? |
(filenames > FN_DEFAULT || (filenames == FN_DEFAULT && !only_one_at_top))? |
| 1594 |
stdin_name : NULL); |
stdin_name : NULL); |
| 1595 |
} |
} |
| 1721 |
|
|
| 1722 |
/* Now grep the file */ |
/* Now grep the file */ |
| 1723 |
|
|
| 1724 |
rc = pcregrep(handle, frtype, (filenames > FN_DEFAULT || |
rc = pcregrep(handle, frtype, pathname, (filenames > FN_DEFAULT || |
| 1725 |
(filenames == FN_DEFAULT && !only_one_at_top))? pathname : NULL); |
(filenames == FN_DEFAULT && !only_one_at_top))? pathname : NULL); |
| 1726 |
|
|
| 1727 |
/* Close in an appropriate manner. */ |
/* Close in an appropriate manner. */ |
| 1732 |
else |
else |
| 1733 |
#endif |
#endif |
| 1734 |
|
|
| 1735 |
/* If it is a .bz2 file and the result is 2, it means that the first attempt to |
/* If it is a .bz2 file and the result is 3, it means that the first attempt to |
| 1736 |
read failed. If the error indicates that the file isn't in fact bzipped, try |
read failed. If the error indicates that the file isn't in fact bzipped, try |
| 1737 |
again as a normal file. */ |
again as a normal file. */ |
| 1738 |
|
|
| 1739 |
#ifdef SUPPORT_LIBBZ2 |
#ifdef SUPPORT_LIBBZ2 |
| 1740 |
if (frtype == FR_LIBBZ2) |
if (frtype == FR_LIBBZ2) |
| 1741 |
{ |
{ |
| 1742 |
if (rc == 2) |
if (rc == 3) |
| 1743 |
{ |
{ |
| 1744 |
int errnum; |
int errnum; |
| 1745 |
const char *err = BZ2_bzerror(inbz2, &errnum); |
const char *err = BZ2_bzerror(inbz2, &errnum); |
| 1751 |
else if (!silent) |
else if (!silent) |
| 1752 |
fprintf(stderr, "pcregrep: Failed to read %s using bzlib: %s\n", |
fprintf(stderr, "pcregrep: Failed to read %s using bzlib: %s\n", |
| 1753 |
pathname, err); |
pathname, err); |
| 1754 |
|
rc = 2; /* The normal "something went wrong" code */ |
| 1755 |
} |
} |
| 1756 |
BZ2_bzclose(inbz2); |
BZ2_bzclose(inbz2); |
| 1757 |
} |
} |
| 1844 |
printf("%.*s%s\n", n, " ", op->help_text); |
printf("%.*s%s\n", n, " ", op->help_text); |
| 1845 |
} |
} |
| 1846 |
|
|
| 1847 |
printf("\nWhen reading patterns from a file instead of using a command line option,\n"); |
printf("\nNumbers may be followed by K or M, e.g. --buffer-size=100K.\n"); |
| 1848 |
|
printf("The default value for --buffer-size is %d.\n", PCREGREP_BUFSIZE); |
| 1849 |
|
printf("When reading patterns from a file instead of using a command line option,\n"); |
| 1850 |
printf("trailing white space is removed and blank lines are ignored.\n"); |
printf("trailing white space is removed and blank lines are ignored.\n"); |
| 1851 |
printf("There is a maximum of %d patterns.\n", MAX_PATTERN_COUNT); |
printf("There is a maximum of %d patterns, each of maximum size %d bytes.\n", |
| 1852 |
|
MAX_PATTERN_COUNT, PATBUFSIZE); |
| 1853 |
|
|
| 1854 |
printf("\nWith no FILEs, read standard input. If fewer than two FILEs given, assume -h.\n"); |
printf("\nWith no FILEs, read standard input. If fewer than two FILEs given, assume -h.\n"); |
| 1855 |
printf("Exit status is 0 if any matches, 1 if no matches, and 2 if trouble.\n"); |
printf("Exit status is 0 if any matches, 1 if no matches, and 2 if trouble.\n"); |
| 1869 |
{ |
{ |
| 1870 |
case N_FOFFSETS: file_offsets = TRUE; break; |
case N_FOFFSETS: file_offsets = TRUE; break; |
| 1871 |
case N_HELP: help(); pcregrep_exit(0); |
case N_HELP: help(); pcregrep_exit(0); |
|
case N_LOFFSETS: line_offsets = number = TRUE; break; |
|
| 1872 |
case N_LBUFFER: line_buffered = TRUE; break; |
case N_LBUFFER: line_buffered = TRUE; break; |
| 1873 |
|
case N_LOFFSETS: line_offsets = number = TRUE; break; |
| 1874 |
|
case N_NOJIT: study_options &= ~PCRE_STUDY_JIT_COMPILE; break; |
| 1875 |
case 'c': count_only = TRUE; break; |
case 'c': count_only = TRUE; break; |
| 1876 |
case 'F': process_options |= PO_FIXED_STRINGS; break; |
case 'F': process_options |= PO_FIXED_STRINGS; break; |
| 1877 |
case 'H': filenames = FN_FORCE; break; |
case 'H': filenames = FN_FORCE; break; |
| 1952 |
static BOOL |
static BOOL |
| 1953 |
compile_single_pattern(char *pattern, int options, char *filename, int count) |
compile_single_pattern(char *pattern, int options, char *filename, int count) |
| 1954 |
{ |
{ |
| 1955 |
char buffer[MBUFTHIRD + 16]; |
char buffer[PATBUFSIZE]; |
| 1956 |
const char *error; |
const char *error; |
| 1957 |
int errptr; |
int errptr; |
| 1958 |
|
|
| 1963 |
return FALSE; |
return FALSE; |
| 1964 |
} |
} |
| 1965 |
|
|
| 1966 |
sprintf(buffer, "%s%.*s%s", prefix[process_options], MBUFTHIRD, pattern, |
sprintf(buffer, "%s%.*s%s", prefix[process_options], bufthird, pattern, |
| 1967 |
suffix[process_options]); |
suffix[process_options]); |
| 1968 |
pattern_list[pattern_count] = |
pattern_list[pattern_count] = |
| 1969 |
pcre_compile(buffer, options, &error, &errptr, pcretables); |
pcre_compile(buffer, options, &error, &errptr, pcretables); |
| 2022 |
if ((process_options & PO_FIXED_STRINGS) != 0) |
if ((process_options & PO_FIXED_STRINGS) != 0) |
| 2023 |
{ |
{ |
| 2024 |
char *eop = pattern + strlen(pattern); |
char *eop = pattern + strlen(pattern); |
| 2025 |
char buffer[MBUFTHIRD]; |
char buffer[PATBUFSIZE]; |
| 2026 |
for(;;) |
for(;;) |
| 2027 |
{ |
{ |
| 2028 |
int ellength; |
int ellength; |
| 2060 |
const char *locale_from = "--locale"; |
const char *locale_from = "--locale"; |
| 2061 |
const char *error; |
const char *error; |
| 2062 |
|
|
| 2063 |
|
#ifdef SUPPORT_PCREGREP_JIT |
| 2064 |
|
pcre_jit_stack *jit_stack = NULL; |
| 2065 |
|
#endif |
| 2066 |
|
|
| 2067 |
/* Set the default line ending value from the default in the PCRE library; |
/* Set the default line ending value from the default in the PCRE library; |
| 2068 |
"lf", "cr", "crlf", and "any" are supported. Anything else is treated as "lf". |
"lf", "cr", "crlf", and "any" are supported. Anything else is treated as "lf". |
| 2069 |
Note that the return values from pcre_config(), though derived from the ASCII |
Note that the return values from pcre_config(), though derived from the ASCII |
| 2338 |
while (*endptr != 0 && isspace((unsigned char)(*endptr))) endptr++; |
while (*endptr != 0 && isspace((unsigned char)(*endptr))) endptr++; |
| 2339 |
while (isdigit((unsigned char)(*endptr))) |
while (isdigit((unsigned char)(*endptr))) |
| 2340 |
n = n * 10 + (int)(*endptr++ - '0'); |
n = n * 10 + (int)(*endptr++ - '0'); |
| 2341 |
|
if (toupper(*endptr) == 'K') |
| 2342 |
|
{ |
| 2343 |
|
n *= 1024; |
| 2344 |
|
endptr++; |
| 2345 |
|
} |
| 2346 |
|
else if (toupper(*endptr) == 'M') |
| 2347 |
|
{ |
| 2348 |
|
n *= 1024*1024; |
| 2349 |
|
endptr++; |
| 2350 |
|
} |
| 2351 |
if (*endptr != 0) |
if (*endptr != 0) |
| 2352 |
{ |
{ |
| 2353 |
if (longop) |
if (longop) |
| 2514 |
} |
} |
| 2515 |
#endif |
#endif |
| 2516 |
|
|
| 2517 |
/* Get memory to store the pattern and hints lists. */ |
/* Get memory for the main buffer, and to store the pattern and hints lists. */ |
| 2518 |
|
|
| 2519 |
|
bufsize = 3*bufthird; |
| 2520 |
|
main_buffer = (char *)malloc(bufsize); |
| 2521 |
pattern_list = (pcre **)malloc(MAX_PATTERN_COUNT * sizeof(pcre *)); |
pattern_list = (pcre **)malloc(MAX_PATTERN_COUNT * sizeof(pcre *)); |
| 2522 |
hints_list = (pcre_extra **)malloc(MAX_PATTERN_COUNT * sizeof(pcre_extra *)); |
hints_list = (pcre_extra **)malloc(MAX_PATTERN_COUNT * sizeof(pcre_extra *)); |
| 2523 |
|
|
| 2524 |
if (pattern_list == NULL || hints_list == NULL) |
if (main_buffer == NULL || pattern_list == NULL || hints_list == NULL) |
| 2525 |
{ |
{ |
| 2526 |
fprintf(stderr, "pcregrep: malloc failed\n"); |
fprintf(stderr, "pcregrep: malloc failed\n"); |
| 2527 |
goto EXIT2; |
goto EXIT2; |
| 2553 |
int linenumber = 0; |
int linenumber = 0; |
| 2554 |
FILE *f; |
FILE *f; |
| 2555 |
char *filename; |
char *filename; |
| 2556 |
char buffer[MBUFTHIRD]; |
char buffer[PATBUFSIZE]; |
| 2557 |
|
|
| 2558 |
if (strcmp(pattern_filename, "-") == 0) |
if (strcmp(pattern_filename, "-") == 0) |
| 2559 |
{ |
{ |
| 2572 |
filename = pattern_filename; |
filename = pattern_filename; |
| 2573 |
} |
} |
| 2574 |
|
|
| 2575 |
while (fgets(buffer, MBUFTHIRD, f) != NULL) |
while (fgets(buffer, PATBUFSIZE, f) != NULL) |
| 2576 |
{ |
{ |
| 2577 |
char *s = buffer + (int)strlen(buffer); |
char *s = buffer + (int)strlen(buffer); |
| 2578 |
while (s > buffer && isspace((unsigned char)(s[-1]))) s--; |
while (s > buffer && isspace((unsigned char)(s[-1]))) s--; |
| 2586 |
if (f != stdin) fclose(f); |
if (f != stdin) fclose(f); |
| 2587 |
} |
} |
| 2588 |
|
|
| 2589 |
/* Study the regular expressions, as we will be running them many times */ |
/* Study the regular expressions, as we will be running them many times. Unless |
| 2590 |
|
JIT has been explicitly disabled, arrange a stack for it to use. */ |
| 2591 |
|
|
| 2592 |
|
#ifdef SUPPORT_PCREGREP_JIT |
| 2593 |
|
if ((study_options & PCRE_STUDY_JIT_COMPILE) != 0) |
| 2594 |
|
jit_stack = pcre_jit_stack_alloc(32*1024, 1024*1024); |
| 2595 |
|
#endif |
| 2596 |
|
|
| 2597 |
for (j = 0; j < pattern_count; j++) |
for (j = 0; j < pattern_count; j++) |
| 2598 |
{ |
{ |
| 2599 |
hints_list[j] = pcre_study(pattern_list[j], 0, &error); |
hints_list[j] = pcre_study(pattern_list[j], study_options, &error); |
| 2600 |
if (error != NULL) |
if (error != NULL) |
| 2601 |
{ |
{ |
| 2602 |
char s[16]; |
char s[16]; |
| 2605 |
goto EXIT2; |
goto EXIT2; |
| 2606 |
} |
} |
| 2607 |
hint_count++; |
hint_count++; |
| 2608 |
|
#ifdef SUPPORT_PCREGREP_JIT |
| 2609 |
|
if (jit_stack != NULL && hints_list[j] != NULL) |
| 2610 |
|
pcre_assign_jit_stack(hints_list[j], NULL, jit_stack); |
| 2611 |
|
#endif |
| 2612 |
} |
} |
| 2613 |
|
|
| 2614 |
/* If --match-limit or --recursion-limit was set, put the value(s) into the |
/* If --match-limit or --recursion-limit was set, put the value(s) into the |
| 2694 |
|
|
| 2695 |
if (i >= argc) |
if (i >= argc) |
| 2696 |
{ |
{ |
| 2697 |
rc = pcregrep(stdin, FR_PLAIN, (filenames > FN_DEFAULT)? stdin_name : NULL); |
rc = pcregrep(stdin, FR_PLAIN, stdin_name, |
| 2698 |
|
(filenames > FN_DEFAULT)? stdin_name : NULL); |
| 2699 |
goto EXIT; |
goto EXIT; |
| 2700 |
} |
} |
| 2701 |
|
|
| 2715 |
} |
} |
| 2716 |
|
|
| 2717 |
EXIT: |
EXIT: |
| 2718 |
|
#ifdef SUPPORT_PCREGREP_JIT |
| 2719 |
|
if (jit_stack != NULL) pcre_jit_stack_free(jit_stack); |
| 2720 |
|
#endif |
| 2721 |
|
if (main_buffer != NULL) free(main_buffer); |
| 2722 |
if (pattern_list != NULL) |
if (pattern_list != NULL) |
| 2723 |
{ |
{ |
| 2724 |
for (i = 0; i < pattern_count; i++) free(pattern_list[i]); |
for (i = 0; i < pattern_count; i++) free(pattern_list[i]); |
| 2728 |
{ |
{ |
| 2729 |
for (i = 0; i < hint_count; i++) |
for (i = 0; i < hint_count; i++) |
| 2730 |
{ |
{ |
| 2731 |
if (hints_list[i] != NULL) free(hints_list[i]); |
if (hints_list[i] != NULL) pcre_free_study(hints_list[i]); |
| 2732 |
} |
} |
| 2733 |
free(hints_list); |
free(hints_list); |
| 2734 |
} |
} |