]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/grep.c
git grep: be careful to use mutexes only when they are initialized
[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"
678e484b
JS
14#include "string-list.h"
15#include "run-command.h"
60ecac98 16#include "userdiff.h"
83b5d2f5 17#include "grep.h"
493b7a08 18#include "quote.h"
59332d13 19#include "dir.h"
93749194 20#include "thread-utils.h"
5b594f45 21
3e230fa1 22static char const * const grep_usage[] = {
62b4698e 23 "git grep [options] [-e] <pattern> [<rev>...] [[--] <path>...]",
3e230fa1
RS
24 NULL
25};
26
5b594f45
FK
27static int use_threads = 1;
28
29#ifndef NO_PTHREADS
30#define THREADS 8
31static pthread_t threads[THREADS];
32
33static void *load_sha1(const unsigned char *sha1, unsigned long *size,
34 const char *name);
35static void *load_file(const char *filename, size_t *sz);
36
37enum work_type {WORK_SHA1, WORK_FILE};
38
39/* We use one producer thread and THREADS consumer
40 * threads. The producer adds struct work_items to 'todo' and the
41 * consumers pick work items from the same array.
42 */
9cba13ca 43struct work_item {
5b594f45
FK
44 enum work_type type;
45 char *name;
46
47 /* if type == WORK_SHA1, then 'identifier' is a SHA1,
48 * otherwise type == WORK_FILE, and 'identifier' is a NUL
49 * terminated filename.
50 */
51 void *identifier;
52 char done;
53 struct strbuf out;
54};
55
56/* In the range [todo_done, todo_start) in 'todo' we have work_items
57 * that have been or are processed by a consumer thread. We haven't
58 * written the result for these to stdout yet.
59 *
60 * The work_items in [todo_start, todo_end) are waiting to be picked
61 * up by a consumer thread.
62 *
63 * The ranges are modulo TODO_SIZE.
64 */
65#define TODO_SIZE 128
66static struct work_item todo[TODO_SIZE];
67static int todo_start;
68static int todo_end;
69static int todo_done;
70
71/* Has all work items been added? */
72static int all_work_added;
73
74/* This lock protects all the variables above. */
75static pthread_mutex_t grep_mutex;
76
77/* Used to serialize calls to read_sha1_file. */
78static pthread_mutex_t read_sha1_mutex;
79
cdf05537
JS
80#define WHEN_THREADED(x) do { if (use_threads) (x); } while (0)
81#define grep_lock() WHEN_THREADED(pthread_mutex_lock(&grep_mutex))
82#define grep_unlock() WHEN_THREADED(pthread_mutex_unlock(&grep_mutex))
83#define read_sha1_lock() WHEN_THREADED(pthread_mutex_lock(&read_sha1_mutex))
84#define read_sha1_unlock() WHEN_THREADED(pthread_mutex_unlock(&read_sha1_mutex))
5b594f45
FK
85
86/* Signalled when a new work_item is added to todo. */
87static pthread_cond_t cond_add;
88
89/* Signalled when the result from one work_item is written to
90 * stdout.
91 */
92static pthread_cond_t cond_write;
93
94/* Signalled when we are finished with everything. */
95static pthread_cond_t cond_result;
96
08303c36 97static int skip_first_line;
431d6e7b 98
5b594f45
FK
99static void add_work(enum work_type type, char *name, void *id)
100{
101 grep_lock();
102
103 while ((todo_end+1) % ARRAY_SIZE(todo) == todo_done) {
104 pthread_cond_wait(&cond_write, &grep_mutex);
105 }
106
107 todo[todo_end].type = type;
108 todo[todo_end].name = name;
109 todo[todo_end].identifier = id;
110 todo[todo_end].done = 0;
111 strbuf_reset(&todo[todo_end].out);
112 todo_end = (todo_end + 1) % ARRAY_SIZE(todo);
113
114 pthread_cond_signal(&cond_add);
115 grep_unlock();
116}
117
118static struct work_item *get_work(void)
119{
120 struct work_item *ret;
121
122 grep_lock();
123 while (todo_start == todo_end && !all_work_added) {
124 pthread_cond_wait(&cond_add, &grep_mutex);
125 }
126
127 if (todo_start == todo_end && all_work_added) {
128 ret = NULL;
129 } else {
130 ret = &todo[todo_start];
131 todo_start = (todo_start + 1) % ARRAY_SIZE(todo);
132 }
133 grep_unlock();
134 return ret;
135}
136
137static void grep_sha1_async(struct grep_opt *opt, char *name,
138 const unsigned char *sha1)
139{
140 unsigned char *s;
141 s = xmalloc(20);
142 memcpy(s, sha1, 20);
143 add_work(WORK_SHA1, name, s);
144}
145
146static void grep_file_async(struct grep_opt *opt, char *name,
147 const char *filename)
148{
149 add_work(WORK_FILE, name, xstrdup(filename));
150}
151
152static void work_done(struct work_item *w)
153{
154 int old_done;
155
156 grep_lock();
157 w->done = 1;
158 old_done = todo_done;
159 for(; todo[todo_done].done && todo_done != todo_start;
160 todo_done = (todo_done+1) % ARRAY_SIZE(todo)) {
161 w = &todo[todo_done];
431d6e7b 162 if (w->out.len) {
08303c36
RS
163 const char *p = w->out.buf;
164 size_t len = w->out.len;
165
166 /* Skip the leading hunk mark of the first file. */
167 if (skip_first_line) {
168 while (len) {
169 len--;
170 if (*p++ == '\n')
171 break;
172 }
173 skip_first_line = 0;
174 }
175
176 write_or_die(1, p, len);
431d6e7b 177 }
5b594f45
FK
178 free(w->name);
179 free(w->identifier);
180 }
181
182 if (old_done != todo_done)
183 pthread_cond_signal(&cond_write);
184
185 if (all_work_added && todo_done == todo_end)
186 pthread_cond_signal(&cond_result);
187
188 grep_unlock();
189}
190
191static void *run(void *arg)
192{
193 int hit = 0;
194 struct grep_opt *opt = arg;
195
196 while (1) {
197 struct work_item *w = get_work();
198 if (!w)
199 break;
200
201 opt->output_priv = w;
202 if (w->type == WORK_SHA1) {
203 unsigned long sz;
204 void* data = load_sha1(w->identifier, &sz, w->name);
205
206 if (data) {
207 hit |= grep_buffer(opt, w->name, data, sz);
208 free(data);
209 }
210 } else if (w->type == WORK_FILE) {
211 size_t sz;
212 void* data = load_file(w->identifier, &sz);
213 if (data) {
214 hit |= grep_buffer(opt, w->name, data, sz);
215 free(data);
216 }
217 } else {
218 assert(0);
219 }
220
221 work_done(w);
222 }
bfac23d9
DM
223 free_grep_patterns(arg);
224 free(arg);
5b594f45
FK
225
226 return (void*) (intptr_t) hit;
227}
228
229static void strbuf_out(struct grep_opt *opt, const void *buf, size_t size)
230{
231 struct work_item *w = opt->output_priv;
232 strbuf_add(&w->out, buf, size);
233}
234
235static void start_threads(struct grep_opt *opt)
236{
237 int i;
238
239 pthread_mutex_init(&grep_mutex, NULL);
240 pthread_mutex_init(&read_sha1_mutex, NULL);
241 pthread_cond_init(&cond_add, NULL);
242 pthread_cond_init(&cond_write, NULL);
243 pthread_cond_init(&cond_result, NULL);
244
245 for (i = 0; i < ARRAY_SIZE(todo); i++) {
246 strbuf_init(&todo[i].out, 0);
247 }
248
249 for (i = 0; i < ARRAY_SIZE(threads); i++) {
250 int err;
251 struct grep_opt *o = grep_opt_dup(opt);
252 o->output = strbuf_out;
253 compile_grep_patterns(o);
254 err = pthread_create(&threads[i], NULL, run, o);
255
256 if (err)
2fc5f9f1 257 die(_("grep: failed to create thread: %s"),
5b594f45
FK
258 strerror(err));
259 }
260}
261
262static int wait_all(void)
263{
264 int hit = 0;
265 int i;
266
267 grep_lock();
268 all_work_added = 1;
269
270 /* Wait until all work is done. */
271 while (todo_done != todo_end)
272 pthread_cond_wait(&cond_result, &grep_mutex);
273
274 /* Wake up all the consumer threads so they can see that there
275 * is no more work to do.
276 */
277 pthread_cond_broadcast(&cond_add);
278 grep_unlock();
279
280 for (i = 0; i < ARRAY_SIZE(threads); i++) {
281 void *h;
282 pthread_join(threads[i], &h);
283 hit |= (int) (intptr_t) h;
284 }
285
286 pthread_mutex_destroy(&grep_mutex);
287 pthread_mutex_destroy(&read_sha1_mutex);
288 pthread_cond_destroy(&cond_add);
289 pthread_cond_destroy(&cond_write);
290 pthread_cond_destroy(&cond_result);
291
292 return hit;
293}
294#else /* !NO_PTHREADS */
295#define read_sha1_lock()
296#define read_sha1_unlock()
297
298static int wait_all(void)
299{
300 return 0;
301}
302#endif
303
7e8f59d5
RS
304static int grep_config(const char *var, const char *value, void *cb)
305{
306 struct grep_opt *opt = cb;
55f638bd 307 char *color = NULL;
7e8f59d5 308
60ecac98
RS
309 switch (userdiff_config(var, value)) {
310 case 0: break;
311 case -1: return -1;
312 default: return 0;
313 }
314
b22520a3
JR
315 if (!strcmp(var, "grep.extendedregexp")) {
316 if (git_config_bool(var, value))
317 opt->regflags |= REG_EXTENDED;
318 else
319 opt->regflags &= ~REG_EXTENDED;
320 return 0;
321 }
322
323 if (!strcmp(var, "grep.linenumber")) {
324 opt->linenum = git_config_bool(var, value);
325 return 0;
326 }
327
55f638bd 328 if (!strcmp(var, "color.grep"))
e269eb79 329 opt->color = git_config_colorbool(var, value);
00588bb5
ML
330 else if (!strcmp(var, "color.grep.context"))
331 color = opt->color_context;
55f638bd
ML
332 else if (!strcmp(var, "color.grep.filename"))
333 color = opt->color_filename;
00588bb5
ML
334 else if (!strcmp(var, "color.grep.function"))
335 color = opt->color_function;
55f638bd
ML
336 else if (!strcmp(var, "color.grep.linenumber"))
337 color = opt->color_lineno;
338 else if (!strcmp(var, "color.grep.match"))
339 color = opt->color_match;
00588bb5
ML
340 else if (!strcmp(var, "color.grep.selected"))
341 color = opt->color_selected;
55f638bd
ML
342 else if (!strcmp(var, "color.grep.separator"))
343 color = opt->color_sep;
344 else
345 return git_color_default_config(var, value, cb);
346 if (color) {
7e8f59d5
RS
347 if (!value)
348 return config_error_nonbool(var);
55f638bd 349 color_parse(value, var, color);
7e8f59d5 350 }
55f638bd 351 return 0;
7e8f59d5
RS
352}
353
5f02d315
JH
354static void *lock_and_read_sha1_file(const unsigned char *sha1, enum object_type *type, unsigned long *size)
355{
356 void *data;
357
358 if (use_threads) {
359 read_sha1_lock();
360 data = read_sha1_file(sha1, type, size);
361 read_sha1_unlock();
362 } else {
363 data = read_sha1_file(sha1, type, size);
364 }
365 return data;
366}
367
5b594f45
FK
368static void *load_sha1(const unsigned char *sha1, unsigned long *size,
369 const char *name)
5010cb5f 370{
21666f1a 371 enum object_type type;
5f02d315 372 void *data = lock_and_read_sha1_file(sha1, &type, size);
5b594f45
FK
373
374 if (!data)
2fc5f9f1 375 error(_("'%s': unable to read %s"), name, sha1_to_hex(sha1));
5b594f45
FK
376
377 return data;
378}
379
380static int grep_sha1(struct grep_opt *opt, const unsigned char *sha1,
381 const char *filename, int tree_name_len)
382{
383 struct strbuf pathbuf = STRBUF_INIT;
384 char *name;
385
0d042fec 386 if (opt->relative && opt->prefix_length) {
5b594f45
FK
387 quote_path_relative(filename + tree_name_len, -1, &pathbuf,
388 opt->prefix);
389 strbuf_insert(&pathbuf, 0, filename, tree_name_len);
390 } else {
391 strbuf_addstr(&pathbuf, filename);
392 }
393
394 name = strbuf_detach(&pathbuf, NULL);
395
396#ifndef NO_PTHREADS
397 if (use_threads) {
398 grep_sha1_async(opt, name, sha1);
399 return 0;
400 } else
401#endif
402 {
403 int hit;
404 unsigned long sz;
405 void *data = load_sha1(sha1, &sz, name);
406 if (!data)
407 hit = 0;
408 else
409 hit = grep_buffer(opt, name, data, sz);
410
411 free(data);
412 free(name);
413 return hit;
0d042fec 414 }
5010cb5f
JH
415}
416
5b594f45 417static void *load_file(const char *filename, size_t *sz)
5010cb5f
JH
418{
419 struct stat st;
5010cb5f 420 char *data;
5b594f45 421 int i;
dc49cd76 422
5010cb5f
JH
423 if (lstat(filename, &st) < 0) {
424 err_ret:
425 if (errno != ENOENT)
2fc5f9f1 426 error(_("'%s': %s"), filename, strerror(errno));
1e4cd68c 427 return NULL;
5010cb5f 428 }
5010cb5f 429 if (!S_ISREG(st.st_mode))
1e4cd68c 430 return NULL;
5b594f45 431 *sz = xsize_t(st.st_size);
5010cb5f
JH
432 i = open(filename, O_RDONLY);
433 if (i < 0)
434 goto err_ret;
5b594f45
FK
435 data = xmalloc(*sz + 1);
436 if (st.st_size != read_in_full(i, data, *sz)) {
2fc5f9f1 437 error(_("'%s': short read %s"), filename, strerror(errno));
5010cb5f
JH
438 close(i);
439 free(data);
1e4cd68c 440 return NULL;
5010cb5f
JH
441 }
442 close(i);
5b594f45
FK
443 data[*sz] = 0;
444 return data;
445}
446
447static int grep_file(struct grep_opt *opt, const char *filename)
448{
449 struct strbuf buf = STRBUF_INIT;
450 char *name;
451
0d042fec 452 if (opt->relative && opt->prefix_length)
5b594f45
FK
453 quote_path_relative(filename, -1, &buf, opt->prefix);
454 else
455 strbuf_addstr(&buf, filename);
456 name = strbuf_detach(&buf, NULL);
457
458#ifndef NO_PTHREADS
459 if (use_threads) {
460 grep_file_async(opt, name, filename);
461 return 0;
462 } else
463#endif
464 {
465 int hit;
466 size_t sz;
467 void *data = load_file(filename, &sz);
468 if (!data)
469 hit = 0;
470 else
471 hit = grep_buffer(opt, name, data, sz);
472
473 free(data);
474 free(name);
475 return hit;
476 }
5010cb5f
JH
477}
478
678e484b
JS
479static void append_path(struct grep_opt *opt, const void *data, size_t len)
480{
481 struct string_list *path_list = opt->output_priv;
482
483 if (len == 1 && *(const char *)data == '\0')
484 return;
0c72cead 485 string_list_append(path_list, xstrndup(data, len));
678e484b
JS
486}
487
488static void run_pager(struct grep_opt *opt, const char *prefix)
489{
490 struct string_list *path_list = opt->output_priv;
491 const char **argv = xmalloc(sizeof(const char *) * (path_list->nr + 1));
492 int i, status;
493
494 for (i = 0; i < path_list->nr; i++)
495 argv[i] = path_list->items[i].string;
496 argv[path_list->nr] = NULL;
497
498 if (prefix && chdir(prefix))
2fc5f9f1 499 die(_("Failed to chdir: %s"), prefix);
678e484b
JS
500 status = run_command_v_opt(argv, RUN_USING_SHELL);
501 if (status)
502 exit(status);
503 free(argv);
504}
505
f34bbc15 506static int grep_cache(struct grep_opt *opt, const struct pathspec *pathspec, int cached)
5010cb5f
JH
507{
508 int hit = 0;
509 int nr;
510 read_cache();
511
512 for (nr = 0; nr < active_nr; nr++) {
513 struct cache_entry *ce = active_cache[nr];
7a51ed66 514 if (!S_ISREG(ce->ce_mode))
5010cb5f 515 continue;
2ed2437a 516 if (!match_pathspec_depth(pathspec, ce->name, ce_namelen(ce), 0, NULL))
5010cb5f 517 continue;
57d43466
NTND
518 /*
519 * If CE_VALID is on, we assume worktree file and its cache entry
520 * are identical, even if worktree file has been modified, so use
521 * cache version instead
522 */
b4d1690d 523 if (cached || (ce->ce_flags & CE_VALID) || ce_skip_worktree(ce)) {
36f2587f
JH
524 if (ce_stage(ce))
525 continue;
0d042fec 526 hit |= grep_sha1(opt, ce->sha1, ce->name, 0);
36f2587f 527 }
5010cb5f
JH
528 else
529 hit |= grep_file(opt, ce->name);
36f2587f
JH
530 if (ce_stage(ce)) {
531 do {
532 nr++;
533 } while (nr < active_nr &&
534 !strcmp(ce->name, active_cache[nr]->name));
535 nr--; /* compensate for loop control */
536 }
c8610a2e
JH
537 if (hit && opt->status_only)
538 break;
5010cb5f
JH
539 }
540 return hit;
541}
542
f34bbc15 543static int grep_tree(struct grep_opt *opt, const struct pathspec *pathspec,
e5e062b6 544 struct tree_desc *tree, struct strbuf *base, int tn_len)
5010cb5f 545{
97d0b74a 546 int hit = 0, match = 0;
4c068a98 547 struct name_entry entry;
e5e062b6 548 int old_baselen = base->len;
5010cb5f 549
4c068a98 550 while (tree_entry(tree, &entry)) {
620e2bb9 551 int te_len = tree_entry_len(entry.path, entry.sha1);
e5e062b6 552
97d0b74a
NTND
553 if (match != 2) {
554 match = tree_entry_interesting(&entry, base, tn_len, pathspec);
555 if (match < 0)
556 break;
557 if (match == 0)
1376e507
NTND
558 continue;
559 }
5010cb5f 560
1376e507 561 strbuf_add(base, entry.path, te_len);
e0eb889f 562
1376e507 563 if (S_ISREG(entry.mode)) {
e5e062b6
NTND
564 hit |= grep_sha1(opt, entry.sha1, base->buf, tn_len);
565 }
4c068a98 566 else if (S_ISDIR(entry.mode)) {
21666f1a 567 enum object_type type;
5010cb5f
JH
568 struct tree_desc sub;
569 void *data;
6fda5e51
LT
570 unsigned long size;
571
5f02d315 572 data = lock_and_read_sha1_file(entry.sha1, &type, &size);
5010cb5f 573 if (!data)
2fc5f9f1 574 die(_("unable to read tree (%s)"),
4c068a98 575 sha1_to_hex(entry.sha1));
1376e507
NTND
576
577 strbuf_addch(base, '/');
6fda5e51 578 init_tree_desc(&sub, data, size);
e5e062b6 579 hit |= grep_tree(opt, pathspec, &sub, base, tn_len);
5010cb5f
JH
580 free(data);
581 }
e5e062b6
NTND
582 strbuf_setlen(base, old_baselen);
583
c8610a2e
JH
584 if (hit && opt->status_only)
585 break;
5010cb5f
JH
586 }
587 return hit;
588}
589
f34bbc15 590static int grep_object(struct grep_opt *opt, const struct pathspec *pathspec,
5010cb5f
JH
591 struct object *obj, const char *name)
592{
1974632c 593 if (obj->type == OBJ_BLOB)
0d042fec 594 return grep_sha1(opt, obj->sha1, name, 0);
1974632c 595 if (obj->type == OBJ_COMMIT || obj->type == OBJ_TREE) {
5010cb5f
JH
596 struct tree_desc tree;
597 void *data;
6fda5e51 598 unsigned long size;
e5e062b6
NTND
599 struct strbuf base;
600 int hit, len;
601
8cb5775b 602 read_sha1_lock();
5010cb5f 603 data = read_object_with_reference(obj->sha1, tree_type,
6fda5e51 604 &size, NULL);
8cb5775b
NMC
605 read_sha1_unlock();
606
5010cb5f 607 if (!data)
2fc5f9f1 608 die(_("unable to read tree (%s)"), sha1_to_hex(obj->sha1));
e5e062b6
NTND
609
610 len = name ? strlen(name) : 0;
611 strbuf_init(&base, PATH_MAX + len + 1);
612 if (len) {
613 strbuf_add(&base, name, len);
614 strbuf_addch(&base, ':');
615 }
6fda5e51 616 init_tree_desc(&tree, data, size);
e5e062b6
NTND
617 hit = grep_tree(opt, pathspec, &tree, &base, base.len);
618 strbuf_release(&base);
5010cb5f
JH
619 free(data);
620 return hit;
621 }
2fc5f9f1 622 die(_("unable to grep from object of type %s"), typename(obj->type));
5010cb5f
JH
623}
624
f34bbc15 625static int grep_objects(struct grep_opt *opt, const struct pathspec *pathspec,
30d00c39
JN
626 const struct object_array *list)
627{
628 unsigned int i;
629 int hit = 0;
630 const unsigned int nr = list->nr;
631
632 for (i = 0; i < nr; i++) {
633 struct object *real_obj;
634 real_obj = deref_tag(list->objects[i].item, NULL, 0);
f34bbc15 635 if (grep_object(opt, pathspec, real_obj, list->objects[i].name)) {
30d00c39
JN
636 hit = 1;
637 if (opt->status_only)
638 break;
639 }
640 }
641 return hit;
642}
643
dbfae86a
JH
644static int grep_directory(struct grep_opt *opt, const struct pathspec *pathspec,
645 int exc_std)
59332d13
JH
646{
647 struct dir_struct dir;
648 int i, hit = 0;
649
650 memset(&dir, 0, sizeof(dir));
0a93fb8a
JH
651 if (exc_std)
652 setup_standard_excludes(&dir);
59332d13 653
f34bbc15 654 fill_directory(&dir, pathspec->raw);
59332d13 655 for (i = 0; i < dir.nr; i++) {
9d8b831b
JH
656 const char *name = dir.entries[i]->name;
657 int namelen = strlen(name);
658 if (!match_pathspec_depth(pathspec, name, namelen, 0, NULL))
659 continue;
59332d13
JH
660 hit |= grep_file(opt, dir.entries[i]->name);
661 if (hit && opt->status_only)
662 break;
663 }
59332d13
JH
664 return hit;
665}
666
ff3c7f9a
RS
667static int context_callback(const struct option *opt, const char *arg,
668 int unset)
3e230fa1
RS
669{
670 struct grep_opt *grep_opt = opt->value;
671 int value;
672 const char *endp;
673
674 if (unset) {
675 grep_opt->pre_context = grep_opt->post_context = 0;
676 return 0;
677 }
678 value = strtol(arg, (char **)&endp, 10);
679 if (*endp) {
2fc5f9f1 680 return error(_("switch `%c' expects a numerical value"),
3e230fa1
RS
681 opt->short_name);
682 }
683 grep_opt->pre_context = grep_opt->post_context = value;
684 return 0;
685}
686
ff3c7f9a 687static int file_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
688{
689 struct grep_opt *grep_opt = opt->value;
c41dd2fd 690 int from_stdin = !strcmp(arg, "-");
3e230fa1
RS
691 FILE *patterns;
692 int lno = 0;
cfe370c6 693 struct strbuf sb = STRBUF_INIT;
3e230fa1 694
c41dd2fd 695 patterns = from_stdin ? stdin : fopen(arg, "r");
3e230fa1 696 if (!patterns)
2fc5f9f1 697 die_errno(_("cannot open '%s'"), arg);
3e230fa1 698 while (strbuf_getline(&sb, patterns, '\n') == 0) {
ed40a095
RS
699 char *s;
700 size_t len;
701
3e230fa1
RS
702 /* ignore empty line like grep does */
703 if (sb.len == 0)
704 continue;
ed40a095
RS
705
706 s = strbuf_detach(&sb, &len);
707 append_grep_pat(grep_opt, s, len, arg, ++lno, GREP_PATTERN);
3e230fa1 708 }
c41dd2fd
RS
709 if (!from_stdin)
710 fclose(patterns);
3e230fa1
RS
711 strbuf_release(&sb);
712 return 0;
713}
714
ff3c7f9a 715static int not_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
716{
717 struct grep_opt *grep_opt = opt->value;
718 append_grep_pattern(grep_opt, "--not", "command line", 0, GREP_NOT);
719 return 0;
720}
721
ff3c7f9a 722static int and_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
723{
724 struct grep_opt *grep_opt = opt->value;
725 append_grep_pattern(grep_opt, "--and", "command line", 0, GREP_AND);
726 return 0;
727}
728
ff3c7f9a 729static int open_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
730{
731 struct grep_opt *grep_opt = opt->value;
732 append_grep_pattern(grep_opt, "(", "command line", 0, GREP_OPEN_PAREN);
733 return 0;
734}
735
ff3c7f9a 736static int close_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
737{
738 struct grep_opt *grep_opt = opt->value;
739 append_grep_pattern(grep_opt, ")", "command line", 0, GREP_CLOSE_PAREN);
740 return 0;
741}
742
ff3c7f9a
RS
743static int pattern_callback(const struct option *opt, const char *arg,
744 int unset)
3e230fa1
RS
745{
746 struct grep_opt *grep_opt = opt->value;
747 append_grep_pattern(grep_opt, arg, "-e option", 0, GREP_PATTERN);
748 return 0;
749}
5010cb5f 750
ff3c7f9a 751static int help_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
752{
753 return -1;
754}
088b084b 755
a633fca0 756int cmd_grep(int argc, const char **argv, const char *prefix)
5010cb5f 757{
5010cb5f 758 int hit = 0;
0a93fb8a 759 int cached = 0, untracked = 0, opt_exclude = -1;
5acd64ed 760 int seen_dashdash = 0;
bbc09c22 761 int external_grep_allowed__ignored;
0af88c15 762 const char *show_in_pager = NULL, *default_pager = "dummy";
5010cb5f 763 struct grep_opt opt;
3cd47459 764 struct object_array list = OBJECT_ARRAY_INIT;
1362671f 765 const char **paths = NULL;
f34bbc15 766 struct pathspec pathspec;
183113a5 767 struct string_list path_list = STRING_LIST_INIT_NODUP;
5acd64ed 768 int i;
3e230fa1 769 int dummy;
ff38d1a9 770 int use_index = 1;
cca2c172
JH
771 enum {
772 pattern_type_unspecified = 0,
773 pattern_type_bre,
774 pattern_type_ere,
775 pattern_type_fixed,
776 pattern_type_pcre,
777 };
778 int pattern_type = pattern_type_unspecified;
779
3e230fa1
RS
780 struct option options[] = {
781 OPT_BOOLEAN(0, "cached", &cached,
782 "search in index instead of in the work tree"),
ac1d33dd
BW
783 { OPTION_BOOLEAN, 0, "index", &use_index, NULL,
784 "finds in contents not managed by git",
785 PARSE_OPT_NOARG | PARSE_OPT_NEGHELP },
0a93fb8a
JH
786 OPT_BOOLEAN(0, "untracked", &untracked,
787 "search in both tracked and untracked files"),
788 OPT_SET_INT(0, "exclude-standard", &opt_exclude,
789 "search also in ignored files", 1),
3e230fa1
RS
790 OPT_GROUP(""),
791 OPT_BOOLEAN('v', "invert-match", &opt.invert,
792 "show non-matching lines"),
5183bf67
BC
793 OPT_BOOLEAN('i', "ignore-case", &opt.ignore_case,
794 "case insensitive matching"),
3e230fa1
RS
795 OPT_BOOLEAN('w', "word-regexp", &opt.word_regexp,
796 "match patterns only at word boundaries"),
797 OPT_SET_INT('a', "text", &opt.binary,
798 "process binary files as text", GREP_BINARY_TEXT),
799 OPT_SET_INT('I', NULL, &opt.binary,
800 "don't match patterns in binary files",
801 GREP_BINARY_NOMATCH),
a91f453f
MK
802 { OPTION_INTEGER, 0, "max-depth", &opt.max_depth, "depth",
803 "descend at most <depth> levels", PARSE_OPT_NONEG,
804 NULL, 1 },
3e230fa1 805 OPT_GROUP(""),
cca2c172
JH
806 OPT_SET_INT('E', "extended-regexp", &pattern_type,
807 "use extended POSIX regular expressions",
808 pattern_type_ere),
809 OPT_SET_INT('G', "basic-regexp", &pattern_type,
810 "use basic POSIX regular expressions (default)",
811 pattern_type_bre),
812 OPT_SET_INT('F', "fixed-strings", &pattern_type,
813 "interpret patterns as fixed strings",
814 pattern_type_fixed),
815 OPT_SET_INT('P', "perl-regexp", &pattern_type,
816 "use Perl-compatible regular expressions",
817 pattern_type_pcre),
3e230fa1 818 OPT_GROUP(""),
7d6cb10b 819 OPT_BOOLEAN('n', "line-number", &opt.linenum, "show line numbers"),
3e230fa1
RS
820 OPT_NEGBIT('h', NULL, &opt.pathname, "don't show filenames", 1),
821 OPT_BIT('H', NULL, &opt.pathname, "show filenames", 1),
822 OPT_NEGBIT(0, "full-name", &opt.relative,
823 "show filenames relative to top directory", 1),
824 OPT_BOOLEAN('l', "files-with-matches", &opt.name_only,
825 "show only filenames instead of matching lines"),
826 OPT_BOOLEAN(0, "name-only", &opt.name_only,
827 "synonym for --files-with-matches"),
828 OPT_BOOLEAN('L', "files-without-match",
829 &opt.unmatch_name_only,
830 "show only the names of files without match"),
831 OPT_BOOLEAN('z', "null", &opt.null_following_name,
832 "print NUL after filenames"),
833 OPT_BOOLEAN('c', "count", &opt.count,
834 "show the number of matches instead of matching lines"),
73e9da01 835 OPT__COLOR(&opt.color, "highlight matches"),
a8f0e764
RS
836 OPT_BOOLEAN(0, "break", &opt.file_break,
837 "print empty line between matches from different files"),
1d84f72e
RS
838 OPT_BOOLEAN(0, "heading", &opt.heading,
839 "show filename only once above matches from same file"),
3e230fa1 840 OPT_GROUP(""),
317f63c2 841 OPT_CALLBACK('C', "context", &opt, "n",
3e230fa1
RS
842 "show <n> context lines before and after matches",
843 context_callback),
317f63c2 844 OPT_INTEGER('B', "before-context", &opt.pre_context,
3e230fa1 845 "show <n> context lines before matches"),
317f63c2 846 OPT_INTEGER('A', "after-context", &opt.post_context,
3e230fa1
RS
847 "show <n> context lines after matches"),
848 OPT_NUMBER_CALLBACK(&opt, "shortcut for -C NUM",
849 context_callback),
2944e4e6
RS
850 OPT_BOOLEAN('p', "show-function", &opt.funcname,
851 "show a line with the function name before matches"),
317f63c2 852 OPT_BOOLEAN('W', "function-context", &opt.funcbody,
ba8ea749 853 "show the surrounding function"),
3e230fa1
RS
854 OPT_GROUP(""),
855 OPT_CALLBACK('f', NULL, &opt, "file",
856 "read patterns from file", file_callback),
857 { OPTION_CALLBACK, 'e', NULL, &opt, "pattern",
858 "match <pattern>", PARSE_OPT_NONEG, pattern_callback },
859 { OPTION_CALLBACK, 0, "and", &opt, NULL,
860 "combine patterns specified with -e",
861 PARSE_OPT_NOARG | PARSE_OPT_NONEG, and_callback },
862 OPT_BOOLEAN(0, "or", &dummy, ""),
863 { OPTION_CALLBACK, 0, "not", &opt, NULL, "",
864 PARSE_OPT_NOARG | PARSE_OPT_NONEG, not_callback },
865 { OPTION_CALLBACK, '(', NULL, &opt, NULL, "",
866 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
867 open_callback },
868 { OPTION_CALLBACK, ')', NULL, &opt, NULL, "",
869 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
870 close_callback },
d52ee6e6
RS
871 OPT__QUIET(&opt.status_only,
872 "indicate hit with exit status without output"),
3e230fa1
RS
873 OPT_BOOLEAN(0, "all-match", &opt.all_match,
874 "show only matches from files that match all patterns"),
875 OPT_GROUP(""),
0af88c15
JS
876 { OPTION_STRING, 'O', "open-files-in-pager", &show_in_pager,
877 "pager", "show matching files in the pager",
878 PARSE_OPT_OPTARG, NULL, (intptr_t)default_pager },
bbc09c22
JH
879 OPT_BOOLEAN(0, "ext-grep", &external_grep_allowed__ignored,
880 "allow calling of grep(1) (ignored by this build)"),
3e230fa1
RS
881 { OPTION_CALLBACK, 0, "help-all", &options, NULL, "show usage",
882 PARSE_OPT_HIDDEN | PARSE_OPT_NOARG, help_callback },
883 OPT_END()
884 };
5010cb5f 885
9c855c31
JN
886 /*
887 * 'git grep -h', unlike 'git grep -h <pattern>', is a request
888 * to show usage information and exit.
889 */
890 if (argc == 2 && !strcmp(argv[1], "-h"))
891 usage_with_options(grep_usage, options);
892
5010cb5f 893 memset(&opt, 0, sizeof(opt));
493b7a08 894 opt.prefix = prefix;
0d042fec
JH
895 opt.prefix_length = (prefix && *prefix) ? strlen(prefix) : 0;
896 opt.relative = 1;
7977f0ea 897 opt.pathname = 1;
f9b9faf6 898 opt.pattern_tail = &opt.pattern_list;
80235ba7 899 opt.header_tail = &opt.header_list;
5010cb5f 900 opt.regflags = REG_NEWLINE;
a91f453f 901 opt.max_depth = -1;
5010cb5f 902
00588bb5 903 strcpy(opt.color_context, "");
55f638bd 904 strcpy(opt.color_filename, "");
00588bb5 905 strcpy(opt.color_function, "");
55f638bd 906 strcpy(opt.color_lineno, "");
758df17a 907 strcpy(opt.color_match, GIT_COLOR_BOLD_RED);
00588bb5 908 strcpy(opt.color_selected, "");
55f638bd 909 strcpy(opt.color_sep, GIT_COLOR_CYAN);
7e8f59d5
RS
910 opt.color = -1;
911 git_config(grep_config, &opt);
7e8f59d5 912
5010cb5f 913 /*
5acd64ed
JH
914 * If there is no -- then the paths must exist in the working
915 * tree. If there is no explicit pattern specified with -e or
916 * -f, we take the first unrecognized non option to be the
917 * pattern, but then what follows it must be zero or more
918 * valid refs up to the -- (if exists), and then existing
919 * paths. If there is an explicit pattern, then the first
82e5a82f 920 * unrecognized non option is the beginning of the refs list
5acd64ed 921 * that continues up to the -- (if exists), and then paths.
5010cb5f 922 */
37782920 923 argc = parse_options(argc, argv, prefix, options, grep_usage,
3e230fa1
RS
924 PARSE_OPT_KEEP_DASHDASH |
925 PARSE_OPT_STOP_AT_NON_OPTION |
926 PARSE_OPT_NO_INTERNAL_HELP);
cca2c172
JH
927 switch (pattern_type) {
928 case pattern_type_fixed:
929 opt.fixed = 1;
930 opt.pcre = 0;
931 break;
932 case pattern_type_bre:
933 opt.fixed = 0;
934 opt.pcre = 0;
935 opt.regflags &= ~REG_EXTENDED;
936 break;
937 case pattern_type_ere:
938 opt.fixed = 0;
939 opt.pcre = 0;
940 opt.regflags |= REG_EXTENDED;
941 break;
942 case pattern_type_pcre:
943 opt.fixed = 0;
944 opt.pcre = 1;
945 break;
946 default:
947 break; /* nothing */
948 }
3e230fa1 949
ff38d1a9 950 if (use_index && !startup_info->have_repository)
59332d13
JH
951 /* die the same way as if we did it at the beginning */
952 setup_git_directory();
953
1123c67c
JK
954 /*
955 * skip a -- separator; we know it cannot be
956 * separating revisions from pathnames if
957 * we haven't even had any patterns yet
958 */
959 if (argc > 0 && !opt.pattern_list && !strcmp(argv[0], "--")) {
960 argv++;
961 argc--;
962 }
963
3e230fa1
RS
964 /* First unrecognized non-option token */
965 if (argc > 0 && !opt.pattern_list) {
966 append_grep_pattern(&opt, argv[0], "command line", 0,
967 GREP_PATTERN);
968 argv++;
969 argc--;
5010cb5f 970 }
5acd64ed 971
0af88c15
JS
972 if (show_in_pager == default_pager)
973 show_in_pager = git_pager(1);
678e484b 974 if (show_in_pager) {
e7b082a4 975 opt.color = 0;
0af88c15
JS
976 opt.name_only = 1;
977 opt.null_following_name = 1;
978 opt.output_priv = &path_list;
979 opt.output = append_path;
0c72cead 980 string_list_append(&path_list, show_in_pager);
0af88c15 981 use_threads = 0;
678e484b
JS
982 }
983
f9b9faf6 984 if (!opt.pattern_list)
2fc5f9f1 985 die(_("no pattern given."));
5183bf67
BC
986 if (!opt.fixed && opt.ignore_case)
987 opt.regflags |= REG_ICASE;
5b594f45
FK
988
989#ifndef NO_PTHREADS
990 if (online_cpus() == 1 || !grep_threads_ok(&opt))
991 use_threads = 0;
992
431d6e7b 993 if (use_threads) {
ba8ea749
RS
994 if (opt.pre_context || opt.post_context || opt.file_break ||
995 opt.funcbody)
08303c36 996 skip_first_line = 1;
5b594f45 997 start_threads(&opt);
431d6e7b 998 }
5b594f45
FK
999#else
1000 use_threads = 0;
1001#endif
1002
83b5d2f5 1003 compile_grep_patterns(&opt);
5acd64ed
JH
1004
1005 /* Check revs and then paths */
3e230fa1 1006 for (i = 0; i < argc; i++) {
5acd64ed 1007 const char *arg = argv[i];
1362671f 1008 unsigned char sha1[20];
5acd64ed
JH
1009 /* Is it a rev? */
1010 if (!get_sha1(arg, sha1)) {
1011 struct object *object = parse_object(sha1);
5acd64ed 1012 if (!object)
2fc5f9f1 1013 die(_("bad object %s"), arg);
1f1e895f 1014 add_object_array(object, arg, &list);
5acd64ed
JH
1015 continue;
1016 }
1017 if (!strcmp(arg, "--")) {
1018 i++;
1019 seen_dashdash = 1;
1020 }
1021 break;
1362671f 1022 }
5acd64ed
JH
1023
1024 /* The rest are paths */
1025 if (!seen_dashdash) {
1026 int j;
c39c4f47 1027 for (j = i; j < argc; j++)
5acd64ed
JH
1028 verify_filename(prefix, argv[j]);
1029 }
1030
7c5f3cc4 1031 paths = get_pathspec(prefix, argv + i);
f34bbc15 1032 init_pathspec(&pathspec, paths);
1376e507
NTND
1033 pathspec.max_depth = opt.max_depth;
1034 pathspec.recursive = 1;
5010cb5f 1035
678e484b 1036 if (show_in_pager && (cached || list.nr))
e4fe4ba5 1037 die(_("--open-files-in-pager only works on the worktree"));
678e484b
JS
1038
1039 if (show_in_pager && opt.pattern_list && !opt.pattern_list->next) {
1040 const char *pager = path_list.items[0].string;
1041 int len = strlen(pager);
1042
1043 if (len > 4 && is_dir_sep(pager[len - 5]))
1044 pager += len - 4;
1045
1046 if (!strcmp("less", pager) || !strcmp("vi", pager)) {
1047 struct strbuf buf = STRBUF_INIT;
1048 strbuf_addf(&buf, "+/%s%s",
1049 strcmp("less", pager) ? "" : "*",
1050 opt.pattern_list->pattern);
0c72cead 1051 string_list_append(&path_list, buf.buf);
678e484b
JS
1052 strbuf_detach(&buf, NULL);
1053 }
1054 }
1055
1056 if (!show_in_pager)
1057 setup_pager();
1058
0a93fb8a 1059 if (!use_index && (untracked || cached))
dbfae86a 1060 die(_("--cached or --untracked cannot be used with --no-index."));
678e484b 1061
0a93fb8a 1062 if (!use_index || untracked) {
0a93fb8a 1063 int use_exclude = (opt_exclude < 0) ? use_index : !!opt_exclude;
59332d13 1064 if (list.nr)
dbfae86a
JH
1065 die(_("--no-index or --untracked cannot be used with revs."));
1066 hit = grep_directory(&opt, &pathspec, use_exclude);
1067 } else if (0 <= opt_exclude) {
9fddaf78 1068 die(_("--[no-]exclude-standard cannot be used for tracked contents."));
685359cf 1069 } else if (!list.nr) {
6577f542
NTND
1070 if (!cached)
1071 setup_work_tree();
5b594f45 1072
f34bbc15 1073 hit = grep_cache(&opt, &pathspec, cached);
685359cf
JS
1074 } else {
1075 if (cached)
2fc5f9f1 1076 die(_("both --cached and trees are given."));
f34bbc15 1077 hit = grep_objects(&opt, &pathspec, &list);
5010cb5f 1078 }
5b594f45
FK
1079
1080 if (use_threads)
1081 hit |= wait_all();
678e484b
JS
1082 if (hit && show_in_pager)
1083 run_pager(&opt, prefix);
b48fb5b6 1084 free_grep_patterns(&opt);
5010cb5f
JH
1085 return !hit;
1086}