]> git.ipfire.org Git - thirdparty/git.git/blame - sequencer.c
sequencer: handle empty-set cases consistently
[thirdparty/git.git] / sequencer.c
CommitLineData
26ae337b 1#include "cache.h"
b2141fc1 2#include "config.h"
697cc8ef 3#include "lockfile.h"
26ae337b 4#include "sequencer.h"
26ae337b 5#include "dir.h"
043a4492
RR
6#include "object.h"
7#include "commit.h"
8#include "tag.h"
9#include "run-command.h"
10#include "exec_cmd.h"
11#include "utf8.h"
12#include "cache-tree.h"
13#include "diff.h"
14#include "revision.h"
15#include "rerere.h"
16#include "merge-recursive.h"
17#include "refs.h"
b27cfb0d 18#include "argv-array.h"
a1c75762 19#include "quote.h"
967dfd4d 20#include "trailer.h"
56dc3ab0 21#include "log-tree.h"
311af526 22#include "wt-status.h"
c44a4c65 23#include "hashmap.h"
043a4492
RR
24
25#define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
26ae337b 26
5ed75e2a 27const char sign_off_header[] = "Signed-off-by: ";
cd650a4e 28static const char cherry_picked_prefix[] = "(cherry picked from commit ";
5ed75e2a 29
8a2a0f53
JS
30GIT_PATH_FUNC(git_path_seq_dir, "sequencer")
31
32static GIT_PATH_FUNC(git_path_todo_file, "sequencer/todo")
33static GIT_PATH_FUNC(git_path_opts_file, "sequencer/opts")
34static GIT_PATH_FUNC(git_path_head_file, "sequencer/head")
1e41229d 35static GIT_PATH_FUNC(git_path_abort_safety_file, "sequencer/abort-safety")
f932729c 36
84583957
JS
37static GIT_PATH_FUNC(rebase_path, "rebase-merge")
38/*
39 * The file containing rebase commands, comments, and empty lines.
40 * This file is created by "git rebase -i" then edited by the user. As
41 * the lines are processed, they are removed from the front of this
42 * file and written to the tail of 'done'.
43 */
44static GIT_PATH_FUNC(rebase_path_todo, "rebase-merge/git-rebase-todo")
1df6df0c
JS
45/*
46 * The rebase command lines that have already been processed. A line
47 * is moved here when it is first handled, before any associated user
48 * actions.
49 */
50static GIT_PATH_FUNC(rebase_path_done, "rebase-merge/done")
ef80069a
JS
51/*
52 * The file to keep track of how many commands were already processed (e.g.
53 * for the prompt).
54 */
55static GIT_PATH_FUNC(rebase_path_msgnum, "rebase-merge/msgnum");
56/*
57 * The file to keep track of how many commands are to be processed in total
58 * (e.g. for the prompt).
59 */
60static GIT_PATH_FUNC(rebase_path_msgtotal, "rebase-merge/end");
6e98de72
JS
61/*
62 * The commit message that is planned to be used for any changes that
63 * need to be committed following a user interaction.
64 */
65static GIT_PATH_FUNC(rebase_path_message, "rebase-merge/message")
66/*
67 * The file into which is accumulated the suggested commit message for
68 * squash/fixup commands. When the first of a series of squash/fixups
69 * is seen, the file is created and the commit message from the
70 * previous commit and from the first squash/fixup commit are written
71 * to it. The commit message for each subsequent squash/fixup commit
72 * is appended to the file as it is processed.
73 *
74 * The first line of the file is of the form
75 * # This is a combination of $count commits.
76 * where $count is the number of commits whose messages have been
77 * written to the file so far (including the initial "pick" commit).
78 * Each time that a commit message is processed, this line is read and
79 * updated. It is deleted just before the combined commit is made.
80 */
81static GIT_PATH_FUNC(rebase_path_squash_msg, "rebase-merge/message-squash")
82/*
83 * If the current series of squash/fixups has not yet included a squash
84 * command, then this file exists and holds the commit message of the
85 * original "pick" commit. (If the series ends without a "squash"
86 * command, then this can be used as the commit message of the combined
87 * commit without opening the editor.)
88 */
89static GIT_PATH_FUNC(rebase_path_fixup_msg, "rebase-merge/message-fixup")
b5a67045
JS
90/*
91 * A script to set the GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and
92 * GIT_AUTHOR_DATE that will be used for the commit that is currently
93 * being rebased.
94 */
95static GIT_PATH_FUNC(rebase_path_author_script, "rebase-merge/author-script")
56dc3ab0
JS
96/*
97 * When an "edit" rebase command is being processed, the SHA1 of the
98 * commit to be edited is recorded in this file. When "git rebase
99 * --continue" is executed, if there are any staged changes then they
100 * will be amended to the HEAD commit, but only provided the HEAD
101 * commit is still the commit to be edited. When any other rebase
102 * command is processed, this file is deleted.
103 */
104static GIT_PATH_FUNC(rebase_path_amend, "rebase-merge/amend")
105/*
106 * When we stop at a given patch via the "edit" command, this file contains
107 * the abbreviated commit name of the corresponding patch.
108 */
109static GIT_PATH_FUNC(rebase_path_stopped_sha, "rebase-merge/stopped-sha")
25cb8df9
JS
110/*
111 * For the post-rewrite hook, we make a list of rewritten commits and
112 * their new sha1s. The rewritten-pending list keeps the sha1s of
113 * commits that have been processed, but not committed yet,
114 * e.g. because they are waiting for a 'squash' command.
115 */
116static GIT_PATH_FUNC(rebase_path_rewritten_list, "rebase-merge/rewritten-list")
117static GIT_PATH_FUNC(rebase_path_rewritten_pending,
118 "rebase-merge/rewritten-pending")
a1c75762
JS
119/*
120 * The following files are written by git-rebase just after parsing the
121 * command-line (and are only consumed, not modified, by the sequencer).
122 */
123static GIT_PATH_FUNC(rebase_path_gpg_sign_opt, "rebase-merge/gpg_sign_opt")
556907f1
JS
124static GIT_PATH_FUNC(rebase_path_orig_head, "rebase-merge/orig-head")
125static GIT_PATH_FUNC(rebase_path_verbose, "rebase-merge/verbose")
4b83ce9f
JS
126static GIT_PATH_FUNC(rebase_path_head_name, "rebase-merge/head-name")
127static GIT_PATH_FUNC(rebase_path_onto, "rebase-merge/onto")
796c7972 128static GIT_PATH_FUNC(rebase_path_autostash, "rebase-merge/autostash")
ca6c6b45
JS
129static GIT_PATH_FUNC(rebase_path_strategy, "rebase-merge/strategy")
130static GIT_PATH_FUNC(rebase_path_strategy_opts, "rebase-merge/strategy_opts")
9b6d7a62 131static GIT_PATH_FUNC(rebase_path_allow_rerere_autoupdate, "rebase-merge/allow_rerere_autoupdate")
b5a67045 132
b5a67045
JS
133static inline int is_rebase_i(const struct replay_opts *opts)
134{
84583957 135 return opts->action == REPLAY_INTERACTIVE_REBASE;
b5a67045
JS
136}
137
285abf56
JS
138static const char *get_dir(const struct replay_opts *opts)
139{
84583957
JS
140 if (is_rebase_i(opts))
141 return rebase_path();
285abf56
JS
142 return git_path_seq_dir();
143}
144
c0246501
JS
145static const char *get_todo_path(const struct replay_opts *opts)
146{
84583957
JS
147 if (is_rebase_i(opts))
148 return rebase_path_todo();
c0246501
JS
149 return git_path_todo_file();
150}
151
bab4d109
BC
152/*
153 * Returns 0 for non-conforming footer
154 * Returns 1 for conforming footer
155 * Returns 2 when sob exists within conforming footer
156 * Returns 3 when sob exists within conforming footer as last entry
157 */
158static int has_conforming_footer(struct strbuf *sb, struct strbuf *sob,
159 int ignore_footer)
b971e04f 160{
967dfd4d
JT
161 struct trailer_info info;
162 int i;
163 int found_sob = 0, found_sob_last = 0;
b971e04f 164
967dfd4d 165 trailer_info_get(&info, sb->buf);
b971e04f 166
967dfd4d 167 if (info.trailer_start == info.trailer_end)
b971e04f
BC
168 return 0;
169
967dfd4d
JT
170 for (i = 0; i < info.trailer_nr; i++)
171 if (sob && !strncmp(info.trailers[i], sob->buf, sob->len)) {
172 found_sob = 1;
173 if (i == info.trailer_nr - 1)
174 found_sob_last = 1;
175 }
b971e04f 176
967dfd4d 177 trailer_info_release(&info);
bab4d109 178
967dfd4d 179 if (found_sob_last)
bab4d109
BC
180 return 3;
181 if (found_sob)
182 return 2;
b971e04f
BC
183 return 1;
184}
5ed75e2a 185
a1c75762
JS
186static const char *gpg_sign_opt_quoted(struct replay_opts *opts)
187{
188 static struct strbuf buf = STRBUF_INIT;
189
190 strbuf_reset(&buf);
191 if (opts->gpg_sign)
192 sq_quotef(&buf, "-S%s", opts->gpg_sign);
193 return buf.buf;
194}
195
2863584f 196int sequencer_remove_state(struct replay_opts *opts)
26ae337b 197{
285abf56 198 struct strbuf dir = STRBUF_INIT;
03a4e260
JS
199 int i;
200
201 free(opts->gpg_sign);
202 free(opts->strategy);
203 for (i = 0; i < opts->xopts_nr; i++)
204 free(opts->xopts[i]);
205 free(opts->xopts);
26ae337b 206
72d4a9a7 207 strbuf_addstr(&dir, get_dir(opts));
285abf56
JS
208 remove_dir_recursively(&dir, 0);
209 strbuf_release(&dir);
2863584f
JS
210
211 return 0;
26ae337b 212}
043a4492
RR
213
214static const char *action_name(const struct replay_opts *opts)
215{
84583957
JS
216 switch (opts->action) {
217 case REPLAY_REVERT:
218 return N_("revert");
219 case REPLAY_PICK:
220 return N_("cherry-pick");
221 case REPLAY_INTERACTIVE_REBASE:
222 return N_("rebase -i");
223 }
224 die(_("Unknown action: %d"), opts->action);
043a4492
RR
225}
226
043a4492
RR
227struct commit_message {
228 char *parent_label;
7b35eaf8
JK
229 char *label;
230 char *subject;
043a4492
RR
231 const char *message;
232};
233
39755964
JS
234static const char *short_commit_name(struct commit *commit)
235{
236 return find_unique_abbrev(commit->object.oid.hash, DEFAULT_ABBREV);
237}
238
043a4492
RR
239static int get_message(struct commit *commit, struct commit_message *out)
240{
043a4492 241 const char *abbrev, *subject;
7b35eaf8 242 int subject_len;
043a4492 243
7b35eaf8 244 out->message = logmsg_reencode(commit, NULL, get_commit_output_encoding());
39755964 245 abbrev = short_commit_name(commit);
043a4492
RR
246
247 subject_len = find_commit_subject(out->message, &subject);
248
7b35eaf8
JK
249 out->subject = xmemdupz(subject, subject_len);
250 out->label = xstrfmt("%s... %s", abbrev, out->subject);
251 out->parent_label = xstrfmt("parent of %s", out->label);
252
043a4492
RR
253 return 0;
254}
255
d74a4e57 256static void free_message(struct commit *commit, struct commit_message *msg)
043a4492
RR
257{
258 free(msg->parent_label);
7b35eaf8
JK
259 free(msg->label);
260 free(msg->subject);
b66103c3 261 unuse_commit_buffer(commit, msg->message);
043a4492
RR
262}
263
ed727b19 264static void print_advice(int show_hint, struct replay_opts *opts)
043a4492
RR
265{
266 char *msg = getenv("GIT_CHERRY_PICK_HELP");
267
268 if (msg) {
269 fprintf(stderr, "%s\n", msg);
270 /*
41ccfdd9 271 * A conflict has occurred but the porcelain
043a4492
RR
272 * (typically rebase --interactive) wants to take care
273 * of the commit itself so remove CHERRY_PICK_HEAD
274 */
f932729c 275 unlink(git_path_cherry_pick_head());
043a4492
RR
276 return;
277 }
278
ed727b19
PH
279 if (show_hint) {
280 if (opts->no_commit)
281 advise(_("after resolving the conflicts, mark the corrected paths\n"
282 "with 'git add <paths>' or 'git rm <paths>'"));
283 else
284 advise(_("after resolving the conflicts, mark the corrected paths\n"
285 "with 'git add <paths>' or 'git rm <paths>'\n"
286 "and commit the result with 'git commit'"));
287 }
043a4492
RR
288}
289
f56fffef
JS
290static int write_message(const void *buf, size_t len, const char *filename,
291 int append_eol)
043a4492
RR
292{
293 static struct lock_file msg_file;
294
4ef3d8f0
JS
295 int msg_fd = hold_lock_file_for_update(&msg_file, filename, 0);
296 if (msg_fd < 0)
93b3df6f 297 return error_errno(_("could not lock '%s'"), filename);
75871495 298 if (write_in_full(msg_fd, buf, len) < 0) {
4f66c837 299 rollback_lock_file(&msg_file);
93b3df6f 300 return error_errno(_("could not write to '%s'"), filename);
4f66c837 301 }
f56fffef
JS
302 if (append_eol && write(msg_fd, "\n", 1) < 0) {
303 rollback_lock_file(&msg_file);
35871806 304 return error_errno(_("could not write eol to '%s'"), filename);
f56fffef 305 }
4f66c837
JS
306 if (commit_lock_file(&msg_file) < 0) {
307 rollback_lock_file(&msg_file);
93b3df6f 308 return error(_("failed to finalize '%s'."), filename);
4f66c837 309 }
4ef3d8f0
JS
310
311 return 0;
043a4492
RR
312}
313
1dfc84e9
JS
314/*
315 * Reads a file that was presumably written by a shell script, i.e. with an
316 * end-of-line marker that needs to be stripped.
317 *
318 * Note that only the last end-of-line marker is stripped, consistent with the
319 * behavior of "$(cat path)" in a shell script.
320 *
321 * Returns 1 if the file was read, 0 if it could not be read or does not exist.
322 */
323static int read_oneliner(struct strbuf *buf,
324 const char *path, int skip_if_empty)
325{
326 int orig_len = buf->len;
327
328 if (!file_exists(path))
329 return 0;
330
331 if (strbuf_read_file(buf, path, 0) < 0) {
332 warning_errno(_("could not read '%s'"), path);
333 return 0;
334 }
335
336 if (buf->len > orig_len && buf->buf[buf->len - 1] == '\n') {
337 if (--buf->len > orig_len && buf->buf[buf->len - 1] == '\r')
338 --buf->len;
339 buf->buf[buf->len] = '\0';
340 }
341
342 if (skip_if_empty && buf->len == orig_len)
343 return 0;
344
345 return 1;
346}
347
043a4492
RR
348static struct tree *empty_tree(void)
349{
eb0ccfd7 350 return lookup_tree(the_hash_algo->empty_tree);
043a4492
RR
351}
352
353static int error_dirty_index(struct replay_opts *opts)
354{
355 if (read_cache_unmerged())
c28cbc5e 356 return error_resolve_conflict(_(action_name(opts)));
043a4492 357
93b3df6f 358 error(_("your local changes would be overwritten by %s."),
c28cbc5e 359 _(action_name(opts)));
043a4492
RR
360
361 if (advice_commit_before_merge)
93b3df6f 362 advise(_("commit your changes or stash them to proceed."));
043a4492
RR
363 return -1;
364}
365
1e41229d
SB
366static void update_abort_safety_file(void)
367{
368 struct object_id head;
369
370 /* Do nothing on a single-pick */
371 if (!file_exists(git_path_seq_dir()))
372 return;
373
374 if (!get_oid("HEAD", &head))
375 write_file(git_path_abort_safety_file(), "%s", oid_to_hex(&head));
376 else
377 write_file(git_path_abort_safety_file(), "%s", "");
378}
379
ace976b2 380static int fast_forward_to(const struct object_id *to, const struct object_id *from,
eb4be1cb 381 int unborn, struct replay_opts *opts)
043a4492 382{
d668d16c 383 struct ref_transaction *transaction;
eb4be1cb 384 struct strbuf sb = STRBUF_INIT;
d668d16c 385 struct strbuf err = STRBUF_INIT;
043a4492
RR
386
387 read_cache();
db699a8a 388 if (checkout_fast_forward(from, to, 1))
0e408fc3 389 return -1; /* the callee should have complained already */
651ab9f5 390
c28cbc5e 391 strbuf_addf(&sb, _("%s: fast-forward"), _(action_name(opts)));
d668d16c
RS
392
393 transaction = ref_transaction_begin(&err);
394 if (!transaction ||
395 ref_transaction_update(transaction, "HEAD",
89f3bbdd 396 to, unborn ? &null_oid : from,
1d147bdf 397 0, sb.buf, &err) ||
db7516ab 398 ref_transaction_commit(transaction, &err)) {
d668d16c
RS
399 ref_transaction_free(transaction);
400 error("%s", err.buf);
401 strbuf_release(&sb);
402 strbuf_release(&err);
403 return -1;
404 }
651ab9f5 405
eb4be1cb 406 strbuf_release(&sb);
d668d16c
RS
407 strbuf_release(&err);
408 ref_transaction_free(transaction);
1e41229d 409 update_abort_safety_file();
d668d16c 410 return 0;
043a4492
RR
411}
412
75c961b7
JH
413void append_conflicts_hint(struct strbuf *msgbuf)
414{
415 int i;
416
261f315b
JH
417 strbuf_addch(msgbuf, '\n');
418 strbuf_commented_addf(msgbuf, "Conflicts:\n");
75c961b7
JH
419 for (i = 0; i < active_nr;) {
420 const struct cache_entry *ce = active_cache[i++];
421 if (ce_stage(ce)) {
261f315b 422 strbuf_commented_addf(msgbuf, "\t%s\n", ce->name);
75c961b7
JH
423 while (i < active_nr && !strcmp(ce->name,
424 active_cache[i]->name))
425 i++;
426 }
427 }
428}
429
043a4492
RR
430static int do_recursive_merge(struct commit *base, struct commit *next,
431 const char *base_label, const char *next_label,
48be4c62 432 struct object_id *head, struct strbuf *msgbuf,
043a4492
RR
433 struct replay_opts *opts)
434{
435 struct merge_options o;
436 struct tree *result, *next_tree, *base_tree, *head_tree;
03b86647 437 int clean;
03a4e260 438 char **xopt;
043a4492
RR
439 static struct lock_file index_lock;
440
bd588867
PW
441 if (hold_locked_index(&index_lock, LOCK_REPORT_ON_ERROR) < 0)
442 return -1;
043a4492
RR
443
444 read_cache();
445
446 init_merge_options(&o);
447 o.ancestor = base ? base_label : "(empty tree)";
448 o.branch1 = "HEAD";
449 o.branch2 = next ? next_label : "(empty tree)";
62fdb652
JS
450 if (is_rebase_i(opts))
451 o.buffer_output = 2;
9268cf4a 452 o.show_rename_progress = 1;
043a4492
RR
453
454 head_tree = parse_tree_indirect(head);
455 next_tree = next ? next->tree : empty_tree();
456 base_tree = base ? base->tree : empty_tree();
457
458 for (xopt = opts->xopts; xopt != opts->xopts + opts->xopts_nr; xopt++)
459 parse_merge_opt(&o, *xopt);
460
461 clean = merge_trees(&o,
462 head_tree,
463 next_tree, base_tree, &result);
62fdb652
JS
464 if (is_rebase_i(opts) && clean <= 0)
465 fputs(o.obuf.buf, stdout);
548009c0 466 strbuf_release(&o.obuf);
b520abf1 467 diff_warn_rename_limit("merge.renamelimit", o.needed_rename_limit, 0);
f241ff0d
JS
468 if (clean < 0)
469 return clean;
043a4492
RR
470
471 if (active_cache_changed &&
03b86647 472 write_locked_index(&the_index, &index_lock, COMMIT_LOCK))
66f5f6dc
ÆAB
473 /*
474 * TRANSLATORS: %s will be "revert", "cherry-pick" or
84583957
JS
475 * "rebase -i".
476 */
c527b55e 477 return error(_("%s: Unable to write new index file"),
c28cbc5e 478 _(action_name(opts)));
043a4492
RR
479 rollback_lock_file(&index_lock);
480
5ed75e2a 481 if (opts->signoff)
bab4d109 482 append_signoff(msgbuf, 0, 0);
5ed75e2a 483
75c961b7
JH
484 if (!clean)
485 append_conflicts_hint(msgbuf);
043a4492
RR
486
487 return !clean;
488}
489
b27cfb0d
NH
490static int is_index_unchanged(void)
491{
33d66df3 492 struct object_id head_oid;
b27cfb0d
NH
493 struct commit *head_commit;
494
49e61479 495 if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING, &head_oid, NULL))
aee42e1f 496 return error(_("could not resolve HEAD commit"));
b27cfb0d 497
bc83266a 498 head_commit = lookup_commit(&head_oid);
4b580061
NH
499
500 /*
501 * If head_commit is NULL, check_commit, called from
502 * lookup_commit, would have indicated that head_commit is not
503 * a commit object already. parse_commit() will return failure
504 * without further complaints in such a case. Otherwise, if
505 * the commit is invalid, parse_commit() will complain. So
506 * there is nothing for us to say here. Just return failure.
507 */
508 if (parse_commit(head_commit))
509 return -1;
b27cfb0d
NH
510
511 if (!active_cache_tree)
512 active_cache_tree = cache_tree();
513
514 if (!cache_tree_fully_valid(active_cache_tree))
d0cfc3e8 515 if (cache_tree_update(&the_index, 0))
aee42e1f 516 return error(_("unable to update cache tree"));
b27cfb0d 517
e0a92804 518 return !oidcmp(&active_cache_tree->oid,
519 &head_commit->tree->object.oid);
b27cfb0d
NH
520}
521
0473f28a
JS
522static int write_author_script(const char *message)
523{
524 struct strbuf buf = STRBUF_INIT;
525 const char *eol;
526 int res;
527
528 for (;;)
529 if (!*message || starts_with(message, "\n")) {
530missing_author:
531 /* Missing 'author' line? */
532 unlink(rebase_path_author_script());
533 return 0;
534 } else if (skip_prefix(message, "author ", &message))
535 break;
536 else if ((eol = strchr(message, '\n')))
537 message = eol + 1;
538 else
539 goto missing_author;
540
541 strbuf_addstr(&buf, "GIT_AUTHOR_NAME='");
542 while (*message && *message != '\n' && *message != '\r')
543 if (skip_prefix(message, " <", &message))
544 break;
545 else if (*message != '\'')
546 strbuf_addch(&buf, *(message++));
547 else
548 strbuf_addf(&buf, "'\\\\%c'", *(message++));
549 strbuf_addstr(&buf, "'\nGIT_AUTHOR_EMAIL='");
550 while (*message && *message != '\n' && *message != '\r')
551 if (skip_prefix(message, "> ", &message))
552 break;
553 else if (*message != '\'')
554 strbuf_addch(&buf, *(message++));
555 else
556 strbuf_addf(&buf, "'\\\\%c'", *(message++));
557 strbuf_addstr(&buf, "'\nGIT_AUTHOR_DATE='@");
558 while (*message && *message != '\n' && *message != '\r')
559 if (*message != '\'')
560 strbuf_addch(&buf, *(message++));
561 else
562 strbuf_addf(&buf, "'\\\\%c'", *(message++));
563 res = write_message(buf.buf, buf.len, rebase_path_author_script(), 1);
564 strbuf_release(&buf);
565 return res;
566}
567
b5a67045 568/*
a2a20b0d
JS
569 * Read a list of environment variable assignments (such as the author-script
570 * file) into an environment block. Returns -1 on error, 0 otherwise.
b5a67045 571 */
a2a20b0d 572static int read_env_script(struct argv_array *env)
b5a67045
JS
573{
574 struct strbuf script = STRBUF_INIT;
575 int i, count = 0;
a2a20b0d 576 char *p, *p2;
b5a67045
JS
577
578 if (strbuf_read_file(&script, rebase_path_author_script(), 256) <= 0)
a2a20b0d 579 return -1;
b5a67045
JS
580
581 for (p = script.buf; *p; p++)
582 if (skip_prefix(p, "'\\\\''", (const char **)&p2))
583 strbuf_splice(&script, p - script.buf, p2 - p, "'", 1);
584 else if (*p == '\'')
585 strbuf_splice(&script, p-- - script.buf, 1, "", 0);
586 else if (*p == '\n') {
587 *p = '\0';
588 count++;
589 }
590
a2a20b0d
JS
591 for (i = 0, p = script.buf; i < count; i++) {
592 argv_array_push(env, p);
b5a67045
JS
593 p += strlen(p) + 1;
594 }
b5a67045 595
a2a20b0d 596 return 0;
b5a67045
JS
597}
598
791eb870
JS
599static const char staged_changes_advice[] =
600N_("you have staged changes in your working tree\n"
601"If these changes are meant to be squashed into the previous commit, run:\n"
602"\n"
603" git commit --amend %s\n"
604"\n"
605"If they are meant to go into a new commit, run:\n"
606"\n"
607" git commit %s\n"
608"\n"
609"In both cases, once you're done, continue with:\n"
610"\n"
611" git rebase --continue\n");
612
789b3eff
JS
613#define ALLOW_EMPTY (1<<0)
614#define EDIT_MSG (1<<1)
615#define AMEND_MSG (1<<2)
616#define CLEANUP_MSG (1<<3)
b92ff6e8 617#define VERIFY_MSG (1<<4)
789b3eff 618
043a4492
RR
619/*
620 * If we are cherry-pick, and if the merge did not result in
621 * hand-editing, we will hit this commit and inherit the original
622 * author date and name.
b5a67045 623 *
043a4492
RR
624 * If we are revert, or if our cherry-pick results in a hand merge,
625 * we had better say that the current user is responsible for that.
b5a67045
JS
626 *
627 * An exception is when run_git_commit() is called during an
628 * interactive rebase: in that case, we will want to retain the
629 * author metadata.
043a4492 630 */
ac2b0e8f 631static int run_git_commit(const char *defmsg, struct replay_opts *opts,
789b3eff 632 unsigned int flags)
043a4492 633{
07d968ef 634 struct child_process cmd = CHILD_PROCESS_INIT;
17d65f03 635 const char *value;
b27cfb0d 636
07d968ef
JS
637 cmd.git_cmd = 1;
638
b5a67045 639 if (is_rebase_i(opts)) {
789b3eff 640 if (!(flags & EDIT_MSG)) {
9a757c49
JS
641 cmd.stdout_to_stderr = 1;
642 cmd.err = -1;
643 }
644
07d968ef 645 if (read_env_script(&cmd.env_array)) {
a1c75762
JS
646 const char *gpg_opt = gpg_sign_opt_quoted(opts);
647
791eb870
JS
648 return error(_(staged_changes_advice),
649 gpg_opt, gpg_opt);
a1c75762 650 }
b5a67045
JS
651 }
652
07d968ef 653 argv_array_push(&cmd.args, "commit");
043a4492 654
b92ff6e8
JS
655 if (!(flags & VERIFY_MSG))
656 argv_array_push(&cmd.args, "-n");
789b3eff 657 if ((flags & AMEND_MSG))
07d968ef 658 argv_array_push(&cmd.args, "--amend");
3bdd5522 659 if (opts->gpg_sign)
07d968ef 660 argv_array_pushf(&cmd.args, "-S%s", opts->gpg_sign);
043a4492 661 if (opts->signoff)
07d968ef 662 argv_array_push(&cmd.args, "-s");
b5a67045 663 if (defmsg)
07d968ef 664 argv_array_pushl(&cmd.args, "-F", defmsg, NULL);
789b3eff 665 if ((flags & CLEANUP_MSG))
07d968ef 666 argv_array_push(&cmd.args, "--cleanup=strip");
789b3eff 667 if ((flags & EDIT_MSG))
07d968ef 668 argv_array_push(&cmd.args, "-e");
789b3eff 669 else if (!(flags & CLEANUP_MSG) &&
0009426d 670 !opts->signoff && !opts->record_origin &&
b5a67045 671 git_config_get_value("commit.cleanup", &value))
07d968ef 672 argv_array_push(&cmd.args, "--cleanup=verbatim");
b27cfb0d 673
789b3eff 674 if ((flags & ALLOW_EMPTY))
07d968ef 675 argv_array_push(&cmd.args, "--allow-empty");
df478b74 676
4bee9584 677 if (opts->allow_empty_message)
07d968ef 678 argv_array_push(&cmd.args, "--allow-empty-message");
4bee9584 679
9a757c49
JS
680 if (cmd.err == -1) {
681 /* hide stderr on success */
682 struct strbuf buf = STRBUF_INIT;
683 int rc = pipe_command(&cmd,
684 NULL, 0,
685 /* stdout is already redirected */
686 NULL, 0,
687 &buf, 0);
688 if (rc)
689 fputs(buf.buf, stderr);
690 strbuf_release(&buf);
691 return rc;
692 }
b5a67045 693
07d968ef 694 return run_command(&cmd);
b27cfb0d
NH
695}
696
697static int is_original_commit_empty(struct commit *commit)
698{
092bbcdf 699 const struct object_id *ptree_oid;
b27cfb0d
NH
700
701 if (parse_commit(commit))
aee42e1f 702 return error(_("could not parse commit %s"),
f2fd0760 703 oid_to_hex(&commit->object.oid));
b27cfb0d
NH
704 if (commit->parents) {
705 struct commit *parent = commit->parents->item;
706 if (parse_commit(parent))
aee42e1f 707 return error(_("could not parse parent commit %s"),
f2fd0760 708 oid_to_hex(&parent->object.oid));
092bbcdf 709 ptree_oid = &parent->tree->object.oid;
b27cfb0d 710 } else {
eb0ccfd7 711 ptree_oid = the_hash_algo->empty_tree; /* commit is root */
043a4492 712 }
043a4492 713
092bbcdf 714 return !oidcmp(ptree_oid, &commit->tree->object.oid);
043a4492
RR
715}
716
ac2b0e8f
JH
717/*
718 * Do we run "git commit" with "--allow-empty"?
719 */
720static int allow_empty(struct replay_opts *opts, struct commit *commit)
721{
722 int index_unchanged, empty_commit;
723
724 /*
725 * Three cases:
726 *
727 * (1) we do not allow empty at all and error out.
728 *
729 * (2) we allow ones that were initially empty, but
730 * forbid the ones that become empty;
731 *
732 * (3) we allow both.
733 */
734 if (!opts->allow_empty)
735 return 0; /* let "git commit" barf as necessary */
736
737 index_unchanged = is_index_unchanged();
738 if (index_unchanged < 0)
739 return index_unchanged;
740 if (!index_unchanged)
741 return 0; /* we do not have to say --allow-empty */
742
743 if (opts->keep_redundant_commits)
744 return 1;
745
746 empty_commit = is_original_commit_empty(commit);
747 if (empty_commit < 0)
748 return empty_commit;
749 if (!empty_commit)
750 return 0;
751 else
752 return 1;
753}
754
25c43667
JS
755/*
756 * Note that ordering matters in this enum. Not only must it match the mapping
757 * below, it is also divided into several sections that matter. When adding
758 * new commands, make sure you add it in the right section.
759 */
004fefa7 760enum todo_command {
25c43667 761 /* commands that handle commits */
004fefa7 762 TODO_PICK = 0,
25c43667 763 TODO_REVERT,
56dc3ab0 764 TODO_EDIT,
04efc8b5 765 TODO_REWORD,
6e98de72
JS
766 TODO_FIXUP,
767 TODO_SQUASH,
311af526
JS
768 /* commands that do something else than handling a single commit */
769 TODO_EXEC,
25c43667 770 /* commands that do nothing but are counted for reporting progress */
b3fdd581 771 TODO_NOOP,
ac191470
JS
772 TODO_DROP,
773 /* comments (not counted for reporting progress) */
774 TODO_COMMENT
004fefa7
JS
775};
776
414697a9
JS
777static struct {
778 char c;
779 const char *str;
780} todo_command_info[] = {
781 { 'p', "pick" },
782 { 0, "revert" },
783 { 'e', "edit" },
04efc8b5 784 { 'r', "reword" },
414697a9
JS
785 { 'f', "fixup" },
786 { 's', "squash" },
787 { 'x', "exec" },
b3fdd581 788 { 0, "noop" },
ac191470
JS
789 { 'd', "drop" },
790 { 0, NULL }
004fefa7
JS
791};
792
793static const char *command_to_string(const enum todo_command command)
794{
ac191470 795 if (command < TODO_COMMENT)
414697a9 796 return todo_command_info[command].str;
004fefa7
JS
797 die("Unknown command: %d", command);
798}
799
ee5462d6 800static char command_to_char(const enum todo_command command)
d8ae6c84
LB
801{
802 if (command < TODO_COMMENT && todo_command_info[command].c)
803 return todo_command_info[command].c;
804 return comment_line_char;
805}
806
25c43667
JS
807static int is_noop(const enum todo_command command)
808{
b3fdd581 809 return TODO_NOOP <= command;
25c43667 810}
004fefa7 811
6e98de72
JS
812static int is_fixup(enum todo_command command)
813{
814 return command == TODO_FIXUP || command == TODO_SQUASH;
815}
816
817static int update_squash_messages(enum todo_command command,
818 struct commit *commit, struct replay_opts *opts)
819{
820 struct strbuf buf = STRBUF_INIT;
821 int count, res;
822 const char *message, *body;
823
824 if (file_exists(rebase_path_squash_msg())) {
825 struct strbuf header = STRBUF_INIT;
826 char *eol, *p;
827
828 if (strbuf_read_file(&buf, rebase_path_squash_msg(), 2048) <= 0)
829 return error(_("could not read '%s'"),
830 rebase_path_squash_msg());
831
832 p = buf.buf + 1;
833 eol = strchrnul(buf.buf, '\n');
834 if (buf.buf[0] != comment_line_char ||
835 (p += strcspn(p, "0123456789\n")) == eol)
836 return error(_("unexpected 1st line of squash message:"
837 "\n\n\t%.*s"),
838 (int)(eol - buf.buf), buf.buf);
839 count = strtol(p, NULL, 10);
840
841 if (count < 1)
842 return error(_("invalid 1st line of squash message:\n"
843 "\n\t%.*s"),
844 (int)(eol - buf.buf), buf.buf);
845
846 strbuf_addf(&header, "%c ", comment_line_char);
847 strbuf_addf(&header,
848 _("This is a combination of %d commits."), ++count);
849 strbuf_splice(&buf, 0, eol - buf.buf, header.buf, header.len);
850 strbuf_release(&header);
851 } else {
33d66df3 852 struct object_id head;
6e98de72
JS
853 struct commit *head_commit;
854 const char *head_message, *body;
855
33d66df3 856 if (get_oid("HEAD", &head))
6e98de72 857 return error(_("need a HEAD to fixup"));
bc83266a 858 if (!(head_commit = lookup_commit_reference(&head)))
6e98de72
JS
859 return error(_("could not read HEAD"));
860 if (!(head_message = get_commit_buffer(head_commit, NULL)))
861 return error(_("could not read HEAD's commit message"));
862
863 find_commit_subject(head_message, &body);
864 if (write_message(body, strlen(body),
865 rebase_path_fixup_msg(), 0)) {
866 unuse_commit_buffer(head_commit, head_message);
867 return error(_("cannot write '%s'"),
868 rebase_path_fixup_msg());
869 }
870
871 count = 2;
872 strbuf_addf(&buf, "%c ", comment_line_char);
873 strbuf_addf(&buf, _("This is a combination of %d commits."),
874 count);
875 strbuf_addf(&buf, "\n%c ", comment_line_char);
876 strbuf_addstr(&buf, _("This is the 1st commit message:"));
877 strbuf_addstr(&buf, "\n\n");
878 strbuf_addstr(&buf, body);
879
880 unuse_commit_buffer(head_commit, head_message);
881 }
882
883 if (!(message = get_commit_buffer(commit, NULL)))
884 return error(_("could not read commit message of %s"),
885 oid_to_hex(&commit->object.oid));
886 find_commit_subject(message, &body);
887
888 if (command == TODO_SQUASH) {
889 unlink(rebase_path_fixup_msg());
890 strbuf_addf(&buf, "\n%c ", comment_line_char);
891 strbuf_addf(&buf, _("This is the commit message #%d:"), count);
892 strbuf_addstr(&buf, "\n\n");
893 strbuf_addstr(&buf, body);
894 } else if (command == TODO_FIXUP) {
895 strbuf_addf(&buf, "\n%c ", comment_line_char);
896 strbuf_addf(&buf, _("The commit message #%d will be skipped:"),
897 count);
898 strbuf_addstr(&buf, "\n\n");
899 strbuf_add_commented_lines(&buf, body, strlen(body));
900 } else
901 return error(_("unknown command: %d"), command);
902 unuse_commit_buffer(commit, message);
903
904 res = write_message(buf.buf, buf.len, rebase_path_squash_msg(), 0);
905 strbuf_release(&buf);
906 return res;
907}
908
25cb8df9
JS
909static void flush_rewritten_pending(void) {
910 struct strbuf buf = STRBUF_INIT;
092bbcdf 911 struct object_id newoid;
25cb8df9
JS
912 FILE *out;
913
092bbcdf 914 if (strbuf_read_file(&buf, rebase_path_rewritten_pending(), (GIT_MAX_HEXSZ + 1) * 2) > 0 &&
915 !get_oid("HEAD", &newoid) &&
e9d983f1 916 (out = fopen_or_warn(rebase_path_rewritten_list(), "a"))) {
25cb8df9
JS
917 char *bol = buf.buf, *eol;
918
919 while (*bol) {
920 eol = strchrnul(bol, '\n');
921 fprintf(out, "%.*s %s\n", (int)(eol - bol),
092bbcdf 922 bol, oid_to_hex(&newoid));
25cb8df9
JS
923 if (!*eol)
924 break;
925 bol = eol + 1;
926 }
927 fclose(out);
928 unlink(rebase_path_rewritten_pending());
929 }
930 strbuf_release(&buf);
931}
932
933static void record_in_rewritten(struct object_id *oid,
934 enum todo_command next_command) {
e9d983f1 935 FILE *out = fopen_or_warn(rebase_path_rewritten_pending(), "a");
25cb8df9
JS
936
937 if (!out)
938 return;
939
940 fprintf(out, "%s\n", oid_to_hex(oid));
941 fclose(out);
942
943 if (!is_fixup(next_command))
944 flush_rewritten_pending();
945}
946
004fefa7 947static int do_pick_commit(enum todo_command command, struct commit *commit,
6e98de72 948 struct replay_opts *opts, int final_fixup)
043a4492 949{
789b3eff
JS
950 unsigned int flags = opts->edit ? EDIT_MSG : 0;
951 const char *msg_file = opts->edit ? NULL : git_path_merge_msg();
ace976b2 952 struct object_id head;
043a4492
RR
953 struct commit *base, *next, *parent;
954 const char *base_label, *next_label;
d74a4e57 955 struct commit_message msg = { NULL, NULL, NULL, NULL };
043a4492 956 struct strbuf msgbuf = STRBUF_INIT;
789b3eff 957 int res, unborn = 0, allow;
043a4492
RR
958
959 if (opts->no_commit) {
960 /*
961 * We do not intend to commit immediately. We just want to
962 * merge the differences in, so let's compute the tree
963 * that represents the "current" state for merge-recursive
964 * to work on.
965 */
ace976b2 966 if (write_cache_as_tree(head.hash, 0, NULL))
93b3df6f 967 return error(_("your index file is unmerged."));
043a4492 968 } else {
ace976b2 969 unborn = get_oid("HEAD", &head);
334ae397 970 if (unborn)
eb0ccfd7 971 oidcpy(&head, the_hash_algo->empty_tree);
02f2f56b
BW
972 if (index_differs_from(unborn ? EMPTY_TREE_SHA1_HEX : "HEAD",
973 NULL, 0))
043a4492
RR
974 return error_dirty_index(opts);
975 }
976 discard_cache();
977
637666c8 978 if (!commit->parents)
043a4492 979 parent = NULL;
043a4492
RR
980 else if (commit->parents->next) {
981 /* Reverting or cherry-picking a merge commit */
982 int cnt;
983 struct commit_list *p;
984
985 if (!opts->mainline)
93b3df6f 986 return error(_("commit %s is a merge but no -m option was given."),
f2fd0760 987 oid_to_hex(&commit->object.oid));
043a4492
RR
988
989 for (cnt = 1, p = commit->parents;
990 cnt != opts->mainline && p;
991 cnt++)
992 p = p->next;
993 if (cnt != opts->mainline || !p)
93b3df6f 994 return error(_("commit %s does not have parent %d"),
f2fd0760 995 oid_to_hex(&commit->object.oid), opts->mainline);
043a4492
RR
996 parent = p->item;
997 } else if (0 < opts->mainline)
93b3df6f 998 return error(_("mainline was specified but commit %s is not a merge."),
f2fd0760 999 oid_to_hex(&commit->object.oid));
043a4492
RR
1000 else
1001 parent = commit->parents->item;
1002
bcbb68be
JS
1003 if (get_message(commit, &msg) != 0)
1004 return error(_("cannot get commit message for %s"),
1005 oid_to_hex(&commit->object.oid));
1006
6e98de72 1007 if (opts->allow_ff && !is_fixup(command) &&
ace976b2 1008 ((parent && !oidcmp(&parent->object.oid, &head)) ||
bcbb68be
JS
1009 (!parent && unborn))) {
1010 if (is_rebase_i(opts))
1011 write_author_script(msg.message);
ace976b2 1012 res = fast_forward_to(&commit->object.oid, &head, unborn,
bcbb68be
JS
1013 opts);
1014 if (res || command != TODO_REWORD)
1015 goto leave;
5f8f9277 1016 flags |= EDIT_MSG | AMEND_MSG | VERIFY_MSG;
bcbb68be
JS
1017 msg_file = NULL;
1018 goto fast_forward_edit;
1019 }
043a4492 1020 if (parent && parse_commit(parent) < 0)
004fefa7
JS
1021 /* TRANSLATORS: The first %s will be a "todo" command like
1022 "revert" or "pick", the second %s a SHA1. */
043a4492 1023 return error(_("%s: cannot parse parent commit %s"),
004fefa7
JS
1024 command_to_string(command),
1025 oid_to_hex(&parent->object.oid));
043a4492 1026
043a4492
RR
1027 /*
1028 * "commit" is an existing commit. We would want to apply
1029 * the difference it introduces since its first parent "prev"
1030 * on top of the current HEAD if we are cherry-pick. Or the
1031 * reverse of it if we are revert.
1032 */
1033
004fefa7 1034 if (command == TODO_REVERT) {
043a4492
RR
1035 base = commit;
1036 base_label = msg.label;
1037 next = parent;
1038 next_label = msg.parent_label;
1039 strbuf_addstr(&msgbuf, "Revert \"");
1040 strbuf_addstr(&msgbuf, msg.subject);
1041 strbuf_addstr(&msgbuf, "\"\n\nThis reverts commit ");
f2fd0760 1042 strbuf_addstr(&msgbuf, oid_to_hex(&commit->object.oid));
043a4492
RR
1043
1044 if (commit->parents && commit->parents->next) {
1045 strbuf_addstr(&msgbuf, ", reversing\nchanges made to ");
f2fd0760 1046 strbuf_addstr(&msgbuf, oid_to_hex(&parent->object.oid));
043a4492
RR
1047 }
1048 strbuf_addstr(&msgbuf, ".\n");
1049 } else {
1050 const char *p;
1051
1052 base = parent;
1053 base_label = msg.parent_label;
1054 next = commit;
1055 next_label = msg.label;
1056
23aa5142
JS
1057 /* Append the commit log message to msgbuf. */
1058 if (find_commit_subject(msg.message, &p))
1059 strbuf_addstr(&msgbuf, p);
043a4492
RR
1060
1061 if (opts->record_origin) {
44dc738a 1062 strbuf_complete_line(&msgbuf);
bab4d109 1063 if (!has_conforming_footer(&msgbuf, NULL, 0))
b971e04f 1064 strbuf_addch(&msgbuf, '\n');
cd650a4e 1065 strbuf_addstr(&msgbuf, cherry_picked_prefix);
f2fd0760 1066 strbuf_addstr(&msgbuf, oid_to_hex(&commit->object.oid));
043a4492
RR
1067 strbuf_addstr(&msgbuf, ")\n");
1068 }
1069 }
1070
04efc8b5 1071 if (command == TODO_REWORD)
b92ff6e8 1072 flags |= EDIT_MSG | VERIFY_MSG;
04efc8b5 1073 else if (is_fixup(command)) {
6e98de72
JS
1074 if (update_squash_messages(command, commit, opts))
1075 return -1;
789b3eff 1076 flags |= AMEND_MSG;
6e98de72
JS
1077 if (!final_fixup)
1078 msg_file = rebase_path_squash_msg();
1079 else if (file_exists(rebase_path_fixup_msg())) {
789b3eff 1080 flags |= CLEANUP_MSG;
6e98de72
JS
1081 msg_file = rebase_path_fixup_msg();
1082 } else {
ca03e067 1083 const char *dest = git_path_squash_msg();
6e98de72
JS
1084 unlink(dest);
1085 if (copy_file(dest, rebase_path_squash_msg(), 0666))
1086 return error(_("could not rename '%s' to '%s'"),
1087 rebase_path_squash_msg(), dest);
ca03e067 1088 unlink(git_path_merge_msg());
6e98de72 1089 msg_file = dest;
789b3eff 1090 flags |= EDIT_MSG;
6e98de72
JS
1091 }
1092 }
1093
0473f28a
JS
1094 if (is_rebase_i(opts) && write_author_script(msg.message) < 0)
1095 res = -1;
1096 else if (!opts->strategy || !strcmp(opts->strategy, "recursive") || command == TODO_REVERT) {
043a4492 1097 res = do_recursive_merge(base, next, base_label, next_label,
48be4c62 1098 &head, &msgbuf, opts);
f241ff0d
JS
1099 if (res < 0)
1100 return res;
75871495 1101 res |= write_message(msgbuf.buf, msgbuf.len,
f56fffef 1102 git_path_merge_msg(), 0);
043a4492
RR
1103 } else {
1104 struct commit_list *common = NULL;
1105 struct commit_list *remotes = NULL;
1106
75871495 1107 res = write_message(msgbuf.buf, msgbuf.len,
f56fffef 1108 git_path_merge_msg(), 0);
043a4492
RR
1109
1110 commit_list_insert(base, &common);
1111 commit_list_insert(next, &remotes);
03a4e260
JS
1112 res |= try_merge_command(opts->strategy,
1113 opts->xopts_nr, (const char **)opts->xopts,
ace976b2 1114 common, oid_to_hex(&head), remotes);
043a4492
RR
1115 free_commit_list(common);
1116 free_commit_list(remotes);
1117 }
452202c7 1118 strbuf_release(&msgbuf);
043a4492
RR
1119
1120 /*
1121 * If the merge was clean or if it failed due to conflict, we write
1122 * CHERRY_PICK_HEAD for the subsequent invocation of commit to use.
1123 * However, if the merge did not even start, then we don't want to
1124 * write it at all.
1125 */
004fefa7 1126 if (command == TODO_PICK && !opts->no_commit && (res == 0 || res == 1) &&
ae077771 1127 update_ref(NULL, "CHERRY_PICK_HEAD", &commit->object.oid, NULL,
91774afc 1128 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR))
dbfad033 1129 res = -1;
004fefa7 1130 if (command == TODO_REVERT && ((opts->no_commit && res == 0) || res == 1) &&
ae077771 1131 update_ref(NULL, "REVERT_HEAD", &commit->object.oid, NULL,
91774afc 1132 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR))
dbfad033 1133 res = -1;
043a4492
RR
1134
1135 if (res) {
004fefa7 1136 error(command == TODO_REVERT
043a4492
RR
1137 ? _("could not revert %s... %s")
1138 : _("could not apply %s... %s"),
39755964 1139 short_commit_name(commit), msg.subject);
ed727b19 1140 print_advice(res == 1, opts);
043a4492 1141 rerere(opts->allow_rerere_auto);
c8d1351d 1142 goto leave;
043a4492
RR
1143 }
1144
c8d1351d 1145 allow = allow_empty(opts, commit);
706728a3
FC
1146 if (allow < 0) {
1147 res = allow;
1148 goto leave;
789b3eff
JS
1149 } else if (allow)
1150 flags |= ALLOW_EMPTY;
c8d1351d 1151 if (!opts->no_commit)
bcbb68be 1152fast_forward_edit:
789b3eff 1153 res = run_git_commit(msg_file, opts, flags);
6e98de72
JS
1154
1155 if (!res && final_fixup) {
1156 unlink(rebase_path_fixup_msg());
1157 unlink(rebase_path_squash_msg());
1158 }
c8d1351d
FC
1159
1160leave:
d74a4e57 1161 free_message(commit, &msg);
1e41229d 1162 update_abort_safety_file();
043a4492
RR
1163
1164 return res;
1165}
1166
c3e8618c 1167static int prepare_revs(struct replay_opts *opts)
043a4492 1168{
a73e22e9
MZ
1169 /*
1170 * picking (but not reverting) ranges (but not individual revisions)
1171 * should be done in reverse
1172 */
1173 if (opts->action == REPLAY_PICK && !opts->revs->no_walk)
043a4492
RR
1174 opts->revs->reverse ^= 1;
1175
1176 if (prepare_revision_walk(opts->revs))
c3e8618c 1177 return error(_("revision walk setup failed"));
043a4492 1178
c3e8618c 1179 return 0;
043a4492
RR
1180}
1181
0d9c6dc9 1182static int read_and_refresh_cache(struct replay_opts *opts)
043a4492
RR
1183{
1184 static struct lock_file index_lock;
1185 int index_fd = hold_locked_index(&index_lock, 0);
49fb937e
JS
1186 if (read_index_preload(&the_index, NULL) < 0) {
1187 rollback_lock_file(&index_lock);
0d9c6dc9 1188 return error(_("git %s: failed to read the index"),
c28cbc5e 1189 _(action_name(opts)));
49fb937e 1190 }
043a4492 1191 refresh_index(&the_index, REFRESH_QUIET|REFRESH_UNMERGED, NULL, NULL, NULL);
33c297aa 1192 if (the_index.cache_changed && index_fd >= 0) {
49fb937e 1193 if (write_locked_index(&the_index, &index_lock, COMMIT_LOCK)) {
0d9c6dc9 1194 return error(_("git %s: failed to refresh the index"),
c28cbc5e 1195 _(action_name(opts)));
49fb937e 1196 }
043a4492
RR
1197 }
1198 rollback_lock_file(&index_lock);
0d9c6dc9 1199 return 0;
043a4492
RR
1200}
1201
004fefa7
JS
1202struct todo_item {
1203 enum todo_command command;
1204 struct commit *commit;
c22f7dfb
JS
1205 const char *arg;
1206 int arg_len;
004fefa7
JS
1207 size_t offset_in_buf;
1208};
1209
1210struct todo_list {
1211 struct strbuf buf;
1212 struct todo_item *items;
1213 int nr, alloc, current;
968492e4 1214 int done_nr, total_nr;
54fd3243 1215 struct stat_data stat;
004fefa7
JS
1216};
1217
1218#define TODO_LIST_INIT { STRBUF_INIT }
1219
1220static void todo_list_release(struct todo_list *todo_list)
043a4492 1221{
004fefa7 1222 strbuf_release(&todo_list->buf);
6a83d902 1223 FREE_AND_NULL(todo_list->items);
004fefa7
JS
1224 todo_list->nr = todo_list->alloc = 0;
1225}
043a4492 1226
004fefa7
JS
1227static struct todo_item *append_new_todo(struct todo_list *todo_list)
1228{
1229 ALLOC_GROW(todo_list->items, todo_list->nr + 1, todo_list->alloc);
1230 return todo_list->items + todo_list->nr++;
043a4492
RR
1231}
1232
004fefa7 1233static int parse_insn_line(struct todo_item *item, const char *bol, char *eol)
043a4492 1234{
1e43ed98 1235 struct object_id commit_oid;
043a4492 1236 char *end_of_object_name;
004fefa7
JS
1237 int i, saved, status, padding;
1238
8f8550b3
JS
1239 /* left-trim */
1240 bol += strspn(bol, " \t");
1241
25c43667 1242 if (bol == eol || *bol == '\r' || *bol == comment_line_char) {
ac191470 1243 item->command = TODO_COMMENT;
25c43667
JS
1244 item->commit = NULL;
1245 item->arg = bol;
1246 item->arg_len = eol - bol;
1247 return 0;
1248 }
1249
ac191470 1250 for (i = 0; i < TODO_COMMENT; i++)
414697a9
JS
1251 if (skip_prefix(bol, todo_command_info[i].str, &bol)) {
1252 item->command = i;
1253 break;
1254 } else if (bol[1] == ' ' && *bol == todo_command_info[i].c) {
1255 bol++;
004fefa7
JS
1256 item->command = i;
1257 break;
1258 }
ac191470 1259 if (i >= TODO_COMMENT)
004fefa7 1260 return -1;
043a4492 1261
66afa24f
JS
1262 /* Eat up extra spaces/ tabs before object name */
1263 padding = strspn(bol, " \t");
1264 bol += padding;
1265
25c43667 1266 if (item->command == TODO_NOOP) {
66afa24f
JS
1267 if (bol != eol)
1268 return error(_("%s does not accept arguments: '%s'"),
1269 command_to_string(item->command), bol);
25c43667
JS
1270 item->commit = NULL;
1271 item->arg = bol;
1272 item->arg_len = eol - bol;
1273 return 0;
1274 }
1275
043a4492 1276 if (!padding)
66afa24f
JS
1277 return error(_("missing arguments for %s"),
1278 command_to_string(item->command));
043a4492 1279
311af526 1280 if (item->command == TODO_EXEC) {
7dcbb3cb 1281 item->commit = NULL;
311af526
JS
1282 item->arg = bol;
1283 item->arg_len = (int)(eol - bol);
1284 return 0;
1285 }
1286
004fefa7 1287 end_of_object_name = (char *) bol + strcspn(bol, " \t\n");
043a4492
RR
1288 saved = *end_of_object_name;
1289 *end_of_object_name = '\0';
1e43ed98 1290 status = get_oid(bol, &commit_oid);
043a4492
RR
1291 *end_of_object_name = saved;
1292
c22f7dfb
JS
1293 item->arg = end_of_object_name + strspn(end_of_object_name, " \t");
1294 item->arg_len = (int)(eol - item->arg);
1295
043a4492 1296 if (status < 0)
004fefa7 1297 return -1;
043a4492 1298
bc83266a 1299 item->commit = lookup_commit_reference(&commit_oid);
004fefa7 1300 return !item->commit;
043a4492
RR
1301}
1302
004fefa7 1303static int parse_insn_buffer(char *buf, struct todo_list *todo_list)
043a4492 1304{
004fefa7
JS
1305 struct todo_item *item;
1306 char *p = buf, *next_p;
6e98de72 1307 int i, res = 0, fixup_okay = file_exists(rebase_path_done());
043a4492 1308
004fefa7 1309 for (i = 1; *p; i++, p = next_p) {
043a4492 1310 char *eol = strchrnul(p, '\n');
004fefa7
JS
1311
1312 next_p = *eol ? eol + 1 /* skip LF */ : eol;
1313
6307041d
JS
1314 if (p != eol && eol[-1] == '\r')
1315 eol--; /* strip Carriage Return */
1316
004fefa7
JS
1317 item = append_new_todo(todo_list);
1318 item->offset_in_buf = p - todo_list->buf.buf;
1319 if (parse_insn_line(item, p, eol)) {
93b3df6f 1320 res = error(_("invalid line %d: %.*s"),
004fefa7 1321 i, (int)(eol - p), p);
6e98de72 1322 item->command = TODO_NOOP;
004fefa7 1323 }
6e98de72
JS
1324
1325 if (fixup_okay)
1326 ; /* do nothing */
1327 else if (is_fixup(item->command))
1328 return error(_("cannot '%s' without a previous commit"),
1329 command_to_string(item->command));
1330 else if (!is_noop(item->command))
1331 fixup_okay = 1;
043a4492 1332 }
52865279 1333
004fefa7 1334 return res;
043a4492
RR
1335}
1336
968492e4
JS
1337static int count_commands(struct todo_list *todo_list)
1338{
1339 int count = 0, i;
1340
1341 for (i = 0; i < todo_list->nr; i++)
1342 if (todo_list->items[i].command != TODO_COMMENT)
1343 count++;
1344
1345 return count;
1346}
1347
004fefa7 1348static int read_populate_todo(struct todo_list *todo_list,
043a4492
RR
1349 struct replay_opts *opts)
1350{
54fd3243 1351 struct stat st;
c0246501 1352 const char *todo_file = get_todo_path(opts);
043a4492
RR
1353 int fd, res;
1354
004fefa7 1355 strbuf_reset(&todo_list->buf);
c0246501 1356 fd = open(todo_file, O_RDONLY);
043a4492 1357 if (fd < 0)
93b3df6f 1358 return error_errno(_("could not open '%s'"), todo_file);
004fefa7 1359 if (strbuf_read(&todo_list->buf, fd, 0) < 0) {
043a4492 1360 close(fd);
93b3df6f 1361 return error(_("could not read '%s'."), todo_file);
043a4492
RR
1362 }
1363 close(fd);
1364
54fd3243
SH
1365 res = stat(todo_file, &st);
1366 if (res)
1367 return error(_("could not stat '%s'"), todo_file);
1368 fill_stat_data(&todo_list->stat, &st);
1369
004fefa7 1370 res = parse_insn_buffer(todo_list->buf.buf, todo_list);
27fdbb96
JS
1371 if (res) {
1372 if (is_rebase_i(opts))
1373 return error(_("please fix this using "
1374 "'git rebase --edit-todo'."));
93b3df6f 1375 return error(_("unusable instruction sheet: '%s'"), todo_file);
27fdbb96 1376 }
2eeaf1b3 1377
52865279
JS
1378 if (!todo_list->nr &&
1379 (!is_rebase_i(opts) || !file_exists(rebase_path_done())))
1380 return error(_("no commits parsed."));
1381
2eeaf1b3 1382 if (!is_rebase_i(opts)) {
004fefa7
JS
1383 enum todo_command valid =
1384 opts->action == REPLAY_PICK ? TODO_PICK : TODO_REVERT;
1385 int i;
1386
1387 for (i = 0; i < todo_list->nr; i++)
1388 if (valid == todo_list->items[i].command)
1389 continue;
1390 else if (valid == TODO_PICK)
93b3df6f 1391 return error(_("cannot cherry-pick during a revert."));
004fefa7 1392 else
93b3df6f 1393 return error(_("cannot revert during a cherry-pick."));
004fefa7
JS
1394 }
1395
968492e4
JS
1396 if (is_rebase_i(opts)) {
1397 struct todo_list done = TODO_LIST_INIT;
e9d983f1 1398 FILE *f = fopen_or_warn(rebase_path_msgtotal(), "w");
968492e4
JS
1399
1400 if (strbuf_read_file(&done.buf, rebase_path_done(), 0) > 0 &&
1401 !parse_insn_buffer(done.buf.buf, &done))
1402 todo_list->done_nr = count_commands(&done);
1403 else
1404 todo_list->done_nr = 0;
1405
1406 todo_list->total_nr = todo_list->done_nr
1407 + count_commands(todo_list);
968492e4 1408 todo_list_release(&done);
ef80069a
JS
1409
1410 if (f) {
1411 fprintf(f, "%d\n", todo_list->total_nr);
1412 fclose(f);
1413 }
968492e4
JS
1414 }
1415
0ae42a03 1416 return 0;
043a4492
RR
1417}
1418
03a4e260
JS
1419static int git_config_string_dup(char **dest,
1420 const char *var, const char *value)
1421{
1422 if (!value)
1423 return config_error_nonbool(var);
1424 free(*dest);
1425 *dest = xstrdup(value);
1426 return 0;
1427}
1428
043a4492
RR
1429static int populate_opts_cb(const char *key, const char *value, void *data)
1430{
1431 struct replay_opts *opts = data;
1432 int error_flag = 1;
1433
1434 if (!value)
1435 error_flag = 0;
1436 else if (!strcmp(key, "options.no-commit"))
1437 opts->no_commit = git_config_bool_or_int(key, value, &error_flag);
1438 else if (!strcmp(key, "options.edit"))
1439 opts->edit = git_config_bool_or_int(key, value, &error_flag);
1440 else if (!strcmp(key, "options.signoff"))
1441 opts->signoff = git_config_bool_or_int(key, value, &error_flag);
1442 else if (!strcmp(key, "options.record-origin"))
1443 opts->record_origin = git_config_bool_or_int(key, value, &error_flag);
1444 else if (!strcmp(key, "options.allow-ff"))
1445 opts->allow_ff = git_config_bool_or_int(key, value, &error_flag);
1446 else if (!strcmp(key, "options.mainline"))
1447 opts->mainline = git_config_int(key, value);
1448 else if (!strcmp(key, "options.strategy"))
03a4e260 1449 git_config_string_dup(&opts->strategy, key, value);
3253553e 1450 else if (!strcmp(key, "options.gpg-sign"))
03a4e260 1451 git_config_string_dup(&opts->gpg_sign, key, value);
043a4492
RR
1452 else if (!strcmp(key, "options.strategy-option")) {
1453 ALLOC_GROW(opts->xopts, opts->xopts_nr + 1, opts->xopts_alloc);
1454 opts->xopts[opts->xopts_nr++] = xstrdup(value);
8d8cb4b0
PW
1455 } else if (!strcmp(key, "options.allow-rerere-auto"))
1456 opts->allow_rerere_auto =
1457 git_config_bool_or_int(key, value, &error_flag) ?
1458 RERERE_AUTOUPDATE : RERERE_NOAUTOUPDATE;
1459 else
93b3df6f 1460 return error(_("invalid key: %s"), key);
043a4492
RR
1461
1462 if (!error_flag)
93b3df6f 1463 return error(_("invalid value for %s: %s"), key, value);
043a4492
RR
1464
1465 return 0;
1466}
1467
ca6c6b45
JS
1468static void read_strategy_opts(struct replay_opts *opts, struct strbuf *buf)
1469{
1470 int i;
1471
1472 strbuf_reset(buf);
1473 if (!read_oneliner(buf, rebase_path_strategy(), 0))
1474 return;
1475 opts->strategy = strbuf_detach(buf, NULL);
1476 if (!read_oneliner(buf, rebase_path_strategy_opts(), 0))
1477 return;
1478
1479 opts->xopts_nr = split_cmdline(buf->buf, (const char ***)&opts->xopts);
1480 for (i = 0; i < opts->xopts_nr; i++) {
1481 const char *arg = opts->xopts[i];
1482
1483 skip_prefix(arg, "--", &arg);
1484 opts->xopts[i] = xstrdup(arg);
1485 }
1486}
1487
5adf9bdc 1488static int read_populate_opts(struct replay_opts *opts)
043a4492 1489{
a1c75762
JS
1490 if (is_rebase_i(opts)) {
1491 struct strbuf buf = STRBUF_INIT;
1492
1493 if (read_oneliner(&buf, rebase_path_gpg_sign_opt(), 1)) {
1494 if (!starts_with(buf.buf, "-S"))
1495 strbuf_reset(&buf);
1496 else {
1497 free(opts->gpg_sign);
1498 opts->gpg_sign = xstrdup(buf.buf + 2);
1499 }
9b6d7a62
PW
1500 strbuf_reset(&buf);
1501 }
1502
1503 if (read_oneliner(&buf, rebase_path_allow_rerere_autoupdate(), 1)) {
1504 if (!strcmp(buf.buf, "--rerere-autoupdate"))
1505 opts->allow_rerere_auto = RERERE_AUTOUPDATE;
1506 else if (!strcmp(buf.buf, "--no-rerere-autoupdate"))
1507 opts->allow_rerere_auto = RERERE_NOAUTOUPDATE;
1508 strbuf_reset(&buf);
a1c75762 1509 }
a1c75762 1510
556907f1
JS
1511 if (file_exists(rebase_path_verbose()))
1512 opts->verbose = 1;
1513
ca6c6b45
JS
1514 read_strategy_opts(opts, &buf);
1515 strbuf_release(&buf);
1516
b5a67045 1517 return 0;
a1c75762 1518 }
b5a67045 1519
f932729c 1520 if (!file_exists(git_path_opts_file()))
0d00da7b
JS
1521 return 0;
1522 /*
1523 * The function git_parse_source(), called from git_config_from_file(),
1524 * may die() in case of a syntactically incorrect file. We do not care
1525 * about this case, though, because we wrote that file ourselves, so we
1526 * are pretty certain that it is syntactically correct.
1527 */
5adf9bdc 1528 if (git_config_from_file(populate_opts_cb, git_path_opts_file(), opts) < 0)
93b3df6f 1529 return error(_("malformed options sheet: '%s'"),
0d00da7b
JS
1530 git_path_opts_file());
1531 return 0;
043a4492
RR
1532}
1533
004fefa7 1534static int walk_revs_populate_todo(struct todo_list *todo_list,
043a4492
RR
1535 struct replay_opts *opts)
1536{
004fefa7
JS
1537 enum todo_command command = opts->action == REPLAY_PICK ?
1538 TODO_PICK : TODO_REVERT;
414697a9 1539 const char *command_string = todo_command_info[command].str;
043a4492 1540 struct commit *commit;
043a4492 1541
34b0528b
JS
1542 if (prepare_revs(opts))
1543 return -1;
043a4492 1544
004fefa7
JS
1545 while ((commit = get_revision(opts->revs))) {
1546 struct todo_item *item = append_new_todo(todo_list);
1547 const char *commit_buffer = get_commit_buffer(commit, NULL);
1548 const char *subject;
1549 int subject_len;
1550
1551 item->command = command;
1552 item->commit = commit;
c22f7dfb
JS
1553 item->arg = NULL;
1554 item->arg_len = 0;
004fefa7
JS
1555 item->offset_in_buf = todo_list->buf.len;
1556 subject_len = find_commit_subject(commit_buffer, &subject);
1557 strbuf_addf(&todo_list->buf, "%s %s %.*s\n", command_string,
1558 short_commit_name(commit), subject_len, subject);
1559 unuse_commit_buffer(commit, commit_buffer);
1560 }
8530c739
JK
1561
1562 if (!todo_list->nr)
1563 return error(_("empty commit set passed"));
1564
34b0528b 1565 return 0;
043a4492
RR
1566}
1567
1568static int create_seq_dir(void)
1569{
f932729c 1570 if (file_exists(git_path_seq_dir())) {
043a4492
RR
1571 error(_("a cherry-pick or revert is already in progress"));
1572 advise(_("try \"git cherry-pick (--continue | --quit | --abort)\""));
1573 return -1;
a70d8f80 1574 } else if (mkdir(git_path_seq_dir(), 0777) < 0)
93b3df6f 1575 return error_errno(_("could not create sequencer directory '%s'"),
f6e82b0d 1576 git_path_seq_dir());
043a4492
RR
1577 return 0;
1578}
1579
311fd397 1580static int save_head(const char *head)
043a4492 1581{
043a4492
RR
1582 static struct lock_file head_lock;
1583 struct strbuf buf = STRBUF_INIT;
1584 int fd;
ed3f9a12 1585 ssize_t written;
043a4492 1586
311fd397
JS
1587 fd = hold_lock_file_for_update(&head_lock, git_path_head_file(), 0);
1588 if (fd < 0) {
1589 rollback_lock_file(&head_lock);
93b3df6f 1590 return error_errno(_("could not lock HEAD"));
311fd397 1591 }
043a4492 1592 strbuf_addf(&buf, "%s\n", head);
ed3f9a12
RS
1593 written = write_in_full(fd, buf.buf, buf.len);
1594 strbuf_release(&buf);
1595 if (written < 0) {
311fd397 1596 rollback_lock_file(&head_lock);
93b3df6f 1597 return error_errno(_("could not write to '%s'"),
311fd397
JS
1598 git_path_head_file());
1599 }
1600 if (commit_lock_file(&head_lock) < 0) {
1601 rollback_lock_file(&head_lock);
93b3df6f 1602 return error(_("failed to finalize '%s'."), git_path_head_file());
311fd397
JS
1603 }
1604 return 0;
043a4492
RR
1605}
1606
1e41229d
SB
1607static int rollback_is_safe(void)
1608{
1609 struct strbuf sb = STRBUF_INIT;
1610 struct object_id expected_head, actual_head;
1611
1612 if (strbuf_read_file(&sb, git_path_abort_safety_file(), 0) >= 0) {
1613 strbuf_trim(&sb);
1614 if (get_oid_hex(sb.buf, &expected_head)) {
1615 strbuf_release(&sb);
1616 die(_("could not parse %s"), git_path_abort_safety_file());
1617 }
1618 strbuf_release(&sb);
1619 }
1620 else if (errno == ENOENT)
1621 oidclr(&expected_head);
1622 else
1623 die_errno(_("could not read '%s'"), git_path_abort_safety_file());
1624
1625 if (get_oid("HEAD", &actual_head))
1626 oidclr(&actual_head);
1627
1628 return !oidcmp(&actual_head, &expected_head);
1629}
1630
092bbcdf 1631static int reset_for_rollback(const struct object_id *oid)
043a4492
RR
1632{
1633 const char *argv[4]; /* reset --merge <arg> + NULL */
1e41229d 1634
043a4492
RR
1635 argv[0] = "reset";
1636 argv[1] = "--merge";
092bbcdf 1637 argv[2] = oid_to_hex(oid);
043a4492
RR
1638 argv[3] = NULL;
1639 return run_command_v_opt(argv, RUN_GIT_CMD);
1640}
1641
1642static int rollback_single_pick(void)
1643{
092bbcdf 1644 struct object_id head_oid;
043a4492 1645
f932729c
JK
1646 if (!file_exists(git_path_cherry_pick_head()) &&
1647 !file_exists(git_path_revert_head()))
043a4492 1648 return error(_("no cherry-pick or revert in progress"));
34c290a6 1649 if (read_ref_full("HEAD", 0, &head_oid, NULL))
043a4492 1650 return error(_("cannot resolve HEAD"));
092bbcdf 1651 if (is_null_oid(&head_oid))
043a4492 1652 return error(_("cannot abort from a branch yet to be born"));
092bbcdf 1653 return reset_for_rollback(&head_oid);
043a4492
RR
1654}
1655
2863584f 1656int sequencer_rollback(struct replay_opts *opts)
043a4492 1657{
043a4492 1658 FILE *f;
092bbcdf 1659 struct object_id oid;
043a4492 1660 struct strbuf buf = STRBUF_INIT;
092bbcdf 1661 const char *p;
043a4492 1662
f932729c 1663 f = fopen(git_path_head_file(), "r");
043a4492
RR
1664 if (!f && errno == ENOENT) {
1665 /*
1666 * There is no multiple-cherry-pick in progress.
1667 * If CHERRY_PICK_HEAD or REVERT_HEAD indicates
1668 * a single-cherry-pick in progress, abort that.
1669 */
1670 return rollback_single_pick();
1671 }
1672 if (!f)
f7ed1953 1673 return error_errno(_("cannot open '%s'"), git_path_head_file());
8f309aeb 1674 if (strbuf_getline_lf(&buf, f)) {
f7ed1953 1675 error(_("cannot read '%s': %s"), git_path_head_file(),
f932729c 1676 ferror(f) ? strerror(errno) : _("unexpected end of file"));
043a4492
RR
1677 fclose(f);
1678 goto fail;
1679 }
1680 fclose(f);
092bbcdf 1681 if (parse_oid_hex(buf.buf, &oid, &p) || *p != '\0') {
043a4492 1682 error(_("stored pre-cherry-pick HEAD file '%s' is corrupt"),
f932729c 1683 git_path_head_file());
043a4492
RR
1684 goto fail;
1685 }
092bbcdf 1686 if (is_null_oid(&oid)) {
0f974e21
MG
1687 error(_("cannot abort from a branch yet to be born"));
1688 goto fail;
1689 }
1e41229d
SB
1690
1691 if (!rollback_is_safe()) {
1692 /* Do not error, just do not rollback */
1693 warning(_("You seem to have moved HEAD. "
1694 "Not rewinding, check your HEAD!"));
1695 } else
092bbcdf 1696 if (reset_for_rollback(&oid))
043a4492 1697 goto fail;
043a4492 1698 strbuf_release(&buf);
2863584f 1699 return sequencer_remove_state(opts);
043a4492
RR
1700fail:
1701 strbuf_release(&buf);
1702 return -1;
1703}
1704
004fefa7 1705static int save_todo(struct todo_list *todo_list, struct replay_opts *opts)
043a4492 1706{
043a4492 1707 static struct lock_file todo_lock;
004fefa7
JS
1708 const char *todo_path = get_todo_path(opts);
1709 int next = todo_list->current, offset, fd;
043a4492 1710
84583957
JS
1711 /*
1712 * rebase -i writes "git-rebase-todo" without the currently executing
1713 * command, appending it to "done" instead.
1714 */
1715 if (is_rebase_i(opts))
1716 next++;
1717
004fefa7 1718 fd = hold_lock_file_for_update(&todo_lock, todo_path, 0);
221675de 1719 if (fd < 0)
93b3df6f 1720 return error_errno(_("could not lock '%s'"), todo_path);
004fefa7
JS
1721 offset = next < todo_list->nr ?
1722 todo_list->items[next].offset_in_buf : todo_list->buf.len;
1723 if (write_in_full(fd, todo_list->buf.buf + offset,
1724 todo_list->buf.len - offset) < 0)
93b3df6f 1725 return error_errno(_("could not write to '%s'"), todo_path);
004fefa7 1726 if (commit_lock_file(&todo_lock) < 0)
93b3df6f 1727 return error(_("failed to finalize '%s'."), todo_path);
1df6df0c
JS
1728
1729 if (is_rebase_i(opts)) {
1730 const char *done_path = rebase_path_done();
1731 int fd = open(done_path, O_CREAT | O_WRONLY | O_APPEND, 0666);
1732 int prev_offset = !next ? 0 :
1733 todo_list->items[next - 1].offset_in_buf;
1734
1735 if (fd >= 0 && offset > prev_offset &&
1736 write_in_full(fd, todo_list->buf.buf + prev_offset,
1737 offset - prev_offset) < 0) {
1738 close(fd);
1739 return error_errno(_("could not write to '%s'"),
1740 done_path);
1741 }
1742 if (fd >= 0)
1743 close(fd);
1744 }
221675de 1745 return 0;
043a4492
RR
1746}
1747
88d5a271 1748static int save_opts(struct replay_opts *opts)
043a4492 1749{
f932729c 1750 const char *opts_file = git_path_opts_file();
88d5a271 1751 int res = 0;
043a4492
RR
1752
1753 if (opts->no_commit)
88d5a271 1754 res |= git_config_set_in_file_gently(opts_file, "options.no-commit", "true");
043a4492 1755 if (opts->edit)
88d5a271 1756 res |= git_config_set_in_file_gently(opts_file, "options.edit", "true");
043a4492 1757 if (opts->signoff)
88d5a271 1758 res |= git_config_set_in_file_gently(opts_file, "options.signoff", "true");
043a4492 1759 if (opts->record_origin)
88d5a271 1760 res |= git_config_set_in_file_gently(opts_file, "options.record-origin", "true");
043a4492 1761 if (opts->allow_ff)
88d5a271 1762 res |= git_config_set_in_file_gently(opts_file, "options.allow-ff", "true");
043a4492
RR
1763 if (opts->mainline) {
1764 struct strbuf buf = STRBUF_INIT;
1765 strbuf_addf(&buf, "%d", opts->mainline);
88d5a271 1766 res |= git_config_set_in_file_gently(opts_file, "options.mainline", buf.buf);
043a4492
RR
1767 strbuf_release(&buf);
1768 }
1769 if (opts->strategy)
88d5a271 1770 res |= git_config_set_in_file_gently(opts_file, "options.strategy", opts->strategy);
3253553e 1771 if (opts->gpg_sign)
88d5a271 1772 res |= git_config_set_in_file_gently(opts_file, "options.gpg-sign", opts->gpg_sign);
043a4492
RR
1773 if (opts->xopts) {
1774 int i;
1775 for (i = 0; i < opts->xopts_nr; i++)
88d5a271 1776 res |= git_config_set_multivar_in_file_gently(opts_file,
043a4492
RR
1777 "options.strategy-option",
1778 opts->xopts[i], "^$", 0);
1779 }
8d8cb4b0
PW
1780 if (opts->allow_rerere_auto)
1781 res |= git_config_set_in_file_gently(opts_file, "options.allow-rerere-auto",
1782 opts->allow_rerere_auto == RERERE_AUTOUPDATE ?
1783 "true" : "false");
88d5a271 1784 return res;
043a4492
RR
1785}
1786
56dc3ab0
JS
1787static int make_patch(struct commit *commit, struct replay_opts *opts)
1788{
1789 struct strbuf buf = STRBUF_INIT;
1790 struct rev_info log_tree_opt;
1791 const char *subject, *p;
1792 int res = 0;
1793
1794 p = short_commit_name(commit);
1795 if (write_message(p, strlen(p), rebase_path_stopped_sha(), 1) < 0)
1796 return -1;
1797
1798 strbuf_addf(&buf, "%s/patch", get_dir(opts));
1799 memset(&log_tree_opt, 0, sizeof(log_tree_opt));
1800 init_revisions(&log_tree_opt, NULL);
1801 log_tree_opt.abbrev = 0;
1802 log_tree_opt.diff = 1;
1803 log_tree_opt.diffopt.output_format = DIFF_FORMAT_PATCH;
1804 log_tree_opt.disable_stdin = 1;
1805 log_tree_opt.no_commit_id = 1;
1806 log_tree_opt.diffopt.file = fopen(buf.buf, "w");
1807 log_tree_opt.diffopt.use_color = GIT_COLOR_NEVER;
1808 if (!log_tree_opt.diffopt.file)
1809 res |= error_errno(_("could not open '%s'"), buf.buf);
1810 else {
1811 res |= log_tree_commit(&log_tree_opt, commit);
1812 fclose(log_tree_opt.diffopt.file);
1813 }
1814 strbuf_reset(&buf);
1815
1816 strbuf_addf(&buf, "%s/message", get_dir(opts));
1817 if (!file_exists(buf.buf)) {
1818 const char *commit_buffer = get_commit_buffer(commit, NULL);
1819 find_commit_subject(commit_buffer, &subject);
1820 res |= write_message(subject, strlen(subject), buf.buf, 1);
1821 unuse_commit_buffer(commit, commit_buffer);
1822 }
1823 strbuf_release(&buf);
1824
1825 return res;
1826}
1827
1828static int intend_to_amend(void)
1829{
092bbcdf 1830 struct object_id head;
56dc3ab0
JS
1831 char *p;
1832
092bbcdf 1833 if (get_oid("HEAD", &head))
56dc3ab0
JS
1834 return error(_("cannot read HEAD"));
1835
092bbcdf 1836 p = oid_to_hex(&head);
56dc3ab0
JS
1837 return write_message(p, strlen(p), rebase_path_amend(), 1);
1838}
1839
1840static int error_with_patch(struct commit *commit,
1841 const char *subject, int subject_len,
1842 struct replay_opts *opts, int exit_code, int to_amend)
1843{
1844 if (make_patch(commit, opts))
1845 return -1;
1846
1847 if (to_amend) {
1848 if (intend_to_amend())
1849 return -1;
1850
1851 fprintf(stderr, "You can amend the commit now, with\n"
1852 "\n"
1853 " git commit --amend %s\n"
1854 "\n"
1855 "Once you are satisfied with your changes, run\n"
1856 "\n"
1857 " git rebase --continue\n", gpg_sign_opt_quoted(opts));
1858 } else if (exit_code)
1859 fprintf(stderr, "Could not apply %s... %.*s\n",
1860 short_commit_name(commit), subject_len, subject);
1861
1862 return exit_code;
1863}
1864
6e98de72
JS
1865static int error_failed_squash(struct commit *commit,
1866 struct replay_opts *opts, int subject_len, const char *subject)
1867{
1868 if (rename(rebase_path_squash_msg(), rebase_path_message()))
1869 return error(_("could not rename '%s' to '%s'"),
1870 rebase_path_squash_msg(), rebase_path_message());
1871 unlink(rebase_path_fixup_msg());
ca03e067
JK
1872 unlink(git_path_merge_msg());
1873 if (copy_file(git_path_merge_msg(), rebase_path_message(), 0666))
6e98de72 1874 return error(_("could not copy '%s' to '%s'"),
ca03e067 1875 rebase_path_message(), git_path_merge_msg());
6e98de72
JS
1876 return error_with_patch(commit, subject, subject_len, opts, 1, 0);
1877}
1878
311af526
JS
1879static int do_exec(const char *command_line)
1880{
09d7b6c6 1881 struct argv_array child_env = ARGV_ARRAY_INIT;
311af526
JS
1882 const char *child_argv[] = { NULL, NULL };
1883 int dirty, status;
1884
1885 fprintf(stderr, "Executing: %s\n", command_line);
1886 child_argv[0] = command_line;
09d7b6c6
JK
1887 argv_array_pushf(&child_env, "GIT_DIR=%s", absolute_path(get_git_dir()));
1888 status = run_command_v_opt_cd_env(child_argv, RUN_USING_SHELL, NULL,
1889 child_env.argv);
311af526
JS
1890
1891 /* force re-reading of the cache */
1892 if (discard_cache() < 0 || read_cache() < 0)
1893 return error(_("could not read index"));
1894
1895 dirty = require_clean_work_tree("rebase", NULL, 1, 1);
1896
1897 if (status) {
1898 warning(_("execution failed: %s\n%s"
1899 "You can fix the problem, and then run\n"
1900 "\n"
1901 " git rebase --continue\n"
1902 "\n"),
1903 command_line,
1904 dirty ? N_("and made changes to the index and/or the "
1905 "working tree\n") : "");
1906 if (status == 127)
1907 /* command not found */
1908 status = 1;
1909 } else if (dirty) {
1910 warning(_("execution succeeded: %s\nbut "
1911 "left changes to the index and/or the working tree\n"
1912 "Commit or stash your changes, and then run\n"
1913 "\n"
1914 " git rebase --continue\n"
1915 "\n"), command_line);
1916 status = 1;
1917 }
1918
09d7b6c6
JK
1919 argv_array_clear(&child_env);
1920
311af526
JS
1921 return status;
1922}
1923
6e98de72
JS
1924static int is_final_fixup(struct todo_list *todo_list)
1925{
1926 int i = todo_list->current;
1927
1928 if (!is_fixup(todo_list->items[i].command))
1929 return 0;
1930
1931 while (++i < todo_list->nr)
1932 if (is_fixup(todo_list->items[i].command))
1933 return 0;
1934 else if (!is_noop(todo_list->items[i].command))
1935 break;
1936 return 1;
1937}
1938
25cb8df9
JS
1939static enum todo_command peek_command(struct todo_list *todo_list, int offset)
1940{
1941 int i;
1942
1943 for (i = todo_list->current + offset; i < todo_list->nr; i++)
1944 if (!is_noop(todo_list->items[i].command))
1945 return todo_list->items[i].command;
1946
1947 return -1;
1948}
1949
796c7972
JS
1950static int apply_autostash(struct replay_opts *opts)
1951{
1952 struct strbuf stash_sha1 = STRBUF_INIT;
1953 struct child_process child = CHILD_PROCESS_INIT;
1954 int ret = 0;
1955
1956 if (!read_oneliner(&stash_sha1, rebase_path_autostash(), 1)) {
1957 strbuf_release(&stash_sha1);
1958 return 0;
1959 }
1960 strbuf_trim(&stash_sha1);
1961
1962 child.git_cmd = 1;
79a62269
PW
1963 child.no_stdout = 1;
1964 child.no_stderr = 1;
796c7972
JS
1965 argv_array_push(&child.args, "stash");
1966 argv_array_push(&child.args, "apply");
1967 argv_array_push(&child.args, stash_sha1.buf);
1968 if (!run_command(&child))
cdb866b3 1969 fprintf(stderr, _("Applied autostash.\n"));
796c7972
JS
1970 else {
1971 struct child_process store = CHILD_PROCESS_INIT;
1972
1973 store.git_cmd = 1;
1974 argv_array_push(&store.args, "stash");
1975 argv_array_push(&store.args, "store");
1976 argv_array_push(&store.args, "-m");
1977 argv_array_push(&store.args, "autostash");
1978 argv_array_push(&store.args, "-q");
1979 argv_array_push(&store.args, stash_sha1.buf);
1980 if (run_command(&store))
1981 ret = error(_("cannot store %s"), stash_sha1.buf);
1982 else
cdb866b3
JS
1983 fprintf(stderr,
1984 _("Applying autostash resulted in conflicts.\n"
1985 "Your changes are safe in the stash.\n"
1986 "You can run \"git stash pop\" or"
1987 " \"git stash drop\" at any time.\n"));
796c7972
JS
1988 }
1989
1990 strbuf_release(&stash_sha1);
1991 return ret;
1992}
1993
96e832a5
JS
1994static const char *reflog_message(struct replay_opts *opts,
1995 const char *sub_action, const char *fmt, ...)
1996{
1997 va_list ap;
1998 static struct strbuf buf = STRBUF_INIT;
1999
2000 va_start(ap, fmt);
2001 strbuf_reset(&buf);
2002 strbuf_addstr(&buf, action_name(opts));
2003 if (sub_action)
2004 strbuf_addf(&buf, " (%s)", sub_action);
2005 if (fmt) {
2006 strbuf_addstr(&buf, ": ");
2007 strbuf_vaddf(&buf, fmt, ap);
2008 }
2009 va_end(ap);
2010
2011 return buf.buf;
2012}
2013
004fefa7 2014static int pick_commits(struct todo_list *todo_list, struct replay_opts *opts)
043a4492 2015{
56dc3ab0 2016 int res = 0;
043a4492
RR
2017
2018 setenv(GIT_REFLOG_ACTION, action_name(opts), 0);
2019 if (opts->allow_ff)
2020 assert(!(opts->signoff || opts->no_commit ||
2021 opts->record_origin || opts->edit));
0d9c6dc9
JS
2022 if (read_and_refresh_cache(opts))
2023 return -1;
043a4492 2024
004fefa7
JS
2025 while (todo_list->current < todo_list->nr) {
2026 struct todo_item *item = todo_list->items + todo_list->current;
2027 if (save_todo(todo_list, opts))
221675de 2028 return -1;
6e98de72 2029 if (is_rebase_i(opts)) {
ef80069a
JS
2030 if (item->command != TODO_COMMENT) {
2031 FILE *f = fopen(rebase_path_msgnum(), "w");
2032
2033 todo_list->done_nr++;
2034
2035 if (f) {
2036 fprintf(f, "%d\n", todo_list->done_nr);
2037 fclose(f);
2038 }
968492e4 2039 fprintf(stderr, "Rebasing (%d/%d)%s",
ef80069a 2040 todo_list->done_nr,
968492e4
JS
2041 todo_list->total_nr,
2042 opts->verbose ? "\n" : "\r");
ef80069a 2043 }
6e98de72
JS
2044 unlink(rebase_path_message());
2045 unlink(rebase_path_author_script());
2046 unlink(rebase_path_stopped_sha());
2047 unlink(rebase_path_amend());
2048 }
2049 if (item->command <= TODO_SQUASH) {
8ab37ef2
JS
2050 if (is_rebase_i(opts))
2051 setenv("GIT_REFLOG_ACTION", reflog_message(opts,
2052 command_to_string(item->command), NULL),
2053 1);
25c43667 2054 res = do_pick_commit(item->command, item->commit,
6e98de72 2055 opts, is_final_fixup(todo_list));
9d7bf3cf
JS
2056 if (is_rebase_i(opts) && res < 0) {
2057 /* Reschedule */
2058 todo_list->current--;
2059 if (save_todo(todo_list, opts))
2060 return -1;
2061 }
56dc3ab0
JS
2062 if (item->command == TODO_EDIT) {
2063 struct commit *commit = item->commit;
2064 if (!res)
99429213 2065 fprintf(stderr,
a42e1b41 2066 _("Stopped at %s... %.*s\n"),
56dc3ab0
JS
2067 short_commit_name(commit),
2068 item->arg_len, item->arg);
2069 return error_with_patch(commit,
2070 item->arg, item->arg_len, opts, res,
2071 !res);
2072 }
25cb8df9
JS
2073 if (is_rebase_i(opts) && !res)
2074 record_in_rewritten(&item->commit->object.oid,
2075 peek_command(todo_list, 1));
6e98de72
JS
2076 if (res && is_fixup(item->command)) {
2077 if (res == 1)
2078 intend_to_amend();
2079 return error_failed_squash(item->commit, opts,
2080 item->arg_len, item->arg);
4a5146f9
JS
2081 } else if (res && is_rebase_i(opts))
2082 return res | error_with_patch(item->commit,
04efc8b5
JS
2083 item->arg, item->arg_len, opts, res,
2084 item->command == TODO_REWORD);
311af526
JS
2085 } else if (item->command == TODO_EXEC) {
2086 char *end_of_arg = (char *)(item->arg + item->arg_len);
2087 int saved = *end_of_arg;
54fd3243 2088 struct stat st;
311af526
JS
2089
2090 *end_of_arg = '\0';
2091 res = do_exec(item->arg);
2092 *end_of_arg = saved;
54fd3243
SH
2093
2094 /* Reread the todo file if it has changed. */
2095 if (res)
2096 ; /* fall through */
2097 else if (stat(get_todo_path(opts), &st))
2098 res = error_errno(_("could not stat '%s'"),
2099 get_todo_path(opts));
2100 else if (match_stat_data(&todo_list->stat, &st)) {
2101 todo_list_release(todo_list);
2102 if (read_populate_todo(todo_list, opts))
2103 res = -1; /* message was printed */
2104 /* `current` will be incremented below */
2105 todo_list->current = -1;
2106 }
56dc3ab0 2107 } else if (!is_noop(item->command))
25c43667
JS
2108 return error(_("unknown command %d"), item->command);
2109
004fefa7 2110 todo_list->current++;
043a4492
RR
2111 if (res)
2112 return res;
2113 }
2114
56dc3ab0 2115 if (is_rebase_i(opts)) {
4b83ce9f 2116 struct strbuf head_ref = STRBUF_INIT, buf = STRBUF_INIT;
25cb8df9 2117 struct stat st;
556907f1 2118
56dc3ab0
JS
2119 /* Stopped in the middle, as planned? */
2120 if (todo_list->current < todo_list->nr)
2121 return 0;
556907f1 2122
4b83ce9f
JS
2123 if (read_oneliner(&head_ref, rebase_path_head_name(), 0) &&
2124 starts_with(head_ref.buf, "refs/")) {
96e832a5 2125 const char *msg;
092bbcdf 2126 struct object_id head, orig;
4b83ce9f
JS
2127 int res;
2128
092bbcdf 2129 if (get_oid("HEAD", &head)) {
4b83ce9f
JS
2130 res = error(_("cannot read HEAD"));
2131cleanup_head_ref:
2132 strbuf_release(&head_ref);
2133 strbuf_release(&buf);
2134 return res;
2135 }
2136 if (!read_oneliner(&buf, rebase_path_orig_head(), 0) ||
092bbcdf 2137 get_oid_hex(buf.buf, &orig)) {
4b83ce9f
JS
2138 res = error(_("could not read orig-head"));
2139 goto cleanup_head_ref;
2140 }
4ab867b8 2141 strbuf_reset(&buf);
4b83ce9f
JS
2142 if (!read_oneliner(&buf, rebase_path_onto(), 0)) {
2143 res = error(_("could not read 'onto'"));
2144 goto cleanup_head_ref;
2145 }
96e832a5
JS
2146 msg = reflog_message(opts, "finish", "%s onto %s",
2147 head_ref.buf, buf.buf);
ae077771 2148 if (update_ref(msg, head_ref.buf, &head, &orig,
91774afc 2149 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR)) {
4b83ce9f
JS
2150 res = error(_("could not update %s"),
2151 head_ref.buf);
2152 goto cleanup_head_ref;
2153 }
96e832a5 2154 msg = reflog_message(opts, "finish", "returning to %s",
4b83ce9f 2155 head_ref.buf);
96e832a5 2156 if (create_symref("HEAD", head_ref.buf, msg)) {
4b83ce9f
JS
2157 res = error(_("could not update HEAD to %s"),
2158 head_ref.buf);
2159 goto cleanup_head_ref;
2160 }
2161 strbuf_reset(&buf);
2162 }
2163
556907f1
JS
2164 if (opts->verbose) {
2165 struct rev_info log_tree_opt;
2166 struct object_id orig, head;
2167
2168 memset(&log_tree_opt, 0, sizeof(log_tree_opt));
2169 init_revisions(&log_tree_opt, NULL);
2170 log_tree_opt.diff = 1;
2171 log_tree_opt.diffopt.output_format =
2172 DIFF_FORMAT_DIFFSTAT;
2173 log_tree_opt.disable_stdin = 1;
2174
2175 if (read_oneliner(&buf, rebase_path_orig_head(), 0) &&
e82caf38 2176 !get_oid(buf.buf, &orig) &&
2177 !get_oid("HEAD", &head)) {
66f414f8
BW
2178 diff_tree_oid(&orig, &head, "",
2179 &log_tree_opt.diffopt);
556907f1
JS
2180 log_tree_diff_flush(&log_tree_opt);
2181 }
2182 }
25cb8df9
JS
2183 flush_rewritten_pending();
2184 if (!stat(rebase_path_rewritten_list(), &st) &&
2185 st.st_size > 0) {
2186 struct child_process child = CHILD_PROCESS_INIT;
79516045
JS
2187 const char *post_rewrite_hook =
2188 find_hook("post-rewrite");
25cb8df9
JS
2189
2190 child.in = open(rebase_path_rewritten_list(), O_RDONLY);
2191 child.git_cmd = 1;
2192 argv_array_push(&child.args, "notes");
2193 argv_array_push(&child.args, "copy");
2194 argv_array_push(&child.args, "--for-rewrite=rebase");
2195 /* we don't care if this copying failed */
2196 run_command(&child);
79516045
JS
2197
2198 if (post_rewrite_hook) {
2199 struct child_process hook = CHILD_PROCESS_INIT;
2200
2201 hook.in = open(rebase_path_rewritten_list(),
2202 O_RDONLY);
2203 hook.stdout_to_stderr = 1;
2204 argv_array_push(&hook.args, post_rewrite_hook);
2205 argv_array_push(&hook.args, "rebase");
2206 /* we don't care if this hook failed */
2207 run_command(&hook);
2208 }
25cb8df9 2209 }
796c7972 2210 apply_autostash(opts);
25cb8df9 2211
5da4966f
JS
2212 fprintf(stderr, "Successfully rebased and updated %s.\n",
2213 head_ref.buf);
2214
556907f1 2215 strbuf_release(&buf);
4b83ce9f 2216 strbuf_release(&head_ref);
56dc3ab0
JS
2217 }
2218
043a4492
RR
2219 /*
2220 * Sequence of picks finished successfully; cleanup by
2221 * removing the .git/sequencer directory
2222 */
2863584f 2223 return sequencer_remove_state(opts);
043a4492
RR
2224}
2225
2226static int continue_single_pick(void)
2227{
2228 const char *argv[] = { "commit", NULL };
2229
f932729c
JK
2230 if (!file_exists(git_path_cherry_pick_head()) &&
2231 !file_exists(git_path_revert_head()))
043a4492
RR
2232 return error(_("no cherry-pick or revert in progress"));
2233 return run_command_v_opt(argv, RUN_GIT_CMD);
2234}
2235
9d93ccd1
JS
2236static int commit_staged_changes(struct replay_opts *opts)
2237{
789b3eff 2238 unsigned int flags = ALLOW_EMPTY | EDIT_MSG;
9d93ccd1
JS
2239
2240 if (has_unstaged_changes(1))
2241 return error(_("cannot rebase: You have unstaged changes."));
52632209 2242 if (!has_uncommitted_changes(0)) {
ca03e067 2243 const char *cherry_pick_head = git_path_cherry_pick_head();
52632209
JS
2244
2245 if (file_exists(cherry_pick_head) && unlink(cherry_pick_head))
2246 return error(_("could not remove CHERRY_PICK_HEAD"));
9d93ccd1 2247 return 0;
52632209 2248 }
9d93ccd1
JS
2249
2250 if (file_exists(rebase_path_amend())) {
2251 struct strbuf rev = STRBUF_INIT;
092bbcdf 2252 struct object_id head, to_amend;
9d93ccd1 2253
092bbcdf 2254 if (get_oid("HEAD", &head))
9d93ccd1
JS
2255 return error(_("cannot amend non-existing commit"));
2256 if (!read_oneliner(&rev, rebase_path_amend(), 0))
2257 return error(_("invalid file: '%s'"), rebase_path_amend());
092bbcdf 2258 if (get_oid_hex(rev.buf, &to_amend))
9d93ccd1
JS
2259 return error(_("invalid contents: '%s'"),
2260 rebase_path_amend());
092bbcdf 2261 if (oidcmp(&head, &to_amend))
9d93ccd1
JS
2262 return error(_("\nYou have uncommitted changes in your "
2263 "working tree. Please, commit them\n"
2264 "first and then run 'git rebase "
2265 "--continue' again."));
2266
2267 strbuf_release(&rev);
789b3eff 2268 flags |= AMEND_MSG;
9d93ccd1
JS
2269 }
2270
789b3eff 2271 if (run_git_commit(rebase_path_message(), opts, flags))
9d93ccd1
JS
2272 return error(_("could not commit staged changes."));
2273 unlink(rebase_path_amend());
2274 return 0;
2275}
2276
2863584f 2277int sequencer_continue(struct replay_opts *opts)
043a4492 2278{
004fefa7
JS
2279 struct todo_list todo_list = TODO_LIST_INIT;
2280 int res;
043a4492 2281
2863584f
JS
2282 if (read_and_refresh_cache(opts))
2283 return -1;
2284
9d93ccd1
JS
2285 if (is_rebase_i(opts)) {
2286 if (commit_staged_changes(opts))
2287 return -1;
4258a6da 2288 } else if (!file_exists(get_todo_path(opts)))
043a4492 2289 return continue_single_pick();
004fefa7 2290 if (read_populate_opts(opts))
0ae42a03 2291 return -1;
004fefa7
JS
2292 if ((res = read_populate_todo(&todo_list, opts)))
2293 goto release_todo_list;
043a4492 2294
4258a6da
JS
2295 if (!is_rebase_i(opts)) {
2296 /* Verify that the conflict has been resolved */
2297 if (file_exists(git_path_cherry_pick_head()) ||
2298 file_exists(git_path_revert_head())) {
2299 res = continue_single_pick();
2300 if (res)
2301 goto release_todo_list;
2302 }
02f2f56b 2303 if (index_differs_from("HEAD", NULL, 0)) {
4258a6da 2304 res = error_dirty_index(opts);
004fefa7 2305 goto release_todo_list;
4258a6da
JS
2306 }
2307 todo_list.current++;
ca98c6d4
JS
2308 } else if (file_exists(rebase_path_stopped_sha())) {
2309 struct strbuf buf = STRBUF_INIT;
2310 struct object_id oid;
2311
2312 if (read_oneliner(&buf, rebase_path_stopped_sha(), 1) &&
e82caf38 2313 !get_oid_committish(buf.buf, &oid))
ca98c6d4
JS
2314 record_in_rewritten(&oid, peek_command(&todo_list, 0));
2315 strbuf_release(&buf);
043a4492 2316 }
4258a6da 2317
004fefa7
JS
2318 res = pick_commits(&todo_list, opts);
2319release_todo_list:
2320 todo_list_release(&todo_list);
2321 return res;
043a4492
RR
2322}
2323
2324static int single_pick(struct commit *cmit, struct replay_opts *opts)
2325{
2326 setenv(GIT_REFLOG_ACTION, action_name(opts), 0);
004fefa7 2327 return do_pick_commit(opts->action == REPLAY_PICK ?
6e98de72 2328 TODO_PICK : TODO_REVERT, cmit, opts, 0);
043a4492
RR
2329}
2330
2331int sequencer_pick_revisions(struct replay_opts *opts)
2332{
004fefa7 2333 struct todo_list todo_list = TODO_LIST_INIT;
1e43ed98 2334 struct object_id oid;
004fefa7 2335 int i, res;
043a4492 2336
2863584f 2337 assert(opts->revs);
0d9c6dc9
JS
2338 if (read_and_refresh_cache(opts))
2339 return -1;
043a4492 2340
21246dbb 2341 for (i = 0; i < opts->revs->pending.nr; i++) {
1e43ed98 2342 struct object_id oid;
21246dbb
MV
2343 const char *name = opts->revs->pending.objects[i].name;
2344
2345 /* This happens when using --stdin. */
2346 if (!strlen(name))
2347 continue;
2348
1e43ed98 2349 if (!get_oid(name, &oid)) {
bc83266a 2350 if (!lookup_commit_reference_gently(&oid, 1)) {
1e43ed98 2351 enum object_type type = sha1_object_info(oid.hash, NULL);
b9b946d4
JS
2352 return error(_("%s: can't cherry-pick a %s"),
2353 name, typename(type));
7c0b0d8d 2354 }
21246dbb 2355 } else
b9b946d4 2356 return error(_("%s: bad revision"), name);
21246dbb
MV
2357 }
2358
043a4492
RR
2359 /*
2360 * If we were called as "git cherry-pick <commit>", just
2361 * cherry-pick/revert it, set CHERRY_PICK_HEAD /
2362 * REVERT_HEAD, and don't touch the sequencer state.
2363 * This means it is possible to cherry-pick in the middle
2364 * of a cherry-pick sequence.
2365 */
2366 if (opts->revs->cmdline.nr == 1 &&
2367 opts->revs->cmdline.rev->whence == REV_CMD_REV &&
2368 opts->revs->no_walk &&
2369 !opts->revs->cmdline.rev->flags) {
2370 struct commit *cmit;
2371 if (prepare_revision_walk(opts->revs))
b9b946d4 2372 return error(_("revision walk setup failed"));
043a4492
RR
2373 cmit = get_revision(opts->revs);
2374 if (!cmit || get_revision(opts->revs))
b9b946d4 2375 return error("BUG: expected exactly one commit from walk");
043a4492
RR
2376 return single_pick(cmit, opts);
2377 }
2378
2379 /*
2380 * Start a new cherry-pick/ revert sequence; but
2381 * first, make sure that an existing one isn't in
2382 * progress
2383 */
2384
34b0528b
JS
2385 if (walk_revs_populate_todo(&todo_list, opts) ||
2386 create_seq_dir() < 0)
043a4492 2387 return -1;
1e43ed98 2388 if (get_oid("HEAD", &oid) && (opts->action == REPLAY_REVERT))
93b3df6f 2389 return error(_("can't revert as initial commit"));
1e43ed98 2390 if (save_head(oid_to_hex(&oid)))
311fd397 2391 return -1;
88d5a271
JS
2392 if (save_opts(opts))
2393 return -1;
1e41229d 2394 update_abort_safety_file();
004fefa7
JS
2395 res = pick_commits(&todo_list, opts);
2396 todo_list_release(&todo_list);
2397 return res;
043a4492 2398}
5ed75e2a 2399
bab4d109 2400void append_signoff(struct strbuf *msgbuf, int ignore_footer, unsigned flag)
5ed75e2a 2401{
bab4d109 2402 unsigned no_dup_sob = flag & APPEND_SIGNOFF_DEDUP;
5ed75e2a 2403 struct strbuf sob = STRBUF_INIT;
bab4d109 2404 int has_footer;
5ed75e2a
MV
2405
2406 strbuf_addstr(&sob, sign_off_header);
2407 strbuf_addstr(&sob, fmt_name(getenv("GIT_COMMITTER_NAME"),
2408 getenv("GIT_COMMITTER_EMAIL")));
2409 strbuf_addch(&sob, '\n');
bab4d109 2410
44dc738a
JT
2411 if (!ignore_footer)
2412 strbuf_complete_line(msgbuf);
2413
bab4d109
BC
2414 /*
2415 * If the whole message buffer is equal to the sob, pretend that we
2416 * found a conforming footer with a matching sob
2417 */
2418 if (msgbuf->len - ignore_footer == sob.len &&
2419 !strncmp(msgbuf->buf, sob.buf, sob.len))
2420 has_footer = 3;
2421 else
2422 has_footer = has_conforming_footer(msgbuf, &sob, ignore_footer);
2423
33f2f9ab
BC
2424 if (!has_footer) {
2425 const char *append_newlines = NULL;
2426 size_t len = msgbuf->len - ignore_footer;
2427
8c613fd5
BC
2428 if (!len) {
2429 /*
2430 * The buffer is completely empty. Leave foom for
2431 * the title and body to be filled in by the user.
2432 */
33f2f9ab 2433 append_newlines = "\n\n";
8c613fd5
BC
2434 } else if (len == 1) {
2435 /*
2436 * Buffer contains a single newline. Add another
2437 * so that we leave room for the title and body.
2438 */
2439 append_newlines = "\n";
2440 } else if (msgbuf->buf[len - 2] != '\n') {
2441 /*
2442 * Buffer ends with a single newline. Add another
2443 * so that there is an empty line between the message
2444 * body and the sob.
2445 */
33f2f9ab 2446 append_newlines = "\n";
8c613fd5 2447 } /* else, the buffer already ends with two newlines. */
33f2f9ab
BC
2448
2449 if (append_newlines)
2450 strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0,
2451 append_newlines, strlen(append_newlines));
5ed75e2a 2452 }
bab4d109
BC
2453
2454 if (has_footer != 3 && (!no_dup_sob || has_footer != 2))
2455 strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0,
2456 sob.buf, sob.len);
2457
5ed75e2a
MV
2458 strbuf_release(&sob);
2459}
62db5247 2460
313a48ea
LB
2461int sequencer_make_script(FILE *out, int argc, const char **argv,
2462 unsigned flags)
62db5247
JS
2463{
2464 char *format = NULL;
2465 struct pretty_print_context pp = {0};
2466 struct strbuf buf = STRBUF_INIT;
2467 struct rev_info revs;
2468 struct commit *commit;
313a48ea 2469 int keep_empty = flags & TODO_LIST_KEEP_EMPTY;
d8ae6c84 2470 const char *insn = flags & TODO_LIST_ABBREVIATE_CMDS ? "p" : "pick";
62db5247
JS
2471
2472 init_revisions(&revs, NULL);
2473 revs.verbose_header = 1;
2474 revs.max_parents = 1;
2475 revs.cherry_pick = 1;
2476 revs.limited = 1;
2477 revs.reverse = 1;
2478 revs.right_only = 1;
2479 revs.sort_order = REV_SORT_IN_GRAPH_ORDER;
2480 revs.topo_order = 1;
2481
2482 revs.pretty_given = 1;
2483 git_config_get_string("rebase.instructionFormat", &format);
2484 if (!format || !*format) {
2485 free(format);
2486 format = xstrdup("%s");
2487 }
2488 get_commit_format(format, &revs);
2489 free(format);
2490 pp.fmt = revs.commit_format;
2491 pp.output_encoding = get_log_output_encoding();
2492
2493 if (setup_revisions(argc, argv, &revs, NULL) > 1)
2494 return error(_("make_script: unhandled options"));
2495
2496 if (prepare_revision_walk(&revs) < 0)
2497 return error(_("make_script: error preparing revisions"));
2498
2499 while ((commit = get_revision(&revs))) {
2500 strbuf_reset(&buf);
2501 if (!keep_empty && is_original_commit_empty(commit))
2502 strbuf_addf(&buf, "%c ", comment_line_char);
d8ae6c84
LB
2503 strbuf_addf(&buf, "%s %s ", insn,
2504 oid_to_hex(&commit->object.oid));
62db5247
JS
2505 pretty_print_commit(&pp, commit, &buf);
2506 strbuf_addch(&buf, '\n');
2507 fputs(buf.buf, out);
2508 }
2509 strbuf_release(&buf);
2510 return 0;
2511}
3546c8d9 2512
0cce4a27
LB
2513/*
2514 * Add commands after pick and (series of) squash/fixup commands
2515 * in the todo list.
2516 */
2517int sequencer_add_exec_commands(const char *commands)
3546c8d9
JS
2518{
2519 const char *todo_file = rebase_path_todo();
2520 struct todo_list todo_list = TODO_LIST_INIT;
0cce4a27
LB
2521 struct todo_item *item;
2522 struct strbuf *buf = &todo_list.buf;
2523 size_t offset = 0, commands_len = strlen(commands);
2524 int i, first;
3546c8d9 2525
0cce4a27 2526 if (strbuf_read_file(&todo_list.buf, todo_file, 0) < 0)
3546c8d9 2527 return error(_("could not read '%s'."), todo_file);
3546c8d9 2528
0cce4a27 2529 if (parse_insn_buffer(todo_list.buf.buf, &todo_list)) {
3546c8d9
JS
2530 todo_list_release(&todo_list);
2531 return error(_("unusable todo list: '%s'"), todo_file);
2532 }
2533
0cce4a27
LB
2534 first = 1;
2535 /* insert <commands> before every pick except the first one */
2536 for (item = todo_list.items, i = 0; i < todo_list.nr; i++, item++) {
2537 if (item->command == TODO_PICK && !first) {
2538 strbuf_insert(buf, item->offset_in_buf + offset,
2539 commands, commands_len);
2540 offset += commands_len;
2541 }
2542 first = 0;
2543 }
2544
2545 /* append final <commands> */
2546 strbuf_add(buf, commands, commands_len);
2547
2548 i = write_message(buf->buf, buf->len, todo_file, 0);
2549 todo_list_release(&todo_list);
2550 return i;
2551}
3546c8d9 2552
313a48ea 2553int transform_todos(unsigned flags)
3546c8d9
JS
2554{
2555 const char *todo_file = rebase_path_todo();
2556 struct todo_list todo_list = TODO_LIST_INIT;
8dccc7a6
LB
2557 struct strbuf buf = STRBUF_INIT;
2558 struct todo_item *item;
2559 int i;
3546c8d9 2560
8dccc7a6 2561 if (strbuf_read_file(&todo_list.buf, todo_file, 0) < 0)
3546c8d9 2562 return error(_("could not read '%s'."), todo_file);
3546c8d9 2563
8dccc7a6 2564 if (parse_insn_buffer(todo_list.buf.buf, &todo_list)) {
3546c8d9 2565 todo_list_release(&todo_list);
3546c8d9
JS
2566 return error(_("unusable todo list: '%s'"), todo_file);
2567 }
2568
8dccc7a6
LB
2569 for (item = todo_list.items, i = 0; i < todo_list.nr; i++, item++) {
2570 /* if the item is not a command write it and continue */
2571 if (item->command >= TODO_COMMENT) {
2572 strbuf_addf(&buf, "%.*s\n", item->arg_len, item->arg);
2573 continue;
3546c8d9 2574 }
8dccc7a6
LB
2575
2576 /* add command to the buffer */
d8ae6c84
LB
2577 if (flags & TODO_LIST_ABBREVIATE_CMDS)
2578 strbuf_addch(&buf, command_to_char(item->command));
2579 else
2580 strbuf_addstr(&buf, command_to_string(item->command));
8dccc7a6
LB
2581
2582 /* add commit id */
2583 if (item->commit) {
313a48ea 2584 const char *oid = flags & TODO_LIST_SHORTEN_IDS ?
8dccc7a6
LB
2585 short_commit_name(item->commit) :
2586 oid_to_hex(&item->commit->object.oid);
2587
2588 strbuf_addf(&buf, " %s", oid);
3546c8d9 2589 }
8dccc7a6 2590 /* add all the rest */
c7b4d79c
JS
2591 if (!item->arg_len)
2592 strbuf_addch(&buf, '\n');
2593 else
2594 strbuf_addf(&buf, " %.*s\n", item->arg_len, item->arg);
3546c8d9 2595 }
8dccc7a6
LB
2596
2597 i = write_message(buf.buf, buf.len, todo_file, 0);
3546c8d9 2598 todo_list_release(&todo_list);
8dccc7a6 2599 return i;
3546c8d9 2600}
94399949
JS
2601
2602enum check_level {
2603 CHECK_IGNORE = 0, CHECK_WARN, CHECK_ERROR
2604};
2605
2606static enum check_level get_missing_commit_check_level(void)
2607{
2608 const char *value;
2609
2610 if (git_config_get_value("rebase.missingcommitscheck", &value) ||
2611 !strcasecmp("ignore", value))
2612 return CHECK_IGNORE;
2613 if (!strcasecmp("warn", value))
2614 return CHECK_WARN;
2615 if (!strcasecmp("error", value))
2616 return CHECK_ERROR;
dfab1eac 2617 warning(_("unrecognized setting %s for option "
94399949
JS
2618 "rebase.missingCommitsCheck. Ignoring."), value);
2619 return CHECK_IGNORE;
2620}
2621
2622/*
2623 * Check if the user dropped some commits by mistake
2624 * Behaviour determined by rebase.missingCommitsCheck.
2625 * Check if there is an unrecognized command or a
2626 * bad SHA-1 in a command.
2627 */
2628int check_todo_list(void)
2629{
2630 enum check_level check_level = get_missing_commit_check_level();
2631 struct strbuf todo_file = STRBUF_INIT;
2632 struct todo_list todo_list = TODO_LIST_INIT;
2633 struct strbuf missing = STRBUF_INIT;
2634 int advise_to_edit_todo = 0, res = 0, fd, i;
2635
2636 strbuf_addstr(&todo_file, rebase_path_todo());
2637 fd = open(todo_file.buf, O_RDONLY);
2638 if (fd < 0) {
2639 res = error_errno(_("could not open '%s'"), todo_file.buf);
2640 goto leave_check;
2641 }
2642 if (strbuf_read(&todo_list.buf, fd, 0) < 0) {
2643 close(fd);
2644 res = error(_("could not read '%s'."), todo_file.buf);
2645 goto leave_check;
2646 }
2647 close(fd);
2648 advise_to_edit_todo = res =
2649 parse_insn_buffer(todo_list.buf.buf, &todo_list);
2650
2651 if (res || check_level == CHECK_IGNORE)
2652 goto leave_check;
2653
2654 /* Mark the commits in git-rebase-todo as seen */
2655 for (i = 0; i < todo_list.nr; i++) {
2656 struct commit *commit = todo_list.items[i].commit;
2657 if (commit)
2658 commit->util = (void *)1;
2659 }
2660
2661 todo_list_release(&todo_list);
2662 strbuf_addstr(&todo_file, ".backup");
2663 fd = open(todo_file.buf, O_RDONLY);
2664 if (fd < 0) {
2665 res = error_errno(_("could not open '%s'"), todo_file.buf);
2666 goto leave_check;
2667 }
2668 if (strbuf_read(&todo_list.buf, fd, 0) < 0) {
2669 close(fd);
2670 res = error(_("could not read '%s'."), todo_file.buf);
2671 goto leave_check;
2672 }
2673 close(fd);
2674 strbuf_release(&todo_file);
2675 res = !!parse_insn_buffer(todo_list.buf.buf, &todo_list);
2676
2677 /* Find commits in git-rebase-todo.backup yet unseen */
2678 for (i = todo_list.nr - 1; i >= 0; i--) {
2679 struct todo_item *item = todo_list.items + i;
2680 struct commit *commit = item->commit;
2681 if (commit && !commit->util) {
2682 strbuf_addf(&missing, " - %s %.*s\n",
2683 short_commit_name(commit),
2684 item->arg_len, item->arg);
2685 commit->util = (void *)1;
2686 }
2687 }
2688
2689 /* Warn about missing commits */
2690 if (!missing.len)
2691 goto leave_check;
2692
2693 if (check_level == CHECK_ERROR)
2694 advise_to_edit_todo = res = 1;
2695
2696 fprintf(stderr,
2697 _("Warning: some commits may have been dropped accidentally.\n"
2698 "Dropped commits (newer to older):\n"));
2699
2700 /* Make the list user-friendly and display */
2701 fputs(missing.buf, stderr);
2702 strbuf_release(&missing);
2703
2704 fprintf(stderr, _("To avoid this message, use \"drop\" to "
2705 "explicitly remove a commit.\n\n"
2706 "Use 'git config rebase.missingCommitsCheck' to change "
2707 "the level of warnings.\n"
2708 "The possible behaviours are: ignore, warn, error.\n\n"));
2709
2710leave_check:
2711 strbuf_release(&todo_file);
2712 todo_list_release(&todo_list);
2713
2714 if (advise_to_edit_todo)
2715 fprintf(stderr,
2716 _("You can fix this with 'git rebase --edit-todo' "
2717 "and then run 'git rebase --continue'.\n"
2718 "Or you can abort the rebase with 'git rebase"
2719 " --abort'.\n"));
2720
2721 return res;
2722}
cdac2b01 2723
73646bfd
RS
2724static int rewrite_file(const char *path, const char *buf, size_t len)
2725{
2726 int rc = 0;
c8cee96e 2727 int fd = open(path, O_WRONLY | O_TRUNC);
73646bfd
RS
2728 if (fd < 0)
2729 return error_errno(_("could not open '%s' for writing"), path);
2730 if (write_in_full(fd, buf, len) < 0)
2731 rc = error_errno(_("could not write to '%s'"), path);
9360ec00
SR
2732 if (close(fd) && !rc)
2733 rc = error_errno(_("could not close '%s'"), path);
73646bfd
RS
2734 return rc;
2735}
2736
cdac2b01
JS
2737/* skip picking commits whose parents are unchanged */
2738int skip_unnecessary_picks(void)
2739{
2740 const char *todo_file = rebase_path_todo();
2741 struct strbuf buf = STRBUF_INIT;
2742 struct todo_list todo_list = TODO_LIST_INIT;
2743 struct object_id onto_oid, *oid = &onto_oid, *parent_oid;
2744 int fd, i;
2745
2746 if (!read_oneliner(&buf, rebase_path_onto(), 0))
2747 return error(_("could not read 'onto'"));
2748 if (get_oid(buf.buf, &onto_oid)) {
2749 strbuf_release(&buf);
2750 return error(_("need a HEAD to fixup"));
2751 }
2752 strbuf_release(&buf);
2753
2754 fd = open(todo_file, O_RDONLY);
2755 if (fd < 0) {
2756 return error_errno(_("could not open '%s'"), todo_file);
2757 }
2758 if (strbuf_read(&todo_list.buf, fd, 0) < 0) {
2759 close(fd);
2760 return error(_("could not read '%s'."), todo_file);
2761 }
2762 close(fd);
2763 if (parse_insn_buffer(todo_list.buf.buf, &todo_list) < 0) {
2764 todo_list_release(&todo_list);
2765 return -1;
2766 }
2767
2768 for (i = 0; i < todo_list.nr; i++) {
2769 struct todo_item *item = todo_list.items + i;
2770
2771 if (item->command >= TODO_NOOP)
2772 continue;
2773 if (item->command != TODO_PICK)
2774 break;
2775 if (parse_commit(item->commit)) {
2776 todo_list_release(&todo_list);
2777 return error(_("could not parse commit '%s'"),
2778 oid_to_hex(&item->commit->object.oid));
2779 }
2780 if (!item->commit->parents)
2781 break; /* root commit */
2782 if (item->commit->parents->next)
2783 break; /* merge commit */
2784 parent_oid = &item->commit->parents->item->object.oid;
2785 if (hashcmp(parent_oid->hash, oid->hash))
2786 break;
2787 oid = &item->commit->object.oid;
2788 }
2789 if (i > 0) {
2790 int offset = i < todo_list.nr ?
2791 todo_list.items[i].offset_in_buf : todo_list.buf.len;
2792 const char *done_path = rebase_path_done();
2793
2794 fd = open(done_path, O_CREAT | O_WRONLY | O_APPEND, 0666);
2795 if (fd < 0) {
2796 error_errno(_("could not open '%s' for writing"),
2797 done_path);
2798 todo_list_release(&todo_list);
2799 return -1;
2800 }
2801 if (write_in_full(fd, todo_list.buf.buf, offset) < 0) {
2802 error_errno(_("could not write to '%s'"), done_path);
2803 todo_list_release(&todo_list);
2804 close(fd);
2805 return -1;
2806 }
2807 close(fd);
2808
73646bfd
RS
2809 if (rewrite_file(rebase_path_todo(), todo_list.buf.buf + offset,
2810 todo_list.buf.len - offset) < 0) {
cdac2b01 2811 todo_list_release(&todo_list);
cdac2b01
JS
2812 return -1;
2813 }
cdac2b01
JS
2814
2815 todo_list.current = i;
2816 if (is_fixup(peek_command(&todo_list, 0)))
2817 record_in_rewritten(oid, peek_command(&todo_list, 0));
2818 }
2819
2820 todo_list_release(&todo_list);
2821 printf("%s\n", oid_to_hex(oid));
2822
2823 return 0;
2824}
c44a4c65
JS
2825
2826struct subject2item_entry {
2827 struct hashmap_entry entry;
2828 int i;
2829 char subject[FLEX_ARRAY];
2830};
2831
2832static int subject2item_cmp(const void *fndata,
2833 const struct subject2item_entry *a,
2834 const struct subject2item_entry *b, const void *key)
2835{
2836 return key ? strcmp(a->subject, key) : strcmp(a->subject, b->subject);
2837}
2838
2839/*
2840 * Rearrange the todo list that has both "pick commit-id msg" and "pick
2841 * commit-id fixup!/squash! msg" in it so that the latter is put immediately
2842 * after the former, and change "pick" to "fixup"/"squash".
2843 *
2844 * Note that if the config has specified a custom instruction format, each log
2845 * message will have to be retrieved from the commit (as the oneline in the
2846 * script cannot be trusted) in order to normalize the autosquash arrangement.
2847 */
2848int rearrange_squash(void)
2849{
2850 const char *todo_file = rebase_path_todo();
2851 struct todo_list todo_list = TODO_LIST_INIT;
2852 struct hashmap subject2item;
2853 int res = 0, rearranged = 0, *next, *tail, fd, i;
2854 char **subjects;
2855
2856 fd = open(todo_file, O_RDONLY);
2857 if (fd < 0)
2858 return error_errno(_("could not open '%s'"), todo_file);
2859 if (strbuf_read(&todo_list.buf, fd, 0) < 0) {
2860 close(fd);
2861 return error(_("could not read '%s'."), todo_file);
2862 }
2863 close(fd);
2864 if (parse_insn_buffer(todo_list.buf.buf, &todo_list) < 0) {
2865 todo_list_release(&todo_list);
2866 return -1;
2867 }
2868
2869 /*
2870 * The hashmap maps onelines to the respective todo list index.
2871 *
2872 * If any items need to be rearranged, the next[i] value will indicate
2873 * which item was moved directly after the i'th.
2874 *
2875 * In that case, last[i] will indicate the index of the latest item to
2876 * be moved to appear after the i'th.
2877 */
2878 hashmap_init(&subject2item, (hashmap_cmp_fn) subject2item_cmp,
2879 NULL, todo_list.nr);
2880 ALLOC_ARRAY(next, todo_list.nr);
2881 ALLOC_ARRAY(tail, todo_list.nr);
2882 ALLOC_ARRAY(subjects, todo_list.nr);
2883 for (i = 0; i < todo_list.nr; i++) {
2884 struct strbuf buf = STRBUF_INIT;
2885 struct todo_item *item = todo_list.items + i;
2886 const char *commit_buffer, *subject, *p;
2887 size_t subject_len;
2888 int i2 = -1;
2889 struct subject2item_entry *entry;
2890
2891 next[i] = tail[i] = -1;
2892 if (item->command >= TODO_EXEC) {
2893 subjects[i] = NULL;
2894 continue;
2895 }
2896
2897 if (is_fixup(item->command)) {
2898 todo_list_release(&todo_list);
2899 return error(_("the script was already rearranged."));
2900 }
2901
2902 item->commit->util = item;
2903
2904 parse_commit(item->commit);
2905 commit_buffer = get_commit_buffer(item->commit, NULL);
2906 find_commit_subject(commit_buffer, &subject);
2907 format_subject(&buf, subject, " ");
2908 subject = subjects[i] = strbuf_detach(&buf, &subject_len);
2909 unuse_commit_buffer(item->commit, commit_buffer);
2910 if ((skip_prefix(subject, "fixup! ", &p) ||
2911 skip_prefix(subject, "squash! ", &p))) {
2912 struct commit *commit2;
2913
2914 for (;;) {
2915 while (isspace(*p))
2916 p++;
2917 if (!skip_prefix(p, "fixup! ", &p) &&
2918 !skip_prefix(p, "squash! ", &p))
2919 break;
2920 }
2921
2922 if ((entry = hashmap_get_from_hash(&subject2item,
2923 strhash(p), p)))
2924 /* found by title */
2925 i2 = entry->i;
2926 else if (!strchr(p, ' ') &&
2927 (commit2 =
2928 lookup_commit_reference_by_name(p)) &&
2929 commit2->util)
2930 /* found by commit name */
2931 i2 = (struct todo_item *)commit2->util
2932 - todo_list.items;
2933 else {
2934 /* copy can be a prefix of the commit subject */
2935 for (i2 = 0; i2 < i; i2++)
2936 if (subjects[i2] &&
2937 starts_with(subjects[i2], p))
2938 break;
2939 if (i2 == i)
2940 i2 = -1;
2941 }
2942 }
2943 if (i2 >= 0) {
2944 rearranged = 1;
2945 todo_list.items[i].command =
2946 starts_with(subject, "fixup!") ?
2947 TODO_FIXUP : TODO_SQUASH;
2948 if (next[i2] < 0)
2949 next[i2] = i;
2950 else
2951 next[tail[i2]] = i;
2952 tail[i2] = i;
2953 } else if (!hashmap_get_from_hash(&subject2item,
2954 strhash(subject), subject)) {
2955 FLEX_ALLOC_MEM(entry, subject, subject, subject_len);
2956 entry->i = i;
2957 hashmap_entry_init(entry, strhash(entry->subject));
2958 hashmap_put(&subject2item, entry);
2959 }
2960 }
2961
2962 if (rearranged) {
2963 struct strbuf buf = STRBUF_INIT;
2964
2965 for (i = 0; i < todo_list.nr; i++) {
2966 enum todo_command command = todo_list.items[i].command;
2967 int cur = i;
2968
2969 /*
2970 * Initially, all commands are 'pick's. If it is a
2971 * fixup or a squash now, we have rearranged it.
2972 */
2973 if (is_fixup(command))
2974 continue;
2975
2976 while (cur >= 0) {
2977 int offset = todo_list.items[cur].offset_in_buf;
2978 int end_offset = cur + 1 < todo_list.nr ?
2979 todo_list.items[cur + 1].offset_in_buf :
2980 todo_list.buf.len;
2981 char *bol = todo_list.buf.buf + offset;
2982 char *eol = todo_list.buf.buf + end_offset;
2983
2984 /* replace 'pick', by 'fixup' or 'squash' */
2985 command = todo_list.items[cur].command;
2986 if (is_fixup(command)) {
2987 strbuf_addstr(&buf,
2988 todo_command_info[command].str);
2989 bol += strcspn(bol, " \t");
2990 }
2991
2992 strbuf_add(&buf, bol, eol - bol);
2993
2994 cur = next[cur];
2995 }
2996 }
2997
73646bfd 2998 res = rewrite_file(todo_file, buf.buf, buf.len);
c44a4c65
JS
2999 strbuf_release(&buf);
3000 }
3001
3002 free(next);
3003 free(tail);
3004 for (i = 0; i < todo_list.nr; i++)
3005 free(subjects[i]);
3006 free(subjects);
3007 hashmap_free(&subject2item, 1);
3008 todo_list_release(&todo_list);
3009
3010 return res;
3011}