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