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