]> git.ipfire.org Git - thirdparty/git.git/blame - grep.c
Merge branch 'kg/gc-auto-windows-workaround'
[thirdparty/git.git] / grep.c
CommitLineData
83b5d2f5 1#include "cache.h"
b2141fc1 2#include "config.h"
83b5d2f5 3#include "grep.h"
cbd53a21 4#include "object-store.h"
60ecac98 5#include "userdiff.h"
6bfce93e 6#include "xdiff-interface.h"
335ec3bf
JK
7#include "diff.h"
8#include "diffcore.h"
5c1ebcca 9#include "commit.h"
793dc676 10#include "quote.h"
3ac68a93 11#include "help.h"
83b5d2f5 12
07a7d656
JH
13static int grep_source_load(struct grep_source *gs);
14static int grep_source_is_binary(struct grep_source *gs);
15
7687a054
JH
16static struct grep_opt grep_defaults;
17
fa151dc5
NTND
18static const char *color_grep_slots[] = {
19 [GREP_COLOR_CONTEXT] = "context",
20 [GREP_COLOR_FILENAME] = "filename",
21 [GREP_COLOR_FUNCTION] = "function",
22 [GREP_COLOR_LINENO] = "lineNumber",
d036d667 23 [GREP_COLOR_COLUMNNO] = "column",
fa151dc5
NTND
24 [GREP_COLOR_MATCH_CONTEXT] = "matchContext",
25 [GREP_COLOR_MATCH_SELECTED] = "matchSelected",
26 [GREP_COLOR_SELECTED] = "selected",
27 [GREP_COLOR_SEP] = "separator",
28};
29
379642bc
BW
30static void std_output(struct grep_opt *opt, const void *buf, size_t size)
31{
32 fwrite(buf, size, 1, stdout);
33}
34
75e5e9c3
SB
35static void color_set(char *dst, const char *color_bytes)
36{
37 xsnprintf(dst, COLOR_MAXLEN, "%s", color_bytes);
38}
39
7687a054
JH
40/*
41 * Initialize the grep_defaults template with hardcoded defaults.
42 * We could let the compiler do this, but without C99 initializers
43 * the code gets unwieldy and unreadable, so...
44 */
45void init_grep_defaults(void)
46{
47 struct grep_opt *opt = &grep_defaults;
918d4e1c
JH
48 static int run_once;
49
50 if (run_once)
51 return;
52 run_once++;
7687a054
JH
53
54 memset(opt, 0, sizeof(*opt));
55 opt->relative = 1;
56 opt->pathname = 1;
7687a054
JH
57 opt->max_depth = -1;
58 opt->pattern_type_option = GREP_PATTERN_TYPE_UNSPECIFIED;
fa151dc5
NTND
59 color_set(opt->colors[GREP_COLOR_CONTEXT], "");
60 color_set(opt->colors[GREP_COLOR_FILENAME], "");
61 color_set(opt->colors[GREP_COLOR_FUNCTION], "");
62 color_set(opt->colors[GREP_COLOR_LINENO], "");
d036d667 63 color_set(opt->colors[GREP_COLOR_COLUMNNO], "");
fa151dc5
NTND
64 color_set(opt->colors[GREP_COLOR_MATCH_CONTEXT], GIT_COLOR_BOLD_RED);
65 color_set(opt->colors[GREP_COLOR_MATCH_SELECTED], GIT_COLOR_BOLD_RED);
66 color_set(opt->colors[GREP_COLOR_SELECTED], "");
67 color_set(opt->colors[GREP_COLOR_SEP], GIT_COLOR_CYAN);
7687a054 68 opt->color = -1;
379642bc 69 opt->output = std_output;
7687a054
JH
70}
71
72static int parse_pattern_type_arg(const char *opt, const char *arg)
73{
74 if (!strcmp(arg, "default"))
75 return GREP_PATTERN_TYPE_UNSPECIFIED;
76 else if (!strcmp(arg, "basic"))
77 return GREP_PATTERN_TYPE_BRE;
78 else if (!strcmp(arg, "extended"))
79 return GREP_PATTERN_TYPE_ERE;
80 else if (!strcmp(arg, "fixed"))
81 return GREP_PATTERN_TYPE_FIXED;
82 else if (!strcmp(arg, "perl"))
83 return GREP_PATTERN_TYPE_PCRE;
84 die("bad %s argument: %s", opt, arg);
85}
86
3ac68a93
NTND
87define_list_config_array_extra(color_grep_slots, {"match"});
88
7687a054
JH
89/*
90 * Read the configuration file once and store it in
91 * the grep_defaults template.
92 */
93int grep_config(const char *var, const char *value, void *cb)
94{
95 struct grep_opt *opt = &grep_defaults;
fa151dc5 96 const char *slot;
7687a054
JH
97
98 if (userdiff_config(var, value) < 0)
99 return -1;
100
101 if (!strcmp(var, "grep.extendedregexp")) {
c7e38551 102 opt->extended_regexp_option = git_config_bool(var, value);
7687a054
JH
103 return 0;
104 }
105
106 if (!strcmp(var, "grep.patterntype")) {
107 opt->pattern_type_option = parse_pattern_type_arg(var, value);
108 return 0;
109 }
110
111 if (!strcmp(var, "grep.linenumber")) {
112 opt->linenum = git_config_bool(var, value);
113 return 0;
114 }
6653fec3
TB
115 if (!strcmp(var, "grep.column")) {
116 opt->columnnum = git_config_bool(var, value);
117 return 0;
118 }
7687a054 119
6453f7b3
AS
120 if (!strcmp(var, "grep.fullname")) {
121 opt->relative = !git_config_bool(var, value);
122 return 0;
123 }
124
7687a054
JH
125 if (!strcmp(var, "color.grep"))
126 opt->color = git_config_colorbool(var, value);
fa151dc5
NTND
127 if (!strcmp(var, "color.grep.match")) {
128 if (grep_config("color.grep.matchcontext", value, cb) < 0)
129 return -1;
130 if (grep_config("color.grep.matchselected", value, cb) < 0)
131 return -1;
132 } else if (skip_prefix(var, "color.grep.", &slot)) {
133 int i = LOOKUP_CONFIG(color_grep_slots, slot);
134 char *color;
135
136 if (i < 0)
137 return -1;
138 color = opt->colors[i];
7687a054
JH
139 if (!value)
140 return config_error_nonbool(var);
f6c5a296 141 return color_parse(value, color);
7687a054
JH
142 }
143 return 0;
144}
145
146/*
147 * Initialize one instance of grep_opt and copy the
148 * default values from the template we read the configuration
149 * information in an earlier call to git_config(grep_config).
150 */
151void grep_init(struct grep_opt *opt, const char *prefix)
152{
153 struct grep_opt *def = &grep_defaults;
fa151dc5 154 int i;
7687a054
JH
155
156 memset(opt, 0, sizeof(*opt));
157 opt->prefix = prefix;
158 opt->prefix_length = (prefix && *prefix) ? strlen(prefix) : 0;
159 opt->pattern_tail = &opt->pattern_list;
160 opt->header_tail = &opt->header_list;
161
162 opt->color = def->color;
163 opt->extended_regexp_option = def->extended_regexp_option;
164 opt->pattern_type_option = def->pattern_type_option;
165 opt->linenum = def->linenum;
017c0fcf 166 opt->columnnum = def->columnnum;
7687a054
JH
167 opt->max_depth = def->max_depth;
168 opt->pathname = def->pathname;
7687a054 169 opt->relative = def->relative;
379642bc 170 opt->output = def->output;
7687a054 171
fa151dc5
NTND
172 for (i = 0; i < NR_GREP_COLORS; i++)
173 color_set(opt->colors[i], def->colors[i]);
7687a054 174}
07a7d656 175
8465541e 176static void grep_set_pattern_type_option(enum grep_pattern_type pattern_type, struct grep_opt *opt)
c5c31d33 177{
07a3d411
ÆAB
178 /*
179 * When committing to the pattern type by setting the relevant
180 * fields in grep_opt it's generally not necessary to zero out
181 * the fields we're not choosing, since they won't have been
182 * set by anything. The extended_regexp_option field is the
183 * only exception to this.
184 *
185 * This is because in the process of parsing grep.patternType
186 * & grep.extendedRegexp we set opt->pattern_type_option and
187 * opt->extended_regexp_option, respectively. We then
188 * internally use opt->extended_regexp_option to see if we're
189 * compiling an ERE. It must be unset if that's not actually
190 * the case.
191 */
192 if (pattern_type != GREP_PATTERN_TYPE_ERE &&
193 opt->extended_regexp_option)
194 opt->extended_regexp_option = 0;
195
c5c31d33
JH
196 switch (pattern_type) {
197 case GREP_PATTERN_TYPE_UNSPECIFIED:
198 /* fall through */
199
200 case GREP_PATTERN_TYPE_BRE:
c5c31d33
JH
201 break;
202
203 case GREP_PATTERN_TYPE_ERE:
07a3d411 204 opt->extended_regexp_option = 1;
c5c31d33
JH
205 break;
206
207 case GREP_PATTERN_TYPE_FIXED:
208 opt->fixed = 1;
c5c31d33
JH
209 break;
210
211 case GREP_PATTERN_TYPE_PCRE:
94da9193 212#ifdef USE_LIBPCRE2
94da9193
ÆAB
213 opt->pcre2 = 1;
214#else
215 /*
216 * It's important that pcre1 always be assigned to
217 * even when there's no USE_LIBPCRE* defined. We still
218 * call the PCRE stub function, it just dies with
219 * "cannot use Perl-compatible regexes[...]".
220 */
6d4b5747 221 opt->pcre1 = 1;
94da9193 222#endif
c5c31d33
JH
223 break;
224 }
225}
226
8465541e
JH
227void grep_commit_pattern_type(enum grep_pattern_type pattern_type, struct grep_opt *opt)
228{
229 if (pattern_type != GREP_PATTERN_TYPE_UNSPECIFIED)
230 grep_set_pattern_type_option(pattern_type, opt);
231 else if (opt->pattern_type_option != GREP_PATTERN_TYPE_UNSPECIFIED)
232 grep_set_pattern_type_option(opt->pattern_type_option, opt);
233 else if (opt->extended_regexp_option)
07a3d411
ÆAB
234 /*
235 * This branch *must* happen after setting from the
236 * opt->pattern_type_option above, we don't want
237 * grep.extendedRegexp to override grep.patternType!
238 */
8465541e
JH
239 grep_set_pattern_type_option(GREP_PATTERN_TYPE_ERE, opt);
240}
241
fc456751
RS
242static struct grep_pat *create_grep_pat(const char *pat, size_t patlen,
243 const char *origin, int no,
244 enum grep_pat_token t,
245 enum grep_header_field field)
a4d7d2c6
JH
246{
247 struct grep_pat *p = xcalloc(1, sizeof(*p));
526a858a 248 p->pattern = xmemdupz(pat, patlen);
fc456751
RS
249 p->patternlen = patlen;
250 p->origin = origin;
251 p->no = no;
252 p->token = t;
a4d7d2c6 253 p->field = field;
fc456751
RS
254 return p;
255}
256
2b3873ff
RS
257static void do_append_grep_pat(struct grep_pat ***tail, struct grep_pat *p)
258{
259 **tail = p;
260 *tail = &p->next;
a4d7d2c6 261 p->next = NULL;
526a858a
RS
262
263 switch (p->token) {
264 case GREP_PATTERN: /* atom */
265 case GREP_PATTERN_HEAD:
266 case GREP_PATTERN_BODY:
267 for (;;) {
268 struct grep_pat *new_pat;
269 size_t len = 0;
270 char *cp = p->pattern + p->patternlen, *nl = NULL;
271 while (++len <= p->patternlen) {
272 if (*(--cp) == '\n') {
273 nl = cp;
274 break;
275 }
276 }
277 if (!nl)
278 break;
279 new_pat = create_grep_pat(nl + 1, len - 1, p->origin,
280 p->no, p->token, p->field);
281 new_pat->next = p->next;
282 if (!p->next)
283 *tail = &new_pat->next;
284 p->next = new_pat;
285 *nl = '\0';
286 p->patternlen -= len;
287 }
288 break;
289 default:
290 break;
291 }
2b3873ff
RS
292}
293
fc456751
RS
294void append_header_grep_pattern(struct grep_opt *opt,
295 enum grep_header_field field, const char *pat)
296{
297 struct grep_pat *p = create_grep_pat(pat, strlen(pat), "header", 0,
298 GREP_PATTERN_HEAD, field);
baa6378f
JH
299 if (field == GREP_HEADER_REFLOG)
300 opt->use_reflog_filter = 1;
2b3873ff 301 do_append_grep_pat(&opt->header_tail, p);
a4d7d2c6
JH
302}
303
83b5d2f5
JH
304void append_grep_pattern(struct grep_opt *opt, const char *pat,
305 const char *origin, int no, enum grep_pat_token t)
ed40a095
RS
306{
307 append_grep_pat(opt, pat, strlen(pat), origin, no, t);
308}
309
310void append_grep_pat(struct grep_opt *opt, const char *pat, size_t patlen,
311 const char *origin, int no, enum grep_pat_token t)
83b5d2f5 312{
fc456751 313 struct grep_pat *p = create_grep_pat(pat, patlen, origin, no, t, 0);
2b3873ff 314 do_append_grep_pat(&opt->pattern_tail, p);
83b5d2f5
JH
315}
316
5b594f45
FK
317struct grep_opt *grep_opt_dup(const struct grep_opt *opt)
318{
319 struct grep_pat *pat;
320 struct grep_opt *ret = xmalloc(sizeof(struct grep_opt));
321 *ret = *opt;
322
323 ret->pattern_list = NULL;
324 ret->pattern_tail = &ret->pattern_list;
325
326 for(pat = opt->pattern_list; pat != NULL; pat = pat->next)
327 {
328 if(pat->token == GREP_PATTERN_HEAD)
329 append_header_grep_pattern(ret, pat->field,
330 pat->pattern);
331 else
ed40a095
RS
332 append_grep_pat(ret, pat->pattern, pat->patternlen,
333 pat->origin, pat->no, pat->token);
5b594f45
FK
334 }
335
336 return ret;
337}
338
a30c148a
MK
339static NORETURN void compile_regexp_failed(const struct grep_pat *p,
340 const char *error)
341{
342 char where[1024];
343
344 if (p->no)
19bdd3e7 345 xsnprintf(where, sizeof(where), "In '%s' at %d, ", p->origin, p->no);
a30c148a 346 else if (p->origin)
19bdd3e7 347 xsnprintf(where, sizeof(where), "%s, ", p->origin);
a30c148a
MK
348 else
349 where[0] = 0;
350
351 die("%s'%s': %s", where, p->pattern, error);
352}
353
543f1c0c
ÆAB
354static int is_fixed(const char *s, size_t len)
355{
356 size_t i;
357
358 for (i = 0; i < len; i++) {
359 if (is_regex_special(s[i]))
360 return 0;
361 }
362
363 return 1;
364}
365
219e65b6
ÆAB
366static int has_null(const char *s, size_t len)
367{
368 /*
369 * regcomp cannot accept patterns with NULs so when using it
370 * we consider any pattern containing a NUL fixed.
371 */
372 if (memchr(s, 0, len))
373 return 1;
374
375 return 0;
376}
377
3485bea1 378#ifdef USE_LIBPCRE1
6d4b5747 379static void compile_pcre1_regexp(struct grep_pat *p, const struct grep_opt *opt)
63e7e9d8
MK
380{
381 const char *error;
382 int erroffset;
fba4f125 383 int options = PCRE_MULTILINE;
63e7e9d8 384
9d9babb8
NTND
385 if (opt->ignore_case) {
386 if (has_non_ascii(p->pattern))
6d4b5747 387 p->pcre1_tables = pcre_maketables();
63e7e9d8 388 options |= PCRE_CASELESS;
9d9babb8 389 }
18547aac
NTND
390 if (is_utf8_locale() && has_non_ascii(p->pattern))
391 options |= PCRE_UTF8;
63e7e9d8 392
6d4b5747
ÆAB
393 p->pcre1_regexp = pcre_compile(p->pattern, options, &error, &erroffset,
394 p->pcre1_tables);
395 if (!p->pcre1_regexp)
63e7e9d8
MK
396 compile_regexp_failed(p, error);
397
2fff1e19 398 p->pcre1_extra_info = pcre_study(p->pcre1_regexp, GIT_PCRE_STUDY_JIT_COMPILE, &error);
6d4b5747 399 if (!p->pcre1_extra_info && error)
63e7e9d8 400 die("%s", error);
fbaceaac 401
e87de7ca 402#ifdef GIT_PCRE1_USE_JIT
fbaceaac
ÆAB
403 pcre_config(PCRE_CONFIG_JIT, &p->pcre1_jit_on);
404 if (p->pcre1_jit_on == 1) {
405 p->pcre1_jit_stack = pcre_jit_stack_alloc(1, 1024 * 1024);
406 if (!p->pcre1_jit_stack)
407 die("Couldn't allocate PCRE JIT stack");
408 pcre_assign_jit_stack(p->pcre1_extra_info, NULL, p->pcre1_jit_stack);
409 } else if (p->pcre1_jit_on != 0) {
033abf97 410 BUG("The pcre1_jit_on variable should be 0 or 1, not %d",
fbaceaac
ÆAB
411 p->pcre1_jit_on);
412 }
413#endif
63e7e9d8
MK
414}
415
6d4b5747 416static int pcre1match(struct grep_pat *p, const char *line, const char *eol,
63e7e9d8
MK
417 regmatch_t *match, int eflags)
418{
419 int ovector[30], ret, flags = 0;
420
421 if (eflags & REG_NOTBOL)
422 flags |= PCRE_NOTBOL;
423
e87de7ca 424#ifdef GIT_PCRE1_USE_JIT
fbaceaac
ÆAB
425 if (p->pcre1_jit_on) {
426 ret = pcre_jit_exec(p->pcre1_regexp, p->pcre1_extra_info, line,
427 eol - line, 0, flags, ovector,
428 ARRAY_SIZE(ovector), p->pcre1_jit_stack);
429 } else
430#endif
431 {
432 ret = pcre_exec(p->pcre1_regexp, p->pcre1_extra_info, line,
433 eol - line, 0, flags, ovector,
434 ARRAY_SIZE(ovector));
435 }
436
63e7e9d8
MK
437 if (ret < 0 && ret != PCRE_ERROR_NOMATCH)
438 die("pcre_exec failed with error code %d", ret);
439 if (ret > 0) {
440 ret = 0;
441 match->rm_so = ovector[0];
442 match->rm_eo = ovector[1];
443 }
444
445 return ret;
446}
447
6d4b5747 448static void free_pcre1_regexp(struct grep_pat *p)
63e7e9d8 449{
6d4b5747 450 pcre_free(p->pcre1_regexp);
e87de7ca 451#ifdef GIT_PCRE1_USE_JIT
fbaceaac
ÆAB
452 if (p->pcre1_jit_on) {
453 pcre_free_study(p->pcre1_extra_info);
454 pcre_jit_stack_free(p->pcre1_jit_stack);
455 } else
456#endif
457 {
458 pcre_free(p->pcre1_extra_info);
459 }
6d4b5747 460 pcre_free((void *)p->pcre1_tables);
63e7e9d8 461}
3485bea1 462#else /* !USE_LIBPCRE1 */
6d4b5747 463static void compile_pcre1_regexp(struct grep_pat *p, const struct grep_opt *opt)
63e7e9d8
MK
464{
465 die("cannot use Perl-compatible regexes when not compiled with USE_LIBPCRE");
466}
467
6d4b5747 468static int pcre1match(struct grep_pat *p, const char *line, const char *eol,
63e7e9d8
MK
469 regmatch_t *match, int eflags)
470{
471 return 1;
472}
473
6d4b5747 474static void free_pcre1_regexp(struct grep_pat *p)
63e7e9d8
MK
475{
476}
3485bea1 477#endif /* !USE_LIBPCRE1 */
63e7e9d8 478
94da9193
ÆAB
479#ifdef USE_LIBPCRE2
480static void compile_pcre2_pattern(struct grep_pat *p, const struct grep_opt *opt)
481{
482 int error;
483 PCRE2_UCHAR errbuf[256];
484 PCRE2_SIZE erroffset;
485 int options = PCRE2_MULTILINE;
486 const uint8_t *character_tables = NULL;
487 int jitret;
a25b9085
ÆAB
488 int patinforet;
489 size_t jitsizearg;
94da9193
ÆAB
490
491 assert(opt->pcre2);
492
493 p->pcre2_compile_context = NULL;
494
495 if (opt->ignore_case) {
496 if (has_non_ascii(p->pattern)) {
497 character_tables = pcre2_maketables(NULL);
498 p->pcre2_compile_context = pcre2_compile_context_create(NULL);
499 pcre2_set_character_tables(p->pcre2_compile_context, character_tables);
500 }
501 options |= PCRE2_CASELESS;
502 }
503 if (is_utf8_locale() && has_non_ascii(p->pattern))
504 options |= PCRE2_UTF;
505
506 p->pcre2_pattern = pcre2_compile((PCRE2_SPTR)p->pattern,
507 p->patternlen, options, &error, &erroffset,
508 p->pcre2_compile_context);
509
510 if (p->pcre2_pattern) {
511 p->pcre2_match_data = pcre2_match_data_create_from_pattern(p->pcre2_pattern, NULL);
512 if (!p->pcre2_match_data)
513 die("Couldn't allocate PCRE2 match data");
514 } else {
515 pcre2_get_error_message(error, errbuf, sizeof(errbuf));
516 compile_regexp_failed(p, (const char *)&errbuf);
517 }
518
519 pcre2_config(PCRE2_CONFIG_JIT, &p->pcre2_jit_on);
520 if (p->pcre2_jit_on == 1) {
521 jitret = pcre2_jit_compile(p->pcre2_pattern, PCRE2_JIT_COMPLETE);
522 if (jitret)
523 die("Couldn't JIT the PCRE2 pattern '%s', got '%d'\n", p->pattern, jitret);
a25b9085
ÆAB
524
525 /*
526 * The pcre2_config(PCRE2_CONFIG_JIT, ...) call just
527 * tells us whether the library itself supports JIT,
528 * but to see whether we're going to be actually using
529 * JIT we need to extract PCRE2_INFO_JITSIZE from the
530 * pattern *after* we do pcre2_jit_compile() above.
531 *
532 * This is because if the pattern contains the
533 * (*NO_JIT) verb (see pcre2syntax(3))
534 * pcre2_jit_compile() will exit early with 0. If we
535 * then proceed to call pcre2_jit_match() further down
536 * the line instead of pcre2_match() we'll either
537 * segfault (pre PCRE 10.31) or run into a fatal error
538 * (post PCRE2 10.31)
539 */
540 patinforet = pcre2_pattern_info(p->pcre2_pattern, PCRE2_INFO_JITSIZE, &jitsizearg);
541 if (patinforet)
542 BUG("pcre2_pattern_info() failed: %d", patinforet);
543 if (jitsizearg == 0) {
544 p->pcre2_jit_on = 0;
545 return;
546 }
547
94da9193
ÆAB
548 p->pcre2_jit_stack = pcre2_jit_stack_create(1, 1024 * 1024, NULL);
549 if (!p->pcre2_jit_stack)
550 die("Couldn't allocate PCRE2 JIT stack");
551 p->pcre2_match_context = pcre2_match_context_create(NULL);
674ad936 552 if (!p->pcre2_match_context)
94da9193
ÆAB
553 die("Couldn't allocate PCRE2 match context");
554 pcre2_jit_stack_assign(p->pcre2_match_context, NULL, p->pcre2_jit_stack);
555 } else if (p->pcre2_jit_on != 0) {
033abf97 556 BUG("The pcre2_jit_on variable should be 0 or 1, not %d",
94da9193
ÆAB
557 p->pcre1_jit_on);
558 }
559}
560
561static int pcre2match(struct grep_pat *p, const char *line, const char *eol,
562 regmatch_t *match, int eflags)
563{
564 int ret, flags = 0;
565 PCRE2_SIZE *ovector;
566 PCRE2_UCHAR errbuf[256];
567
568 if (eflags & REG_NOTBOL)
569 flags |= PCRE2_NOTBOL;
570
571 if (p->pcre2_jit_on)
572 ret = pcre2_jit_match(p->pcre2_pattern, (unsigned char *)line,
573 eol - line, 0, flags, p->pcre2_match_data,
574 NULL);
575 else
576 ret = pcre2_match(p->pcre2_pattern, (unsigned char *)line,
577 eol - line, 0, flags, p->pcre2_match_data,
578 NULL);
579
580 if (ret < 0 && ret != PCRE2_ERROR_NOMATCH) {
581 pcre2_get_error_message(ret, errbuf, sizeof(errbuf));
582 die("%s failed with error code %d: %s",
583 (p->pcre2_jit_on ? "pcre2_jit_match" : "pcre2_match"), ret,
584 errbuf);
585 }
586 if (ret > 0) {
587 ovector = pcre2_get_ovector_pointer(p->pcre2_match_data);
588 ret = 0;
589 match->rm_so = (int)ovector[0];
590 match->rm_eo = (int)ovector[1];
591 }
592
593 return ret;
594}
595
596static void free_pcre2_pattern(struct grep_pat *p)
597{
598 pcre2_compile_context_free(p->pcre2_compile_context);
599 pcre2_code_free(p->pcre2_pattern);
600 pcre2_match_data_free(p->pcre2_match_data);
601 pcre2_jit_stack_free(p->pcre2_jit_stack);
602 pcre2_match_context_free(p->pcre2_match_context);
603}
604#else /* !USE_LIBPCRE2 */
605static void compile_pcre2_pattern(struct grep_pat *p, const struct grep_opt *opt)
606{
607 /*
608 * Unreachable until USE_LIBPCRE2 becomes synonymous with
609 * USE_LIBPCRE. See the sibling comment in
610 * grep_set_pattern_type_option().
611 */
612 die("cannot use Perl-compatible regexes when not compiled with USE_LIBPCRE");
613}
614
615static int pcre2match(struct grep_pat *p, const char *line, const char *eol,
616 regmatch_t *match, int eflags)
617{
618 return 1;
619}
620
621static void free_pcre2_pattern(struct grep_pat *p)
622{
623}
624#endif /* !USE_LIBPCRE2 */
625
793dc676
NTND
626static void compile_fixed_regexp(struct grep_pat *p, struct grep_opt *opt)
627{
628 struct strbuf sb = STRBUF_INIT;
629 int err;
1ceababc 630 int regflags = 0;
793dc676
NTND
631
632 basic_regex_quote_buf(&sb, p->pattern);
793dc676
NTND
633 if (opt->ignore_case)
634 regflags |= REG_ICASE;
635 err = regcomp(&p->regexp, sb.buf, regflags);
636 if (opt->debug)
637 fprintf(stderr, "fixed %s\n", sb.buf);
638 strbuf_release(&sb);
639 if (err) {
640 char errbuf[1024];
641 regerror(err, &p->regexp, errbuf, sizeof(errbuf));
793dc676
NTND
642 compile_regexp_failed(p, errbuf);
643 }
644}
645
83b5d2f5
JH
646static void compile_regexp(struct grep_pat *p, struct grep_opt *opt)
647{
07a3d411 648 int ascii_only;
c822255c 649 int err;
07a3d411 650 int regflags = REG_NEWLINE;
c822255c 651
d7eb527d 652 p->word_regexp = opt->word_regexp;
5183bf67 653 p->ignore_case = opt->ignore_case;
5c1ebcca 654 ascii_only = !has_non_ascii(p->pattern);
d7eb527d 655
793dc676
NTND
656 /*
657 * Even when -F (fixed) asks us to do a non-regexp search, we
658 * may not be able to correctly case-fold when -i
659 * (ignore-case) is asked (in which case, we'll synthesize a
660 * regexp to match the pattern that matches regexp special
661 * characters literally, while ignoring case differences). On
662 * the other hand, even without -F, if the pattern does not
663 * have any regexp special characters and there is no need for
664 * case-folding search, we can internally turn it into a
665 * simple string match using kws. p->fixed tells us if we
666 * want to use kws.
667 */
219e65b6
ÆAB
668 if (opt->fixed ||
669 has_null(p->pattern, p->patternlen) ||
670 is_fixed(p->pattern, p->patternlen))
07a3d411 671 p->fixed = !p->ignore_case || ascii_only;
9eceddee
FK
672
673 if (p->fixed) {
07a3d411 674 p->kws = kwsalloc(p->ignore_case ? tolower_trans_tbl : NULL);
9eceddee
FK
675 kwsincr(p->kws, p->pattern, p->patternlen);
676 kwsprep(p->kws);
c822255c 677 return;
793dc676
NTND
678 } else if (opt->fixed) {
679 /*
680 * We come here when the pattern has the non-ascii
681 * characters we cannot case-fold, and asked to
682 * ignore-case.
683 */
684 compile_fixed_regexp(p, opt);
685 return;
9eceddee 686 }
c822255c 687
94da9193
ÆAB
688 if (opt->pcre2) {
689 compile_pcre2_pattern(p, opt);
690 return;
691 }
692
6d4b5747
ÆAB
693 if (opt->pcre1) {
694 compile_pcre1_regexp(p, opt);
63e7e9d8
MK
695 return;
696 }
697
07a3d411
ÆAB
698 if (p->ignore_case)
699 regflags |= REG_ICASE;
700 if (opt->extended_regexp_option)
701 regflags |= REG_EXTENDED;
702 err = regcomp(&p->regexp, p->pattern, regflags);
83b5d2f5
JH
703 if (err) {
704 char errbuf[1024];
83b5d2f5 705 regerror(err, &p->regexp, errbuf, 1024);
a30c148a 706 compile_regexp_failed(p, errbuf);
83b5d2f5
JH
707 }
708}
709
0ab7befa 710static struct grep_expr *compile_pattern_or(struct grep_pat **);
83b5d2f5
JH
711static struct grep_expr *compile_pattern_atom(struct grep_pat **list)
712{
713 struct grep_pat *p;
714 struct grep_expr *x;
715
716 p = *list;
c922b01f
LT
717 if (!p)
718 return NULL;
83b5d2f5
JH
719 switch (p->token) {
720 case GREP_PATTERN: /* atom */
480c1ca6
JH
721 case GREP_PATTERN_HEAD:
722 case GREP_PATTERN_BODY:
83b5d2f5
JH
723 x = xcalloc(1, sizeof (struct grep_expr));
724 x->node = GREP_NODE_ATOM;
725 x->u.atom = p;
726 *list = p->next;
727 return x;
728 case GREP_OPEN_PAREN:
729 *list = p->next;
0ab7befa 730 x = compile_pattern_or(list);
83b5d2f5
JH
731 if (!*list || (*list)->token != GREP_CLOSE_PAREN)
732 die("unmatched parenthesis");
733 *list = (*list)->next;
734 return x;
735 default:
736 return NULL;
737 }
738}
739
740static struct grep_expr *compile_pattern_not(struct grep_pat **list)
741{
742 struct grep_pat *p;
743 struct grep_expr *x;
744
745 p = *list;
c922b01f
LT
746 if (!p)
747 return NULL;
83b5d2f5
JH
748 switch (p->token) {
749 case GREP_NOT:
750 if (!p->next)
751 die("--not not followed by pattern expression");
752 *list = p->next;
753 x = xcalloc(1, sizeof (struct grep_expr));
754 x->node = GREP_NODE_NOT;
755 x->u.unary = compile_pattern_not(list);
756 if (!x->u.unary)
757 die("--not followed by non pattern expression");
758 return x;
759 default:
760 return compile_pattern_atom(list);
761 }
762}
763
764static struct grep_expr *compile_pattern_and(struct grep_pat **list)
765{
766 struct grep_pat *p;
767 struct grep_expr *x, *y, *z;
768
769 x = compile_pattern_not(list);
770 p = *list;
771 if (p && p->token == GREP_AND) {
772 if (!p->next)
773 die("--and not followed by pattern expression");
774 *list = p->next;
775 y = compile_pattern_and(list);
776 if (!y)
777 die("--and not followed by pattern expression");
778 z = xcalloc(1, sizeof (struct grep_expr));
779 z->node = GREP_NODE_AND;
780 z->u.binary.left = x;
781 z->u.binary.right = y;
782 return z;
783 }
784 return x;
785}
786
787static struct grep_expr *compile_pattern_or(struct grep_pat **list)
788{
789 struct grep_pat *p;
790 struct grep_expr *x, *y, *z;
791
792 x = compile_pattern_and(list);
793 p = *list;
794 if (x && p && p->token != GREP_CLOSE_PAREN) {
795 y = compile_pattern_or(list);
796 if (!y)
797 die("not a pattern expression %s", p->pattern);
798 z = xcalloc(1, sizeof (struct grep_expr));
799 z->node = GREP_NODE_OR;
800 z->u.binary.left = x;
801 z->u.binary.right = y;
802 return z;
803 }
804 return x;
805}
806
807static struct grep_expr *compile_pattern_expr(struct grep_pat **list)
808{
809 return compile_pattern_or(list);
810}
811
17bf35a3
JH
812static void indent(int in)
813{
814 while (in-- > 0)
815 fputc(' ', stderr);
816}
817
818static void dump_grep_pat(struct grep_pat *p)
819{
820 switch (p->token) {
821 case GREP_AND: fprintf(stderr, "*and*"); break;
822 case GREP_OPEN_PAREN: fprintf(stderr, "*(*"); break;
823 case GREP_CLOSE_PAREN: fprintf(stderr, "*)*"); break;
824 case GREP_NOT: fprintf(stderr, "*not*"); break;
825 case GREP_OR: fprintf(stderr, "*or*"); break;
826
827 case GREP_PATTERN: fprintf(stderr, "pattern"); break;
828 case GREP_PATTERN_HEAD: fprintf(stderr, "pattern_head"); break;
829 case GREP_PATTERN_BODY: fprintf(stderr, "pattern_body"); break;
830 }
831
832 switch (p->token) {
833 default: break;
834 case GREP_PATTERN_HEAD:
835 fprintf(stderr, "<head %d>", p->field); break;
836 case GREP_PATTERN_BODY:
837 fprintf(stderr, "<body>"); break;
838 }
839 switch (p->token) {
840 default: break;
841 case GREP_PATTERN_HEAD:
842 case GREP_PATTERN_BODY:
843 case GREP_PATTERN:
844 fprintf(stderr, "%.*s", (int)p->patternlen, p->pattern);
845 break;
846 }
847 fputc('\n', stderr);
848}
849
850static void dump_grep_expression_1(struct grep_expr *x, int in)
851{
852 indent(in);
853 switch (x->node) {
854 case GREP_NODE_TRUE:
855 fprintf(stderr, "true\n");
856 break;
857 case GREP_NODE_ATOM:
858 dump_grep_pat(x->u.atom);
859 break;
860 case GREP_NODE_NOT:
861 fprintf(stderr, "(not\n");
862 dump_grep_expression_1(x->u.unary, in+1);
863 indent(in);
864 fprintf(stderr, ")\n");
865 break;
866 case GREP_NODE_AND:
867 fprintf(stderr, "(and\n");
868 dump_grep_expression_1(x->u.binary.left, in+1);
869 dump_grep_expression_1(x->u.binary.right, in+1);
870 indent(in);
871 fprintf(stderr, ")\n");
872 break;
873 case GREP_NODE_OR:
874 fprintf(stderr, "(or\n");
875 dump_grep_expression_1(x->u.binary.left, in+1);
876 dump_grep_expression_1(x->u.binary.right, in+1);
877 indent(in);
878 fprintf(stderr, ")\n");
879 break;
880 }
881}
882
07a7d656 883static void dump_grep_expression(struct grep_opt *opt)
17bf35a3
JH
884{
885 struct grep_expr *x = opt->pattern_expression;
886
887 if (opt->all_match)
888 fprintf(stderr, "[all-match]\n");
889 dump_grep_expression_1(x, 0);
890 fflush(NULL);
891}
892
5aaeb733
JH
893static struct grep_expr *grep_true_expr(void)
894{
895 struct grep_expr *z = xcalloc(1, sizeof(*z));
896 z->node = GREP_NODE_TRUE;
897 return z;
898}
899
900static struct grep_expr *grep_or_expr(struct grep_expr *left, struct grep_expr *right)
901{
902 struct grep_expr *z = xcalloc(1, sizeof(*z));
903 z->node = GREP_NODE_OR;
904 z->u.binary.left = left;
905 z->u.binary.right = right;
906 return z;
907}
908
95ce9ce2 909static struct grep_expr *prep_header_patterns(struct grep_opt *opt)
83b5d2f5
JH
910{
911 struct grep_pat *p;
95ce9ce2 912 struct grep_expr *header_expr;
5aaeb733
JH
913 struct grep_expr *(header_group[GREP_HEADER_FIELD_MAX]);
914 enum grep_header_field fld;
83b5d2f5 915
95ce9ce2
JH
916 if (!opt->header_list)
917 return NULL;
2385f246 918
95ce9ce2
JH
919 for (p = opt->header_list; p; p = p->next) {
920 if (p->token != GREP_PATTERN_HEAD)
033abf97 921 BUG("a non-header pattern in grep header list.");
3ce3ffb8
AP
922 if (p->field < GREP_HEADER_FIELD_MIN ||
923 GREP_HEADER_FIELD_MAX <= p->field)
033abf97 924 BUG("unknown header field %d", p->field);
95ce9ce2 925 compile_regexp(p, opt);
80235ba7 926 }
5aaeb733
JH
927
928 for (fld = 0; fld < GREP_HEADER_FIELD_MAX; fld++)
929 header_group[fld] = NULL;
930
931 for (p = opt->header_list; p; p = p->next) {
932 struct grep_expr *h;
933 struct grep_pat *pp = p;
934
935 h = compile_pattern_atom(&pp);
936 if (!h || pp != p->next)
033abf97 937 BUG("malformed header expr");
5aaeb733
JH
938 if (!header_group[p->field]) {
939 header_group[p->field] = h;
940 continue;
941 }
942 header_group[p->field] = grep_or_expr(h, header_group[p->field]);
943 }
944
945 header_expr = NULL;
946
947 for (fld = 0; fld < GREP_HEADER_FIELD_MAX; fld++) {
948 if (!header_group[fld])
949 continue;
950 if (!header_expr)
951 header_expr = grep_true_expr();
952 header_expr = grep_or_expr(header_group[fld], header_expr);
953 }
95ce9ce2
JH
954 return header_expr;
955}
956
13e4fc7e
JH
957static struct grep_expr *grep_splice_or(struct grep_expr *x, struct grep_expr *y)
958{
959 struct grep_expr *z = x;
960
961 while (x) {
962 assert(x->node == GREP_NODE_OR);
963 if (x->u.binary.right &&
964 x->u.binary.right->node == GREP_NODE_TRUE) {
965 x->u.binary.right = y;
966 break;
967 }
968 x = x->u.binary.right;
969 }
970 return z;
971}
972
17bf35a3 973static void compile_grep_patterns_real(struct grep_opt *opt)
95ce9ce2
JH
974{
975 struct grep_pat *p;
976 struct grep_expr *header_expr = prep_header_patterns(opt);
0ab7befa 977
83b5d2f5 978 for (p = opt->pattern_list; p; p = p->next) {
480c1ca6
JH
979 switch (p->token) {
980 case GREP_PATTERN: /* atom */
981 case GREP_PATTERN_HEAD:
982 case GREP_PATTERN_BODY:
c822255c 983 compile_regexp(p, opt);
480c1ca6
JH
984 break;
985 default:
83b5d2f5 986 opt->extended = 1;
480c1ca6
JH
987 break;
988 }
83b5d2f5
JH
989 }
990
80235ba7
JH
991 if (opt->all_match || header_expr)
992 opt->extended = 1;
17bf35a3 993 else if (!opt->extended && !opt->debug)
83b5d2f5
JH
994 return;
995
83b5d2f5 996 p = opt->pattern_list;
ba150a3f
MB
997 if (p)
998 opt->pattern_expression = compile_pattern_expr(&p);
83b5d2f5
JH
999 if (p)
1000 die("incomplete pattern expression: %s", p->pattern);
80235ba7
JH
1001
1002 if (!header_expr)
1003 return;
1004
5aaeb733 1005 if (!opt->pattern_expression)
80235ba7 1006 opt->pattern_expression = header_expr;
13e4fc7e
JH
1007 else if (opt->all_match)
1008 opt->pattern_expression = grep_splice_or(header_expr,
1009 opt->pattern_expression);
5aaeb733
JH
1010 else
1011 opt->pattern_expression = grep_or_expr(opt->pattern_expression,
1012 header_expr);
80235ba7 1013 opt->all_match = 1;
83b5d2f5
JH
1014}
1015
17bf35a3
JH
1016void compile_grep_patterns(struct grep_opt *opt)
1017{
1018 compile_grep_patterns_real(opt);
1019 if (opt->debug)
1020 dump_grep_expression(opt);
1021}
1022
b48fb5b6
JH
1023static void free_pattern_expr(struct grep_expr *x)
1024{
1025 switch (x->node) {
5aaeb733 1026 case GREP_NODE_TRUE:
b48fb5b6
JH
1027 case GREP_NODE_ATOM:
1028 break;
1029 case GREP_NODE_NOT:
1030 free_pattern_expr(x->u.unary);
1031 break;
1032 case GREP_NODE_AND:
1033 case GREP_NODE_OR:
1034 free_pattern_expr(x->u.binary.left);
1035 free_pattern_expr(x->u.binary.right);
1036 break;
1037 }
1038 free(x);
1039}
1040
1041void free_grep_patterns(struct grep_opt *opt)
1042{
1043 struct grep_pat *p, *n;
1044
1045 for (p = opt->pattern_list; p; p = n) {
1046 n = p->next;
1047 switch (p->token) {
1048 case GREP_PATTERN: /* atom */
1049 case GREP_PATTERN_HEAD:
1050 case GREP_PATTERN_BODY:
9eceddee
FK
1051 if (p->kws)
1052 kwsfree(p->kws);
6d4b5747
ÆAB
1053 else if (p->pcre1_regexp)
1054 free_pcre1_regexp(p);
94da9193
ÆAB
1055 else if (p->pcre2_pattern)
1056 free_pcre2_pattern(p);
63e7e9d8
MK
1057 else
1058 regfree(&p->regexp);
526a858a 1059 free(p->pattern);
b48fb5b6
JH
1060 break;
1061 default:
1062 break;
1063 }
1064 free(p);
1065 }
1066
1067 if (!opt->extended)
1068 return;
1069 free_pattern_expr(opt->pattern_expression);
1070}
1071
83b5d2f5
JH
1072static char *end_of_line(char *cp, unsigned long *left)
1073{
1074 unsigned long l = *left;
1075 while (l && *cp != '\n') {
1076 l--;
1077 cp++;
1078 }
1079 *left = l;
1080 return cp;
1081}
1082
1083static int word_char(char ch)
1084{
1085 return isalnum(ch) || ch == '_';
1086}
1087
55f638bd
ML
1088static void output_color(struct grep_opt *opt, const void *data, size_t size,
1089 const char *color)
1090{
daa0c3d9 1091 if (want_color(opt->color) && color && color[0]) {
55f638bd
ML
1092 opt->output(opt, color, strlen(color));
1093 opt->output(opt, data, size);
1094 opt->output(opt, GIT_COLOR_RESET, strlen(GIT_COLOR_RESET));
1095 } else
1096 opt->output(opt, data, size);
1097}
1098
1099static void output_sep(struct grep_opt *opt, char sign)
1100{
1101 if (opt->null_following_name)
1102 opt->output(opt, "\0", 1);
1103 else
fa151dc5 1104 output_color(opt, &sign, 1, opt->colors[GREP_COLOR_SEP]);
55f638bd
ML
1105}
1106
83caecca
RZ
1107static void show_name(struct grep_opt *opt, const char *name)
1108{
fa151dc5 1109 output_color(opt, name, strlen(name), opt->colors[GREP_COLOR_FILENAME]);
5b594f45 1110 opt->output(opt, opt->null_following_name ? "\0" : "\n", 1);
83caecca
RZ
1111}
1112
ed40a095
RS
1113static int fixmatch(struct grep_pat *p, char *line, char *eol,
1114 regmatch_t *match)
83b5d2f5 1115{
9eceddee
FK
1116 struct kwsmatch kwsm;
1117 size_t offset = kwsexec(p->kws, line, eol - line, &kwsm);
1118 if (offset == -1) {
83b5d2f5
JH
1119 match->rm_so = match->rm_eo = -1;
1120 return REG_NOMATCH;
9eceddee
FK
1121 } else {
1122 match->rm_so = offset;
1123 match->rm_eo = match->rm_so + kwsm.size[0];
83b5d2f5
JH
1124 return 0;
1125 }
1126}
1127
97e77784
MK
1128static int patmatch(struct grep_pat *p, char *line, char *eol,
1129 regmatch_t *match, int eflags)
1130{
1131 int hit;
1132
1133 if (p->fixed)
1134 hit = !fixmatch(p, line, eol, match);
6d4b5747
ÆAB
1135 else if (p->pcre1_regexp)
1136 hit = !pcre1match(p, line, eol, match, eflags);
94da9193
ÆAB
1137 else if (p->pcre2_pattern)
1138 hit = !pcre2match(p, line, eol, match, eflags);
97e77784 1139 else
b7d36ffc
JS
1140 hit = !regexec_buf(&p->regexp, line, eol - line, 1, match,
1141 eflags);
97e77784
MK
1142
1143 return hit;
1144}
1145
a4d7d2c6
JH
1146static int strip_timestamp(char *bol, char **eol_p)
1147{
1148 char *eol = *eol_p;
1149 int ch;
1150
1151 while (bol < --eol) {
1152 if (*eol != '>')
1153 continue;
1154 *eol_p = ++eol;
1155 ch = *eol;
1156 *eol = '\0';
1157 return ch;
1158 }
1159 return 0;
1160}
1161
1162static struct {
1163 const char *field;
1164 size_t len;
1165} header_field[] = {
1166 { "author ", 7 },
1167 { "committer ", 10 },
72fd13f7 1168 { "reflog ", 7 },
a4d7d2c6
JH
1169};
1170
d7eb527d 1171static int match_one_pattern(struct grep_pat *p, char *bol, char *eol,
79212772
RS
1172 enum grep_context ctx,
1173 regmatch_t *pmatch, int eflags)
83b5d2f5
JH
1174{
1175 int hit = 0;
a4d7d2c6 1176 int saved_ch = 0;
e701fadb 1177 const char *start = bol;
83b5d2f5 1178
480c1ca6
JH
1179 if ((p->token != GREP_PATTERN) &&
1180 ((p->token == GREP_PATTERN_HEAD) != (ctx == GREP_CONTEXT_HEAD)))
1181 return 0;
1182
a4d7d2c6
JH
1183 if (p->token == GREP_PATTERN_HEAD) {
1184 const char *field;
1185 size_t len;
1186 assert(p->field < ARRAY_SIZE(header_field));
1187 field = header_field[p->field].field;
1188 len = header_field[p->field].len;
1189 if (strncmp(bol, field, len))
1190 return 0;
1191 bol += len;
ad4813b3
NTND
1192 switch (p->field) {
1193 case GREP_HEADER_AUTHOR:
1194 case GREP_HEADER_COMMITTER:
1195 saved_ch = strip_timestamp(bol, &eol);
1196 break;
1197 default:
1198 break;
1199 }
a4d7d2c6
JH
1200 }
1201
83b5d2f5 1202 again:
97e77784 1203 hit = patmatch(p, bol, eol, pmatch, eflags);
83b5d2f5 1204
d7eb527d 1205 if (hit && p->word_regexp) {
83b5d2f5 1206 if ((pmatch[0].rm_so < 0) ||
84201eae 1207 (eol - bol) < pmatch[0].rm_so ||
83b5d2f5
JH
1208 (pmatch[0].rm_eo < 0) ||
1209 (eol - bol) < pmatch[0].rm_eo)
1210 die("regexp returned nonsense");
1211
1212 /* Match beginning must be either beginning of the
1213 * line, or at word boundary (i.e. the last char must
1214 * not be a word char). Similarly, match end must be
1215 * either end of the line, or at word boundary
1216 * (i.e. the next char must not be a word char).
1217 */
fb62eb7f 1218 if ( ((pmatch[0].rm_so == 0) ||
83b5d2f5
JH
1219 !word_char(bol[pmatch[0].rm_so-1])) &&
1220 ((pmatch[0].rm_eo == (eol-bol)) ||
1221 !word_char(bol[pmatch[0].rm_eo])) )
1222 ;
1223 else
1224 hit = 0;
1225
84201eae
RS
1226 /* Words consist of at least one character. */
1227 if (pmatch->rm_so == pmatch->rm_eo)
1228 hit = 0;
1229
83b5d2f5
JH
1230 if (!hit && pmatch[0].rm_so + bol + 1 < eol) {
1231 /* There could be more than one match on the
1232 * line, and the first match might not be
1233 * strict word match. But later ones could be!
fb62eb7f
RS
1234 * Forward to the next possible start, i.e. the
1235 * next position following a non-word char.
83b5d2f5
JH
1236 */
1237 bol = pmatch[0].rm_so + bol + 1;
fb62eb7f
RS
1238 while (word_char(bol[-1]) && bol < eol)
1239 bol++;
dbb6a4ad 1240 eflags |= REG_NOTBOL;
fb62eb7f
RS
1241 if (bol < eol)
1242 goto again;
83b5d2f5
JH
1243 }
1244 }
a4d7d2c6
JH
1245 if (p->token == GREP_PATTERN_HEAD && saved_ch)
1246 *eol = saved_ch;
e701fadb
RS
1247 if (hit) {
1248 pmatch[0].rm_so += bol - start;
1249 pmatch[0].rm_eo += bol - start;
1250 }
83b5d2f5
JH
1251 return hit;
1252}
1253
68d686e6
TB
1254static int match_expr_eval(struct grep_opt *opt, struct grep_expr *x, char *bol,
1255 char *eol, enum grep_context ctx, ssize_t *col,
1256 ssize_t *icol, int collect_hits)
83b5d2f5 1257{
0ab7befa
JH
1258 int h = 0;
1259
c922b01f
LT
1260 if (!x)
1261 die("Not a valid grep expression");
83b5d2f5 1262 switch (x->node) {
5aaeb733
JH
1263 case GREP_NODE_TRUE:
1264 h = 1;
1265 break;
83b5d2f5 1266 case GREP_NODE_ATOM:
68d686e6
TB
1267 {
1268 regmatch_t tmp;
1269 h = match_one_pattern(x->u.atom, bol, eol, ctx,
1270 &tmp, 0);
1271 if (h && (*col < 0 || tmp.rm_so < *col))
1272 *col = tmp.rm_so;
1273 }
83b5d2f5
JH
1274 break;
1275 case GREP_NODE_NOT:
68d686e6
TB
1276 /*
1277 * Upon visiting a GREP_NODE_NOT, col and icol become swapped.
1278 */
1279 h = !match_expr_eval(opt, x->u.unary, bol, eol, ctx, icol, col,
1280 0);
0ab7befa 1281 break;
83b5d2f5 1282 case GREP_NODE_AND:
017c0fcf 1283 h = match_expr_eval(opt, x->u.binary.left, bol, eol, ctx, col,
68d686e6 1284 icol, 0);
017c0fcf
TB
1285 if (h || opt->columnnum) {
1286 /*
1287 * Don't short-circuit AND when given --column, since a
1288 * NOT earlier in the tree may turn this into an OR. In
1289 * this case, see the below comment.
1290 */
1291 h &= match_expr_eval(opt, x->u.binary.right, bol, eol,
1292 ctx, col, icol, 0);
1293 }
0ab7befa 1294 break;
83b5d2f5 1295 case GREP_NODE_OR:
017c0fcf
TB
1296 if (!(collect_hits || opt->columnnum)) {
1297 /*
1298 * Don't short-circuit OR when given --column (or
1299 * collecting hits) to ensure we don't skip a later
1300 * child that would produce an earlier match.
1301 */
68d686e6
TB
1302 return (match_expr_eval(opt, x->u.binary.left, bol, eol,
1303 ctx, col, icol, 0) ||
1304 match_expr_eval(opt, x->u.binary.right, bol,
1305 eol, ctx, col, icol, 0));
017c0fcf 1306 }
68d686e6
TB
1307 h = match_expr_eval(opt, x->u.binary.left, bol, eol, ctx, col,
1308 icol, 0);
017c0fcf
TB
1309 if (collect_hits)
1310 x->u.binary.left->hit |= h;
68d686e6 1311 h |= match_expr_eval(opt, x->u.binary.right, bol, eol, ctx, col,
017c0fcf 1312 icol, collect_hits);
0ab7befa
JH
1313 break;
1314 default:
d7530708 1315 die("Unexpected node type (internal error) %d", x->node);
83b5d2f5 1316 }
0ab7befa
JH
1317 if (collect_hits)
1318 x->hit |= h;
1319 return h;
83b5d2f5
JH
1320}
1321
480c1ca6 1322static int match_expr(struct grep_opt *opt, char *bol, char *eol,
68d686e6
TB
1323 enum grep_context ctx, ssize_t *col,
1324 ssize_t *icol, int collect_hits)
83b5d2f5
JH
1325{
1326 struct grep_expr *x = opt->pattern_expression;
68d686e6 1327 return match_expr_eval(opt, x, bol, eol, ctx, col, icol, collect_hits);
83b5d2f5
JH
1328}
1329
480c1ca6 1330static int match_line(struct grep_opt *opt, char *bol, char *eol,
68d686e6 1331 ssize_t *col, ssize_t *icol,
0ab7befa 1332 enum grep_context ctx, int collect_hits)
83b5d2f5
JH
1333{
1334 struct grep_pat *p;
017c0fcf 1335 int hit = 0;
79212772 1336
83b5d2f5 1337 if (opt->extended)
68d686e6
TB
1338 return match_expr(opt, bol, eol, ctx, col, icol,
1339 collect_hits);
0ab7befa
JH
1340
1341 /* we do not call with collect_hits without being extended */
83b5d2f5 1342 for (p = opt->pattern_list; p; p = p->next) {
68d686e6
TB
1343 regmatch_t tmp;
1344 if (match_one_pattern(p, bol, eol, ctx, &tmp, 0)) {
017c0fcf
TB
1345 hit |= 1;
1346 if (!opt->columnnum) {
1347 /*
1348 * Without --column, any single match on a line
1349 * is enough to know that it needs to be
1350 * printed. With --column, scan _all_ patterns
1351 * to find the earliest.
1352 */
1353 break;
1354 }
1355 if (*col < 0 || tmp.rm_so < *col)
1356 *col = tmp.rm_so;
68d686e6 1357 }
83b5d2f5 1358 }
017c0fcf 1359 return hit;
83b5d2f5
JH
1360}
1361
7e8f59d5
RS
1362static int match_next_pattern(struct grep_pat *p, char *bol, char *eol,
1363 enum grep_context ctx,
1364 regmatch_t *pmatch, int eflags)
1365{
1366 regmatch_t match;
1367
1368 if (!match_one_pattern(p, bol, eol, ctx, &match, eflags))
1369 return 0;
1370 if (match.rm_so < 0 || match.rm_eo < 0)
1371 return 0;
1372 if (pmatch->rm_so >= 0 && pmatch->rm_eo >= 0) {
1373 if (match.rm_so > pmatch->rm_so)
1374 return 1;
1375 if (match.rm_so == pmatch->rm_so && match.rm_eo < pmatch->rm_eo)
1376 return 1;
1377 }
1378 pmatch->rm_so = match.rm_so;
1379 pmatch->rm_eo = match.rm_eo;
1380 return 1;
1381}
1382
1383static int next_match(struct grep_opt *opt, char *bol, char *eol,
1384 enum grep_context ctx, regmatch_t *pmatch, int eflags)
1385{
1386 struct grep_pat *p;
1387 int hit = 0;
1388
1389 pmatch->rm_so = pmatch->rm_eo = -1;
1390 if (bol < eol) {
1391 for (p = opt->pattern_list; p; p = p->next) {
1392 switch (p->token) {
1393 case GREP_PATTERN: /* atom */
1394 case GREP_PATTERN_HEAD:
1395 case GREP_PATTERN_BODY:
1396 hit |= match_next_pattern(p, bol, eol, ctx,
1397 pmatch, eflags);
1398 break;
1399 default:
1400 break;
1401 }
1402 }
1403 }
1404 return hit;
1405}
1406
1407static void show_line(struct grep_opt *opt, char *bol, char *eol,
89252cd0 1408 const char *name, unsigned lno, ssize_t cno, char sign)
7e8f59d5
RS
1409{
1410 int rest = eol - bol;
79a77109 1411 const char *match_color, *line_color = NULL;
7e8f59d5 1412
a8f0e764
RS
1413 if (opt->file_break && opt->last_shown == 0) {
1414 if (opt->show_hunk_mark)
1415 opt->output(opt, "\n", 1);
ba8ea749 1416 } else if (opt->pre_context || opt->post_context || opt->funcbody) {
046802d0 1417 if (opt->last_shown == 0) {
55f638bd 1418 if (opt->show_hunk_mark) {
fa151dc5 1419 output_color(opt, "--", 2, opt->colors[GREP_COLOR_SEP]);
55f638bd 1420 opt->output(opt, "\n", 1);
07b838f0 1421 }
55f638bd 1422 } else if (lno > opt->last_shown + 1) {
fa151dc5 1423 output_color(opt, "--", 2, opt->colors[GREP_COLOR_SEP]);
55f638bd
ML
1424 opt->output(opt, "\n", 1);
1425 }
5dd06d38 1426 }
1d84f72e 1427 if (opt->heading && opt->last_shown == 0) {
fa151dc5 1428 output_color(opt, name, strlen(name), opt->colors[GREP_COLOR_FILENAME]);
1d84f72e
RS
1429 opt->output(opt, "\n", 1);
1430 }
5dd06d38
RS
1431 opt->last_shown = lno;
1432
1d84f72e 1433 if (!opt->heading && opt->pathname) {
fa151dc5 1434 output_color(opt, name, strlen(name), opt->colors[GREP_COLOR_FILENAME]);
55f638bd 1435 output_sep(opt, sign);
5b594f45
FK
1436 }
1437 if (opt->linenum) {
1438 char buf[32];
1a168e5c 1439 xsnprintf(buf, sizeof(buf), "%d", lno);
fa151dc5 1440 output_color(opt, buf, strlen(buf), opt->colors[GREP_COLOR_LINENO]);
55f638bd 1441 output_sep(opt, sign);
5b594f45 1442 }
89252cd0
TB
1443 /*
1444 * Treat 'cno' as the 1-indexed offset from the start of a non-context
1445 * line to its first match. Otherwise, 'cno' is 0 indicating that we are
1446 * being called with a context line.
1447 */
1448 if (opt->columnnum && cno) {
1449 char buf[32];
1450 xsnprintf(buf, sizeof(buf), "%"PRIuMAX, (uintmax_t)cno);
d036d667 1451 output_color(opt, buf, strlen(buf), opt->colors[GREP_COLOR_COLUMNNO]);
89252cd0
TB
1452 output_sep(opt, sign);
1453 }
7e8f59d5
RS
1454 if (opt->color) {
1455 regmatch_t match;
1456 enum grep_context ctx = GREP_CONTEXT_BODY;
1457 int ch = *eol;
1458 int eflags = 0;
1459
79a77109 1460 if (sign == ':')
fa151dc5 1461 match_color = opt->colors[GREP_COLOR_MATCH_SELECTED];
79a77109 1462 else
fa151dc5 1463 match_color = opt->colors[GREP_COLOR_MATCH_CONTEXT];
00588bb5 1464 if (sign == ':')
fa151dc5 1465 line_color = opt->colors[GREP_COLOR_SELECTED];
00588bb5 1466 else if (sign == '-')
fa151dc5 1467 line_color = opt->colors[GREP_COLOR_CONTEXT];
00588bb5 1468 else if (sign == '=')
fa151dc5 1469 line_color = opt->colors[GREP_COLOR_FUNCTION];
7e8f59d5
RS
1470 *eol = '\0';
1471 while (next_match(opt, bol, eol, ctx, &match, eflags)) {
1f5b9cc4
RS
1472 if (match.rm_so == match.rm_eo)
1473 break;
5b594f45 1474
00588bb5 1475 output_color(opt, bol, match.rm_so, line_color);
55f638bd 1476 output_color(opt, bol + match.rm_so,
79a77109 1477 match.rm_eo - match.rm_so, match_color);
7e8f59d5
RS
1478 bol += match.rm_eo;
1479 rest -= match.rm_eo;
1480 eflags = REG_NOTBOL;
1481 }
1482 *eol = ch;
1483 }
00588bb5 1484 output_color(opt, bol, rest, line_color);
5b594f45 1485 opt->output(opt, "\n", 1);
7e8f59d5
RS
1486}
1487
0579f91d 1488#ifndef NO_PTHREADS
78db6ea9
JK
1489int grep_use_locks;
1490
0579f91d
TR
1491/*
1492 * This lock protects access to the gitattributes machinery, which is
1493 * not thread-safe.
1494 */
1495pthread_mutex_t grep_attr_mutex;
1496
78db6ea9 1497static inline void grep_attr_lock(void)
0579f91d 1498{
78db6ea9 1499 if (grep_use_locks)
0579f91d
TR
1500 pthread_mutex_lock(&grep_attr_mutex);
1501}
1502
78db6ea9 1503static inline void grep_attr_unlock(void)
0579f91d 1504{
78db6ea9 1505 if (grep_use_locks)
0579f91d
TR
1506 pthread_mutex_unlock(&grep_attr_mutex);
1507}
b3aeb285
JK
1508
1509/*
1510 * Same as git_attr_mutex, but protecting the thread-unsafe object db access.
1511 */
1512pthread_mutex_t grep_read_mutex;
1513
0579f91d 1514#else
78db6ea9
JK
1515#define grep_attr_lock()
1516#define grep_attr_unlock()
0579f91d
TR
1517#endif
1518
e1327023 1519static int match_funcname(struct grep_opt *opt, struct grep_source *gs, char *bol, char *eol)
2944e4e6 1520{
60ecac98 1521 xdemitconf_t *xecfg = opt->priv;
0579f91d 1522 if (xecfg && !xecfg->find_func) {
94ad9d9e
JK
1523 grep_source_load_driver(gs);
1524 if (gs->driver->funcname.pattern) {
1525 const struct userdiff_funcname *pe = &gs->driver->funcname;
0579f91d
TR
1526 xdiff_set_find_func(xecfg, pe->pattern, pe->cflags);
1527 } else {
1528 xecfg = opt->priv = NULL;
1529 }
1530 }
1531
1532 if (xecfg) {
60ecac98
RS
1533 char buf[1];
1534 return xecfg->find_func(bol, eol - bol, buf, 1,
1535 xecfg->find_func_priv) >= 0;
1536 }
1537
2944e4e6
RS
1538 if (bol == eol)
1539 return 0;
1540 if (isalpha(*bol) || *bol == '_' || *bol == '$')
1541 return 1;
1542 return 0;
1543}
1544
e1327023
JK
1545static void show_funcname_line(struct grep_opt *opt, struct grep_source *gs,
1546 char *bol, unsigned lno)
2944e4e6 1547{
e1327023 1548 while (bol > gs->buf) {
2944e4e6
RS
1549 char *eol = --bol;
1550
e1327023 1551 while (bol > gs->buf && bol[-1] != '\n')
2944e4e6
RS
1552 bol--;
1553 lno--;
1554
1555 if (lno <= opt->last_shown)
1556 break;
1557
e1327023 1558 if (match_funcname(opt, gs, bol, eol)) {
89252cd0 1559 show_line(opt, bol, eol, gs->name, lno, 0, '=');
2944e4e6
RS
1560 break;
1561 }
1562 }
1563}
1564
a5dc20b0
RS
1565static int is_empty_line(const char *bol, const char *eol);
1566
e1327023 1567static void show_pre_context(struct grep_opt *opt, struct grep_source *gs,
ba8ea749 1568 char *bol, char *end, unsigned lno)
49de3216 1569{
6653a01b 1570 unsigned cur = lno, from = 1, funcname_lno = 0, orig_from;
a5dc20b0 1571 int funcname_needed = !!opt->funcname, comment_needed = 0;
ba8ea749 1572
49de3216
RS
1573 if (opt->pre_context < lno)
1574 from = lno - opt->pre_context;
1575 if (from <= opt->last_shown)
1576 from = opt->last_shown + 1;
6653a01b 1577 orig_from = from;
a5dc20b0
RS
1578 if (opt->funcbody) {
1579 if (match_funcname(opt, gs, bol, end))
1580 comment_needed = 1;
1581 else
1582 funcname_needed = 1;
6653a01b
RS
1583 from = opt->last_shown + 1;
1584 }
49de3216
RS
1585
1586 /* Rewind. */
6653a01b 1587 while (bol > gs->buf && cur > from) {
a5dc20b0 1588 char *next_bol = bol;
2944e4e6
RS
1589 char *eol = --bol;
1590
e1327023 1591 while (bol > gs->buf && bol[-1] != '\n')
49de3216
RS
1592 bol--;
1593 cur--;
a5dc20b0
RS
1594 if (comment_needed && (is_empty_line(bol, eol) ||
1595 match_funcname(opt, gs, bol, eol))) {
1596 comment_needed = 0;
1597 from = orig_from;
1598 if (cur < from) {
1599 cur++;
1600 bol = next_bol;
1601 break;
1602 }
1603 }
e1327023 1604 if (funcname_needed && match_funcname(opt, gs, bol, eol)) {
2944e4e6
RS
1605 funcname_lno = cur;
1606 funcname_needed = 0;
a5dc20b0
RS
1607 if (opt->funcbody)
1608 comment_needed = 1;
1609 else
1610 from = orig_from;
2944e4e6 1611 }
49de3216
RS
1612 }
1613
2944e4e6
RS
1614 /* We need to look even further back to find a function signature. */
1615 if (opt->funcname && funcname_needed)
e1327023 1616 show_funcname_line(opt, gs, bol, cur);
2944e4e6 1617
49de3216
RS
1618 /* Back forward. */
1619 while (cur < lno) {
2944e4e6 1620 char *eol = bol, sign = (cur == funcname_lno) ? '=' : '-';
49de3216
RS
1621
1622 while (*eol != '\n')
1623 eol++;
89252cd0 1624 show_line(opt, bol, eol, gs->name, cur, 0, sign);
49de3216
RS
1625 bol = eol + 1;
1626 cur++;
1627 }
1628}
1629
a26345b6
JH
1630static int should_lookahead(struct grep_opt *opt)
1631{
1632 struct grep_pat *p;
1633
1634 if (opt->extended)
1635 return 0; /* punt for too complex stuff */
1636 if (opt->invert)
1637 return 0;
1638 for (p = opt->pattern_list; p; p = p->next) {
1639 if (p->token != GREP_PATTERN)
1640 return 0; /* punt for "header only" and stuff */
1641 }
1642 return 1;
1643}
1644
1645static int look_ahead(struct grep_opt *opt,
1646 unsigned long *left_p,
1647 unsigned *lno_p,
1648 char **bol_p)
1649{
1650 unsigned lno = *lno_p;
1651 char *bol = *bol_p;
1652 struct grep_pat *p;
1653 char *sp, *last_bol;
1654 regoff_t earliest = -1;
1655
1656 for (p = opt->pattern_list; p; p = p->next) {
1657 int hit;
1658 regmatch_t m;
1659
97e77784 1660 hit = patmatch(p, bol, bol + *left_p, &m, 0);
a26345b6
JH
1661 if (!hit || m.rm_so < 0 || m.rm_eo < 0)
1662 continue;
1663 if (earliest < 0 || m.rm_so < earliest)
1664 earliest = m.rm_so;
1665 }
1666
1667 if (earliest < 0) {
1668 *bol_p = bol + *left_p;
1669 *left_p = 0;
1670 return 1;
1671 }
1672 for (sp = bol + earliest; bol < sp && sp[-1] != '\n'; sp--)
1673 ; /* find the beginning of the line */
1674 last_bol = sp;
1675
1676 for (sp = bol; sp < last_bol; sp++) {
1677 if (*sp == '\n')
1678 lno++;
1679 }
1680 *left_p -= last_bol - bol;
1681 *bol_p = last_bol;
1682 *lno_p = lno;
1683 return 0;
1684}
1685
335ec3bf
JK
1686static int fill_textconv_grep(struct userdiff_driver *driver,
1687 struct grep_source *gs)
1688{
1689 struct diff_filespec *df;
1690 char *buf;
1691 size_t size;
1692
1693 if (!driver || !driver->textconv)
1694 return grep_source_load(gs);
1695
1696 /*
1697 * The textconv interface is intimately tied to diff_filespecs, so we
1698 * have to pretend to be one. If we could unify the grep_source
1699 * and diff_filespec structs, this mess could just go away.
1700 */
1701 df = alloc_filespec(gs->path);
1702 switch (gs->type) {
1c41c82b 1703 case GREP_SOURCE_OID:
335ec3bf
JK
1704 fill_filespec(df, gs->identifier, 1, 0100644);
1705 break;
1706 case GREP_SOURCE_FILE:
f9704c2d 1707 fill_filespec(df, &null_oid, 0, 0100644);
335ec3bf
JK
1708 break;
1709 default:
033abf97 1710 BUG("attempt to textconv something without a path?");
335ec3bf
JK
1711 }
1712
1713 /*
1714 * fill_textconv is not remotely thread-safe; it may load objects
1715 * behind the scenes, and it modifies the global diff tempfile
1716 * structure.
1717 */
1718 grep_read_lock();
1719 size = fill_textconv(driver, df, &buf);
1720 grep_read_unlock();
1721 free_filespec(df);
1722
1723 /*
1724 * The normal fill_textconv usage by the diff machinery would just keep
1725 * the textconv'd buf separate from the diff_filespec. But much of the
1726 * grep code passes around a grep_source and assumes that its "buf"
1727 * pointer is the beginning of the thing we are searching. So let's
1728 * install our textconv'd version into the grep_source, taking care not
1729 * to leak any existing buffer.
1730 */
1731 grep_source_clear_data(gs);
1732 gs->buf = buf;
1733 gs->size = size;
1734
1735 return 0;
1736}
1737
4aa2c475
RS
1738static int is_empty_line(const char *bol, const char *eol)
1739{
1740 while (bol < eol && isspace(*bol))
1741 bol++;
1742 return bol == eol;
1743}
1744
e1327023 1745static int grep_source_1(struct grep_opt *opt, struct grep_source *gs, int collect_hits)
83b5d2f5 1746{
e1327023 1747 char *bol;
4aa2c475 1748 char *peek_bol = NULL;
e1327023 1749 unsigned long left;
83b5d2f5 1750 unsigned lno = 1;
83b5d2f5 1751 unsigned last_hit = 0;
83b5d2f5 1752 int binary_match_only = 0;
83b5d2f5 1753 unsigned count = 0;
a26345b6 1754 int try_lookahead = 0;
ba8ea749 1755 int show_function = 0;
335ec3bf 1756 struct userdiff_driver *textconv = NULL;
480c1ca6 1757 enum grep_context ctx = GREP_CONTEXT_HEAD;
60ecac98 1758 xdemitconf_t xecfg;
83b5d2f5 1759
5b594f45
FK
1760 if (!opt->output)
1761 opt->output = std_output;
1762
ba8ea749
RS
1763 if (opt->pre_context || opt->post_context || opt->file_break ||
1764 opt->funcbody) {
08303c36
RS
1765 /* Show hunk marks, except for the first file. */
1766 if (opt->last_shown)
1767 opt->show_hunk_mark = 1;
1768 /*
1769 * If we're using threads then we can't easily identify
1770 * the first file. Always put hunk marks in that case
1771 * and skip the very first one later in work_done().
1772 */
1773 if (opt->output != std_output)
1774 opt->show_hunk_mark = 1;
1775 }
431d6e7b
RS
1776 opt->last_shown = 0;
1777
335ec3bf
JK
1778 if (opt->allow_textconv) {
1779 grep_source_load_driver(gs);
1780 /*
1781 * We might set up the shared textconv cache data here, which
1782 * is not thread-safe.
1783 */
1784 grep_attr_lock();
1785 textconv = userdiff_get_textconv(gs->driver);
1786 grep_attr_unlock();
1787 }
1788
1789 /*
1790 * We know the result of a textconv is text, so we only have to care
1791 * about binary handling if we are not using it.
1792 */
1793 if (!textconv) {
1794 switch (opt->binary) {
1795 case GREP_BINARY_DEFAULT:
1796 if (grep_source_is_binary(gs))
1797 binary_match_only = 1;
1798 break;
1799 case GREP_BINARY_NOMATCH:
1800 if (grep_source_is_binary(gs))
1801 return 0; /* Assume unmatch */
1802 break;
1803 case GREP_BINARY_TEXT:
1804 break;
1805 default:
033abf97 1806 BUG("unknown binary handling mode");
335ec3bf 1807 }
83b5d2f5
JH
1808 }
1809
60ecac98 1810 memset(&xecfg, 0, sizeof(xecfg));
0579f91d
TR
1811 opt->priv = &xecfg;
1812
a26345b6 1813 try_lookahead = should_lookahead(opt);
60ecac98 1814
335ec3bf 1815 if (fill_textconv_grep(textconv, gs) < 0)
08265798
JK
1816 return 0;
1817
e1327023
JK
1818 bol = gs->buf;
1819 left = gs->size;
83b5d2f5
JH
1820 while (left) {
1821 char *eol, ch;
0ab7befa 1822 int hit;
89252cd0 1823 ssize_t cno;
68d686e6 1824 ssize_t col = -1, icol = -1;
83b5d2f5 1825
a26345b6 1826 /*
8997da38 1827 * look_ahead() skips quickly to the line that possibly
a26345b6
JH
1828 * has the next hit; don't call it if we need to do
1829 * something more than just skipping the current line
1830 * in response to an unmatch for the current line. E.g.
1831 * inside a post-context window, we will show the current
1832 * line as a context around the previous hit when it
1833 * doesn't hit.
1834 */
1835 if (try_lookahead
1836 && !(last_hit
ba8ea749
RS
1837 && (show_function ||
1838 lno <= last_hit + opt->post_context))
a26345b6
JH
1839 && look_ahead(opt, &left, &lno, &bol))
1840 break;
83b5d2f5
JH
1841 eol = end_of_line(bol, &left);
1842 ch = *eol;
1843 *eol = 0;
1844
480c1ca6
JH
1845 if ((ctx == GREP_CONTEXT_HEAD) && (eol == bol))
1846 ctx = GREP_CONTEXT_BODY;
1847
68d686e6 1848 hit = match_line(opt, bol, eol, &col, &icol, ctx, collect_hits);
83b5d2f5
JH
1849 *eol = ch;
1850
0ab7befa
JH
1851 if (collect_hits)
1852 goto next_line;
1853
83b5d2f5
JH
1854 /* "grep -v -e foo -e bla" should list lines
1855 * that do not have either, so inversion should
1856 * be done outside.
1857 */
1858 if (opt->invert)
1859 hit = !hit;
1860 if (opt->unmatch_name_only) {
1861 if (hit)
1862 return 0;
1863 goto next_line;
1864 }
1865 if (hit) {
1866 count++;
1867 if (opt->status_only)
1868 return 1;
321ffcc0 1869 if (opt->name_only) {
e1327023 1870 show_name(opt, gs->name);
321ffcc0
RS
1871 return 1;
1872 }
c30c10cf
RS
1873 if (opt->count)
1874 goto next_line;
83b5d2f5 1875 if (binary_match_only) {
5b594f45 1876 opt->output(opt, "Binary file ", 12);
e1327023 1877 output_color(opt, gs->name, strlen(gs->name),
fa151dc5 1878 opt->colors[GREP_COLOR_FILENAME]);
5b594f45 1879 opt->output(opt, " matches\n", 9);
83b5d2f5
JH
1880 return 1;
1881 }
83b5d2f5
JH
1882 /* Hit at this line. If we haven't shown the
1883 * pre-context lines, we would need to show them.
83b5d2f5 1884 */
ba8ea749 1885 if (opt->pre_context || opt->funcbody)
e1327023 1886 show_pre_context(opt, gs, bol, eol, lno);
2944e4e6 1887 else if (opt->funcname)
e1327023 1888 show_funcname_line(opt, gs, bol, lno);
89252cd0
TB
1889 cno = opt->invert ? icol : col;
1890 if (cno < 0) {
1891 /*
1892 * A negative cno indicates that there was no
1893 * match on the line. We are thus inverted and
1894 * being asked to show all lines that _don't_
1895 * match a given expression. Therefore, set cno
1896 * to 0 to suggest the whole line matches.
1897 */
1898 cno = 0;
1899 }
1900 show_line(opt, bol, eol, gs->name, lno, cno + 1, ':');
5dd06d38 1901 last_hit = lno;
ba8ea749
RS
1902 if (opt->funcbody)
1903 show_function = 1;
1904 goto next_line;
83b5d2f5 1905 }
4aa2c475
RS
1906 if (show_function && (!peek_bol || peek_bol < bol)) {
1907 unsigned long peek_left = left;
1908 char *peek_eol = eol;
1909
1910 /*
1911 * Trailing empty lines are not interesting.
1912 * Peek past them to see if they belong to the
1913 * body of the current function.
1914 */
1915 peek_bol = bol;
1916 while (is_empty_line(peek_bol, peek_eol)) {
1917 peek_bol = peek_eol + 1;
1918 peek_eol = end_of_line(peek_bol, &peek_left);
1919 }
1920
1921 if (match_funcname(opt, gs, peek_bol, peek_eol))
1922 show_function = 0;
1923 }
ba8ea749
RS
1924 if (show_function ||
1925 (last_hit && lno <= last_hit + opt->post_context)) {
83b5d2f5
JH
1926 /* If the last hit is within the post context,
1927 * we need to show this line.
1928 */
89252cd0 1929 show_line(opt, bol, eol, gs->name, lno, col + 1, '-');
83b5d2f5 1930 }
83b5d2f5
JH
1931
1932 next_line:
1933 bol = eol + 1;
1934 if (!left)
1935 break;
1936 left--;
1937 lno++;
1938 }
1939
0ab7befa
JH
1940 if (collect_hits)
1941 return 0;
b48fb5b6 1942
83b5d2f5 1943 if (opt->status_only)
e1f68c66 1944 return opt->unmatch_name_only;
83b5d2f5
JH
1945 if (opt->unmatch_name_only) {
1946 /* We did not see any hit, so we want to show this */
e1327023 1947 show_name(opt, gs->name);
83b5d2f5
JH
1948 return 1;
1949 }
1950
60ecac98
RS
1951 xdiff_clear_find_func(&xecfg);
1952 opt->priv = NULL;
1953
83b5d2f5
JH
1954 /* NEEDSWORK:
1955 * The real "grep -c foo *.c" gives many "bar.c:0" lines,
1956 * which feels mostly useless but sometimes useful. Maybe
1957 * make it another option? For now suppress them.
1958 */
5b594f45
FK
1959 if (opt->count && count) {
1960 char buf[32];
f76d947a
RS
1961 if (opt->pathname) {
1962 output_color(opt, gs->name, strlen(gs->name),
fa151dc5 1963 opt->colors[GREP_COLOR_FILENAME]);
f76d947a
RS
1964 output_sep(opt, ':');
1965 }
1a168e5c 1966 xsnprintf(buf, sizeof(buf), "%u\n", count);
5b594f45 1967 opt->output(opt, buf, strlen(buf));
c30c10cf 1968 return 1;
5b594f45 1969 }
83b5d2f5
JH
1970 return !!last_hit;
1971}
1972
0ab7befa
JH
1973static void clr_hit_marker(struct grep_expr *x)
1974{
1975 /* All-hit markers are meaningful only at the very top level
1976 * OR node.
1977 */
1978 while (1) {
1979 x->hit = 0;
1980 if (x->node != GREP_NODE_OR)
1981 return;
1982 x->u.binary.left->hit = 0;
1983 x = x->u.binary.right;
1984 }
1985}
1986
1987static int chk_hit_marker(struct grep_expr *x)
1988{
1989 /* Top level nodes have hit markers. See if they all are hits */
1990 while (1) {
1991 if (x->node != GREP_NODE_OR)
1992 return x->hit;
1993 if (!x->u.binary.left->hit)
1994 return 0;
1995 x = x->u.binary.right;
1996 }
1997}
1998
e1327023 1999int grep_source(struct grep_opt *opt, struct grep_source *gs)
0ab7befa
JH
2000{
2001 /*
2002 * we do not have to do the two-pass grep when we do not check
2003 * buffer-wide "all-match".
2004 */
2005 if (!opt->all_match)
e1327023 2006 return grep_source_1(opt, gs, 0);
0ab7befa
JH
2007
2008 /* Otherwise the toplevel "or" terms hit a bit differently.
2009 * We first clear hit markers from them.
2010 */
2011 clr_hit_marker(opt->pattern_expression);
e1327023 2012 grep_source_1(opt, gs, 1);
0ab7befa
JH
2013
2014 if (!chk_hit_marker(opt->pattern_expression))
2015 return 0;
2016
e1327023
JK
2017 return grep_source_1(opt, gs, 0);
2018}
2019
c876d6da 2020int grep_buffer(struct grep_opt *opt, char *buf, unsigned long size)
e1327023
JK
2021{
2022 struct grep_source gs;
2023 int r;
2024
55c61688 2025 grep_source_init(&gs, GREP_SOURCE_BUF, NULL, NULL, NULL);
e1327023
JK
2026 gs.buf = buf;
2027 gs.size = size;
2028
2029 r = grep_source(opt, &gs);
2030
2031 grep_source_clear(&gs);
2032 return r;
2033}
2034
2035void grep_source_init(struct grep_source *gs, enum grep_source_type type,
55c61688
NTND
2036 const char *name, const char *path,
2037 const void *identifier)
e1327023
JK
2038{
2039 gs->type = type;
8c53f071
JK
2040 gs->name = xstrdup_or_null(name);
2041 gs->path = xstrdup_or_null(path);
e1327023
JK
2042 gs->buf = NULL;
2043 gs->size = 0;
94ad9d9e 2044 gs->driver = NULL;
e1327023
JK
2045
2046 switch (type) {
2047 case GREP_SOURCE_FILE:
2048 gs->identifier = xstrdup(identifier);
2049 break;
1c41c82b
BW
2050 case GREP_SOURCE_OID:
2051 gs->identifier = oiddup(identifier);
e1327023
JK
2052 break;
2053 case GREP_SOURCE_BUF:
2054 gs->identifier = NULL;
4538eef5 2055 break;
e1327023
JK
2056 }
2057}
2058
2059void grep_source_clear(struct grep_source *gs)
2060{
88ce3ef6
ÆAB
2061 FREE_AND_NULL(gs->name);
2062 FREE_AND_NULL(gs->path);
2063 FREE_AND_NULL(gs->identifier);
e1327023
JK
2064 grep_source_clear_data(gs);
2065}
2066
2067void grep_source_clear_data(struct grep_source *gs)
2068{
2069 switch (gs->type) {
2070 case GREP_SOURCE_FILE:
1c41c82b 2071 case GREP_SOURCE_OID:
6a83d902 2072 FREE_AND_NULL(gs->buf);
e1327023
JK
2073 gs->size = 0;
2074 break;
2075 case GREP_SOURCE_BUF:
2076 /* leave user-provided buf intact */
2077 break;
2078 }
2079}
2080
1c41c82b 2081static int grep_source_load_oid(struct grep_source *gs)
e1327023
JK
2082{
2083 enum object_type type;
2084
2085 grep_read_lock();
b4f5aca4 2086 gs->buf = read_object_file(gs->identifier, &type, &gs->size);
e1327023
JK
2087 grep_read_unlock();
2088
2089 if (!gs->buf)
2090 return error(_("'%s': unable to read %s"),
2091 gs->name,
1c41c82b 2092 oid_to_hex(gs->identifier));
e1327023
JK
2093 return 0;
2094}
2095
2096static int grep_source_load_file(struct grep_source *gs)
2097{
2098 const char *filename = gs->identifier;
2099 struct stat st;
2100 char *data;
2101 size_t size;
2102 int i;
2103
2104 if (lstat(filename, &st) < 0) {
2105 err_ret:
2106 if (errno != ENOENT)
7645d8f1 2107 error_errno(_("failed to stat '%s'"), filename);
e1327023
JK
2108 return -1;
2109 }
2110 if (!S_ISREG(st.st_mode))
2111 return -1;
2112 size = xsize_t(st.st_size);
2113 i = open(filename, O_RDONLY);
2114 if (i < 0)
2115 goto err_ret;
3733e694 2116 data = xmallocz(size);
e1327023 2117 if (st.st_size != read_in_full(i, data, size)) {
7645d8f1 2118 error_errno(_("'%s': short read"), filename);
e1327023
JK
2119 close(i);
2120 free(data);
2121 return -1;
2122 }
2123 close(i);
e1327023
JK
2124
2125 gs->buf = data;
2126 gs->size = size;
2127 return 0;
2128}
2129
3083301e 2130static int grep_source_load(struct grep_source *gs)
e1327023
JK
2131{
2132 if (gs->buf)
2133 return 0;
2134
2135 switch (gs->type) {
2136 case GREP_SOURCE_FILE:
2137 return grep_source_load_file(gs);
1c41c82b
BW
2138 case GREP_SOURCE_OID:
2139 return grep_source_load_oid(gs);
e1327023
JK
2140 case GREP_SOURCE_BUF:
2141 return gs->buf ? 0 : -1;
2142 }
033abf97 2143 BUG("invalid grep_source type to load");
0ab7befa 2144}
94ad9d9e
JK
2145
2146void grep_source_load_driver(struct grep_source *gs)
2147{
2148 if (gs->driver)
2149 return;
2150
2151 grep_attr_lock();
55c61688
NTND
2152 if (gs->path)
2153 gs->driver = userdiff_find_by_path(gs->path);
94ad9d9e
JK
2154 if (!gs->driver)
2155 gs->driver = userdiff_find_by_name("default");
2156 grep_attr_unlock();
2157}
41b59bfc 2158
3083301e 2159static int grep_source_is_binary(struct grep_source *gs)
41b59bfc
JK
2160{
2161 grep_source_load_driver(gs);
2162 if (gs->driver->binary != -1)
2163 return gs->driver->binary;
2164
2165 if (!grep_source_load(gs))
2166 return buffer_is_binary(gs->buf, gs->size);
2167
2168 return 0;
2169}