]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-grep.c
Check size of path buffer before writing into it
[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 12#include "builtin.h"
3e230fa1 13#include "parse-options.h"
60ecac98 14#include "userdiff.h"
83b5d2f5 15#include "grep.h"
493b7a08 16#include "quote.h"
5010cb5f 17
5f7c643a
JK
18#ifndef NO_EXTERNAL_GREP
19#ifdef __unix__
20#define NO_EXTERNAL_GREP 0
21#else
22#define NO_EXTERNAL_GREP 1
23#endif
24#endif
25
3e230fa1
RS
26static char const * const grep_usage[] = {
27 "git grep [options] [-e] <pattern> [<rev>...] [[--] path...]",
28 NULL
29};
30
7e8f59d5
RS
31static int grep_config(const char *var, const char *value, void *cb)
32{
33 struct grep_opt *opt = cb;
34
60ecac98
RS
35 switch (userdiff_config(var, value)) {
36 case 0: break;
37 case -1: return -1;
38 default: return 0;
39 }
40
fe3420b6 41 if (!strcmp(var, "color.grep")) {
7e8f59d5
RS
42 opt->color = git_config_colorbool(var, value, -1);
43 return 0;
44 }
fe3420b6 45 if (!strcmp(var, "color.grep.external"))
a94982ef 46 return git_config_string(&(opt->color_external), var, value);
fe3420b6 47 if (!strcmp(var, "color.grep.match")) {
7e8f59d5
RS
48 if (!value)
49 return config_error_nonbool(var);
50 color_parse(value, var, opt->color_match);
51 return 0;
52 }
53 return git_color_default_config(var, value, cb);
54}
55
e0eb889f
JH
56/*
57 * git grep pathspecs are somewhat different from diff-tree pathspecs;
58 * pathname wildcards are allowed.
59 */
1362671f 60static int pathspec_matches(const char **paths, const char *name)
5010cb5f 61{
e0eb889f 62 int namelen, i;
1362671f 63 if (!paths || !*paths)
5010cb5f
JH
64 return 1;
65 namelen = strlen(name);
1362671f
JH
66 for (i = 0; paths[i]; i++) {
67 const char *match = paths[i];
68 int matchlen = strlen(match);
1e3d90e0 69 const char *cp, *meta;
e0eb889f 70
bb9e15a8
UKK
71 if (!matchlen ||
72 ((matchlen <= namelen) &&
73 !strncmp(name, match, matchlen) &&
74 (match[matchlen-1] == '/' ||
75 name[matchlen] == '\0' || name[matchlen] == '/')))
e0eb889f
JH
76 return 1;
77 if (!fnmatch(match, name, 0))
78 return 1;
79 if (name[namelen-1] != '/')
5010cb5f 80 continue;
e0eb889f 81
1e3d90e0 82 /* We are being asked if the directory ("name") is worth
e0eb889f
JH
83 * descending into.
84 *
85 * Find the longest leading directory name that does
86 * not have metacharacter in the pathspec; the name
87 * we are looking at must overlap with that directory.
5010cb5f 88 */
1e3d90e0 89 for (cp = match, meta = NULL; cp - match < matchlen; cp++) {
e0eb889f 90 char ch = *cp;
1e3d90e0
JH
91 if (ch == '*' || ch == '[' || ch == '?') {
92 meta = cp;
5010cb5f 93 break;
1e3d90e0 94 }
e0eb889f 95 }
1e3d90e0
JH
96 if (!meta)
97 meta = cp; /* fully literal */
98
99 if (namelen <= meta - match) {
e0eb889f
JH
100 /* Looking at "Documentation/" and
101 * the pattern says "Documentation/howto/", or
1e3d90e0
JH
102 * "Documentation/diff*.txt". The name we
103 * have should match prefix.
e0eb889f
JH
104 */
105 if (!memcmp(match, name, namelen))
106 return 1;
1e3d90e0 107 continue;
e0eb889f 108 }
1e3d90e0
JH
109
110 if (meta - match < namelen) {
e0eb889f 111 /* Looking at "Documentation/howto/" and
1e3d90e0
JH
112 * the pattern says "Documentation/h*";
113 * match up to "Do.../h"; this avoids descending
114 * into "Documentation/technical/".
e0eb889f 115 */
1e3d90e0 116 if (!memcmp(match, name, meta - match))
e0eb889f 117 return 1;
1e3d90e0 118 continue;
e0eb889f 119 }
5010cb5f
JH
120 }
121 return 0;
122}
123
0d042fec 124static int grep_sha1(struct grep_opt *opt, const unsigned char *sha1, const char *name, int tree_name_len)
5010cb5f
JH
125{
126 unsigned long size;
127 char *data;
21666f1a 128 enum object_type type;
5010cb5f 129 int hit;
493b7a08 130 struct strbuf pathbuf = STRBUF_INIT;
0d042fec 131
21666f1a 132 data = read_sha1_file(sha1, &type, &size);
5010cb5f
JH
133 if (!data) {
134 error("'%s': unable to read %s", name, sha1_to_hex(sha1));
135 return 0;
136 }
0d042fec 137 if (opt->relative && opt->prefix_length) {
493b7a08
CB
138 quote_path_relative(name + tree_name_len, -1, &pathbuf, opt->prefix);
139 strbuf_insert(&pathbuf, 0, name, tree_name_len);
140 name = pathbuf.buf;
0d042fec 141 }
5010cb5f 142 hit = grep_buffer(opt, name, data, size);
493b7a08 143 strbuf_release(&pathbuf);
5010cb5f
JH
144 free(data);
145 return hit;
146}
147
148static int grep_file(struct grep_opt *opt, const char *filename)
149{
150 struct stat st;
151 int i;
152 char *data;
dc49cd76 153 size_t sz;
493b7a08 154 struct strbuf buf = STRBUF_INIT;
dc49cd76 155
5010cb5f
JH
156 if (lstat(filename, &st) < 0) {
157 err_ret:
158 if (errno != ENOENT)
159 error("'%s': %s", filename, strerror(errno));
160 return 0;
161 }
162 if (!st.st_size)
163 return 0; /* empty file -- no grep hit */
164 if (!S_ISREG(st.st_mode))
165 return 0;
dc49cd76 166 sz = xsize_t(st.st_size);
5010cb5f
JH
167 i = open(filename, O_RDONLY);
168 if (i < 0)
169 goto err_ret;
dc49cd76
SP
170 data = xmalloc(sz + 1);
171 if (st.st_size != read_in_full(i, data, sz)) {
5010cb5f
JH
172 error("'%s': short read %s", filename, strerror(errno));
173 close(i);
174 free(data);
175 return 0;
176 }
177 close(i);
0d042fec 178 if (opt->relative && opt->prefix_length)
493b7a08 179 filename = quote_path_relative(filename, -1, &buf, opt->prefix);
dc49cd76 180 i = grep_buffer(opt, filename, data, sz);
493b7a08 181 strbuf_release(&buf);
5010cb5f
JH
182 free(data);
183 return i;
184}
185
5f7c643a 186#if !NO_EXTERNAL_GREP
1e2398d7
LT
187static int exec_grep(int argc, const char **argv)
188{
189 pid_t pid;
190 int status;
191
192 argv[argc] = NULL;
193 pid = fork();
194 if (pid < 0)
195 return pid;
196 if (!pid) {
197 execvp("grep", (char **) argv);
198 exit(255);
199 }
200 while (waitpid(pid, &status, 0) < 0) {
201 if (errno == EINTR)
202 continue;
203 return -1;
204 }
205 if (WIFEXITED(status)) {
206 if (!WEXITSTATUS(status))
207 return 1;
208 return 0;
209 }
210 return -1;
211}
212
213#define MAXARGS 1000
ffa0a7ab
JH
214#define ARGBUF 4096
215#define push_arg(a) do { \
216 if (nr < MAXARGS) argv[nr++] = (a); \
217 else die("maximum number of args exceeded"); \
218 } while (0)
1e2398d7 219
d99ebf08
JH
220/*
221 * If you send a singleton filename to grep, it does not give
222 * the name of the file. GNU grep has "-H" but we would want
223 * that behaviour in a portable way.
224 *
225 * So we keep two pathnames in argv buffer unsent to grep in
226 * the main loop if we need to do more than one grep.
227 */
228static int flush_grep(struct grep_opt *opt,
229 int argc, int arg0, const char **argv, int *kept)
230{
231 int status;
232 int count = argc - arg0;
233 const char *kept_0 = NULL;
234
235 if (count <= 2) {
236 /*
237 * Because we keep at least 2 paths in the call from
238 * the main loop (i.e. kept != NULL), and MAXARGS is
239 * far greater than 2, this usually is a call to
240 * conclude the grep. However, the user could attempt
241 * to overflow the argv buffer by giving too many
242 * options to leave very small number of real
243 * arguments even for the call in the main loop.
244 */
245 if (kept)
246 die("insanely many options to grep");
247
248 /*
249 * If we have two or more paths, we do not have to do
250 * anything special, but we need to push /dev/null to
251 * get "-H" behaviour of GNU grep portably but when we
252 * are not doing "-l" nor "-L" nor "-c".
253 */
254 if (count == 1 &&
255 !opt->name_only &&
256 !opt->unmatch_name_only &&
257 !opt->count) {
258 argv[argc++] = "/dev/null";
259 argv[argc] = NULL;
260 }
261 }
262
263 else if (kept) {
264 /*
265 * Called because we found many paths and haven't finished
266 * iterating over the cache yet. We keep two paths
267 * for the concluding call. argv[argc-2] and argv[argc-1]
268 * has the last two paths, so save the first one away,
269 * replace it with NULL while sending the list to grep,
270 * and recover them after we are done.
271 */
272 *kept = 2;
273 kept_0 = argv[argc-2];
274 argv[argc-2] = NULL;
275 argc -= 2;
276 }
277
ed24e401 278 if (opt->pre_context || opt->post_context) {
046802d0
RS
279 /*
280 * grep handles hunk marks between files, but we need to
281 * do that ourselves between multiple calls.
282 */
283 if (opt->show_hunk_mark)
ed24e401 284 write_or_die(1, "--\n", 3);
046802d0
RS
285 else
286 opt->show_hunk_mark = 1;
287 }
288
d99ebf08
JH
289 status = exec_grep(argc, argv);
290
291 if (kept_0) {
292 /*
293 * Then recover them. Now the last arg is beyond the
294 * terminating NULL which is at argc, and the second
295 * from the last is what we saved away in kept_0
296 */
297 argv[arg0++] = kept_0;
298 argv[arg0] = argv[argc+1];
299 }
300 return status;
301}
302
a94982ef
RS
303static void grep_add_color(struct strbuf *sb, const char *escape_seq)
304{
305 size_t orig_len = sb->len;
306
307 while (*escape_seq) {
308 if (*escape_seq == 'm')
309 strbuf_addch(sb, ';');
310 else if (*escape_seq != '\033' && *escape_seq != '[')
311 strbuf_addch(sb, *escape_seq);
312 escape_seq++;
313 }
314 if (sb->len > orig_len && sb->buf[sb->len - 1] == ';')
315 strbuf_setlen(sb, sb->len - 1);
316}
317
1e2398d7
LT
318static int external_grep(struct grep_opt *opt, const char **paths, int cached)
319{
fcfe34b5 320 int i, nr, argc, hit, len, status;
1e2398d7 321 const char *argv[MAXARGS+1];
ffa0a7ab
JH
322 char randarg[ARGBUF];
323 char *argptr = randarg;
1e2398d7
LT
324 struct grep_pat *p;
325
0d042fec 326 if (opt->extended || (opt->relative && opt->prefix_length))
79d3696c 327 return -1;
ffa0a7ab
JH
328 len = nr = 0;
329 push_arg("grep");
ffa0a7ab 330 if (opt->fixed)
f6647519 331 push_arg("-F");
ffa0a7ab
JH
332 if (opt->linenum)
333 push_arg("-n");
7977f0ea
LT
334 if (!opt->pathname)
335 push_arg("-h");
ffa0a7ab
JH
336 if (opt->regflags & REG_EXTENDED)
337 push_arg("-E");
3026402c
RF
338 if (opt->regflags & REG_ICASE)
339 push_arg("-i");
bc395643
JH
340 if (opt->binary == GREP_BINARY_NOMATCH)
341 push_arg("-I");
1e2398d7 342 if (opt->word_regexp)
ffa0a7ab 343 push_arg("-w");
1e2398d7 344 if (opt->name_only)
ffa0a7ab
JH
345 push_arg("-l");
346 if (opt->unmatch_name_only)
347 push_arg("-L");
83caecca
RZ
348 if (opt->null_following_name)
349 /* in GNU grep git's "-z" translates to "-Z" */
350 push_arg("-Z");
ffa0a7ab
JH
351 if (opt->count)
352 push_arg("-c");
353 if (opt->post_context || opt->pre_context) {
354 if (opt->post_context != opt->pre_context) {
355 if (opt->pre_context) {
356 push_arg("-B");
357 len += snprintf(argptr, sizeof(randarg)-len,
4b87474b 358 "%u", opt->pre_context) + 1;
ffa0a7ab
JH
359 if (sizeof(randarg) <= len)
360 die("maximum length of args exceeded");
361 push_arg(argptr);
362 argptr += len;
363 }
364 if (opt->post_context) {
365 push_arg("-A");
366 len += snprintf(argptr, sizeof(randarg)-len,
4b87474b 367 "%u", opt->post_context) + 1;
ffa0a7ab
JH
368 if (sizeof(randarg) <= len)
369 die("maximum length of args exceeded");
370 push_arg(argptr);
371 argptr += len;
372 }
373 }
374 else {
375 push_arg("-C");
376 len += snprintf(argptr, sizeof(randarg)-len,
4b87474b 377 "%u", opt->post_context) + 1;
ffa0a7ab
JH
378 if (sizeof(randarg) <= len)
379 die("maximum length of args exceeded");
380 push_arg(argptr);
381 argptr += len;
382 }
383 }
1e2398d7 384 for (p = opt->pattern_list; p; p = p->next) {
ffa0a7ab
JH
385 push_arg("-e");
386 push_arg(p->pattern);
1e2398d7 387 }
a94982ef
RS
388 if (opt->color) {
389 struct strbuf sb = STRBUF_INIT;
390
391 grep_add_color(&sb, opt->color_match);
392 setenv("GREP_COLOR", sb.buf, 1);
393
394 strbuf_reset(&sb);
395 strbuf_addstr(&sb, "mt=");
396 grep_add_color(&sb, opt->color_match);
397 strbuf_addstr(&sb, ":sl=:cx=:fn=:ln=:bn=:se=");
398 setenv("GREP_COLORS", sb.buf, 1);
399
400 strbuf_release(&sb);
401
402 if (opt->color_external && strlen(opt->color_external) > 0)
403 push_arg(opt->color_external);
404 }
bbb66c60 405
1e2398d7
LT
406 hit = 0;
407 argc = nr;
408 for (i = 0; i < active_nr; i++) {
409 struct cache_entry *ce = active_cache[i];
fbd01abf 410 char *name;
d99ebf08 411 int kept;
7a51ed66 412 if (!S_ISREG(ce->ce_mode))
1e2398d7
LT
413 continue;
414 if (!pathspec_matches(paths, ce->name))
415 continue;
bbb66c60
LT
416 name = ce->name;
417 if (name[0] == '-') {
418 int len = ce_namelen(ce);
419 name = xmalloc(len + 3);
420 memcpy(name, "./", 2);
421 memcpy(name + 2, ce->name, len + 1);
422 }
423 argv[argc++] = name;
6326cee5
JH
424 if (MAXARGS <= argc) {
425 status = flush_grep(opt, argc, nr, argv, &kept);
426 if (0 < status)
427 hit = 1;
428 argc = nr + kept;
429 }
36f2587f
JH
430 if (ce_stage(ce)) {
431 do {
432 i++;
433 } while (i < active_nr &&
434 !strcmp(ce->name, active_cache[i]->name));
435 i--; /* compensate for loop control */
436 }
1e2398d7 437 }
fcfe34b5 438 if (argc > nr) {
d99ebf08 439 status = flush_grep(opt, argc, nr, argv, NULL);
fcfe34b5
JH
440 if (0 < status)
441 hit = 1;
442 }
443 return hit;
1e2398d7 444}
ff1f9945 445#endif
1e2398d7 446
1b5fb44a
RS
447static int grep_cache(struct grep_opt *opt, const char **paths, int cached,
448 int external_grep_allowed)
5010cb5f
JH
449{
450 int hit = 0;
451 int nr;
452 read_cache();
453
5f7c643a 454#if !NO_EXTERNAL_GREP
1e2398d7
LT
455 /*
456 * Use the external "grep" command for the case where
457 * we grep through the checked-out files. It tends to
458 * be a lot more optimized
459 */
1b5fb44a 460 if (!cached && external_grep_allowed) {
1e2398d7
LT
461 hit = external_grep(opt, paths, cached);
462 if (hit >= 0)
463 return hit;
929e37d3 464 hit = 0;
1e2398d7
LT
465 }
466#endif
467
5010cb5f
JH
468 for (nr = 0; nr < active_nr; nr++) {
469 struct cache_entry *ce = active_cache[nr];
7a51ed66 470 if (!S_ISREG(ce->ce_mode))
5010cb5f 471 continue;
1362671f 472 if (!pathspec_matches(paths, ce->name))
5010cb5f 473 continue;
57d43466
NTND
474 /*
475 * If CE_VALID is on, we assume worktree file and its cache entry
476 * are identical, even if worktree file has been modified, so use
477 * cache version instead
478 */
479 if (cached || (ce->ce_flags & CE_VALID)) {
36f2587f
JH
480 if (ce_stage(ce))
481 continue;
0d042fec 482 hit |= grep_sha1(opt, ce->sha1, ce->name, 0);
36f2587f 483 }
5010cb5f
JH
484 else
485 hit |= grep_file(opt, ce->name);
36f2587f
JH
486 if (ce_stage(ce)) {
487 do {
488 nr++;
489 } while (nr < active_nr &&
490 !strcmp(ce->name, active_cache[nr]->name));
491 nr--; /* compensate for loop control */
492 }
5010cb5f 493 }
b48fb5b6 494 free_grep_patterns(opt);
5010cb5f
JH
495 return hit;
496}
497
1362671f 498static int grep_tree(struct grep_opt *opt, const char **paths,
5010cb5f
JH
499 struct tree_desc *tree,
500 const char *tree_name, const char *base)
501{
5010cb5f
JH
502 int len;
503 int hit = 0;
4c068a98 504 struct name_entry entry;
e0eb889f 505 char *down;
0d042fec 506 int tn_len = strlen(tree_name);
620e2bb9
DP
507 struct strbuf pathbuf;
508
509 strbuf_init(&pathbuf, PATH_MAX + tn_len);
5010cb5f 510
0d042fec 511 if (tn_len) {
620e2bb9
DP
512 strbuf_add(&pathbuf, tree_name, tn_len);
513 strbuf_addch(&pathbuf, ':');
514 tn_len = pathbuf.len;
5010cb5f 515 }
620e2bb9
DP
516 strbuf_addstr(&pathbuf, base);
517 len = pathbuf.len;
5010cb5f 518
4c068a98 519 while (tree_entry(tree, &entry)) {
620e2bb9
DP
520 int te_len = tree_entry_len(entry.path, entry.sha1);
521 pathbuf.len = len;
522 strbuf_add(&pathbuf, entry.path, te_len);
5010cb5f 523
4c068a98 524 if (S_ISDIR(entry.mode))
e0eb889f
JH
525 /* Match "abc/" against pathspec to
526 * decide if we want to descend into "abc"
527 * directory.
528 */
620e2bb9 529 strbuf_addch(&pathbuf, '/');
e0eb889f 530
620e2bb9 531 down = pathbuf.buf + tn_len;
1362671f 532 if (!pathspec_matches(paths, down))
5010cb5f 533 ;
4c068a98 534 else if (S_ISREG(entry.mode))
620e2bb9 535 hit |= grep_sha1(opt, entry.sha1, pathbuf.buf, tn_len);
4c068a98 536 else if (S_ISDIR(entry.mode)) {
21666f1a 537 enum object_type type;
5010cb5f
JH
538 struct tree_desc sub;
539 void *data;
6fda5e51
LT
540 unsigned long size;
541
542 data = read_sha1_file(entry.sha1, &type, &size);
5010cb5f
JH
543 if (!data)
544 die("unable to read tree (%s)",
4c068a98 545 sha1_to_hex(entry.sha1));
6fda5e51 546 init_tree_desc(&sub, data, size);
1362671f 547 hit |= grep_tree(opt, paths, &sub, tree_name, down);
5010cb5f
JH
548 free(data);
549 }
5010cb5f 550 }
620e2bb9 551 strbuf_release(&pathbuf);
5010cb5f
JH
552 return hit;
553}
554
1362671f 555static int grep_object(struct grep_opt *opt, const char **paths,
5010cb5f
JH
556 struct object *obj, const char *name)
557{
1974632c 558 if (obj->type == OBJ_BLOB)
0d042fec 559 return grep_sha1(opt, obj->sha1, name, 0);
1974632c 560 if (obj->type == OBJ_COMMIT || obj->type == OBJ_TREE) {
5010cb5f
JH
561 struct tree_desc tree;
562 void *data;
6fda5e51 563 unsigned long size;
5010cb5f
JH
564 int hit;
565 data = read_object_with_reference(obj->sha1, tree_type,
6fda5e51 566 &size, NULL);
5010cb5f
JH
567 if (!data)
568 die("unable to read tree (%s)", sha1_to_hex(obj->sha1));
6fda5e51 569 init_tree_desc(&tree, data, size);
1362671f 570 hit = grep_tree(opt, paths, &tree, name, "");
5010cb5f
JH
571 free(data);
572 return hit;
573 }
885a86ab 574 die("unable to grep from object of type %s", typename(obj->type));
5010cb5f
JH
575}
576
ff3c7f9a
RS
577static int context_callback(const struct option *opt, const char *arg,
578 int unset)
3e230fa1
RS
579{
580 struct grep_opt *grep_opt = opt->value;
581 int value;
582 const char *endp;
583
584 if (unset) {
585 grep_opt->pre_context = grep_opt->post_context = 0;
586 return 0;
587 }
588 value = strtol(arg, (char **)&endp, 10);
589 if (*endp) {
590 return error("switch `%c' expects a numerical value",
591 opt->short_name);
592 }
593 grep_opt->pre_context = grep_opt->post_context = value;
594 return 0;
595}
596
ff3c7f9a 597static int file_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
598{
599 struct grep_opt *grep_opt = opt->value;
600 FILE *patterns;
601 int lno = 0;
cfe370c6 602 struct strbuf sb = STRBUF_INIT;
3e230fa1
RS
603
604 patterns = fopen(arg, "r");
605 if (!patterns)
d824cbba 606 die_errno("cannot open '%s'", arg);
3e230fa1
RS
607 while (strbuf_getline(&sb, patterns, '\n') == 0) {
608 /* ignore empty line like grep does */
609 if (sb.len == 0)
610 continue;
611 append_grep_pattern(grep_opt, strbuf_detach(&sb, NULL), arg,
612 ++lno, GREP_PATTERN);
613 }
614 fclose(patterns);
615 strbuf_release(&sb);
616 return 0;
617}
618
ff3c7f9a 619static int not_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
620{
621 struct grep_opt *grep_opt = opt->value;
622 append_grep_pattern(grep_opt, "--not", "command line", 0, GREP_NOT);
623 return 0;
624}
625
ff3c7f9a 626static int and_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
627{
628 struct grep_opt *grep_opt = opt->value;
629 append_grep_pattern(grep_opt, "--and", "command line", 0, GREP_AND);
630 return 0;
631}
632
ff3c7f9a 633static int open_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
634{
635 struct grep_opt *grep_opt = opt->value;
636 append_grep_pattern(grep_opt, "(", "command line", 0, GREP_OPEN_PAREN);
637 return 0;
638}
639
ff3c7f9a 640static int close_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
641{
642 struct grep_opt *grep_opt = opt->value;
643 append_grep_pattern(grep_opt, ")", "command line", 0, GREP_CLOSE_PAREN);
644 return 0;
645}
646
ff3c7f9a
RS
647static int pattern_callback(const struct option *opt, const char *arg,
648 int unset)
3e230fa1
RS
649{
650 struct grep_opt *grep_opt = opt->value;
651 append_grep_pattern(grep_opt, arg, "-e option", 0, GREP_PATTERN);
652 return 0;
653}
5010cb5f 654
ff3c7f9a 655static int help_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
656{
657 return -1;
658}
088b084b 659
a633fca0 660int cmd_grep(int argc, const char **argv, const char *prefix)
5010cb5f 661{
5010cb5f 662 int hit = 0;
5010cb5f 663 int cached = 0;
1b5fb44a 664 int external_grep_allowed = 1;
5acd64ed 665 int seen_dashdash = 0;
5010cb5f 666 struct grep_opt opt;
1f1e895f 667 struct object_array list = { 0, 0, NULL };
1362671f 668 const char **paths = NULL;
5acd64ed 669 int i;
3e230fa1
RS
670 int dummy;
671 struct option options[] = {
672 OPT_BOOLEAN(0, "cached", &cached,
673 "search in index instead of in the work tree"),
674 OPT_GROUP(""),
675 OPT_BOOLEAN('v', "invert-match", &opt.invert,
676 "show non-matching lines"),
677 OPT_BIT('i', "ignore-case", &opt.regflags,
678 "case insensitive matching", REG_ICASE),
679 OPT_BOOLEAN('w', "word-regexp", &opt.word_regexp,
680 "match patterns only at word boundaries"),
681 OPT_SET_INT('a', "text", &opt.binary,
682 "process binary files as text", GREP_BINARY_TEXT),
683 OPT_SET_INT('I', NULL, &opt.binary,
684 "don't match patterns in binary files",
685 GREP_BINARY_NOMATCH),
686 OPT_GROUP(""),
687 OPT_BIT('E', "extended-regexp", &opt.regflags,
688 "use extended POSIX regular expressions", REG_EXTENDED),
689 OPT_NEGBIT('G', "basic-regexp", &opt.regflags,
690 "use basic POSIX regular expressions (default)",
691 REG_EXTENDED),
692 OPT_BOOLEAN('F', "fixed-strings", &opt.fixed,
693 "interpret patterns as fixed strings"),
694 OPT_GROUP(""),
695 OPT_BOOLEAN('n', NULL, &opt.linenum, "show line numbers"),
696 OPT_NEGBIT('h', NULL, &opt.pathname, "don't show filenames", 1),
697 OPT_BIT('H', NULL, &opt.pathname, "show filenames", 1),
698 OPT_NEGBIT(0, "full-name", &opt.relative,
699 "show filenames relative to top directory", 1),
700 OPT_BOOLEAN('l', "files-with-matches", &opt.name_only,
701 "show only filenames instead of matching lines"),
702 OPT_BOOLEAN(0, "name-only", &opt.name_only,
703 "synonym for --files-with-matches"),
704 OPT_BOOLEAN('L', "files-without-match",
705 &opt.unmatch_name_only,
706 "show only the names of files without match"),
707 OPT_BOOLEAN('z', "null", &opt.null_following_name,
708 "print NUL after filenames"),
709 OPT_BOOLEAN('c', "count", &opt.count,
710 "show the number of matches instead of matching lines"),
711 OPT_SET_INT(0, "color", &opt.color, "highlight matches", 1),
712 OPT_GROUP(""),
713 OPT_CALLBACK('C', NULL, &opt, "n",
714 "show <n> context lines before and after matches",
715 context_callback),
716 OPT_INTEGER('B', NULL, &opt.pre_context,
717 "show <n> context lines before matches"),
718 OPT_INTEGER('A', NULL, &opt.post_context,
719 "show <n> context lines after matches"),
720 OPT_NUMBER_CALLBACK(&opt, "shortcut for -C NUM",
721 context_callback),
2944e4e6
RS
722 OPT_BOOLEAN('p', "show-function", &opt.funcname,
723 "show a line with the function name before matches"),
3e230fa1
RS
724 OPT_GROUP(""),
725 OPT_CALLBACK('f', NULL, &opt, "file",
726 "read patterns from file", file_callback),
727 { OPTION_CALLBACK, 'e', NULL, &opt, "pattern",
728 "match <pattern>", PARSE_OPT_NONEG, pattern_callback },
729 { OPTION_CALLBACK, 0, "and", &opt, NULL,
730 "combine patterns specified with -e",
731 PARSE_OPT_NOARG | PARSE_OPT_NONEG, and_callback },
732 OPT_BOOLEAN(0, "or", &dummy, ""),
733 { OPTION_CALLBACK, 0, "not", &opt, NULL, "",
734 PARSE_OPT_NOARG | PARSE_OPT_NONEG, not_callback },
735 { OPTION_CALLBACK, '(', NULL, &opt, NULL, "",
736 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
737 open_callback },
738 { OPTION_CALLBACK, ')', NULL, &opt, NULL, "",
739 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
740 close_callback },
741 OPT_BOOLEAN(0, "all-match", &opt.all_match,
742 "show only matches from files that match all patterns"),
743 OPT_GROUP(""),
744#if NO_EXTERNAL_GREP
745 OPT_BOOLEAN(0, "ext-grep", &external_grep_allowed,
746 "allow calling of grep(1) (ignored by this build)"),
747#else
748 OPT_BOOLEAN(0, "ext-grep", &external_grep_allowed,
749 "allow calling of grep(1) (default)"),
750#endif
751 { OPTION_CALLBACK, 0, "help-all", &options, NULL, "show usage",
752 PARSE_OPT_HIDDEN | PARSE_OPT_NOARG, help_callback },
753 OPT_END()
754 };
5010cb5f
JH
755
756 memset(&opt, 0, sizeof(opt));
493b7a08 757 opt.prefix = prefix;
0d042fec
JH
758 opt.prefix_length = (prefix && *prefix) ? strlen(prefix) : 0;
759 opt.relative = 1;
7977f0ea 760 opt.pathname = 1;
f9b9faf6 761 opt.pattern_tail = &opt.pattern_list;
5010cb5f
JH
762 opt.regflags = REG_NEWLINE;
763
7e8f59d5
RS
764 strcpy(opt.color_match, GIT_COLOR_RED GIT_COLOR_BOLD);
765 opt.color = -1;
766 git_config(grep_config, &opt);
767 if (opt.color == -1)
768 opt.color = git_use_color_default;
769
5010cb5f 770 /*
5acd64ed
JH
771 * If there is no -- then the paths must exist in the working
772 * tree. If there is no explicit pattern specified with -e or
773 * -f, we take the first unrecognized non option to be the
774 * pattern, but then what follows it must be zero or more
775 * valid refs up to the -- (if exists), and then existing
776 * paths. If there is an explicit pattern, then the first
82e5a82f 777 * unrecognized non option is the beginning of the refs list
5acd64ed 778 * that continues up to the -- (if exists), and then paths.
5010cb5f 779 */
37782920 780 argc = parse_options(argc, argv, prefix, options, grep_usage,
3e230fa1
RS
781 PARSE_OPT_KEEP_DASHDASH |
782 PARSE_OPT_STOP_AT_NON_OPTION |
783 PARSE_OPT_NO_INTERNAL_HELP);
784
785 /* First unrecognized non-option token */
786 if (argc > 0 && !opt.pattern_list) {
787 append_grep_pattern(&opt, argv[0], "command line", 0,
788 GREP_PATTERN);
789 argv++;
790 argc--;
5010cb5f 791 }
5acd64ed 792
2944e4e6 793 if ((opt.color && !opt.color_external) || opt.funcname)
1b5fb44a 794 external_grep_allowed = 0;
f9b9faf6 795 if (!opt.pattern_list)
5010cb5f 796 die("no pattern given.");
07ea91d8
JH
797 if ((opt.regflags != REG_NEWLINE) && opt.fixed)
798 die("cannot mix --fixed-strings and regexp");
83b5d2f5 799 compile_grep_patterns(&opt);
5acd64ed
JH
800
801 /* Check revs and then paths */
3e230fa1 802 for (i = 0; i < argc; i++) {
5acd64ed 803 const char *arg = argv[i];
1362671f 804 unsigned char sha1[20];
5acd64ed
JH
805 /* Is it a rev? */
806 if (!get_sha1(arg, sha1)) {
807 struct object *object = parse_object(sha1);
5acd64ed
JH
808 if (!object)
809 die("bad object %s", arg);
1f1e895f 810 add_object_array(object, arg, &list);
5acd64ed
JH
811 continue;
812 }
813 if (!strcmp(arg, "--")) {
814 i++;
815 seen_dashdash = 1;
816 }
817 break;
1362671f 818 }
5acd64ed
JH
819
820 /* The rest are paths */
821 if (!seen_dashdash) {
822 int j;
c39c4f47 823 for (j = i; j < argc; j++)
5acd64ed
JH
824 verify_filename(prefix, argv[j]);
825 }
826
493b7a08 827 if (i < argc)
5acd64ed 828 paths = get_pathspec(prefix, argv + i);
1362671f
JH
829 else if (prefix) {
830 paths = xcalloc(2, sizeof(const char *));
831 paths[0] = prefix;
832 paths[1] = NULL;
833 }
5010cb5f 834
6577f542
NTND
835 if (!list.nr) {
836 if (!cached)
837 setup_work_tree();
1b5fb44a 838 return !grep_cache(&opt, paths, cached, external_grep_allowed);
6577f542 839 }
aa8c79ad 840
5010cb5f 841 if (cached)
aa8c79ad 842 die("both --cached and trees are given.");
5010cb5f 843
1f1e895f 844 for (i = 0; i < list.nr; i++) {
5010cb5f 845 struct object *real_obj;
1f1e895f
LT
846 real_obj = deref_tag(list.objects[i].item, NULL, 0);
847 if (grep_object(&opt, paths, real_obj, list.objects[i].name))
5010cb5f
JH
848 hit = 1;
849 }
b48fb5b6 850 free_grep_patterns(&opt);
5010cb5f
JH
851 return !hit;
852}