1 /*
2  * Builtin "git log" and related commands (show, whatchanged)
3  *
4  * (C) Copyright 2006 Linus Torvalds
5  *		 2006 Junio Hamano
6  */
7 #define USE_THE_INDEX_COMPATIBILITY_MACROS
8 #include "cache.h"
9 #include "config.h"
10 #include "refs.h"
11 #include "object-store.h"
12 #include "color.h"
13 #include "commit.h"
14 #include "diff.h"
15 #include "revision.h"
16 #include "log-tree.h"
17 #include "builtin.h"
18 #include "tag.h"
19 #include "reflog-walk.h"
20 #include "patch-ids.h"
21 #include "run-command.h"
22 #include "shortlog.h"
23 #include "remote.h"
24 #include "string-list.h"
25 #include "parse-options.h"
26 #include "line-log.h"
27 #include "branch.h"
28 #include "streaming.h"
29 #include "version.h"
30 #include "mailmap.h"
31 #include "gpg-interface.h"
32 #include "progress.h"
33 #include "commit-slab.h"
34 #include "repository.h"
35 #include "commit-reach.h"
36 #include "interdiff.h"
37 #include "range-diff.h"
38 
39 #define MAIL_DEFAULT_WRAP 72
40 #define COVER_FROM_AUTO_MAX_SUBJECT_LEN 100
41 
42 /* Set a default date-time format for git log ("log.date" config variable) */
43 static const char *default_date_mode = NULL;
44 
45 static int default_abbrev_commit;
46 static int default_show_root = 1;
47 static int default_follow;
48 static int default_show_signature;
49 static int decoration_style;
50 static int decoration_given;
51 static int use_mailmap_config = 1;
52 static const char *fmt_patch_subject_prefix = "PATCH";
53 static const char *fmt_pretty;
54 
55 static const char * const builtin_log_usage[] = {
56 	N_("git log [<options>] [<revision-range>] [[--] <path>...]"),
57 	N_("git show [<options>] <object>..."),
58 	NULL
59 };
60 
61 struct line_opt_callback_data {
62 	struct rev_info *rev;
63 	const char *prefix;
64 	struct string_list args;
65 };
66 
session_is_interactive(void)67 static int session_is_interactive(void)
68 {
69 	return isatty(1) || pager_in_use();
70 }
71 
auto_decoration_style(void)72 static int auto_decoration_style(void)
73 {
74 	return session_is_interactive() ? DECORATE_SHORT_REFS : 0;
75 }
76 
parse_decoration_style(const char * value)77 static int parse_decoration_style(const char *value)
78 {
79 	switch (git_parse_maybe_bool(value)) {
80 	case 1:
81 		return DECORATE_SHORT_REFS;
82 	case 0:
83 		return 0;
84 	default:
85 		break;
86 	}
87 	if (!strcmp(value, "full"))
88 		return DECORATE_FULL_REFS;
89 	else if (!strcmp(value, "short"))
90 		return DECORATE_SHORT_REFS;
91 	else if (!strcmp(value, "auto"))
92 		return auto_decoration_style();
93 	/*
94 	 * Please update _git_log() in git-completion.bash when you
95 	 * add new decoration styles.
96 	 */
97 	return -1;
98 }
99 
decorate_callback(const struct option * opt,const char * arg,int unset)100 static int decorate_callback(const struct option *opt, const char *arg, int unset)
101 {
102 	if (unset)
103 		decoration_style = 0;
104 	else if (arg)
105 		decoration_style = parse_decoration_style(arg);
106 	else
107 		decoration_style = DECORATE_SHORT_REFS;
108 
109 	if (decoration_style < 0)
110 		die(_("invalid --decorate option: %s"), arg);
111 
112 	decoration_given = 1;
113 
114 	return 0;
115 }
116 
log_line_range_callback(const struct option * option,const char * arg,int unset)117 static int log_line_range_callback(const struct option *option, const char *arg, int unset)
118 {
119 	struct line_opt_callback_data *data = option->value;
120 
121 	BUG_ON_OPT_NEG(unset);
122 
123 	if (!arg)
124 		return -1;
125 
126 	data->rev->line_level_traverse = 1;
127 	string_list_append(&data->args, arg);
128 
129 	return 0;
130 }
131 
init_log_defaults(void)132 static void init_log_defaults(void)
133 {
134 	init_grep_defaults(the_repository);
135 	init_diff_ui_defaults();
136 
137 	decoration_style = auto_decoration_style();
138 }
139 
cmd_log_init_defaults(struct rev_info * rev)140 static void cmd_log_init_defaults(struct rev_info *rev)
141 {
142 	if (fmt_pretty)
143 		get_commit_format(fmt_pretty, rev);
144 	if (default_follow)
145 		rev->diffopt.flags.default_follow_renames = 1;
146 	rev->verbose_header = 1;
147 	rev->diffopt.flags.recursive = 1;
148 	rev->diffopt.stat_width = -1; /* use full terminal width */
149 	rev->diffopt.stat_graph_width = -1; /* respect statGraphWidth config */
150 	rev->abbrev_commit = default_abbrev_commit;
151 	rev->show_root_diff = default_show_root;
152 	rev->subject_prefix = fmt_patch_subject_prefix;
153 	rev->show_signature = default_show_signature;
154 	rev->diffopt.flags.allow_textconv = 1;
155 
156 	if (default_date_mode)
157 		parse_date_format(default_date_mode, &rev->date_mode);
158 }
159 
cmd_log_init_finish(int argc,const char ** argv,const char * prefix,struct rev_info * rev,struct setup_revision_opt * opt)160 static void cmd_log_init_finish(int argc, const char **argv, const char *prefix,
161 			 struct rev_info *rev, struct setup_revision_opt *opt)
162 {
163 	struct userformat_want w;
164 	int quiet = 0, source = 0, mailmap;
165 	static struct line_opt_callback_data line_cb = {NULL, NULL, STRING_LIST_INIT_DUP};
166 	static struct string_list decorate_refs_exclude = STRING_LIST_INIT_NODUP;
167 	static struct string_list decorate_refs_include = STRING_LIST_INIT_NODUP;
168 	struct decoration_filter decoration_filter = {&decorate_refs_include,
169 						      &decorate_refs_exclude};
170 	static struct revision_sources revision_sources;
171 
172 	const struct option builtin_log_options[] = {
173 		OPT__QUIET(&quiet, N_("suppress diff output")),
174 		OPT_BOOL(0, "source", &source, N_("show source")),
175 		OPT_BOOL(0, "use-mailmap", &mailmap, N_("Use mail map file")),
176 		OPT_STRING_LIST(0, "decorate-refs", &decorate_refs_include,
177 				N_("pattern"), N_("only decorate refs that match <pattern>")),
178 		OPT_STRING_LIST(0, "decorate-refs-exclude", &decorate_refs_exclude,
179 				N_("pattern"), N_("do not decorate refs that match <pattern>")),
180 		{ OPTION_CALLBACK, 0, "decorate", NULL, NULL, N_("decorate options"),
181 		  PARSE_OPT_OPTARG, decorate_callback},
182 		OPT_CALLBACK('L', NULL, &line_cb, "n,m:file",
183 			     N_("Process line range n,m in file, counting from 1"),
184 			     log_line_range_callback),
185 		OPT_END()
186 	};
187 
188 	line_cb.rev = rev;
189 	line_cb.prefix = prefix;
190 
191 	mailmap = use_mailmap_config;
192 	argc = parse_options(argc, argv, prefix,
193 			     builtin_log_options, builtin_log_usage,
194 			     PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN |
195 			     PARSE_OPT_KEEP_DASHDASH);
196 
197 	if (quiet)
198 		rev->diffopt.output_format |= DIFF_FORMAT_NO_OUTPUT;
199 	argc = setup_revisions(argc, argv, rev, opt);
200 
201 	/* Any arguments at this point are not recognized */
202 	if (argc > 1)
203 		die(_("unrecognized argument: %s"), argv[1]);
204 
205 	memset(&w, 0, sizeof(w));
206 	userformat_find_requirements(NULL, &w);
207 
208 	if (!rev->show_notes_given && (!rev->pretty_given || w.notes))
209 		rev->show_notes = 1;
210 	if (rev->show_notes)
211 		load_display_notes(&rev->notes_opt);
212 
213 	if ((rev->diffopt.pickaxe_opts & DIFF_PICKAXE_KINDS_MASK) ||
214 	    rev->diffopt.filter || rev->diffopt.flags.follow_renames)
215 		rev->always_show_header = 0;
216 
217 	if (source || w.source) {
218 		init_revision_sources(&revision_sources);
219 		rev->sources = &revision_sources;
220 	}
221 
222 	if (mailmap) {
223 		rev->mailmap = xcalloc(1, sizeof(struct string_list));
224 		read_mailmap(rev->mailmap, NULL);
225 	}
226 
227 	if (rev->pretty_given && rev->commit_format == CMIT_FMT_RAW) {
228 		/*
229 		 * "log --pretty=raw" is special; ignore UI oriented
230 		 * configuration variables such as decoration.
231 		 */
232 		if (!decoration_given)
233 			decoration_style = 0;
234 		if (!rev->abbrev_commit_given)
235 			rev->abbrev_commit = 0;
236 	}
237 
238 	if (decoration_style) {
239 		rev->show_decorations = 1;
240 		load_ref_decorations(&decoration_filter, decoration_style);
241 	}
242 
243 	if (rev->line_level_traverse)
244 		line_log_init(rev, line_cb.prefix, &line_cb.args);
245 
246 	setup_pager();
247 }
248 
cmd_log_init(int argc,const char ** argv,const char * prefix,struct rev_info * rev,struct setup_revision_opt * opt)249 static void cmd_log_init(int argc, const char **argv, const char *prefix,
250 			 struct rev_info *rev, struct setup_revision_opt *opt)
251 {
252 	cmd_log_init_defaults(rev);
253 	cmd_log_init_finish(argc, argv, prefix, rev, opt);
254 }
255 
256 /*
257  * This gives a rough estimate for how many commits we
258  * will print out in the list.
259  */
estimate_commit_count(struct commit_list * list)260 static int estimate_commit_count(struct commit_list *list)
261 {
262 	int n = 0;
263 
264 	while (list) {
265 		struct commit *commit = list->item;
266 		unsigned int flags = commit->object.flags;
267 		list = list->next;
268 		if (!(flags & (TREESAME | UNINTERESTING)))
269 			n++;
270 	}
271 	return n;
272 }
273 
show_early_header(struct rev_info * rev,const char * stage,int nr)274 static void show_early_header(struct rev_info *rev, const char *stage, int nr)
275 {
276 	if (rev->shown_one) {
277 		rev->shown_one = 0;
278 		if (rev->commit_format != CMIT_FMT_ONELINE)
279 			putchar(rev->diffopt.line_termination);
280 	}
281 	fprintf(rev->diffopt.file, _("Final output: %d %s\n"), nr, stage);
282 }
283 
284 static struct itimerval early_output_timer;
285 
log_show_early(struct rev_info * revs,struct commit_list * list)286 static void log_show_early(struct rev_info *revs, struct commit_list *list)
287 {
288 	int i = revs->early_output, close_file = revs->diffopt.close_file;
289 	int show_header = 1;
290 
291 	revs->diffopt.close_file = 0;
292 	sort_in_topological_order(&list, revs->sort_order);
293 	while (list && i) {
294 		struct commit *commit = list->item;
295 		switch (simplify_commit(revs, commit)) {
296 		case commit_show:
297 			if (show_header) {
298 				int n = estimate_commit_count(list);
299 				show_early_header(revs, "incomplete", n);
300 				show_header = 0;
301 			}
302 			log_tree_commit(revs, commit);
303 			i--;
304 			break;
305 		case commit_ignore:
306 			break;
307 		case commit_error:
308 			if (close_file)
309 				fclose(revs->diffopt.file);
310 			return;
311 		}
312 		list = list->next;
313 	}
314 
315 	/* Did we already get enough commits for the early output? */
316 	if (!i) {
317 		if (close_file)
318 			fclose(revs->diffopt.file);
319 		return;
320 	}
321 
322 	/*
323 	 * ..if no, then repeat it twice a second until we
324 	 * do.
325 	 *
326 	 * NOTE! We don't use "it_interval", because if the
327 	 * reader isn't listening, we want our output to be
328 	 * throttled by the writing, and not have the timer
329 	 * trigger every second even if we're blocked on a
330 	 * reader!
331 	 */
332 	early_output_timer.it_value.tv_sec = 0;
333 	early_output_timer.it_value.tv_usec = 500000;
334 	setitimer(ITIMER_REAL, &early_output_timer, NULL);
335 }
336 
early_output(int signal)337 static void early_output(int signal)
338 {
339 	show_early_output = log_show_early;
340 }
341 
setup_early_output(void)342 static void setup_early_output(void)
343 {
344 	struct sigaction sa;
345 
346 	/*
347 	 * Set up the signal handler, minimally intrusively:
348 	 * we only set a single volatile integer word (not
349 	 * using sigatomic_t - trying to avoid unnecessary
350 	 * system dependencies and headers), and using
351 	 * SA_RESTART.
352 	 */
353 	memset(&sa, 0, sizeof(sa));
354 	sa.sa_handler = early_output;
355 	sigemptyset(&sa.sa_mask);
356 	sa.sa_flags = SA_RESTART;
357 	sigaction(SIGALRM, &sa, NULL);
358 
359 	/*
360 	 * If we can get the whole output in less than a
361 	 * tenth of a second, don't even bother doing the
362 	 * early-output thing..
363 	 *
364 	 * This is a one-time-only trigger.
365 	 */
366 	early_output_timer.it_value.tv_sec = 0;
367 	early_output_timer.it_value.tv_usec = 100000;
368 	setitimer(ITIMER_REAL, &early_output_timer, NULL);
369 }
370 
finish_early_output(struct rev_info * rev)371 static void finish_early_output(struct rev_info *rev)
372 {
373 	int n = estimate_commit_count(rev->commits);
374 	signal(SIGALRM, SIG_IGN);
375 	show_early_header(rev, "done", n);
376 }
377 
cmd_log_walk(struct rev_info * rev)378 static int cmd_log_walk(struct rev_info *rev)
379 {
380 	struct commit *commit;
381 	int saved_nrl = 0;
382 	int saved_dcctc = 0, close_file = rev->diffopt.close_file;
383 
384 	if (rev->early_output)
385 		setup_early_output();
386 
387 	if (prepare_revision_walk(rev))
388 		die(_("revision walk setup failed"));
389 
390 	if (rev->early_output)
391 		finish_early_output(rev);
392 
393 	/*
394 	 * For --check and --exit-code, the exit code is based on CHECK_FAILED
395 	 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
396 	 * retain that state information if replacing rev->diffopt in this loop
397 	 */
398 	rev->diffopt.close_file = 0;
399 	while ((commit = get_revision(rev)) != NULL) {
400 		if (!log_tree_commit(rev, commit) && rev->max_count >= 0)
401 			/*
402 			 * We decremented max_count in get_revision,
403 			 * but we didn't actually show the commit.
404 			 */
405 			rev->max_count++;
406 		if (!rev->reflog_info) {
407 			/*
408 			 * We may show a given commit multiple times when
409 			 * walking the reflogs.
410 			 */
411 			free_commit_buffer(the_repository->parsed_objects,
412 					   commit);
413 			free_commit_list(commit->parents);
414 			commit->parents = NULL;
415 		}
416 		if (saved_nrl < rev->diffopt.needed_rename_limit)
417 			saved_nrl = rev->diffopt.needed_rename_limit;
418 		if (rev->diffopt.degraded_cc_to_c)
419 			saved_dcctc = 1;
420 	}
421 	rev->diffopt.degraded_cc_to_c = saved_dcctc;
422 	rev->diffopt.needed_rename_limit = saved_nrl;
423 	if (close_file)
424 		fclose(rev->diffopt.file);
425 
426 	if (rev->diffopt.output_format & DIFF_FORMAT_CHECKDIFF &&
427 	    rev->diffopt.flags.check_failed) {
428 		return 02;
429 	}
430 	return diff_result_code(&rev->diffopt, 0);
431 }
432 
git_log_config(const char * var,const char * value,void * cb)433 static int git_log_config(const char *var, const char *value, void *cb)
434 {
435 	const char *slot_name;
436 
437 	if (!strcmp(var, "format.pretty"))
438 		return git_config_string(&fmt_pretty, var, value);
439 	if (!strcmp(var, "format.subjectprefix"))
440 		return git_config_string(&fmt_patch_subject_prefix, var, value);
441 	if (!strcmp(var, "log.abbrevcommit")) {
442 		default_abbrev_commit = git_config_bool(var, value);
443 		return 0;
444 	}
445 	if (!strcmp(var, "log.date"))
446 		return git_config_string(&default_date_mode, var, value);
447 	if (!strcmp(var, "log.decorate")) {
448 		decoration_style = parse_decoration_style(value);
449 		if (decoration_style < 0)
450 			decoration_style = 0; /* maybe warn? */
451 		return 0;
452 	}
453 	if (!strcmp(var, "log.showroot")) {
454 		default_show_root = git_config_bool(var, value);
455 		return 0;
456 	}
457 	if (!strcmp(var, "log.follow")) {
458 		default_follow = git_config_bool(var, value);
459 		return 0;
460 	}
461 	if (skip_prefix(var, "color.decorate.", &slot_name))
462 		return parse_decorate_color_config(var, slot_name, value);
463 	if (!strcmp(var, "log.mailmap")) {
464 		use_mailmap_config = git_config_bool(var, value);
465 		return 0;
466 	}
467 	if (!strcmp(var, "log.showsignature")) {
468 		default_show_signature = git_config_bool(var, value);
469 		return 0;
470 	}
471 
472 	if (grep_config(var, value, cb) < 0)
473 		return -1;
474 	if (git_gpg_config(var, value, cb) < 0)
475 		return -1;
476 	return git_diff_ui_config(var, value, cb);
477 }
478 
cmd_whatchanged(int argc,const char ** argv,const char * prefix)479 int cmd_whatchanged(int argc, const char **argv, const char *prefix)
480 {
481 	struct rev_info rev;
482 	struct setup_revision_opt opt;
483 
484 	init_log_defaults();
485 	git_config(git_log_config, NULL);
486 
487 	repo_init_revisions(the_repository, &rev, prefix);
488 	rev.diff = 1;
489 	rev.simplify_history = 0;
490 	memset(&opt, 0, sizeof(opt));
491 	opt.def = "HEAD";
492 	opt.revarg_opt = REVARG_COMMITTISH;
493 	cmd_log_init(argc, argv, prefix, &rev, &opt);
494 	if (!rev.diffopt.output_format)
495 		rev.diffopt.output_format = DIFF_FORMAT_RAW;
496 	return cmd_log_walk(&rev);
497 }
498 
show_tagger(const char * buf,struct rev_info * rev)499 static void show_tagger(const char *buf, struct rev_info *rev)
500 {
501 	struct strbuf out = STRBUF_INIT;
502 	struct pretty_print_context pp = {0};
503 
504 	pp.fmt = rev->commit_format;
505 	pp.date_mode = rev->date_mode;
506 	pp_user_info(&pp, "Tagger", &out, buf, get_log_output_encoding());
507 	fprintf(rev->diffopt.file, "%s", out.buf);
508 	strbuf_release(&out);
509 }
510 
show_blob_object(const struct object_id * oid,struct rev_info * rev,const char * obj_name)511 static int show_blob_object(const struct object_id *oid, struct rev_info *rev, const char *obj_name)
512 {
513 	struct object_id oidc;
514 	struct object_context obj_context;
515 	char *buf;
516 	unsigned long size;
517 
518 	fflush(rev->diffopt.file);
519 	if (!rev->diffopt.flags.textconv_set_via_cmdline ||
520 	    !rev->diffopt.flags.allow_textconv)
521 		return stream_blob_to_fd(1, oid, NULL, 0);
522 
523 	if (get_oid_with_context(the_repository, obj_name,
524 				 GET_OID_RECORD_PATH,
525 				 &oidc, &obj_context))
526 		die(_("not a valid object name %s"), obj_name);
527 	if (!obj_context.path ||
528 	    !textconv_object(the_repository, obj_context.path,
529 			     obj_context.mode, &oidc, 1, &buf, &size)) {
530 		free(obj_context.path);
531 		return stream_blob_to_fd(1, oid, NULL, 0);
532 	}
533 
534 	if (!buf)
535 		die(_("git show %s: bad file"), obj_name);
536 
537 	write_or_die(1, buf, size);
538 	free(obj_context.path);
539 	return 0;
540 }
541 
show_tag_object(const struct object_id * oid,struct rev_info * rev)542 static int show_tag_object(const struct object_id *oid, struct rev_info *rev)
543 {
544 	unsigned long size;
545 	enum object_type type;
546 	char *buf = read_object_file(oid, &type, &size);
547 	int offset = 0;
548 
549 	if (!buf)
550 		return error(_("could not read object %s"), oid_to_hex(oid));
551 
552 	assert(type == OBJ_TAG);
553 	while (offset < size && buf[offset] != '\n') {
554 		int new_offset = offset + 1;
555 		const char *ident;
556 		while (new_offset < size && buf[new_offset++] != '\n')
557 			; /* do nothing */
558 		if (skip_prefix(buf + offset, "tagger ", &ident))
559 			show_tagger(ident, rev);
560 		offset = new_offset;
561 	}
562 
563 	if (offset < size)
564 		fwrite(buf + offset, size - offset, 1, rev->diffopt.file);
565 	free(buf);
566 	return 0;
567 }
568 
show_tree_object(const struct object_id * oid,struct strbuf * base,const char * pathname,unsigned mode,int stage,void * context)569 static int show_tree_object(const struct object_id *oid,
570 		struct strbuf *base,
571 		const char *pathname, unsigned mode, int stage, void *context)
572 {
573 	FILE *file = context;
574 	fprintf(file, "%s%s\n", pathname, S_ISDIR(mode) ? "/" : "");
575 	return 0;
576 }
577 
show_setup_revisions_tweak(struct rev_info * rev,struct setup_revision_opt * opt)578 static void show_setup_revisions_tweak(struct rev_info *rev,
579 				       struct setup_revision_opt *opt)
580 {
581 	if (rev->ignore_merges) {
582 		/* There was no "-m" on the command line */
583 		rev->ignore_merges = 0;
584 		if (!rev->first_parent_only && !rev->combine_merges) {
585 			/* No "--first-parent", "-c", or "--cc" */
586 			rev->combine_merges = 1;
587 			rev->dense_combined_merges = 1;
588 		}
589 	}
590 	if (!rev->diffopt.output_format)
591 		rev->diffopt.output_format = DIFF_FORMAT_PATCH;
592 }
593 
cmd_show(int argc,const char ** argv,const char * prefix)594 int cmd_show(int argc, const char **argv, const char *prefix)
595 {
596 	struct rev_info rev;
597 	struct object_array_entry *objects;
598 	struct setup_revision_opt opt;
599 	struct pathspec match_all;
600 	int i, count, ret = 0;
601 
602 	init_log_defaults();
603 	git_config(git_log_config, NULL);
604 
605 	memset(&match_all, 0, sizeof(match_all));
606 	repo_init_revisions(the_repository, &rev, prefix);
607 	rev.diff = 1;
608 	rev.always_show_header = 1;
609 	rev.no_walk = REVISION_WALK_NO_WALK_SORTED;
610 	rev.diffopt.stat_width = -1; 	/* Scale to real terminal size */
611 
612 	memset(&opt, 0, sizeof(opt));
613 	opt.def = "HEAD";
614 	opt.tweak = show_setup_revisions_tweak;
615 	cmd_log_init(argc, argv, prefix, &rev, &opt);
616 
617 	if (!rev.no_walk)
618 		return cmd_log_walk(&rev);
619 
620 	count = rev.pending.nr;
621 	objects = rev.pending.objects;
622 	for (i = 0; i < count && !ret; i++) {
623 		struct object *o = objects[i].item;
624 		const char *name = objects[i].name;
625 		switch (o->type) {
626 		case OBJ_BLOB:
627 			ret = show_blob_object(&o->oid, &rev, name);
628 			break;
629 		case OBJ_TAG: {
630 			struct tag *t = (struct tag *)o;
631 			struct object_id *oid = get_tagged_oid(t);
632 
633 			if (rev.shown_one)
634 				putchar('\n');
635 			fprintf(rev.diffopt.file, "%stag %s%s\n",
636 					diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
637 					t->tag,
638 					diff_get_color_opt(&rev.diffopt, DIFF_RESET));
639 			ret = show_tag_object(&o->oid, &rev);
640 			rev.shown_one = 1;
641 			if (ret)
642 				break;
643 			o = parse_object(the_repository, oid);
644 			if (!o)
645 				ret = error(_("could not read object %s"),
646 					    oid_to_hex(oid));
647 			objects[i].item = o;
648 			i--;
649 			break;
650 		}
651 		case OBJ_TREE:
652 			if (rev.shown_one)
653 				putchar('\n');
654 			fprintf(rev.diffopt.file, "%stree %s%s\n\n",
655 					diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
656 					name,
657 					diff_get_color_opt(&rev.diffopt, DIFF_RESET));
658 			read_tree_recursive(the_repository, (struct tree *)o, "",
659 					    0, 0, &match_all, show_tree_object,
660 					    rev.diffopt.file);
661 			rev.shown_one = 1;
662 			break;
663 		case OBJ_COMMIT:
664 			rev.pending.nr = rev.pending.alloc = 0;
665 			rev.pending.objects = NULL;
666 			add_object_array(o, name, &rev.pending);
667 			ret = cmd_log_walk(&rev);
668 			break;
669 		default:
670 			ret = error(_("unknown type: %d"), o->type);
671 		}
672 	}
673 	free(objects);
674 	return ret;
675 }
676 
677 /*
678  * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
679  */
cmd_log_reflog(int argc,const char ** argv,const char * prefix)680 int cmd_log_reflog(int argc, const char **argv, const char *prefix)
681 {
682 	struct rev_info rev;
683 	struct setup_revision_opt opt;
684 
685 	init_log_defaults();
686 	git_config(git_log_config, NULL);
687 
688 	repo_init_revisions(the_repository, &rev, prefix);
689 	init_reflog_walk(&rev.reflog_info);
690 	rev.verbose_header = 1;
691 	memset(&opt, 0, sizeof(opt));
692 	opt.def = "HEAD";
693 	cmd_log_init_defaults(&rev);
694 	rev.abbrev_commit = 1;
695 	rev.commit_format = CMIT_FMT_ONELINE;
696 	rev.use_terminator = 1;
697 	rev.always_show_header = 1;
698 	cmd_log_init_finish(argc, argv, prefix, &rev, &opt);
699 
700 	return cmd_log_walk(&rev);
701 }
702 
log_setup_revisions_tweak(struct rev_info * rev,struct setup_revision_opt * opt)703 static void log_setup_revisions_tweak(struct rev_info *rev,
704 				      struct setup_revision_opt *opt)
705 {
706 	if (rev->diffopt.flags.default_follow_renames &&
707 	    rev->prune_data.nr == 1)
708 		rev->diffopt.flags.follow_renames = 1;
709 
710 	/* Turn --cc/-c into -p --cc/-c when -p was not given */
711 	if (!rev->diffopt.output_format && rev->combine_merges)
712 		rev->diffopt.output_format = DIFF_FORMAT_PATCH;
713 
714 	/* Turn -m on when --cc/-c was given */
715 	if (rev->combine_merges)
716 		rev->ignore_merges = 0;
717 }
718 
cmd_log(int argc,const char ** argv,const char * prefix)719 int cmd_log(int argc, const char **argv, const char *prefix)
720 {
721 	struct rev_info rev;
722 	struct setup_revision_opt opt;
723 
724 	init_log_defaults();
725 	git_config(git_log_config, NULL);
726 
727 	repo_init_revisions(the_repository, &rev, prefix);
728 	rev.always_show_header = 1;
729 	memset(&opt, 0, sizeof(opt));
730 	opt.def = "HEAD";
731 	opt.revarg_opt = REVARG_COMMITTISH;
732 	opt.tweak = log_setup_revisions_tweak;
733 	cmd_log_init(argc, argv, prefix, &rev, &opt);
734 	return cmd_log_walk(&rev);
735 }
736 
737 /* format-patch */
738 
739 static const char *fmt_patch_suffix = ".patch";
740 static int numbered = 0;
741 static int auto_number = 1;
742 
743 static char *default_attach = NULL;
744 
745 static struct string_list extra_hdr = STRING_LIST_INIT_NODUP;
746 static struct string_list extra_to = STRING_LIST_INIT_NODUP;
747 static struct string_list extra_cc = STRING_LIST_INIT_NODUP;
748 
add_header(const char * value)749 static void add_header(const char *value)
750 {
751 	struct string_list_item *item;
752 	int len = strlen(value);
753 	while (len && value[len - 1] == '\n')
754 		len--;
755 
756 	if (!strncasecmp(value, "to: ", 4)) {
757 		item = string_list_append(&extra_to, value + 4);
758 		len -= 4;
759 	} else if (!strncasecmp(value, "cc: ", 4)) {
760 		item = string_list_append(&extra_cc, value + 4);
761 		len -= 4;
762 	} else {
763 		item = string_list_append(&extra_hdr, value);
764 	}
765 
766 	item->string[len] = '\0';
767 }
768 
769 enum cover_setting {
770 	COVER_UNSET,
771 	COVER_OFF,
772 	COVER_ON,
773 	COVER_AUTO
774 };
775 
776 enum thread_level {
777 	THREAD_UNSET,
778 	THREAD_SHALLOW,
779 	THREAD_DEEP
780 };
781 
782 enum cover_from_description {
783 	COVER_FROM_NONE,
784 	COVER_FROM_MESSAGE,
785 	COVER_FROM_SUBJECT,
786 	COVER_FROM_AUTO
787 };
788 
789 static enum thread_level thread;
790 static int do_signoff;
791 static int base_auto;
792 static char *from;
793 static const char *signature = git_version_string;
794 static const char *signature_file;
795 static enum cover_setting config_cover_letter;
796 static const char *config_output_directory;
797 static enum cover_from_description cover_from_description_mode = COVER_FROM_MESSAGE;
798 static int show_notes;
799 static struct display_notes_opt notes_opt;
800 
parse_cover_from_description(const char * arg)801 static enum cover_from_description parse_cover_from_description(const char *arg)
802 {
803 	if (!arg || !strcmp(arg, "default"))
804 		return COVER_FROM_MESSAGE;
805 	else if (!strcmp(arg, "none"))
806 		return COVER_FROM_NONE;
807 	else if (!strcmp(arg, "message"))
808 		return COVER_FROM_MESSAGE;
809 	else if (!strcmp(arg, "subject"))
810 		return COVER_FROM_SUBJECT;
811 	else if (!strcmp(arg, "auto"))
812 		return COVER_FROM_AUTO;
813 	else
814 		die(_("%s: invalid cover from description mode"), arg);
815 }
816 
git_format_config(const char * var,const char * value,void * cb)817 static int git_format_config(const char *var, const char *value, void *cb)
818 {
819 	if (!strcmp(var, "format.headers")) {
820 		if (!value)
821 			die(_("format.headers without value"));
822 		add_header(value);
823 		return 0;
824 	}
825 	if (!strcmp(var, "format.suffix"))
826 		return git_config_string(&fmt_patch_suffix, var, value);
827 	if (!strcmp(var, "format.to")) {
828 		if (!value)
829 			return config_error_nonbool(var);
830 		string_list_append(&extra_to, value);
831 		return 0;
832 	}
833 	if (!strcmp(var, "format.cc")) {
834 		if (!value)
835 			return config_error_nonbool(var);
836 		string_list_append(&extra_cc, value);
837 		return 0;
838 	}
839 	if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff") ||
840 	    !strcmp(var, "color.ui") || !strcmp(var, "diff.submodule")) {
841 		return 0;
842 	}
843 	if (!strcmp(var, "format.numbered")) {
844 		if (value && !strcasecmp(value, "auto")) {
845 			auto_number = 1;
846 			return 0;
847 		}
848 		numbered = git_config_bool(var, value);
849 		auto_number = auto_number && numbered;
850 		return 0;
851 	}
852 	if (!strcmp(var, "format.attach")) {
853 		if (value && *value)
854 			default_attach = xstrdup(value);
855 		else
856 			default_attach = xstrdup(git_version_string);
857 		return 0;
858 	}
859 	if (!strcmp(var, "format.thread")) {
860 		if (value && !strcasecmp(value, "deep")) {
861 			thread = THREAD_DEEP;
862 			return 0;
863 		}
864 		if (value && !strcasecmp(value, "shallow")) {
865 			thread = THREAD_SHALLOW;
866 			return 0;
867 		}
868 		thread = git_config_bool(var, value) ? THREAD_SHALLOW : THREAD_UNSET;
869 		return 0;
870 	}
871 	if (!strcmp(var, "format.signoff")) {
872 		do_signoff = git_config_bool(var, value);
873 		return 0;
874 	}
875 	if (!strcmp(var, "format.signature"))
876 		return git_config_string(&signature, var, value);
877 	if (!strcmp(var, "format.signaturefile"))
878 		return git_config_pathname(&signature_file, var, value);
879 	if (!strcmp(var, "format.coverletter")) {
880 		if (value && !strcasecmp(value, "auto")) {
881 			config_cover_letter = COVER_AUTO;
882 			return 0;
883 		}
884 		config_cover_letter = git_config_bool(var, value) ? COVER_ON : COVER_OFF;
885 		return 0;
886 	}
887 	if (!strcmp(var, "format.outputdirectory"))
888 		return git_config_string(&config_output_directory, var, value);
889 	if (!strcmp(var, "format.useautobase")) {
890 		base_auto = git_config_bool(var, value);
891 		return 0;
892 	}
893 	if (!strcmp(var, "format.from")) {
894 		int b = git_parse_maybe_bool(value);
895 		free(from);
896 		if (b < 0)
897 			from = xstrdup(value);
898 		else if (b)
899 			from = xstrdup(git_committer_info(IDENT_NO_DATE));
900 		else
901 			from = NULL;
902 		return 0;
903 	}
904 	if (!strcmp(var, "format.notes")) {
905 		int b = git_parse_maybe_bool(value);
906 		if (b < 0)
907 			enable_ref_display_notes(&notes_opt, &show_notes, value);
908 		else if (b)
909 			enable_default_display_notes(&notes_opt, &show_notes);
910 		else
911 			disable_display_notes(&notes_opt, &show_notes);
912 		return 0;
913 	}
914 	if (!strcmp(var, "format.coverfromdescription")) {
915 		cover_from_description_mode = parse_cover_from_description(value);
916 		return 0;
917 	}
918 
919 	return git_log_config(var, value, cb);
920 }
921 
922 static const char *output_directory = NULL;
923 static int outdir_offset;
924 
open_next_file(struct commit * commit,const char * subject,struct rev_info * rev,int quiet)925 static int open_next_file(struct commit *commit, const char *subject,
926 			 struct rev_info *rev, int quiet)
927 {
928 	struct strbuf filename = STRBUF_INIT;
929 	int suffix_len = strlen(rev->patch_suffix) + 1;
930 
931 	if (output_directory) {
932 		strbuf_addstr(&filename, output_directory);
933 		if (filename.len >=
934 		    PATH_MAX - FORMAT_PATCH_NAME_MAX - suffix_len) {
935 			strbuf_release(&filename);
936 			return error(_("name of output directory is too long"));
937 		}
938 		strbuf_complete(&filename, '/');
939 	}
940 
941 	if (rev->numbered_files)
942 		strbuf_addf(&filename, "%d", rev->nr);
943 	else if (commit)
944 		fmt_output_commit(&filename, commit, rev);
945 	else
946 		fmt_output_subject(&filename, subject, rev);
947 
948 	if (!quiet)
949 		printf("%s\n", filename.buf + outdir_offset);
950 
951 	if ((rev->diffopt.file = fopen(filename.buf, "w")) == NULL) {
952 		error_errno(_("cannot open patch file %s"), filename.buf);
953 		strbuf_release(&filename);
954 		return -1;
955 	}
956 
957 	strbuf_release(&filename);
958 	return 0;
959 }
960 
get_patch_ids(struct rev_info * rev,struct patch_ids * ids)961 static void get_patch_ids(struct rev_info *rev, struct patch_ids *ids)
962 {
963 	struct rev_info check_rev;
964 	struct commit *commit, *c1, *c2;
965 	struct object *o1, *o2;
966 	unsigned flags1, flags2;
967 
968 	if (rev->pending.nr != 2)
969 		die(_("need exactly one range"));
970 
971 	o1 = rev->pending.objects[0].item;
972 	o2 = rev->pending.objects[1].item;
973 	flags1 = o1->flags;
974 	flags2 = o2->flags;
975 	c1 = lookup_commit_reference(the_repository, &o1->oid);
976 	c2 = lookup_commit_reference(the_repository, &o2->oid);
977 
978 	if ((flags1 & UNINTERESTING) == (flags2 & UNINTERESTING))
979 		die(_("not a range"));
980 
981 	init_patch_ids(the_repository, ids);
982 
983 	/* given a range a..b get all patch ids for b..a */
984 	repo_init_revisions(the_repository, &check_rev, rev->prefix);
985 	check_rev.max_parents = 1;
986 	o1->flags ^= UNINTERESTING;
987 	o2->flags ^= UNINTERESTING;
988 	add_pending_object(&check_rev, o1, "o1");
989 	add_pending_object(&check_rev, o2, "o2");
990 	if (prepare_revision_walk(&check_rev))
991 		die(_("revision walk setup failed"));
992 
993 	while ((commit = get_revision(&check_rev)) != NULL) {
994 		add_commit_patch_id(commit, ids);
995 	}
996 
997 	/* reset for next revision walk */
998 	clear_commit_marks(c1, SEEN | UNINTERESTING | SHOWN | ADDED);
999 	clear_commit_marks(c2, SEEN | UNINTERESTING | SHOWN | ADDED);
1000 	o1->flags = flags1;
1001 	o2->flags = flags2;
1002 }
1003 
gen_message_id(struct rev_info * info,char * base)1004 static void gen_message_id(struct rev_info *info, char *base)
1005 {
1006 	struct strbuf buf = STRBUF_INIT;
1007 	strbuf_addf(&buf, "%s.%"PRItime".git.%s", base,
1008 		    (timestamp_t) time(NULL),
1009 		    git_committer_info(IDENT_NO_NAME|IDENT_NO_DATE|IDENT_STRICT));
1010 	info->message_id = strbuf_detach(&buf, NULL);
1011 }
1012 
print_signature(FILE * file)1013 static void print_signature(FILE *file)
1014 {
1015 	if (!signature || !*signature)
1016 		return;
1017 
1018 	fprintf(file, "-- \n%s", signature);
1019 	if (signature[strlen(signature)-1] != '\n')
1020 		putc('\n', file);
1021 	putc('\n', file);
1022 }
1023 
find_branch_name(struct rev_info * rev)1024 static char *find_branch_name(struct rev_info *rev)
1025 {
1026 	int i, positive = -1;
1027 	struct object_id branch_oid;
1028 	const struct object_id *tip_oid;
1029 	const char *ref, *v;
1030 	char *full_ref, *branch = NULL;
1031 
1032 	for (i = 0; i < rev->cmdline.nr; i++) {
1033 		if (rev->cmdline.rev[i].flags & UNINTERESTING)
1034 			continue;
1035 		if (positive < 0)
1036 			positive = i;
1037 		else
1038 			return NULL;
1039 	}
1040 	if (positive < 0)
1041 		return NULL;
1042 	ref = rev->cmdline.rev[positive].name;
1043 	tip_oid = &rev->cmdline.rev[positive].item->oid;
1044 	if (dwim_ref(ref, strlen(ref), &branch_oid, &full_ref) &&
1045 	    skip_prefix(full_ref, "refs/heads/", &v) &&
1046 	    oideq(tip_oid, &branch_oid))
1047 		branch = xstrdup(v);
1048 	free(full_ref);
1049 	return branch;
1050 }
1051 
show_diffstat(struct rev_info * rev,struct commit * origin,struct commit * head)1052 static void show_diffstat(struct rev_info *rev,
1053 			  struct commit *origin, struct commit *head)
1054 {
1055 	struct diff_options opts;
1056 
1057 	memcpy(&opts, &rev->diffopt, sizeof(opts));
1058 	opts.output_format = DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
1059 	diff_setup_done(&opts);
1060 
1061 	diff_tree_oid(get_commit_tree_oid(origin),
1062 		      get_commit_tree_oid(head),
1063 		      "", &opts);
1064 	diffcore_std(&opts);
1065 	diff_flush(&opts);
1066 
1067 	fprintf(rev->diffopt.file, "\n");
1068 }
1069 
prepare_cover_text(struct pretty_print_context * pp,const char * branch_name,struct strbuf * sb,const char * encoding,int need_8bit_cte)1070 static void prepare_cover_text(struct pretty_print_context *pp,
1071 			       const char *branch_name,
1072 			       struct strbuf *sb,
1073 			       const char *encoding,
1074 			       int need_8bit_cte)
1075 {
1076 	const char *subject = "*** SUBJECT HERE ***";
1077 	const char *body = "*** BLURB HERE ***";
1078 	struct strbuf description_sb = STRBUF_INIT;
1079 	struct strbuf subject_sb = STRBUF_INIT;
1080 
1081 	if (cover_from_description_mode == COVER_FROM_NONE)
1082 		goto do_pp;
1083 
1084 	if (branch_name && *branch_name)
1085 		read_branch_desc(&description_sb, branch_name);
1086 	if (!description_sb.len)
1087 		goto do_pp;
1088 
1089 	if (cover_from_description_mode == COVER_FROM_SUBJECT ||
1090 			cover_from_description_mode == COVER_FROM_AUTO)
1091 		body = format_subject(&subject_sb, description_sb.buf, " ");
1092 
1093 	if (cover_from_description_mode == COVER_FROM_MESSAGE ||
1094 			(cover_from_description_mode == COVER_FROM_AUTO &&
1095 			 subject_sb.len > COVER_FROM_AUTO_MAX_SUBJECT_LEN))
1096 		body = description_sb.buf;
1097 	else
1098 		subject = subject_sb.buf;
1099 
1100 do_pp:
1101 	pp_title_line(pp, &subject, sb, encoding, need_8bit_cte);
1102 	pp_remainder(pp, &body, sb, 0);
1103 
1104 	strbuf_release(&description_sb);
1105 	strbuf_release(&subject_sb);
1106 }
1107 
get_notes_refs(struct string_list_item * item,void * arg)1108 static int get_notes_refs(struct string_list_item *item, void *arg)
1109 {
1110 	argv_array_pushf(arg, "--notes=%s", item->string);
1111 	return 0;
1112 }
1113 
get_notes_args(struct argv_array * arg,struct rev_info * rev)1114 static void get_notes_args(struct argv_array *arg, struct rev_info *rev)
1115 {
1116 	if (!rev->show_notes) {
1117 		argv_array_push(arg, "--no-notes");
1118 	} else if (rev->notes_opt.use_default_notes > 0 ||
1119 		   (rev->notes_opt.use_default_notes == -1 &&
1120 		    !rev->notes_opt.extra_notes_refs.nr)) {
1121 		argv_array_push(arg, "--notes");
1122 	} else {
1123 		for_each_string_list(&rev->notes_opt.extra_notes_refs, get_notes_refs, arg);
1124 	}
1125 }
1126 
make_cover_letter(struct rev_info * rev,int use_stdout,struct commit * origin,int nr,struct commit ** list,const char * branch_name,int quiet)1127 static void make_cover_letter(struct rev_info *rev, int use_stdout,
1128 			      struct commit *origin,
1129 			      int nr, struct commit **list,
1130 			      const char *branch_name,
1131 			      int quiet)
1132 {
1133 	const char *committer;
1134 	struct shortlog log;
1135 	struct strbuf sb = STRBUF_INIT;
1136 	int i;
1137 	const char *encoding = "UTF-8";
1138 	int need_8bit_cte = 0;
1139 	struct pretty_print_context pp = {0};
1140 	struct commit *head = list[0];
1141 
1142 	if (!cmit_fmt_is_mail(rev->commit_format))
1143 		die(_("cover letter needs email format"));
1144 
1145 	committer = git_committer_info(0);
1146 
1147 	if (!use_stdout &&
1148 	    open_next_file(NULL, rev->numbered_files ? NULL : "cover-letter", rev, quiet))
1149 		die(_("failed to create cover-letter file"));
1150 
1151 	log_write_email_headers(rev, head, &pp.after_subject, &need_8bit_cte, 0);
1152 
1153 	for (i = 0; !need_8bit_cte && i < nr; i++) {
1154 		const char *buf = get_commit_buffer(list[i], NULL);
1155 		if (has_non_ascii(buf))
1156 			need_8bit_cte = 1;
1157 		unuse_commit_buffer(list[i], buf);
1158 	}
1159 
1160 	if (!branch_name)
1161 		branch_name = find_branch_name(rev);
1162 
1163 	pp.fmt = CMIT_FMT_EMAIL;
1164 	pp.date_mode.type = DATE_RFC2822;
1165 	pp.rev = rev;
1166 	pp.print_email_subject = 1;
1167 	pp_user_info(&pp, NULL, &sb, committer, encoding);
1168 	prepare_cover_text(&pp, branch_name, &sb, encoding, need_8bit_cte);
1169 	fprintf(rev->diffopt.file, "%s\n", sb.buf);
1170 
1171 	strbuf_release(&sb);
1172 
1173 	shortlog_init(&log);
1174 	log.wrap_lines = 1;
1175 	log.wrap = MAIL_DEFAULT_WRAP;
1176 	log.in1 = 2;
1177 	log.in2 = 4;
1178 	log.file = rev->diffopt.file;
1179 	for (i = 0; i < nr; i++)
1180 		shortlog_add_commit(&log, list[i]);
1181 
1182 	shortlog_output(&log);
1183 
1184 	/* We can only do diffstat with a unique reference point */
1185 	if (origin)
1186 		show_diffstat(rev, origin, head);
1187 
1188 	if (rev->idiff_oid1) {
1189 		fprintf_ln(rev->diffopt.file, "%s", rev->idiff_title);
1190 		show_interdiff(rev, 0);
1191 	}
1192 
1193 	if (rev->rdiff1) {
1194 		/*
1195 		 * Pass minimum required diff-options to range-diff; others
1196 		 * can be added later if deemed desirable.
1197 		 */
1198 		struct diff_options opts;
1199 		struct argv_array other_arg = ARGV_ARRAY_INIT;
1200 		diff_setup(&opts);
1201 		opts.file = rev->diffopt.file;
1202 		opts.use_color = rev->diffopt.use_color;
1203 		diff_setup_done(&opts);
1204 		fprintf_ln(rev->diffopt.file, "%s", rev->rdiff_title);
1205 		get_notes_args(&other_arg, rev);
1206 		show_range_diff(rev->rdiff1, rev->rdiff2,
1207 				rev->creation_factor, 1, &opts, &other_arg);
1208 		argv_array_clear(&other_arg);
1209 	}
1210 }
1211 
clean_message_id(const char * msg_id)1212 static const char *clean_message_id(const char *msg_id)
1213 {
1214 	char ch;
1215 	const char *a, *z, *m;
1216 
1217 	m = msg_id;
1218 	while ((ch = *m) && (isspace(ch) || (ch == '<')))
1219 		m++;
1220 	a = m;
1221 	z = NULL;
1222 	while ((ch = *m)) {
1223 		if (!isspace(ch) && (ch != '>'))
1224 			z = m;
1225 		m++;
1226 	}
1227 	if (!z)
1228 		die(_("insane in-reply-to: %s"), msg_id);
1229 	if (++z == m)
1230 		return a;
1231 	return xmemdupz(a, z - a);
1232 }
1233 
set_outdir(const char * prefix,const char * output_directory)1234 static const char *set_outdir(const char *prefix, const char *output_directory)
1235 {
1236 	if (output_directory && is_absolute_path(output_directory))
1237 		return output_directory;
1238 
1239 	if (!prefix || !*prefix) {
1240 		if (output_directory)
1241 			return output_directory;
1242 		/* The user did not explicitly ask for "./" */
1243 		outdir_offset = 2;
1244 		return "./";
1245 	}
1246 
1247 	outdir_offset = strlen(prefix);
1248 	if (!output_directory)
1249 		return prefix;
1250 
1251 	return prefix_filename(prefix, output_directory);
1252 }
1253 
1254 static const char * const builtin_format_patch_usage[] = {
1255 	N_("git format-patch [<options>] [<since> | <revision-range>]"),
1256 	NULL
1257 };
1258 
1259 static int keep_subject = 0;
1260 
keep_callback(const struct option * opt,const char * arg,int unset)1261 static int keep_callback(const struct option *opt, const char *arg, int unset)
1262 {
1263 	BUG_ON_OPT_NEG(unset);
1264 	BUG_ON_OPT_ARG(arg);
1265 	((struct rev_info *)opt->value)->total = -1;
1266 	keep_subject = 1;
1267 	return 0;
1268 }
1269 
1270 static int subject_prefix = 0;
1271 
subject_prefix_callback(const struct option * opt,const char * arg,int unset)1272 static int subject_prefix_callback(const struct option *opt, const char *arg,
1273 			    int unset)
1274 {
1275 	BUG_ON_OPT_NEG(unset);
1276 	subject_prefix = 1;
1277 	((struct rev_info *)opt->value)->subject_prefix = arg;
1278 	return 0;
1279 }
1280 
rfc_callback(const struct option * opt,const char * arg,int unset)1281 static int rfc_callback(const struct option *opt, const char *arg, int unset)
1282 {
1283 	BUG_ON_OPT_NEG(unset);
1284 	BUG_ON_OPT_ARG(arg);
1285 	return subject_prefix_callback(opt, "RFC PATCH", unset);
1286 }
1287 
1288 static int numbered_cmdline_opt = 0;
1289 
numbered_callback(const struct option * opt,const char * arg,int unset)1290 static int numbered_callback(const struct option *opt, const char *arg,
1291 			     int unset)
1292 {
1293 	BUG_ON_OPT_ARG(arg);
1294 	*(int *)opt->value = numbered_cmdline_opt = unset ? 0 : 1;
1295 	if (unset)
1296 		auto_number =  0;
1297 	return 0;
1298 }
1299 
no_numbered_callback(const struct option * opt,const char * arg,int unset)1300 static int no_numbered_callback(const struct option *opt, const char *arg,
1301 				int unset)
1302 {
1303 	BUG_ON_OPT_NEG(unset);
1304 	return numbered_callback(opt, arg, 1);
1305 }
1306 
output_directory_callback(const struct option * opt,const char * arg,int unset)1307 static int output_directory_callback(const struct option *opt, const char *arg,
1308 			      int unset)
1309 {
1310 	const char **dir = (const char **)opt->value;
1311 	BUG_ON_OPT_NEG(unset);
1312 	if (*dir)
1313 		die(_("two output directories?"));
1314 	*dir = arg;
1315 	return 0;
1316 }
1317 
thread_callback(const struct option * opt,const char * arg,int unset)1318 static int thread_callback(const struct option *opt, const char *arg, int unset)
1319 {
1320 	enum thread_level *thread = (enum thread_level *)opt->value;
1321 	if (unset)
1322 		*thread = THREAD_UNSET;
1323 	else if (!arg || !strcmp(arg, "shallow"))
1324 		*thread = THREAD_SHALLOW;
1325 	else if (!strcmp(arg, "deep"))
1326 		*thread = THREAD_DEEP;
1327 	/*
1328 	 * Please update _git_formatpatch() in git-completion.bash
1329 	 * when you add new options.
1330 	 */
1331 	else
1332 		return 1;
1333 	return 0;
1334 }
1335 
attach_callback(const struct option * opt,const char * arg,int unset)1336 static int attach_callback(const struct option *opt, const char *arg, int unset)
1337 {
1338 	struct rev_info *rev = (struct rev_info *)opt->value;
1339 	if (unset)
1340 		rev->mime_boundary = NULL;
1341 	else if (arg)
1342 		rev->mime_boundary = arg;
1343 	else
1344 		rev->mime_boundary = git_version_string;
1345 	rev->no_inline = unset ? 0 : 1;
1346 	return 0;
1347 }
1348 
inline_callback(const struct option * opt,const char * arg,int unset)1349 static int inline_callback(const struct option *opt, const char *arg, int unset)
1350 {
1351 	struct rev_info *rev = (struct rev_info *)opt->value;
1352 	if (unset)
1353 		rev->mime_boundary = NULL;
1354 	else if (arg)
1355 		rev->mime_boundary = arg;
1356 	else
1357 		rev->mime_boundary = git_version_string;
1358 	rev->no_inline = 0;
1359 	return 0;
1360 }
1361 
header_callback(const struct option * opt,const char * arg,int unset)1362 static int header_callback(const struct option *opt, const char *arg, int unset)
1363 {
1364 	if (unset) {
1365 		string_list_clear(&extra_hdr, 0);
1366 		string_list_clear(&extra_to, 0);
1367 		string_list_clear(&extra_cc, 0);
1368 	} else {
1369 		add_header(arg);
1370 	}
1371 	return 0;
1372 }
1373 
to_callback(const struct option * opt,const char * arg,int unset)1374 static int to_callback(const struct option *opt, const char *arg, int unset)
1375 {
1376 	if (unset)
1377 		string_list_clear(&extra_to, 0);
1378 	else
1379 		string_list_append(&extra_to, arg);
1380 	return 0;
1381 }
1382 
cc_callback(const struct option * opt,const char * arg,int unset)1383 static int cc_callback(const struct option *opt, const char *arg, int unset)
1384 {
1385 	if (unset)
1386 		string_list_clear(&extra_cc, 0);
1387 	else
1388 		string_list_append(&extra_cc, arg);
1389 	return 0;
1390 }
1391 
from_callback(const struct option * opt,const char * arg,int unset)1392 static int from_callback(const struct option *opt, const char *arg, int unset)
1393 {
1394 	char **from = opt->value;
1395 
1396 	free(*from);
1397 
1398 	if (unset)
1399 		*from = NULL;
1400 	else if (arg)
1401 		*from = xstrdup(arg);
1402 	else
1403 		*from = xstrdup(git_committer_info(IDENT_NO_DATE));
1404 	return 0;
1405 }
1406 
1407 struct base_tree_info {
1408 	struct object_id base_commit;
1409 	int nr_patch_id, alloc_patch_id;
1410 	struct object_id *patch_id;
1411 };
1412 
get_base_commit(const char * base_commit,struct commit ** list,int total)1413 static struct commit *get_base_commit(const char *base_commit,
1414 				      struct commit **list,
1415 				      int total)
1416 {
1417 	struct commit *base = NULL;
1418 	struct commit **rev;
1419 	int i = 0, rev_nr = 0;
1420 
1421 	if (base_commit && strcmp(base_commit, "auto")) {
1422 		base = lookup_commit_reference_by_name(base_commit);
1423 		if (!base)
1424 			die(_("unknown commit %s"), base_commit);
1425 	} else if ((base_commit && !strcmp(base_commit, "auto"))) {
1426 		struct branch *curr_branch = branch_get(NULL);
1427 		const char *upstream = branch_get_upstream(curr_branch, NULL);
1428 		if (upstream) {
1429 			struct commit_list *base_list;
1430 			struct commit *commit;
1431 			struct object_id oid;
1432 
1433 			if (get_oid(upstream, &oid))
1434 				die(_("failed to resolve '%s' as a valid ref"), upstream);
1435 			commit = lookup_commit_or_die(&oid, "upstream base");
1436 			base_list = get_merge_bases_many(commit, total, list);
1437 			/* There should be one and only one merge base. */
1438 			if (!base_list || base_list->next)
1439 				die(_("could not find exact merge base"));
1440 			base = base_list->item;
1441 			free_commit_list(base_list);
1442 		} else {
1443 			die(_("failed to get upstream, if you want to record base commit automatically,\n"
1444 			      "please use git branch --set-upstream-to to track a remote branch.\n"
1445 			      "Or you could specify base commit by --base=<base-commit-id> manually"));
1446 		}
1447 	}
1448 
1449 	ALLOC_ARRAY(rev, total);
1450 	for (i = 0; i < total; i++)
1451 		rev[i] = list[i];
1452 
1453 	rev_nr = total;
1454 	/*
1455 	 * Get merge base through pair-wise computations
1456 	 * and store it in rev[0].
1457 	 */
1458 	while (rev_nr > 1) {
1459 		for (i = 0; i < rev_nr / 2; i++) {
1460 			struct commit_list *merge_base;
1461 			merge_base = get_merge_bases(rev[2 * i], rev[2 * i + 1]);
1462 			if (!merge_base || merge_base->next)
1463 				die(_("failed to find exact merge base"));
1464 
1465 			rev[i] = merge_base->item;
1466 		}
1467 
1468 		if (rev_nr % 2)
1469 			rev[i] = rev[2 * i];
1470 		rev_nr = DIV_ROUND_UP(rev_nr, 2);
1471 	}
1472 
1473 	if (!in_merge_bases(base, rev[0]))
1474 		die(_("base commit should be the ancestor of revision list"));
1475 
1476 	for (i = 0; i < total; i++) {
1477 		if (base == list[i])
1478 			die(_("base commit shouldn't be in revision list"));
1479 	}
1480 
1481 	free(rev);
1482 	return base;
1483 }
1484 
1485 define_commit_slab(commit_base, int);
1486 
prepare_bases(struct base_tree_info * bases,struct commit * base,struct commit ** list,int total)1487 static void prepare_bases(struct base_tree_info *bases,
1488 			  struct commit *base,
1489 			  struct commit **list,
1490 			  int total)
1491 {
1492 	struct commit *commit;
1493 	struct rev_info revs;
1494 	struct diff_options diffopt;
1495 	struct commit_base commit_base;
1496 	int i;
1497 
1498 	if (!base)
1499 		return;
1500 
1501 	init_commit_base(&commit_base);
1502 	repo_diff_setup(the_repository, &diffopt);
1503 	diffopt.flags.recursive = 1;
1504 	diff_setup_done(&diffopt);
1505 
1506 	oidcpy(&bases->base_commit, &base->object.oid);
1507 
1508 	repo_init_revisions(the_repository, &revs, NULL);
1509 	revs.max_parents = 1;
1510 	revs.topo_order = 1;
1511 	for (i = 0; i < total; i++) {
1512 		list[i]->object.flags &= ~UNINTERESTING;
1513 		add_pending_object(&revs, &list[i]->object, "rev_list");
1514 		*commit_base_at(&commit_base, list[i]) = 1;
1515 	}
1516 	base->object.flags |= UNINTERESTING;
1517 	add_pending_object(&revs, &base->object, "base");
1518 
1519 	if (prepare_revision_walk(&revs))
1520 		die(_("revision walk setup failed"));
1521 	/*
1522 	 * Traverse the commits list, get prerequisite patch ids
1523 	 * and stuff them in bases structure.
1524 	 */
1525 	while ((commit = get_revision(&revs)) != NULL) {
1526 		struct object_id oid;
1527 		struct object_id *patch_id;
1528 		if (*commit_base_at(&commit_base, commit))
1529 			continue;
1530 		if (commit_patch_id(commit, &diffopt, &oid, 0, 1))
1531 			die(_("cannot get patch id"));
1532 		ALLOC_GROW(bases->patch_id, bases->nr_patch_id + 1, bases->alloc_patch_id);
1533 		patch_id = bases->patch_id + bases->nr_patch_id;
1534 		oidcpy(patch_id, &oid);
1535 		bases->nr_patch_id++;
1536 	}
1537 	clear_commit_base(&commit_base);
1538 }
1539 
print_bases(struct base_tree_info * bases,FILE * file)1540 static void print_bases(struct base_tree_info *bases, FILE *file)
1541 {
1542 	int i;
1543 
1544 	/* Only do this once, either for the cover or for the first one */
1545 	if (is_null_oid(&bases->base_commit))
1546 		return;
1547 
1548 	/* Show the base commit */
1549 	fprintf(file, "\nbase-commit: %s\n", oid_to_hex(&bases->base_commit));
1550 
1551 	/* Show the prerequisite patches */
1552 	for (i = bases->nr_patch_id - 1; i >= 0; i--)
1553 		fprintf(file, "prerequisite-patch-id: %s\n", oid_to_hex(&bases->patch_id[i]));
1554 
1555 	free(bases->patch_id);
1556 	bases->nr_patch_id = 0;
1557 	bases->alloc_patch_id = 0;
1558 	oidclr(&bases->base_commit);
1559 }
1560 
diff_title(struct strbuf * sb,int reroll_count,const char * generic,const char * rerolled)1561 static const char *diff_title(struct strbuf *sb, int reroll_count,
1562 		       const char *generic, const char *rerolled)
1563 {
1564 	if (reroll_count <= 0)
1565 		strbuf_addstr(sb, generic);
1566 	else /* RFC may be v0, so allow -v1 to diff against v0 */
1567 		strbuf_addf(sb, rerolled, reroll_count - 1);
1568 	return sb->buf;
1569 }
1570 
infer_range_diff_ranges(struct strbuf * r1,struct strbuf * r2,const char * prev,struct commit * origin,struct commit * head)1571 static void infer_range_diff_ranges(struct strbuf *r1,
1572 				    struct strbuf *r2,
1573 				    const char *prev,
1574 				    struct commit *origin,
1575 				    struct commit *head)
1576 {
1577 	const char *head_oid = oid_to_hex(&head->object.oid);
1578 
1579 	if (!strstr(prev, "..")) {
1580 		strbuf_addf(r1, "%s..%s", head_oid, prev);
1581 		strbuf_addf(r2, "%s..%s", prev, head_oid);
1582 	} else if (!origin) {
1583 		die(_("failed to infer range-diff ranges"));
1584 	} else {
1585 		strbuf_addstr(r1, prev);
1586 		strbuf_addf(r2, "%s..%s",
1587 			    oid_to_hex(&origin->object.oid), head_oid);
1588 	}
1589 }
1590 
cmd_format_patch(int argc,const char ** argv,const char * prefix)1591 int cmd_format_patch(int argc, const char **argv, const char *prefix)
1592 {
1593 	struct commit *commit;
1594 	struct commit **list = NULL;
1595 	struct rev_info rev;
1596 	struct setup_revision_opt s_r_opt;
1597 	int nr = 0, total, i;
1598 	int use_stdout = 0;
1599 	int start_number = -1;
1600 	int just_numbers = 0;
1601 	int ignore_if_in_upstream = 0;
1602 	int cover_letter = -1;
1603 	int boundary_count = 0;
1604 	int no_binary_diff = 0;
1605 	int zero_commit = 0;
1606 	struct commit *origin = NULL;
1607 	const char *in_reply_to = NULL;
1608 	struct patch_ids ids;
1609 	struct strbuf buf = STRBUF_INIT;
1610 	int use_patch_format = 0;
1611 	int quiet = 0;
1612 	int reroll_count = -1;
1613 	char *cover_from_description_arg = NULL;
1614 	char *branch_name = NULL;
1615 	char *base_commit = NULL;
1616 	struct base_tree_info bases;
1617 	int show_progress = 0;
1618 	struct progress *progress = NULL;
1619 	struct oid_array idiff_prev = OID_ARRAY_INIT;
1620 	struct strbuf idiff_title = STRBUF_INIT;
1621 	const char *rdiff_prev = NULL;
1622 	struct strbuf rdiff1 = STRBUF_INIT;
1623 	struct strbuf rdiff2 = STRBUF_INIT;
1624 	struct strbuf rdiff_title = STRBUF_INIT;
1625 	int creation_factor = -1;
1626 
1627 	const struct option builtin_format_patch_options[] = {
1628 		{ OPTION_CALLBACK, 'n', "numbered", &numbered, NULL,
1629 			    N_("use [PATCH n/m] even with a single patch"),
1630 			    PARSE_OPT_NOARG, numbered_callback },
1631 		{ OPTION_CALLBACK, 'N', "no-numbered", &numbered, NULL,
1632 			    N_("use [PATCH] even with multiple patches"),
1633 			    PARSE_OPT_NOARG | PARSE_OPT_NONEG, no_numbered_callback },
1634 		OPT_BOOL('s', "signoff", &do_signoff, N_("add Signed-off-by:")),
1635 		OPT_BOOL(0, "stdout", &use_stdout,
1636 			    N_("print patches to standard out")),
1637 		OPT_BOOL(0, "cover-letter", &cover_letter,
1638 			    N_("generate a cover letter")),
1639 		OPT_BOOL(0, "numbered-files", &just_numbers,
1640 			    N_("use simple number sequence for output file names")),
1641 		OPT_STRING(0, "suffix", &fmt_patch_suffix, N_("sfx"),
1642 			    N_("use <sfx> instead of '.patch'")),
1643 		OPT_INTEGER(0, "start-number", &start_number,
1644 			    N_("start numbering patches at <n> instead of 1")),
1645 		OPT_INTEGER('v', "reroll-count", &reroll_count,
1646 			    N_("mark the series as Nth re-roll")),
1647 		{ OPTION_CALLBACK, 0, "rfc", &rev, NULL,
1648 			    N_("Use [RFC PATCH] instead of [PATCH]"),
1649 			    PARSE_OPT_NOARG | PARSE_OPT_NONEG, rfc_callback },
1650 		OPT_STRING(0, "cover-from-description", &cover_from_description_arg,
1651 			    N_("cover-from-description-mode"),
1652 			    N_("generate parts of a cover letter based on a branch's description")),
1653 		{ OPTION_CALLBACK, 0, "subject-prefix", &rev, N_("prefix"),
1654 			    N_("Use [<prefix>] instead of [PATCH]"),
1655 			    PARSE_OPT_NONEG, subject_prefix_callback },
1656 		{ OPTION_CALLBACK, 'o', "output-directory", &output_directory,
1657 			    N_("dir"), N_("store resulting files in <dir>"),
1658 			    PARSE_OPT_NONEG, output_directory_callback },
1659 		{ OPTION_CALLBACK, 'k', "keep-subject", &rev, NULL,
1660 			    N_("don't strip/add [PATCH]"),
1661 			    PARSE_OPT_NOARG | PARSE_OPT_NONEG, keep_callback },
1662 		OPT_BOOL(0, "no-binary", &no_binary_diff,
1663 			 N_("don't output binary diffs")),
1664 		OPT_BOOL(0, "zero-commit", &zero_commit,
1665 			 N_("output all-zero hash in From header")),
1666 		OPT_BOOL(0, "ignore-if-in-upstream", &ignore_if_in_upstream,
1667 			 N_("don't include a patch matching a commit upstream")),
1668 		OPT_SET_INT_F('p', "no-stat", &use_patch_format,
1669 			      N_("show patch format instead of default (patch + stat)"),
1670 			      1, PARSE_OPT_NONEG),
1671 		OPT_GROUP(N_("Messaging")),
1672 		{ OPTION_CALLBACK, 0, "add-header", NULL, N_("header"),
1673 			    N_("add email header"), 0, header_callback },
1674 		{ OPTION_CALLBACK, 0, "to", NULL, N_("email"), N_("add To: header"),
1675 			    0, to_callback },
1676 		{ OPTION_CALLBACK, 0, "cc", NULL, N_("email"), N_("add Cc: header"),
1677 			    0, cc_callback },
1678 		{ OPTION_CALLBACK, 0, "from", &from, N_("ident"),
1679 			    N_("set From address to <ident> (or committer ident if absent)"),
1680 			    PARSE_OPT_OPTARG, from_callback },
1681 		OPT_STRING(0, "in-reply-to", &in_reply_to, N_("message-id"),
1682 			    N_("make first mail a reply to <message-id>")),
1683 		{ OPTION_CALLBACK, 0, "attach", &rev, N_("boundary"),
1684 			    N_("attach the patch"), PARSE_OPT_OPTARG,
1685 			    attach_callback },
1686 		{ OPTION_CALLBACK, 0, "inline", &rev, N_("boundary"),
1687 			    N_("inline the patch"),
1688 			    PARSE_OPT_OPTARG | PARSE_OPT_NONEG,
1689 			    inline_callback },
1690 		{ OPTION_CALLBACK, 0, "thread", &thread, N_("style"),
1691 			    N_("enable message threading, styles: shallow, deep"),
1692 			    PARSE_OPT_OPTARG, thread_callback },
1693 		OPT_STRING(0, "signature", &signature, N_("signature"),
1694 			    N_("add a signature")),
1695 		OPT_STRING(0, "base", &base_commit, N_("base-commit"),
1696 			   N_("add prerequisite tree info to the patch series")),
1697 		OPT_FILENAME(0, "signature-file", &signature_file,
1698 				N_("add a signature from a file")),
1699 		OPT__QUIET(&quiet, N_("don't print the patch filenames")),
1700 		OPT_BOOL(0, "progress", &show_progress,
1701 			 N_("show progress while generating patches")),
1702 		OPT_CALLBACK(0, "interdiff", &idiff_prev, N_("rev"),
1703 			     N_("show changes against <rev> in cover letter or single patch"),
1704 			     parse_opt_object_name),
1705 		OPT_STRING(0, "range-diff", &rdiff_prev, N_("refspec"),
1706 			   N_("show changes against <refspec> in cover letter or single patch")),
1707 		OPT_INTEGER(0, "creation-factor", &creation_factor,
1708 			    N_("percentage by which creation is weighted")),
1709 		OPT_END()
1710 	};
1711 
1712 	extra_hdr.strdup_strings = 1;
1713 	extra_to.strdup_strings = 1;
1714 	extra_cc.strdup_strings = 1;
1715 	init_log_defaults();
1716 	init_display_notes(&notes_opt);
1717 	git_config(git_format_config, NULL);
1718 	repo_init_revisions(the_repository, &rev, prefix);
1719 	rev.show_notes = show_notes;
1720 	memcpy(&rev.notes_opt, &notes_opt, sizeof(notes_opt));
1721 	rev.commit_format = CMIT_FMT_EMAIL;
1722 	rev.expand_tabs_in_log_default = 0;
1723 	rev.verbose_header = 1;
1724 	rev.diff = 1;
1725 	rev.max_parents = 1;
1726 	rev.diffopt.flags.recursive = 1;
1727 	rev.subject_prefix = fmt_patch_subject_prefix;
1728 	memset(&s_r_opt, 0, sizeof(s_r_opt));
1729 	s_r_opt.def = "HEAD";
1730 	s_r_opt.revarg_opt = REVARG_COMMITTISH;
1731 
1732 	if (base_auto)
1733 		base_commit = "auto";
1734 
1735 	if (default_attach) {
1736 		rev.mime_boundary = default_attach;
1737 		rev.no_inline = 1;
1738 	}
1739 
1740 	/*
1741 	 * Parse the arguments before setup_revisions(), or something
1742 	 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
1743 	 * possibly a valid SHA1.
1744 	 */
1745 	argc = parse_options(argc, argv, prefix, builtin_format_patch_options,
1746 			     builtin_format_patch_usage,
1747 			     PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN |
1748 			     PARSE_OPT_KEEP_DASHDASH);
1749 
1750 	if (cover_from_description_arg)
1751 		cover_from_description_mode = parse_cover_from_description(cover_from_description_arg);
1752 
1753 	if (0 < reroll_count) {
1754 		struct strbuf sprefix = STRBUF_INIT;
1755 		strbuf_addf(&sprefix, "%s v%d",
1756 			    rev.subject_prefix, reroll_count);
1757 		rev.reroll_count = reroll_count;
1758 		rev.subject_prefix = strbuf_detach(&sprefix, NULL);
1759 	}
1760 
1761 	for (i = 0; i < extra_hdr.nr; i++) {
1762 		strbuf_addstr(&buf, extra_hdr.items[i].string);
1763 		strbuf_addch(&buf, '\n');
1764 	}
1765 
1766 	if (extra_to.nr)
1767 		strbuf_addstr(&buf, "To: ");
1768 	for (i = 0; i < extra_to.nr; i++) {
1769 		if (i)
1770 			strbuf_addstr(&buf, "    ");
1771 		strbuf_addstr(&buf, extra_to.items[i].string);
1772 		if (i + 1 < extra_to.nr)
1773 			strbuf_addch(&buf, ',');
1774 		strbuf_addch(&buf, '\n');
1775 	}
1776 
1777 	if (extra_cc.nr)
1778 		strbuf_addstr(&buf, "Cc: ");
1779 	for (i = 0; i < extra_cc.nr; i++) {
1780 		if (i)
1781 			strbuf_addstr(&buf, "    ");
1782 		strbuf_addstr(&buf, extra_cc.items[i].string);
1783 		if (i + 1 < extra_cc.nr)
1784 			strbuf_addch(&buf, ',');
1785 		strbuf_addch(&buf, '\n');
1786 	}
1787 
1788 	rev.extra_headers = strbuf_detach(&buf, NULL);
1789 
1790 	if (from) {
1791 		if (split_ident_line(&rev.from_ident, from, strlen(from)))
1792 			die(_("invalid ident line: %s"), from);
1793 	}
1794 
1795 	if (start_number < 0)
1796 		start_number = 1;
1797 
1798 	/*
1799 	 * If numbered is set solely due to format.numbered in config,
1800 	 * and it would conflict with --keep-subject (-k) from the
1801 	 * command line, reset "numbered".
1802 	 */
1803 	if (numbered && keep_subject && !numbered_cmdline_opt)
1804 		numbered = 0;
1805 
1806 	if (numbered && keep_subject)
1807 		die(_("-n and -k are mutually exclusive"));
1808 	if (keep_subject && subject_prefix)
1809 		die(_("--subject-prefix/--rfc and -k are mutually exclusive"));
1810 	rev.preserve_subject = keep_subject;
1811 
1812 	argc = setup_revisions(argc, argv, &rev, &s_r_opt);
1813 	if (argc > 1)
1814 		die(_("unrecognized argument: %s"), argv[1]);
1815 
1816 	if (rev.diffopt.output_format & DIFF_FORMAT_NAME)
1817 		die(_("--name-only does not make sense"));
1818 	if (rev.diffopt.output_format & DIFF_FORMAT_NAME_STATUS)
1819 		die(_("--name-status does not make sense"));
1820 	if (rev.diffopt.output_format & DIFF_FORMAT_CHECKDIFF)
1821 		die(_("--check does not make sense"));
1822 
1823 	if (!use_patch_format &&
1824 		(!rev.diffopt.output_format ||
1825 		 rev.diffopt.output_format == DIFF_FORMAT_PATCH))
1826 		rev.diffopt.output_format = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_SUMMARY;
1827 	if (!rev.diffopt.stat_width)
1828 		rev.diffopt.stat_width = MAIL_DEFAULT_WRAP;
1829 
1830 	/* Always generate a patch */
1831 	rev.diffopt.output_format |= DIFF_FORMAT_PATCH;
1832 
1833 	rev.zero_commit = zero_commit;
1834 
1835 	if (!rev.diffopt.flags.text && !no_binary_diff)
1836 		rev.diffopt.flags.binary = 1;
1837 
1838 	if (rev.show_notes)
1839 		load_display_notes(&rev.notes_opt);
1840 
1841 	if (!output_directory && !use_stdout)
1842 		output_directory = config_output_directory;
1843 
1844 	if (!use_stdout)
1845 		output_directory = set_outdir(prefix, output_directory);
1846 	else
1847 		setup_pager();
1848 
1849 	if (output_directory) {
1850 		int saved;
1851 		if (rev.diffopt.use_color != GIT_COLOR_ALWAYS)
1852 			rev.diffopt.use_color = GIT_COLOR_NEVER;
1853 		if (use_stdout)
1854 			die(_("standard output, or directory, which one?"));
1855 		/*
1856 		 * We consider <outdir> as 'outside of gitdir', therefore avoid
1857 		 * applying adjust_shared_perm in s-c-l-d.
1858 		 */
1859 		saved = get_shared_repository();
1860 		set_shared_repository(0);
1861 		switch (safe_create_leading_directories_const(output_directory)) {
1862 		case SCLD_OK:
1863 		case SCLD_EXISTS:
1864 			break;
1865 		default:
1866 			die(_("could not create leading directories "
1867 			      "of '%s'"), output_directory);
1868 		}
1869 		set_shared_repository(saved);
1870 		if (mkdir(output_directory, 0777) < 0 && errno != EEXIST)
1871 			die_errno(_("could not create directory '%s'"),
1872 				  output_directory);
1873 	}
1874 
1875 	if (rev.pending.nr == 1) {
1876 		int check_head = 0;
1877 
1878 		if (rev.max_count < 0 && !rev.show_root_diff) {
1879 			/*
1880 			 * This is traditional behaviour of "git format-patch
1881 			 * origin" that prepares what the origin side still
1882 			 * does not have.
1883 			 */
1884 			rev.pending.objects[0].item->flags |= UNINTERESTING;
1885 			add_head_to_pending(&rev);
1886 			check_head = 1;
1887 		}
1888 		/*
1889 		 * Otherwise, it is "format-patch -22 HEAD", and/or
1890 		 * "format-patch --root HEAD".  The user wants
1891 		 * get_revision() to do the usual traversal.
1892 		 */
1893 
1894 		if (!strcmp(rev.pending.objects[0].name, "HEAD"))
1895 			check_head = 1;
1896 
1897 		if (check_head) {
1898 			const char *ref, *v;
1899 			ref = resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,
1900 						 NULL, NULL);
1901 			if (ref && skip_prefix(ref, "refs/heads/", &v))
1902 				branch_name = xstrdup(v);
1903 			else
1904 				branch_name = xstrdup(""); /* no branch */
1905 		}
1906 	}
1907 
1908 	/*
1909 	 * We cannot move this anywhere earlier because we do want to
1910 	 * know if --root was given explicitly from the command line.
1911 	 */
1912 	rev.show_root_diff = 1;
1913 
1914 	if (ignore_if_in_upstream) {
1915 		/* Don't say anything if head and upstream are the same. */
1916 		if (rev.pending.nr == 2) {
1917 			struct object_array_entry *o = rev.pending.objects;
1918 			if (oideq(&o[0].item->oid, &o[1].item->oid))
1919 				goto done;
1920 		}
1921 		get_patch_ids(&rev, &ids);
1922 	}
1923 
1924 	if (prepare_revision_walk(&rev))
1925 		die(_("revision walk setup failed"));
1926 	rev.boundary = 1;
1927 	while ((commit = get_revision(&rev)) != NULL) {
1928 		if (commit->object.flags & BOUNDARY) {
1929 			boundary_count++;
1930 			origin = (boundary_count == 1) ? commit : NULL;
1931 			continue;
1932 		}
1933 
1934 		if (ignore_if_in_upstream && has_commit_patch_id(commit, &ids))
1935 			continue;
1936 
1937 		nr++;
1938 		REALLOC_ARRAY(list, nr);
1939 		list[nr - 1] = commit;
1940 	}
1941 	if (nr == 0)
1942 		/* nothing to do */
1943 		goto done;
1944 	total = nr;
1945 	if (cover_letter == -1) {
1946 		if (config_cover_letter == COVER_AUTO)
1947 			cover_letter = (total > 1);
1948 		else
1949 			cover_letter = (config_cover_letter == COVER_ON);
1950 	}
1951 	if (!keep_subject && auto_number && (total > 1 || cover_letter))
1952 		numbered = 1;
1953 	if (numbered)
1954 		rev.total = total + start_number - 1;
1955 
1956 	if (idiff_prev.nr) {
1957 		if (!cover_letter && total != 1)
1958 			die(_("--interdiff requires --cover-letter or single patch"));
1959 		rev.idiff_oid1 = &idiff_prev.oid[idiff_prev.nr - 1];
1960 		rev.idiff_oid2 = get_commit_tree_oid(list[0]);
1961 		rev.idiff_title = diff_title(&idiff_title, reroll_count,
1962 					     _("Interdiff:"),
1963 					     _("Interdiff against v%d:"));
1964 	}
1965 
1966 	if (creation_factor < 0)
1967 		creation_factor = RANGE_DIFF_CREATION_FACTOR_DEFAULT;
1968 	else if (!rdiff_prev)
1969 		die(_("--creation-factor requires --range-diff"));
1970 
1971 	if (rdiff_prev) {
1972 		if (!cover_letter && total != 1)
1973 			die(_("--range-diff requires --cover-letter or single patch"));
1974 
1975 		infer_range_diff_ranges(&rdiff1, &rdiff2, rdiff_prev,
1976 					origin, list[0]);
1977 		rev.rdiff1 = rdiff1.buf;
1978 		rev.rdiff2 = rdiff2.buf;
1979 		rev.creation_factor = creation_factor;
1980 		rev.rdiff_title = diff_title(&rdiff_title, reroll_count,
1981 					     _("Range-diff:"),
1982 					     _("Range-diff against v%d:"));
1983 	}
1984 
1985 	if (!signature) {
1986 		; /* --no-signature inhibits all signatures */
1987 	} else if (signature && signature != git_version_string) {
1988 		; /* non-default signature already set */
1989 	} else if (signature_file) {
1990 		struct strbuf buf = STRBUF_INIT;
1991 
1992 		if (strbuf_read_file(&buf, signature_file, 128) < 0)
1993 			die_errno(_("unable to read signature file '%s'"), signature_file);
1994 		signature = strbuf_detach(&buf, NULL);
1995 	}
1996 
1997 	memset(&bases, 0, sizeof(bases));
1998 	if (base_commit) {
1999 		struct commit *base = get_base_commit(base_commit, list, nr);
2000 		reset_revision_walk();
2001 		clear_object_flags(UNINTERESTING);
2002 		prepare_bases(&bases, base, list, nr);
2003 	}
2004 
2005 	if (in_reply_to || thread || cover_letter)
2006 		rev.ref_message_ids = xcalloc(1, sizeof(struct string_list));
2007 	if (in_reply_to) {
2008 		const char *msgid = clean_message_id(in_reply_to);
2009 		string_list_append(rev.ref_message_ids, msgid);
2010 	}
2011 	rev.numbered_files = just_numbers;
2012 	rev.patch_suffix = fmt_patch_suffix;
2013 	if (cover_letter) {
2014 		if (thread)
2015 			gen_message_id(&rev, "cover");
2016 		make_cover_letter(&rev, use_stdout,
2017 				  origin, nr, list, branch_name, quiet);
2018 		print_bases(&bases, rev.diffopt.file);
2019 		print_signature(rev.diffopt.file);
2020 		total++;
2021 		start_number--;
2022 		/* interdiff/range-diff in cover-letter; omit from patches */
2023 		rev.idiff_oid1 = NULL;
2024 		rev.rdiff1 = NULL;
2025 	}
2026 	rev.add_signoff = do_signoff;
2027 
2028 	if (show_progress)
2029 		progress = start_delayed_progress(_("Generating patches"), total);
2030 	while (0 <= --nr) {
2031 		int shown;
2032 		display_progress(progress, total - nr);
2033 		commit = list[nr];
2034 		rev.nr = total - nr + (start_number - 1);
2035 		/* Make the second and subsequent mails replies to the first */
2036 		if (thread) {
2037 			/* Have we already had a message ID? */
2038 			if (rev.message_id) {
2039 				/*
2040 				 * For deep threading: make every mail
2041 				 * a reply to the previous one, no
2042 				 * matter what other options are set.
2043 				 *
2044 				 * For shallow threading:
2045 				 *
2046 				 * Without --cover-letter and
2047 				 * --in-reply-to, make every mail a
2048 				 * reply to the one before.
2049 				 *
2050 				 * With --in-reply-to but no
2051 				 * --cover-letter, make every mail a
2052 				 * reply to the <reply-to>.
2053 				 *
2054 				 * With --cover-letter, make every
2055 				 * mail but the cover letter a reply
2056 				 * to the cover letter.  The cover
2057 				 * letter is a reply to the
2058 				 * --in-reply-to, if specified.
2059 				 */
2060 				if (thread == THREAD_SHALLOW
2061 				    && rev.ref_message_ids->nr > 0
2062 				    && (!cover_letter || rev.nr > 1))
2063 					free(rev.message_id);
2064 				else
2065 					string_list_append(rev.ref_message_ids,
2066 							   rev.message_id);
2067 			}
2068 			gen_message_id(&rev, oid_to_hex(&commit->object.oid));
2069 		}
2070 
2071 		if (!use_stdout &&
2072 		    open_next_file(rev.numbered_files ? NULL : commit, NULL, &rev, quiet))
2073 			die(_("failed to create output files"));
2074 		shown = log_tree_commit(&rev, commit);
2075 		free_commit_buffer(the_repository->parsed_objects,
2076 				   commit);
2077 
2078 		/* We put one extra blank line between formatted
2079 		 * patches and this flag is used by log-tree code
2080 		 * to see if it needs to emit a LF before showing
2081 		 * the log; when using one file per patch, we do
2082 		 * not want the extra blank line.
2083 		 */
2084 		if (!use_stdout)
2085 			rev.shown_one = 0;
2086 		if (shown) {
2087 			print_bases(&bases, rev.diffopt.file);
2088 			if (rev.mime_boundary)
2089 				fprintf(rev.diffopt.file, "\n--%s%s--\n\n\n",
2090 				       mime_boundary_leader,
2091 				       rev.mime_boundary);
2092 			else
2093 				print_signature(rev.diffopt.file);
2094 		}
2095 		if (!use_stdout)
2096 			fclose(rev.diffopt.file);
2097 	}
2098 	stop_progress(&progress);
2099 	free(list);
2100 	free(branch_name);
2101 	string_list_clear(&extra_to, 0);
2102 	string_list_clear(&extra_cc, 0);
2103 	string_list_clear(&extra_hdr, 0);
2104 	if (ignore_if_in_upstream)
2105 		free_patch_ids(&ids);
2106 
2107 done:
2108 	oid_array_clear(&idiff_prev);
2109 	strbuf_release(&idiff_title);
2110 	strbuf_release(&rdiff1);
2111 	strbuf_release(&rdiff2);
2112 	strbuf_release(&rdiff_title);
2113 	return 0;
2114 }
2115 
add_pending_commit(const char * arg,struct rev_info * revs,int flags)2116 static int add_pending_commit(const char *arg, struct rev_info *revs, int flags)
2117 {
2118 	struct object_id oid;
2119 	if (get_oid(arg, &oid) == 0) {
2120 		struct commit *commit = lookup_commit_reference(the_repository,
2121 								&oid);
2122 		if (commit) {
2123 			commit->object.flags |= flags;
2124 			add_pending_object(revs, &commit->object, arg);
2125 			return 0;
2126 		}
2127 	}
2128 	return -1;
2129 }
2130 
2131 static const char * const cherry_usage[] = {
2132 	N_("git cherry [-v] [<upstream> [<head> [<limit>]]]"),
2133 	NULL
2134 };
2135 
print_commit(char sign,struct commit * commit,int verbose,int abbrev,FILE * file)2136 static void print_commit(char sign, struct commit *commit, int verbose,
2137 			 int abbrev, FILE *file)
2138 {
2139 	if (!verbose) {
2140 		fprintf(file, "%c %s\n", sign,
2141 		       find_unique_abbrev(&commit->object.oid, abbrev));
2142 	} else {
2143 		struct strbuf buf = STRBUF_INIT;
2144 		pp_commit_easy(CMIT_FMT_ONELINE, commit, &buf);
2145 		fprintf(file, "%c %s %s\n", sign,
2146 		       find_unique_abbrev(&commit->object.oid, abbrev),
2147 		       buf.buf);
2148 		strbuf_release(&buf);
2149 	}
2150 }
2151 
cmd_cherry(int argc,const char ** argv,const char * prefix)2152 int cmd_cherry(int argc, const char **argv, const char *prefix)
2153 {
2154 	struct rev_info revs;
2155 	struct patch_ids ids;
2156 	struct commit *commit;
2157 	struct commit_list *list = NULL;
2158 	struct branch *current_branch;
2159 	const char *upstream;
2160 	const char *head = "HEAD";
2161 	const char *limit = NULL;
2162 	int verbose = 0, abbrev = 0;
2163 
2164 	struct option options[] = {
2165 		OPT__ABBREV(&abbrev),
2166 		OPT__VERBOSE(&verbose, N_("be verbose")),
2167 		OPT_END()
2168 	};
2169 
2170 	argc = parse_options(argc, argv, prefix, options, cherry_usage, 0);
2171 
2172 	switch (argc) {
2173 	case 3:
2174 		limit = argv[2];
2175 		/* FALLTHROUGH */
2176 	case 2:
2177 		head = argv[1];
2178 		/* FALLTHROUGH */
2179 	case 1:
2180 		upstream = argv[0];
2181 		break;
2182 	default:
2183 		current_branch = branch_get(NULL);
2184 		upstream = branch_get_upstream(current_branch, NULL);
2185 		if (!upstream) {
2186 			fprintf(stderr, _("Could not find a tracked"
2187 					" remote branch, please"
2188 					" specify <upstream> manually.\n"));
2189 			usage_with_options(cherry_usage, options);
2190 		}
2191 	}
2192 
2193 	repo_init_revisions(the_repository, &revs, prefix);
2194 	revs.max_parents = 1;
2195 
2196 	if (add_pending_commit(head, &revs, 0))
2197 		die(_("unknown commit %s"), head);
2198 	if (add_pending_commit(upstream, &revs, UNINTERESTING))
2199 		die(_("unknown commit %s"), upstream);
2200 
2201 	/* Don't say anything if head and upstream are the same. */
2202 	if (revs.pending.nr == 2) {
2203 		struct object_array_entry *o = revs.pending.objects;
2204 		if (oideq(&o[0].item->oid, &o[1].item->oid))
2205 			return 0;
2206 	}
2207 
2208 	get_patch_ids(&revs, &ids);
2209 
2210 	if (limit && add_pending_commit(limit, &revs, UNINTERESTING))
2211 		die(_("unknown commit %s"), limit);
2212 
2213 	/* reverse the list of commits */
2214 	if (prepare_revision_walk(&revs))
2215 		die(_("revision walk setup failed"));
2216 	while ((commit = get_revision(&revs)) != NULL) {
2217 		commit_list_insert(commit, &list);
2218 	}
2219 
2220 	while (list) {
2221 		char sign = '+';
2222 
2223 		commit = list->item;
2224 		if (has_commit_patch_id(commit, &ids))
2225 			sign = '-';
2226 		print_commit(sign, commit, verbose, abbrev, revs.diffopt.file);
2227 		list = list->next;
2228 	}
2229 
2230 	free_patch_ids(&ids);
2231 	return 0;
2232 }
2233