]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/am.c
am: support --show-current-patch=raw as a synonym for--show-current-patch
[thirdparty/git.git] / builtin / am.c
CommitLineData
73c2779f
PT
1/*
2 * Builtin "git am"
3 *
4 * Based on git-am.sh by Junio C Hamano.
5 */
f8adbec9 6#define USE_THE_INDEX_COMPATIBILITY_MACROS
73c2779f 7#include "cache.h"
b2141fc1 8#include "config.h"
73c2779f 9#include "builtin.h"
d807c4a0 10#include "exec-cmd.h"
8c3bd9e2
PT
11#include "parse-options.h"
12#include "dir.h"
11c2177f 13#include "run-command.h"
3e20dcf3 14#include "quote.h"
db86e61c 15#include "tempfile.h"
38a824fe 16#include "lockfile.h"
c9e8d960
PT
17#include "cache-tree.h"
18#include "refs.h"
19#include "commit.h"
32a5fcbf
PT
20#include "diff.h"
21#include "diffcore.h"
9990080c
PT
22#include "unpack-trees.h"
23#include "branch.h"
eb898b83 24#include "sequencer.h"
84f3de28
PT
25#include "revision.h"
26#include "merge-recursive.h"
df2760a5 27#include "log-tree.h"
88b291fe 28#include "notes-utils.h"
f1cb96d6 29#include "rerere.h"
7ff26832 30#include "prompt.h"
4b98bae2 31#include "mailinfo.h"
edfac5eb 32#include "apply.h"
a77598ef 33#include "string-list.h"
3836d88a 34#include "packfile.h"
f86bcc7b 35#include "repository.h"
3e20dcf3 36
38a824fe
PT
37/**
38 * Returns the length of the first line of msg.
39 */
40static int linelen(const char *msg)
41{
42 return strchrnul(msg, '\n') - msg;
43}
44
5ae41c79
PT
45/**
46 * Returns true if `str` consists of only whitespace, false otherwise.
47 */
48static int str_isspace(const char *str)
49{
50 for (; *str; str++)
51 if (!isspace(*str))
52 return 0;
53
54 return 1;
55}
56
11c2177f
PT
57enum patch_format {
58 PATCH_FORMAT_UNKNOWN = 0,
5ae41c79 59 PATCH_FORMAT_MBOX,
336108c1 60 PATCH_FORMAT_STGIT,
94cd175c 61 PATCH_FORMAT_STGIT_SERIES,
d9925d1a
EW
62 PATCH_FORMAT_HG,
63 PATCH_FORMAT_MBOXRD
11c2177f 64};
8c3bd9e2 65
4f1b6961
PT
66enum keep_type {
67 KEEP_FALSE = 0,
68 KEEP_TRUE, /* pass -k flag to git-mailinfo */
69 KEEP_NON_PATCH /* pass -b flag to git-mailinfo */
70};
71
9b646617
PT
72enum scissors_type {
73 SCISSORS_UNSET = -1,
74 SCISSORS_FALSE = 0, /* pass --no-scissors to git-mailinfo */
75 SCISSORS_TRUE /* pass --scissors to git-mailinfo */
76};
77
b5e82359
PT
78enum signoff_type {
79 SIGNOFF_FALSE = 0,
80 SIGNOFF_TRUE = 1,
81 SIGNOFF_EXPLICIT /* --signoff was set on the command-line */
82};
83
f3b48228
PB
84enum show_patch_type {
85 SHOW_PATCH_RAW = 0,
86};
87
8c3bd9e2
PT
88struct am_state {
89 /* state directory path */
90 char *dir;
91
92 /* current and last patch numbers, 1-indexed */
93 int cur;
94 int last;
11c2177f 95
3e20dcf3
PT
96 /* commit metadata and message */
97 char *author_name;
98 char *author_email;
99 char *author_date;
100 char *msg;
101 size_t msg_len;
102
13b97ea5 103 /* when --rebasing, records the original commit the patch came from */
8c88769b 104 struct object_id orig_commit;
13b97ea5 105
11c2177f
PT
106 /* number of digits in patch filename */
107 int prec;
5d28cf78
PT
108
109 /* various operating modes and command line options */
7ff26832 110 int interactive;
84f3de28 111 int threeway;
5d28cf78 112 int quiet;
b5e82359 113 int signoff; /* enum signoff_type */
ef7ee16d 114 int utf8;
4f1b6961 115 int keep; /* enum keep_type */
702cbaad 116 int message_id;
9b646617 117 int scissors; /* enum scissors_type */
257e8cec 118 struct argv_array git_apply_opts;
2d83109a 119 const char *resolvemsg;
0cd4bcba 120 int committer_date_is_author_date;
f07adb62 121 int ignore_date;
f1cb96d6 122 int allow_rerere_autoupdate;
7e35dacb 123 const char *sign_commit;
35bdcc59 124 int rebasing;
8c3bd9e2
PT
125};
126
127/**
16d2676c 128 * Initializes am_state with the default values.
8c3bd9e2 129 */
16d2676c 130static void am_state_init(struct am_state *state)
8c3bd9e2 131{
7e35dacb
PT
132 int gpgsign;
133
8c3bd9e2
PT
134 memset(state, 0, sizeof(*state));
135
16d2676c 136 state->dir = git_pathdup("rebase-apply");
11c2177f
PT
137
138 state->prec = 4;
ef7ee16d 139
e97a5e76
RL
140 git_config_get_bool("am.threeway", &state->threeway);
141
ef7ee16d 142 state->utf8 = 1;
702cbaad
PT
143
144 git_config_get_bool("am.messageid", &state->message_id);
9b646617
PT
145
146 state->scissors = SCISSORS_UNSET;
257e8cec
PT
147
148 argv_array_init(&state->git_apply_opts);
7e35dacb
PT
149
150 if (!git_config_get_bool("commit.gpgsign", &gpgsign))
151 state->sign_commit = gpgsign ? "" : NULL;
8c3bd9e2
PT
152}
153
154/**
155 * Releases memory allocated by an am_state.
156 */
157static void am_state_release(struct am_state *state)
158{
159 free(state->dir);
3e20dcf3
PT
160 free(state->author_name);
161 free(state->author_email);
162 free(state->author_date);
163 free(state->msg);
257e8cec 164 argv_array_clear(&state->git_apply_opts);
8c3bd9e2
PT
165}
166
167/**
168 * Returns path relative to the am_state directory.
169 */
170static inline const char *am_path(const struct am_state *state, const char *path)
171{
172 return mkpath("%s/%s", state->dir, path);
173}
174
25b763ba
JH
175/**
176 * For convenience to call write_file()
177 */
1dad879a
RS
178static void write_state_text(const struct am_state *state,
179 const char *name, const char *string)
25b763ba 180{
1dad879a 181 write_file(am_path(state, name), "%s", string);
25b763ba
JH
182}
183
1dad879a
RS
184static void write_state_count(const struct am_state *state,
185 const char *name, int value)
25b763ba 186{
1dad879a 187 write_file(am_path(state, name), "%d", value);
25b763ba
JH
188}
189
1dad879a
RS
190static void write_state_bool(const struct am_state *state,
191 const char *name, int value)
25b763ba 192{
1dad879a 193 write_state_text(state, name, value ? "t" : "f");
25b763ba
JH
194}
195
5d28cf78
PT
196/**
197 * If state->quiet is false, calls fprintf(fp, fmt, ...), and appends a newline
198 * at the end.
199 */
200static void say(const struct am_state *state, FILE *fp, const char *fmt, ...)
201{
202 va_list ap;
203
204 va_start(ap, fmt);
205 if (!state->quiet) {
206 vfprintf(fp, fmt, ap);
207 putc('\n', fp);
208 }
209 va_end(ap);
210}
211
8c3bd9e2
PT
212/**
213 * Returns 1 if there is an am session in progress, 0 otherwise.
214 */
215static int am_in_progress(const struct am_state *state)
216{
217 struct stat st;
218
219 if (lstat(state->dir, &st) < 0 || !S_ISDIR(st.st_mode))
220 return 0;
221 if (lstat(am_path(state, "last"), &st) || !S_ISREG(st.st_mode))
222 return 0;
223 if (lstat(am_path(state, "next"), &st) || !S_ISREG(st.st_mode))
224 return 0;
225 return 1;
226}
227
228/**
229 * Reads the contents of `file` in the `state` directory into `sb`. Returns the
230 * number of bytes read on success, -1 if the file does not exist. If `trim` is
231 * set, trailing whitespace will be removed.
232 */
233static int read_state_file(struct strbuf *sb, const struct am_state *state,
234 const char *file, int trim)
235{
236 strbuf_reset(sb);
237
238 if (strbuf_read_file(sb, am_path(state, file), 0) >= 0) {
239 if (trim)
240 strbuf_trim(sb);
241
242 return sb->len;
243 }
244
245 if (errno == ENOENT)
246 return -1;
247
248 die_errno(_("could not read '%s'"), am_path(state, file));
249}
250
3e20dcf3
PT
251/**
252 * Reads and parses the state directory's "author-script" file, and sets
253 * state->author_name, state->author_email and state->author_date accordingly.
254 * Returns 0 on success, -1 if the file could not be parsed.
255 *
256 * The author script is of the format:
257 *
258 * GIT_AUTHOR_NAME='$author_name'
259 * GIT_AUTHOR_EMAIL='$author_email'
260 * GIT_AUTHOR_DATE='$author_date'
261 *
262 * where $author_name, $author_email and $author_date are quoted. We are strict
263 * with our parsing, as the file was meant to be eval'd in the old git-am.sh
264 * script, and thus if the file differs from what this function expects, it is
265 * better to bail out than to do something that the user does not expect.
266 */
a75d3513 267static int read_am_author_script(struct am_state *state)
3e20dcf3
PT
268{
269 const char *filename = am_path(state, "author-script");
3e20dcf3
PT
270
271 assert(!state->author_name);
272 assert(!state->author_email);
273 assert(!state->author_date);
274
bcd33ec2
PW
275 return read_author_script(filename, &state->author_name,
276 &state->author_email, &state->author_date, 1);
3e20dcf3
PT
277}
278
279/**
280 * Saves state->author_name, state->author_email and state->author_date in the
281 * state directory's "author-script" file.
282 */
283static void write_author_script(const struct am_state *state)
284{
285 struct strbuf sb = STRBUF_INIT;
286
287 strbuf_addstr(&sb, "GIT_AUTHOR_NAME=");
288 sq_quote_buf(&sb, state->author_name);
289 strbuf_addch(&sb, '\n');
290
291 strbuf_addstr(&sb, "GIT_AUTHOR_EMAIL=");
292 sq_quote_buf(&sb, state->author_email);
293 strbuf_addch(&sb, '\n');
294
295 strbuf_addstr(&sb, "GIT_AUTHOR_DATE=");
296 sq_quote_buf(&sb, state->author_date);
297 strbuf_addch(&sb, '\n');
298
25b763ba 299 write_state_text(state, "author-script", sb.buf);
3e20dcf3
PT
300
301 strbuf_release(&sb);
302}
303
304/**
305 * Reads the commit message from the state directory's "final-commit" file,
306 * setting state->msg to its contents and state->msg_len to the length of its
307 * contents in bytes.
308 *
309 * Returns 0 on success, -1 if the file does not exist.
310 */
311static int read_commit_msg(struct am_state *state)
312{
313 struct strbuf sb = STRBUF_INIT;
314
315 assert(!state->msg);
316
317 if (read_state_file(&sb, state, "final-commit", 0) < 0) {
318 strbuf_release(&sb);
319 return -1;
320 }
321
322 state->msg = strbuf_detach(&sb, &state->msg_len);
323 return 0;
324}
325
326/**
327 * Saves state->msg in the state directory's "final-commit" file.
328 */
329static void write_commit_msg(const struct am_state *state)
330{
3e20dcf3 331 const char *filename = am_path(state, "final-commit");
e78d5d49 332 write_file_buf(filename, state->msg, state->msg_len);
3e20dcf3
PT
333}
334
8c3bd9e2
PT
335/**
336 * Loads state from disk.
337 */
338static void am_load(struct am_state *state)
339{
340 struct strbuf sb = STRBUF_INIT;
341
342 if (read_state_file(&sb, state, "next", 1) < 0)
033abf97 343 BUG("state file 'next' does not exist");
8c3bd9e2
PT
344 state->cur = strtol(sb.buf, NULL, 10);
345
346 if (read_state_file(&sb, state, "last", 1) < 0)
033abf97 347 BUG("state file 'last' does not exist");
8c3bd9e2
PT
348 state->last = strtol(sb.buf, NULL, 10);
349
a75d3513 350 if (read_am_author_script(state) < 0)
3e20dcf3
PT
351 die(_("could not parse author script"));
352
353 read_commit_msg(state);
354
13b97ea5 355 if (read_state_file(&sb, state, "original-commit", 1) < 0)
8c88769b 356 oidclr(&state->orig_commit);
357 else if (get_oid_hex(sb.buf, &state->orig_commit) < 0)
13b97ea5
PT
358 die(_("could not parse %s"), am_path(state, "original-commit"));
359
84f3de28
PT
360 read_state_file(&sb, state, "threeway", 1);
361 state->threeway = !strcmp(sb.buf, "t");
362
5d28cf78
PT
363 read_state_file(&sb, state, "quiet", 1);
364 state->quiet = !strcmp(sb.buf, "t");
365
eb898b83
PT
366 read_state_file(&sb, state, "sign", 1);
367 state->signoff = !strcmp(sb.buf, "t");
368
ef7ee16d
PT
369 read_state_file(&sb, state, "utf8", 1);
370 state->utf8 = !strcmp(sb.buf, "t");
371
fd4a3f48
PW
372 if (file_exists(am_path(state, "rerere-autoupdate"))) {
373 read_state_file(&sb, state, "rerere-autoupdate", 1);
374 state->allow_rerere_autoupdate = strcmp(sb.buf, "t") ?
375 RERERE_NOAUTOUPDATE : RERERE_AUTOUPDATE;
376 } else {
377 state->allow_rerere_autoupdate = 0;
378 }
379
4f1b6961
PT
380 read_state_file(&sb, state, "keep", 1);
381 if (!strcmp(sb.buf, "t"))
382 state->keep = KEEP_TRUE;
383 else if (!strcmp(sb.buf, "b"))
384 state->keep = KEEP_NON_PATCH;
385 else
386 state->keep = KEEP_FALSE;
387
702cbaad
PT
388 read_state_file(&sb, state, "messageid", 1);
389 state->message_id = !strcmp(sb.buf, "t");
390
9b646617
PT
391 read_state_file(&sb, state, "scissors", 1);
392 if (!strcmp(sb.buf, "t"))
393 state->scissors = SCISSORS_TRUE;
394 else if (!strcmp(sb.buf, "f"))
395 state->scissors = SCISSORS_FALSE;
396 else
397 state->scissors = SCISSORS_UNSET;
398
257e8cec
PT
399 read_state_file(&sb, state, "apply-opt", 1);
400 argv_array_clear(&state->git_apply_opts);
401 if (sq_dequote_to_argv_array(sb.buf, &state->git_apply_opts) < 0)
402 die(_("could not parse %s"), am_path(state, "apply-opt"));
403
35bdcc59
PT
404 state->rebasing = !!file_exists(am_path(state, "rebasing"));
405
8c3bd9e2
PT
406 strbuf_release(&sb);
407}
408
409/**
410 * Removes the am_state directory, forcefully terminating the current am
411 * session.
412 */
413static void am_destroy(const struct am_state *state)
414{
415 struct strbuf sb = STRBUF_INIT;
416
417 strbuf_addstr(&sb, state->dir);
418 remove_dir_recursively(&sb, 0);
419 strbuf_release(&sb);
420}
421
b8803d8f
PT
422/**
423 * Runs applypatch-msg hook. Returns its exit code.
424 */
425static int run_applypatch_msg_hook(struct am_state *state)
426{
427 int ret;
428
429 assert(state->msg);
430 ret = run_hook_le(NULL, "applypatch-msg", am_path(state, "final-commit"), NULL);
431
432 if (!ret) {
6a83d902 433 FREE_AND_NULL(state->msg);
b8803d8f
PT
434 if (read_commit_msg(state) < 0)
435 die(_("'%s' was deleted by the applypatch-msg hook"),
436 am_path(state, "final-commit"));
437 }
438
439 return ret;
440}
441
13b97ea5
PT
442/**
443 * Runs post-rewrite hook. Returns it exit code.
444 */
445static int run_post_rewrite_hook(const struct am_state *state)
446{
447 struct child_process cp = CHILD_PROCESS_INIT;
448 const char *hook = find_hook("post-rewrite");
449 int ret;
450
451 if (!hook)
452 return 0;
453
454 argv_array_push(&cp.args, hook);
455 argv_array_push(&cp.args, "rebase");
456
457 cp.in = xopen(am_path(state, "rewritten"), O_RDONLY);
458 cp.stdout_to_stderr = 1;
6206286e 459 cp.trace2_hook_name = "post-rewrite";
13b97ea5
PT
460
461 ret = run_command(&cp);
462
463 close(cp.in);
464 return ret;
465}
466
88b291fe
PT
467/**
468 * Reads the state directory's "rewritten" file, and copies notes from the old
469 * commits listed in the file to their rewritten commits.
470 *
471 * Returns 0 on success, -1 on failure.
472 */
473static int copy_notes_for_rebase(const struct am_state *state)
474{
475 struct notes_rewrite_cfg *c;
476 struct strbuf sb = STRBUF_INIT;
477 const char *invalid_line = _("Malformed input line: '%s'.");
478 const char *msg = "Notes added by 'git rebase'";
479 FILE *fp;
480 int ret = 0;
481
482 assert(state->rebasing);
483
484 c = init_copy_notes_for_rewrite("rebase");
485 if (!c)
486 return 0;
487
488 fp = xfopen(am_path(state, "rewritten"), "r");
489
8f309aeb 490 while (!strbuf_getline_lf(&sb, fp)) {
8c88769b 491 struct object_id from_obj, to_obj;
24dd363e 492 const char *p;
88b291fe 493
24dd363e 494 if (sb.len != the_hash_algo->hexsz * 2 + 1) {
88b291fe
PT
495 ret = error(invalid_line, sb.buf);
496 goto finish;
497 }
498
24dd363e 499 if (parse_oid_hex(sb.buf, &from_obj, &p)) {
88b291fe
PT
500 ret = error(invalid_line, sb.buf);
501 goto finish;
502 }
503
24dd363e 504 if (*p != ' ') {
88b291fe
PT
505 ret = error(invalid_line, sb.buf);
506 goto finish;
507 }
508
24dd363e 509 if (get_oid_hex(p + 1, &to_obj)) {
88b291fe
PT
510 ret = error(invalid_line, sb.buf);
511 goto finish;
512 }
513
bb7e4739 514 if (copy_note_for_rewrite(c, &from_obj, &to_obj))
88b291fe 515 ret = error(_("Failed to copy notes from '%s' to '%s'"),
8c88769b 516 oid_to_hex(&from_obj), oid_to_hex(&to_obj));
88b291fe
PT
517 }
518
519finish:
1d18d758 520 finish_copy_notes_for_rewrite(the_repository, c, msg);
88b291fe
PT
521 fclose(fp);
522 strbuf_release(&sb);
523 return ret;
524}
525
c29807b2
PT
526/**
527 * Determines if the file looks like a piece of RFC2822 mail by grabbing all
528 * non-indented lines and checking if they look like they begin with valid
529 * header field names.
530 *
531 * Returns 1 if the file looks like a piece of mail, 0 otherwise.
532 */
533static int is_mail(FILE *fp)
534{
535 const char *header_regex = "^[!-9;-~]+:";
536 struct strbuf sb = STRBUF_INIT;
537 regex_t regex;
538 int ret = 1;
539
540 if (fseek(fp, 0L, SEEK_SET))
541 die_errno(_("fseek failed"));
542
543 if (regcomp(&regex, header_regex, REG_NOSUB | REG_EXTENDED))
544 die("invalid pattern: %s", header_regex);
545
1a0c8dfd 546 while (!strbuf_getline(&sb, fp)) {
c29807b2
PT
547 if (!sb.len)
548 break; /* End of header */
549
550 /* Ignore indented folded lines */
551 if (*sb.buf == '\t' || *sb.buf == ' ')
552 continue;
553
554 /* It's a header if it matches header_regex */
555 if (regexec(&regex, sb.buf, 0, NULL, 0)) {
556 ret = 0;
557 goto done;
558 }
559 }
560
561done:
562 regfree(&regex);
563 strbuf_release(&sb);
564 return ret;
565}
566
567/**
568 * Attempts to detect the patch_format of the patches contained in `paths`,
569 * returning the PATCH_FORMAT_* enum value. Returns PATCH_FORMAT_UNKNOWN if
570 * detection fails.
571 */
572static int detect_patch_format(const char **paths)
573{
574 enum patch_format ret = PATCH_FORMAT_UNKNOWN;
575 struct strbuf l1 = STRBUF_INIT;
5ae41c79
PT
576 struct strbuf l2 = STRBUF_INIT;
577 struct strbuf l3 = STRBUF_INIT;
c29807b2
PT
578 FILE *fp;
579
580 /*
581 * We default to mbox format if input is from stdin and for directories
582 */
583 if (!*paths || !strcmp(*paths, "-") || is_directory(*paths))
584 return PATCH_FORMAT_MBOX;
585
586 /*
587 * Otherwise, check the first few lines of the first patch, starting
588 * from the first non-blank line, to try to detect its format.
589 */
590
591 fp = xfopen(*paths, "r");
592
1a0c8dfd 593 while (!strbuf_getline(&l1, fp)) {
c29807b2
PT
594 if (l1.len)
595 break;
596 }
597
598 if (starts_with(l1.buf, "From ") || starts_with(l1.buf, "From: ")) {
599 ret = PATCH_FORMAT_MBOX;
600 goto done;
601 }
602
336108c1
PT
603 if (starts_with(l1.buf, "# This series applies on GIT commit")) {
604 ret = PATCH_FORMAT_STGIT_SERIES;
605 goto done;
606 }
607
94cd175c
PT
608 if (!strcmp(l1.buf, "# HG changeset patch")) {
609 ret = PATCH_FORMAT_HG;
610 goto done;
611 }
612
1a0c8dfd 613 strbuf_getline(&l2, fp);
1a0c8dfd 614 strbuf_getline(&l3, fp);
5ae41c79
PT
615
616 /*
617 * If the second line is empty and the third is a From, Author or Date
618 * entry, this is likely an StGit patch.
619 */
620 if (l1.len && !l2.len &&
621 (starts_with(l3.buf, "From:") ||
622 starts_with(l3.buf, "Author:") ||
623 starts_with(l3.buf, "Date:"))) {
624 ret = PATCH_FORMAT_STGIT;
625 goto done;
626 }
627
c29807b2
PT
628 if (l1.len && is_mail(fp)) {
629 ret = PATCH_FORMAT_MBOX;
630 goto done;
631 }
632
633done:
634 fclose(fp);
635 strbuf_release(&l1);
542627a4
RS
636 strbuf_release(&l2);
637 strbuf_release(&l3);
c29807b2
PT
638 return ret;
639}
640
11c2177f
PT
641/**
642 * Splits out individual email patches from `paths`, where each path is either
643 * a mbox file or a Maildir. Returns 0 on success, -1 on failure.
644 */
d9925d1a
EW
645static int split_mail_mbox(struct am_state *state, const char **paths,
646 int keep_cr, int mboxrd)
11c2177f
PT
647{
648 struct child_process cp = CHILD_PROCESS_INIT;
649 struct strbuf last = STRBUF_INIT;
1b090735 650 int ret;
11c2177f
PT
651
652 cp.git_cmd = 1;
653 argv_array_push(&cp.args, "mailsplit");
654 argv_array_pushf(&cp.args, "-d%d", state->prec);
655 argv_array_pushf(&cp.args, "-o%s", state->dir);
656 argv_array_push(&cp.args, "-b");
5d123a40
PT
657 if (keep_cr)
658 argv_array_push(&cp.args, "--keep-cr");
d9925d1a
EW
659 if (mboxrd)
660 argv_array_push(&cp.args, "--mboxrd");
11c2177f
PT
661 argv_array_push(&cp.args, "--");
662 argv_array_pushv(&cp.args, paths);
663
1b090735
RS
664 ret = capture_command(&cp, &last, 8);
665 if (ret)
666 goto exit;
11c2177f
PT
667
668 state->cur = 1;
669 state->last = strtol(last.buf, NULL, 10);
670
1b090735
RS
671exit:
672 strbuf_release(&last);
673 return ret ? -1 : 0;
11c2177f
PT
674}
675
5ae41c79
PT
676/**
677 * Callback signature for split_mail_conv(). The foreign patch should be
678 * read from `in`, and the converted patch (in RFC2822 mail format) should be
679 * written to `out`. Return 0 on success, or -1 on failure.
680 */
681typedef int (*mail_conv_fn)(FILE *out, FILE *in, int keep_cr);
682
683/**
684 * Calls `fn` for each file in `paths` to convert the foreign patch to the
685 * RFC2822 mail format suitable for parsing with git-mailinfo.
686 *
687 * Returns 0 on success, -1 on failure.
688 */
689static int split_mail_conv(mail_conv_fn fn, struct am_state *state,
690 const char **paths, int keep_cr)
691{
692 static const char *stdin_only[] = {"-", NULL};
693 int i;
694
695 if (!*paths)
696 paths = stdin_only;
697
698 for (i = 0; *paths; paths++, i++) {
699 FILE *in, *out;
700 const char *mail;
701 int ret;
702
703 if (!strcmp(*paths, "-"))
704 in = stdin;
705 else
706 in = fopen(*paths, "r");
707
708 if (!in)
6e59e9c0
NTND
709 return error_errno(_("could not open '%s' for reading"),
710 *paths);
5ae41c79
PT
711
712 mail = mkpath("%s/%0*d", state->dir, state->prec, i + 1);
713
714 out = fopen(mail, "w");
ac8ce18d
RS
715 if (!out) {
716 if (in != stdin)
717 fclose(in);
6e59e9c0
NTND
718 return error_errno(_("could not open '%s' for writing"),
719 mail);
ac8ce18d 720 }
5ae41c79
PT
721
722 ret = fn(out, in, keep_cr);
723
724 fclose(out);
ac8ce18d
RS
725 if (in != stdin)
726 fclose(in);
5ae41c79
PT
727
728 if (ret)
729 return error(_("could not parse patch '%s'"), *paths);
730 }
731
732 state->cur = 1;
733 state->last = i;
734 return 0;
735}
736
737/**
738 * A split_mail_conv() callback that converts an StGit patch to an RFC2822
739 * message suitable for parsing with git-mailinfo.
740 */
741static int stgit_patch_to_mail(FILE *out, FILE *in, int keep_cr)
742{
743 struct strbuf sb = STRBUF_INIT;
744 int subject_printed = 0;
745
8f309aeb 746 while (!strbuf_getline_lf(&sb, in)) {
5ae41c79
PT
747 const char *str;
748
749 if (str_isspace(sb.buf))
750 continue;
751 else if (skip_prefix(sb.buf, "Author:", &str))
752 fprintf(out, "From:%s\n", str);
753 else if (starts_with(sb.buf, "From") || starts_with(sb.buf, "Date"))
754 fprintf(out, "%s\n", sb.buf);
755 else if (!subject_printed) {
756 fprintf(out, "Subject: %s\n", sb.buf);
757 subject_printed = 1;
758 } else {
759 fprintf(out, "\n%s\n", sb.buf);
760 break;
761 }
762 }
763
764 strbuf_reset(&sb);
765 while (strbuf_fread(&sb, 8192, in) > 0) {
766 fwrite(sb.buf, 1, sb.len, out);
767 strbuf_reset(&sb);
768 }
769
770 strbuf_release(&sb);
771 return 0;
772}
773
336108c1
PT
774/**
775 * This function only supports a single StGit series file in `paths`.
776 *
777 * Given an StGit series file, converts the StGit patches in the series into
778 * RFC2822 messages suitable for parsing with git-mailinfo, and queues them in
779 * the state directory.
780 *
781 * Returns 0 on success, -1 on failure.
782 */
783static int split_mail_stgit_series(struct am_state *state, const char **paths,
784 int keep_cr)
785{
786 const char *series_dir;
787 char *series_dir_buf;
788 FILE *fp;
789 struct argv_array patches = ARGV_ARRAY_INIT;
790 struct strbuf sb = STRBUF_INIT;
791 int ret;
792
793 if (!paths[0] || paths[1])
794 return error(_("Only one StGIT patch series can be applied at once"));
795
796 series_dir_buf = xstrdup(*paths);
797 series_dir = dirname(series_dir_buf);
798
799 fp = fopen(*paths, "r");
800 if (!fp)
6e59e9c0 801 return error_errno(_("could not open '%s' for reading"), *paths);
336108c1 802
8f309aeb 803 while (!strbuf_getline_lf(&sb, fp)) {
336108c1
PT
804 if (*sb.buf == '#')
805 continue; /* skip comment lines */
806
807 argv_array_push(&patches, mkpath("%s/%s", series_dir, sb.buf));
808 }
809
810 fclose(fp);
811 strbuf_release(&sb);
812 free(series_dir_buf);
813
814 ret = split_mail_conv(stgit_patch_to_mail, state, patches.argv, keep_cr);
815
816 argv_array_clear(&patches);
817 return ret;
818}
819
94cd175c
PT
820/**
821 * A split_patches_conv() callback that converts a mercurial patch to a RFC2822
822 * message suitable for parsing with git-mailinfo.
823 */
824static int hg_patch_to_mail(FILE *out, FILE *in, int keep_cr)
825{
826 struct strbuf sb = STRBUF_INIT;
b36474ff 827 int rc = 0;
94cd175c 828
8f309aeb 829 while (!strbuf_getline_lf(&sb, in)) {
94cd175c
PT
830 const char *str;
831
832 if (skip_prefix(sb.buf, "# User ", &str))
833 fprintf(out, "From: %s\n", str);
834 else if (skip_prefix(sb.buf, "# Date ", &str)) {
dddbad72 835 timestamp_t timestamp;
94cd175c
PT
836 long tz, tz2;
837 char *end;
838
839 errno = 0;
1aeb7e75 840 timestamp = parse_timestamp(str, &end, 10);
b36474ff
RS
841 if (errno) {
842 rc = error(_("invalid timestamp"));
843 goto exit;
844 }
94cd175c 845
b36474ff
RS
846 if (!skip_prefix(end, " ", &str)) {
847 rc = error(_("invalid Date line"));
848 goto exit;
849 }
94cd175c
PT
850
851 errno = 0;
852 tz = strtol(str, &end, 10);
b36474ff
RS
853 if (errno) {
854 rc = error(_("invalid timezone offset"));
855 goto exit;
856 }
94cd175c 857
b36474ff
RS
858 if (*end) {
859 rc = error(_("invalid Date line"));
860 goto exit;
861 }
94cd175c
PT
862
863 /*
864 * mercurial's timezone is in seconds west of UTC,
865 * however git's timezone is in hours + minutes east of
866 * UTC. Convert it.
867 */
868 tz2 = labs(tz) / 3600 * 100 + labs(tz) % 3600 / 60;
869 if (tz > 0)
870 tz2 = -tz2;
871
872 fprintf(out, "Date: %s\n", show_date(timestamp, tz2, DATE_MODE(RFC2822)));
873 } else if (starts_with(sb.buf, "# ")) {
874 continue;
875 } else {
876 fprintf(out, "\n%s\n", sb.buf);
877 break;
878 }
879 }
880
881 strbuf_reset(&sb);
882 while (strbuf_fread(&sb, 8192, in) > 0) {
883 fwrite(sb.buf, 1, sb.len, out);
884 strbuf_reset(&sb);
885 }
b36474ff 886exit:
94cd175c 887 strbuf_release(&sb);
b36474ff 888 return rc;
94cd175c
PT
889}
890
11c2177f
PT
891/**
892 * Splits a list of files/directories into individual email patches. Each path
893 * in `paths` must be a file/directory that is formatted according to
894 * `patch_format`.
895 *
896 * Once split out, the individual email patches will be stored in the state
897 * directory, with each patch's filename being its index, padded to state->prec
898 * digits.
899 *
900 * state->cur will be set to the index of the first mail, and state->last will
901 * be set to the index of the last mail.
902 *
5d123a40
PT
903 * Set keep_cr to 0 to convert all lines ending with \r\n to end with \n, 1
904 * to disable this behavior, -1 to use the default configured setting.
905 *
11c2177f
PT
906 * Returns 0 on success, -1 on failure.
907 */
908static int split_mail(struct am_state *state, enum patch_format patch_format,
5d123a40 909 const char **paths, int keep_cr)
11c2177f 910{
5d123a40
PT
911 if (keep_cr < 0) {
912 keep_cr = 0;
913 git_config_get_bool("am.keepcr", &keep_cr);
914 }
915
11c2177f
PT
916 switch (patch_format) {
917 case PATCH_FORMAT_MBOX:
d9925d1a 918 return split_mail_mbox(state, paths, keep_cr, 0);
5ae41c79
PT
919 case PATCH_FORMAT_STGIT:
920 return split_mail_conv(stgit_patch_to_mail, state, paths, keep_cr);
336108c1
PT
921 case PATCH_FORMAT_STGIT_SERIES:
922 return split_mail_stgit_series(state, paths, keep_cr);
94cd175c
PT
923 case PATCH_FORMAT_HG:
924 return split_mail_conv(hg_patch_to_mail, state, paths, keep_cr);
d9925d1a
EW
925 case PATCH_FORMAT_MBOXRD:
926 return split_mail_mbox(state, paths, keep_cr, 1);
11c2177f 927 default:
033abf97 928 BUG("invalid patch_format");
11c2177f
PT
929 }
930 return -1;
931}
932
8c3bd9e2
PT
933/**
934 * Setup a new am session for applying patches
935 */
11c2177f 936static void am_setup(struct am_state *state, enum patch_format patch_format,
5d123a40 937 const char **paths, int keep_cr)
8c3bd9e2 938{
8c88769b 939 struct object_id curr_head;
4f1b6961 940 const char *str;
257e8cec 941 struct strbuf sb = STRBUF_INIT;
33388a71 942
c29807b2
PT
943 if (!patch_format)
944 patch_format = detect_patch_format(paths);
945
946 if (!patch_format) {
947 fprintf_ln(stderr, _("Patch format detection failed."));
948 exit(128);
949 }
950
8c3bd9e2
PT
951 if (mkdir(state->dir, 0777) < 0 && errno != EEXIST)
952 die_errno(_("failed to create directory '%s'"), state->dir);
fbd7a232 953 delete_ref(NULL, "REBASE_HEAD", NULL, REF_NO_DEREF);
8c3bd9e2 954
5d123a40 955 if (split_mail(state, patch_format, paths, keep_cr) < 0) {
11c2177f
PT
956 am_destroy(state);
957 die(_("Failed to split patches."));
958 }
959
35bdcc59
PT
960 if (state->rebasing)
961 state->threeway = 1;
962
25b763ba
JH
963 write_state_bool(state, "threeway", state->threeway);
964 write_state_bool(state, "quiet", state->quiet);
965 write_state_bool(state, "sign", state->signoff);
966 write_state_bool(state, "utf8", state->utf8);
ef7ee16d 967
fd4a3f48
PW
968 if (state->allow_rerere_autoupdate)
969 write_state_bool(state, "rerere-autoupdate",
970 state->allow_rerere_autoupdate == RERERE_AUTOUPDATE);
971
4f1b6961
PT
972 switch (state->keep) {
973 case KEEP_FALSE:
974 str = "f";
975 break;
976 case KEEP_TRUE:
977 str = "t";
978 break;
979 case KEEP_NON_PATCH:
980 str = "b";
981 break;
982 default:
033abf97 983 BUG("invalid value for state->keep");
4f1b6961
PT
984 }
985
25b763ba
JH
986 write_state_text(state, "keep", str);
987 write_state_bool(state, "messageid", state->message_id);
702cbaad 988
9b646617
PT
989 switch (state->scissors) {
990 case SCISSORS_UNSET:
991 str = "";
992 break;
993 case SCISSORS_FALSE:
994 str = "f";
995 break;
996 case SCISSORS_TRUE:
997 str = "t";
998 break;
999 default:
033abf97 1000 BUG("invalid value for state->scissors");
9b646617 1001 }
25b763ba 1002 write_state_text(state, "scissors", str);
9b646617 1003
e35f11c2 1004 sq_quote_argv(&sb, state->git_apply_opts.argv);
25b763ba 1005 write_state_text(state, "apply-opt", sb.buf);
257e8cec 1006
35bdcc59 1007 if (state->rebasing)
25b763ba 1008 write_state_text(state, "rebasing", "");
35bdcc59 1009 else
25b763ba 1010 write_state_text(state, "applying", "");
35bdcc59 1011
8c88769b 1012 if (!get_oid("HEAD", &curr_head)) {
1013 write_state_text(state, "abort-safety", oid_to_hex(&curr_head));
35bdcc59 1014 if (!state->rebasing)
ae077771 1015 update_ref("am", "ORIG_HEAD", &curr_head, NULL, 0,
1016 UPDATE_REFS_DIE_ON_ERR);
33388a71 1017 } else {
25b763ba 1018 write_state_text(state, "abort-safety", "");
35bdcc59 1019 if (!state->rebasing)
755b49ae 1020 delete_ref(NULL, "ORIG_HEAD", NULL, 0);
33388a71
PT
1021 }
1022
8c3bd9e2
PT
1023 /*
1024 * NOTE: Since the "next" and "last" files determine if an am_state
1025 * session is in progress, they should be written last.
1026 */
1027
25b763ba
JH
1028 write_state_count(state, "next", state->cur);
1029 write_state_count(state, "last", state->last);
257e8cec
PT
1030
1031 strbuf_release(&sb);
8c3bd9e2
PT
1032}
1033
1034/**
1035 * Increments the patch pointer, and cleans am_state for the application of the
1036 * next patch.
1037 */
1038static void am_next(struct am_state *state)
1039{
8c88769b 1040 struct object_id head;
33388a71 1041
88ce3ef6
ÆAB
1042 FREE_AND_NULL(state->author_name);
1043 FREE_AND_NULL(state->author_email);
1044 FREE_AND_NULL(state->author_date);
1045 FREE_AND_NULL(state->msg);
3e20dcf3
PT
1046 state->msg_len = 0;
1047
1048 unlink(am_path(state, "author-script"));
1049 unlink(am_path(state, "final-commit"));
1050
8c88769b 1051 oidclr(&state->orig_commit);
13b97ea5 1052 unlink(am_path(state, "original-commit"));
fbd7a232 1053 delete_ref(NULL, "REBASE_HEAD", NULL, REF_NO_DEREF);
13b97ea5 1054
8c88769b 1055 if (!get_oid("HEAD", &head))
1056 write_state_text(state, "abort-safety", oid_to_hex(&head));
33388a71 1057 else
25b763ba 1058 write_state_text(state, "abort-safety", "");
33388a71 1059
8c3bd9e2 1060 state->cur++;
25b763ba 1061 write_state_count(state, "next", state->cur);
8c3bd9e2
PT
1062}
1063
3e20dcf3
PT
1064/**
1065 * Returns the filename of the current patch email.
1066 */
1067static const char *msgnum(const struct am_state *state)
1068{
1069 static struct strbuf sb = STRBUF_INIT;
1070
1071 strbuf_reset(&sb);
1072 strbuf_addf(&sb, "%0*d", state->prec, state->cur);
1073
1074 return sb.buf;
1075}
1076
2d83109a
PT
1077/**
1078 * Dies with a user-friendly message on how to proceed after resolving the
1079 * problem. This message can be overridden with state->resolvemsg.
1080 */
1081static void NORETURN die_user_resolve(const struct am_state *state)
1082{
1083 if (state->resolvemsg) {
1084 printf_ln("%s", state->resolvemsg);
1085 } else {
7ff26832 1086 const char *cmdline = state->interactive ? "git am -i" : "git am";
2d83109a
PT
1087
1088 printf_ln(_("When you have resolved this problem, run \"%s --continue\"."), cmdline);
1089 printf_ln(_("If you prefer to skip this patch, run \"%s --skip\" instead."), cmdline);
1090 printf_ln(_("To restore the original branch and stop patching, run \"%s --abort\"."), cmdline);
1091 }
1092
1093 exit(128);
1094}
1095
0fb3c4fc
GB
1096/**
1097 * Appends signoff to the "msg" field of the am_state.
1098 */
1099static void am_append_signoff(struct am_state *state)
aab84542 1100{
0fb3c4fc 1101 struct strbuf sb = STRBUF_INIT;
aab84542 1102
0fb3c4fc 1103 strbuf_attach(&sb, state->msg, state->msg_len, state->msg_len);
735285b4 1104 append_signoff(&sb, 0, 0);
b5e82359
PT
1105 state->msg = strbuf_detach(&sb, &state->msg_len);
1106}
1107
3e20dcf3
PT
1108/**
1109 * Parses `mail` using git-mailinfo, extracting its patch and authorship info.
1110 * state->msg will be set to the patch message. state->author_name,
1111 * state->author_email and state->author_date will be set to the patch author's
1112 * name, email and date respectively. The patch body will be written to the
1113 * state directory's "patch" file.
1114 *
1115 * Returns 1 if the patch should be skipped, 0 otherwise.
1116 */
1117static int parse_mail(struct am_state *state, const char *mail)
1118{
1119 FILE *fp;
3e20dcf3
PT
1120 struct strbuf sb = STRBUF_INIT;
1121 struct strbuf msg = STRBUF_INIT;
1122 struct strbuf author_name = STRBUF_INIT;
1123 struct strbuf author_date = STRBUF_INIT;
1124 struct strbuf author_email = STRBUF_INIT;
1125 int ret = 0;
4b98bae2 1126 struct mailinfo mi;
3e20dcf3 1127
4b98bae2 1128 setup_mailinfo(&mi);
3e20dcf3 1129
4b98bae2
JH
1130 if (state->utf8)
1131 mi.metainfo_charset = get_commit_output_encoding();
1132 else
1133 mi.metainfo_charset = NULL;
4f1b6961
PT
1134
1135 switch (state->keep) {
1136 case KEEP_FALSE:
1137 break;
1138 case KEEP_TRUE:
4b98bae2 1139 mi.keep_subject = 1;
4f1b6961
PT
1140 break;
1141 case KEEP_NON_PATCH:
4b98bae2 1142 mi.keep_non_patch_brackets_in_subject = 1;
4f1b6961
PT
1143 break;
1144 default:
033abf97 1145 BUG("invalid value for state->keep");
4f1b6961
PT
1146 }
1147
702cbaad 1148 if (state->message_id)
4b98bae2 1149 mi.add_message_id = 1;
702cbaad 1150
9b646617
PT
1151 switch (state->scissors) {
1152 case SCISSORS_UNSET:
1153 break;
1154 case SCISSORS_FALSE:
4b98bae2 1155 mi.use_scissors = 0;
9b646617
PT
1156 break;
1157 case SCISSORS_TRUE:
4b98bae2 1158 mi.use_scissors = 1;
9b646617
PT
1159 break;
1160 default:
033abf97 1161 BUG("invalid value for state->scissors");
9b646617
PT
1162 }
1163
23a9e071
NTND
1164 mi.input = xfopen(mail, "r");
1165 mi.output = xfopen(am_path(state, "info"), "w");
4b98bae2 1166 if (mailinfo(&mi, am_path(state, "msg"), am_path(state, "patch")))
3e20dcf3
PT
1167 die("could not parse patch");
1168
4b98bae2
JH
1169 fclose(mi.input);
1170 fclose(mi.output);
3e20dcf3 1171
3aa4d81f
RS
1172 if (mi.format_flowed)
1173 warning(_("Patch sent with format=flowed; "
1174 "space at the end of lines might be lost."));
1175
3e20dcf3
PT
1176 /* Extract message and author information */
1177 fp = xfopen(am_path(state, "info"), "r");
8f309aeb 1178 while (!strbuf_getline_lf(&sb, fp)) {
3e20dcf3
PT
1179 const char *x;
1180
1181 if (skip_prefix(sb.buf, "Subject: ", &x)) {
1182 if (msg.len)
1183 strbuf_addch(&msg, '\n');
1184 strbuf_addstr(&msg, x);
1185 } else if (skip_prefix(sb.buf, "Author: ", &x))
1186 strbuf_addstr(&author_name, x);
1187 else if (skip_prefix(sb.buf, "Email: ", &x))
1188 strbuf_addstr(&author_email, x);
1189 else if (skip_prefix(sb.buf, "Date: ", &x))
1190 strbuf_addstr(&author_date, x);
1191 }
1192 fclose(fp);
1193
1194 /* Skip pine's internal folder data */
1195 if (!strcmp(author_name.buf, "Mail System Internal Data")) {
1196 ret = 1;
1197 goto finish;
1198 }
1199
e3b1e3bd 1200 if (is_empty_or_missing_file(am_path(state, "patch"))) {
6c486862 1201 printf_ln(_("Patch is empty."));
2d83109a 1202 die_user_resolve(state);
3e20dcf3
PT
1203 }
1204
1205 strbuf_addstr(&msg, "\n\n");
4b98bae2 1206 strbuf_addbuf(&msg, &mi.log_message);
63af4a84 1207 strbuf_stripspace(&msg, 0);
3e20dcf3
PT
1208
1209 assert(!state->author_name);
1210 state->author_name = strbuf_detach(&author_name, NULL);
1211
1212 assert(!state->author_email);
1213 state->author_email = strbuf_detach(&author_email, NULL);
1214
1215 assert(!state->author_date);
1216 state->author_date = strbuf_detach(&author_date, NULL);
1217
1218 assert(!state->msg);
1219 state->msg = strbuf_detach(&msg, &state->msg_len);
1220
1221finish:
1222 strbuf_release(&msg);
1223 strbuf_release(&author_date);
1224 strbuf_release(&author_email);
1225 strbuf_release(&author_name);
1226 strbuf_release(&sb);
4b98bae2 1227 clear_mailinfo(&mi);
3e20dcf3
PT
1228 return ret;
1229}
1230
df2760a5
PT
1231/**
1232 * Sets commit_id to the commit hash where the mail was generated from.
1233 * Returns 0 on success, -1 on failure.
1234 */
8c88769b 1235static int get_mail_commit_oid(struct object_id *commit_id, const char *mail)
df2760a5
PT
1236{
1237 struct strbuf sb = STRBUF_INIT;
1238 FILE *fp = xfopen(mail, "r");
1239 const char *x;
5b34ba41 1240 int ret = 0;
df2760a5 1241
5b34ba41
JS
1242 if (strbuf_getline_lf(&sb, fp) ||
1243 !skip_prefix(sb.buf, "From ", &x) ||
1244 get_oid_hex(x, commit_id) < 0)
1245 ret = -1;
df2760a5
PT
1246
1247 strbuf_release(&sb);
1248 fclose(fp);
5b34ba41 1249 return ret;
df2760a5
PT
1250}
1251
1252/**
1253 * Sets state->msg, state->author_name, state->author_email, state->author_date
1254 * to the commit's respective info.
1255 */
1256static void get_commit_info(struct am_state *state, struct commit *commit)
1257{
2e2bbb96 1258 const char *buffer, *ident_line, *msg;
df2760a5 1259 size_t ident_len;
721f5f1e 1260 struct ident_split id;
df2760a5
PT
1261
1262 buffer = logmsg_reencode(commit, NULL, get_commit_output_encoding());
1263
1264 ident_line = find_commit_header(buffer, "author", &ident_len);
0dfed92d
JK
1265 if (!ident_line)
1266 die(_("missing author line in commit %s"),
1267 oid_to_hex(&commit->object.oid));
721f5f1e 1268 if (split_ident_line(&id, ident_line, ident_len) < 0)
2e2bbb96 1269 die(_("invalid ident line: %.*s"), (int)ident_len, ident_line);
df2760a5
PT
1270
1271 assert(!state->author_name);
721f5f1e 1272 if (id.name_begin)
2e2bbb96 1273 state->author_name =
721f5f1e
JK
1274 xmemdupz(id.name_begin, id.name_end - id.name_begin);
1275 else
df2760a5
PT
1276 state->author_name = xstrdup("");
1277
1278 assert(!state->author_email);
721f5f1e 1279 if (id.mail_begin)
2e2bbb96 1280 state->author_email =
721f5f1e
JK
1281 xmemdupz(id.mail_begin, id.mail_end - id.mail_begin);
1282 else
df2760a5
PT
1283 state->author_email = xstrdup("");
1284
df2760a5 1285 assert(!state->author_date);
721f5f1e 1286 state->author_date = xstrdup(show_ident_date(&id, DATE_MODE(NORMAL)));
df2760a5
PT
1287
1288 assert(!state->msg);
1289 msg = strstr(buffer, "\n\n");
1290 if (!msg)
f2fd0760 1291 die(_("unable to parse commit %s"), oid_to_hex(&commit->object.oid));
df2760a5
PT
1292 state->msg = xstrdup(msg + 2);
1293 state->msg_len = strlen(state->msg);
f131db9e 1294 unuse_commit_buffer(commit, buffer);
df2760a5
PT
1295}
1296
1297/**
1298 * Writes `commit` as a patch to the state directory's "patch" file.
1299 */
1300static void write_commit_patch(const struct am_state *state, struct commit *commit)
1301{
1302 struct rev_info rev_info;
1303 FILE *fp;
1304
1305 fp = xfopen(am_path(state, "patch"), "w");
2abf3503 1306 repo_init_revisions(the_repository, &rev_info, NULL);
df2760a5
PT
1307 rev_info.diff = 1;
1308 rev_info.abbrev = 0;
1309 rev_info.disable_stdin = 1;
1310 rev_info.show_root_diff = 1;
1311 rev_info.diffopt.output_format = DIFF_FORMAT_PATCH;
1312 rev_info.no_commit_id = 1;
0d1e0e78
BW
1313 rev_info.diffopt.flags.binary = 1;
1314 rev_info.diffopt.flags.full_index = 1;
df2760a5
PT
1315 rev_info.diffopt.use_color = 0;
1316 rev_info.diffopt.file = fp;
1317 rev_info.diffopt.close_file = 1;
1318 add_pending_object(&rev_info, &commit->object, "");
1319 diff_setup_done(&rev_info.diffopt);
1320 log_tree_commit(&rev_info, commit);
1321}
1322
7ff26832
PT
1323/**
1324 * Writes the diff of the index against HEAD as a patch to the state
1325 * directory's "patch" file.
1326 */
1327static void write_index_patch(const struct am_state *state)
1328{
1329 struct tree *tree;
8c88769b 1330 struct object_id head;
7ff26832
PT
1331 struct rev_info rev_info;
1332 FILE *fp;
1333
7663e438
JK
1334 if (!get_oid("HEAD", &head)) {
1335 struct commit *commit = lookup_commit_or_die(&head, "HEAD");
1336 tree = get_commit_tree(commit);
1337 } else
f86bcc7b
SB
1338 tree = lookup_tree(the_repository,
1339 the_repository->hash_algo->empty_tree);
7ff26832
PT
1340
1341 fp = xfopen(am_path(state, "patch"), "w");
2abf3503 1342 repo_init_revisions(the_repository, &rev_info, NULL);
7ff26832
PT
1343 rev_info.diff = 1;
1344 rev_info.disable_stdin = 1;
1345 rev_info.no_commit_id = 1;
1346 rev_info.diffopt.output_format = DIFF_FORMAT_PATCH;
1347 rev_info.diffopt.use_color = 0;
1348 rev_info.diffopt.file = fp;
1349 rev_info.diffopt.close_file = 1;
1350 add_pending_object(&rev_info, &tree->object, "");
1351 diff_setup_done(&rev_info.diffopt);
1352 run_diff_index(&rev_info, 1);
1353}
1354
df2760a5
PT
1355/**
1356 * Like parse_mail(), but parses the mail by looking up its commit ID
1357 * directly. This is used in --rebasing mode to bypass git-mailinfo's munging
1358 * of patches.
1359 *
13b97ea5
PT
1360 * state->orig_commit will be set to the original commit ID.
1361 *
df2760a5
PT
1362 * Will always return 0 as the patch should never be skipped.
1363 */
1364static int parse_mail_rebase(struct am_state *state, const char *mail)
1365{
1366 struct commit *commit;
8c88769b 1367 struct object_id commit_oid;
df2760a5 1368
8c88769b 1369 if (get_mail_commit_oid(&commit_oid, mail) < 0)
df2760a5
PT
1370 die(_("could not parse %s"), mail);
1371
bc83266a 1372 commit = lookup_commit_or_die(&commit_oid, mail);
df2760a5
PT
1373
1374 get_commit_info(state, commit);
1375
1376 write_commit_patch(state, commit);
1377
8c88769b 1378 oidcpy(&state->orig_commit, &commit_oid);
1379 write_state_text(state, "original-commit", oid_to_hex(&commit_oid));
fbd7a232
NTND
1380 update_ref("am", "REBASE_HEAD", &commit_oid,
1381 NULL, REF_NO_DEREF, UPDATE_REFS_DIE_ON_ERR);
13b97ea5 1382
df2760a5
PT
1383 return 0;
1384}
1385
38a824fe 1386/**
84f3de28
PT
1387 * Applies current patch with git-apply. Returns 0 on success, -1 otherwise. If
1388 * `index_file` is not NULL, the patch will be applied to that index.
38a824fe 1389 */
84f3de28 1390static int run_apply(const struct am_state *state, const char *index_file)
38a824fe 1391{
edfac5eb
CC
1392 struct argv_array apply_paths = ARGV_ARRAY_INIT;
1393 struct argv_array apply_opts = ARGV_ARRAY_INIT;
1394 struct apply_state apply_state;
1395 int res, opts_left;
edfac5eb
CC
1396 int force_apply = 0;
1397 int options = 0;
1398
82ea77ec 1399 if (init_apply_state(&apply_state, the_repository, NULL))
033abf97 1400 BUG("init_apply_state() failed");
edfac5eb
CC
1401
1402 argv_array_push(&apply_opts, "apply");
1403 argv_array_pushv(&apply_opts, state->git_apply_opts.argv);
1404
1405 opts_left = apply_parse_options(apply_opts.argc, apply_opts.argv,
1406 &apply_state, &force_apply, &options,
1407 NULL);
1408
1409 if (opts_left != 0)
1410 die("unknown option passed through to git apply");
1411
1412 if (index_file) {
1413 apply_state.index_file = index_file;
1414 apply_state.cached = 1;
1415 } else
1416 apply_state.check_index = 1;
84f3de28
PT
1417
1418 /*
1419 * If we are allowed to fall back on 3-way merge, don't give false
1420 * errors during the initial attempt.
1421 */
edfac5eb
CC
1422 if (state->threeway && !index_file)
1423 apply_state.apply_verbosity = verbosity_silent;
84f3de28 1424
edfac5eb 1425 if (check_apply_state(&apply_state, force_apply))
033abf97 1426 BUG("check_apply_state() failed");
84f3de28 1427
edfac5eb 1428 argv_array_push(&apply_paths, am_path(state, "patch"));
257e8cec 1429
edfac5eb 1430 res = apply_all_patches(&apply_state, apply_paths.argc, apply_paths.argv, options);
84f3de28 1431
edfac5eb
CC
1432 argv_array_clear(&apply_paths);
1433 argv_array_clear(&apply_opts);
1434 clear_apply_state(&apply_state);
38a824fe 1435
edfac5eb
CC
1436 if (res)
1437 return res;
38a824fe 1438
edfac5eb
CC
1439 if (index_file) {
1440 /* Reload index as apply_all_patches() will have modified it. */
1441 discard_cache();
1442 read_cache_from(index_file);
1443 }
84f3de28
PT
1444
1445 return 0;
1446}
1447
1448/**
1449 * Builds an index that contains just the blobs needed for a 3way merge.
1450 */
1451static int build_fake_ancestor(const struct am_state *state, const char *index_file)
1452{
1453 struct child_process cp = CHILD_PROCESS_INIT;
1454
1455 cp.git_cmd = 1;
1456 argv_array_push(&cp.args, "apply");
257e8cec 1457 argv_array_pushv(&cp.args, state->git_apply_opts.argv);
84f3de28
PT
1458 argv_array_pushf(&cp.args, "--build-fake-ancestor=%s", index_file);
1459 argv_array_push(&cp.args, am_path(state, "patch"));
1460
1461 if (run_command(&cp))
1462 return -1;
1463
1464 return 0;
1465}
1466
1467/**
1468 * Attempt a threeway merge, using index_path as the temporary index.
1469 */
1470static int fall_back_threeway(const struct am_state *state, const char *index_path)
1471{
3f338f43
JS
1472 struct object_id orig_tree, their_tree, our_tree;
1473 const struct object_id *bases[1] = { &orig_tree };
1474 struct merge_options o;
1475 struct commit *result;
1476 char *their_tree_name;
84f3de28 1477
3f338f43 1478 if (get_oid("HEAD", &our_tree) < 0)
d41836a0 1479 oidcpy(&our_tree, the_hash_algo->empty_tree);
84f3de28
PT
1480
1481 if (build_fake_ancestor(state, index_path))
1482 return error("could not build fake ancestor");
1483
1484 discard_cache();
1485 read_cache_from(index_path);
1486
fc5cb99f 1487 if (write_index_as_tree(&orig_tree, &the_index, index_path, 0, NULL))
84f3de28
PT
1488 return error(_("Repository lacks necessary blobs to fall back on 3-way merge."));
1489
1490 say(state, stdout, _("Using index info to reconstruct a base tree..."));
1491
1492 if (!state->quiet) {
1493 /*
1494 * List paths that needed 3-way fallback, so that the user can
1495 * review them with extra care to spot mismerges.
1496 */
1497 struct rev_info rev_info;
84f3de28 1498
2abf3503 1499 repo_init_revisions(the_repository, &rev_info, NULL);
84f3de28 1500 rev_info.diffopt.output_format = DIFF_FORMAT_NAME_STATUS;
cdb5330a
NTND
1501 rev_info.diffopt.filter |= diff_filter_bit('A');
1502 rev_info.diffopt.filter |= diff_filter_bit('M');
a58a1b01 1503 add_pending_oid(&rev_info, "HEAD", &our_tree, 0);
84f3de28
PT
1504 diff_setup_done(&rev_info.diffopt);
1505 run_diff_index(&rev_info, 1);
1506 }
1507
1508 if (run_apply(state, index_path))
1509 return error(_("Did you hand edit your patch?\n"
1510 "It does not apply to blobs recorded in its index."));
1511
fc5cb99f 1512 if (write_index_as_tree(&their_tree, &the_index, index_path, 0, NULL))
84f3de28
PT
1513 return error("could not write tree");
1514
1515 say(state, stdout, _("Falling back to patching base and 3-way merge..."));
1516
38a824fe
PT
1517 discard_cache();
1518 read_cache();
1519
84f3de28
PT
1520 /*
1521 * This is not so wrong. Depending on which base we picked, orig_tree
715a51bc 1522 * may be wildly different from ours, but their_tree has the same set of
84f3de28
PT
1523 * wildly different changes in parts the patch did not touch, so
1524 * recursive ends up canceling them, saying that we reverted all those
1525 * changes.
1526 */
1527
0d6caa2d 1528 init_merge_options(&o, the_repository);
3f338f43
JS
1529
1530 o.branch1 = "HEAD";
1531 their_tree_name = xstrfmt("%.*s", linelen(state->msg), state->msg);
1532 o.branch2 = their_tree_name;
8e012516 1533 o.detect_directory_renames = MERGE_DIRECTORY_RENAMES_NONE;
3f338f43
JS
1534
1535 if (state->quiet)
1536 o.verbosity = 0;
1537
1538 if (merge_recursive_generic(&o, &our_tree, &their_tree, 1, bases, &result)) {
35843b11 1539 repo_rerere(the_repository, state->allow_rerere_autoupdate);
3f338f43 1540 free(their_tree_name);
84f3de28
PT
1541 return error(_("Failed to merge in the changes."));
1542 }
1543
3f338f43 1544 free(their_tree_name);
38a824fe
PT
1545 return 0;
1546}
1547
c9e8d960
PT
1548/**
1549 * Commits the current index with state->msg as the commit message and
1550 * state->author_name, state->author_email and state->author_date as the author
1551 * information.
1552 */
1553static void do_commit(const struct am_state *state)
1554{
8c88769b 1555 struct object_id tree, parent, commit;
1556 const struct object_id *old_oid;
c9e8d960
PT
1557 struct commit_list *parents = NULL;
1558 const char *reflog_msg, *author;
1559 struct strbuf sb = STRBUF_INIT;
1560
6c24c5c0
PT
1561 if (run_hook_le(NULL, "pre-applypatch", NULL))
1562 exit(1);
1563
fc5cb99f 1564 if (write_cache_as_tree(&tree, 0, NULL))
c9e8d960
PT
1565 die(_("git write-tree failed to write a tree"));
1566
e82caf38 1567 if (!get_oid_commit("HEAD", &parent)) {
8c88769b 1568 old_oid = &parent;
c1f5eb49
SB
1569 commit_list_insert(lookup_commit(the_repository, &parent),
1570 &parents);
c9e8d960 1571 } else {
8c88769b 1572 old_oid = NULL;
5d28cf78 1573 say(state, stderr, _("applying to an empty history"));
c9e8d960
PT
1574 }
1575
1576 author = fmt_ident(state->author_name, state->author_email,
39ab4d09 1577 WANT_AUTHOR_IDENT,
f07adb62
PT
1578 state->ignore_date ? NULL : state->author_date,
1579 IDENT_STRICT);
c9e8d960 1580
0cd4bcba
PT
1581 if (state->committer_date_is_author_date)
1582 setenv("GIT_COMMITTER_DATE",
1583 state->ignore_date ? "" : state->author_date, 1);
1584
5078f344
PO
1585 if (commit_tree(state->msg, state->msg_len, &tree, parents, &commit,
1586 author, state->sign_commit))
c9e8d960
PT
1587 die(_("failed to write commit object"));
1588
1589 reflog_msg = getenv("GIT_REFLOG_ACTION");
1590 if (!reflog_msg)
1591 reflog_msg = "am";
1592
1593 strbuf_addf(&sb, "%s: %.*s", reflog_msg, linelen(state->msg),
1594 state->msg);
1595
ae077771 1596 update_ref(sb.buf, "HEAD", &commit, old_oid, 0,
1597 UPDATE_REFS_DIE_ON_ERR);
c9e8d960 1598
13b97ea5
PT
1599 if (state->rebasing) {
1600 FILE *fp = xfopen(am_path(state, "rewritten"), "a");
1601
8c88769b 1602 assert(!is_null_oid(&state->orig_commit));
1603 fprintf(fp, "%s ", oid_to_hex(&state->orig_commit));
1604 fprintf(fp, "%s\n", oid_to_hex(&commit));
13b97ea5
PT
1605 fclose(fp);
1606 }
1607
7088f807
PT
1608 run_hook_le(NULL, "post-applypatch", NULL);
1609
c9e8d960
PT
1610 strbuf_release(&sb);
1611}
1612
240bfd2d
PT
1613/**
1614 * Validates the am_state for resuming -- the "msg" and authorship fields must
1615 * be filled up.
1616 */
1617static void validate_resume_state(const struct am_state *state)
1618{
1619 if (!state->msg)
1620 die(_("cannot resume: %s does not exist."),
1621 am_path(state, "final-commit"));
1622
1623 if (!state->author_name || !state->author_email || !state->author_date)
1624 die(_("cannot resume: %s does not exist."),
1625 am_path(state, "author-script"));
1626}
1627
7ff26832
PT
1628/**
1629 * Interactively prompt the user on whether the current patch should be
1630 * applied.
1631 *
1632 * Returns 0 if the user chooses to apply the patch, 1 if the user chooses to
1633 * skip it.
1634 */
1635static int do_interactive(struct am_state *state)
1636{
1637 assert(state->msg);
1638
7ff26832 1639 for (;;) {
97387c8b 1640 char reply[64];
7ff26832
PT
1641
1642 puts(_("Commit Body is:"));
1643 puts("--------------------------");
1644 printf("%s", state->msg);
1645 puts("--------------------------");
1646
1647 /*
1648 * TRANSLATORS: Make sure to include [y], [n], [e], [v] and [a]
1649 * in your translation. The program will only accept English
1650 * input at this point.
1651 */
97387c8b
JK
1652 printf(_("Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all: "));
1653 if (!fgets(reply, sizeof(reply), stdin))
1654 die("unable to read from stdin; aborting");
7ff26832 1655
1db65f32 1656 if (*reply == 'y' || *reply == 'Y') {
7ff26832
PT
1657 return 0;
1658 } else if (*reply == 'a' || *reply == 'A') {
1659 state->interactive = 0;
1660 return 0;
1661 } else if (*reply == 'n' || *reply == 'N') {
1662 return 1;
1663 } else if (*reply == 'e' || *reply == 'E') {
1664 struct strbuf msg = STRBUF_INIT;
1665
1666 if (!launch_editor(am_path(state, "final-commit"), &msg, NULL)) {
1667 free(state->msg);
1668 state->msg = strbuf_detach(&msg, &state->msg_len);
1669 }
1670 strbuf_release(&msg);
1671 } else if (*reply == 'v' || *reply == 'V') {
1672 const char *pager = git_pager(1);
1673 struct child_process cp = CHILD_PROCESS_INIT;
1674
1675 if (!pager)
1676 pager = "cat";
708b8cc9 1677 prepare_pager_args(&cp, pager);
7ff26832
PT
1678 argv_array_push(&cp.args, am_path(state, "patch"));
1679 run_command(&cp);
1680 }
1681 }
1682}
1683
8c3bd9e2
PT
1684/**
1685 * Applies all queued mail.
8c7b1563
PT
1686 *
1687 * If `resume` is true, we are "resuming". The "msg" and authorship fields, as
1688 * well as the state directory's "patch" file is used as-is for applying the
1689 * patch and committing it.
8c3bd9e2 1690 */
8c7b1563 1691static void am_run(struct am_state *state, int resume)
8c3bd9e2 1692{
c9e8d960 1693 const char *argv_gc_auto[] = {"gc", "--auto", NULL};
32a5fcbf 1694 struct strbuf sb = STRBUF_INIT;
c9e8d960 1695
33388a71
PT
1696 unlink(am_path(state, "dirtyindex"));
1697
22184497
TG
1698 if (refresh_and_write_cache(REFRESH_QUIET, 0, 0) < 0)
1699 die(_("unable to write index file"));
38a824fe 1700
150fe065 1701 if (repo_index_has_changes(the_repository, NULL, &sb)) {
25b763ba 1702 write_state_bool(state, "dirtyindex", 1);
32a5fcbf 1703 die(_("Dirty index: cannot apply patches (dirty: %s)"), sb.buf);
33388a71 1704 }
32a5fcbf
PT
1705
1706 strbuf_release(&sb);
1707
8c3bd9e2 1708 while (state->cur <= state->last) {
3e20dcf3 1709 const char *mail = am_path(state, msgnum(state));
84f3de28 1710 int apply_status;
3e20dcf3 1711
4d9c7e6f
JK
1712 reset_ident_date();
1713
3e20dcf3
PT
1714 if (!file_exists(mail))
1715 goto next;
1716
8c7b1563
PT
1717 if (resume) {
1718 validate_resume_state(state);
8c7b1563 1719 } else {
df2760a5
PT
1720 int skip;
1721
1722 if (state->rebasing)
1723 skip = parse_mail_rebase(state, mail);
1724 else
1725 skip = parse_mail(state, mail);
1726
1727 if (skip)
8c7b1563 1728 goto next; /* mail should be skipped */
3e20dcf3 1729
b7cc7051
GB
1730 if (state->signoff)
1731 am_append_signoff(state);
1732
8c7b1563
PT
1733 write_author_script(state);
1734 write_commit_msg(state);
1735 }
8c3bd9e2 1736
7ff26832
PT
1737 if (state->interactive && do_interactive(state))
1738 goto next;
1739
b8803d8f
PT
1740 if (run_applypatch_msg_hook(state))
1741 exit(1);
1742
5d28cf78 1743 say(state, stdout, _("Applying: %.*s"), linelen(state->msg), state->msg);
38a824fe 1744
84f3de28
PT
1745 apply_status = run_apply(state, NULL);
1746
1747 if (apply_status && state->threeway) {
1748 struct strbuf sb = STRBUF_INIT;
1749
1750 strbuf_addstr(&sb, am_path(state, "patch-merge-index"));
1751 apply_status = fall_back_threeway(state, sb.buf);
1752 strbuf_release(&sb);
1753
1754 /*
1755 * Applying the patch to an earlier tree and merging
1756 * the result may have produced the same tree as ours.
1757 */
e1f8694f 1758 if (!apply_status &&
150fe065 1759 !repo_index_has_changes(the_repository, NULL, NULL)) {
84f3de28
PT
1760 say(state, stdout, _("No changes -- Patch already applied."));
1761 goto next;
1762 }
1763 }
1764
1765 if (apply_status) {
38a824fe
PT
1766 printf_ln(_("Patch failed at %s %.*s"), msgnum(state),
1767 linelen(state->msg), state->msg);
1768
38a824fe 1769 if (advice_amworkdir)
431bb23a 1770 advise(_("Use 'git am --show-current-patch' to see the failed patch"));
38a824fe 1771
2d83109a 1772 die_user_resolve(state);
38a824fe
PT
1773 }
1774
c9e8d960 1775 do_commit(state);
8c3bd9e2 1776
3e20dcf3 1777next:
8c3bd9e2 1778 am_next(state);
852a1710
PT
1779
1780 if (resume)
1781 am_load(state);
1782 resume = 0;
8c3bd9e2
PT
1783 }
1784
e3b1e3bd 1785 if (!is_empty_or_missing_file(am_path(state, "rewritten"))) {
13b97ea5 1786 assert(state->rebasing);
88b291fe 1787 copy_notes_for_rebase(state);
13b97ea5
PT
1788 run_post_rewrite_hook(state);
1789 }
1790
35bdcc59
PT
1791 /*
1792 * In rebasing mode, it's up to the caller to take care of
1793 * housekeeping.
1794 */
1795 if (!state->rebasing) {
1796 am_destroy(state);
2d511cfc 1797 close_object_store(the_repository->objects);
35bdcc59
PT
1798 run_command_v_opt(argv_gc_auto, RUN_GIT_CMD);
1799 }
8c3bd9e2 1800}
73c2779f 1801
240bfd2d
PT
1802/**
1803 * Resume the current am session after patch application failure. The user did
1804 * all the hard work, and we do not have to do any patch application. Just
1805 * trust and commit what the user has in the index and working tree.
1806 */
1807static void am_resolve(struct am_state *state)
1808{
1809 validate_resume_state(state);
1810
5d28cf78 1811 say(state, stdout, _("Applying: %.*s"), linelen(state->msg), state->msg);
240bfd2d 1812
150fe065 1813 if (!repo_index_has_changes(the_repository, NULL, NULL)) {
240bfd2d
PT
1814 printf_ln(_("No changes - did you forget to use 'git add'?\n"
1815 "If there is nothing left to stage, chances are that something else\n"
1816 "already introduced the same changes; you might want to skip this patch."));
2d83109a 1817 die_user_resolve(state);
240bfd2d
PT
1818 }
1819
1820 if (unmerged_cache()) {
1821 printf_ln(_("You still have unmerged paths in your index.\n"
6c486862
JNA
1822 "You should 'git add' each file with resolved conflicts to mark them as such.\n"
1823 "You might run `git rm` on a file to accept \"deleted by them\" for it."));
2d83109a 1824 die_user_resolve(state);
240bfd2d
PT
1825 }
1826
7ff26832
PT
1827 if (state->interactive) {
1828 write_index_patch(state);
1829 if (do_interactive(state))
1830 goto next;
1831 }
1832
35843b11 1833 repo_rerere(the_repository, 0);
f1cb96d6 1834
240bfd2d
PT
1835 do_commit(state);
1836
7ff26832 1837next:
240bfd2d 1838 am_next(state);
852a1710 1839 am_load(state);
8c7b1563 1840 am_run(state, 0);
240bfd2d
PT
1841}
1842
9990080c
PT
1843/**
1844 * Performs a checkout fast-forward from `head` to `remote`. If `reset` is
1845 * true, any unmerged entries will be discarded. Returns 0 on success, -1 on
1846 * failure.
1847 */
1848static int fast_forward_to(struct tree *head, struct tree *remote, int reset)
1849{
837e34eb 1850 struct lock_file lock_file = LOCK_INIT;
9990080c
PT
1851 struct unpack_trees_options opts;
1852 struct tree_desc t[2];
1853
1854 if (parse_tree(head) || parse_tree(remote))
1855 return -1;
1856
837e34eb 1857 hold_locked_index(&lock_file, LOCK_DIE_ON_ERROR);
9990080c
PT
1858
1859 refresh_cache(REFRESH_QUIET);
1860
1861 memset(&opts, 0, sizeof(opts));
1862 opts.head_idx = 1;
1863 opts.src_index = &the_index;
1864 opts.dst_index = &the_index;
1865 opts.update = 1;
1866 opts.merge = 1;
1867 opts.reset = reset;
1868 opts.fn = twoway_merge;
1869 init_tree_desc(&t[0], head->buffer, head->size);
1870 init_tree_desc(&t[1], remote->buffer, remote->size);
1871
1872 if (unpack_trees(2, t, &opts)) {
837e34eb 1873 rollback_lock_file(&lock_file);
9990080c
PT
1874 return -1;
1875 }
1876
837e34eb 1877 if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
9990080c
PT
1878 die(_("unable to write new index file"));
1879
1880 return 0;
1881}
1882
3ecc7040
PT
1883/**
1884 * Merges a tree into the index. The index's stat info will take precedence
1885 * over the merged tree's. Returns 0 on success, -1 on failure.
1886 */
1887static int merge_tree(struct tree *tree)
1888{
837e34eb 1889 struct lock_file lock_file = LOCK_INIT;
3ecc7040
PT
1890 struct unpack_trees_options opts;
1891 struct tree_desc t[1];
1892
1893 if (parse_tree(tree))
1894 return -1;
1895
837e34eb 1896 hold_locked_index(&lock_file, LOCK_DIE_ON_ERROR);
3ecc7040
PT
1897
1898 memset(&opts, 0, sizeof(opts));
1899 opts.head_idx = 1;
1900 opts.src_index = &the_index;
1901 opts.dst_index = &the_index;
1902 opts.merge = 1;
1903 opts.fn = oneway_merge;
1904 init_tree_desc(&t[0], tree->buffer, tree->size);
1905
1906 if (unpack_trees(1, t, &opts)) {
837e34eb 1907 rollback_lock_file(&lock_file);
3ecc7040
PT
1908 return -1;
1909 }
1910
837e34eb 1911 if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
3ecc7040
PT
1912 die(_("unable to write new index file"));
1913
1914 return 0;
1915}
1916
9990080c
PT
1917/**
1918 * Clean the index without touching entries that are not modified between
1919 * `head` and `remote`.
1920 */
8c88769b 1921static int clean_index(const struct object_id *head, const struct object_id *remote)
9990080c 1922{
9990080c 1923 struct tree *head_tree, *remote_tree, *index_tree;
8c88769b 1924 struct object_id index;
9990080c 1925
a9dbc179 1926 head_tree = parse_tree_indirect(head);
9990080c 1927 if (!head_tree)
8c88769b 1928 return error(_("Could not parse object '%s'."), oid_to_hex(head));
9990080c 1929
a9dbc179 1930 remote_tree = parse_tree_indirect(remote);
9990080c 1931 if (!remote_tree)
8c88769b 1932 return error(_("Could not parse object '%s'."), oid_to_hex(remote));
9990080c
PT
1933
1934 read_cache_unmerged();
1935
1936 if (fast_forward_to(head_tree, head_tree, 1))
1937 return -1;
1938
fc5cb99f 1939 if (write_cache_as_tree(&index, 0, NULL))
9990080c
PT
1940 return -1;
1941
a9dbc179 1942 index_tree = parse_tree_indirect(&index);
9990080c 1943 if (!index_tree)
8c88769b 1944 return error(_("Could not parse object '%s'."), oid_to_hex(&index));
9990080c
PT
1945
1946 if (fast_forward_to(index_tree, remote_tree, 0))
1947 return -1;
1948
3ecc7040 1949 if (merge_tree(remote_tree))
9990080c 1950 return -1;
9990080c 1951
f4a4b9ac 1952 remove_branch_state(the_repository, 0);
9990080c
PT
1953
1954 return 0;
1955}
1956
f1cb96d6
PT
1957/**
1958 * Resets rerere's merge resolution metadata.
1959 */
1960static void am_rerere_clear(void)
1961{
1962 struct string_list merge_rr = STRING_LIST_INIT_DUP;
55e6b354 1963 rerere_clear(the_repository, &merge_rr);
f1cb96d6
PT
1964 string_list_clear(&merge_rr, 1);
1965}
1966
9990080c
PT
1967/**
1968 * Resume the current am session by skipping the current patch.
1969 */
1970static void am_skip(struct am_state *state)
1971{
8c88769b 1972 struct object_id head;
9990080c 1973
f1cb96d6
PT
1974 am_rerere_clear();
1975
8c88769b 1976 if (get_oid("HEAD", &head))
d41836a0 1977 oidcpy(&head, the_hash_algo->empty_tree);
9990080c 1978
8c88769b 1979 if (clean_index(&head, &head))
9990080c
PT
1980 die(_("failed to clean index"));
1981
45339f74
EN
1982 if (state->rebasing) {
1983 FILE *fp = xfopen(am_path(state, "rewritten"), "a");
1984
1985 assert(!is_null_oid(&state->orig_commit));
1986 fprintf(fp, "%s ", oid_to_hex(&state->orig_commit));
1987 fprintf(fp, "%s\n", oid_to_hex(&head));
1988 fclose(fp);
1989 }
1990
9990080c 1991 am_next(state);
852a1710 1992 am_load(state);
9990080c
PT
1993 am_run(state, 0);
1994}
1995
33388a71
PT
1996/**
1997 * Returns true if it is safe to reset HEAD to the ORIG_HEAD, false otherwise.
1998 *
1999 * It is not safe to reset HEAD when:
2000 * 1. git-am previously failed because the index was dirty.
2001 * 2. HEAD has moved since git-am previously failed.
2002 */
2003static int safe_to_abort(const struct am_state *state)
2004{
2005 struct strbuf sb = STRBUF_INIT;
8c88769b 2006 struct object_id abort_safety, head;
33388a71
PT
2007
2008 if (file_exists(am_path(state, "dirtyindex")))
2009 return 0;
2010
2011 if (read_state_file(&sb, state, "abort-safety", 1) > 0) {
8c88769b 2012 if (get_oid_hex(sb.buf, &abort_safety))
ccd71b2f 2013 die(_("could not parse %s"), am_path(state, "abort-safety"));
33388a71 2014 } else
8c88769b 2015 oidclr(&abort_safety);
28ac7aa7 2016 strbuf_release(&sb);
33388a71 2017
8c88769b 2018 if (get_oid("HEAD", &head))
2019 oidclr(&head);
33388a71 2020
4a7e27e9 2021 if (oideq(&head, &abort_safety))
33388a71
PT
2022 return 1;
2023
1868331f 2024 warning(_("You seem to have moved HEAD since the last 'am' failure.\n"
33388a71
PT
2025 "Not rewinding to ORIG_HEAD"));
2026
2027 return 0;
2028}
2029
2030/**
2031 * Aborts the current am session if it is safe to do so.
2032 */
2033static void am_abort(struct am_state *state)
2034{
8c88769b 2035 struct object_id curr_head, orig_head;
33388a71
PT
2036 int has_curr_head, has_orig_head;
2037 char *curr_branch;
2038
2039 if (!safe_to_abort(state)) {
2040 am_destroy(state);
2041 return;
2042 }
2043
f1cb96d6
PT
2044 am_rerere_clear();
2045
0f2dc722 2046 curr_branch = resolve_refdup("HEAD", 0, &curr_head, NULL);
57e0ef0e 2047 has_curr_head = curr_branch && !is_null_oid(&curr_head);
33388a71 2048 if (!has_curr_head)
d41836a0 2049 oidcpy(&curr_head, the_hash_algo->empty_tree);
33388a71 2050
8c88769b 2051 has_orig_head = !get_oid("ORIG_HEAD", &orig_head);
33388a71 2052 if (!has_orig_head)
d41836a0 2053 oidcpy(&orig_head, the_hash_algo->empty_tree);
33388a71 2054
8c88769b 2055 clean_index(&curr_head, &orig_head);
33388a71
PT
2056
2057 if (has_orig_head)
ae077771 2058 update_ref("am --abort", "HEAD", &orig_head,
2059 has_curr_head ? &curr_head : NULL, 0,
2060 UPDATE_REFS_DIE_ON_ERR);
33388a71 2061 else if (curr_branch)
91774afc 2062 delete_ref(NULL, curr_branch, NULL, REF_NO_DEREF);
33388a71
PT
2063
2064 free(curr_branch);
2065 am_destroy(state);
2066}
2067
f3b48228 2068static int show_patch(struct am_state *state, enum show_patch_type sub_mode)
984913a2
NTND
2069{
2070 struct strbuf sb = STRBUF_INIT;
2071 const char *patch_path;
2072 int len;
2073
66335298
NTND
2074 if (!is_null_oid(&state->orig_commit)) {
2075 const char *av[4] = { "show", NULL, "--", NULL };
2076 char *new_oid_str;
2077 int ret;
2078
2079 av[1] = new_oid_str = xstrdup(oid_to_hex(&state->orig_commit));
2080 ret = run_command_v_opt(av, RUN_GIT_CMD);
2081 free(new_oid_str);
2082 return ret;
2083 }
2084
f3b48228
PB
2085 switch (sub_mode) {
2086 case SHOW_PATCH_RAW:
2087 patch_path = am_path(state, msgnum(state));
2088 break;
2089 default:
2090 BUG("invalid mode for --show-current-patch");
2091 }
2092
984913a2
NTND
2093 len = strbuf_read_file(&sb, patch_path, 0);
2094 if (len < 0)
2095 die_errno(_("failed to read '%s'"), patch_path);
2096
2097 setup_pager();
2098 write_in_full(1, sb.buf, sb.len);
2099 strbuf_release(&sb);
2100 return 0;
2101}
2102
11c2177f
PT
2103/**
2104 * parse_options() callback that validates and sets opt->value to the
2105 * PATCH_FORMAT_* enum value corresponding to `arg`.
2106 */
2107static int parse_opt_patchformat(const struct option *opt, const char *arg, int unset)
2108{
2109 int *opt_value = opt->value;
2110
fce56648
JK
2111 if (unset)
2112 *opt_value = PATCH_FORMAT_UNKNOWN;
2113 else if (!strcmp(arg, "mbox"))
11c2177f 2114 *opt_value = PATCH_FORMAT_MBOX;
5ae41c79
PT
2115 else if (!strcmp(arg, "stgit"))
2116 *opt_value = PATCH_FORMAT_STGIT;
336108c1
PT
2117 else if (!strcmp(arg, "stgit-series"))
2118 *opt_value = PATCH_FORMAT_STGIT_SERIES;
94cd175c
PT
2119 else if (!strcmp(arg, "hg"))
2120 *opt_value = PATCH_FORMAT_HG;
d9925d1a
EW
2121 else if (!strcmp(arg, "mboxrd"))
2122 *opt_value = PATCH_FORMAT_MBOXRD;
5a59a230
NTND
2123 /*
2124 * Please update $__git_patchformat in git-completion.bash
2125 * when you add new options
2126 */
11c2177f
PT
2127 else
2128 return error(_("Invalid value for --patch-format: %s"), arg);
2129 return 0;
2130}
2131
e8ef1e8d 2132enum resume_type {
240bfd2d 2133 RESUME_FALSE = 0,
8c7b1563 2134 RESUME_APPLY,
9990080c 2135 RESUME_RESOLVED,
33388a71 2136 RESUME_SKIP,
65ed8ff3 2137 RESUME_ABORT,
9ca488c0 2138 RESUME_QUIT,
984913a2 2139 RESUME_SHOW_PATCH
240bfd2d
PT
2140};
2141
e8ef1e8d
PB
2142struct resume_mode {
2143 enum resume_type mode;
f3b48228 2144 enum show_patch_type sub_mode;
e8ef1e8d
PB
2145};
2146
f3b48228
PB
2147static int parse_opt_show_current_patch(const struct option *opt, const char *arg, int unset)
2148{
2149 int *opt_value = opt->value;
2150 struct resume_mode *resume = container_of(opt_value, struct resume_mode, mode);
2151
2152 /*
2153 * Please update $__git_showcurrentpatch in git-completion.bash
2154 * when you add new options
2155 */
2156 const char *valid_modes[] = {
2157 [SHOW_PATCH_RAW] = "raw"
2158 };
2159 int new_value = SHOW_PATCH_RAW;
2160
2161 if (arg) {
2162 for (new_value = 0; new_value < ARRAY_SIZE(valid_modes); new_value++) {
2163 if (!strcmp(arg, valid_modes[new_value]))
2164 break;
2165 }
2166 if (new_value >= ARRAY_SIZE(valid_modes))
2167 return error(_("Invalid value for --show-current-patch: %s"), arg);
2168 }
2169
2170 if (resume->mode == RESUME_SHOW_PATCH && new_value != resume->sub_mode)
2171 return error(_("--show-current-patch=%s is incompatible with "
2172 "--show-current-patch=%s"),
2173 arg, valid_modes[resume->sub_mode]);
2174
2175 resume->mode = RESUME_SHOW_PATCH;
2176 resume->sub_mode = new_value;
2177 return 0;
2178}
2179
434c64df
RMM
2180static int git_am_config(const char *k, const char *v, void *cb)
2181{
2182 int status;
2183
2184 status = git_gpg_config(k, v, NULL);
2185 if (status)
2186 return status;
2187
2188 return git_default_config(k, v, NULL);
2189}
2190
73c2779f
PT
2191int cmd_am(int argc, const char **argv, const char *prefix)
2192{
8c3bd9e2 2193 struct am_state state;
c2676cde 2194 int binary = -1;
5d123a40 2195 int keep_cr = -1;
11c2177f 2196 int patch_format = PATCH_FORMAT_UNKNOWN;
e8ef1e8d 2197 struct resume_mode resume = { .mode = RESUME_FALSE };
852a1710 2198 int in_progress;
984913a2 2199 int ret = 0;
8c3bd9e2
PT
2200
2201 const char * const usage[] = {
d65fdc9c 2202 N_("git am [<options>] [(<mbox> | <Maildir>)...]"),
d96a0313 2203 N_("git am [<options>] (--continue | --skip | --abort)"),
8c3bd9e2
PT
2204 NULL
2205 };
2206
2207 struct option options[] = {
7ff26832
PT
2208 OPT_BOOL('i', "interactive", &state.interactive,
2209 N_("run interactively")),
c2676cde 2210 OPT_HIDDEN_BOOL('b', "binary", &binary,
1fb5a0ea 2211 N_("historical option -- no-op")),
84f3de28
PT
2212 OPT_BOOL('3', "3way", &state.threeway,
2213 N_("allow fall back on 3way merging if needed")),
5d28cf78 2214 OPT__QUIET(&state.quiet, N_("be quiet")),
b5e82359
PT
2215 OPT_SET_INT('s', "signoff", &state.signoff,
2216 N_("add a Signed-off-by line to the commit message"),
2217 SIGNOFF_EXPLICIT),
ef7ee16d
PT
2218 OPT_BOOL('u', "utf8", &state.utf8,
2219 N_("recode into utf8 (default)")),
4f1b6961
PT
2220 OPT_SET_INT('k', "keep", &state.keep,
2221 N_("pass -k flag to git-mailinfo"), KEEP_TRUE),
2222 OPT_SET_INT(0, "keep-non-patch", &state.keep,
2223 N_("pass -b flag to git-mailinfo"), KEEP_NON_PATCH),
702cbaad
PT
2224 OPT_BOOL('m', "message-id", &state.message_id,
2225 N_("pass -m flag to git-mailinfo")),
3e4a67b4
NTND
2226 OPT_SET_INT_F(0, "keep-cr", &keep_cr,
2227 N_("pass --keep-cr flag to git-mailsplit for mbox format"),
2228 1, PARSE_OPT_NONEG),
2229 OPT_SET_INT_F(0, "no-keep-cr", &keep_cr,
2230 N_("do not pass --keep-cr flag to git-mailsplit independent of am.keepcr"),
2231 0, PARSE_OPT_NONEG),
9b646617
PT
2232 OPT_BOOL('c', "scissors", &state.scissors,
2233 N_("strip everything before a scissors line")),
257e8cec
PT
2234 OPT_PASSTHRU_ARGV(0, "whitespace", &state.git_apply_opts, N_("action"),
2235 N_("pass it through git-apply"),
2236 0),
2237 OPT_PASSTHRU_ARGV(0, "ignore-space-change", &state.git_apply_opts, NULL,
2238 N_("pass it through git-apply"),
2239 PARSE_OPT_NOARG),
2240 OPT_PASSTHRU_ARGV(0, "ignore-whitespace", &state.git_apply_opts, NULL,
2241 N_("pass it through git-apply"),
2242 PARSE_OPT_NOARG),
2243 OPT_PASSTHRU_ARGV(0, "directory", &state.git_apply_opts, N_("root"),
2244 N_("pass it through git-apply"),
2245 0),
2246 OPT_PASSTHRU_ARGV(0, "exclude", &state.git_apply_opts, N_("path"),
2247 N_("pass it through git-apply"),
2248 0),
2249 OPT_PASSTHRU_ARGV(0, "include", &state.git_apply_opts, N_("path"),
2250 N_("pass it through git-apply"),
2251 0),
2252 OPT_PASSTHRU_ARGV('C', NULL, &state.git_apply_opts, N_("n"),
2253 N_("pass it through git-apply"),
2254 0),
2255 OPT_PASSTHRU_ARGV('p', NULL, &state.git_apply_opts, N_("num"),
2256 N_("pass it through git-apply"),
2257 0),
11c2177f
PT
2258 OPT_CALLBACK(0, "patch-format", &patch_format, N_("format"),
2259 N_("format the patch(es) are in"),
2260 parse_opt_patchformat),
257e8cec
PT
2261 OPT_PASSTHRU_ARGV(0, "reject", &state.git_apply_opts, NULL,
2262 N_("pass it through git-apply"),
2263 PARSE_OPT_NOARG),
2d83109a
PT
2264 OPT_STRING(0, "resolvemsg", &state.resolvemsg, NULL,
2265 N_("override error message when patch failure occurs")),
e8ef1e8d 2266 OPT_CMDMODE(0, "continue", &resume.mode,
240bfd2d
PT
2267 N_("continue applying patches after resolving a conflict"),
2268 RESUME_RESOLVED),
e8ef1e8d 2269 OPT_CMDMODE('r', "resolved", &resume.mode,
240bfd2d
PT
2270 N_("synonyms for --continue"),
2271 RESUME_RESOLVED),
e8ef1e8d 2272 OPT_CMDMODE(0, "skip", &resume.mode,
9990080c
PT
2273 N_("skip the current patch"),
2274 RESUME_SKIP),
e8ef1e8d 2275 OPT_CMDMODE(0, "abort", &resume.mode,
33388a71
PT
2276 N_("restore the original branch and abort the patching operation."),
2277 RESUME_ABORT),
e8ef1e8d 2278 OPT_CMDMODE(0, "quit", &resume.mode,
65ed8ff3
NTND
2279 N_("abort the patching operation but keep HEAD where it is."),
2280 RESUME_QUIT),
f3b48228
PB
2281 { OPTION_CALLBACK, 0, "show-current-patch", &resume.mode,
2282 "raw",
2283 N_("show the patch being applied"),
2284 PARSE_OPT_CMDMODE | PARSE_OPT_OPTARG | PARSE_OPT_NONEG | PARSE_OPT_LITERAL_ARGHELP,
2285 parse_opt_show_current_patch, RESUME_SHOW_PATCH },
0cd4bcba
PT
2286 OPT_BOOL(0, "committer-date-is-author-date",
2287 &state.committer_date_is_author_date,
2288 N_("lie about committer date")),
f07adb62
PT
2289 OPT_BOOL(0, "ignore-date", &state.ignore_date,
2290 N_("use current timestamp for author date")),
f1cb96d6 2291 OPT_RERERE_AUTOUPDATE(&state.allow_rerere_autoupdate),
7e35dacb
PT
2292 { OPTION_STRING, 'S', "gpg-sign", &state.sign_commit, N_("key-id"),
2293 N_("GPG-sign commits"),
2294 PARSE_OPT_OPTARG, NULL, (intptr_t) "" },
35bdcc59
PT
2295 OPT_HIDDEN_BOOL(0, "rebasing", &state.rebasing,
2296 N_("(internal use for git-rebase)")),
8c3bd9e2
PT
2297 OPT_END()
2298 };
73c2779f 2299
f3a2fffe
JK
2300 if (argc == 2 && !strcmp(argv[1], "-h"))
2301 usage_with_options(usage, options);
2302
434c64df 2303 git_config(git_am_config, NULL);
8c3bd9e2 2304
16d2676c 2305 am_state_init(&state);
8c3bd9e2 2306
852a1710
PT
2307 in_progress = am_in_progress(&state);
2308 if (in_progress)
2309 am_load(&state);
2310
8c3bd9e2
PT
2311 argc = parse_options(argc, argv, prefix, options, usage, 0);
2312
c2676cde
PT
2313 if (binary >= 0)
2314 fprintf_ln(stderr, _("The -b/--binary option has been a no-op for long time, and\n"
2315 "it will be removed. Please do not use it anymore."));
2316
5e4f9cff
PT
2317 /* Ensure a valid committer ident can be constructed */
2318 git_committer_info(IDENT_STRICT);
2319
e1ff0a32 2320 if (repo_read_index_preload(the_repository, NULL, 0) < 0)
38a824fe
PT
2321 die(_("failed to read the index"));
2322
852a1710 2323 if (in_progress) {
8d185503
PT
2324 /*
2325 * Catch user error to feed us patches when there is a session
2326 * in progress:
2327 *
2328 * 1. mbox path(s) are provided on the command-line.
2329 * 2. stdin is not a tty: the user is trying to feed us a patch
2330 * from standard input. This is somewhat unreliable -- stdin
2331 * could be /dev/null for example and the caller did not
2332 * intend to feed us a patch but wanted to continue
2333 * unattended.
2334 */
e8ef1e8d 2335 if (argc || (resume.mode == RESUME_FALSE && !isatty(0)))
8d185503
PT
2336 die(_("previous rebase directory %s still exists but mbox given."),
2337 state.dir);
2338
e8ef1e8d
PB
2339 if (resume.mode == RESUME_FALSE)
2340 resume.mode = RESUME_APPLY;
b5e82359
PT
2341
2342 if (state.signoff == SIGNOFF_EXPLICIT)
2343 am_append_signoff(&state);
8c7b1563 2344 } else {
11c2177f
PT
2345 struct argv_array paths = ARGV_ARRAY_INIT;
2346 int i;
2347
6d42ac29
PT
2348 /*
2349 * Handle stray state directory in the independent-run case. In
2350 * the --rebasing case, it is up to the caller to take care of
2351 * stray directories.
2352 */
2353 if (file_exists(state.dir) && !state.rebasing) {
e8ef1e8d 2354 if (resume.mode == RESUME_ABORT || resume.mode == RESUME_QUIT) {
6d42ac29
PT
2355 am_destroy(&state);
2356 am_state_release(&state);
2357 return 0;
2358 }
2359
2360 die(_("Stray %s directory found.\n"
2361 "Use \"git am --abort\" to remove it."),
2362 state.dir);
2363 }
2364
e8ef1e8d 2365 if (resume.mode)
240bfd2d
PT
2366 die(_("Resolve operation not in progress, we are not resuming."));
2367
11c2177f
PT
2368 for (i = 0; i < argc; i++) {
2369 if (is_absolute_path(argv[i]) || !prefix)
2370 argv_array_push(&paths, argv[i]);
2371 else
2372 argv_array_push(&paths, mkpath("%s/%s", prefix, argv[i]));
2373 }
2374
6e7baf24
JK
2375 if (state.interactive && !paths.argc)
2376 die(_("interactive mode requires patches on the command line"));
2377
5d123a40 2378 am_setup(&state, patch_format, paths.argv, keep_cr);
11c2177f
PT
2379
2380 argv_array_clear(&paths);
2381 }
8c3bd9e2 2382
e8ef1e8d 2383 switch (resume.mode) {
240bfd2d 2384 case RESUME_FALSE:
8c7b1563
PT
2385 am_run(&state, 0);
2386 break;
2387 case RESUME_APPLY:
2388 am_run(&state, 1);
240bfd2d
PT
2389 break;
2390 case RESUME_RESOLVED:
2391 am_resolve(&state);
2392 break;
9990080c
PT
2393 case RESUME_SKIP:
2394 am_skip(&state);
2395 break;
33388a71
PT
2396 case RESUME_ABORT:
2397 am_abort(&state);
2398 break;
65ed8ff3
NTND
2399 case RESUME_QUIT:
2400 am_rerere_clear();
2401 am_destroy(&state);
2402 break;
984913a2 2403 case RESUME_SHOW_PATCH:
f3b48228 2404 ret = show_patch(&state, resume.sub_mode);
984913a2 2405 break;
240bfd2d 2406 default:
033abf97 2407 BUG("invalid resume value");
240bfd2d 2408 }
8c3bd9e2
PT
2409
2410 am_state_release(&state);
2411
984913a2 2412 return ret;
73c2779f 2413}