]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-grep.c
gitweb: Fix thinko in git_tags and git_heads
[thirdparty/git.git] / builtin-grep.c
CommitLineData
5010cb5f
JH
1/*
2 * Builtin "git grep"
3 *
4 * Copyright (c) 2006 Junio C Hamano
5 */
6#include "cache.h"
7#include "blob.h"
8#include "tree.h"
9#include "commit.h"
10#include "tag.h"
1362671f 11#include "tree-walk.h"
5010cb5f
JH
12#include "builtin.h"
13#include <regex.h>
e0eb889f 14#include <fnmatch.h>
1e2398d7 15#include <sys/wait.h>
5010cb5f 16
e0eb889f
JH
17/*
18 * git grep pathspecs are somewhat different from diff-tree pathspecs;
19 * pathname wildcards are allowed.
20 */
1362671f 21static int pathspec_matches(const char **paths, const char *name)
5010cb5f 22{
e0eb889f 23 int namelen, i;
1362671f 24 if (!paths || !*paths)
5010cb5f
JH
25 return 1;
26 namelen = strlen(name);
1362671f
JH
27 for (i = 0; paths[i]; i++) {
28 const char *match = paths[i];
29 int matchlen = strlen(match);
1e3d90e0 30 const char *cp, *meta;
e0eb889f 31
bb9e15a8
UKK
32 if (!matchlen ||
33 ((matchlen <= namelen) &&
34 !strncmp(name, match, matchlen) &&
35 (match[matchlen-1] == '/' ||
36 name[matchlen] == '\0' || name[matchlen] == '/')))
e0eb889f
JH
37 return 1;
38 if (!fnmatch(match, name, 0))
39 return 1;
40 if (name[namelen-1] != '/')
5010cb5f 41 continue;
e0eb889f 42
1e3d90e0 43 /* We are being asked if the directory ("name") is worth
e0eb889f
JH
44 * descending into.
45 *
46 * Find the longest leading directory name that does
47 * not have metacharacter in the pathspec; the name
48 * we are looking at must overlap with that directory.
5010cb5f 49 */
1e3d90e0 50 for (cp = match, meta = NULL; cp - match < matchlen; cp++) {
e0eb889f 51 char ch = *cp;
1e3d90e0
JH
52 if (ch == '*' || ch == '[' || ch == '?') {
53 meta = cp;
5010cb5f 54 break;
1e3d90e0 55 }
e0eb889f 56 }
1e3d90e0
JH
57 if (!meta)
58 meta = cp; /* fully literal */
59
60 if (namelen <= meta - match) {
e0eb889f
JH
61 /* Looking at "Documentation/" and
62 * the pattern says "Documentation/howto/", or
1e3d90e0
JH
63 * "Documentation/diff*.txt". The name we
64 * have should match prefix.
e0eb889f
JH
65 */
66 if (!memcmp(match, name, namelen))
67 return 1;
1e3d90e0 68 continue;
e0eb889f 69 }
1e3d90e0
JH
70
71 if (meta - match < namelen) {
e0eb889f 72 /* Looking at "Documentation/howto/" and
1e3d90e0
JH
73 * the pattern says "Documentation/h*";
74 * match up to "Do.../h"; this avoids descending
75 * into "Documentation/technical/".
e0eb889f 76 */
1e3d90e0 77 if (!memcmp(match, name, meta - match))
e0eb889f 78 return 1;
1e3d90e0 79 continue;
e0eb889f 80 }
5010cb5f
JH
81 }
82 return 0;
83}
84
79d3696c
JH
85enum grep_pat_token {
86 GREP_PATTERN,
87 GREP_AND,
88 GREP_OPEN_PAREN,
89 GREP_CLOSE_PAREN,
90 GREP_NOT,
91 GREP_OR,
92};
93
f9b9faf6
JH
94struct grep_pat {
95 struct grep_pat *next;
aa8c79ad
JH
96 const char *origin;
97 int no;
79d3696c 98 enum grep_pat_token token;
5010cb5f
JH
99 const char *pattern;
100 regex_t regexp;
f9b9faf6
JH
101};
102
79d3696c
JH
103enum grep_expr_node {
104 GREP_NODE_ATOM,
105 GREP_NODE_NOT,
106 GREP_NODE_AND,
107 GREP_NODE_OR,
108};
109
110struct grep_expr {
111 enum grep_expr_node node;
112 union {
113 struct grep_pat *atom;
114 struct grep_expr *unary;
115 struct {
116 struct grep_expr *left;
117 struct grep_expr *right;
118 } binary;
119 } u;
120};
121
f9b9faf6
JH
122struct grep_opt {
123 struct grep_pat *pattern_list;
124 struct grep_pat **pattern_tail;
79d3696c 125 struct grep_expr *pattern_expression;
0d042fec 126 int prefix_length;
f9b9faf6 127 regex_t regexp;
5010cb5f
JH
128 unsigned linenum:1;
129 unsigned invert:1;
df0e7aa8 130 unsigned name_only:1;
e23d2d6b 131 unsigned unmatch_name_only:1;
2c866cf1 132 unsigned count:1;
7839a25e 133 unsigned word_regexp:1;
07ea91d8 134 unsigned fixed:1;
b8d0f5a0
JH
135#define GREP_BINARY_DEFAULT 0
136#define GREP_BINARY_NOMATCH 1
137#define GREP_BINARY_TEXT 2
138 unsigned binary:2;
79d3696c 139 unsigned extended:1;
0d042fec 140 unsigned relative:1;
7977f0ea 141 unsigned pathname:1;
5010cb5f
JH
142 int regflags;
143 unsigned pre_context;
144 unsigned post_context;
145};
146
aa8c79ad 147static void add_pattern(struct grep_opt *opt, const char *pat,
79d3696c 148 const char *origin, int no, enum grep_pat_token t)
f9b9faf6
JH
149{
150 struct grep_pat *p = xcalloc(1, sizeof(*p));
151 p->pattern = pat;
aa8c79ad
JH
152 p->origin = origin;
153 p->no = no;
79d3696c 154 p->token = t;
f9b9faf6
JH
155 *opt->pattern_tail = p;
156 opt->pattern_tail = &p->next;
157 p->next = NULL;
158}
159
79d3696c
JH
160static void compile_regexp(struct grep_pat *p, struct grep_opt *opt)
161{
162 int err = regcomp(&p->regexp, p->pattern, opt->regflags);
163 if (err) {
164 char errbuf[1024];
165 char where[1024];
166 if (p->no)
167 sprintf(where, "In '%s' at %d, ",
168 p->origin, p->no);
169 else if (p->origin)
170 sprintf(where, "%s, ", p->origin);
171 else
172 where[0] = 0;
173 regerror(err, &p->regexp, errbuf, 1024);
174 regfree(&p->regexp);
175 die("%s'%s': %s", where, p->pattern, errbuf);
176 }
177}
178
79d3696c
JH
179static struct grep_expr *compile_pattern_expr(struct grep_pat **);
180static struct grep_expr *compile_pattern_atom(struct grep_pat **list)
181{
182 struct grep_pat *p;
183 struct grep_expr *x;
184
79d3696c
JH
185 p = *list;
186 switch (p->token) {
187 case GREP_PATTERN: /* atom */
188 x = xcalloc(1, sizeof (struct grep_expr));
189 x->node = GREP_NODE_ATOM;
190 x->u.atom = p;
191 *list = p->next;
192 return x;
193 case GREP_OPEN_PAREN:
194 *list = p->next;
195 x = compile_pattern_expr(list);
196 if (!x)
197 return NULL;
198 if (!*list || (*list)->token != GREP_CLOSE_PAREN)
199 die("unmatched parenthesis");
200 *list = (*list)->next;
201 return x;
202 default:
203 return NULL;
204 }
205}
206
207static struct grep_expr *compile_pattern_not(struct grep_pat **list)
208{
209 struct grep_pat *p;
210 struct grep_expr *x;
211
79d3696c
JH
212 p = *list;
213 switch (p->token) {
214 case GREP_NOT:
215 if (!p->next)
216 die("--not not followed by pattern expression");
217 *list = p->next;
218 x = xcalloc(1, sizeof (struct grep_expr));
219 x->node = GREP_NODE_NOT;
220 x->u.unary = compile_pattern_not(list);
221 if (!x->u.unary)
222 die("--not followed by non pattern expression");
223 return x;
224 default:
225 return compile_pattern_atom(list);
226 }
227}
228
229static struct grep_expr *compile_pattern_and(struct grep_pat **list)
230{
231 struct grep_pat *p;
232 struct grep_expr *x, *y, *z;
233
79d3696c
JH
234 x = compile_pattern_not(list);
235 p = *list;
236 if (p && p->token == GREP_AND) {
237 if (!p->next)
238 die("--and not followed by pattern expression");
239 *list = p->next;
240 y = compile_pattern_and(list);
241 if (!y)
242 die("--and not followed by pattern expression");
243 z = xcalloc(1, sizeof (struct grep_expr));
244 z->node = GREP_NODE_AND;
245 z->u.binary.left = x;
246 z->u.binary.right = y;
247 return z;
248 }
249 return x;
250}
251
252static struct grep_expr *compile_pattern_or(struct grep_pat **list)
253{
254 struct grep_pat *p;
255 struct grep_expr *x, *y, *z;
256
79d3696c
JH
257 x = compile_pattern_and(list);
258 p = *list;
259 if (x && p && p->token != GREP_CLOSE_PAREN) {
260 y = compile_pattern_or(list);
261 if (!y)
262 die("not a pattern expression %s", p->pattern);
263 z = xcalloc(1, sizeof (struct grep_expr));
264 z->node = GREP_NODE_OR;
265 z->u.binary.left = x;
266 z->u.binary.right = y;
267 return z;
268 }
269 return x;
270}
271
272static struct grep_expr *compile_pattern_expr(struct grep_pat **list)
273{
79d3696c
JH
274 return compile_pattern_or(list);
275}
276
f9b9faf6
JH
277static void compile_patterns(struct grep_opt *opt)
278{
279 struct grep_pat *p;
79d3696c
JH
280
281 /* First compile regexps */
f9b9faf6 282 for (p = opt->pattern_list; p; p = p->next) {
79d3696c
JH
283 if (p->token == GREP_PATTERN)
284 compile_regexp(p, opt);
285 else
286 opt->extended = 1;
f9b9faf6 287 }
79d3696c
JH
288
289 if (!opt->extended)
290 return;
291
292 /* Then bundle them up in an expression.
293 * A classic recursive descent parser would do.
294 */
295 p = opt->pattern_list;
296 opt->pattern_expression = compile_pattern_expr(&p);
79d3696c
JH
297 if (p)
298 die("incomplete pattern expression: %s", p->pattern);
f9b9faf6
JH
299}
300
5010cb5f
JH
301static char *end_of_line(char *cp, unsigned long *left)
302{
303 unsigned long l = *left;
304 while (l && *cp != '\n') {
305 l--;
306 cp++;
307 }
308 *left = l;
309 return cp;
310}
311
7839a25e
JH
312static int word_char(char ch)
313{
314 return isalnum(ch) || ch == '_';
315}
316
5010cb5f
JH
317static void show_line(struct grep_opt *opt, const char *bol, const char *eol,
318 const char *name, unsigned lno, char sign)
319{
7977f0ea
LT
320 if (opt->pathname)
321 printf("%s%c", name, sign);
5010cb5f
JH
322 if (opt->linenum)
323 printf("%d%c", lno, sign);
a24f1e25 324 printf("%.*s\n", (int)(eol-bol), bol);
5010cb5f
JH
325}
326
b8d0f5a0
JH
327/*
328 * NEEDSWORK: share code with diff.c
329 */
330#define FIRST_FEW_BYTES 8000
331static int buffer_is_binary(const char *ptr, unsigned long size)
332{
333 if (FIRST_FEW_BYTES < size)
334 size = FIRST_FEW_BYTES;
b756776d 335 return !!memchr(ptr, 0, size);
b8d0f5a0
JH
336}
337
07ea91d8
JH
338static int fixmatch(const char *pattern, char *line, regmatch_t *match)
339{
340 char *hit = strstr(line, pattern);
341 if (!hit) {
342 match->rm_so = match->rm_eo = -1;
343 return REG_NOMATCH;
344 }
345 else {
346 match->rm_so = hit - line;
347 match->rm_eo = match->rm_so + strlen(pattern);
348 return 0;
349 }
350}
351
79d3696c
JH
352static int match_one_pattern(struct grep_opt *opt, struct grep_pat *p, char *bol, char *eol)
353{
354 int hit = 0;
f25b7939 355 int at_true_bol = 1;
79d3696c
JH
356 regmatch_t pmatch[10];
357
f25b7939 358 again:
79d3696c
JH
359 if (!opt->fixed) {
360 regex_t *exp = &p->regexp;
361 hit = !regexec(exp, bol, ARRAY_SIZE(pmatch),
362 pmatch, 0);
363 }
364 else {
365 hit = !fixmatch(p->pattern, bol, pmatch);
366 }
367
368 if (hit && opt->word_regexp) {
79d3696c
JH
369 if ((pmatch[0].rm_so < 0) ||
370 (eol - bol) <= pmatch[0].rm_so ||
371 (pmatch[0].rm_eo < 0) ||
372 (eol - bol) < pmatch[0].rm_eo)
373 die("regexp returned nonsense");
f25b7939
JH
374
375 /* Match beginning must be either beginning of the
376 * line, or at word boundary (i.e. the last char must
377 * not be a word char). Similarly, match end must be
378 * either end of the line, or at word boundary
379 * (i.e. the next char must not be a word char).
380 */
381 if ( ((pmatch[0].rm_so == 0 && at_true_bol) ||
382 !word_char(bol[pmatch[0].rm_so-1])) &&
383 ((pmatch[0].rm_eo == (eol-bol)) ||
384 !word_char(bol[pmatch[0].rm_eo])) )
385 ;
386 else
79d3696c 387 hit = 0;
f25b7939
JH
388
389 if (!hit && pmatch[0].rm_so + bol + 1 < eol) {
390 /* There could be more than one match on the
391 * line, and the first match might not be
392 * strict word match. But later ones could be!
393 */
394 bol = pmatch[0].rm_so + bol + 1;
395 at_true_bol = 0;
396 goto again;
397 }
79d3696c
JH
398 }
399 return hit;
400}
401
402static int match_expr_eval(struct grep_opt *opt,
403 struct grep_expr *x,
404 char *bol, char *eol)
405{
406 switch (x->node) {
407 case GREP_NODE_ATOM:
408 return match_one_pattern(opt, x->u.atom, bol, eol);
409 break;
410 case GREP_NODE_NOT:
411 return !match_expr_eval(opt, x->u.unary, bol, eol);
412 case GREP_NODE_AND:
413 return (match_expr_eval(opt, x->u.binary.left, bol, eol) &&
414 match_expr_eval(opt, x->u.binary.right, bol, eol));
415 case GREP_NODE_OR:
416 return (match_expr_eval(opt, x->u.binary.left, bol, eol) ||
417 match_expr_eval(opt, x->u.binary.right, bol, eol));
418 }
419 die("Unexpected node type (internal error) %d\n", x->node);
420}
421
422static int match_expr(struct grep_opt *opt, char *bol, char *eol)
423{
424 struct grep_expr *x = opt->pattern_expression;
425 return match_expr_eval(opt, x, bol, eol);
426}
427
428static int match_line(struct grep_opt *opt, char *bol, char *eol)
429{
430 struct grep_pat *p;
431 if (opt->extended)
432 return match_expr(opt, bol, eol);
433 for (p = opt->pattern_list; p; p = p->next) {
434 if (match_one_pattern(opt, p, bol, eol))
435 return 1;
436 }
437 return 0;
438}
439
5010cb5f
JH
440static int grep_buffer(struct grep_opt *opt, const char *name,
441 char *buf, unsigned long size)
442{
443 char *bol = buf;
444 unsigned long left = size;
445 unsigned lno = 1;
446 struct pre_context_line {
447 char *bol;
448 char *eol;
449 } *prev = NULL, *pcl;
450 unsigned last_hit = 0;
451 unsigned last_shown = 0;
b8d0f5a0 452 int binary_match_only = 0;
5010cb5f 453 const char *hunk_mark = "";
2c866cf1 454 unsigned count = 0;
5010cb5f 455
b8d0f5a0
JH
456 if (buffer_is_binary(buf, size)) {
457 switch (opt->binary) {
458 case GREP_BINARY_DEFAULT:
459 binary_match_only = 1;
460 break;
461 case GREP_BINARY_NOMATCH:
462 return 0; /* Assume unmatch */
463 break;
464 default:
465 break;
466 }
467 }
468
5010cb5f
JH
469 if (opt->pre_context)
470 prev = xcalloc(opt->pre_context, sizeof(*prev));
471 if (opt->pre_context || opt->post_context)
472 hunk_mark = "--\n";
473
474 while (left) {
5010cb5f 475 char *eol, ch;
f9b9faf6 476 int hit = 0;
5010cb5f
JH
477
478 eol = end_of_line(bol, &left);
479 ch = *eol;
480 *eol = 0;
481
79d3696c 482 hit = match_line(opt, bol, eol);
7839a25e 483
f9b9faf6
JH
484 /* "grep -v -e foo -e bla" should list lines
485 * that do not have either, so inversion should
486 * be done outside.
487 */
5010cb5f
JH
488 if (opt->invert)
489 hit = !hit;
e23d2d6b
JH
490 if (opt->unmatch_name_only) {
491 if (hit)
492 return 0;
493 goto next_line;
494 }
5010cb5f 495 if (hit) {
2c866cf1 496 count++;
b8d0f5a0
JH
497 if (binary_match_only) {
498 printf("Binary file %s matches\n", name);
499 return 1;
500 }
df0e7aa8
JH
501 if (opt->name_only) {
502 printf("%s\n", name);
503 return 1;
504 }
5010cb5f
JH
505 /* Hit at this line. If we haven't shown the
506 * pre-context lines, we would need to show them.
2c866cf1
JH
507 * When asked to do "count", this still show
508 * the context which is nonsense, but the user
509 * deserves to get that ;-).
5010cb5f
JH
510 */
511 if (opt->pre_context) {
512 unsigned from;
513 if (opt->pre_context < lno)
514 from = lno - opt->pre_context;
515 else
516 from = 1;
517 if (from <= last_shown)
518 from = last_shown + 1;
519 if (last_shown && from != last_shown + 1)
520 printf(hunk_mark);
521 while (from < lno) {
522 pcl = &prev[lno-from-1];
523 show_line(opt, pcl->bol, pcl->eol,
524 name, from, '-');
525 from++;
526 }
527 last_shown = lno-1;
528 }
529 if (last_shown && lno != last_shown + 1)
530 printf(hunk_mark);
2c866cf1
JH
531 if (!opt->count)
532 show_line(opt, bol, eol, name, lno, ':');
5010cb5f
JH
533 last_shown = last_hit = lno;
534 }
535 else if (last_hit &&
536 lno <= last_hit + opt->post_context) {
537 /* If the last hit is within the post context,
538 * we need to show this line.
539 */
540 if (last_shown && lno != last_shown + 1)
541 printf(hunk_mark);
542 show_line(opt, bol, eol, name, lno, '-');
543 last_shown = lno;
544 }
545 if (opt->pre_context) {
546 memmove(prev+1, prev,
547 (opt->pre_context-1) * sizeof(*prev));
548 prev->bol = bol;
549 prev->eol = eol;
550 }
e23d2d6b
JH
551
552 next_line:
5010cb5f
JH
553 *eol = ch;
554 bol = eol + 1;
7ed36f56
JH
555 if (!left)
556 break;
5010cb5f
JH
557 left--;
558 lno++;
559 }
e23d2d6b
JH
560
561 if (opt->unmatch_name_only) {
562 /* We did not see any hit, so we want to show this */
563 printf("%s\n", name);
564 return 1;
565 }
566
2c866cf1
JH
567 /* NEEDSWORK:
568 * The real "grep -c foo *.c" gives many "bar.c:0" lines,
569 * which feels mostly useless but sometimes useful. Maybe
570 * make it another option? For now suppress them.
571 */
572 if (opt->count && count)
573 printf("%s:%u\n", name, count);
5010cb5f
JH
574 return !!last_hit;
575}
576
0d042fec 577static int grep_sha1(struct grep_opt *opt, const unsigned char *sha1, const char *name, int tree_name_len)
5010cb5f
JH
578{
579 unsigned long size;
580 char *data;
581 char type[20];
0d042fec 582 char *to_free = NULL;
5010cb5f 583 int hit;
0d042fec 584
5010cb5f
JH
585 data = read_sha1_file(sha1, type, &size);
586 if (!data) {
587 error("'%s': unable to read %s", name, sha1_to_hex(sha1));
588 return 0;
589 }
0d042fec
JH
590 if (opt->relative && opt->prefix_length) {
591 static char name_buf[PATH_MAX];
592 char *cp;
593 int name_len = strlen(name) - opt->prefix_length + 1;
594
595 if (!tree_name_len)
596 name += opt->prefix_length;
597 else {
598 if (ARRAY_SIZE(name_buf) <= name_len)
599 cp = to_free = xmalloc(name_len);
600 else
601 cp = name_buf;
602 memcpy(cp, name, tree_name_len);
603 strcpy(cp + tree_name_len,
604 name + tree_name_len + opt->prefix_length);
605 name = cp;
606 }
607 }
5010cb5f
JH
608 hit = grep_buffer(opt, name, data, size);
609 free(data);
0d042fec 610 free(to_free);
5010cb5f
JH
611 return hit;
612}
613
614static int grep_file(struct grep_opt *opt, const char *filename)
615{
616 struct stat st;
617 int i;
618 char *data;
619 if (lstat(filename, &st) < 0) {
620 err_ret:
621 if (errno != ENOENT)
622 error("'%s': %s", filename, strerror(errno));
623 return 0;
624 }
625 if (!st.st_size)
626 return 0; /* empty file -- no grep hit */
627 if (!S_ISREG(st.st_mode))
628 return 0;
629 i = open(filename, O_RDONLY);
630 if (i < 0)
631 goto err_ret;
632 data = xmalloc(st.st_size + 1);
633 if (st.st_size != xread(i, data, st.st_size)) {
634 error("'%s': short read %s", filename, strerror(errno));
635 close(i);
636 free(data);
637 return 0;
638 }
639 close(i);
0d042fec
JH
640 if (opt->relative && opt->prefix_length)
641 filename += opt->prefix_length;
5010cb5f
JH
642 i = grep_buffer(opt, filename, data, st.st_size);
643 free(data);
644 return i;
645}
646
1e2398d7
LT
647static int exec_grep(int argc, const char **argv)
648{
649 pid_t pid;
650 int status;
651
652 argv[argc] = NULL;
653 pid = fork();
654 if (pid < 0)
655 return pid;
656 if (!pid) {
657 execvp("grep", (char **) argv);
658 exit(255);
659 }
660 while (waitpid(pid, &status, 0) < 0) {
661 if (errno == EINTR)
662 continue;
663 return -1;
664 }
665 if (WIFEXITED(status)) {
666 if (!WEXITSTATUS(status))
667 return 1;
668 return 0;
669 }
670 return -1;
671}
672
673#define MAXARGS 1000
ffa0a7ab
JH
674#define ARGBUF 4096
675#define push_arg(a) do { \
676 if (nr < MAXARGS) argv[nr++] = (a); \
677 else die("maximum number of args exceeded"); \
678 } while (0)
1e2398d7
LT
679
680static int external_grep(struct grep_opt *opt, const char **paths, int cached)
681{
fcfe34b5 682 int i, nr, argc, hit, len, status;
1e2398d7 683 const char *argv[MAXARGS+1];
ffa0a7ab
JH
684 char randarg[ARGBUF];
685 char *argptr = randarg;
1e2398d7
LT
686 struct grep_pat *p;
687
0d042fec 688 if (opt->extended || (opt->relative && opt->prefix_length))
79d3696c 689 return -1;
ffa0a7ab
JH
690 len = nr = 0;
691 push_arg("grep");
ffa0a7ab 692 if (opt->fixed)
f6647519 693 push_arg("-F");
ffa0a7ab
JH
694 if (opt->linenum)
695 push_arg("-n");
7977f0ea
LT
696 if (!opt->pathname)
697 push_arg("-h");
ffa0a7ab
JH
698 if (opt->regflags & REG_EXTENDED)
699 push_arg("-E");
3026402c
RF
700 if (opt->regflags & REG_ICASE)
701 push_arg("-i");
1e2398d7 702 if (opt->word_regexp)
ffa0a7ab 703 push_arg("-w");
1e2398d7 704 if (opt->name_only)
ffa0a7ab
JH
705 push_arg("-l");
706 if (opt->unmatch_name_only)
707 push_arg("-L");
708 if (opt->count)
709 push_arg("-c");
710 if (opt->post_context || opt->pre_context) {
711 if (opt->post_context != opt->pre_context) {
712 if (opt->pre_context) {
713 push_arg("-B");
714 len += snprintf(argptr, sizeof(randarg)-len,
715 "%u", opt->pre_context);
716 if (sizeof(randarg) <= len)
717 die("maximum length of args exceeded");
718 push_arg(argptr);
719 argptr += len;
720 }
721 if (opt->post_context) {
722 push_arg("-A");
723 len += snprintf(argptr, sizeof(randarg)-len,
724 "%u", opt->post_context);
725 if (sizeof(randarg) <= len)
726 die("maximum length of args exceeded");
727 push_arg(argptr);
728 argptr += len;
729 }
730 }
731 else {
732 push_arg("-C");
733 len += snprintf(argptr, sizeof(randarg)-len,
734 "%u", opt->post_context);
735 if (sizeof(randarg) <= len)
736 die("maximum length of args exceeded");
737 push_arg(argptr);
738 argptr += len;
739 }
740 }
1e2398d7 741 for (p = opt->pattern_list; p; p = p->next) {
ffa0a7ab
JH
742 push_arg("-e");
743 push_arg(p->pattern);
1e2398d7 744 }
bbb66c60
LT
745
746 /*
747 * To make sure we get the header printed out when we want it,
748 * add /dev/null to the paths to grep. This is unnecessary
749 * (and wrong) with "-l" or "-L", which always print out the
750 * name anyway.
751 *
752 * GNU grep has "-H", but this is portable.
753 */
754 if (!opt->name_only && !opt->unmatch_name_only)
755 push_arg("/dev/null");
1e2398d7
LT
756
757 hit = 0;
758 argc = nr;
759 for (i = 0; i < active_nr; i++) {
760 struct cache_entry *ce = active_cache[i];
fbd01abf 761 char *name;
1e2398d7
LT
762 if (ce_stage(ce) || !S_ISREG(ntohl(ce->ce_mode)))
763 continue;
764 if (!pathspec_matches(paths, ce->name))
765 continue;
bbb66c60
LT
766 name = ce->name;
767 if (name[0] == '-') {
768 int len = ce_namelen(ce);
769 name = xmalloc(len + 3);
770 memcpy(name, "./", 2);
771 memcpy(name + 2, ce->name, len + 1);
772 }
773 argv[argc++] = name;
1e2398d7
LT
774 if (argc < MAXARGS)
775 continue;
fcfe34b5
JH
776 status = exec_grep(argc, argv);
777 if (0 < status)
778 hit = 1;
1e2398d7
LT
779 argc = nr;
780 }
fcfe34b5
JH
781 if (argc > nr) {
782 status = exec_grep(argc, argv);
783 if (0 < status)
784 hit = 1;
785 }
786 return hit;
1e2398d7
LT
787}
788
1362671f 789static int grep_cache(struct grep_opt *opt, const char **paths, int cached)
5010cb5f
JH
790{
791 int hit = 0;
792 int nr;
793 read_cache();
794
1e2398d7
LT
795#ifdef __unix__
796 /*
797 * Use the external "grep" command for the case where
798 * we grep through the checked-out files. It tends to
799 * be a lot more optimized
800 */
801 if (!cached) {
802 hit = external_grep(opt, paths, cached);
803 if (hit >= 0)
804 return hit;
805 }
806#endif
807
5010cb5f
JH
808 for (nr = 0; nr < active_nr; nr++) {
809 struct cache_entry *ce = active_cache[nr];
810 if (ce_stage(ce) || !S_ISREG(ntohl(ce->ce_mode)))
811 continue;
1362671f 812 if (!pathspec_matches(paths, ce->name))
5010cb5f
JH
813 continue;
814 if (cached)
0d042fec 815 hit |= grep_sha1(opt, ce->sha1, ce->name, 0);
5010cb5f
JH
816 else
817 hit |= grep_file(opt, ce->name);
818 }
819 return hit;
820}
821
1362671f 822static int grep_tree(struct grep_opt *opt, const char **paths,
5010cb5f
JH
823 struct tree_desc *tree,
824 const char *tree_name, const char *base)
825{
5010cb5f
JH
826 int len;
827 int hit = 0;
4c068a98 828 struct name_entry entry;
e0eb889f 829 char *down;
0d042fec
JH
830 int tn_len = strlen(tree_name);
831 char *path_buf = xmalloc(PATH_MAX + tn_len + 100);
5010cb5f 832
0d042fec
JH
833 if (tn_len) {
834 tn_len = sprintf(path_buf, "%s:", tree_name);
835 down = path_buf + tn_len;
e0eb889f 836 strcat(down, base);
5010cb5f
JH
837 }
838 else {
e0eb889f
JH
839 down = path_buf;
840 strcpy(down, base);
5010cb5f
JH
841 }
842 len = strlen(path_buf);
843
4c068a98
LT
844 while (tree_entry(tree, &entry)) {
845 strcpy(path_buf + len, entry.path);
5010cb5f 846
4c068a98 847 if (S_ISDIR(entry.mode))
e0eb889f
JH
848 /* Match "abc/" against pathspec to
849 * decide if we want to descend into "abc"
850 * directory.
851 */
4c068a98 852 strcpy(path_buf + len + entry.pathlen, "/");
e0eb889f 853
1362671f 854 if (!pathspec_matches(paths, down))
5010cb5f 855 ;
4c068a98 856 else if (S_ISREG(entry.mode))
0d042fec 857 hit |= grep_sha1(opt, entry.sha1, path_buf, tn_len);
4c068a98 858 else if (S_ISDIR(entry.mode)) {
5010cb5f
JH
859 char type[20];
860 struct tree_desc sub;
861 void *data;
4c068a98 862 data = read_sha1_file(entry.sha1, type, &sub.size);
5010cb5f
JH
863 if (!data)
864 die("unable to read tree (%s)",
4c068a98 865 sha1_to_hex(entry.sha1));
5010cb5f 866 sub.buf = data;
1362671f 867 hit |= grep_tree(opt, paths, &sub, tree_name, down);
5010cb5f
JH
868 free(data);
869 }
5010cb5f
JH
870 }
871 return hit;
872}
873
1362671f 874static int grep_object(struct grep_opt *opt, const char **paths,
5010cb5f
JH
875 struct object *obj, const char *name)
876{
1974632c 877 if (obj->type == OBJ_BLOB)
0d042fec 878 return grep_sha1(opt, obj->sha1, name, 0);
1974632c 879 if (obj->type == OBJ_COMMIT || obj->type == OBJ_TREE) {
5010cb5f
JH
880 struct tree_desc tree;
881 void *data;
882 int hit;
883 data = read_object_with_reference(obj->sha1, tree_type,
884 &tree.size, NULL);
885 if (!data)
886 die("unable to read tree (%s)", sha1_to_hex(obj->sha1));
887 tree.buf = data;
1362671f 888 hit = grep_tree(opt, paths, &tree, name, "");
5010cb5f
JH
889 free(data);
890 return hit;
891 }
885a86ab 892 die("unable to grep from object of type %s", typename(obj->type));
5010cb5f
JH
893}
894
895static const char builtin_grep_usage[] =
896"git-grep <option>* <rev>* [-e] <pattern> [<path>...]";
897
088b084b
JH
898static const char emsg_invalid_context_len[] =
899"%s: invalid context length argument";
900static const char emsg_missing_context_len[] =
901"missing context length argument";
902static const char emsg_missing_argument[] =
903"option requires an argument -%s";
904
a633fca0 905int cmd_grep(int argc, const char **argv, const char *prefix)
5010cb5f 906{
5010cb5f 907 int hit = 0;
5010cb5f 908 int cached = 0;
5acd64ed 909 int seen_dashdash = 0;
5010cb5f 910 struct grep_opt opt;
1f1e895f 911 struct object_array list = { 0, 0, NULL };
1362671f 912 const char **paths = NULL;
5acd64ed 913 int i;
5010cb5f
JH
914
915 memset(&opt, 0, sizeof(opt));
0d042fec
JH
916 opt.prefix_length = (prefix && *prefix) ? strlen(prefix) : 0;
917 opt.relative = 1;
7977f0ea 918 opt.pathname = 1;
f9b9faf6 919 opt.pattern_tail = &opt.pattern_list;
5010cb5f
JH
920 opt.regflags = REG_NEWLINE;
921
922 /*
5acd64ed
JH
923 * If there is no -- then the paths must exist in the working
924 * tree. If there is no explicit pattern specified with -e or
925 * -f, we take the first unrecognized non option to be the
926 * pattern, but then what follows it must be zero or more
927 * valid refs up to the -- (if exists), and then existing
928 * paths. If there is an explicit pattern, then the first
82e5a82f 929 * unrecognized non option is the beginning of the refs list
5acd64ed 930 * that continues up to the -- (if exists), and then paths.
5010cb5f 931 */
5acd64ed 932
1362671f
JH
933 while (1 < argc) {
934 const char *arg = argv[1];
935 argc--; argv++;
936 if (!strcmp("--cached", arg)) {
937 cached = 1;
938 continue;
939 }
b8d0f5a0
JH
940 if (!strcmp("-a", arg) ||
941 !strcmp("--text", arg)) {
942 opt.binary = GREP_BINARY_TEXT;
943 continue;
944 }
1362671f
JH
945 if (!strcmp("-i", arg) ||
946 !strcmp("--ignore-case", arg)) {
947 opt.regflags |= REG_ICASE;
948 continue;
949 }
b8d0f5a0
JH
950 if (!strcmp("-I", arg)) {
951 opt.binary = GREP_BINARY_NOMATCH;
952 continue;
953 }
1362671f
JH
954 if (!strcmp("-v", arg) ||
955 !strcmp("--invert-match", arg)) {
956 opt.invert = 1;
957 continue;
958 }
959 if (!strcmp("-E", arg) ||
960 !strcmp("--extended-regexp", arg)) {
961 opt.regflags |= REG_EXTENDED;
962 continue;
963 }
07ea91d8
JH
964 if (!strcmp("-F", arg) ||
965 !strcmp("--fixed-strings", arg)) {
966 opt.fixed = 1;
967 continue;
968 }
1362671f
JH
969 if (!strcmp("-G", arg) ||
970 !strcmp("--basic-regexp", arg)) {
971 opt.regflags &= ~REG_EXTENDED;
972 continue;
973 }
974 if (!strcmp("-n", arg)) {
975 opt.linenum = 1;
976 continue;
977 }
7977f0ea
LT
978 if (!strcmp("-h", arg)) {
979 opt.pathname = 0;
980 continue;
981 }
1362671f 982 if (!strcmp("-H", arg)) {
7977f0ea 983 opt.pathname = 1;
1362671f
JH
984 continue;
985 }
986 if (!strcmp("-l", arg) ||
987 !strcmp("--files-with-matches", arg)) {
988 opt.name_only = 1;
989 continue;
990 }
e23d2d6b
JH
991 if (!strcmp("-L", arg) ||
992 !strcmp("--files-without-match", arg)) {
993 opt.unmatch_name_only = 1;
994 continue;
995 }
2c866cf1
JH
996 if (!strcmp("-c", arg) ||
997 !strcmp("--count", arg)) {
998 opt.count = 1;
999 continue;
1000 }
7839a25e
JH
1001 if (!strcmp("-w", arg) ||
1002 !strcmp("--word-regexp", arg)) {
1003 opt.word_regexp = 1;
1004 continue;
1005 }
f462ebb4
JH
1006 if (!strncmp("-A", arg, 2) ||
1007 !strncmp("-B", arg, 2) ||
1008 !strncmp("-C", arg, 2) ||
1009 (arg[0] == '-' && '1' <= arg[1] && arg[1] <= '9')) {
1362671f 1010 unsigned num;
f462ebb4
JH
1011 const char *scan;
1012 switch (arg[1]) {
1013 case 'A': case 'B': case 'C':
1014 if (!arg[2]) {
1015 if (argc <= 1)
088b084b 1016 die(emsg_missing_context_len);
f462ebb4
JH
1017 scan = *++argv;
1018 argc--;
1019 }
1020 else
1021 scan = arg + 2;
1022 break;
1023 default:
1024 scan = arg + 1;
1025 break;
1026 }
1027 if (sscanf(scan, "%u", &num) != 1)
088b084b 1028 die(emsg_invalid_context_len, scan);
1362671f
JH
1029 switch (arg[1]) {
1030 case 'A':
1031 opt.post_context = num;
1032 break;
f462ebb4 1033 default:
1362671f
JH
1034 case 'C':
1035 opt.post_context = num;
1036 case 'B':
1037 opt.pre_context = num;
1038 break;
5010cb5f 1039 }
1362671f
JH
1040 continue;
1041 }
aa8c79ad
JH
1042 if (!strcmp("-f", arg)) {
1043 FILE *patterns;
1044 int lno = 0;
1045 char buf[1024];
1046 if (argc <= 1)
088b084b 1047 die(emsg_missing_argument, arg);
aa8c79ad
JH
1048 patterns = fopen(argv[1], "r");
1049 if (!patterns)
5acd64ed 1050 die("'%s': %s", argv[1], strerror(errno));
aa8c79ad
JH
1051 while (fgets(buf, sizeof(buf), patterns)) {
1052 int len = strlen(buf);
1053 if (buf[len-1] == '\n')
1054 buf[len-1] = 0;
1055 /* ignore empty line like grep does */
1056 if (!buf[0])
1057 continue;
9befac47 1058 add_pattern(&opt, xstrdup(buf), argv[1], ++lno,
79d3696c 1059 GREP_PATTERN);
aa8c79ad
JH
1060 }
1061 fclose(patterns);
1062 argv++;
1063 argc--;
1064 continue;
1065 }
79d3696c
JH
1066 if (!strcmp("--not", arg)) {
1067 add_pattern(&opt, arg, "command line", 0, GREP_NOT);
1068 continue;
1069 }
1070 if (!strcmp("--and", arg)) {
1071 add_pattern(&opt, arg, "command line", 0, GREP_AND);
1072 continue;
1073 }
1074 if (!strcmp("--or", arg))
1075 continue; /* no-op */
1076 if (!strcmp("(", arg)) {
1077 add_pattern(&opt, arg, "command line", 0, GREP_OPEN_PAREN);
1078 continue;
1079 }
1080 if (!strcmp(")", arg)) {
1081 add_pattern(&opt, arg, "command line", 0, GREP_CLOSE_PAREN);
1082 continue;
1083 }
1362671f
JH
1084 if (!strcmp("-e", arg)) {
1085 if (1 < argc) {
79d3696c
JH
1086 add_pattern(&opt, argv[1], "-e option", 0,
1087 GREP_PATTERN);
f9b9faf6 1088 argv++;
1362671f 1089 argc--;
5010cb5f
JH
1090 continue;
1091 }
088b084b 1092 die(emsg_missing_argument, arg);
1362671f 1093 }
0d042fec
JH
1094 if (!strcmp("--full-name", arg)) {
1095 opt.relative = 0;
1096 continue;
1097 }
5390590f
JH
1098 if (!strcmp("--", arg)) {
1099 /* later processing wants to have this at argv[1] */
1100 argv--;
1101 argc++;
5acd64ed 1102 break;
5390590f 1103 }
5acd64ed 1104 if (*arg == '-')
1362671f 1105 usage(builtin_grep_usage);
5acd64ed
JH
1106
1107 /* First unrecognized non-option token */
f9b9faf6 1108 if (!opt.pattern_list) {
79d3696c
JH
1109 add_pattern(&opt, arg, "command line", 0,
1110 GREP_PATTERN);
1362671f
JH
1111 break;
1112 }
1113 else {
1114 /* We are looking at the first path or rev;
5acd64ed 1115 * it is found at argv[1] after leaving the
1362671f
JH
1116 * loop.
1117 */
1118 argc++; argv--;
1119 break;
5010cb5f 1120 }
5010cb5f 1121 }
5acd64ed 1122
f9b9faf6 1123 if (!opt.pattern_list)
5010cb5f 1124 die("no pattern given.");
07ea91d8
JH
1125 if ((opt.regflags != REG_NEWLINE) && opt.fixed)
1126 die("cannot mix --fixed-strings and regexp");
1127 if (!opt.fixed)
1128 compile_patterns(&opt);
5acd64ed
JH
1129
1130 /* Check revs and then paths */
1131 for (i = 1; i < argc; i++) {
1132 const char *arg = argv[i];
1362671f 1133 unsigned char sha1[20];
5acd64ed
JH
1134 /* Is it a rev? */
1135 if (!get_sha1(arg, sha1)) {
1136 struct object *object = parse_object(sha1);
5acd64ed
JH
1137 if (!object)
1138 die("bad object %s", arg);
1f1e895f 1139 add_object_array(object, arg, &list);
5acd64ed
JH
1140 continue;
1141 }
1142 if (!strcmp(arg, "--")) {
1143 i++;
1144 seen_dashdash = 1;
1145 }
1146 break;
1362671f 1147 }
5acd64ed
JH
1148
1149 /* The rest are paths */
1150 if (!seen_dashdash) {
1151 int j;
c39c4f47 1152 for (j = i; j < argc; j++)
5acd64ed
JH
1153 verify_filename(prefix, argv[j]);
1154 }
1155
0d042fec 1156 if (i < argc) {
5acd64ed 1157 paths = get_pathspec(prefix, argv + i);
0d042fec
JH
1158 if (opt.prefix_length && opt.relative) {
1159 /* Make sure we do not get outside of paths */
1160 for (i = 0; paths[i]; i++)
1161 if (strncmp(prefix, paths[i], opt.prefix_length))
1162 die("git-grep: cannot generate relative filenames containing '..'");
1163 }
1164 }
1362671f
JH
1165 else if (prefix) {
1166 paths = xcalloc(2, sizeof(const char *));
1167 paths[0] = prefix;
1168 paths[1] = NULL;
1169 }
5010cb5f 1170
1f1e895f 1171 if (!list.nr)
1362671f 1172 return !grep_cache(&opt, paths, cached);
aa8c79ad 1173
5010cb5f 1174 if (cached)
aa8c79ad 1175 die("both --cached and trees are given.");
5010cb5f 1176
1f1e895f 1177 for (i = 0; i < list.nr; i++) {
5010cb5f 1178 struct object *real_obj;
1f1e895f
LT
1179 real_obj = deref_tag(list.objects[i].item, NULL, 0);
1180 if (grep_object(&opt, paths, real_obj, list.objects[i].name))
5010cb5f
JH
1181 hit = 1;
1182 }
1183 return !hit;
1184}