blob: 1aea657a7f0b56345e1b2d5f8f32df439e278e80 [file] [log] [blame]
Paul Tan73c27792015-08-04 21:51:24 +08001/*
2 * Builtin "git am"
3 *
4 * Based on git-am.sh by Junio C Hamano.
5 */
Nguyễn Thái Ngọc Duyf8adbec2019-01-24 15:29:12 +07006#define USE_THE_INDEX_COMPATIBILITY_MACROS
Paul Tan73c27792015-08-04 21:51:24 +08007#include "cache.h"
Brandon Williamsb2141fc2017-06-14 11:07:36 -07008#include "config.h"
Paul Tan73c27792015-08-04 21:51:24 +08009#include "builtin.h"
Stefan Bellerd807c4a2018-04-10 14:26:18 -070010#include "exec-cmd.h"
Paul Tan8c3bd9e2015-08-04 21:51:25 +080011#include "parse-options.h"
12#include "dir.h"
Paul Tan11c21772015-08-04 21:51:26 +080013#include "run-command.h"
Paul Tan3e20dcf2015-08-04 21:51:28 +080014#include "quote.h"
Junio C Hamanodb86e612015-08-25 14:57:09 -070015#include "tempfile.h"
Paul Tan38a824f2015-08-04 21:51:29 +080016#include "lockfile.h"
Paul Tanc9e8d962015-08-04 21:51:30 +080017#include "cache-tree.h"
18#include "refs.h"
19#include "commit.h"
Paul Tan32a5fcb2015-08-04 21:51:31 +080020#include "diff.h"
21#include "diffcore.h"
Paul Tan99900802015-08-04 21:51:34 +080022#include "unpack-trees.h"
23#include "branch.h"
Paul Taneb898b82015-08-04 21:51:39 +080024#include "sequencer.h"
Paul Tan84f3de22015-08-04 21:51:41 +080025#include "revision.h"
26#include "merge-recursive.h"
Paul Tandf2760a2015-08-04 21:51:43 +080027#include "revision.h"
28#include "log-tree.h"
Paul Tan88b291f2015-08-04 21:51:55 +080029#include "notes-utils.h"
Paul Tanf1cb96d2015-08-04 21:51:59 +080030#include "rerere.h"
Paul Tan7ff26832015-08-04 21:52:03 +080031#include "prompt.h"
Junio C Hamano4b98bae2015-10-14 17:45:43 -070032#include "mailinfo.h"
Christian Couderedfac5e2016-09-04 22:18:33 +020033#include "apply.h"
Junio C Hamanoa77598e2016-08-30 12:36:42 -070034#include "string-list.h"
Jonathan Tan3836d882017-08-18 15:20:21 -070035#include "packfile.h"
Stefan Bellerf86bcc72018-06-28 18:21:56 -070036#include "repository.h"
Paul Tan3e20dcf2015-08-04 21:51:28 +080037
38/**
Paul Tan38a824f2015-08-04 21:51:29 +080039 * Returns the length of the first line of msg.
40 */
41static int linelen(const char *msg)
42{
43 return strchrnul(msg, '\n') - msg;
44}
45
Paul Tan5ae41c72015-08-04 21:52:00 +080046/**
47 * Returns true if `str` consists of only whitespace, false otherwise.
48 */
49static int str_isspace(const char *str)
50{
51 for (; *str; str++)
52 if (!isspace(*str))
53 return 0;
54
55 return 1;
56}
57
Paul Tan11c21772015-08-04 21:51:26 +080058enum patch_format {
59 PATCH_FORMAT_UNKNOWN = 0,
Paul Tan5ae41c72015-08-04 21:52:00 +080060 PATCH_FORMAT_MBOX,
Paul Tan336108c2015-08-04 21:52:01 +080061 PATCH_FORMAT_STGIT,
Paul Tan94cd1752015-08-04 21:52:02 +080062 PATCH_FORMAT_STGIT_SERIES,
Eric Wongd9925d12016-06-05 04:46:41 +000063 PATCH_FORMAT_HG,
64 PATCH_FORMAT_MBOXRD
Paul Tan11c21772015-08-04 21:51:26 +080065};
Paul Tan8c3bd9e2015-08-04 21:51:25 +080066
Paul Tan4f1b6962015-08-04 21:51:46 +080067enum keep_type {
68 KEEP_FALSE = 0,
69 KEEP_TRUE, /* pass -k flag to git-mailinfo */
70 KEEP_NON_PATCH /* pass -b flag to git-mailinfo */
71};
72
Paul Tan9b646612015-08-04 21:51:49 +080073enum scissors_type {
74 SCISSORS_UNSET = -1,
75 SCISSORS_FALSE = 0, /* pass --no-scissors to git-mailinfo */
76 SCISSORS_TRUE /* pass --scissors to git-mailinfo */
77};
78
Paul Tanb5e82352015-08-04 22:08:51 +080079enum signoff_type {
80 SIGNOFF_FALSE = 0,
81 SIGNOFF_TRUE = 1,
82 SIGNOFF_EXPLICIT /* --signoff was set on the command-line */
83};
84
Paul Tan8c3bd9e2015-08-04 21:51:25 +080085struct am_state {
86 /* state directory path */
87 char *dir;
88
89 /* current and last patch numbers, 1-indexed */
90 int cur;
91 int last;
Paul Tan11c21772015-08-04 21:51:26 +080092
Paul Tan3e20dcf2015-08-04 21:51:28 +080093 /* commit metadata and message */
94 char *author_name;
95 char *author_email;
96 char *author_date;
97 char *msg;
98 size_t msg_len;
99
Paul Tan13b97ea2015-08-04 21:51:54 +0800100 /* when --rebasing, records the original commit the patch came from */
brian m. carlson8c887692016-09-05 20:08:09 +0000101 struct object_id orig_commit;
Paul Tan13b97ea2015-08-04 21:51:54 +0800102
Paul Tan11c21772015-08-04 21:51:26 +0800103 /* number of digits in patch filename */
104 int prec;
Paul Tan5d28cf72015-08-04 21:51:37 +0800105
106 /* various operating modes and command line options */
Paul Tan7ff26832015-08-04 21:52:03 +0800107 int interactive;
Paul Tan84f3de22015-08-04 21:51:41 +0800108 int threeway;
Paul Tan5d28cf72015-08-04 21:51:37 +0800109 int quiet;
Paul Tanb5e82352015-08-04 22:08:51 +0800110 int signoff; /* enum signoff_type */
Paul Tanef7ee162015-08-04 21:51:45 +0800111 int utf8;
Paul Tan4f1b6962015-08-04 21:51:46 +0800112 int keep; /* enum keep_type */
Paul Tan702cbaa2015-08-04 21:51:47 +0800113 int message_id;
Paul Tan9b646612015-08-04 21:51:49 +0800114 int scissors; /* enum scissors_type */
Paul Tan257e8ce2015-08-04 21:51:50 +0800115 struct argv_array git_apply_opts;
Paul Tan2d831092015-08-04 21:51:38 +0800116 const char *resolvemsg;
Paul Tan0cd4bcb2015-08-04 21:51:52 +0800117 int committer_date_is_author_date;
Paul Tanf07adb62015-08-04 21:51:51 +0800118 int ignore_date;
Paul Tanf1cb96d2015-08-04 21:51:59 +0800119 int allow_rerere_autoupdate;
Paul Tan7e35dac2015-08-04 21:51:53 +0800120 const char *sign_commit;
Paul Tan35bdcc52015-08-04 21:51:42 +0800121 int rebasing;
Paul Tan8c3bd9e2015-08-04 21:51:25 +0800122};
123
124/**
Jeff King16d26762017-04-20 17:09:35 -0400125 * Initializes am_state with the default values.
Paul Tan8c3bd9e2015-08-04 21:51:25 +0800126 */
Jeff King16d26762017-04-20 17:09:35 -0400127static void am_state_init(struct am_state *state)
Paul Tan8c3bd9e2015-08-04 21:51:25 +0800128{
Paul Tan7e35dac2015-08-04 21:51:53 +0800129 int gpgsign;
130
Paul Tan8c3bd9e2015-08-04 21:51:25 +0800131 memset(state, 0, sizeof(*state));
132
Jeff King16d26762017-04-20 17:09:35 -0400133 state->dir = git_pathdup("rebase-apply");
Paul Tan11c21772015-08-04 21:51:26 +0800134
135 state->prec = 4;
Paul Tanef7ee162015-08-04 21:51:45 +0800136
Remi Lespinete97a5e72015-08-04 22:19:26 +0800137 git_config_get_bool("am.threeway", &state->threeway);
138
Paul Tanef7ee162015-08-04 21:51:45 +0800139 state->utf8 = 1;
Paul Tan702cbaa2015-08-04 21:51:47 +0800140
141 git_config_get_bool("am.messageid", &state->message_id);
Paul Tan9b646612015-08-04 21:51:49 +0800142
143 state->scissors = SCISSORS_UNSET;
Paul Tan257e8ce2015-08-04 21:51:50 +0800144
145 argv_array_init(&state->git_apply_opts);
Paul Tan7e35dac2015-08-04 21:51:53 +0800146
147 if (!git_config_get_bool("commit.gpgsign", &gpgsign))
148 state->sign_commit = gpgsign ? "" : NULL;
Paul Tan8c3bd9e2015-08-04 21:51:25 +0800149}
150
151/**
152 * Releases memory allocated by an am_state.
153 */
154static void am_state_release(struct am_state *state)
155{
156 free(state->dir);
Paul Tan3e20dcf2015-08-04 21:51:28 +0800157 free(state->author_name);
158 free(state->author_email);
159 free(state->author_date);
160 free(state->msg);
Paul Tan257e8ce2015-08-04 21:51:50 +0800161 argv_array_clear(&state->git_apply_opts);
Paul Tan8c3bd9e2015-08-04 21:51:25 +0800162}
163
164/**
165 * Returns path relative to the am_state directory.
166 */
167static inline const char *am_path(const struct am_state *state, const char *path)
168{
169 return mkpath("%s/%s", state->dir, path);
170}
171
172/**
Junio C Hamano25b763b2015-08-24 09:12:53 -0700173 * For convenience to call write_file()
174 */
René Scharfe1dad8792016-07-08 05:08:05 -0400175static void write_state_text(const struct am_state *state,
176 const char *name, const char *string)
Junio C Hamano25b763b2015-08-24 09:12:53 -0700177{
René Scharfe1dad8792016-07-08 05:08:05 -0400178 write_file(am_path(state, name), "%s", string);
Junio C Hamano25b763b2015-08-24 09:12:53 -0700179}
180
René Scharfe1dad8792016-07-08 05:08:05 -0400181static void write_state_count(const struct am_state *state,
182 const char *name, int value)
183{
184 write_file(am_path(state, name), "%d", value);
185}
186
187static void write_state_bool(const struct am_state *state,
Junio C Hamano25b763b2015-08-24 09:12:53 -0700188 const char *name, int value)
189{
René Scharfe1dad8792016-07-08 05:08:05 -0400190 write_state_text(state, name, value ? "t" : "f");
Junio C Hamano25b763b2015-08-24 09:12:53 -0700191}
192
193/**
Paul Tan5d28cf72015-08-04 21:51:37 +0800194 * If state->quiet is false, calls fprintf(fp, fmt, ...), and appends a newline
195 * at the end.
196 */
197static void say(const struct am_state *state, FILE *fp, const char *fmt, ...)
198{
199 va_list ap;
200
201 va_start(ap, fmt);
202 if (!state->quiet) {
203 vfprintf(fp, fmt, ap);
204 putc('\n', fp);
205 }
206 va_end(ap);
207}
208
209/**
Paul Tan8c3bd9e2015-08-04 21:51:25 +0800210 * Returns 1 if there is an am session in progress, 0 otherwise.
211 */
212static int am_in_progress(const struct am_state *state)
213{
214 struct stat st;
215
216 if (lstat(state->dir, &st) < 0 || !S_ISDIR(st.st_mode))
217 return 0;
218 if (lstat(am_path(state, "last"), &st) || !S_ISREG(st.st_mode))
219 return 0;
220 if (lstat(am_path(state, "next"), &st) || !S_ISREG(st.st_mode))
221 return 0;
222 return 1;
223}
224
225/**
226 * Reads the contents of `file` in the `state` directory into `sb`. Returns the
227 * number of bytes read on success, -1 if the file does not exist. If `trim` is
228 * set, trailing whitespace will be removed.
229 */
230static int read_state_file(struct strbuf *sb, const struct am_state *state,
231 const char *file, int trim)
232{
233 strbuf_reset(sb);
234
235 if (strbuf_read_file(sb, am_path(state, file), 0) >= 0) {
236 if (trim)
237 strbuf_trim(sb);
238
239 return sb->len;
240 }
241
242 if (errno == ENOENT)
243 return -1;
244
245 die_errno(_("could not read '%s'"), am_path(state, file));
246}
247
248/**
Paul Tan3e20dcf2015-08-04 21:51:28 +0800249 * Reads and parses the state directory's "author-script" file, and sets
250 * state->author_name, state->author_email and state->author_date accordingly.
251 * Returns 0 on success, -1 if the file could not be parsed.
252 *
253 * The author script is of the format:
254 *
255 * GIT_AUTHOR_NAME='$author_name'
256 * GIT_AUTHOR_EMAIL='$author_email'
257 * GIT_AUTHOR_DATE='$author_date'
258 *
259 * where $author_name, $author_email and $author_date are quoted. We are strict
260 * with our parsing, as the file was meant to be eval'd in the old git-am.sh
261 * script, and thus if the file differs from what this function expects, it is
262 * better to bail out than to do something that the user does not expect.
263 */
Phillip Wooda75d3512018-10-31 10:15:54 +0000264static int read_am_author_script(struct am_state *state)
Paul Tan3e20dcf2015-08-04 21:51:28 +0800265{
266 const char *filename = am_path(state, "author-script");
Paul Tan3e20dcf2015-08-04 21:51:28 +0800267
268 assert(!state->author_name);
269 assert(!state->author_email);
270 assert(!state->author_date);
271
Phillip Woodbcd33ec2018-10-31 10:15:55 +0000272 return read_author_script(filename, &state->author_name,
273 &state->author_email, &state->author_date, 1);
Paul Tan3e20dcf2015-08-04 21:51:28 +0800274}
275
276/**
277 * Saves state->author_name, state->author_email and state->author_date in the
278 * state directory's "author-script" file.
279 */
280static void write_author_script(const struct am_state *state)
281{
282 struct strbuf sb = STRBUF_INIT;
283
284 strbuf_addstr(&sb, "GIT_AUTHOR_NAME=");
285 sq_quote_buf(&sb, state->author_name);
286 strbuf_addch(&sb, '\n');
287
288 strbuf_addstr(&sb, "GIT_AUTHOR_EMAIL=");
289 sq_quote_buf(&sb, state->author_email);
290 strbuf_addch(&sb, '\n');
291
292 strbuf_addstr(&sb, "GIT_AUTHOR_DATE=");
293 sq_quote_buf(&sb, state->author_date);
294 strbuf_addch(&sb, '\n');
295
Junio C Hamano25b763b2015-08-24 09:12:53 -0700296 write_state_text(state, "author-script", sb.buf);
Paul Tan3e20dcf2015-08-04 21:51:28 +0800297
298 strbuf_release(&sb);
299}
300
301/**
302 * Reads the commit message from the state directory's "final-commit" file,
303 * setting state->msg to its contents and state->msg_len to the length of its
304 * contents in bytes.
305 *
306 * Returns 0 on success, -1 if the file does not exist.
307 */
308static int read_commit_msg(struct am_state *state)
309{
310 struct strbuf sb = STRBUF_INIT;
311
312 assert(!state->msg);
313
314 if (read_state_file(&sb, state, "final-commit", 0) < 0) {
315 strbuf_release(&sb);
316 return -1;
317 }
318
319 state->msg = strbuf_detach(&sb, &state->msg_len);
320 return 0;
321}
322
323/**
324 * Saves state->msg in the state directory's "final-commit" file.
325 */
326static void write_commit_msg(const struct am_state *state)
327{
Paul Tan3e20dcf2015-08-04 21:51:28 +0800328 const char *filename = am_path(state, "final-commit");
Jeff Kinge78d5d42016-07-08 05:12:55 -0400329 write_file_buf(filename, state->msg, state->msg_len);
Paul Tan3e20dcf2015-08-04 21:51:28 +0800330}
331
332/**
Paul Tan8c3bd9e2015-08-04 21:51:25 +0800333 * Loads state from disk.
334 */
335static void am_load(struct am_state *state)
336{
337 struct strbuf sb = STRBUF_INIT;
338
339 if (read_state_file(&sb, state, "next", 1) < 0)
Johannes Schindelin033abf92018-05-02 11:38:39 +0200340 BUG("state file 'next' does not exist");
Paul Tan8c3bd9e2015-08-04 21:51:25 +0800341 state->cur = strtol(sb.buf, NULL, 10);
342
343 if (read_state_file(&sb, state, "last", 1) < 0)
Johannes Schindelin033abf92018-05-02 11:38:39 +0200344 BUG("state file 'last' does not exist");
Paul Tan8c3bd9e2015-08-04 21:51:25 +0800345 state->last = strtol(sb.buf, NULL, 10);
346
Phillip Wooda75d3512018-10-31 10:15:54 +0000347 if (read_am_author_script(state) < 0)
Paul Tan3e20dcf2015-08-04 21:51:28 +0800348 die(_("could not parse author script"));
349
350 read_commit_msg(state);
351
Paul Tan13b97ea2015-08-04 21:51:54 +0800352 if (read_state_file(&sb, state, "original-commit", 1) < 0)
brian m. carlson8c887692016-09-05 20:08:09 +0000353 oidclr(&state->orig_commit);
354 else if (get_oid_hex(sb.buf, &state->orig_commit) < 0)
Paul Tan13b97ea2015-08-04 21:51:54 +0800355 die(_("could not parse %s"), am_path(state, "original-commit"));
356
Paul Tan84f3de22015-08-04 21:51:41 +0800357 read_state_file(&sb, state, "threeway", 1);
358 state->threeway = !strcmp(sb.buf, "t");
359
Paul Tan5d28cf72015-08-04 21:51:37 +0800360 read_state_file(&sb, state, "quiet", 1);
361 state->quiet = !strcmp(sb.buf, "t");
362
Paul Taneb898b82015-08-04 21:51:39 +0800363 read_state_file(&sb, state, "sign", 1);
364 state->signoff = !strcmp(sb.buf, "t");
365
Paul Tanef7ee162015-08-04 21:51:45 +0800366 read_state_file(&sb, state, "utf8", 1);
367 state->utf8 = !strcmp(sb.buf, "t");
368
Phillip Woodfd4a3f42017-08-02 11:44:15 +0100369 if (file_exists(am_path(state, "rerere-autoupdate"))) {
370 read_state_file(&sb, state, "rerere-autoupdate", 1);
371 state->allow_rerere_autoupdate = strcmp(sb.buf, "t") ?
372 RERERE_NOAUTOUPDATE : RERERE_AUTOUPDATE;
373 } else {
374 state->allow_rerere_autoupdate = 0;
375 }
376
Paul Tan4f1b6962015-08-04 21:51:46 +0800377 read_state_file(&sb, state, "keep", 1);
378 if (!strcmp(sb.buf, "t"))
379 state->keep = KEEP_TRUE;
380 else if (!strcmp(sb.buf, "b"))
381 state->keep = KEEP_NON_PATCH;
382 else
383 state->keep = KEEP_FALSE;
384
Paul Tan702cbaa2015-08-04 21:51:47 +0800385 read_state_file(&sb, state, "messageid", 1);
386 state->message_id = !strcmp(sb.buf, "t");
387
Paul Tan9b646612015-08-04 21:51:49 +0800388 read_state_file(&sb, state, "scissors", 1);
389 if (!strcmp(sb.buf, "t"))
390 state->scissors = SCISSORS_TRUE;
391 else if (!strcmp(sb.buf, "f"))
392 state->scissors = SCISSORS_FALSE;
393 else
394 state->scissors = SCISSORS_UNSET;
395
Paul Tan257e8ce2015-08-04 21:51:50 +0800396 read_state_file(&sb, state, "apply-opt", 1);
397 argv_array_clear(&state->git_apply_opts);
398 if (sq_dequote_to_argv_array(sb.buf, &state->git_apply_opts) < 0)
399 die(_("could not parse %s"), am_path(state, "apply-opt"));
400
Paul Tan35bdcc52015-08-04 21:51:42 +0800401 state->rebasing = !!file_exists(am_path(state, "rebasing"));
402
Paul Tan8c3bd9e2015-08-04 21:51:25 +0800403 strbuf_release(&sb);
404}
405
406/**
407 * Removes the am_state directory, forcefully terminating the current am
408 * session.
409 */
410static void am_destroy(const struct am_state *state)
411{
412 struct strbuf sb = STRBUF_INIT;
413
414 strbuf_addstr(&sb, state->dir);
415 remove_dir_recursively(&sb, 0);
416 strbuf_release(&sb);
417}
418
419/**
Paul Tanb8803d82015-08-04 21:51:56 +0800420 * Runs applypatch-msg hook. Returns its exit code.
421 */
422static int run_applypatch_msg_hook(struct am_state *state)
423{
424 int ret;
425
426 assert(state->msg);
427 ret = run_hook_le(NULL, "applypatch-msg", am_path(state, "final-commit"), NULL);
428
429 if (!ret) {
Ævar Arnfjörð Bjarmason6a83d902017-06-15 23:15:46 +0000430 FREE_AND_NULL(state->msg);
Paul Tanb8803d82015-08-04 21:51:56 +0800431 if (read_commit_msg(state) < 0)
432 die(_("'%s' was deleted by the applypatch-msg hook"),
433 am_path(state, "final-commit"));
434 }
435
436 return ret;
437}
438
439/**
Paul Tan13b97ea2015-08-04 21:51:54 +0800440 * Runs post-rewrite hook. Returns it exit code.
441 */
442static int run_post_rewrite_hook(const struct am_state *state)
443{
444 struct child_process cp = CHILD_PROCESS_INIT;
445 const char *hook = find_hook("post-rewrite");
446 int ret;
447
448 if (!hook)
449 return 0;
450
451 argv_array_push(&cp.args, hook);
452 argv_array_push(&cp.args, "rebase");
453
454 cp.in = xopen(am_path(state, "rewritten"), O_RDONLY);
455 cp.stdout_to_stderr = 1;
Jeff Hostetler62062862019-02-22 14:25:06 -0800456 cp.trace2_hook_name = "post-rewrite";
Paul Tan13b97ea2015-08-04 21:51:54 +0800457
458 ret = run_command(&cp);
459
460 close(cp.in);
461 return ret;
462}
463
464/**
Paul Tan88b291f2015-08-04 21:51:55 +0800465 * Reads the state directory's "rewritten" file, and copies notes from the old
466 * commits listed in the file to their rewritten commits.
467 *
468 * Returns 0 on success, -1 on failure.
469 */
470static int copy_notes_for_rebase(const struct am_state *state)
471{
472 struct notes_rewrite_cfg *c;
473 struct strbuf sb = STRBUF_INIT;
474 const char *invalid_line = _("Malformed input line: '%s'.");
475 const char *msg = "Notes added by 'git rebase'";
476 FILE *fp;
477 int ret = 0;
478
479 assert(state->rebasing);
480
481 c = init_copy_notes_for_rewrite("rebase");
482 if (!c)
483 return 0;
484
485 fp = xfopen(am_path(state, "rewritten"), "r");
486
Junio C Hamano8f309ae2016-01-13 15:31:17 -0800487 while (!strbuf_getline_lf(&sb, fp)) {
brian m. carlson8c887692016-09-05 20:08:09 +0000488 struct object_id from_obj, to_obj;
brian m. carlson24dd3632019-02-19 00:05:07 +0000489 const char *p;
Paul Tan88b291f2015-08-04 21:51:55 +0800490
brian m. carlson24dd3632019-02-19 00:05:07 +0000491 if (sb.len != the_hash_algo->hexsz * 2 + 1) {
Paul Tan88b291f2015-08-04 21:51:55 +0800492 ret = error(invalid_line, sb.buf);
493 goto finish;
494 }
495
brian m. carlson24dd3632019-02-19 00:05:07 +0000496 if (parse_oid_hex(sb.buf, &from_obj, &p)) {
Paul Tan88b291f2015-08-04 21:51:55 +0800497 ret = error(invalid_line, sb.buf);
498 goto finish;
499 }
500
brian m. carlson24dd3632019-02-19 00:05:07 +0000501 if (*p != ' ') {
Paul Tan88b291f2015-08-04 21:51:55 +0800502 ret = error(invalid_line, sb.buf);
503 goto finish;
504 }
505
brian m. carlson24dd3632019-02-19 00:05:07 +0000506 if (get_oid_hex(p + 1, &to_obj)) {
Paul Tan88b291f2015-08-04 21:51:55 +0800507 ret = error(invalid_line, sb.buf);
508 goto finish;
509 }
510
brian m. carlsonbb7e4732017-05-30 10:30:42 -0700511 if (copy_note_for_rewrite(c, &from_obj, &to_obj))
Paul Tan88b291f2015-08-04 21:51:55 +0800512 ret = error(_("Failed to copy notes from '%s' to '%s'"),
brian m. carlson8c887692016-09-05 20:08:09 +0000513 oid_to_hex(&from_obj), oid_to_hex(&to_obj));
Paul Tan88b291f2015-08-04 21:51:55 +0800514 }
515
516finish:
Nguyễn Thái Ngọc Duy1d18d752019-01-12 09:13:23 +0700517 finish_copy_notes_for_rewrite(the_repository, c, msg);
Paul Tan88b291f2015-08-04 21:51:55 +0800518 fclose(fp);
519 strbuf_release(&sb);
520 return ret;
521}
522
523/**
Paul Tanc29807b2015-08-04 21:51:27 +0800524 * Determines if the file looks like a piece of RFC2822 mail by grabbing all
525 * non-indented lines and checking if they look like they begin with valid
526 * header field names.
527 *
528 * Returns 1 if the file looks like a piece of mail, 0 otherwise.
529 */
530static int is_mail(FILE *fp)
531{
532 const char *header_regex = "^[!-9;-~]+:";
533 struct strbuf sb = STRBUF_INIT;
534 regex_t regex;
535 int ret = 1;
536
537 if (fseek(fp, 0L, SEEK_SET))
538 die_errno(_("fseek failed"));
539
540 if (regcomp(&regex, header_regex, REG_NOSUB | REG_EXTENDED))
541 die("invalid pattern: %s", header_regex);
542
Junio C Hamano1a0c8df2016-01-13 18:32:23 -0800543 while (!strbuf_getline(&sb, fp)) {
Paul Tanc29807b2015-08-04 21:51:27 +0800544 if (!sb.len)
545 break; /* End of header */
546
547 /* Ignore indented folded lines */
548 if (*sb.buf == '\t' || *sb.buf == ' ')
549 continue;
550
551 /* It's a header if it matches header_regex */
552 if (regexec(&regex, sb.buf, 0, NULL, 0)) {
553 ret = 0;
554 goto done;
555 }
556 }
557
558done:
559 regfree(&regex);
560 strbuf_release(&sb);
561 return ret;
562}
563
564/**
565 * Attempts to detect the patch_format of the patches contained in `paths`,
566 * returning the PATCH_FORMAT_* enum value. Returns PATCH_FORMAT_UNKNOWN if
567 * detection fails.
568 */
569static int detect_patch_format(const char **paths)
570{
571 enum patch_format ret = PATCH_FORMAT_UNKNOWN;
572 struct strbuf l1 = STRBUF_INIT;
Paul Tan5ae41c72015-08-04 21:52:00 +0800573 struct strbuf l2 = STRBUF_INIT;
574 struct strbuf l3 = STRBUF_INIT;
Paul Tanc29807b2015-08-04 21:51:27 +0800575 FILE *fp;
576
577 /*
578 * We default to mbox format if input is from stdin and for directories
579 */
580 if (!*paths || !strcmp(*paths, "-") || is_directory(*paths))
581 return PATCH_FORMAT_MBOX;
582
583 /*
584 * Otherwise, check the first few lines of the first patch, starting
585 * from the first non-blank line, to try to detect its format.
586 */
587
588 fp = xfopen(*paths, "r");
589
Junio C Hamano1a0c8df2016-01-13 18:32:23 -0800590 while (!strbuf_getline(&l1, fp)) {
Paul Tanc29807b2015-08-04 21:51:27 +0800591 if (l1.len)
592 break;
593 }
594
595 if (starts_with(l1.buf, "From ") || starts_with(l1.buf, "From: ")) {
596 ret = PATCH_FORMAT_MBOX;
597 goto done;
598 }
599
Paul Tan336108c2015-08-04 21:52:01 +0800600 if (starts_with(l1.buf, "# This series applies on GIT commit")) {
601 ret = PATCH_FORMAT_STGIT_SERIES;
602 goto done;
603 }
604
Paul Tan94cd1752015-08-04 21:52:02 +0800605 if (!strcmp(l1.buf, "# HG changeset patch")) {
606 ret = PATCH_FORMAT_HG;
607 goto done;
608 }
609
Junio C Hamano1a0c8df2016-01-13 18:32:23 -0800610 strbuf_getline(&l2, fp);
Junio C Hamano1a0c8df2016-01-13 18:32:23 -0800611 strbuf_getline(&l3, fp);
Paul Tan5ae41c72015-08-04 21:52:00 +0800612
613 /*
614 * If the second line is empty and the third is a From, Author or Date
615 * entry, this is likely an StGit patch.
616 */
617 if (l1.len && !l2.len &&
618 (starts_with(l3.buf, "From:") ||
619 starts_with(l3.buf, "Author:") ||
620 starts_with(l3.buf, "Date:"))) {
621 ret = PATCH_FORMAT_STGIT;
622 goto done;
623 }
624
Paul Tanc29807b2015-08-04 21:51:27 +0800625 if (l1.len && is_mail(fp)) {
626 ret = PATCH_FORMAT_MBOX;
627 goto done;
628 }
629
630done:
631 fclose(fp);
632 strbuf_release(&l1);
Rene Scharfe542627a2017-08-30 19:49:32 +0200633 strbuf_release(&l2);
634 strbuf_release(&l3);
Paul Tanc29807b2015-08-04 21:51:27 +0800635 return ret;
636}
637
638/**
Paul Tan11c21772015-08-04 21:51:26 +0800639 * Splits out individual email patches from `paths`, where each path is either
640 * a mbox file or a Maildir. Returns 0 on success, -1 on failure.
641 */
Eric Wongd9925d12016-06-05 04:46:41 +0000642static int split_mail_mbox(struct am_state *state, const char **paths,
643 int keep_cr, int mboxrd)
Paul Tan11c21772015-08-04 21:51:26 +0800644{
645 struct child_process cp = CHILD_PROCESS_INIT;
646 struct strbuf last = STRBUF_INIT;
René Scharfe1b090732017-12-07 21:20:19 +0100647 int ret;
Paul Tan11c21772015-08-04 21:51:26 +0800648
649 cp.git_cmd = 1;
650 argv_array_push(&cp.args, "mailsplit");
651 argv_array_pushf(&cp.args, "-d%d", state->prec);
652 argv_array_pushf(&cp.args, "-o%s", state->dir);
653 argv_array_push(&cp.args, "-b");
Paul Tan5d123a42015-08-04 21:51:48 +0800654 if (keep_cr)
655 argv_array_push(&cp.args, "--keep-cr");
Eric Wongd9925d12016-06-05 04:46:41 +0000656 if (mboxrd)
657 argv_array_push(&cp.args, "--mboxrd");
Paul Tan11c21772015-08-04 21:51:26 +0800658 argv_array_push(&cp.args, "--");
659 argv_array_pushv(&cp.args, paths);
660
René Scharfe1b090732017-12-07 21:20:19 +0100661 ret = capture_command(&cp, &last, 8);
662 if (ret)
663 goto exit;
Paul Tan11c21772015-08-04 21:51:26 +0800664
665 state->cur = 1;
666 state->last = strtol(last.buf, NULL, 10);
667
René Scharfe1b090732017-12-07 21:20:19 +0100668exit:
669 strbuf_release(&last);
670 return ret ? -1 : 0;
Paul Tan11c21772015-08-04 21:51:26 +0800671}
672
673/**
Paul Tan5ae41c72015-08-04 21:52:00 +0800674 * Callback signature for split_mail_conv(). The foreign patch should be
675 * read from `in`, and the converted patch (in RFC2822 mail format) should be
676 * written to `out`. Return 0 on success, or -1 on failure.
677 */
678typedef int (*mail_conv_fn)(FILE *out, FILE *in, int keep_cr);
679
680/**
681 * Calls `fn` for each file in `paths` to convert the foreign patch to the
682 * RFC2822 mail format suitable for parsing with git-mailinfo.
683 *
684 * Returns 0 on success, -1 on failure.
685 */
686static int split_mail_conv(mail_conv_fn fn, struct am_state *state,
687 const char **paths, int keep_cr)
688{
689 static const char *stdin_only[] = {"-", NULL};
690 int i;
691
692 if (!*paths)
693 paths = stdin_only;
694
695 for (i = 0; *paths; paths++, i++) {
696 FILE *in, *out;
697 const char *mail;
698 int ret;
699
700 if (!strcmp(*paths, "-"))
701 in = stdin;
702 else
703 in = fopen(*paths, "r");
704
705 if (!in)
Nguyễn Thái Ngọc Duy6e59e9c2016-05-08 16:47:24 +0700706 return error_errno(_("could not open '%s' for reading"),
707 *paths);
Paul Tan5ae41c72015-08-04 21:52:00 +0800708
709 mail = mkpath("%s/%0*d", state->dir, state->prec, i + 1);
710
711 out = fopen(mail, "w");
René Scharfeac8ce182017-04-16 18:55:30 +0200712 if (!out) {
713 if (in != stdin)
714 fclose(in);
Nguyễn Thái Ngọc Duy6e59e9c2016-05-08 16:47:24 +0700715 return error_errno(_("could not open '%s' for writing"),
716 mail);
René Scharfeac8ce182017-04-16 18:55:30 +0200717 }
Paul Tan5ae41c72015-08-04 21:52:00 +0800718
719 ret = fn(out, in, keep_cr);
720
721 fclose(out);
René Scharfeac8ce182017-04-16 18:55:30 +0200722 if (in != stdin)
723 fclose(in);
Paul Tan5ae41c72015-08-04 21:52:00 +0800724
725 if (ret)
726 return error(_("could not parse patch '%s'"), *paths);
727 }
728
729 state->cur = 1;
730 state->last = i;
731 return 0;
732}
733
734/**
735 * A split_mail_conv() callback that converts an StGit patch to an RFC2822
736 * message suitable for parsing with git-mailinfo.
737 */
738static int stgit_patch_to_mail(FILE *out, FILE *in, int keep_cr)
739{
740 struct strbuf sb = STRBUF_INIT;
741 int subject_printed = 0;
742
Junio C Hamano8f309ae2016-01-13 15:31:17 -0800743 while (!strbuf_getline_lf(&sb, in)) {
Paul Tan5ae41c72015-08-04 21:52:00 +0800744 const char *str;
745
746 if (str_isspace(sb.buf))
747 continue;
748 else if (skip_prefix(sb.buf, "Author:", &str))
749 fprintf(out, "From:%s\n", str);
750 else if (starts_with(sb.buf, "From") || starts_with(sb.buf, "Date"))
751 fprintf(out, "%s\n", sb.buf);
752 else if (!subject_printed) {
753 fprintf(out, "Subject: %s\n", sb.buf);
754 subject_printed = 1;
755 } else {
756 fprintf(out, "\n%s\n", sb.buf);
757 break;
758 }
759 }
760
761 strbuf_reset(&sb);
762 while (strbuf_fread(&sb, 8192, in) > 0) {
763 fwrite(sb.buf, 1, sb.len, out);
764 strbuf_reset(&sb);
765 }
766
767 strbuf_release(&sb);
768 return 0;
769}
770
771/**
Paul Tan336108c2015-08-04 21:52:01 +0800772 * This function only supports a single StGit series file in `paths`.
773 *
774 * Given an StGit series file, converts the StGit patches in the series into
775 * RFC2822 messages suitable for parsing with git-mailinfo, and queues them in
776 * the state directory.
777 *
778 * Returns 0 on success, -1 on failure.
779 */
780static int split_mail_stgit_series(struct am_state *state, const char **paths,
781 int keep_cr)
782{
783 const char *series_dir;
784 char *series_dir_buf;
785 FILE *fp;
786 struct argv_array patches = ARGV_ARRAY_INIT;
787 struct strbuf sb = STRBUF_INIT;
788 int ret;
789
790 if (!paths[0] || paths[1])
791 return error(_("Only one StGIT patch series can be applied at once"));
792
793 series_dir_buf = xstrdup(*paths);
794 series_dir = dirname(series_dir_buf);
795
796 fp = fopen(*paths, "r");
797 if (!fp)
Nguyễn Thái Ngọc Duy6e59e9c2016-05-08 16:47:24 +0700798 return error_errno(_("could not open '%s' for reading"), *paths);
Paul Tan336108c2015-08-04 21:52:01 +0800799
Junio C Hamano8f309ae2016-01-13 15:31:17 -0800800 while (!strbuf_getline_lf(&sb, fp)) {
Paul Tan336108c2015-08-04 21:52:01 +0800801 if (*sb.buf == '#')
802 continue; /* skip comment lines */
803
804 argv_array_push(&patches, mkpath("%s/%s", series_dir, sb.buf));
805 }
806
807 fclose(fp);
808 strbuf_release(&sb);
809 free(series_dir_buf);
810
811 ret = split_mail_conv(stgit_patch_to_mail, state, patches.argv, keep_cr);
812
813 argv_array_clear(&patches);
814 return ret;
815}
816
817/**
Paul Tan94cd1752015-08-04 21:52:02 +0800818 * A split_patches_conv() callback that converts a mercurial patch to a RFC2822
819 * message suitable for parsing with git-mailinfo.
820 */
821static int hg_patch_to_mail(FILE *out, FILE *in, int keep_cr)
822{
823 struct strbuf sb = STRBUF_INIT;
Rene Scharfeb36474f2017-08-30 19:49:33 +0200824 int rc = 0;
Paul Tan94cd1752015-08-04 21:52:02 +0800825
Junio C Hamano8f309ae2016-01-13 15:31:17 -0800826 while (!strbuf_getline_lf(&sb, in)) {
Paul Tan94cd1752015-08-04 21:52:02 +0800827 const char *str;
828
829 if (skip_prefix(sb.buf, "# User ", &str))
830 fprintf(out, "From: %s\n", str);
831 else if (skip_prefix(sb.buf, "# Date ", &str)) {
Johannes Schindelindddbad72017-04-26 21:29:31 +0200832 timestamp_t timestamp;
Paul Tan94cd1752015-08-04 21:52:02 +0800833 long tz, tz2;
834 char *end;
835
836 errno = 0;
Johannes Schindelin1aeb7e72017-04-21 12:45:44 +0200837 timestamp = parse_timestamp(str, &end, 10);
Rene Scharfeb36474f2017-08-30 19:49:33 +0200838 if (errno) {
839 rc = error(_("invalid timestamp"));
840 goto exit;
841 }
Paul Tan94cd1752015-08-04 21:52:02 +0800842
Rene Scharfeb36474f2017-08-30 19:49:33 +0200843 if (!skip_prefix(end, " ", &str)) {
844 rc = error(_("invalid Date line"));
845 goto exit;
846 }
Paul Tan94cd1752015-08-04 21:52:02 +0800847
848 errno = 0;
849 tz = strtol(str, &end, 10);
Rene Scharfeb36474f2017-08-30 19:49:33 +0200850 if (errno) {
851 rc = error(_("invalid timezone offset"));
852 goto exit;
853 }
Paul Tan94cd1752015-08-04 21:52:02 +0800854
Rene Scharfeb36474f2017-08-30 19:49:33 +0200855 if (*end) {
856 rc = error(_("invalid Date line"));
857 goto exit;
858 }
Paul Tan94cd1752015-08-04 21:52:02 +0800859
860 /*
861 * mercurial's timezone is in seconds west of UTC,
862 * however git's timezone is in hours + minutes east of
863 * UTC. Convert it.
864 */
865 tz2 = labs(tz) / 3600 * 100 + labs(tz) % 3600 / 60;
866 if (tz > 0)
867 tz2 = -tz2;
868
869 fprintf(out, "Date: %s\n", show_date(timestamp, tz2, DATE_MODE(RFC2822)));
870 } else if (starts_with(sb.buf, "# ")) {
871 continue;
872 } else {
873 fprintf(out, "\n%s\n", sb.buf);
874 break;
875 }
876 }
877
878 strbuf_reset(&sb);
879 while (strbuf_fread(&sb, 8192, in) > 0) {
880 fwrite(sb.buf, 1, sb.len, out);
881 strbuf_reset(&sb);
882 }
Rene Scharfeb36474f2017-08-30 19:49:33 +0200883exit:
Paul Tan94cd1752015-08-04 21:52:02 +0800884 strbuf_release(&sb);
Rene Scharfeb36474f2017-08-30 19:49:33 +0200885 return rc;
Paul Tan94cd1752015-08-04 21:52:02 +0800886}
887
888/**
Paul Tan11c21772015-08-04 21:51:26 +0800889 * Splits a list of files/directories into individual email patches. Each path
890 * in `paths` must be a file/directory that is formatted according to
891 * `patch_format`.
892 *
893 * Once split out, the individual email patches will be stored in the state
894 * directory, with each patch's filename being its index, padded to state->prec
895 * digits.
896 *
897 * state->cur will be set to the index of the first mail, and state->last will
898 * be set to the index of the last mail.
899 *
Paul Tan5d123a42015-08-04 21:51:48 +0800900 * Set keep_cr to 0 to convert all lines ending with \r\n to end with \n, 1
901 * to disable this behavior, -1 to use the default configured setting.
902 *
Paul Tan11c21772015-08-04 21:51:26 +0800903 * Returns 0 on success, -1 on failure.
904 */
905static int split_mail(struct am_state *state, enum patch_format patch_format,
Paul Tan5d123a42015-08-04 21:51:48 +0800906 const char **paths, int keep_cr)
Paul Tan11c21772015-08-04 21:51:26 +0800907{
Paul Tan5d123a42015-08-04 21:51:48 +0800908 if (keep_cr < 0) {
909 keep_cr = 0;
910 git_config_get_bool("am.keepcr", &keep_cr);
911 }
912
Paul Tan11c21772015-08-04 21:51:26 +0800913 switch (patch_format) {
914 case PATCH_FORMAT_MBOX:
Eric Wongd9925d12016-06-05 04:46:41 +0000915 return split_mail_mbox(state, paths, keep_cr, 0);
Paul Tan5ae41c72015-08-04 21:52:00 +0800916 case PATCH_FORMAT_STGIT:
917 return split_mail_conv(stgit_patch_to_mail, state, paths, keep_cr);
Paul Tan336108c2015-08-04 21:52:01 +0800918 case PATCH_FORMAT_STGIT_SERIES:
919 return split_mail_stgit_series(state, paths, keep_cr);
Paul Tan94cd1752015-08-04 21:52:02 +0800920 case PATCH_FORMAT_HG:
921 return split_mail_conv(hg_patch_to_mail, state, paths, keep_cr);
Eric Wongd9925d12016-06-05 04:46:41 +0000922 case PATCH_FORMAT_MBOXRD:
923 return split_mail_mbox(state, paths, keep_cr, 1);
Paul Tan11c21772015-08-04 21:51:26 +0800924 default:
Johannes Schindelin033abf92018-05-02 11:38:39 +0200925 BUG("invalid patch_format");
Paul Tan11c21772015-08-04 21:51:26 +0800926 }
927 return -1;
928}
929
930/**
Paul Tan8c3bd9e2015-08-04 21:51:25 +0800931 * Setup a new am session for applying patches
932 */
Paul Tan11c21772015-08-04 21:51:26 +0800933static void am_setup(struct am_state *state, enum patch_format patch_format,
Paul Tan5d123a42015-08-04 21:51:48 +0800934 const char **paths, int keep_cr)
Paul Tan8c3bd9e2015-08-04 21:51:25 +0800935{
brian m. carlson8c887692016-09-05 20:08:09 +0000936 struct object_id curr_head;
Paul Tan4f1b6962015-08-04 21:51:46 +0800937 const char *str;
Paul Tan257e8ce2015-08-04 21:51:50 +0800938 struct strbuf sb = STRBUF_INIT;
Paul Tan33388a72015-08-04 21:51:35 +0800939
Paul Tanc29807b2015-08-04 21:51:27 +0800940 if (!patch_format)
941 patch_format = detect_patch_format(paths);
942
943 if (!patch_format) {
944 fprintf_ln(stderr, _("Patch format detection failed."));
945 exit(128);
946 }
947
Paul Tan8c3bd9e2015-08-04 21:51:25 +0800948 if (mkdir(state->dir, 0777) < 0 && errno != EEXIST)
949 die_errno(_("failed to create directory '%s'"), state->dir);
Nguyễn Thái Ngọc Duyfbd7a232018-02-11 16:43:28 +0700950 delete_ref(NULL, "REBASE_HEAD", NULL, REF_NO_DEREF);
Paul Tan8c3bd9e2015-08-04 21:51:25 +0800951
Paul Tan5d123a42015-08-04 21:51:48 +0800952 if (split_mail(state, patch_format, paths, keep_cr) < 0) {
Paul Tan11c21772015-08-04 21:51:26 +0800953 am_destroy(state);
954 die(_("Failed to split patches."));
955 }
956
Paul Tan35bdcc52015-08-04 21:51:42 +0800957 if (state->rebasing)
958 state->threeway = 1;
959
Junio C Hamano25b763b2015-08-24 09:12:53 -0700960 write_state_bool(state, "threeway", state->threeway);
961 write_state_bool(state, "quiet", state->quiet);
962 write_state_bool(state, "sign", state->signoff);
963 write_state_bool(state, "utf8", state->utf8);
Paul Tanef7ee162015-08-04 21:51:45 +0800964
Phillip Woodfd4a3f42017-08-02 11:44:15 +0100965 if (state->allow_rerere_autoupdate)
966 write_state_bool(state, "rerere-autoupdate",
967 state->allow_rerere_autoupdate == RERERE_AUTOUPDATE);
968
Paul Tan4f1b6962015-08-04 21:51:46 +0800969 switch (state->keep) {
970 case KEEP_FALSE:
971 str = "f";
972 break;
973 case KEEP_TRUE:
974 str = "t";
975 break;
976 case KEEP_NON_PATCH:
977 str = "b";
978 break;
979 default:
Johannes Schindelin033abf92018-05-02 11:38:39 +0200980 BUG("invalid value for state->keep");
Paul Tan4f1b6962015-08-04 21:51:46 +0800981 }
982
Junio C Hamano25b763b2015-08-24 09:12:53 -0700983 write_state_text(state, "keep", str);
984 write_state_bool(state, "messageid", state->message_id);
Paul Tan702cbaa2015-08-04 21:51:47 +0800985
Paul Tan9b646612015-08-04 21:51:49 +0800986 switch (state->scissors) {
987 case SCISSORS_UNSET:
988 str = "";
989 break;
990 case SCISSORS_FALSE:
991 str = "f";
992 break;
993 case SCISSORS_TRUE:
994 str = "t";
995 break;
996 default:
Johannes Schindelin033abf92018-05-02 11:38:39 +0200997 BUG("invalid value for state->scissors");
Paul Tan9b646612015-08-04 21:51:49 +0800998 }
Junio C Hamano25b763b2015-08-24 09:12:53 -0700999 write_state_text(state, "scissors", str);
Paul Tan9b646612015-08-04 21:51:49 +08001000
Jeff Kinge35f11c2018-01-15 17:59:43 +07001001 sq_quote_argv(&sb, state->git_apply_opts.argv);
Junio C Hamano25b763b2015-08-24 09:12:53 -07001002 write_state_text(state, "apply-opt", sb.buf);
Paul Tan257e8ce2015-08-04 21:51:50 +08001003
Paul Tan35bdcc52015-08-04 21:51:42 +08001004 if (state->rebasing)
Junio C Hamano25b763b2015-08-24 09:12:53 -07001005 write_state_text(state, "rebasing", "");
Paul Tan35bdcc52015-08-04 21:51:42 +08001006 else
Junio C Hamano25b763b2015-08-24 09:12:53 -07001007 write_state_text(state, "applying", "");
Paul Tan35bdcc52015-08-04 21:51:42 +08001008
brian m. carlson8c887692016-09-05 20:08:09 +00001009 if (!get_oid("HEAD", &curr_head)) {
1010 write_state_text(state, "abort-safety", oid_to_hex(&curr_head));
Paul Tan35bdcc52015-08-04 21:51:42 +08001011 if (!state->rebasing)
brian m. carlsonae077772017-10-15 22:06:51 +00001012 update_ref("am", "ORIG_HEAD", &curr_head, NULL, 0,
1013 UPDATE_REFS_DIE_ON_ERR);
Paul Tan33388a72015-08-04 21:51:35 +08001014 } else {
Junio C Hamano25b763b2015-08-24 09:12:53 -07001015 write_state_text(state, "abort-safety", "");
Paul Tan35bdcc52015-08-04 21:51:42 +08001016 if (!state->rebasing)
Kyle Meyer755b49a2017-02-20 20:10:32 -05001017 delete_ref(NULL, "ORIG_HEAD", NULL, 0);
Paul Tan33388a72015-08-04 21:51:35 +08001018 }
1019
Paul Tan8c3bd9e2015-08-04 21:51:25 +08001020 /*
1021 * NOTE: Since the "next" and "last" files determine if an am_state
1022 * session is in progress, they should be written last.
1023 */
1024
Junio C Hamano25b763b2015-08-24 09:12:53 -07001025 write_state_count(state, "next", state->cur);
1026 write_state_count(state, "last", state->last);
Paul Tan257e8ce2015-08-04 21:51:50 +08001027
1028 strbuf_release(&sb);
Paul Tan8c3bd9e2015-08-04 21:51:25 +08001029}
1030
1031/**
1032 * Increments the patch pointer, and cleans am_state for the application of the
1033 * next patch.
1034 */
1035static void am_next(struct am_state *state)
1036{
brian m. carlson8c887692016-09-05 20:08:09 +00001037 struct object_id head;
Paul Tan33388a72015-08-04 21:51:35 +08001038
Ævar Arnfjörð Bjarmason88ce3ef2017-06-15 23:15:49 +00001039 FREE_AND_NULL(state->author_name);
1040 FREE_AND_NULL(state->author_email);
1041 FREE_AND_NULL(state->author_date);
1042 FREE_AND_NULL(state->msg);
Paul Tan3e20dcf2015-08-04 21:51:28 +08001043 state->msg_len = 0;
1044
1045 unlink(am_path(state, "author-script"));
1046 unlink(am_path(state, "final-commit"));
1047
brian m. carlson8c887692016-09-05 20:08:09 +00001048 oidclr(&state->orig_commit);
Paul Tan13b97ea2015-08-04 21:51:54 +08001049 unlink(am_path(state, "original-commit"));
Nguyễn Thái Ngọc Duyfbd7a232018-02-11 16:43:28 +07001050 delete_ref(NULL, "REBASE_HEAD", NULL, REF_NO_DEREF);
Paul Tan13b97ea2015-08-04 21:51:54 +08001051
brian m. carlson8c887692016-09-05 20:08:09 +00001052 if (!get_oid("HEAD", &head))
1053 write_state_text(state, "abort-safety", oid_to_hex(&head));
Paul Tan33388a72015-08-04 21:51:35 +08001054 else
Junio C Hamano25b763b2015-08-24 09:12:53 -07001055 write_state_text(state, "abort-safety", "");
Paul Tan33388a72015-08-04 21:51:35 +08001056
Paul Tan8c3bd9e2015-08-04 21:51:25 +08001057 state->cur++;
Junio C Hamano25b763b2015-08-24 09:12:53 -07001058 write_state_count(state, "next", state->cur);
Paul Tan8c3bd9e2015-08-04 21:51:25 +08001059}
1060
1061/**
Paul Tan3e20dcf2015-08-04 21:51:28 +08001062 * Returns the filename of the current patch email.
1063 */
1064static const char *msgnum(const struct am_state *state)
1065{
1066 static struct strbuf sb = STRBUF_INIT;
1067
1068 strbuf_reset(&sb);
1069 strbuf_addf(&sb, "%0*d", state->prec, state->cur);
1070
1071 return sb.buf;
1072}
1073
1074/**
Paul Tan38a824f2015-08-04 21:51:29 +08001075 * Refresh and write index.
1076 */
1077static void refresh_and_write_cache(void)
1078{
Martin Ågren837e34e2017-10-05 22:32:04 +02001079 struct lock_file lock_file = LOCK_INIT;
Paul Tan38a824f2015-08-04 21:51:29 +08001080
Martin Ågren837e34e2017-10-05 22:32:04 +02001081 hold_locked_index(&lock_file, LOCK_DIE_ON_ERROR);
Paul Tan38a824f2015-08-04 21:51:29 +08001082 refresh_cache(REFRESH_QUIET);
Martin Ågren837e34e2017-10-05 22:32:04 +02001083 if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
Paul Tan38a824f2015-08-04 21:51:29 +08001084 die(_("unable to write index file"));
1085}
1086
1087/**
Paul Tan2d831092015-08-04 21:51:38 +08001088 * Dies with a user-friendly message on how to proceed after resolving the
1089 * problem. This message can be overridden with state->resolvemsg.
1090 */
1091static void NORETURN die_user_resolve(const struct am_state *state)
1092{
1093 if (state->resolvemsg) {
1094 printf_ln("%s", state->resolvemsg);
1095 } else {
Paul Tan7ff26832015-08-04 21:52:03 +08001096 const char *cmdline = state->interactive ? "git am -i" : "git am";
Paul Tan2d831092015-08-04 21:51:38 +08001097
1098 printf_ln(_("When you have resolved this problem, run \"%s --continue\"."), cmdline);
1099 printf_ln(_("If you prefer to skip this patch, run \"%s --skip\" instead."), cmdline);
1100 printf_ln(_("To restore the original branch and stop patching, run \"%s --abort\"."), cmdline);
1101 }
1102
1103 exit(128);
1104}
1105
1106/**
Paul Tanb5e82352015-08-04 22:08:51 +08001107 * Appends signoff to the "msg" field of the am_state.
1108 */
1109static void am_append_signoff(struct am_state *state)
1110{
1111 struct strbuf sb = STRBUF_INIT;
1112
1113 strbuf_attach(&sb, state->msg, state->msg_len, state->msg_len);
Phillip Wood735285b2017-08-08 11:25:33 +01001114 append_signoff(&sb, 0, 0);
Paul Tanb5e82352015-08-04 22:08:51 +08001115 state->msg = strbuf_detach(&sb, &state->msg_len);
1116}
1117
1118/**
Paul Tan3e20dcf2015-08-04 21:51:28 +08001119 * Parses `mail` using git-mailinfo, extracting its patch and authorship info.
1120 * state->msg will be set to the patch message. state->author_name,
1121 * state->author_email and state->author_date will be set to the patch author's
1122 * name, email and date respectively. The patch body will be written to the
1123 * state directory's "patch" file.
1124 *
1125 * Returns 1 if the patch should be skipped, 0 otherwise.
1126 */
1127static int parse_mail(struct am_state *state, const char *mail)
1128{
1129 FILE *fp;
Paul Tan3e20dcf2015-08-04 21:51:28 +08001130 struct strbuf sb = STRBUF_INIT;
1131 struct strbuf msg = STRBUF_INIT;
1132 struct strbuf author_name = STRBUF_INIT;
1133 struct strbuf author_date = STRBUF_INIT;
1134 struct strbuf author_email = STRBUF_INIT;
1135 int ret = 0;
Junio C Hamano4b98bae2015-10-14 17:45:43 -07001136 struct mailinfo mi;
Paul Tan3e20dcf2015-08-04 21:51:28 +08001137
Junio C Hamano4b98bae2015-10-14 17:45:43 -07001138 setup_mailinfo(&mi);
Paul Tan3e20dcf2015-08-04 21:51:28 +08001139
Junio C Hamano4b98bae2015-10-14 17:45:43 -07001140 if (state->utf8)
1141 mi.metainfo_charset = get_commit_output_encoding();
1142 else
1143 mi.metainfo_charset = NULL;
Paul Tan4f1b6962015-08-04 21:51:46 +08001144
1145 switch (state->keep) {
1146 case KEEP_FALSE:
1147 break;
1148 case KEEP_TRUE:
Junio C Hamano4b98bae2015-10-14 17:45:43 -07001149 mi.keep_subject = 1;
Paul Tan4f1b6962015-08-04 21:51:46 +08001150 break;
1151 case KEEP_NON_PATCH:
Junio C Hamano4b98bae2015-10-14 17:45:43 -07001152 mi.keep_non_patch_brackets_in_subject = 1;
Paul Tan4f1b6962015-08-04 21:51:46 +08001153 break;
1154 default:
Johannes Schindelin033abf92018-05-02 11:38:39 +02001155 BUG("invalid value for state->keep");
Paul Tan4f1b6962015-08-04 21:51:46 +08001156 }
1157
Paul Tan702cbaa2015-08-04 21:51:47 +08001158 if (state->message_id)
Junio C Hamano4b98bae2015-10-14 17:45:43 -07001159 mi.add_message_id = 1;
Paul Tan702cbaa2015-08-04 21:51:47 +08001160
Paul Tan9b646612015-08-04 21:51:49 +08001161 switch (state->scissors) {
1162 case SCISSORS_UNSET:
1163 break;
1164 case SCISSORS_FALSE:
Junio C Hamano4b98bae2015-10-14 17:45:43 -07001165 mi.use_scissors = 0;
Paul Tan9b646612015-08-04 21:51:49 +08001166 break;
1167 case SCISSORS_TRUE:
Junio C Hamano4b98bae2015-10-14 17:45:43 -07001168 mi.use_scissors = 1;
Paul Tan9b646612015-08-04 21:51:49 +08001169 break;
1170 default:
Johannes Schindelin033abf92018-05-02 11:38:39 +02001171 BUG("invalid value for state->scissors");
Paul Tan9b646612015-08-04 21:51:49 +08001172 }
1173
Nguyễn Thái Ngọc Duy23a9e072017-05-03 17:16:46 +07001174 mi.input = xfopen(mail, "r");
1175 mi.output = xfopen(am_path(state, "info"), "w");
Junio C Hamano4b98bae2015-10-14 17:45:43 -07001176 if (mailinfo(&mi, am_path(state, "msg"), am_path(state, "patch")))
Paul Tan3e20dcf2015-08-04 21:51:28 +08001177 die("could not parse patch");
1178
Junio C Hamano4b98bae2015-10-14 17:45:43 -07001179 fclose(mi.input);
1180 fclose(mi.output);
Paul Tan3e20dcf2015-08-04 21:51:28 +08001181
René Scharfe3aa4d812018-08-25 23:50:32 +02001182 if (mi.format_flowed)
1183 warning(_("Patch sent with format=flowed; "
1184 "space at the end of lines might be lost."));
1185
Paul Tan3e20dcf2015-08-04 21:51:28 +08001186 /* Extract message and author information */
1187 fp = xfopen(am_path(state, "info"), "r");
Junio C Hamano8f309ae2016-01-13 15:31:17 -08001188 while (!strbuf_getline_lf(&sb, fp)) {
Paul Tan3e20dcf2015-08-04 21:51:28 +08001189 const char *x;
1190
1191 if (skip_prefix(sb.buf, "Subject: ", &x)) {
1192 if (msg.len)
1193 strbuf_addch(&msg, '\n');
1194 strbuf_addstr(&msg, x);
1195 } else if (skip_prefix(sb.buf, "Author: ", &x))
1196 strbuf_addstr(&author_name, x);
1197 else if (skip_prefix(sb.buf, "Email: ", &x))
1198 strbuf_addstr(&author_email, x);
1199 else if (skip_prefix(sb.buf, "Date: ", &x))
1200 strbuf_addstr(&author_date, x);
1201 }
1202 fclose(fp);
1203
1204 /* Skip pine's internal folder data */
1205 if (!strcmp(author_name.buf, "Mail System Internal Data")) {
1206 ret = 1;
1207 goto finish;
1208 }
1209
Pranit Bauvae3b1e3b2019-01-02 07:38:32 -08001210 if (is_empty_or_missing_file(am_path(state, "patch"))) {
Jean-Noel Avila6c486862017-05-11 14:06:32 +02001211 printf_ln(_("Patch is empty."));
Paul Tan2d831092015-08-04 21:51:38 +08001212 die_user_resolve(state);
Paul Tan3e20dcf2015-08-04 21:51:28 +08001213 }
1214
1215 strbuf_addstr(&msg, "\n\n");
Junio C Hamano4b98bae2015-10-14 17:45:43 -07001216 strbuf_addbuf(&msg, &mi.log_message);
Tobias Klauser63af4a82015-10-16 17:16:42 +02001217 strbuf_stripspace(&msg, 0);
Paul Tan3e20dcf2015-08-04 21:51:28 +08001218
1219 assert(!state->author_name);
1220 state->author_name = strbuf_detach(&author_name, NULL);
1221
1222 assert(!state->author_email);
1223 state->author_email = strbuf_detach(&author_email, NULL);
1224
1225 assert(!state->author_date);
1226 state->author_date = strbuf_detach(&author_date, NULL);
1227
1228 assert(!state->msg);
1229 state->msg = strbuf_detach(&msg, &state->msg_len);
1230
1231finish:
1232 strbuf_release(&msg);
1233 strbuf_release(&author_date);
1234 strbuf_release(&author_email);
1235 strbuf_release(&author_name);
1236 strbuf_release(&sb);
Junio C Hamano4b98bae2015-10-14 17:45:43 -07001237 clear_mailinfo(&mi);
Paul Tan3e20dcf2015-08-04 21:51:28 +08001238 return ret;
1239}
1240
1241/**
Paul Tandf2760a2015-08-04 21:51:43 +08001242 * Sets commit_id to the commit hash where the mail was generated from.
1243 * Returns 0 on success, -1 on failure.
1244 */
brian m. carlson8c887692016-09-05 20:08:09 +00001245static int get_mail_commit_oid(struct object_id *commit_id, const char *mail)
Paul Tandf2760a2015-08-04 21:51:43 +08001246{
1247 struct strbuf sb = STRBUF_INIT;
1248 FILE *fp = xfopen(mail, "r");
1249 const char *x;
Johannes Schindelin5b34ba42017-05-04 15:55:45 +02001250 int ret = 0;
Paul Tandf2760a2015-08-04 21:51:43 +08001251
Johannes Schindelin5b34ba42017-05-04 15:55:45 +02001252 if (strbuf_getline_lf(&sb, fp) ||
1253 !skip_prefix(sb.buf, "From ", &x) ||
1254 get_oid_hex(x, commit_id) < 0)
1255 ret = -1;
Paul Tandf2760a2015-08-04 21:51:43 +08001256
1257 strbuf_release(&sb);
1258 fclose(fp);
Johannes Schindelin5b34ba42017-05-04 15:55:45 +02001259 return ret;
Paul Tandf2760a2015-08-04 21:51:43 +08001260}
1261
1262/**
1263 * Sets state->msg, state->author_name, state->author_email, state->author_date
1264 * to the commit's respective info.
1265 */
1266static void get_commit_info(struct am_state *state, struct commit *commit)
1267{
Jeff King2e2bbb92017-04-26 23:27:17 -04001268 const char *buffer, *ident_line, *msg;
Paul Tandf2760a2015-08-04 21:51:43 +08001269 size_t ident_len;
Jeff King721f5f12017-04-26 23:28:31 -04001270 struct ident_split id;
Paul Tandf2760a2015-08-04 21:51:43 +08001271
1272 buffer = logmsg_reencode(commit, NULL, get_commit_output_encoding());
1273
1274 ident_line = find_commit_header(buffer, "author", &ident_len);
1275
Jeff King721f5f12017-04-26 23:28:31 -04001276 if (split_ident_line(&id, ident_line, ident_len) < 0)
Jeff King2e2bbb92017-04-26 23:27:17 -04001277 die(_("invalid ident line: %.*s"), (int)ident_len, ident_line);
Paul Tandf2760a2015-08-04 21:51:43 +08001278
1279 assert(!state->author_name);
Jeff King721f5f12017-04-26 23:28:31 -04001280 if (id.name_begin)
Jeff King2e2bbb92017-04-26 23:27:17 -04001281 state->author_name =
Jeff King721f5f12017-04-26 23:28:31 -04001282 xmemdupz(id.name_begin, id.name_end - id.name_begin);
1283 else
Paul Tandf2760a2015-08-04 21:51:43 +08001284 state->author_name = xstrdup("");
1285
1286 assert(!state->author_email);
Jeff King721f5f12017-04-26 23:28:31 -04001287 if (id.mail_begin)
Jeff King2e2bbb92017-04-26 23:27:17 -04001288 state->author_email =
Jeff King721f5f12017-04-26 23:28:31 -04001289 xmemdupz(id.mail_begin, id.mail_end - id.mail_begin);
1290 else
Paul Tandf2760a2015-08-04 21:51:43 +08001291 state->author_email = xstrdup("");
1292
Paul Tandf2760a2015-08-04 21:51:43 +08001293 assert(!state->author_date);
Jeff King721f5f12017-04-26 23:28:31 -04001294 state->author_date = xstrdup(show_ident_date(&id, DATE_MODE(NORMAL)));
Paul Tandf2760a2015-08-04 21:51:43 +08001295
1296 assert(!state->msg);
1297 msg = strstr(buffer, "\n\n");
1298 if (!msg)
brian m. carlsonf2fd0762015-11-10 02:22:28 +00001299 die(_("unable to parse commit %s"), oid_to_hex(&commit->object.oid));
Paul Tandf2760a2015-08-04 21:51:43 +08001300 state->msg = xstrdup(msg + 2);
1301 state->msg_len = strlen(state->msg);
Jeff Kingf131db92017-04-26 23:25:55 -04001302 unuse_commit_buffer(commit, buffer);
Paul Tandf2760a2015-08-04 21:51:43 +08001303}
1304
1305/**
1306 * Writes `commit` as a patch to the state directory's "patch" file.
1307 */
1308static void write_commit_patch(const struct am_state *state, struct commit *commit)
1309{
1310 struct rev_info rev_info;
1311 FILE *fp;
1312
1313 fp = xfopen(am_path(state, "patch"), "w");
Nguyễn Thái Ngọc Duy2abf3502018-09-21 17:57:38 +02001314 repo_init_revisions(the_repository, &rev_info, NULL);
Paul Tandf2760a2015-08-04 21:51:43 +08001315 rev_info.diff = 1;
1316 rev_info.abbrev = 0;
1317 rev_info.disable_stdin = 1;
1318 rev_info.show_root_diff = 1;
1319 rev_info.diffopt.output_format = DIFF_FORMAT_PATCH;
1320 rev_info.no_commit_id = 1;
Brandon Williams0d1e0e72017-10-31 11:19:11 -07001321 rev_info.diffopt.flags.binary = 1;
1322 rev_info.diffopt.flags.full_index = 1;
Paul Tandf2760a2015-08-04 21:51:43 +08001323 rev_info.diffopt.use_color = 0;
1324 rev_info.diffopt.file = fp;
1325 rev_info.diffopt.close_file = 1;
1326 add_pending_object(&rev_info, &commit->object, "");
1327 diff_setup_done(&rev_info.diffopt);
1328 log_tree_commit(&rev_info, commit);
1329}
1330
1331/**
Paul Tan7ff26832015-08-04 21:52:03 +08001332 * Writes the diff of the index against HEAD as a patch to the state
1333 * directory's "patch" file.
1334 */
1335static void write_index_patch(const struct am_state *state)
1336{
1337 struct tree *tree;
brian m. carlson8c887692016-09-05 20:08:09 +00001338 struct object_id head;
Paul Tan7ff26832015-08-04 21:52:03 +08001339 struct rev_info rev_info;
1340 FILE *fp;
1341
Jeff King7663e432019-05-24 02:46:27 -04001342 if (!get_oid("HEAD", &head)) {
1343 struct commit *commit = lookup_commit_or_die(&head, "HEAD");
1344 tree = get_commit_tree(commit);
1345 } else
Stefan Bellerf86bcc72018-06-28 18:21:56 -07001346 tree = lookup_tree(the_repository,
1347 the_repository->hash_algo->empty_tree);
Paul Tan7ff26832015-08-04 21:52:03 +08001348
1349 fp = xfopen(am_path(state, "patch"), "w");
Nguyễn Thái Ngọc Duy2abf3502018-09-21 17:57:38 +02001350 repo_init_revisions(the_repository, &rev_info, NULL);
Paul Tan7ff26832015-08-04 21:52:03 +08001351 rev_info.diff = 1;
1352 rev_info.disable_stdin = 1;
1353 rev_info.no_commit_id = 1;
1354 rev_info.diffopt.output_format = DIFF_FORMAT_PATCH;
1355 rev_info.diffopt.use_color = 0;
1356 rev_info.diffopt.file = fp;
1357 rev_info.diffopt.close_file = 1;
1358 add_pending_object(&rev_info, &tree->object, "");
1359 diff_setup_done(&rev_info.diffopt);
1360 run_diff_index(&rev_info, 1);
1361}
1362
1363/**
Paul Tandf2760a2015-08-04 21:51:43 +08001364 * Like parse_mail(), but parses the mail by looking up its commit ID
1365 * directly. This is used in --rebasing mode to bypass git-mailinfo's munging
1366 * of patches.
1367 *
Paul Tan13b97ea2015-08-04 21:51:54 +08001368 * state->orig_commit will be set to the original commit ID.
1369 *
Paul Tandf2760a2015-08-04 21:51:43 +08001370 * Will always return 0 as the patch should never be skipped.
1371 */
1372static int parse_mail_rebase(struct am_state *state, const char *mail)
1373{
1374 struct commit *commit;
brian m. carlson8c887692016-09-05 20:08:09 +00001375 struct object_id commit_oid;
Paul Tandf2760a2015-08-04 21:51:43 +08001376
brian m. carlson8c887692016-09-05 20:08:09 +00001377 if (get_mail_commit_oid(&commit_oid, mail) < 0)
Paul Tandf2760a2015-08-04 21:51:43 +08001378 die(_("could not parse %s"), mail);
1379
brian m. carlsonbc832662017-05-06 22:10:10 +00001380 commit = lookup_commit_or_die(&commit_oid, mail);
Paul Tandf2760a2015-08-04 21:51:43 +08001381
1382 get_commit_info(state, commit);
1383
1384 write_commit_patch(state, commit);
1385
brian m. carlson8c887692016-09-05 20:08:09 +00001386 oidcpy(&state->orig_commit, &commit_oid);
1387 write_state_text(state, "original-commit", oid_to_hex(&commit_oid));
Nguyễn Thái Ngọc Duyfbd7a232018-02-11 16:43:28 +07001388 update_ref("am", "REBASE_HEAD", &commit_oid,
1389 NULL, REF_NO_DEREF, UPDATE_REFS_DIE_ON_ERR);
Paul Tan13b97ea2015-08-04 21:51:54 +08001390
Paul Tandf2760a2015-08-04 21:51:43 +08001391 return 0;
1392}
1393
1394/**
Paul Tan84f3de22015-08-04 21:51:41 +08001395 * Applies current patch with git-apply. Returns 0 on success, -1 otherwise. If
1396 * `index_file` is not NULL, the patch will be applied to that index.
Paul Tan38a824f2015-08-04 21:51:29 +08001397 */
Paul Tan84f3de22015-08-04 21:51:41 +08001398static int run_apply(const struct am_state *state, const char *index_file)
Paul Tan38a824f2015-08-04 21:51:29 +08001399{
Christian Couderedfac5e2016-09-04 22:18:33 +02001400 struct argv_array apply_paths = ARGV_ARRAY_INIT;
1401 struct argv_array apply_opts = ARGV_ARRAY_INIT;
1402 struct apply_state apply_state;
1403 int res, opts_left;
Christian Couderedfac5e2016-09-04 22:18:33 +02001404 int force_apply = 0;
1405 int options = 0;
Paul Tan38a824f2015-08-04 21:51:29 +08001406
Nguyễn Thái Ngọc Duy82ea77e2018-08-13 18:14:39 +02001407 if (init_apply_state(&apply_state, the_repository, NULL))
Johannes Schindelin033abf92018-05-02 11:38:39 +02001408 BUG("init_apply_state() failed");
Paul Tan38a824f2015-08-04 21:51:29 +08001409
Christian Couderedfac5e2016-09-04 22:18:33 +02001410 argv_array_push(&apply_opts, "apply");
1411 argv_array_pushv(&apply_opts, state->git_apply_opts.argv);
1412
1413 opts_left = apply_parse_options(apply_opts.argc, apply_opts.argv,
1414 &apply_state, &force_apply, &options,
1415 NULL);
1416
1417 if (opts_left != 0)
1418 die("unknown option passed through to git apply");
1419
1420 if (index_file) {
1421 apply_state.index_file = index_file;
1422 apply_state.cached = 1;
1423 } else
1424 apply_state.check_index = 1;
Paul Tan84f3de22015-08-04 21:51:41 +08001425
1426 /*
1427 * If we are allowed to fall back on 3-way merge, don't give false
1428 * errors during the initial attempt.
1429 */
Christian Couderedfac5e2016-09-04 22:18:33 +02001430 if (state->threeway && !index_file)
1431 apply_state.apply_verbosity = verbosity_silent;
1432
1433 if (check_apply_state(&apply_state, force_apply))
Johannes Schindelin033abf92018-05-02 11:38:39 +02001434 BUG("check_apply_state() failed");
Christian Couderedfac5e2016-09-04 22:18:33 +02001435
1436 argv_array_push(&apply_paths, am_path(state, "patch"));
1437
1438 res = apply_all_patches(&apply_state, apply_paths.argc, apply_paths.argv, options);
1439
1440 argv_array_clear(&apply_paths);
1441 argv_array_clear(&apply_opts);
1442 clear_apply_state(&apply_state);
1443
1444 if (res)
1445 return res;
1446
1447 if (index_file) {
1448 /* Reload index as apply_all_patches() will have modified it. */
1449 discard_cache();
1450 read_cache_from(index_file);
Paul Tan84f3de22015-08-04 21:51:41 +08001451 }
1452
Paul Tan84f3de22015-08-04 21:51:41 +08001453 return 0;
1454}
1455
1456/**
1457 * Builds an index that contains just the blobs needed for a 3way merge.
1458 */
1459static int build_fake_ancestor(const struct am_state *state, const char *index_file)
1460{
1461 struct child_process cp = CHILD_PROCESS_INIT;
1462
1463 cp.git_cmd = 1;
1464 argv_array_push(&cp.args, "apply");
Paul Tan257e8ce2015-08-04 21:51:50 +08001465 argv_array_pushv(&cp.args, state->git_apply_opts.argv);
Paul Tan84f3de22015-08-04 21:51:41 +08001466 argv_array_pushf(&cp.args, "--build-fake-ancestor=%s", index_file);
1467 argv_array_push(&cp.args, am_path(state, "patch"));
1468
1469 if (run_command(&cp))
1470 return -1;
1471
1472 return 0;
1473}
1474
1475/**
1476 * Attempt a threeway merge, using index_path as the temporary index.
1477 */
1478static int fall_back_threeway(const struct am_state *state, const char *index_path)
1479{
Johannes Schindelin3f338f42016-07-26 18:06:30 +02001480 struct object_id orig_tree, their_tree, our_tree;
1481 const struct object_id *bases[1] = { &orig_tree };
1482 struct merge_options o;
1483 struct commit *result;
1484 char *their_tree_name;
Paul Tan84f3de22015-08-04 21:51:41 +08001485
Johannes Schindelin3f338f42016-07-26 18:06:30 +02001486 if (get_oid("HEAD", &our_tree) < 0)
brian m. carlsond41836a2018-05-02 00:25:55 +00001487 oidcpy(&our_tree, the_hash_algo->empty_tree);
Paul Tan84f3de22015-08-04 21:51:41 +08001488
1489 if (build_fake_ancestor(state, index_path))
1490 return error("could not build fake ancestor");
1491
1492 discard_cache();
1493 read_cache_from(index_path);
1494
brian m. carlsonfc5cb992018-03-12 02:27:23 +00001495 if (write_index_as_tree(&orig_tree, &the_index, index_path, 0, NULL))
Paul Tan84f3de22015-08-04 21:51:41 +08001496 return error(_("Repository lacks necessary blobs to fall back on 3-way merge."));
1497
1498 say(state, stdout, _("Using index info to reconstruct a base tree..."));
1499
1500 if (!state->quiet) {
1501 /*
1502 * List paths that needed 3-way fallback, so that the user can
1503 * review them with extra care to spot mismerges.
1504 */
1505 struct rev_info rev_info;
Paul Tan84f3de22015-08-04 21:51:41 +08001506
Nguyễn Thái Ngọc Duy2abf3502018-09-21 17:57:38 +02001507 repo_init_revisions(the_repository, &rev_info, NULL);
Paul Tan84f3de22015-08-04 21:51:41 +08001508 rev_info.diffopt.output_format = DIFF_FORMAT_NAME_STATUS;
Nguyễn Thái Ngọc Duycdb53302019-03-24 15:20:14 +07001509 rev_info.diffopt.filter |= diff_filter_bit('A');
1510 rev_info.diffopt.filter |= diff_filter_bit('M');
brian m. carlsona58a1b02017-05-06 22:10:26 +00001511 add_pending_oid(&rev_info, "HEAD", &our_tree, 0);
Paul Tan84f3de22015-08-04 21:51:41 +08001512 diff_setup_done(&rev_info.diffopt);
1513 run_diff_index(&rev_info, 1);
1514 }
1515
1516 if (run_apply(state, index_path))
1517 return error(_("Did you hand edit your patch?\n"
1518 "It does not apply to blobs recorded in its index."));
1519
brian m. carlsonfc5cb992018-03-12 02:27:23 +00001520 if (write_index_as_tree(&their_tree, &the_index, index_path, 0, NULL))
Paul Tan84f3de22015-08-04 21:51:41 +08001521 return error("could not write tree");
1522
1523 say(state, stdout, _("Falling back to patching base and 3-way merge..."));
1524
1525 discard_cache();
Paul Tan38a824f2015-08-04 21:51:29 +08001526 read_cache();
1527
Paul Tan84f3de22015-08-04 21:51:41 +08001528 /*
1529 * This is not so wrong. Depending on which base we picked, orig_tree
Johannes Schindelin715a51b2016-07-08 09:17:34 +02001530 * may be wildly different from ours, but their_tree has the same set of
Paul Tan84f3de22015-08-04 21:51:41 +08001531 * wildly different changes in parts the patch did not touch, so
1532 * recursive ends up canceling them, saying that we reverted all those
1533 * changes.
1534 */
1535
Nguyễn Thái Ngọc Duy0d6caa22019-01-12 09:13:29 +07001536 init_merge_options(&o, the_repository);
Johannes Schindelin3f338f42016-07-26 18:06:30 +02001537
1538 o.branch1 = "HEAD";
1539 their_tree_name = xstrfmt("%.*s", linelen(state->msg), state->msg);
1540 o.branch2 = their_tree_name;
Elijah Newren6aba1172018-08-29 00:06:13 -07001541 o.detect_directory_renames = 0;
Johannes Schindelin3f338f42016-07-26 18:06:30 +02001542
1543 if (state->quiet)
1544 o.verbosity = 0;
1545
1546 if (merge_recursive_generic(&o, &our_tree, &their_tree, 1, bases, &result)) {
Nguyễn Thái Ngọc Duy35843b12018-09-21 17:57:32 +02001547 repo_rerere(the_repository, state->allow_rerere_autoupdate);
Johannes Schindelin3f338f42016-07-26 18:06:30 +02001548 free(their_tree_name);
Paul Tan84f3de22015-08-04 21:51:41 +08001549 return error(_("Failed to merge in the changes."));
1550 }
1551
Johannes Schindelin3f338f42016-07-26 18:06:30 +02001552 free(their_tree_name);
Paul Tan38a824f2015-08-04 21:51:29 +08001553 return 0;
1554}
1555
1556/**
Paul Tanc9e8d962015-08-04 21:51:30 +08001557 * Commits the current index with state->msg as the commit message and
1558 * state->author_name, state->author_email and state->author_date as the author
1559 * information.
1560 */
1561static void do_commit(const struct am_state *state)
1562{
brian m. carlson8c887692016-09-05 20:08:09 +00001563 struct object_id tree, parent, commit;
1564 const struct object_id *old_oid;
Paul Tanc9e8d962015-08-04 21:51:30 +08001565 struct commit_list *parents = NULL;
1566 const char *reflog_msg, *author;
1567 struct strbuf sb = STRBUF_INIT;
1568
Paul Tan6c24c5c2015-08-04 21:51:57 +08001569 if (run_hook_le(NULL, "pre-applypatch", NULL))
1570 exit(1);
1571
brian m. carlsonfc5cb992018-03-12 02:27:23 +00001572 if (write_cache_as_tree(&tree, 0, NULL))
Paul Tanc9e8d962015-08-04 21:51:30 +08001573 die(_("git write-tree failed to write a tree"));
1574
brian m. carlsone82caf32017-07-13 23:49:28 +00001575 if (!get_oid_commit("HEAD", &parent)) {
brian m. carlson8c887692016-09-05 20:08:09 +00001576 old_oid = &parent;
Stefan Bellerc1f5eb42018-06-28 18:21:59 -07001577 commit_list_insert(lookup_commit(the_repository, &parent),
1578 &parents);
Paul Tanc9e8d962015-08-04 21:51:30 +08001579 } else {
brian m. carlson8c887692016-09-05 20:08:09 +00001580 old_oid = NULL;
Paul Tan5d28cf72015-08-04 21:51:37 +08001581 say(state, stderr, _("applying to an empty history"));
Paul Tanc9e8d962015-08-04 21:51:30 +08001582 }
1583
1584 author = fmt_ident(state->author_name, state->author_email,
William Hubbs39ab4d02019-02-04 12:48:50 -06001585 WANT_AUTHOR_IDENT,
Paul Tanf07adb62015-08-04 21:51:51 +08001586 state->ignore_date ? NULL : state->author_date,
1587 IDENT_STRICT);
Paul Tanc9e8d962015-08-04 21:51:30 +08001588
Paul Tan0cd4bcb2015-08-04 21:51:52 +08001589 if (state->committer_date_is_author_date)
1590 setenv("GIT_COMMITTER_DATE",
1591 state->ignore_date ? "" : state->author_date, 1);
1592
Patryk Obara5078f342018-01-28 01:13:16 +01001593 if (commit_tree(state->msg, state->msg_len, &tree, parents, &commit,
1594 author, state->sign_commit))
Paul Tanc9e8d962015-08-04 21:51:30 +08001595 die(_("failed to write commit object"));
1596
1597 reflog_msg = getenv("GIT_REFLOG_ACTION");
1598 if (!reflog_msg)
1599 reflog_msg = "am";
1600
1601 strbuf_addf(&sb, "%s: %.*s", reflog_msg, linelen(state->msg),
1602 state->msg);
1603
brian m. carlsonae077772017-10-15 22:06:51 +00001604 update_ref(sb.buf, "HEAD", &commit, old_oid, 0,
1605 UPDATE_REFS_DIE_ON_ERR);
Paul Tanc9e8d962015-08-04 21:51:30 +08001606
Paul Tan13b97ea2015-08-04 21:51:54 +08001607 if (state->rebasing) {
1608 FILE *fp = xfopen(am_path(state, "rewritten"), "a");
1609
brian m. carlson8c887692016-09-05 20:08:09 +00001610 assert(!is_null_oid(&state->orig_commit));
1611 fprintf(fp, "%s ", oid_to_hex(&state->orig_commit));
1612 fprintf(fp, "%s\n", oid_to_hex(&commit));
Paul Tan13b97ea2015-08-04 21:51:54 +08001613 fclose(fp);
1614 }
1615
Paul Tan7088f802015-08-04 21:51:58 +08001616 run_hook_le(NULL, "post-applypatch", NULL);
1617
Paul Tanc9e8d962015-08-04 21:51:30 +08001618 strbuf_release(&sb);
1619}
1620
1621/**
Paul Tan240bfd22015-08-04 21:51:32 +08001622 * Validates the am_state for resuming -- the "msg" and authorship fields must
1623 * be filled up.
1624 */
1625static void validate_resume_state(const struct am_state *state)
1626{
1627 if (!state->msg)
1628 die(_("cannot resume: %s does not exist."),
1629 am_path(state, "final-commit"));
1630
1631 if (!state->author_name || !state->author_email || !state->author_date)
1632 die(_("cannot resume: %s does not exist."),
1633 am_path(state, "author-script"));
1634}
1635
1636/**
Paul Tan7ff26832015-08-04 21:52:03 +08001637 * Interactively prompt the user on whether the current patch should be
1638 * applied.
1639 *
1640 * Returns 0 if the user chooses to apply the patch, 1 if the user chooses to
1641 * skip it.
1642 */
1643static int do_interactive(struct am_state *state)
1644{
1645 assert(state->msg);
1646
Paul Tan7ff26832015-08-04 21:52:03 +08001647 for (;;) {
Jeff King97387c82019-05-20 08:09:26 -04001648 char reply[64];
Paul Tan7ff26832015-08-04 21:52:03 +08001649
1650 puts(_("Commit Body is:"));
1651 puts("--------------------------");
1652 printf("%s", state->msg);
1653 puts("--------------------------");
1654
1655 /*
1656 * TRANSLATORS: Make sure to include [y], [n], [e], [v] and [a]
1657 * in your translation. The program will only accept English
1658 * input at this point.
1659 */
Jeff King97387c82019-05-20 08:09:26 -04001660 printf(_("Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all: "));
1661 if (!fgets(reply, sizeof(reply), stdin))
1662 die("unable to read from stdin; aborting");
Paul Tan7ff26832015-08-04 21:52:03 +08001663
Jeff King1db65f32019-05-20 08:07:15 -04001664 if (*reply == 'y' || *reply == 'Y') {
Paul Tan7ff26832015-08-04 21:52:03 +08001665 return 0;
1666 } else if (*reply == 'a' || *reply == 'A') {
1667 state->interactive = 0;
1668 return 0;
1669 } else if (*reply == 'n' || *reply == 'N') {
1670 return 1;
1671 } else if (*reply == 'e' || *reply == 'E') {
1672 struct strbuf msg = STRBUF_INIT;
1673
1674 if (!launch_editor(am_path(state, "final-commit"), &msg, NULL)) {
1675 free(state->msg);
1676 state->msg = strbuf_detach(&msg, &state->msg_len);
1677 }
1678 strbuf_release(&msg);
1679 } else if (*reply == 'v' || *reply == 'V') {
1680 const char *pager = git_pager(1);
1681 struct child_process cp = CHILD_PROCESS_INIT;
1682
1683 if (!pager)
1684 pager = "cat";
Junio C Hamano708b8cc2016-02-16 14:46:39 -08001685 prepare_pager_args(&cp, pager);
Paul Tan7ff26832015-08-04 21:52:03 +08001686 argv_array_push(&cp.args, am_path(state, "patch"));
1687 run_command(&cp);
1688 }
1689 }
1690}
1691
1692/**
Paul Tan8c3bd9e2015-08-04 21:51:25 +08001693 * Applies all queued mail.
Paul Tan8c7b1562015-08-04 21:51:33 +08001694 *
1695 * If `resume` is true, we are "resuming". The "msg" and authorship fields, as
1696 * well as the state directory's "patch" file is used as-is for applying the
1697 * patch and committing it.
Paul Tan8c3bd9e2015-08-04 21:51:25 +08001698 */
Paul Tan8c7b1562015-08-04 21:51:33 +08001699static void am_run(struct am_state *state, int resume)
Paul Tan8c3bd9e2015-08-04 21:51:25 +08001700{
Paul Tanc9e8d962015-08-04 21:51:30 +08001701 const char *argv_gc_auto[] = {"gc", "--auto", NULL};
Paul Tan32a5fcb2015-08-04 21:51:31 +08001702 struct strbuf sb = STRBUF_INIT;
Paul Tanc9e8d962015-08-04 21:51:30 +08001703
Paul Tan33388a72015-08-04 21:51:35 +08001704 unlink(am_path(state, "dirtyindex"));
1705
Paul Tan38a824f2015-08-04 21:51:29 +08001706 refresh_and_write_cache();
1707
Nguyễn Thái Ngọc Duy150fe062019-01-12 09:13:31 +07001708 if (repo_index_has_changes(the_repository, NULL, &sb)) {
Junio C Hamano25b763b2015-08-24 09:12:53 -07001709 write_state_bool(state, "dirtyindex", 1);
Paul Tan32a5fcb2015-08-04 21:51:31 +08001710 die(_("Dirty index: cannot apply patches (dirty: %s)"), sb.buf);
Paul Tan33388a72015-08-04 21:51:35 +08001711 }
Paul Tan32a5fcb2015-08-04 21:51:31 +08001712
1713 strbuf_release(&sb);
1714
Paul Tan8c3bd9e2015-08-04 21:51:25 +08001715 while (state->cur <= state->last) {
Paul Tan3e20dcf2015-08-04 21:51:28 +08001716 const char *mail = am_path(state, msgnum(state));
Paul Tan84f3de22015-08-04 21:51:41 +08001717 int apply_status;
Paul Tan3e20dcf2015-08-04 21:51:28 +08001718
Jeff King4d9c7e62016-08-01 15:37:00 -04001719 reset_ident_date();
1720
Paul Tan3e20dcf2015-08-04 21:51:28 +08001721 if (!file_exists(mail))
1722 goto next;
1723
Paul Tan8c7b1562015-08-04 21:51:33 +08001724 if (resume) {
1725 validate_resume_state(state);
Paul Tan8c7b1562015-08-04 21:51:33 +08001726 } else {
Paul Tandf2760a2015-08-04 21:51:43 +08001727 int skip;
1728
1729 if (state->rebasing)
1730 skip = parse_mail_rebase(state, mail);
1731 else
1732 skip = parse_mail(state, mail);
1733
1734 if (skip)
Paul Tan8c7b1562015-08-04 21:51:33 +08001735 goto next; /* mail should be skipped */
Paul Tan3e20dcf2015-08-04 21:51:28 +08001736
Giuseppe Bilottab7cc7052017-04-15 16:41:01 +02001737 if (state->signoff)
1738 am_append_signoff(state);
1739
Paul Tan8c7b1562015-08-04 21:51:33 +08001740 write_author_script(state);
1741 write_commit_msg(state);
1742 }
Paul Tan8c3bd9e2015-08-04 21:51:25 +08001743
Paul Tan7ff26832015-08-04 21:52:03 +08001744 if (state->interactive && do_interactive(state))
1745 goto next;
1746
Paul Tanb8803d82015-08-04 21:51:56 +08001747 if (run_applypatch_msg_hook(state))
1748 exit(1);
1749
Paul Tan5d28cf72015-08-04 21:51:37 +08001750 say(state, stdout, _("Applying: %.*s"), linelen(state->msg), state->msg);
Paul Tan38a824f2015-08-04 21:51:29 +08001751
Paul Tan84f3de22015-08-04 21:51:41 +08001752 apply_status = run_apply(state, NULL);
1753
1754 if (apply_status && state->threeway) {
1755 struct strbuf sb = STRBUF_INIT;
1756
1757 strbuf_addstr(&sb, am_path(state, "patch-merge-index"));
1758 apply_status = fall_back_threeway(state, sb.buf);
1759 strbuf_release(&sb);
1760
1761 /*
1762 * Applying the patch to an earlier tree and merging
1763 * the result may have produced the same tree as ours.
1764 */
Elijah Newrene1f86942018-06-30 18:25:00 -07001765 if (!apply_status &&
Nguyễn Thái Ngọc Duy150fe062019-01-12 09:13:31 +07001766 !repo_index_has_changes(the_repository, NULL, NULL)) {
Paul Tan84f3de22015-08-04 21:51:41 +08001767 say(state, stdout, _("No changes -- Patch already applied."));
1768 goto next;
1769 }
1770 }
1771
1772 if (apply_status) {
Paul Tan38a824f2015-08-04 21:51:29 +08001773 printf_ln(_("Patch failed at %s %.*s"), msgnum(state),
1774 linelen(state->msg), state->msg);
1775
Paul Tan38a824f2015-08-04 21:51:29 +08001776 if (advice_amworkdir)
Nguyễn Thái Ngọc Duy431bb232018-05-26 15:55:27 +02001777 advise(_("Use 'git am --show-current-patch' to see the failed patch"));
Paul Tan38a824f2015-08-04 21:51:29 +08001778
Paul Tan2d831092015-08-04 21:51:38 +08001779 die_user_resolve(state);
Paul Tan38a824f2015-08-04 21:51:29 +08001780 }
1781
Paul Tanc9e8d962015-08-04 21:51:30 +08001782 do_commit(state);
Paul Tan8c3bd9e2015-08-04 21:51:25 +08001783
Paul Tan3e20dcf2015-08-04 21:51:28 +08001784next:
Paul Tan8c3bd9e2015-08-04 21:51:25 +08001785 am_next(state);
Paul Tan852a1712015-08-04 22:08:50 +08001786
1787 if (resume)
1788 am_load(state);
1789 resume = 0;
Paul Tan8c3bd9e2015-08-04 21:51:25 +08001790 }
1791
Pranit Bauvae3b1e3b2019-01-02 07:38:32 -08001792 if (!is_empty_or_missing_file(am_path(state, "rewritten"))) {
Paul Tan13b97ea2015-08-04 21:51:54 +08001793 assert(state->rebasing);
Paul Tan88b291f2015-08-04 21:51:55 +08001794 copy_notes_for_rebase(state);
Paul Tan13b97ea2015-08-04 21:51:54 +08001795 run_post_rewrite_hook(state);
1796 }
1797
Paul Tan35bdcc52015-08-04 21:51:42 +08001798 /*
1799 * In rebasing mode, it's up to the caller to take care of
1800 * housekeeping.
1801 */
1802 if (!state->rebasing) {
1803 am_destroy(state);
Derrick Stolee2d511cf2019-05-17 11:41:49 -07001804 close_object_store(the_repository->objects);
Paul Tan35bdcc52015-08-04 21:51:42 +08001805 run_command_v_opt(argv_gc_auto, RUN_GIT_CMD);
1806 }
Paul Tan8c3bd9e2015-08-04 21:51:25 +08001807}
Paul Tan73c27792015-08-04 21:51:24 +08001808
Paul Tan11c21772015-08-04 21:51:26 +08001809/**
Paul Tan240bfd22015-08-04 21:51:32 +08001810 * Resume the current am session after patch application failure. The user did
1811 * all the hard work, and we do not have to do any patch application. Just
1812 * trust and commit what the user has in the index and working tree.
1813 */
1814static void am_resolve(struct am_state *state)
1815{
1816 validate_resume_state(state);
1817
Paul Tan5d28cf72015-08-04 21:51:37 +08001818 say(state, stdout, _("Applying: %.*s"), linelen(state->msg), state->msg);
Paul Tan240bfd22015-08-04 21:51:32 +08001819
Nguyễn Thái Ngọc Duy150fe062019-01-12 09:13:31 +07001820 if (!repo_index_has_changes(the_repository, NULL, NULL)) {
Paul Tan240bfd22015-08-04 21:51:32 +08001821 printf_ln(_("No changes - did you forget to use 'git add'?\n"
1822 "If there is nothing left to stage, chances are that something else\n"
1823 "already introduced the same changes; you might want to skip this patch."));
Paul Tan2d831092015-08-04 21:51:38 +08001824 die_user_resolve(state);
Paul Tan240bfd22015-08-04 21:51:32 +08001825 }
1826
1827 if (unmerged_cache()) {
1828 printf_ln(_("You still have unmerged paths in your index.\n"
Jean-Noel Avila6c486862017-05-11 14:06:32 +02001829 "You should 'git add' each file with resolved conflicts to mark them as such.\n"
1830 "You might run `git rm` on a file to accept \"deleted by them\" for it."));
Paul Tan2d831092015-08-04 21:51:38 +08001831 die_user_resolve(state);
Paul Tan240bfd22015-08-04 21:51:32 +08001832 }
1833
Paul Tan7ff26832015-08-04 21:52:03 +08001834 if (state->interactive) {
1835 write_index_patch(state);
1836 if (do_interactive(state))
1837 goto next;
1838 }
1839
Nguyễn Thái Ngọc Duy35843b12018-09-21 17:57:32 +02001840 repo_rerere(the_repository, 0);
Paul Tanf1cb96d2015-08-04 21:51:59 +08001841
Paul Tan240bfd22015-08-04 21:51:32 +08001842 do_commit(state);
1843
Paul Tan7ff26832015-08-04 21:52:03 +08001844next:
Paul Tan240bfd22015-08-04 21:51:32 +08001845 am_next(state);
Paul Tan852a1712015-08-04 22:08:50 +08001846 am_load(state);
Paul Tan8c7b1562015-08-04 21:51:33 +08001847 am_run(state, 0);
Paul Tan240bfd22015-08-04 21:51:32 +08001848}
1849
1850/**
Paul Tan99900802015-08-04 21:51:34 +08001851 * Performs a checkout fast-forward from `head` to `remote`. If `reset` is
1852 * true, any unmerged entries will be discarded. Returns 0 on success, -1 on
1853 * failure.
1854 */
1855static int fast_forward_to(struct tree *head, struct tree *remote, int reset)
1856{
Martin Ågren837e34e2017-10-05 22:32:04 +02001857 struct lock_file lock_file = LOCK_INIT;
Paul Tan99900802015-08-04 21:51:34 +08001858 struct unpack_trees_options opts;
1859 struct tree_desc t[2];
1860
1861 if (parse_tree(head) || parse_tree(remote))
1862 return -1;
1863
Martin Ågren837e34e2017-10-05 22:32:04 +02001864 hold_locked_index(&lock_file, LOCK_DIE_ON_ERROR);
Paul Tan99900802015-08-04 21:51:34 +08001865
1866 refresh_cache(REFRESH_QUIET);
1867
1868 memset(&opts, 0, sizeof(opts));
1869 opts.head_idx = 1;
1870 opts.src_index = &the_index;
1871 opts.dst_index = &the_index;
1872 opts.update = 1;
1873 opts.merge = 1;
1874 opts.reset = reset;
1875 opts.fn = twoway_merge;
1876 init_tree_desc(&t[0], head->buffer, head->size);
1877 init_tree_desc(&t[1], remote->buffer, remote->size);
1878
1879 if (unpack_trees(2, t, &opts)) {
Martin Ågren837e34e2017-10-05 22:32:04 +02001880 rollback_lock_file(&lock_file);
Paul Tan99900802015-08-04 21:51:34 +08001881 return -1;
1882 }
1883
Martin Ågren837e34e2017-10-05 22:32:04 +02001884 if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
Paul Tan99900802015-08-04 21:51:34 +08001885 die(_("unable to write new index file"));
1886
1887 return 0;
1888}
1889
1890/**
Paul Tan3ecc7042015-08-19 16:22:22 +08001891 * Merges a tree into the index. The index's stat info will take precedence
1892 * over the merged tree's. Returns 0 on success, -1 on failure.
1893 */
1894static int merge_tree(struct tree *tree)
1895{
Martin Ågren837e34e2017-10-05 22:32:04 +02001896 struct lock_file lock_file = LOCK_INIT;
Paul Tan3ecc7042015-08-19 16:22:22 +08001897 struct unpack_trees_options opts;
1898 struct tree_desc t[1];
1899
1900 if (parse_tree(tree))
1901 return -1;
1902
Martin Ågren837e34e2017-10-05 22:32:04 +02001903 hold_locked_index(&lock_file, LOCK_DIE_ON_ERROR);
Paul Tan3ecc7042015-08-19 16:22:22 +08001904
1905 memset(&opts, 0, sizeof(opts));
1906 opts.head_idx = 1;
1907 opts.src_index = &the_index;
1908 opts.dst_index = &the_index;
1909 opts.merge = 1;
1910 opts.fn = oneway_merge;
1911 init_tree_desc(&t[0], tree->buffer, tree->size);
1912
1913 if (unpack_trees(1, t, &opts)) {
Martin Ågren837e34e2017-10-05 22:32:04 +02001914 rollback_lock_file(&lock_file);
Paul Tan3ecc7042015-08-19 16:22:22 +08001915 return -1;
1916 }
1917
Martin Ågren837e34e2017-10-05 22:32:04 +02001918 if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
Paul Tan3ecc7042015-08-19 16:22:22 +08001919 die(_("unable to write new index file"));
1920
1921 return 0;
1922}
1923
1924/**
Paul Tan99900802015-08-04 21:51:34 +08001925 * Clean the index without touching entries that are not modified between
1926 * `head` and `remote`.
1927 */
brian m. carlson8c887692016-09-05 20:08:09 +00001928static int clean_index(const struct object_id *head, const struct object_id *remote)
Paul Tan99900802015-08-04 21:51:34 +08001929{
Paul Tan99900802015-08-04 21:51:34 +08001930 struct tree *head_tree, *remote_tree, *index_tree;
brian m. carlson8c887692016-09-05 20:08:09 +00001931 struct object_id index;
Paul Tan99900802015-08-04 21:51:34 +08001932
brian m. carlsona9dbc172017-05-06 22:10:37 +00001933 head_tree = parse_tree_indirect(head);
Paul Tan99900802015-08-04 21:51:34 +08001934 if (!head_tree)
brian m. carlson8c887692016-09-05 20:08:09 +00001935 return error(_("Could not parse object '%s'."), oid_to_hex(head));
Paul Tan99900802015-08-04 21:51:34 +08001936
brian m. carlsona9dbc172017-05-06 22:10:37 +00001937 remote_tree = parse_tree_indirect(remote);
Paul Tan99900802015-08-04 21:51:34 +08001938 if (!remote_tree)
brian m. carlson8c887692016-09-05 20:08:09 +00001939 return error(_("Could not parse object '%s'."), oid_to_hex(remote));
Paul Tan99900802015-08-04 21:51:34 +08001940
1941 read_cache_unmerged();
1942
1943 if (fast_forward_to(head_tree, head_tree, 1))
1944 return -1;
1945
brian m. carlsonfc5cb992018-03-12 02:27:23 +00001946 if (write_cache_as_tree(&index, 0, NULL))
Paul Tan99900802015-08-04 21:51:34 +08001947 return -1;
1948
brian m. carlsona9dbc172017-05-06 22:10:37 +00001949 index_tree = parse_tree_indirect(&index);
Paul Tan99900802015-08-04 21:51:34 +08001950 if (!index_tree)
brian m. carlson8c887692016-09-05 20:08:09 +00001951 return error(_("Could not parse object '%s'."), oid_to_hex(&index));
Paul Tan99900802015-08-04 21:51:34 +08001952
1953 if (fast_forward_to(index_tree, remote_tree, 0))
1954 return -1;
1955
Paul Tan3ecc7042015-08-19 16:22:22 +08001956 if (merge_tree(remote_tree))
Paul Tan99900802015-08-04 21:51:34 +08001957 return -1;
Paul Tan99900802015-08-04 21:51:34 +08001958
Nguyễn Thái Ngọc Duyf4a4b9a2019-03-29 17:38:59 +07001959 remove_branch_state(the_repository, 0);
Paul Tan99900802015-08-04 21:51:34 +08001960
1961 return 0;
1962}
1963
1964/**
Paul Tanf1cb96d2015-08-04 21:51:59 +08001965 * Resets rerere's merge resolution metadata.
1966 */
1967static void am_rerere_clear(void)
1968{
1969 struct string_list merge_rr = STRING_LIST_INIT_DUP;
Nguyễn Thái Ngọc Duy55e6b352018-11-10 06:49:09 +01001970 rerere_clear(the_repository, &merge_rr);
Paul Tanf1cb96d2015-08-04 21:51:59 +08001971 string_list_clear(&merge_rr, 1);
1972}
1973
1974/**
Paul Tan99900802015-08-04 21:51:34 +08001975 * Resume the current am session by skipping the current patch.
1976 */
1977static void am_skip(struct am_state *state)
1978{
brian m. carlson8c887692016-09-05 20:08:09 +00001979 struct object_id head;
Paul Tan99900802015-08-04 21:51:34 +08001980
Paul Tanf1cb96d2015-08-04 21:51:59 +08001981 am_rerere_clear();
1982
brian m. carlson8c887692016-09-05 20:08:09 +00001983 if (get_oid("HEAD", &head))
brian m. carlsond41836a2018-05-02 00:25:55 +00001984 oidcpy(&head, the_hash_algo->empty_tree);
Paul Tan99900802015-08-04 21:51:34 +08001985
brian m. carlson8c887692016-09-05 20:08:09 +00001986 if (clean_index(&head, &head))
Paul Tan99900802015-08-04 21:51:34 +08001987 die(_("failed to clean index"));
1988
Elijah Newren45339f72018-12-11 08:11:35 -08001989 if (state->rebasing) {
1990 FILE *fp = xfopen(am_path(state, "rewritten"), "a");
1991
1992 assert(!is_null_oid(&state->orig_commit));
1993 fprintf(fp, "%s ", oid_to_hex(&state->orig_commit));
1994 fprintf(fp, "%s\n", oid_to_hex(&head));
1995 fclose(fp);
1996 }
1997
Paul Tan99900802015-08-04 21:51:34 +08001998 am_next(state);
Paul Tan852a1712015-08-04 22:08:50 +08001999 am_load(state);
Paul Tan99900802015-08-04 21:51:34 +08002000 am_run(state, 0);
2001}
2002
2003/**
Paul Tan33388a72015-08-04 21:51:35 +08002004 * Returns true if it is safe to reset HEAD to the ORIG_HEAD, false otherwise.
2005 *
2006 * It is not safe to reset HEAD when:
2007 * 1. git-am previously failed because the index was dirty.
2008 * 2. HEAD has moved since git-am previously failed.
2009 */
2010static int safe_to_abort(const struct am_state *state)
2011{
2012 struct strbuf sb = STRBUF_INIT;
brian m. carlson8c887692016-09-05 20:08:09 +00002013 struct object_id abort_safety, head;
Paul Tan33388a72015-08-04 21:51:35 +08002014
2015 if (file_exists(am_path(state, "dirtyindex")))
2016 return 0;
2017
2018 if (read_state_file(&sb, state, "abort-safety", 1) > 0) {
brian m. carlson8c887692016-09-05 20:08:09 +00002019 if (get_oid_hex(sb.buf, &abort_safety))
Stephan Beyerccd71b22016-12-07 22:51:29 +01002020 die(_("could not parse %s"), am_path(state, "abort-safety"));
Paul Tan33388a72015-08-04 21:51:35 +08002021 } else
brian m. carlson8c887692016-09-05 20:08:09 +00002022 oidclr(&abort_safety);
Rene Scharfe28ac7aa2017-08-30 19:49:34 +02002023 strbuf_release(&sb);
Paul Tan33388a72015-08-04 21:51:35 +08002024
brian m. carlson8c887692016-09-05 20:08:09 +00002025 if (get_oid("HEAD", &head))
2026 oidclr(&head);
Paul Tan33388a72015-08-04 21:51:35 +08002027
Jeff King4a7e27e2018-08-28 17:22:40 -04002028 if (oideq(&head, &abort_safety))
Paul Tan33388a72015-08-04 21:51:35 +08002029 return 1;
2030
Stephan Beyer18683312016-12-07 22:51:30 +01002031 warning(_("You seem to have moved HEAD since the last 'am' failure.\n"
Paul Tan33388a72015-08-04 21:51:35 +08002032 "Not rewinding to ORIG_HEAD"));
2033
2034 return 0;
2035}
2036
2037/**
2038 * Aborts the current am session if it is safe to do so.
2039 */
2040static void am_abort(struct am_state *state)
2041{
brian m. carlson8c887692016-09-05 20:08:09 +00002042 struct object_id curr_head, orig_head;
Paul Tan33388a72015-08-04 21:51:35 +08002043 int has_curr_head, has_orig_head;
2044 char *curr_branch;
2045
2046 if (!safe_to_abort(state)) {
2047 am_destroy(state);
2048 return;
2049 }
2050
Paul Tanf1cb96d2015-08-04 21:51:59 +08002051 am_rerere_clear();
2052
brian m. carlson0f2dc722017-10-15 22:06:55 +00002053 curr_branch = resolve_refdup("HEAD", 0, &curr_head, NULL);
René Scharfe57e0ef02017-05-06 19:13:56 +02002054 has_curr_head = curr_branch && !is_null_oid(&curr_head);
Paul Tan33388a72015-08-04 21:51:35 +08002055 if (!has_curr_head)
brian m. carlsond41836a2018-05-02 00:25:55 +00002056 oidcpy(&curr_head, the_hash_algo->empty_tree);
Paul Tan33388a72015-08-04 21:51:35 +08002057
brian m. carlson8c887692016-09-05 20:08:09 +00002058 has_orig_head = !get_oid("ORIG_HEAD", &orig_head);
Paul Tan33388a72015-08-04 21:51:35 +08002059 if (!has_orig_head)
brian m. carlsond41836a2018-05-02 00:25:55 +00002060 oidcpy(&orig_head, the_hash_algo->empty_tree);
Paul Tan33388a72015-08-04 21:51:35 +08002061
brian m. carlson8c887692016-09-05 20:08:09 +00002062 clean_index(&curr_head, &orig_head);
Paul Tan33388a72015-08-04 21:51:35 +08002063
2064 if (has_orig_head)
brian m. carlsonae077772017-10-15 22:06:51 +00002065 update_ref("am --abort", "HEAD", &orig_head,
2066 has_curr_head ? &curr_head : NULL, 0,
2067 UPDATE_REFS_DIE_ON_ERR);
Paul Tan33388a72015-08-04 21:51:35 +08002068 else if (curr_branch)
Michael Haggerty91774af2017-11-05 09:42:06 +01002069 delete_ref(NULL, curr_branch, NULL, REF_NO_DEREF);
Paul Tan33388a72015-08-04 21:51:35 +08002070
2071 free(curr_branch);
2072 am_destroy(state);
2073}
2074
Nguyễn Thái Ngọc Duy984913a2018-02-11 16:43:26 +07002075static int show_patch(struct am_state *state)
2076{
2077 struct strbuf sb = STRBUF_INIT;
2078 const char *patch_path;
2079 int len;
2080
Nguyễn Thái Ngọc Duy66335292018-02-11 16:43:27 +07002081 if (!is_null_oid(&state->orig_commit)) {
2082 const char *av[4] = { "show", NULL, "--", NULL };
2083 char *new_oid_str;
2084 int ret;
2085
2086 av[1] = new_oid_str = xstrdup(oid_to_hex(&state->orig_commit));
2087 ret = run_command_v_opt(av, RUN_GIT_CMD);
2088 free(new_oid_str);
2089 return ret;
2090 }
2091
Nguyễn Thái Ngọc Duy984913a2018-02-11 16:43:26 +07002092 patch_path = am_path(state, msgnum(state));
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
Paul Tan33388a72015-08-04 21:51:35 +08002103/**
Paul Tan11c21772015-08-04 21:51:26 +08002104 * 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
Jeff Kingfce56642018-11-05 01:38:39 -05002111 if (unset)
2112 *opt_value = PATCH_FORMAT_UNKNOWN;
2113 else if (!strcmp(arg, "mbox"))
Paul Tan11c21772015-08-04 21:51:26 +08002114 *opt_value = PATCH_FORMAT_MBOX;
Paul Tan5ae41c72015-08-04 21:52:00 +08002115 else if (!strcmp(arg, "stgit"))
2116 *opt_value = PATCH_FORMAT_STGIT;
Paul Tan336108c2015-08-04 21:52:01 +08002117 else if (!strcmp(arg, "stgit-series"))
2118 *opt_value = PATCH_FORMAT_STGIT_SERIES;
Paul Tan94cd1752015-08-04 21:52:02 +08002119 else if (!strcmp(arg, "hg"))
2120 *opt_value = PATCH_FORMAT_HG;
Eric Wongd9925d12016-06-05 04:46:41 +00002121 else if (!strcmp(arg, "mboxrd"))
2122 *opt_value = PATCH_FORMAT_MBOXRD;
Nguyễn Thái Ngọc Duy5a59a232019-02-16 18:24:41 +07002123 /*
2124 * Please update $__git_patchformat in git-completion.bash
2125 * when you add new options
2126 */
Paul Tan11c21772015-08-04 21:51:26 +08002127 else
2128 return error(_("Invalid value for --patch-format: %s"), arg);
2129 return 0;
2130}
2131
Paul Tan240bfd22015-08-04 21:51:32 +08002132enum resume_mode {
2133 RESUME_FALSE = 0,
Paul Tan8c7b1562015-08-04 21:51:33 +08002134 RESUME_APPLY,
Paul Tan99900802015-08-04 21:51:34 +08002135 RESUME_RESOLVED,
Paul Tan33388a72015-08-04 21:51:35 +08002136 RESUME_SKIP,
Nguyễn Thái Ngọc Duy65ed8ff2018-02-14 18:16:06 +07002137 RESUME_ABORT,
Junio C Hamano9ca488c2018-03-06 14:54:02 -08002138 RESUME_QUIT,
Nguyễn Thái Ngọc Duy984913a2018-02-11 16:43:26 +07002139 RESUME_SHOW_PATCH
Paul Tan240bfd22015-08-04 21:51:32 +08002140};
2141
Renee Margaret McConahy434c64d2015-09-30 13:49:44 -04002142static int git_am_config(const char *k, const char *v, void *cb)
2143{
2144 int status;
2145
2146 status = git_gpg_config(k, v, NULL);
2147 if (status)
2148 return status;
2149
2150 return git_default_config(k, v, NULL);
2151}
2152
Paul Tan73c27792015-08-04 21:51:24 +08002153int cmd_am(int argc, const char **argv, const char *prefix)
2154{
Paul Tan8c3bd9e2015-08-04 21:51:25 +08002155 struct am_state state;
Paul Tanc2676cd2015-08-04 21:52:04 +08002156 int binary = -1;
Paul Tan5d123a42015-08-04 21:51:48 +08002157 int keep_cr = -1;
Paul Tan11c21772015-08-04 21:51:26 +08002158 int patch_format = PATCH_FORMAT_UNKNOWN;
Paul Tan240bfd22015-08-04 21:51:32 +08002159 enum resume_mode resume = RESUME_FALSE;
Paul Tan852a1712015-08-04 22:08:50 +08002160 int in_progress;
Nguyễn Thái Ngọc Duy984913a2018-02-11 16:43:26 +07002161 int ret = 0;
Paul Tan8c3bd9e2015-08-04 21:51:25 +08002162
2163 const char * const usage[] = {
Alex Henried65fdc92016-09-07 22:33:08 -06002164 N_("git am [<options>] [(<mbox> | <Maildir>)...]"),
Ralf Thielowd96a0312015-10-16 19:09:57 +02002165 N_("git am [<options>] (--continue | --skip | --abort)"),
Paul Tan8c3bd9e2015-08-04 21:51:25 +08002166 NULL
2167 };
2168
2169 struct option options[] = {
Paul Tan7ff26832015-08-04 21:52:03 +08002170 OPT_BOOL('i', "interactive", &state.interactive,
2171 N_("run interactively")),
Paul Tanc2676cd2015-08-04 21:52:04 +08002172 OPT_HIDDEN_BOOL('b', "binary", &binary,
Jiang Xin1fb5a0e2015-08-26 23:51:19 +08002173 N_("historical option -- no-op")),
Paul Tan84f3de22015-08-04 21:51:41 +08002174 OPT_BOOL('3', "3way", &state.threeway,
2175 N_("allow fall back on 3way merging if needed")),
Paul Tan5d28cf72015-08-04 21:51:37 +08002176 OPT__QUIET(&state.quiet, N_("be quiet")),
Paul Tanb5e82352015-08-04 22:08:51 +08002177 OPT_SET_INT('s', "signoff", &state.signoff,
2178 N_("add a Signed-off-by line to the commit message"),
2179 SIGNOFF_EXPLICIT),
Paul Tanef7ee162015-08-04 21:51:45 +08002180 OPT_BOOL('u', "utf8", &state.utf8,
2181 N_("recode into utf8 (default)")),
Paul Tan4f1b6962015-08-04 21:51:46 +08002182 OPT_SET_INT('k', "keep", &state.keep,
2183 N_("pass -k flag to git-mailinfo"), KEEP_TRUE),
2184 OPT_SET_INT(0, "keep-non-patch", &state.keep,
2185 N_("pass -b flag to git-mailinfo"), KEEP_NON_PATCH),
Paul Tan702cbaa2015-08-04 21:51:47 +08002186 OPT_BOOL('m', "message-id", &state.message_id,
2187 N_("pass -m flag to git-mailinfo")),
Nguyễn Thái Ngọc Duy3e4a67b2018-05-20 17:42:58 +02002188 OPT_SET_INT_F(0, "keep-cr", &keep_cr,
2189 N_("pass --keep-cr flag to git-mailsplit for mbox format"),
2190 1, PARSE_OPT_NONEG),
2191 OPT_SET_INT_F(0, "no-keep-cr", &keep_cr,
2192 N_("do not pass --keep-cr flag to git-mailsplit independent of am.keepcr"),
2193 0, PARSE_OPT_NONEG),
Paul Tan9b646612015-08-04 21:51:49 +08002194 OPT_BOOL('c', "scissors", &state.scissors,
2195 N_("strip everything before a scissors line")),
Paul Tan257e8ce2015-08-04 21:51:50 +08002196 OPT_PASSTHRU_ARGV(0, "whitespace", &state.git_apply_opts, N_("action"),
2197 N_("pass it through git-apply"),
2198 0),
2199 OPT_PASSTHRU_ARGV(0, "ignore-space-change", &state.git_apply_opts, NULL,
2200 N_("pass it through git-apply"),
2201 PARSE_OPT_NOARG),
2202 OPT_PASSTHRU_ARGV(0, "ignore-whitespace", &state.git_apply_opts, NULL,
2203 N_("pass it through git-apply"),
2204 PARSE_OPT_NOARG),
2205 OPT_PASSTHRU_ARGV(0, "directory", &state.git_apply_opts, N_("root"),
2206 N_("pass it through git-apply"),
2207 0),
2208 OPT_PASSTHRU_ARGV(0, "exclude", &state.git_apply_opts, N_("path"),
2209 N_("pass it through git-apply"),
2210 0),
2211 OPT_PASSTHRU_ARGV(0, "include", &state.git_apply_opts, N_("path"),
2212 N_("pass it through git-apply"),
2213 0),
2214 OPT_PASSTHRU_ARGV('C', NULL, &state.git_apply_opts, N_("n"),
2215 N_("pass it through git-apply"),
2216 0),
2217 OPT_PASSTHRU_ARGV('p', NULL, &state.git_apply_opts, N_("num"),
2218 N_("pass it through git-apply"),
2219 0),
Paul Tan11c21772015-08-04 21:51:26 +08002220 OPT_CALLBACK(0, "patch-format", &patch_format, N_("format"),
2221 N_("format the patch(es) are in"),
2222 parse_opt_patchformat),
Paul Tan257e8ce2015-08-04 21:51:50 +08002223 OPT_PASSTHRU_ARGV(0, "reject", &state.git_apply_opts, NULL,
2224 N_("pass it through git-apply"),
2225 PARSE_OPT_NOARG),
Paul Tan2d831092015-08-04 21:51:38 +08002226 OPT_STRING(0, "resolvemsg", &state.resolvemsg, NULL,
2227 N_("override error message when patch failure occurs")),
Paul Tan240bfd22015-08-04 21:51:32 +08002228 OPT_CMDMODE(0, "continue", &resume,
2229 N_("continue applying patches after resolving a conflict"),
2230 RESUME_RESOLVED),
2231 OPT_CMDMODE('r', "resolved", &resume,
2232 N_("synonyms for --continue"),
2233 RESUME_RESOLVED),
Paul Tan99900802015-08-04 21:51:34 +08002234 OPT_CMDMODE(0, "skip", &resume,
2235 N_("skip the current patch"),
2236 RESUME_SKIP),
Paul Tan33388a72015-08-04 21:51:35 +08002237 OPT_CMDMODE(0, "abort", &resume,
2238 N_("restore the original branch and abort the patching operation."),
2239 RESUME_ABORT),
Nguyễn Thái Ngọc Duy65ed8ff2018-02-14 18:16:06 +07002240 OPT_CMDMODE(0, "quit", &resume,
2241 N_("abort the patching operation but keep HEAD where it is."),
2242 RESUME_QUIT),
Nguyễn Thái Ngọc Duy984913a2018-02-11 16:43:26 +07002243 OPT_CMDMODE(0, "show-current-patch", &resume,
2244 N_("show the patch being applied."),
2245 RESUME_SHOW_PATCH),
Paul Tan0cd4bcb2015-08-04 21:51:52 +08002246 OPT_BOOL(0, "committer-date-is-author-date",
2247 &state.committer_date_is_author_date,
2248 N_("lie about committer date")),
Paul Tanf07adb62015-08-04 21:51:51 +08002249 OPT_BOOL(0, "ignore-date", &state.ignore_date,
2250 N_("use current timestamp for author date")),
Paul Tanf1cb96d2015-08-04 21:51:59 +08002251 OPT_RERERE_AUTOUPDATE(&state.allow_rerere_autoupdate),
Paul Tan7e35dac2015-08-04 21:51:53 +08002252 { OPTION_STRING, 'S', "gpg-sign", &state.sign_commit, N_("key-id"),
2253 N_("GPG-sign commits"),
2254 PARSE_OPT_OPTARG, NULL, (intptr_t) "" },
Paul Tan35bdcc52015-08-04 21:51:42 +08002255 OPT_HIDDEN_BOOL(0, "rebasing", &state.rebasing,
2256 N_("(internal use for git-rebase)")),
Paul Tan8c3bd9e2015-08-04 21:51:25 +08002257 OPT_END()
2258 };
Paul Tan73c27792015-08-04 21:51:24 +08002259
Jeff Kingf3a2fff2017-05-30 01:11:23 -04002260 if (argc == 2 && !strcmp(argv[1], "-h"))
2261 usage_with_options(usage, options);
2262
Renee Margaret McConahy434c64d2015-09-30 13:49:44 -04002263 git_config(git_am_config, NULL);
Paul Tan8c3bd9e2015-08-04 21:51:25 +08002264
Jeff King16d26762017-04-20 17:09:35 -04002265 am_state_init(&state);
Paul Tan8c3bd9e2015-08-04 21:51:25 +08002266
Paul Tan852a1712015-08-04 22:08:50 +08002267 in_progress = am_in_progress(&state);
2268 if (in_progress)
2269 am_load(&state);
2270
Paul Tan8c3bd9e2015-08-04 21:51:25 +08002271 argc = parse_options(argc, argv, prefix, options, usage, 0);
2272
Paul Tanc2676cd2015-08-04 21:52:04 +08002273 if (binary >= 0)
2274 fprintf_ln(stderr, _("The -b/--binary option has been a no-op for long time, and\n"
2275 "it will be removed. Please do not use it anymore."));
2276
Paul Tan5e4f9cf2015-08-04 21:52:05 +08002277 /* Ensure a valid committer ident can be constructed */
2278 git_committer_info(IDENT_STRICT);
2279
Nguyễn Thái Ngọc Duye1ff0a32019-01-12 09:13:26 +07002280 if (repo_read_index_preload(the_repository, NULL, 0) < 0)
Paul Tan38a824f2015-08-04 21:51:29 +08002281 die(_("failed to read the index"));
2282
Paul Tan852a1712015-08-04 22:08:50 +08002283 if (in_progress) {
Paul Tan8d185502015-08-04 21:51:36 +08002284 /*
2285 * Catch user error to feed us patches when there is a session
2286 * in progress:
2287 *
2288 * 1. mbox path(s) are provided on the command-line.
2289 * 2. stdin is not a tty: the user is trying to feed us a patch
2290 * from standard input. This is somewhat unreliable -- stdin
2291 * could be /dev/null for example and the caller did not
2292 * intend to feed us a patch but wanted to continue
2293 * unattended.
2294 */
2295 if (argc || (resume == RESUME_FALSE && !isatty(0)))
2296 die(_("previous rebase directory %s still exists but mbox given."),
2297 state.dir);
2298
Paul Tan8c7b1562015-08-04 21:51:33 +08002299 if (resume == RESUME_FALSE)
2300 resume = RESUME_APPLY;
Paul Tanb5e82352015-08-04 22:08:51 +08002301
2302 if (state.signoff == SIGNOFF_EXPLICIT)
2303 am_append_signoff(&state);
Paul Tan8c7b1562015-08-04 21:51:33 +08002304 } else {
Paul Tan11c21772015-08-04 21:51:26 +08002305 struct argv_array paths = ARGV_ARRAY_INIT;
2306 int i;
2307
Paul Tan6d42ac22015-08-04 21:51:44 +08002308 /*
2309 * Handle stray state directory in the independent-run case. In
2310 * the --rebasing case, it is up to the caller to take care of
2311 * stray directories.
2312 */
2313 if (file_exists(state.dir) && !state.rebasing) {
Nguyễn Thái Ngọc Duy65ed8ff2018-02-14 18:16:06 +07002314 if (resume == RESUME_ABORT || resume == RESUME_QUIT) {
Paul Tan6d42ac22015-08-04 21:51:44 +08002315 am_destroy(&state);
2316 am_state_release(&state);
2317 return 0;
2318 }
2319
2320 die(_("Stray %s directory found.\n"
2321 "Use \"git am --abort\" to remove it."),
2322 state.dir);
2323 }
2324
Paul Tan240bfd22015-08-04 21:51:32 +08002325 if (resume)
2326 die(_("Resolve operation not in progress, we are not resuming."));
2327
Paul Tan11c21772015-08-04 21:51:26 +08002328 for (i = 0; i < argc; i++) {
2329 if (is_absolute_path(argv[i]) || !prefix)
2330 argv_array_push(&paths, argv[i]);
2331 else
2332 argv_array_push(&paths, mkpath("%s/%s", prefix, argv[i]));
2333 }
2334
Jeff King6e7baf22019-05-20 08:11:13 -04002335 if (state.interactive && !paths.argc)
2336 die(_("interactive mode requires patches on the command line"));
2337
Paul Tan5d123a42015-08-04 21:51:48 +08002338 am_setup(&state, patch_format, paths.argv, keep_cr);
Paul Tan11c21772015-08-04 21:51:26 +08002339
2340 argv_array_clear(&paths);
2341 }
Paul Tan8c3bd9e2015-08-04 21:51:25 +08002342
Paul Tan240bfd22015-08-04 21:51:32 +08002343 switch (resume) {
2344 case RESUME_FALSE:
Paul Tan8c7b1562015-08-04 21:51:33 +08002345 am_run(&state, 0);
2346 break;
2347 case RESUME_APPLY:
2348 am_run(&state, 1);
Paul Tan240bfd22015-08-04 21:51:32 +08002349 break;
2350 case RESUME_RESOLVED:
2351 am_resolve(&state);
2352 break;
Paul Tan99900802015-08-04 21:51:34 +08002353 case RESUME_SKIP:
2354 am_skip(&state);
2355 break;
Paul Tan33388a72015-08-04 21:51:35 +08002356 case RESUME_ABORT:
2357 am_abort(&state);
2358 break;
Nguyễn Thái Ngọc Duy65ed8ff2018-02-14 18:16:06 +07002359 case RESUME_QUIT:
2360 am_rerere_clear();
2361 am_destroy(&state);
2362 break;
Nguyễn Thái Ngọc Duy984913a2018-02-11 16:43:26 +07002363 case RESUME_SHOW_PATCH:
2364 ret = show_patch(&state);
2365 break;
Paul Tan240bfd22015-08-04 21:51:32 +08002366 default:
Johannes Schindelin033abf92018-05-02 11:38:39 +02002367 BUG("invalid resume value");
Paul Tan240bfd22015-08-04 21:51:32 +08002368 }
Paul Tan8c3bd9e2015-08-04 21:51:25 +08002369
2370 am_state_release(&state);
2371
Nguyễn Thái Ngọc Duy984913a2018-02-11 16:43:26 +07002372 return ret;
Paul Tan73c27792015-08-04 21:51:24 +08002373}