]> git.ipfire.org Git - thirdparty/git.git/blame - grep.c
grep: mark "haystack" buffers as const
[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 13static int grep_source_load(struct grep_source *gs);
acd00ea0
NTND
14static int grep_source_is_binary(struct grep_source *gs,
15 struct index_state *istate);
07a7d656 16
96313423
17static void std_output(struct grep_opt *opt, const void *buf, size_t size)
18{
19 fwrite(buf, size, 1, stdout);
20}
21
22static struct grep_opt grep_defaults = {
23 .relative = 1,
24 .pathname = 1,
25 .max_depth = -1,
26 .pattern_type_option = GREP_PATTERN_TYPE_UNSPECIFIED,
27 .colors = {
28 [GREP_COLOR_CONTEXT] = "",
29 [GREP_COLOR_FILENAME] = "",
30 [GREP_COLOR_FUNCTION] = "",
31 [GREP_COLOR_LINENO] = "",
32 [GREP_COLOR_COLUMNNO] = "",
33 [GREP_COLOR_MATCH_CONTEXT] = GIT_COLOR_BOLD_RED,
34 [GREP_COLOR_MATCH_SELECTED] = GIT_COLOR_BOLD_RED,
35 [GREP_COLOR_SELECTED] = "",
36 [GREP_COLOR_SEP] = GIT_COLOR_CYAN,
37 },
38 .only_matching = 0,
39 .color = -1,
40 .output = std_output,
41};
7687a054 42
fa151dc5
NTND
43static const char *color_grep_slots[] = {
44 [GREP_COLOR_CONTEXT] = "context",
45 [GREP_COLOR_FILENAME] = "filename",
46 [GREP_COLOR_FUNCTION] = "function",
47 [GREP_COLOR_LINENO] = "lineNumber",
d036d667 48 [GREP_COLOR_COLUMNNO] = "column",
fa151dc5
NTND
49 [GREP_COLOR_MATCH_CONTEXT] = "matchContext",
50 [GREP_COLOR_MATCH_SELECTED] = "matchSelected",
51 [GREP_COLOR_SELECTED] = "selected",
52 [GREP_COLOR_SEP] = "separator",
53};
54
7687a054
JH
55static int parse_pattern_type_arg(const char *opt, const char *arg)
56{
57 if (!strcmp(arg, "default"))
58 return GREP_PATTERN_TYPE_UNSPECIFIED;
59 else if (!strcmp(arg, "basic"))
60 return GREP_PATTERN_TYPE_BRE;
61 else if (!strcmp(arg, "extended"))
62 return GREP_PATTERN_TYPE_ERE;
63 else if (!strcmp(arg, "fixed"))
64 return GREP_PATTERN_TYPE_FIXED;
65 else if (!strcmp(arg, "perl"))
66 return GREP_PATTERN_TYPE_PCRE;
67 die("bad %s argument: %s", opt, arg);
68}
69
3ac68a93
NTND
70define_list_config_array_extra(color_grep_slots, {"match"});
71
7687a054
JH
72/*
73 * Read the configuration file once and store it in
74 * the grep_defaults template.
75 */
76int grep_config(const char *var, const char *value, void *cb)
77{
78 struct grep_opt *opt = &grep_defaults;
fa151dc5 79 const char *slot;
7687a054
JH
80
81 if (userdiff_config(var, value) < 0)
82 return -1;
83
6ba9bb76
84 /*
85 * The instance of grep_opt that we set up here is copied by
86 * grep_init() to be used by each individual invocation.
87 * When populating a new field of this structure here, be
88 * sure to think about ownership -- e.g., you might need to
89 * override the shallow copy in grep_init() with a deep copy.
90 */
91
7687a054 92 if (!strcmp(var, "grep.extendedregexp")) {
c7e38551 93 opt->extended_regexp_option = git_config_bool(var, value);
7687a054
JH
94 return 0;
95 }
96
97 if (!strcmp(var, "grep.patterntype")) {
98 opt->pattern_type_option = parse_pattern_type_arg(var, value);
99 return 0;
100 }
101
102 if (!strcmp(var, "grep.linenumber")) {
103 opt->linenum = git_config_bool(var, value);
104 return 0;
105 }
6653fec3
TB
106 if (!strcmp(var, "grep.column")) {
107 opt->columnnum = git_config_bool(var, value);
108 return 0;
109 }
7687a054 110
6453f7b3
AS
111 if (!strcmp(var, "grep.fullname")) {
112 opt->relative = !git_config_bool(var, value);
113 return 0;
114 }
115
7687a054
JH
116 if (!strcmp(var, "color.grep"))
117 opt->color = git_config_colorbool(var, value);
fa151dc5
NTND
118 if (!strcmp(var, "color.grep.match")) {
119 if (grep_config("color.grep.matchcontext", value, cb) < 0)
120 return -1;
121 if (grep_config("color.grep.matchselected", value, cb) < 0)
122 return -1;
123 } else if (skip_prefix(var, "color.grep.", &slot)) {
124 int i = LOOKUP_CONFIG(color_grep_slots, slot);
125 char *color;
126
127 if (i < 0)
128 return -1;
129 color = opt->colors[i];
7687a054
JH
130 if (!value)
131 return config_error_nonbool(var);
f6c5a296 132 return color_parse(value, color);
7687a054
JH
133 }
134 return 0;
135}
136
137/*
138 * Initialize one instance of grep_opt and copy the
139 * default values from the template we read the configuration
140 * information in an earlier call to git_config(grep_config).
141 */
38bbc2ea 142void grep_init(struct grep_opt *opt, struct repository *repo, const char *prefix)
7687a054 143{
6ba9bb76
144 *opt = grep_defaults;
145
38bbc2ea 146 opt->repo = repo;
7687a054
JH
147 opt->prefix = prefix;
148 opt->prefix_length = (prefix && *prefix) ? strlen(prefix) : 0;
149 opt->pattern_tail = &opt->pattern_list;
150 opt->header_tail = &opt->header_list;
7687a054 151}
07a7d656 152
8465541e 153static void grep_set_pattern_type_option(enum grep_pattern_type pattern_type, struct grep_opt *opt)
c5c31d33 154{
07a3d411
ÆAB
155 /*
156 * When committing to the pattern type by setting the relevant
157 * fields in grep_opt it's generally not necessary to zero out
158 * the fields we're not choosing, since they won't have been
159 * set by anything. The extended_regexp_option field is the
160 * only exception to this.
161 *
162 * This is because in the process of parsing grep.patternType
163 * & grep.extendedRegexp we set opt->pattern_type_option and
164 * opt->extended_regexp_option, respectively. We then
165 * internally use opt->extended_regexp_option to see if we're
166 * compiling an ERE. It must be unset if that's not actually
167 * the case.
168 */
169 if (pattern_type != GREP_PATTERN_TYPE_ERE &&
170 opt->extended_regexp_option)
171 opt->extended_regexp_option = 0;
172
c5c31d33
JH
173 switch (pattern_type) {
174 case GREP_PATTERN_TYPE_UNSPECIFIED:
175 /* fall through */
176
177 case GREP_PATTERN_TYPE_BRE:
c5c31d33
JH
178 break;
179
180 case GREP_PATTERN_TYPE_ERE:
07a3d411 181 opt->extended_regexp_option = 1;
c5c31d33
JH
182 break;
183
184 case GREP_PATTERN_TYPE_FIXED:
185 opt->fixed = 1;
c5c31d33
JH
186 break;
187
188 case GREP_PATTERN_TYPE_PCRE:
94da9193 189 opt->pcre2 = 1;
c5c31d33
JH
190 break;
191 }
192}
193
8465541e
JH
194void grep_commit_pattern_type(enum grep_pattern_type pattern_type, struct grep_opt *opt)
195{
196 if (pattern_type != GREP_PATTERN_TYPE_UNSPECIFIED)
197 grep_set_pattern_type_option(pattern_type, opt);
198 else if (opt->pattern_type_option != GREP_PATTERN_TYPE_UNSPECIFIED)
199 grep_set_pattern_type_option(opt->pattern_type_option, opt);
200 else if (opt->extended_regexp_option)
07a3d411
ÆAB
201 /*
202 * This branch *must* happen after setting from the
203 * opt->pattern_type_option above, we don't want
204 * grep.extendedRegexp to override grep.patternType!
205 */
8465541e
JH
206 grep_set_pattern_type_option(GREP_PATTERN_TYPE_ERE, opt);
207}
208
fc456751
RS
209static struct grep_pat *create_grep_pat(const char *pat, size_t patlen,
210 const char *origin, int no,
211 enum grep_pat_token t,
212 enum grep_header_field field)
a4d7d2c6
JH
213{
214 struct grep_pat *p = xcalloc(1, sizeof(*p));
526a858a 215 p->pattern = xmemdupz(pat, patlen);
fc456751
RS
216 p->patternlen = patlen;
217 p->origin = origin;
218 p->no = no;
219 p->token = t;
a4d7d2c6 220 p->field = field;
fc456751
RS
221 return p;
222}
223
2b3873ff
RS
224static void do_append_grep_pat(struct grep_pat ***tail, struct grep_pat *p)
225{
226 **tail = p;
227 *tail = &p->next;
a4d7d2c6 228 p->next = NULL;
526a858a
RS
229
230 switch (p->token) {
231 case GREP_PATTERN: /* atom */
232 case GREP_PATTERN_HEAD:
233 case GREP_PATTERN_BODY:
234 for (;;) {
235 struct grep_pat *new_pat;
236 size_t len = 0;
237 char *cp = p->pattern + p->patternlen, *nl = NULL;
238 while (++len <= p->patternlen) {
239 if (*(--cp) == '\n') {
240 nl = cp;
241 break;
242 }
243 }
244 if (!nl)
245 break;
246 new_pat = create_grep_pat(nl + 1, len - 1, p->origin,
247 p->no, p->token, p->field);
248 new_pat->next = p->next;
249 if (!p->next)
250 *tail = &new_pat->next;
251 p->next = new_pat;
252 *nl = '\0';
253 p->patternlen -= len;
254 }
255 break;
256 default:
257 break;
258 }
2b3873ff
RS
259}
260
fc456751
RS
261void append_header_grep_pattern(struct grep_opt *opt,
262 enum grep_header_field field, const char *pat)
263{
264 struct grep_pat *p = create_grep_pat(pat, strlen(pat), "header", 0,
265 GREP_PATTERN_HEAD, field);
baa6378f
JH
266 if (field == GREP_HEADER_REFLOG)
267 opt->use_reflog_filter = 1;
2b3873ff 268 do_append_grep_pat(&opt->header_tail, p);
a4d7d2c6
JH
269}
270
83b5d2f5
JH
271void append_grep_pattern(struct grep_opt *opt, const char *pat,
272 const char *origin, int no, enum grep_pat_token t)
ed40a095
RS
273{
274 append_grep_pat(opt, pat, strlen(pat), origin, no, t);
275}
276
277void append_grep_pat(struct grep_opt *opt, const char *pat, size_t patlen,
278 const char *origin, int no, enum grep_pat_token t)
83b5d2f5 279{
fc456751 280 struct grep_pat *p = create_grep_pat(pat, patlen, origin, no, t, 0);
2b3873ff 281 do_append_grep_pat(&opt->pattern_tail, p);
83b5d2f5
JH
282}
283
5b594f45
FK
284struct grep_opt *grep_opt_dup(const struct grep_opt *opt)
285{
286 struct grep_pat *pat;
287 struct grep_opt *ret = xmalloc(sizeof(struct grep_opt));
288 *ret = *opt;
289
290 ret->pattern_list = NULL;
291 ret->pattern_tail = &ret->pattern_list;
292
293 for(pat = opt->pattern_list; pat != NULL; pat = pat->next)
294 {
295 if(pat->token == GREP_PATTERN_HEAD)
296 append_header_grep_pattern(ret, pat->field,
297 pat->pattern);
298 else
ed40a095
RS
299 append_grep_pat(ret, pat->pattern, pat->patternlen,
300 pat->origin, pat->no, pat->token);
5b594f45
FK
301 }
302
303 return ret;
304}
305
a30c148a
MK
306static NORETURN void compile_regexp_failed(const struct grep_pat *p,
307 const char *error)
308{
309 char where[1024];
310
311 if (p->no)
19bdd3e7 312 xsnprintf(where, sizeof(where), "In '%s' at %d, ", p->origin, p->no);
a30c148a 313 else if (p->origin)
19bdd3e7 314 xsnprintf(where, sizeof(where), "%s, ", p->origin);
a30c148a
MK
315 else
316 where[0] = 0;
317
318 die("%s'%s': %s", where, p->pattern, error);
319}
320
543f1c0c
ÆAB
321static int is_fixed(const char *s, size_t len)
322{
323 size_t i;
324
325 for (i = 0; i < len; i++) {
326 if (is_regex_special(s[i]))
327 return 0;
328 }
329
330 return 1;
331}
332
94da9193 333#ifdef USE_LIBPCRE2
c1760352
ÆAB
334#define GREP_PCRE2_DEBUG_MALLOC 0
335
336static void *pcre2_malloc(PCRE2_SIZE size, MAYBE_UNUSED void *memory_data)
337{
338 void *pointer = malloc(size);
339#if GREP_PCRE2_DEBUG_MALLOC
340 static int count = 1;
341 fprintf(stderr, "PCRE2:%p -> #%02d: alloc(%lu)\n", pointer, count++, size);
342#endif
343 return pointer;
344}
345
346static void pcre2_free(void *pointer, MAYBE_UNUSED void *memory_data)
347{
348#if GREP_PCRE2_DEBUG_MALLOC
349 static int count = 1;
350 if (pointer)
351 fprintf(stderr, "PCRE2:%p -> #%02d: free()\n", pointer, count++);
352#endif
353 free(pointer);
354}
355
94da9193
ÆAB
356static void compile_pcre2_pattern(struct grep_pat *p, const struct grep_opt *opt)
357{
358 int error;
359 PCRE2_UCHAR errbuf[256];
360 PCRE2_SIZE erroffset;
361 int options = PCRE2_MULTILINE;
94da9193 362 int jitret;
a25b9085
ÆAB
363 int patinforet;
364 size_t jitsizearg;
94da9193 365
cbe81e65
ÆAB
366 /*
367 * Call pcre2_general_context_create() before calling any
368 * other pcre2_*(). It sets up our malloc()/free() functions
369 * with which everything else is allocated.
370 */
371 p->pcre2_general_context = pcre2_general_context_create(
372 pcre2_malloc, pcre2_free, NULL);
373 if (!p->pcre2_general_context)
374 die("Couldn't allocate PCRE2 general context");
94da9193
ÆAB
375
376 if (opt->ignore_case) {
44570188 377 if (!opt->ignore_locale && has_non_ascii(p->pattern)) {
cbe81e65
ÆAB
378 p->pcre2_tables = pcre2_maketables(p->pcre2_general_context);
379 p->pcre2_compile_context = pcre2_compile_context_create(p->pcre2_general_context);
10da030a
CMAB
380 pcre2_set_character_tables(p->pcre2_compile_context,
381 p->pcre2_tables);
94da9193
ÆAB
382 }
383 options |= PCRE2_CASELESS;
384 }
870eea81
ÆAB
385 if (!opt->ignore_locale && is_utf8_locale() && has_non_ascii(p->pattern) &&
386 !(!opt->ignore_case && (p->fixed || p->is_fixed)))
95ca1f98
ÆAB
387 options |= (PCRE2_UTF | PCRE2_MATCH_INVALID_UTF);
388
797c3599 389#ifdef GIT_PCRE2_VERSION_10_36_OR_HIGHER
95ca1f98 390 /* Work around https://bugs.exim.org/show_bug.cgi?id=2642 fixed in 10.36 */
797c3599
ÆAB
391 if (PCRE2_MATCH_INVALID_UTF && options & (PCRE2_UTF | PCRE2_CASELESS))
392 options |= PCRE2_NO_START_OPTIMIZE;
393#endif
94da9193
ÆAB
394
395 p->pcre2_pattern = pcre2_compile((PCRE2_SPTR)p->pattern,
396 p->patternlen, options, &error, &erroffset,
397 p->pcre2_compile_context);
398
399 if (p->pcre2_pattern) {
cbe81e65 400 p->pcre2_match_data = pcre2_match_data_create_from_pattern(p->pcre2_pattern, p->pcre2_general_context);
94da9193
ÆAB
401 if (!p->pcre2_match_data)
402 die("Couldn't allocate PCRE2 match data");
403 } else {
404 pcre2_get_error_message(error, errbuf, sizeof(errbuf));
405 compile_regexp_failed(p, (const char *)&errbuf);
406 }
407
408 pcre2_config(PCRE2_CONFIG_JIT, &p->pcre2_jit_on);
04bef50c 409 if (p->pcre2_jit_on) {
94da9193
ÆAB
410 jitret = pcre2_jit_compile(p->pcre2_pattern, PCRE2_JIT_COMPLETE);
411 if (jitret)
412 die("Couldn't JIT the PCRE2 pattern '%s', got '%d'\n", p->pattern, jitret);
a25b9085
ÆAB
413
414 /*
415 * The pcre2_config(PCRE2_CONFIG_JIT, ...) call just
416 * tells us whether the library itself supports JIT,
417 * but to see whether we're going to be actually using
418 * JIT we need to extract PCRE2_INFO_JITSIZE from the
419 * pattern *after* we do pcre2_jit_compile() above.
420 *
421 * This is because if the pattern contains the
422 * (*NO_JIT) verb (see pcre2syntax(3))
423 * pcre2_jit_compile() will exit early with 0. If we
424 * then proceed to call pcre2_jit_match() further down
425 * the line instead of pcre2_match() we'll either
426 * segfault (pre PCRE 10.31) or run into a fatal error
427 * (post PCRE2 10.31)
428 */
429 patinforet = pcre2_pattern_info(p->pcre2_pattern, PCRE2_INFO_JITSIZE, &jitsizearg);
430 if (patinforet)
431 BUG("pcre2_pattern_info() failed: %d", patinforet);
432 if (jitsizearg == 0) {
433 p->pcre2_jit_on = 0;
434 return;
435 }
94da9193
ÆAB
436 }
437}
438
439static int pcre2match(struct grep_pat *p, const char *line, const char *eol,
440 regmatch_t *match, int eflags)
441{
442 int ret, flags = 0;
443 PCRE2_SIZE *ovector;
444 PCRE2_UCHAR errbuf[256];
445
446 if (eflags & REG_NOTBOL)
447 flags |= PCRE2_NOTBOL;
448
449 if (p->pcre2_jit_on)
450 ret = pcre2_jit_match(p->pcre2_pattern, (unsigned char *)line,
451 eol - line, 0, flags, p->pcre2_match_data,
452 NULL);
453 else
454 ret = pcre2_match(p->pcre2_pattern, (unsigned char *)line,
455 eol - line, 0, flags, p->pcre2_match_data,
456 NULL);
457
458 if (ret < 0 && ret != PCRE2_ERROR_NOMATCH) {
459 pcre2_get_error_message(ret, errbuf, sizeof(errbuf));
460 die("%s failed with error code %d: %s",
461 (p->pcre2_jit_on ? "pcre2_jit_match" : "pcre2_match"), ret,
462 errbuf);
463 }
464 if (ret > 0) {
465 ovector = pcre2_get_ovector_pointer(p->pcre2_match_data);
466 ret = 0;
467 match->rm_so = (int)ovector[0];
468 match->rm_eo = (int)ovector[1];
469 }
470
471 return ret;
472}
473
474static void free_pcre2_pattern(struct grep_pat *p)
475{
476 pcre2_compile_context_free(p->pcre2_compile_context);
477 pcre2_code_free(p->pcre2_pattern);
478 pcre2_match_data_free(p->pcre2_match_data);
b76bf27f 479#ifdef GIT_PCRE2_VERSION_10_34_OR_HIGHER
cbe81e65 480 pcre2_maketables_free(p->pcre2_general_context, p->pcre2_tables);
b76bf27f 481#else
10da030a 482 free((void *)p->pcre2_tables);
b76bf27f 483#endif
cbe81e65 484 pcre2_general_context_free(p->pcre2_general_context);
94da9193
ÆAB
485}
486#else /* !USE_LIBPCRE2 */
487static void compile_pcre2_pattern(struct grep_pat *p, const struct grep_opt *opt)
488{
94da9193
ÆAB
489 die("cannot use Perl-compatible regexes when not compiled with USE_LIBPCRE");
490}
491
492static int pcre2match(struct grep_pat *p, const char *line, const char *eol,
493 regmatch_t *match, int eflags)
494{
495 return 1;
496}
497
498static void free_pcre2_pattern(struct grep_pat *p)
499{
500}
94da9193 501
793dc676
NTND
502static void compile_fixed_regexp(struct grep_pat *p, struct grep_opt *opt)
503{
504 struct strbuf sb = STRBUF_INIT;
505 int err;
1ceababc 506 int regflags = 0;
793dc676
NTND
507
508 basic_regex_quote_buf(&sb, p->pattern);
793dc676
NTND
509 if (opt->ignore_case)
510 regflags |= REG_ICASE;
511 err = regcomp(&p->regexp, sb.buf, regflags);
793dc676
NTND
512 strbuf_release(&sb);
513 if (err) {
514 char errbuf[1024];
515 regerror(err, &p->regexp, errbuf, sizeof(errbuf));
793dc676
NTND
516 compile_regexp_failed(p, errbuf);
517 }
518}
b65abcaf 519#endif /* !USE_LIBPCRE2 */
793dc676 520
83b5d2f5
JH
521static void compile_regexp(struct grep_pat *p, struct grep_opt *opt)
522{
c822255c 523 int err;
07a3d411 524 int regflags = REG_NEWLINE;
c822255c 525
d7eb527d 526 p->word_regexp = opt->word_regexp;
5183bf67 527 p->ignore_case = opt->ignore_case;
48de2a76 528 p->fixed = opt->fixed;
d7eb527d 529
45d1f37c
ÆAB
530 if (memchr(p->pattern, 0, p->patternlen) && !opt->pcre2)
531 die(_("given pattern contains NULL byte (via -f <file>). This is only supported with -P under PCRE v2"));
532
09872f64 533 p->is_fixed = is_fixed(p->pattern, p->patternlen);
8a599983
ÆAB
534#ifdef USE_LIBPCRE2
535 if (!p->fixed && !p->is_fixed) {
536 const char *no_jit = "(*NO_JIT)";
537 const int no_jit_len = strlen(no_jit);
538 if (starts_with(p->pattern, no_jit) &&
539 is_fixed(p->pattern + no_jit_len,
540 p->patternlen - no_jit_len))
541 p->is_fixed = 1;
542 }
543#endif
09872f64 544 if (p->fixed || p->is_fixed) {
b65abcaf 545#ifdef USE_LIBPCRE2
09872f64 546 if (p->is_fixed) {
b65abcaf
ÆAB
547 compile_pcre2_pattern(p, opt);
548 } else {
549 /*
550 * E.g. t7811-grep-open.sh relies on the
551 * pattern being restored.
552 */
553 char *old_pattern = p->pattern;
554 size_t old_patternlen = p->patternlen;
555 struct strbuf sb = STRBUF_INIT;
556
557 /*
558 * There is the PCRE2_LITERAL flag, but it's
559 * only in PCRE v2 10.30 and later. Needing to
560 * ifdef our way around that and dealing with
561 * it + PCRE2_MULTILINE being an error is more
562 * complex than just quoting this ourselves.
563 */
564 strbuf_add(&sb, "\\Q", 2);
565 strbuf_add(&sb, p->pattern, p->patternlen);
566 strbuf_add(&sb, "\\E", 2);
567
568 p->pattern = sb.buf;
569 p->patternlen = sb.len;
570 compile_pcre2_pattern(p, opt);
571 p->pattern = old_pattern;
572 p->patternlen = old_patternlen;
573 strbuf_release(&sb);
574 }
575#else /* !USE_LIBPCRE2 */
793dc676 576 compile_fixed_regexp(p, opt);
b65abcaf 577#endif /* !USE_LIBPCRE2 */
793dc676 578 return;
9eceddee 579 }
c822255c 580
94da9193
ÆAB
581 if (opt->pcre2) {
582 compile_pcre2_pattern(p, opt);
583 return;
584 }
585
07a3d411
ÆAB
586 if (p->ignore_case)
587 regflags |= REG_ICASE;
588 if (opt->extended_regexp_option)
589 regflags |= REG_EXTENDED;
590 err = regcomp(&p->regexp, p->pattern, regflags);
83b5d2f5
JH
591 if (err) {
592 char errbuf[1024];
83b5d2f5 593 regerror(err, &p->regexp, errbuf, 1024);
a30c148a 594 compile_regexp_failed(p, errbuf);
83b5d2f5
JH
595 }
596}
597
0ab7befa 598static struct grep_expr *compile_pattern_or(struct grep_pat **);
83b5d2f5
JH
599static struct grep_expr *compile_pattern_atom(struct grep_pat **list)
600{
601 struct grep_pat *p;
602 struct grep_expr *x;
603
604 p = *list;
c922b01f
LT
605 if (!p)
606 return NULL;
83b5d2f5
JH
607 switch (p->token) {
608 case GREP_PATTERN: /* atom */
480c1ca6
JH
609 case GREP_PATTERN_HEAD:
610 case GREP_PATTERN_BODY:
ca56dadb 611 CALLOC_ARRAY(x, 1);
83b5d2f5
JH
612 x->node = GREP_NODE_ATOM;
613 x->u.atom = p;
614 *list = p->next;
615 return x;
616 case GREP_OPEN_PAREN:
617 *list = p->next;
0ab7befa 618 x = compile_pattern_or(list);
83b5d2f5
JH
619 if (!*list || (*list)->token != GREP_CLOSE_PAREN)
620 die("unmatched parenthesis");
621 *list = (*list)->next;
622 return x;
623 default:
624 return NULL;
625 }
626}
627
628static struct grep_expr *compile_pattern_not(struct grep_pat **list)
629{
630 struct grep_pat *p;
631 struct grep_expr *x;
632
633 p = *list;
c922b01f
LT
634 if (!p)
635 return NULL;
83b5d2f5
JH
636 switch (p->token) {
637 case GREP_NOT:
638 if (!p->next)
639 die("--not not followed by pattern expression");
640 *list = p->next;
ca56dadb 641 CALLOC_ARRAY(x, 1);
83b5d2f5
JH
642 x->node = GREP_NODE_NOT;
643 x->u.unary = compile_pattern_not(list);
644 if (!x->u.unary)
645 die("--not followed by non pattern expression");
646 return x;
647 default:
648 return compile_pattern_atom(list);
649 }
650}
651
652static struct grep_expr *compile_pattern_and(struct grep_pat **list)
653{
654 struct grep_pat *p;
655 struct grep_expr *x, *y, *z;
656
657 x = compile_pattern_not(list);
658 p = *list;
659 if (p && p->token == GREP_AND) {
fe7fe62d
RS
660 if (!x)
661 die("--and not preceded by pattern expression");
83b5d2f5
JH
662 if (!p->next)
663 die("--and not followed by pattern expression");
664 *list = p->next;
665 y = compile_pattern_and(list);
666 if (!y)
667 die("--and not followed by pattern expression");
ca56dadb 668 CALLOC_ARRAY(z, 1);
83b5d2f5
JH
669 z->node = GREP_NODE_AND;
670 z->u.binary.left = x;
671 z->u.binary.right = y;
672 return z;
673 }
674 return x;
675}
676
677static struct grep_expr *compile_pattern_or(struct grep_pat **list)
678{
679 struct grep_pat *p;
680 struct grep_expr *x, *y, *z;
681
682 x = compile_pattern_and(list);
683 p = *list;
684 if (x && p && p->token != GREP_CLOSE_PAREN) {
685 y = compile_pattern_or(list);
686 if (!y)
687 die("not a pattern expression %s", p->pattern);
ca56dadb 688 CALLOC_ARRAY(z, 1);
83b5d2f5
JH
689 z->node = GREP_NODE_OR;
690 z->u.binary.left = x;
691 z->u.binary.right = y;
692 return z;
693 }
694 return x;
695}
696
697static struct grep_expr *compile_pattern_expr(struct grep_pat **list)
698{
699 return compile_pattern_or(list);
700}
701
5aaeb733
JH
702static struct grep_expr *grep_true_expr(void)
703{
704 struct grep_expr *z = xcalloc(1, sizeof(*z));
705 z->node = GREP_NODE_TRUE;
706 return z;
707}
708
709static struct grep_expr *grep_or_expr(struct grep_expr *left, struct grep_expr *right)
710{
711 struct grep_expr *z = xcalloc(1, sizeof(*z));
712 z->node = GREP_NODE_OR;
713 z->u.binary.left = left;
714 z->u.binary.right = right;
715 return z;
716}
717
95ce9ce2 718static struct grep_expr *prep_header_patterns(struct grep_opt *opt)
83b5d2f5
JH
719{
720 struct grep_pat *p;
95ce9ce2 721 struct grep_expr *header_expr;
5aaeb733
JH
722 struct grep_expr *(header_group[GREP_HEADER_FIELD_MAX]);
723 enum grep_header_field fld;
83b5d2f5 724
95ce9ce2
JH
725 if (!opt->header_list)
726 return NULL;
2385f246 727
95ce9ce2
JH
728 for (p = opt->header_list; p; p = p->next) {
729 if (p->token != GREP_PATTERN_HEAD)
033abf97 730 BUG("a non-header pattern in grep header list.");
3ce3ffb8
AP
731 if (p->field < GREP_HEADER_FIELD_MIN ||
732 GREP_HEADER_FIELD_MAX <= p->field)
033abf97 733 BUG("unknown header field %d", p->field);
95ce9ce2 734 compile_regexp(p, opt);
80235ba7 735 }
5aaeb733
JH
736
737 for (fld = 0; fld < GREP_HEADER_FIELD_MAX; fld++)
738 header_group[fld] = NULL;
739
740 for (p = opt->header_list; p; p = p->next) {
741 struct grep_expr *h;
742 struct grep_pat *pp = p;
743
744 h = compile_pattern_atom(&pp);
745 if (!h || pp != p->next)
033abf97 746 BUG("malformed header expr");
5aaeb733
JH
747 if (!header_group[p->field]) {
748 header_group[p->field] = h;
749 continue;
750 }
751 header_group[p->field] = grep_or_expr(h, header_group[p->field]);
752 }
753
754 header_expr = NULL;
755
756 for (fld = 0; fld < GREP_HEADER_FIELD_MAX; fld++) {
757 if (!header_group[fld])
758 continue;
759 if (!header_expr)
760 header_expr = grep_true_expr();
761 header_expr = grep_or_expr(header_group[fld], header_expr);
762 }
95ce9ce2
JH
763 return header_expr;
764}
765
13e4fc7e
JH
766static struct grep_expr *grep_splice_or(struct grep_expr *x, struct grep_expr *y)
767{
768 struct grep_expr *z = x;
769
770 while (x) {
771 assert(x->node == GREP_NODE_OR);
772 if (x->u.binary.right &&
773 x->u.binary.right->node == GREP_NODE_TRUE) {
774 x->u.binary.right = y;
775 break;
776 }
777 x = x->u.binary.right;
778 }
779 return z;
780}
781
15c96497 782void compile_grep_patterns(struct grep_opt *opt)
95ce9ce2
JH
783{
784 struct grep_pat *p;
785 struct grep_expr *header_expr = prep_header_patterns(opt);
0ab7befa 786
83b5d2f5 787 for (p = opt->pattern_list; p; p = p->next) {
480c1ca6
JH
788 switch (p->token) {
789 case GREP_PATTERN: /* atom */
790 case GREP_PATTERN_HEAD:
791 case GREP_PATTERN_BODY:
c822255c 792 compile_regexp(p, opt);
480c1ca6
JH
793 break;
794 default:
83b5d2f5 795 opt->extended = 1;
480c1ca6
JH
796 break;
797 }
83b5d2f5
JH
798 }
799
80235ba7
JH
800 if (opt->all_match || header_expr)
801 opt->extended = 1;
15c96497 802 else if (!opt->extended)
83b5d2f5
JH
803 return;
804
83b5d2f5 805 p = opt->pattern_list;
ba150a3f
MB
806 if (p)
807 opt->pattern_expression = compile_pattern_expr(&p);
83b5d2f5
JH
808 if (p)
809 die("incomplete pattern expression: %s", p->pattern);
80235ba7
JH
810
811 if (!header_expr)
812 return;
813
5aaeb733 814 if (!opt->pattern_expression)
80235ba7 815 opt->pattern_expression = header_expr;
13e4fc7e
JH
816 else if (opt->all_match)
817 opt->pattern_expression = grep_splice_or(header_expr,
818 opt->pattern_expression);
5aaeb733
JH
819 else
820 opt->pattern_expression = grep_or_expr(opt->pattern_expression,
821 header_expr);
80235ba7 822 opt->all_match = 1;
83b5d2f5
JH
823}
824
b48fb5b6
JH
825static void free_pattern_expr(struct grep_expr *x)
826{
827 switch (x->node) {
5aaeb733 828 case GREP_NODE_TRUE:
b48fb5b6
JH
829 case GREP_NODE_ATOM:
830 break;
831 case GREP_NODE_NOT:
832 free_pattern_expr(x->u.unary);
833 break;
834 case GREP_NODE_AND:
835 case GREP_NODE_OR:
836 free_pattern_expr(x->u.binary.left);
837 free_pattern_expr(x->u.binary.right);
838 break;
839 }
840 free(x);
841}
842
843void free_grep_patterns(struct grep_opt *opt)
844{
845 struct grep_pat *p, *n;
846
847 for (p = opt->pattern_list; p; p = n) {
848 n = p->next;
849 switch (p->token) {
850 case GREP_PATTERN: /* atom */
851 case GREP_PATTERN_HEAD:
852 case GREP_PATTERN_BODY:
7599730b 853 if (p->pcre2_pattern)
94da9193 854 free_pcre2_pattern(p);
63e7e9d8
MK
855 else
856 regfree(&p->regexp);
526a858a 857 free(p->pattern);
b48fb5b6
JH
858 break;
859 default:
860 break;
861 }
862 free(p);
863 }
864
865 if (!opt->extended)
866 return;
867 free_pattern_expr(opt->pattern_expression);
868}
869
1a845fbc 870static const char *end_of_line(const char *cp, unsigned long *left)
83b5d2f5
JH
871{
872 unsigned long l = *left;
873 while (l && *cp != '\n') {
874 l--;
875 cp++;
876 }
877 *left = l;
878 return cp;
879}
880
881static int word_char(char ch)
882{
883 return isalnum(ch) || ch == '_';
884}
885
55f638bd
ML
886static void output_color(struct grep_opt *opt, const void *data, size_t size,
887 const char *color)
888{
daa0c3d9 889 if (want_color(opt->color) && color && color[0]) {
55f638bd
ML
890 opt->output(opt, color, strlen(color));
891 opt->output(opt, data, size);
892 opt->output(opt, GIT_COLOR_RESET, strlen(GIT_COLOR_RESET));
893 } else
894 opt->output(opt, data, size);
895}
896
897static void output_sep(struct grep_opt *opt, char sign)
898{
899 if (opt->null_following_name)
900 opt->output(opt, "\0", 1);
901 else
fa151dc5 902 output_color(opt, &sign, 1, opt->colors[GREP_COLOR_SEP]);
55f638bd
ML
903}
904
83caecca
RZ
905static void show_name(struct grep_opt *opt, const char *name)
906{
fa151dc5 907 output_color(opt, name, strlen(name), opt->colors[GREP_COLOR_FILENAME]);
5b594f45 908 opt->output(opt, opt->null_following_name ? "\0" : "\n", 1);
83caecca
RZ
909}
910
1a845fbc
JK
911static int patmatch(struct grep_pat *p,
912 const char *line, const char *eol,
97e77784
MK
913 regmatch_t *match, int eflags)
914{
915 int hit;
916
7599730b 917 if (p->pcre2_pattern)
94da9193 918 hit = !pcre2match(p, line, eol, match, eflags);
97e77784 919 else
b7d36ffc
JS
920 hit = !regexec_buf(&p->regexp, line, eol - line, 1, match,
921 eflags);
97e77784
MK
922
923 return hit;
924}
925
1a845fbc 926static void strip_timestamp(const char *bol, const char **eol_p)
a4d7d2c6 927{
1a845fbc 928 const char *eol = *eol_p;
a4d7d2c6
JH
929
930 while (bol < --eol) {
931 if (*eol != '>')
932 continue;
933 *eol_p = ++eol;
cc8e26ee 934 break;
a4d7d2c6 935 }
a4d7d2c6
JH
936}
937
938static struct {
939 const char *field;
940 size_t len;
941} header_field[] = {
942 { "author ", 7 },
943 { "committer ", 10 },
72fd13f7 944 { "reflog ", 7 },
a4d7d2c6
JH
945};
946
1a845fbc
JK
947static int match_one_pattern(struct grep_pat *p,
948 const char *bol, const char *eol,
79212772
RS
949 enum grep_context ctx,
950 regmatch_t *pmatch, int eflags)
83b5d2f5
JH
951{
952 int hit = 0;
e701fadb 953 const char *start = bol;
83b5d2f5 954
480c1ca6
JH
955 if ((p->token != GREP_PATTERN) &&
956 ((p->token == GREP_PATTERN_HEAD) != (ctx == GREP_CONTEXT_HEAD)))
957 return 0;
958
a4d7d2c6
JH
959 if (p->token == GREP_PATTERN_HEAD) {
960 const char *field;
961 size_t len;
962 assert(p->field < ARRAY_SIZE(header_field));
963 field = header_field[p->field].field;
964 len = header_field[p->field].len;
965 if (strncmp(bol, field, len))
966 return 0;
967 bol += len;
ad4813b3
NTND
968 switch (p->field) {
969 case GREP_HEADER_AUTHOR:
970 case GREP_HEADER_COMMITTER:
cc8e26ee 971 strip_timestamp(bol, &eol);
ad4813b3
NTND
972 break;
973 default:
974 break;
975 }
a4d7d2c6
JH
976 }
977
83b5d2f5 978 again:
97e77784 979 hit = patmatch(p, bol, eol, pmatch, eflags);
83b5d2f5 980
d7eb527d 981 if (hit && p->word_regexp) {
83b5d2f5 982 if ((pmatch[0].rm_so < 0) ||
84201eae 983 (eol - bol) < pmatch[0].rm_so ||
83b5d2f5
JH
984 (pmatch[0].rm_eo < 0) ||
985 (eol - bol) < pmatch[0].rm_eo)
986 die("regexp returned nonsense");
987
988 /* Match beginning must be either beginning of the
989 * line, or at word boundary (i.e. the last char must
990 * not be a word char). Similarly, match end must be
991 * either end of the line, or at word boundary
992 * (i.e. the next char must not be a word char).
993 */
fb62eb7f 994 if ( ((pmatch[0].rm_so == 0) ||
83b5d2f5
JH
995 !word_char(bol[pmatch[0].rm_so-1])) &&
996 ((pmatch[0].rm_eo == (eol-bol)) ||
997 !word_char(bol[pmatch[0].rm_eo])) )
998 ;
999 else
1000 hit = 0;
1001
84201eae
RS
1002 /* Words consist of at least one character. */
1003 if (pmatch->rm_so == pmatch->rm_eo)
1004 hit = 0;
1005
83b5d2f5
JH
1006 if (!hit && pmatch[0].rm_so + bol + 1 < eol) {
1007 /* There could be more than one match on the
1008 * line, and the first match might not be
1009 * strict word match. But later ones could be!
fb62eb7f
RS
1010 * Forward to the next possible start, i.e. the
1011 * next position following a non-word char.
83b5d2f5
JH
1012 */
1013 bol = pmatch[0].rm_so + bol + 1;
fb62eb7f
RS
1014 while (word_char(bol[-1]) && bol < eol)
1015 bol++;
dbb6a4ad 1016 eflags |= REG_NOTBOL;
fb62eb7f
RS
1017 if (bol < eol)
1018 goto again;
83b5d2f5
JH
1019 }
1020 }
e701fadb
RS
1021 if (hit) {
1022 pmatch[0].rm_so += bol - start;
1023 pmatch[0].rm_eo += bol - start;
1024 }
83b5d2f5
JH
1025 return hit;
1026}
1027
1a845fbc
JK
1028static int match_expr_eval(struct grep_opt *opt, struct grep_expr *x,
1029 const char *bol, const char *eol,
1030 enum grep_context ctx, ssize_t *col,
68d686e6 1031 ssize_t *icol, int collect_hits)
83b5d2f5 1032{
0ab7befa
JH
1033 int h = 0;
1034
c922b01f
LT
1035 if (!x)
1036 die("Not a valid grep expression");
83b5d2f5 1037 switch (x->node) {
5aaeb733
JH
1038 case GREP_NODE_TRUE:
1039 h = 1;
1040 break;
83b5d2f5 1041 case GREP_NODE_ATOM:
68d686e6
TB
1042 {
1043 regmatch_t tmp;
1044 h = match_one_pattern(x->u.atom, bol, eol, ctx,
1045 &tmp, 0);
1046 if (h && (*col < 0 || tmp.rm_so < *col))
1047 *col = tmp.rm_so;
1048 }
83b5d2f5
JH
1049 break;
1050 case GREP_NODE_NOT:
68d686e6
TB
1051 /*
1052 * Upon visiting a GREP_NODE_NOT, col and icol become swapped.
1053 */
1054 h = !match_expr_eval(opt, x->u.unary, bol, eol, ctx, icol, col,
1055 0);
0ab7befa 1056 break;
83b5d2f5 1057 case GREP_NODE_AND:
017c0fcf 1058 h = match_expr_eval(opt, x->u.binary.left, bol, eol, ctx, col,
68d686e6 1059 icol, 0);
017c0fcf
TB
1060 if (h || opt->columnnum) {
1061 /*
1062 * Don't short-circuit AND when given --column, since a
1063 * NOT earlier in the tree may turn this into an OR. In
1064 * this case, see the below comment.
1065 */
1066 h &= match_expr_eval(opt, x->u.binary.right, bol, eol,
1067 ctx, col, icol, 0);
1068 }
0ab7befa 1069 break;
83b5d2f5 1070 case GREP_NODE_OR:
017c0fcf
TB
1071 if (!(collect_hits || opt->columnnum)) {
1072 /*
1073 * Don't short-circuit OR when given --column (or
1074 * collecting hits) to ensure we don't skip a later
1075 * child that would produce an earlier match.
1076 */
68d686e6
TB
1077 return (match_expr_eval(opt, x->u.binary.left, bol, eol,
1078 ctx, col, icol, 0) ||
1079 match_expr_eval(opt, x->u.binary.right, bol,
1080 eol, ctx, col, icol, 0));
017c0fcf 1081 }
68d686e6
TB
1082 h = match_expr_eval(opt, x->u.binary.left, bol, eol, ctx, col,
1083 icol, 0);
017c0fcf
TB
1084 if (collect_hits)
1085 x->u.binary.left->hit |= h;
68d686e6 1086 h |= match_expr_eval(opt, x->u.binary.right, bol, eol, ctx, col,
017c0fcf 1087 icol, collect_hits);
0ab7befa
JH
1088 break;
1089 default:
d7530708 1090 die("Unexpected node type (internal error) %d", x->node);
83b5d2f5 1091 }
0ab7befa
JH
1092 if (collect_hits)
1093 x->hit |= h;
1094 return h;
83b5d2f5
JH
1095}
1096
1a845fbc
JK
1097static int match_expr(struct grep_opt *opt,
1098 const char *bol, const char *eol,
68d686e6
TB
1099 enum grep_context ctx, ssize_t *col,
1100 ssize_t *icol, int collect_hits)
83b5d2f5
JH
1101{
1102 struct grep_expr *x = opt->pattern_expression;
68d686e6 1103 return match_expr_eval(opt, x, bol, eol, ctx, col, icol, collect_hits);
83b5d2f5
JH
1104}
1105
1a845fbc
JK
1106static int match_line(struct grep_opt *opt,
1107 const char *bol, const char *eol,
68d686e6 1108 ssize_t *col, ssize_t *icol,
0ab7befa 1109 enum grep_context ctx, int collect_hits)
83b5d2f5
JH
1110{
1111 struct grep_pat *p;
017c0fcf 1112 int hit = 0;
79212772 1113
83b5d2f5 1114 if (opt->extended)
68d686e6
TB
1115 return match_expr(opt, bol, eol, ctx, col, icol,
1116 collect_hits);
0ab7befa
JH
1117
1118 /* we do not call with collect_hits without being extended */
83b5d2f5 1119 for (p = opt->pattern_list; p; p = p->next) {
68d686e6
TB
1120 regmatch_t tmp;
1121 if (match_one_pattern(p, bol, eol, ctx, &tmp, 0)) {
017c0fcf
TB
1122 hit |= 1;
1123 if (!opt->columnnum) {
1124 /*
1125 * Without --column, any single match on a line
1126 * is enough to know that it needs to be
1127 * printed. With --column, scan _all_ patterns
1128 * to find the earliest.
1129 */
1130 break;
1131 }
1132 if (*col < 0 || tmp.rm_so < *col)
1133 *col = tmp.rm_so;
68d686e6 1134 }
83b5d2f5 1135 }
017c0fcf 1136 return hit;
83b5d2f5
JH
1137}
1138
1a845fbc
JK
1139static int match_next_pattern(struct grep_pat *p,
1140 const char *bol, const char *eol,
7e8f59d5
RS
1141 enum grep_context ctx,
1142 regmatch_t *pmatch, int eflags)
1143{
1144 regmatch_t match;
1145
1146 if (!match_one_pattern(p, bol, eol, ctx, &match, eflags))
1147 return 0;
1148 if (match.rm_so < 0 || match.rm_eo < 0)
1149 return 0;
1150 if (pmatch->rm_so >= 0 && pmatch->rm_eo >= 0) {
1151 if (match.rm_so > pmatch->rm_so)
1152 return 1;
1153 if (match.rm_so == pmatch->rm_so && match.rm_eo < pmatch->rm_eo)
1154 return 1;
1155 }
1156 pmatch->rm_so = match.rm_so;
1157 pmatch->rm_eo = match.rm_eo;
1158 return 1;
1159}
1160
1a845fbc
JK
1161static int next_match(struct grep_opt *opt,
1162 const char *bol, const char *eol,
7e8f59d5
RS
1163 enum grep_context ctx, regmatch_t *pmatch, int eflags)
1164{
1165 struct grep_pat *p;
1166 int hit = 0;
1167
1168 pmatch->rm_so = pmatch->rm_eo = -1;
1169 if (bol < eol) {
1170 for (p = opt->pattern_list; p; p = p->next) {
1171 switch (p->token) {
1172 case GREP_PATTERN: /* atom */
1173 case GREP_PATTERN_HEAD:
1174 case GREP_PATTERN_BODY:
1175 hit |= match_next_pattern(p, bol, eol, ctx,
1176 pmatch, eflags);
1177 break;
1178 default:
1179 break;
1180 }
1181 }
1182 }
1183 return hit;
1184}
1185
c707ded3
TB
1186static void show_line_header(struct grep_opt *opt, const char *name,
1187 unsigned lno, ssize_t cno, char sign)
7e8f59d5 1188{
1d84f72e 1189 if (opt->heading && opt->last_shown == 0) {
fa151dc5 1190 output_color(opt, name, strlen(name), opt->colors[GREP_COLOR_FILENAME]);
1d84f72e
RS
1191 opt->output(opt, "\n", 1);
1192 }
5dd06d38
RS
1193 opt->last_shown = lno;
1194
1d84f72e 1195 if (!opt->heading && opt->pathname) {
fa151dc5 1196 output_color(opt, name, strlen(name), opt->colors[GREP_COLOR_FILENAME]);
55f638bd 1197 output_sep(opt, sign);
5b594f45
FK
1198 }
1199 if (opt->linenum) {
1200 char buf[32];
1a168e5c 1201 xsnprintf(buf, sizeof(buf), "%d", lno);
fa151dc5 1202 output_color(opt, buf, strlen(buf), opt->colors[GREP_COLOR_LINENO]);
55f638bd 1203 output_sep(opt, sign);
5b594f45 1204 }
89252cd0
TB
1205 /*
1206 * Treat 'cno' as the 1-indexed offset from the start of a non-context
1207 * line to its first match. Otherwise, 'cno' is 0 indicating that we are
1208 * being called with a context line.
1209 */
1210 if (opt->columnnum && cno) {
1211 char buf[32];
1212 xsnprintf(buf, sizeof(buf), "%"PRIuMAX, (uintmax_t)cno);
d036d667 1213 output_color(opt, buf, strlen(buf), opt->colors[GREP_COLOR_COLUMNNO]);
89252cd0
TB
1214 output_sep(opt, sign);
1215 }
c707ded3
TB
1216}
1217
1a845fbc
JK
1218static void show_line(struct grep_opt *opt,
1219 const char *bol, const char *eol,
c707ded3
TB
1220 const char *name, unsigned lno, ssize_t cno, char sign)
1221{
1222 int rest = eol - bol;
9d8db06e
TB
1223 const char *match_color = NULL;
1224 const char *line_color = NULL;
c707ded3
TB
1225
1226 if (opt->file_break && opt->last_shown == 0) {
1227 if (opt->show_hunk_mark)
1228 opt->output(opt, "\n", 1);
1229 } else if (opt->pre_context || opt->post_context || opt->funcbody) {
1230 if (opt->last_shown == 0) {
1231 if (opt->show_hunk_mark) {
87ece7ce 1232 output_color(opt, "--", 2, opt->colors[GREP_COLOR_SEP]);
c707ded3
TB
1233 opt->output(opt, "\n", 1);
1234 }
1235 } else if (lno > opt->last_shown + 1) {
87ece7ce 1236 output_color(opt, "--", 2, opt->colors[GREP_COLOR_SEP]);
c707ded3
TB
1237 opt->output(opt, "\n", 1);
1238 }
1239 }
9d8db06e
TB
1240 if (!opt->only_matching) {
1241 /*
1242 * In case the line we're being called with contains more than
1243 * one match, leave printing each header to the loop below.
1244 */
1245 show_line_header(opt, name, lno, cno, sign);
1246 }
1247 if (opt->color || opt->only_matching) {
7e8f59d5
RS
1248 regmatch_t match;
1249 enum grep_context ctx = GREP_CONTEXT_BODY;
7e8f59d5
RS
1250 int eflags = 0;
1251
9d8db06e
TB
1252 if (opt->color) {
1253 if (sign == ':')
87ece7ce 1254 match_color = opt->colors[GREP_COLOR_MATCH_SELECTED];
9d8db06e 1255 else
87ece7ce 1256 match_color = opt->colors[GREP_COLOR_MATCH_CONTEXT];
9d8db06e 1257 if (sign == ':')
87ece7ce 1258 line_color = opt->colors[GREP_COLOR_SELECTED];
9d8db06e 1259 else if (sign == '-')
87ece7ce 1260 line_color = opt->colors[GREP_COLOR_CONTEXT];
9d8db06e 1261 else if (sign == '=')
87ece7ce 1262 line_color = opt->colors[GREP_COLOR_FUNCTION];
9d8db06e 1263 }
7e8f59d5 1264 while (next_match(opt, bol, eol, ctx, &match, 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
1424 if (opt->extended)
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 }
1669 if (hit) {
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 */
1809 if (!opt->all_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);
e1327023 1816 grep_source_1(opt, gs, 1);
0ab7befa
JH
1817
1818 if (!chk_hit_marker(opt->pattern_expression))
1819 return 0;
1820
e1327023
JK
1821 return grep_source_1(opt, gs, 0);
1822}
1823
50d92b5f
JT
1824static void grep_source_init_buf(struct grep_source *gs, char *buf,
1825 unsigned long size)
1826{
1827 gs->type = GREP_SOURCE_BUF;
1828 gs->name = NULL;
1829 gs->path = NULL;
1830 gs->buf = buf;
1831 gs->size = size;
1832 gs->driver = NULL;
1833 gs->identifier = NULL;
1834}
1835
c876d6da 1836int grep_buffer(struct grep_opt *opt, char *buf, unsigned long size)
e1327023
JK
1837{
1838 struct grep_source gs;
1839 int r;
1840
50d92b5f 1841 grep_source_init_buf(&gs, buf, size);
e1327023
JK
1842
1843 r = grep_source(opt, &gs);
1844
1845 grep_source_clear(&gs);
1846 return r;
1847}
1848
50d92b5f
JT
1849void grep_source_init_file(struct grep_source *gs, const char *name,
1850 const char *path)
e1327023 1851{
50d92b5f 1852 gs->type = GREP_SOURCE_FILE;
8c53f071
JK
1853 gs->name = xstrdup_or_null(name);
1854 gs->path = xstrdup_or_null(path);
e1327023
JK
1855 gs->buf = NULL;
1856 gs->size = 0;
94ad9d9e 1857 gs->driver = NULL;
50d92b5f
JT
1858 gs->identifier = xstrdup(path);
1859}
e1327023 1860
50d92b5f 1861void grep_source_init_oid(struct grep_source *gs, const char *name,
0693806b
JT
1862 const char *path, const struct object_id *oid,
1863 struct repository *repo)
50d92b5f
JT
1864{
1865 gs->type = GREP_SOURCE_OID;
1866 gs->name = xstrdup_or_null(name);
1867 gs->path = xstrdup_or_null(path);
1868 gs->buf = NULL;
1869 gs->size = 0;
1870 gs->driver = NULL;
1871 gs->identifier = oiddup(oid);
0693806b 1872 gs->repo = repo;
e1327023
JK
1873}
1874
1875void grep_source_clear(struct grep_source *gs)
1876{
88ce3ef6
ÆAB
1877 FREE_AND_NULL(gs->name);
1878 FREE_AND_NULL(gs->path);
1879 FREE_AND_NULL(gs->identifier);
e1327023
JK
1880 grep_source_clear_data(gs);
1881}
1882
1883void grep_source_clear_data(struct grep_source *gs)
1884{
1885 switch (gs->type) {
1886 case GREP_SOURCE_FILE:
1c41c82b 1887 case GREP_SOURCE_OID:
6a83d902 1888 FREE_AND_NULL(gs->buf);
e1327023
JK
1889 gs->size = 0;
1890 break;
1891 case GREP_SOURCE_BUF:
1892 /* leave user-provided buf intact */
1893 break;
1894 }
1895}
1896
1c41c82b 1897static int grep_source_load_oid(struct grep_source *gs)
e1327023
JK
1898{
1899 enum object_type type;
1900
0693806b
JT
1901 gs->buf = repo_read_object_file(gs->repo, gs->identifier, &type,
1902 &gs->size);
e1327023
JK
1903 if (!gs->buf)
1904 return error(_("'%s': unable to read %s"),
1905 gs->name,
1c41c82b 1906 oid_to_hex(gs->identifier));
e1327023
JK
1907 return 0;
1908}
1909
1910static int grep_source_load_file(struct grep_source *gs)
1911{
1912 const char *filename = gs->identifier;
1913 struct stat st;
1914 char *data;
1915 size_t size;
1916 int i;
1917
1918 if (lstat(filename, &st) < 0) {
1919 err_ret:
1920 if (errno != ENOENT)
7645d8f1 1921 error_errno(_("failed to stat '%s'"), filename);
e1327023
JK
1922 return -1;
1923 }
1924 if (!S_ISREG(st.st_mode))
1925 return -1;
1926 size = xsize_t(st.st_size);
1927 i = open(filename, O_RDONLY);
1928 if (i < 0)
1929 goto err_ret;
3733e694 1930 data = xmallocz(size);
e1327023 1931 if (st.st_size != read_in_full(i, data, size)) {
7645d8f1 1932 error_errno(_("'%s': short read"), filename);
e1327023
JK
1933 close(i);
1934 free(data);
1935 return -1;
1936 }
1937 close(i);
e1327023
JK
1938
1939 gs->buf = data;
1940 gs->size = size;
1941 return 0;
1942}
1943
3083301e 1944static int grep_source_load(struct grep_source *gs)
e1327023
JK
1945{
1946 if (gs->buf)
1947 return 0;
1948
1949 switch (gs->type) {
1950 case GREP_SOURCE_FILE:
1951 return grep_source_load_file(gs);
1c41c82b
BW
1952 case GREP_SOURCE_OID:
1953 return grep_source_load_oid(gs);
e1327023
JK
1954 case GREP_SOURCE_BUF:
1955 return gs->buf ? 0 : -1;
1956 }
033abf97 1957 BUG("invalid grep_source type to load");
0ab7befa 1958}
94ad9d9e 1959
acd00ea0
NTND
1960void grep_source_load_driver(struct grep_source *gs,
1961 struct index_state *istate)
94ad9d9e
JK
1962{
1963 if (gs->driver)
1964 return;
1965
1966 grep_attr_lock();
1d1729ca 1967 if (gs->path)
acd00ea0 1968 gs->driver = userdiff_find_by_path(istate, gs->path);
94ad9d9e
JK
1969 if (!gs->driver)
1970 gs->driver = userdiff_find_by_name("default");
1971 grep_attr_unlock();
1972}
41b59bfc 1973
acd00ea0
NTND
1974static int grep_source_is_binary(struct grep_source *gs,
1975 struct index_state *istate)
41b59bfc 1976{
acd00ea0 1977 grep_source_load_driver(gs, istate);
41b59bfc
JK
1978 if (gs->driver->binary != -1)
1979 return gs->driver->binary;
1980
1981 if (!grep_source_load(gs))
1982 return buffer_is_binary(gs->buf, gs->size);
1983
1984 return 0;
1985}