]> git.ipfire.org Git - thirdparty/git.git/blob - sequencer.c
alloc.h: move ALLOC_GROW() functions from cache.h
[thirdparty/git.git] / sequencer.c
1 #include "cache.h"
2 #include "alloc.h"
3 #include "config.h"
4 #include "lockfile.h"
5 #include "dir.h"
6 #include "object-store.h"
7 #include "object.h"
8 #include "commit.h"
9 #include "sequencer.h"
10 #include "tag.h"
11 #include "run-command.h"
12 #include "hook.h"
13 #include "exec-cmd.h"
14 #include "utf8.h"
15 #include "cache-tree.h"
16 #include "diff.h"
17 #include "revision.h"
18 #include "rerere.h"
19 #include "merge-ort.h"
20 #include "merge-ort-wrappers.h"
21 #include "refs.h"
22 #include "strvec.h"
23 #include "quote.h"
24 #include "trailer.h"
25 #include "log-tree.h"
26 #include "wt-status.h"
27 #include "hashmap.h"
28 #include "notes-utils.h"
29 #include "sigchain.h"
30 #include "unpack-trees.h"
31 #include "worktree.h"
32 #include "oidmap.h"
33 #include "oidset.h"
34 #include "commit-slab.h"
35 #include "alias.h"
36 #include "commit-reach.h"
37 #include "rebase-interactive.h"
38 #include "reset.h"
39 #include "branch.h"
40
41 #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
42
43 static const char sign_off_header[] = "Signed-off-by: ";
44 static const char cherry_picked_prefix[] = "(cherry picked from commit ";
45
46 GIT_PATH_FUNC(git_path_commit_editmsg, "COMMIT_EDITMSG")
47
48 static GIT_PATH_FUNC(git_path_seq_dir, "sequencer")
49
50 static GIT_PATH_FUNC(git_path_todo_file, "sequencer/todo")
51 static GIT_PATH_FUNC(git_path_opts_file, "sequencer/opts")
52 static GIT_PATH_FUNC(git_path_head_file, "sequencer/head")
53 static GIT_PATH_FUNC(git_path_abort_safety_file, "sequencer/abort-safety")
54
55 static GIT_PATH_FUNC(rebase_path, "rebase-merge")
56 /*
57 * The file containing rebase commands, comments, and empty lines.
58 * This file is created by "git rebase -i" then edited by the user. As
59 * the lines are processed, they are removed from the front of this
60 * file and written to the tail of 'done'.
61 */
62 GIT_PATH_FUNC(rebase_path_todo, "rebase-merge/git-rebase-todo")
63 GIT_PATH_FUNC(rebase_path_todo_backup, "rebase-merge/git-rebase-todo.backup")
64
65 GIT_PATH_FUNC(rebase_path_dropped, "rebase-merge/dropped")
66
67 /*
68 * The rebase command lines that have already been processed. A line
69 * is moved here when it is first handled, before any associated user
70 * actions.
71 */
72 static GIT_PATH_FUNC(rebase_path_done, "rebase-merge/done")
73 /*
74 * The file to keep track of how many commands were already processed (e.g.
75 * for the prompt).
76 */
77 static GIT_PATH_FUNC(rebase_path_msgnum, "rebase-merge/msgnum")
78 /*
79 * The file to keep track of how many commands are to be processed in total
80 * (e.g. for the prompt).
81 */
82 static GIT_PATH_FUNC(rebase_path_msgtotal, "rebase-merge/end")
83 /*
84 * The commit message that is planned to be used for any changes that
85 * need to be committed following a user interaction.
86 */
87 static GIT_PATH_FUNC(rebase_path_message, "rebase-merge/message")
88 /*
89 * The file into which is accumulated the suggested commit message for
90 * squash/fixup commands. When the first of a series of squash/fixups
91 * is seen, the file is created and the commit message from the
92 * previous commit and from the first squash/fixup commit are written
93 * to it. The commit message for each subsequent squash/fixup commit
94 * is appended to the file as it is processed.
95 */
96 static GIT_PATH_FUNC(rebase_path_squash_msg, "rebase-merge/message-squash")
97 /*
98 * If the current series of squash/fixups has not yet included a squash
99 * command, then this file exists and holds the commit message of the
100 * original "pick" commit. (If the series ends without a "squash"
101 * command, then this can be used as the commit message of the combined
102 * commit without opening the editor.)
103 */
104 static GIT_PATH_FUNC(rebase_path_fixup_msg, "rebase-merge/message-fixup")
105 /*
106 * This file contains the list fixup/squash commands that have been
107 * accumulated into message-fixup or message-squash so far.
108 */
109 static GIT_PATH_FUNC(rebase_path_current_fixups, "rebase-merge/current-fixups")
110 /*
111 * A script to set the GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and
112 * GIT_AUTHOR_DATE that will be used for the commit that is currently
113 * being rebased.
114 */
115 static GIT_PATH_FUNC(rebase_path_author_script, "rebase-merge/author-script")
116 /*
117 * When an "edit" rebase command is being processed, the SHA1 of the
118 * commit to be edited is recorded in this file. When "git rebase
119 * --continue" is executed, if there are any staged changes then they
120 * will be amended to the HEAD commit, but only provided the HEAD
121 * commit is still the commit to be edited. When any other rebase
122 * command is processed, this file is deleted.
123 */
124 static GIT_PATH_FUNC(rebase_path_amend, "rebase-merge/amend")
125 /*
126 * When we stop at a given patch via the "edit" command, this file contains
127 * the commit object name of the corresponding patch.
128 */
129 static GIT_PATH_FUNC(rebase_path_stopped_sha, "rebase-merge/stopped-sha")
130 /*
131 * For the post-rewrite hook, we make a list of rewritten commits and
132 * their new sha1s. The rewritten-pending list keeps the sha1s of
133 * commits that have been processed, but not committed yet,
134 * e.g. because they are waiting for a 'squash' command.
135 */
136 static GIT_PATH_FUNC(rebase_path_rewritten_list, "rebase-merge/rewritten-list")
137 static GIT_PATH_FUNC(rebase_path_rewritten_pending,
138 "rebase-merge/rewritten-pending")
139
140 /*
141 * The path of the file containing the OID of the "squash onto" commit, i.e.
142 * the dummy commit used for `reset [new root]`.
143 */
144 static GIT_PATH_FUNC(rebase_path_squash_onto, "rebase-merge/squash-onto")
145
146 /*
147 * The path of the file listing refs that need to be deleted after the rebase
148 * finishes. This is used by the `label` command to record the need for cleanup.
149 */
150 static GIT_PATH_FUNC(rebase_path_refs_to_delete, "rebase-merge/refs-to-delete")
151
152 /*
153 * The update-refs file stores a list of refs that will be updated at the end
154 * of the rebase sequence. The 'update-ref <ref>' commands in the todo file
155 * update the OIDs for the refs in this file, but the refs are not updated
156 * until the end of the rebase sequence.
157 *
158 * rebase_path_update_refs() returns the path to this file for a given
159 * worktree directory. For the current worktree, pass the_repository->gitdir.
160 */
161 static char *rebase_path_update_refs(const char *wt_git_dir)
162 {
163 return xstrfmt("%s/rebase-merge/update-refs", wt_git_dir);
164 }
165
166 /*
167 * The following files are written by git-rebase just after parsing the
168 * command-line.
169 */
170 static GIT_PATH_FUNC(rebase_path_gpg_sign_opt, "rebase-merge/gpg_sign_opt")
171 static GIT_PATH_FUNC(rebase_path_cdate_is_adate, "rebase-merge/cdate_is_adate")
172 static GIT_PATH_FUNC(rebase_path_ignore_date, "rebase-merge/ignore_date")
173 static GIT_PATH_FUNC(rebase_path_orig_head, "rebase-merge/orig-head")
174 static GIT_PATH_FUNC(rebase_path_verbose, "rebase-merge/verbose")
175 static GIT_PATH_FUNC(rebase_path_quiet, "rebase-merge/quiet")
176 static GIT_PATH_FUNC(rebase_path_signoff, "rebase-merge/signoff")
177 static GIT_PATH_FUNC(rebase_path_head_name, "rebase-merge/head-name")
178 static GIT_PATH_FUNC(rebase_path_onto, "rebase-merge/onto")
179 static GIT_PATH_FUNC(rebase_path_autostash, "rebase-merge/autostash")
180 static GIT_PATH_FUNC(rebase_path_strategy, "rebase-merge/strategy")
181 static GIT_PATH_FUNC(rebase_path_strategy_opts, "rebase-merge/strategy_opts")
182 static GIT_PATH_FUNC(rebase_path_allow_rerere_autoupdate, "rebase-merge/allow_rerere_autoupdate")
183 static GIT_PATH_FUNC(rebase_path_reschedule_failed_exec, "rebase-merge/reschedule-failed-exec")
184 static GIT_PATH_FUNC(rebase_path_no_reschedule_failed_exec, "rebase-merge/no-reschedule-failed-exec")
185 static GIT_PATH_FUNC(rebase_path_drop_redundant_commits, "rebase-merge/drop_redundant_commits")
186 static GIT_PATH_FUNC(rebase_path_keep_redundant_commits, "rebase-merge/keep_redundant_commits")
187
188 /**
189 * A 'struct update_refs_record' represents a value in the update-refs
190 * list. We use a string_list to map refs to these (before, after) pairs.
191 */
192 struct update_ref_record {
193 struct object_id before;
194 struct object_id after;
195 };
196
197 static struct update_ref_record *init_update_ref_record(const char *ref)
198 {
199 struct update_ref_record *rec;
200
201 CALLOC_ARRAY(rec, 1);
202
203 oidcpy(&rec->before, null_oid());
204 oidcpy(&rec->after, null_oid());
205
206 /* This may fail, but that's fine, we will keep the null OID. */
207 read_ref(ref, &rec->before);
208
209 return rec;
210 }
211
212 static int git_sequencer_config(const char *k, const char *v, void *cb)
213 {
214 struct replay_opts *opts = cb;
215 int status;
216
217 if (!strcmp(k, "commit.cleanup")) {
218 const char *s;
219
220 status = git_config_string(&s, k, v);
221 if (status)
222 return status;
223
224 if (!strcmp(s, "verbatim")) {
225 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_NONE;
226 opts->explicit_cleanup = 1;
227 } else if (!strcmp(s, "whitespace")) {
228 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_SPACE;
229 opts->explicit_cleanup = 1;
230 } else if (!strcmp(s, "strip")) {
231 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_ALL;
232 opts->explicit_cleanup = 1;
233 } else if (!strcmp(s, "scissors")) {
234 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_SCISSORS;
235 opts->explicit_cleanup = 1;
236 } else {
237 warning(_("invalid commit message cleanup mode '%s'"),
238 s);
239 }
240
241 free((char *)s);
242 return status;
243 }
244
245 if (!strcmp(k, "commit.gpgsign")) {
246 opts->gpg_sign = git_config_bool(k, v) ? xstrdup("") : NULL;
247 return 0;
248 }
249
250 if (!opts->default_strategy && !strcmp(k, "pull.twohead")) {
251 int ret = git_config_string((const char**)&opts->default_strategy, k, v);
252 if (ret == 0) {
253 /*
254 * pull.twohead is allowed to be multi-valued; we only
255 * care about the first value.
256 */
257 char *tmp = strchr(opts->default_strategy, ' ');
258 if (tmp)
259 *tmp = '\0';
260 }
261 return ret;
262 }
263
264 if (opts->action == REPLAY_REVERT && !strcmp(k, "revert.reference"))
265 opts->commit_use_reference = git_config_bool(k, v);
266
267 status = git_gpg_config(k, v, NULL);
268 if (status)
269 return status;
270
271 return git_diff_basic_config(k, v, NULL);
272 }
273
274 void sequencer_init_config(struct replay_opts *opts)
275 {
276 opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_NONE;
277 git_config(git_sequencer_config, opts);
278 }
279
280 static inline int is_rebase_i(const struct replay_opts *opts)
281 {
282 return opts->action == REPLAY_INTERACTIVE_REBASE;
283 }
284
285 static const char *get_dir(const struct replay_opts *opts)
286 {
287 if (is_rebase_i(opts))
288 return rebase_path();
289 return git_path_seq_dir();
290 }
291
292 static const char *get_todo_path(const struct replay_opts *opts)
293 {
294 if (is_rebase_i(opts))
295 return rebase_path_todo();
296 return git_path_todo_file();
297 }
298
299 /*
300 * Returns 0 for non-conforming footer
301 * Returns 1 for conforming footer
302 * Returns 2 when sob exists within conforming footer
303 * Returns 3 when sob exists within conforming footer as last entry
304 */
305 static int has_conforming_footer(struct strbuf *sb, struct strbuf *sob,
306 size_t ignore_footer)
307 {
308 struct process_trailer_options opts = PROCESS_TRAILER_OPTIONS_INIT;
309 struct trailer_info info;
310 size_t i;
311 int found_sob = 0, found_sob_last = 0;
312 char saved_char;
313
314 opts.no_divider = 1;
315
316 if (ignore_footer) {
317 saved_char = sb->buf[sb->len - ignore_footer];
318 sb->buf[sb->len - ignore_footer] = '\0';
319 }
320
321 trailer_info_get(&info, sb->buf, &opts);
322
323 if (ignore_footer)
324 sb->buf[sb->len - ignore_footer] = saved_char;
325
326 if (info.trailer_start == info.trailer_end)
327 return 0;
328
329 for (i = 0; i < info.trailer_nr; i++)
330 if (sob && !strncmp(info.trailers[i], sob->buf, sob->len)) {
331 found_sob = 1;
332 if (i == info.trailer_nr - 1)
333 found_sob_last = 1;
334 }
335
336 trailer_info_release(&info);
337
338 if (found_sob_last)
339 return 3;
340 if (found_sob)
341 return 2;
342 return 1;
343 }
344
345 static const char *gpg_sign_opt_quoted(struct replay_opts *opts)
346 {
347 static struct strbuf buf = STRBUF_INIT;
348
349 strbuf_reset(&buf);
350 if (opts->gpg_sign)
351 sq_quotef(&buf, "-S%s", opts->gpg_sign);
352 return buf.buf;
353 }
354
355 void replay_opts_release(struct replay_opts *opts)
356 {
357 free(opts->gpg_sign);
358 free(opts->reflog_action);
359 free(opts->default_strategy);
360 free(opts->strategy);
361 for (size_t i = 0; i < opts->xopts_nr; i++)
362 free(opts->xopts[i]);
363 free(opts->xopts);
364 strbuf_release(&opts->current_fixups);
365 if (opts->revs)
366 release_revisions(opts->revs);
367 free(opts->revs);
368 }
369
370 int sequencer_remove_state(struct replay_opts *opts)
371 {
372 struct strbuf buf = STRBUF_INIT;
373 int ret = 0;
374
375 if (is_rebase_i(opts) &&
376 strbuf_read_file(&buf, rebase_path_refs_to_delete(), 0) > 0) {
377 char *p = buf.buf;
378 while (*p) {
379 char *eol = strchr(p, '\n');
380 if (eol)
381 *eol = '\0';
382 if (delete_ref("(rebase) cleanup", p, NULL, 0) < 0) {
383 warning(_("could not delete '%s'"), p);
384 ret = -1;
385 }
386 if (!eol)
387 break;
388 p = eol + 1;
389 }
390 }
391
392 strbuf_reset(&buf);
393 strbuf_addstr(&buf, get_dir(opts));
394 if (remove_dir_recursively(&buf, 0))
395 ret = error(_("could not remove '%s'"), buf.buf);
396 strbuf_release(&buf);
397
398 return ret;
399 }
400
401 static const char *action_name(const struct replay_opts *opts)
402 {
403 switch (opts->action) {
404 case REPLAY_REVERT:
405 return N_("revert");
406 case REPLAY_PICK:
407 return N_("cherry-pick");
408 case REPLAY_INTERACTIVE_REBASE:
409 return N_("rebase");
410 }
411 die(_("unknown action: %d"), opts->action);
412 }
413
414 struct commit_message {
415 char *parent_label;
416 char *label;
417 char *subject;
418 const char *message;
419 };
420
421 static const char *short_commit_name(struct commit *commit)
422 {
423 return find_unique_abbrev(&commit->object.oid, DEFAULT_ABBREV);
424 }
425
426 static int get_message(struct commit *commit, struct commit_message *out)
427 {
428 const char *abbrev, *subject;
429 int subject_len;
430
431 out->message = logmsg_reencode(commit, NULL, get_commit_output_encoding());
432 abbrev = short_commit_name(commit);
433
434 subject_len = find_commit_subject(out->message, &subject);
435
436 out->subject = xmemdupz(subject, subject_len);
437 out->label = xstrfmt("%s (%s)", abbrev, out->subject);
438 out->parent_label = xstrfmt("parent of %s", out->label);
439
440 return 0;
441 }
442
443 static void free_message(struct commit *commit, struct commit_message *msg)
444 {
445 free(msg->parent_label);
446 free(msg->label);
447 free(msg->subject);
448 unuse_commit_buffer(commit, msg->message);
449 }
450
451 static void print_advice(struct repository *r, int show_hint,
452 struct replay_opts *opts)
453 {
454 char *msg = getenv("GIT_CHERRY_PICK_HELP");
455
456 if (msg) {
457 advise("%s\n", msg);
458 /*
459 * A conflict has occurred but the porcelain
460 * (typically rebase --interactive) wants to take care
461 * of the commit itself so remove CHERRY_PICK_HEAD
462 */
463 refs_delete_ref(get_main_ref_store(r), "", "CHERRY_PICK_HEAD",
464 NULL, 0);
465 return;
466 }
467
468 if (show_hint) {
469 if (opts->no_commit)
470 advise(_("after resolving the conflicts, mark the corrected paths\n"
471 "with 'git add <paths>' or 'git rm <paths>'"));
472 else if (opts->action == REPLAY_PICK)
473 advise(_("After resolving the conflicts, mark them with\n"
474 "\"git add/rm <pathspec>\", then run\n"
475 "\"git cherry-pick --continue\".\n"
476 "You can instead skip this commit with \"git cherry-pick --skip\".\n"
477 "To abort and get back to the state before \"git cherry-pick\",\n"
478 "run \"git cherry-pick --abort\"."));
479 else if (opts->action == REPLAY_REVERT)
480 advise(_("After resolving the conflicts, mark them with\n"
481 "\"git add/rm <pathspec>\", then run\n"
482 "\"git revert --continue\".\n"
483 "You can instead skip this commit with \"git revert --skip\".\n"
484 "To abort and get back to the state before \"git revert\",\n"
485 "run \"git revert --abort\"."));
486 else
487 BUG("unexpected pick action in print_advice()");
488 }
489 }
490
491 static int write_message(const void *buf, size_t len, const char *filename,
492 int append_eol)
493 {
494 struct lock_file msg_file = LOCK_INIT;
495
496 int msg_fd = hold_lock_file_for_update(&msg_file, filename, 0);
497 if (msg_fd < 0)
498 return error_errno(_("could not lock '%s'"), filename);
499 if (write_in_full(msg_fd, buf, len) < 0) {
500 error_errno(_("could not write to '%s'"), filename);
501 rollback_lock_file(&msg_file);
502 return -1;
503 }
504 if (append_eol && write(msg_fd, "\n", 1) < 0) {
505 error_errno(_("could not write eol to '%s'"), filename);
506 rollback_lock_file(&msg_file);
507 return -1;
508 }
509 if (commit_lock_file(&msg_file) < 0)
510 return error(_("failed to finalize '%s'"), filename);
511
512 return 0;
513 }
514
515 int read_oneliner(struct strbuf *buf,
516 const char *path, unsigned flags)
517 {
518 int orig_len = buf->len;
519
520 if (strbuf_read_file(buf, path, 0) < 0) {
521 if ((flags & READ_ONELINER_WARN_MISSING) ||
522 (errno != ENOENT && errno != ENOTDIR))
523 warning_errno(_("could not read '%s'"), path);
524 return 0;
525 }
526
527 if (buf->len > orig_len && buf->buf[buf->len - 1] == '\n') {
528 if (--buf->len > orig_len && buf->buf[buf->len - 1] == '\r')
529 --buf->len;
530 buf->buf[buf->len] = '\0';
531 }
532
533 if ((flags & READ_ONELINER_SKIP_IF_EMPTY) && buf->len == orig_len)
534 return 0;
535
536 return 1;
537 }
538
539 static struct tree *empty_tree(struct repository *r)
540 {
541 return lookup_tree(r, the_hash_algo->empty_tree);
542 }
543
544 static int error_dirty_index(struct repository *repo, struct replay_opts *opts)
545 {
546 if (repo_read_index_unmerged(repo))
547 return error_resolve_conflict(action_name(opts));
548
549 error(_("your local changes would be overwritten by %s."),
550 _(action_name(opts)));
551
552 if (advice_enabled(ADVICE_COMMIT_BEFORE_MERGE))
553 advise(_("commit your changes or stash them to proceed."));
554 return -1;
555 }
556
557 static void update_abort_safety_file(void)
558 {
559 struct object_id head;
560
561 /* Do nothing on a single-pick */
562 if (!file_exists(git_path_seq_dir()))
563 return;
564
565 if (!get_oid("HEAD", &head))
566 write_file(git_path_abort_safety_file(), "%s", oid_to_hex(&head));
567 else
568 write_file(git_path_abort_safety_file(), "%s", "");
569 }
570
571 static int fast_forward_to(struct repository *r,
572 const struct object_id *to,
573 const struct object_id *from,
574 int unborn,
575 struct replay_opts *opts)
576 {
577 struct ref_transaction *transaction;
578 struct strbuf sb = STRBUF_INIT;
579 struct strbuf err = STRBUF_INIT;
580
581 repo_read_index(r);
582 if (checkout_fast_forward(r, from, to, 1))
583 return -1; /* the callee should have complained already */
584
585 strbuf_addf(&sb, "%s: fast-forward", action_name(opts));
586
587 transaction = ref_transaction_begin(&err);
588 if (!transaction ||
589 ref_transaction_update(transaction, "HEAD",
590 to, unborn && !is_rebase_i(opts) ?
591 null_oid() : from,
592 0, sb.buf, &err) ||
593 ref_transaction_commit(transaction, &err)) {
594 ref_transaction_free(transaction);
595 error("%s", err.buf);
596 strbuf_release(&sb);
597 strbuf_release(&err);
598 return -1;
599 }
600
601 strbuf_release(&sb);
602 strbuf_release(&err);
603 ref_transaction_free(transaction);
604 update_abort_safety_file();
605 return 0;
606 }
607
608 enum commit_msg_cleanup_mode get_cleanup_mode(const char *cleanup_arg,
609 int use_editor)
610 {
611 if (!cleanup_arg || !strcmp(cleanup_arg, "default"))
612 return use_editor ? COMMIT_MSG_CLEANUP_ALL :
613 COMMIT_MSG_CLEANUP_SPACE;
614 else if (!strcmp(cleanup_arg, "verbatim"))
615 return COMMIT_MSG_CLEANUP_NONE;
616 else if (!strcmp(cleanup_arg, "whitespace"))
617 return COMMIT_MSG_CLEANUP_SPACE;
618 else if (!strcmp(cleanup_arg, "strip"))
619 return COMMIT_MSG_CLEANUP_ALL;
620 else if (!strcmp(cleanup_arg, "scissors"))
621 return use_editor ? COMMIT_MSG_CLEANUP_SCISSORS :
622 COMMIT_MSG_CLEANUP_SPACE;
623 else
624 die(_("Invalid cleanup mode %s"), cleanup_arg);
625 }
626
627 /*
628 * NB using int rather than enum cleanup_mode to stop clang's
629 * -Wtautological-constant-out-of-range-compare complaining that the comparison
630 * is always true.
631 */
632 static const char *describe_cleanup_mode(int cleanup_mode)
633 {
634 static const char *modes[] = { "whitespace",
635 "verbatim",
636 "scissors",
637 "strip" };
638
639 if (cleanup_mode < ARRAY_SIZE(modes))
640 return modes[cleanup_mode];
641
642 BUG("invalid cleanup_mode provided (%d)", cleanup_mode);
643 }
644
645 void append_conflicts_hint(struct index_state *istate,
646 struct strbuf *msgbuf, enum commit_msg_cleanup_mode cleanup_mode)
647 {
648 int i;
649
650 if (cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS) {
651 strbuf_addch(msgbuf, '\n');
652 wt_status_append_cut_line(msgbuf);
653 strbuf_addch(msgbuf, comment_line_char);
654 }
655
656 strbuf_addch(msgbuf, '\n');
657 strbuf_commented_addf(msgbuf, "Conflicts:\n");
658 for (i = 0; i < istate->cache_nr;) {
659 const struct cache_entry *ce = istate->cache[i++];
660 if (ce_stage(ce)) {
661 strbuf_commented_addf(msgbuf, "\t%s\n", ce->name);
662 while (i < istate->cache_nr &&
663 !strcmp(ce->name, istate->cache[i]->name))
664 i++;
665 }
666 }
667 }
668
669 static int do_recursive_merge(struct repository *r,
670 struct commit *base, struct commit *next,
671 const char *base_label, const char *next_label,
672 struct object_id *head, struct strbuf *msgbuf,
673 struct replay_opts *opts)
674 {
675 struct merge_options o;
676 struct merge_result result;
677 struct tree *next_tree, *base_tree, *head_tree;
678 int clean, show_output;
679 int i;
680 struct lock_file index_lock = LOCK_INIT;
681
682 if (repo_hold_locked_index(r, &index_lock, LOCK_REPORT_ON_ERROR) < 0)
683 return -1;
684
685 repo_read_index(r);
686
687 init_merge_options(&o, r);
688 o.ancestor = base ? base_label : "(empty tree)";
689 o.branch1 = "HEAD";
690 o.branch2 = next ? next_label : "(empty tree)";
691 if (is_rebase_i(opts))
692 o.buffer_output = 2;
693 o.show_rename_progress = 1;
694
695 head_tree = parse_tree_indirect(head);
696 next_tree = next ? get_commit_tree(next) : empty_tree(r);
697 base_tree = base ? get_commit_tree(base) : empty_tree(r);
698
699 for (i = 0; i < opts->xopts_nr; i++)
700 parse_merge_opt(&o, opts->xopts[i]);
701
702 if (!opts->strategy || !strcmp(opts->strategy, "ort")) {
703 memset(&result, 0, sizeof(result));
704 merge_incore_nonrecursive(&o, base_tree, head_tree, next_tree,
705 &result);
706 show_output = !is_rebase_i(opts) || !result.clean;
707 /*
708 * TODO: merge_switch_to_result will update index/working tree;
709 * we only really want to do that if !result.clean || this is
710 * the final patch to be picked. But determining this is the
711 * final patch would take some work, and "head_tree" would need
712 * to be replace with the tree the index matched before we
713 * started doing any picks.
714 */
715 merge_switch_to_result(&o, head_tree, &result, 1, show_output);
716 clean = result.clean;
717 } else {
718 ensure_full_index(r->index);
719 clean = merge_trees(&o, head_tree, next_tree, base_tree);
720 if (is_rebase_i(opts) && clean <= 0)
721 fputs(o.obuf.buf, stdout);
722 strbuf_release(&o.obuf);
723 }
724 if (clean < 0) {
725 rollback_lock_file(&index_lock);
726 return clean;
727 }
728
729 if (write_locked_index(r->index, &index_lock,
730 COMMIT_LOCK | SKIP_IF_UNCHANGED))
731 /*
732 * TRANSLATORS: %s will be "revert", "cherry-pick" or
733 * "rebase".
734 */
735 return error(_("%s: Unable to write new index file"),
736 _(action_name(opts)));
737
738 if (!clean)
739 append_conflicts_hint(r->index, msgbuf,
740 opts->default_msg_cleanup);
741
742 return !clean;
743 }
744
745 static struct object_id *get_cache_tree_oid(struct index_state *istate)
746 {
747 if (!cache_tree_fully_valid(istate->cache_tree))
748 if (cache_tree_update(istate, 0)) {
749 error(_("unable to update cache tree"));
750 return NULL;
751 }
752
753 return &istate->cache_tree->oid;
754 }
755
756 static int is_index_unchanged(struct repository *r)
757 {
758 struct object_id head_oid, *cache_tree_oid;
759 struct commit *head_commit;
760 struct index_state *istate = r->index;
761
762 if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING, &head_oid, NULL))
763 return error(_("could not resolve HEAD commit"));
764
765 head_commit = lookup_commit(r, &head_oid);
766
767 /*
768 * If head_commit is NULL, check_commit, called from
769 * lookup_commit, would have indicated that head_commit is not
770 * a commit object already. parse_commit() will return failure
771 * without further complaints in such a case. Otherwise, if
772 * the commit is invalid, parse_commit() will complain. So
773 * there is nothing for us to say here. Just return failure.
774 */
775 if (parse_commit(head_commit))
776 return -1;
777
778 if (!(cache_tree_oid = get_cache_tree_oid(istate)))
779 return -1;
780
781 return oideq(cache_tree_oid, get_commit_tree_oid(head_commit));
782 }
783
784 static int write_author_script(const char *message)
785 {
786 struct strbuf buf = STRBUF_INIT;
787 const char *eol;
788 int res;
789
790 for (;;)
791 if (!*message || starts_with(message, "\n")) {
792 missing_author:
793 /* Missing 'author' line? */
794 unlink(rebase_path_author_script());
795 return 0;
796 } else if (skip_prefix(message, "author ", &message))
797 break;
798 else if ((eol = strchr(message, '\n')))
799 message = eol + 1;
800 else
801 goto missing_author;
802
803 strbuf_addstr(&buf, "GIT_AUTHOR_NAME='");
804 while (*message && *message != '\n' && *message != '\r')
805 if (skip_prefix(message, " <", &message))
806 break;
807 else if (*message != '\'')
808 strbuf_addch(&buf, *(message++));
809 else
810 strbuf_addf(&buf, "'\\%c'", *(message++));
811 strbuf_addstr(&buf, "'\nGIT_AUTHOR_EMAIL='");
812 while (*message && *message != '\n' && *message != '\r')
813 if (skip_prefix(message, "> ", &message))
814 break;
815 else if (*message != '\'')
816 strbuf_addch(&buf, *(message++));
817 else
818 strbuf_addf(&buf, "'\\%c'", *(message++));
819 strbuf_addstr(&buf, "'\nGIT_AUTHOR_DATE='@");
820 while (*message && *message != '\n' && *message != '\r')
821 if (*message != '\'')
822 strbuf_addch(&buf, *(message++));
823 else
824 strbuf_addf(&buf, "'\\%c'", *(message++));
825 strbuf_addch(&buf, '\'');
826 res = write_message(buf.buf, buf.len, rebase_path_author_script(), 1);
827 strbuf_release(&buf);
828 return res;
829 }
830
831 /**
832 * Take a series of KEY='VALUE' lines where VALUE part is
833 * sq-quoted, and append <KEY, VALUE> at the end of the string list
834 */
835 static int parse_key_value_squoted(char *buf, struct string_list *list)
836 {
837 while (*buf) {
838 struct string_list_item *item;
839 char *np;
840 char *cp = strchr(buf, '=');
841 if (!cp) {
842 np = strchrnul(buf, '\n');
843 return error(_("no key present in '%.*s'"),
844 (int) (np - buf), buf);
845 }
846 np = strchrnul(cp, '\n');
847 *cp++ = '\0';
848 item = string_list_append(list, buf);
849
850 buf = np + (*np == '\n');
851 *np = '\0';
852 cp = sq_dequote(cp);
853 if (!cp)
854 return error(_("unable to dequote value of '%s'"),
855 item->string);
856 item->util = xstrdup(cp);
857 }
858 return 0;
859 }
860
861 /**
862 * Reads and parses the state directory's "author-script" file, and sets name,
863 * email and date accordingly.
864 * Returns 0 on success, -1 if the file could not be parsed.
865 *
866 * The author script is of the format:
867 *
868 * GIT_AUTHOR_NAME='$author_name'
869 * GIT_AUTHOR_EMAIL='$author_email'
870 * GIT_AUTHOR_DATE='$author_date'
871 *
872 * where $author_name, $author_email and $author_date are quoted. We are strict
873 * with our parsing, as the file was meant to be eval'd in the now-removed
874 * git-am.sh/git-rebase--interactive.sh scripts, and thus if the file differs
875 * from what this function expects, it is better to bail out than to do
876 * something that the user does not expect.
877 */
878 int read_author_script(const char *path, char **name, char **email, char **date,
879 int allow_missing)
880 {
881 struct strbuf buf = STRBUF_INIT;
882 struct string_list kv = STRING_LIST_INIT_DUP;
883 int retval = -1; /* assume failure */
884 int i, name_i = -2, email_i = -2, date_i = -2, err = 0;
885
886 if (strbuf_read_file(&buf, path, 256) <= 0) {
887 strbuf_release(&buf);
888 if (errno == ENOENT && allow_missing)
889 return 0;
890 else
891 return error_errno(_("could not open '%s' for reading"),
892 path);
893 }
894
895 if (parse_key_value_squoted(buf.buf, &kv))
896 goto finish;
897
898 for (i = 0; i < kv.nr; i++) {
899 if (!strcmp(kv.items[i].string, "GIT_AUTHOR_NAME")) {
900 if (name_i != -2)
901 name_i = error(_("'GIT_AUTHOR_NAME' already given"));
902 else
903 name_i = i;
904 } else if (!strcmp(kv.items[i].string, "GIT_AUTHOR_EMAIL")) {
905 if (email_i != -2)
906 email_i = error(_("'GIT_AUTHOR_EMAIL' already given"));
907 else
908 email_i = i;
909 } else if (!strcmp(kv.items[i].string, "GIT_AUTHOR_DATE")) {
910 if (date_i != -2)
911 date_i = error(_("'GIT_AUTHOR_DATE' already given"));
912 else
913 date_i = i;
914 } else {
915 err = error(_("unknown variable '%s'"),
916 kv.items[i].string);
917 }
918 }
919 if (name_i == -2)
920 error(_("missing 'GIT_AUTHOR_NAME'"));
921 if (email_i == -2)
922 error(_("missing 'GIT_AUTHOR_EMAIL'"));
923 if (date_i == -2)
924 error(_("missing 'GIT_AUTHOR_DATE'"));
925 if (name_i < 0 || email_i < 0 || date_i < 0 || err)
926 goto finish;
927 *name = kv.items[name_i].util;
928 *email = kv.items[email_i].util;
929 *date = kv.items[date_i].util;
930 retval = 0;
931 finish:
932 string_list_clear(&kv, !!retval);
933 strbuf_release(&buf);
934 return retval;
935 }
936
937 /*
938 * Read a GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL AND GIT_AUTHOR_DATE from a
939 * file with shell quoting into struct strvec. Returns -1 on
940 * error, 0 otherwise.
941 */
942 static int read_env_script(struct strvec *env)
943 {
944 char *name, *email, *date;
945
946 if (read_author_script(rebase_path_author_script(),
947 &name, &email, &date, 0))
948 return -1;
949
950 strvec_pushf(env, "GIT_AUTHOR_NAME=%s", name);
951 strvec_pushf(env, "GIT_AUTHOR_EMAIL=%s", email);
952 strvec_pushf(env, "GIT_AUTHOR_DATE=%s", date);
953 free(name);
954 free(email);
955 free(date);
956
957 return 0;
958 }
959
960 static char *get_author(const char *message)
961 {
962 size_t len;
963 const char *a;
964
965 a = find_commit_header(message, "author", &len);
966 if (a)
967 return xmemdupz(a, len);
968
969 return NULL;
970 }
971
972 static const char *author_date_from_env(const struct strvec *env)
973 {
974 int i;
975 const char *date;
976
977 for (i = 0; i < env->nr; i++)
978 if (skip_prefix(env->v[i],
979 "GIT_AUTHOR_DATE=", &date))
980 return date;
981 /*
982 * If GIT_AUTHOR_DATE is missing we should have already errored out when
983 * reading the script
984 */
985 BUG("GIT_AUTHOR_DATE missing from author script");
986 }
987
988 static const char staged_changes_advice[] =
989 N_("you have staged changes in your working tree\n"
990 "If these changes are meant to be squashed into the previous commit, run:\n"
991 "\n"
992 " git commit --amend %s\n"
993 "\n"
994 "If they are meant to go into a new commit, run:\n"
995 "\n"
996 " git commit %s\n"
997 "\n"
998 "In both cases, once you're done, continue with:\n"
999 "\n"
1000 " git rebase --continue\n");
1001
1002 #define ALLOW_EMPTY (1<<0)
1003 #define EDIT_MSG (1<<1)
1004 #define AMEND_MSG (1<<2)
1005 #define CLEANUP_MSG (1<<3)
1006 #define VERIFY_MSG (1<<4)
1007 #define CREATE_ROOT_COMMIT (1<<5)
1008 #define VERBATIM_MSG (1<<6)
1009
1010 static int run_command_silent_on_success(struct child_process *cmd)
1011 {
1012 struct strbuf buf = STRBUF_INIT;
1013 int rc;
1014
1015 cmd->stdout_to_stderr = 1;
1016 rc = pipe_command(cmd,
1017 NULL, 0,
1018 NULL, 0,
1019 &buf, 0);
1020
1021 if (rc)
1022 fputs(buf.buf, stderr);
1023 strbuf_release(&buf);
1024 return rc;
1025 }
1026
1027 /*
1028 * If we are cherry-pick, and if the merge did not result in
1029 * hand-editing, we will hit this commit and inherit the original
1030 * author date and name.
1031 *
1032 * If we are revert, or if our cherry-pick results in a hand merge,
1033 * we had better say that the current user is responsible for that.
1034 *
1035 * An exception is when run_git_commit() is called during an
1036 * interactive rebase: in that case, we will want to retain the
1037 * author metadata.
1038 */
1039 static int run_git_commit(const char *defmsg,
1040 struct replay_opts *opts,
1041 unsigned int flags)
1042 {
1043 struct child_process cmd = CHILD_PROCESS_INIT;
1044
1045 if ((flags & CLEANUP_MSG) && (flags & VERBATIM_MSG))
1046 BUG("CLEANUP_MSG and VERBATIM_MSG are mutually exclusive");
1047
1048 cmd.git_cmd = 1;
1049
1050 if (is_rebase_i(opts) &&
1051 ((opts->committer_date_is_author_date && !opts->ignore_date) ||
1052 !(!defmsg && (flags & AMEND_MSG))) &&
1053 read_env_script(&cmd.env)) {
1054 const char *gpg_opt = gpg_sign_opt_quoted(opts);
1055
1056 return error(_(staged_changes_advice),
1057 gpg_opt, gpg_opt);
1058 }
1059
1060 strvec_pushf(&cmd.env, GIT_REFLOG_ACTION "=%s", opts->reflog_message);
1061
1062 if (opts->committer_date_is_author_date)
1063 strvec_pushf(&cmd.env, "GIT_COMMITTER_DATE=%s",
1064 opts->ignore_date ?
1065 "" :
1066 author_date_from_env(&cmd.env));
1067 if (opts->ignore_date)
1068 strvec_push(&cmd.env, "GIT_AUTHOR_DATE=");
1069
1070 strvec_push(&cmd.args, "commit");
1071
1072 if (!(flags & VERIFY_MSG))
1073 strvec_push(&cmd.args, "-n");
1074 if ((flags & AMEND_MSG))
1075 strvec_push(&cmd.args, "--amend");
1076 if (opts->gpg_sign)
1077 strvec_pushf(&cmd.args, "-S%s", opts->gpg_sign);
1078 else
1079 strvec_push(&cmd.args, "--no-gpg-sign");
1080 if (defmsg)
1081 strvec_pushl(&cmd.args, "-F", defmsg, NULL);
1082 else if (!(flags & EDIT_MSG))
1083 strvec_pushl(&cmd.args, "-C", "HEAD", NULL);
1084 if ((flags & CLEANUP_MSG))
1085 strvec_push(&cmd.args, "--cleanup=strip");
1086 if ((flags & VERBATIM_MSG))
1087 strvec_push(&cmd.args, "--cleanup=verbatim");
1088 if ((flags & EDIT_MSG))
1089 strvec_push(&cmd.args, "-e");
1090 else if (!(flags & CLEANUP_MSG) &&
1091 !opts->signoff && !opts->record_origin &&
1092 !opts->explicit_cleanup)
1093 strvec_push(&cmd.args, "--cleanup=verbatim");
1094
1095 if ((flags & ALLOW_EMPTY))
1096 strvec_push(&cmd.args, "--allow-empty");
1097
1098 if (!(flags & EDIT_MSG))
1099 strvec_push(&cmd.args, "--allow-empty-message");
1100
1101 if (is_rebase_i(opts) && !(flags & EDIT_MSG))
1102 return run_command_silent_on_success(&cmd);
1103 else
1104 return run_command(&cmd);
1105 }
1106
1107 static int rest_is_empty(const struct strbuf *sb, int start)
1108 {
1109 int i, eol;
1110 const char *nl;
1111
1112 /* Check if the rest is just whitespace and Signed-off-by's. */
1113 for (i = start; i < sb->len; i++) {
1114 nl = memchr(sb->buf + i, '\n', sb->len - i);
1115 if (nl)
1116 eol = nl - sb->buf;
1117 else
1118 eol = sb->len;
1119
1120 if (strlen(sign_off_header) <= eol - i &&
1121 starts_with(sb->buf + i, sign_off_header)) {
1122 i = eol;
1123 continue;
1124 }
1125 while (i < eol)
1126 if (!isspace(sb->buf[i++]))
1127 return 0;
1128 }
1129
1130 return 1;
1131 }
1132
1133 void cleanup_message(struct strbuf *msgbuf,
1134 enum commit_msg_cleanup_mode cleanup_mode, int verbose)
1135 {
1136 if (verbose || /* Truncate the message just before the diff, if any. */
1137 cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS)
1138 strbuf_setlen(msgbuf, wt_status_locate_end(msgbuf->buf, msgbuf->len));
1139 if (cleanup_mode != COMMIT_MSG_CLEANUP_NONE)
1140 strbuf_stripspace(msgbuf, cleanup_mode == COMMIT_MSG_CLEANUP_ALL);
1141 }
1142
1143 /*
1144 * Find out if the message in the strbuf contains only whitespace and
1145 * Signed-off-by lines.
1146 */
1147 int message_is_empty(const struct strbuf *sb,
1148 enum commit_msg_cleanup_mode cleanup_mode)
1149 {
1150 if (cleanup_mode == COMMIT_MSG_CLEANUP_NONE && sb->len)
1151 return 0;
1152 return rest_is_empty(sb, 0);
1153 }
1154
1155 /*
1156 * See if the user edited the message in the editor or left what
1157 * was in the template intact
1158 */
1159 int template_untouched(const struct strbuf *sb, const char *template_file,
1160 enum commit_msg_cleanup_mode cleanup_mode)
1161 {
1162 struct strbuf tmpl = STRBUF_INIT;
1163 const char *start;
1164
1165 if (cleanup_mode == COMMIT_MSG_CLEANUP_NONE && sb->len)
1166 return 0;
1167
1168 if (!template_file || strbuf_read_file(&tmpl, template_file, 0) <= 0)
1169 return 0;
1170
1171 strbuf_stripspace(&tmpl, cleanup_mode == COMMIT_MSG_CLEANUP_ALL);
1172 if (!skip_prefix(sb->buf, tmpl.buf, &start))
1173 start = sb->buf;
1174 strbuf_release(&tmpl);
1175 return rest_is_empty(sb, start - sb->buf);
1176 }
1177
1178 int update_head_with_reflog(const struct commit *old_head,
1179 const struct object_id *new_head,
1180 const char *action, const struct strbuf *msg,
1181 struct strbuf *err)
1182 {
1183 struct ref_transaction *transaction;
1184 struct strbuf sb = STRBUF_INIT;
1185 const char *nl;
1186 int ret = 0;
1187
1188 if (action) {
1189 strbuf_addstr(&sb, action);
1190 strbuf_addstr(&sb, ": ");
1191 }
1192
1193 nl = strchr(msg->buf, '\n');
1194 if (nl) {
1195 strbuf_add(&sb, msg->buf, nl + 1 - msg->buf);
1196 } else {
1197 strbuf_addbuf(&sb, msg);
1198 strbuf_addch(&sb, '\n');
1199 }
1200
1201 transaction = ref_transaction_begin(err);
1202 if (!transaction ||
1203 ref_transaction_update(transaction, "HEAD", new_head,
1204 old_head ? &old_head->object.oid : null_oid(),
1205 0, sb.buf, err) ||
1206 ref_transaction_commit(transaction, err)) {
1207 ret = -1;
1208 }
1209 ref_transaction_free(transaction);
1210 strbuf_release(&sb);
1211
1212 return ret;
1213 }
1214
1215 static int run_rewrite_hook(const struct object_id *oldoid,
1216 const struct object_id *newoid)
1217 {
1218 struct child_process proc = CHILD_PROCESS_INIT;
1219 int code;
1220 struct strbuf sb = STRBUF_INIT;
1221 const char *hook_path = find_hook("post-rewrite");
1222
1223 if (!hook_path)
1224 return 0;
1225
1226 strvec_pushl(&proc.args, hook_path, "amend", NULL);
1227 proc.in = -1;
1228 proc.stdout_to_stderr = 1;
1229 proc.trace2_hook_name = "post-rewrite";
1230
1231 code = start_command(&proc);
1232 if (code)
1233 return code;
1234 strbuf_addf(&sb, "%s %s\n", oid_to_hex(oldoid), oid_to_hex(newoid));
1235 sigchain_push(SIGPIPE, SIG_IGN);
1236 write_in_full(proc.in, sb.buf, sb.len);
1237 close(proc.in);
1238 strbuf_release(&sb);
1239 sigchain_pop(SIGPIPE);
1240 return finish_command(&proc);
1241 }
1242
1243 void commit_post_rewrite(struct repository *r,
1244 const struct commit *old_head,
1245 const struct object_id *new_head)
1246 {
1247 struct notes_rewrite_cfg *cfg;
1248
1249 cfg = init_copy_notes_for_rewrite("amend");
1250 if (cfg) {
1251 /* we are amending, so old_head is not NULL */
1252 copy_note_for_rewrite(cfg, &old_head->object.oid, new_head);
1253 finish_copy_notes_for_rewrite(r, cfg, "Notes added by 'git commit --amend'");
1254 }
1255 run_rewrite_hook(&old_head->object.oid, new_head);
1256 }
1257
1258 static int run_prepare_commit_msg_hook(struct repository *r,
1259 struct strbuf *msg,
1260 const char *commit)
1261 {
1262 int ret = 0;
1263 const char *name, *arg1 = NULL, *arg2 = NULL;
1264
1265 name = git_path_commit_editmsg();
1266 if (write_message(msg->buf, msg->len, name, 0))
1267 return -1;
1268
1269 if (commit) {
1270 arg1 = "commit";
1271 arg2 = commit;
1272 } else {
1273 arg1 = "message";
1274 }
1275 if (run_commit_hook(0, r->index_file, NULL, "prepare-commit-msg", name,
1276 arg1, arg2, NULL))
1277 ret = error(_("'prepare-commit-msg' hook failed"));
1278
1279 return ret;
1280 }
1281
1282 static const char implicit_ident_advice_noconfig[] =
1283 N_("Your name and email address were configured automatically based\n"
1284 "on your username and hostname. Please check that they are accurate.\n"
1285 "You can suppress this message by setting them explicitly. Run the\n"
1286 "following command and follow the instructions in your editor to edit\n"
1287 "your configuration file:\n"
1288 "\n"
1289 " git config --global --edit\n"
1290 "\n"
1291 "After doing this, you may fix the identity used for this commit with:\n"
1292 "\n"
1293 " git commit --amend --reset-author\n");
1294
1295 static const char implicit_ident_advice_config[] =
1296 N_("Your name and email address were configured automatically based\n"
1297 "on your username and hostname. Please check that they are accurate.\n"
1298 "You can suppress this message by setting them explicitly:\n"
1299 "\n"
1300 " git config --global user.name \"Your Name\"\n"
1301 " git config --global user.email you@example.com\n"
1302 "\n"
1303 "After doing this, you may fix the identity used for this commit with:\n"
1304 "\n"
1305 " git commit --amend --reset-author\n");
1306
1307 static const char *implicit_ident_advice(void)
1308 {
1309 char *user_config = interpolate_path("~/.gitconfig", 0);
1310 char *xdg_config = xdg_config_home("config");
1311 int config_exists = file_exists(user_config) || file_exists(xdg_config);
1312
1313 free(user_config);
1314 free(xdg_config);
1315
1316 if (config_exists)
1317 return _(implicit_ident_advice_config);
1318 else
1319 return _(implicit_ident_advice_noconfig);
1320
1321 }
1322
1323 void print_commit_summary(struct repository *r,
1324 const char *prefix,
1325 const struct object_id *oid,
1326 unsigned int flags)
1327 {
1328 struct rev_info rev;
1329 struct commit *commit;
1330 struct strbuf format = STRBUF_INIT;
1331 const char *head;
1332 struct pretty_print_context pctx = {0};
1333 struct strbuf author_ident = STRBUF_INIT;
1334 struct strbuf committer_ident = STRBUF_INIT;
1335 struct ref_store *refs;
1336
1337 commit = lookup_commit(r, oid);
1338 if (!commit)
1339 die(_("couldn't look up newly created commit"));
1340 if (parse_commit(commit))
1341 die(_("could not parse newly created commit"));
1342
1343 strbuf_addstr(&format, "format:%h] %s");
1344
1345 format_commit_message(commit, "%an <%ae>", &author_ident, &pctx);
1346 format_commit_message(commit, "%cn <%ce>", &committer_ident, &pctx);
1347 if (strbuf_cmp(&author_ident, &committer_ident)) {
1348 strbuf_addstr(&format, "\n Author: ");
1349 strbuf_addbuf_percentquote(&format, &author_ident);
1350 }
1351 if (flags & SUMMARY_SHOW_AUTHOR_DATE) {
1352 struct strbuf date = STRBUF_INIT;
1353
1354 format_commit_message(commit, "%ad", &date, &pctx);
1355 strbuf_addstr(&format, "\n Date: ");
1356 strbuf_addbuf_percentquote(&format, &date);
1357 strbuf_release(&date);
1358 }
1359 if (!committer_ident_sufficiently_given()) {
1360 strbuf_addstr(&format, "\n Committer: ");
1361 strbuf_addbuf_percentquote(&format, &committer_ident);
1362 if (advice_enabled(ADVICE_IMPLICIT_IDENTITY)) {
1363 strbuf_addch(&format, '\n');
1364 strbuf_addstr(&format, implicit_ident_advice());
1365 }
1366 }
1367 strbuf_release(&author_ident);
1368 strbuf_release(&committer_ident);
1369
1370 repo_init_revisions(r, &rev, prefix);
1371 setup_revisions(0, NULL, &rev, NULL);
1372
1373 rev.diff = 1;
1374 rev.diffopt.output_format =
1375 DIFF_FORMAT_SHORTSTAT | DIFF_FORMAT_SUMMARY;
1376
1377 rev.verbose_header = 1;
1378 rev.show_root_diff = 1;
1379 get_commit_format(format.buf, &rev);
1380 rev.always_show_header = 0;
1381 rev.diffopt.detect_rename = DIFF_DETECT_RENAME;
1382 diff_setup_done(&rev.diffopt);
1383
1384 refs = get_main_ref_store(the_repository);
1385 head = refs_resolve_ref_unsafe(refs, "HEAD", 0, NULL, NULL);
1386 if (!head)
1387 die(_("unable to resolve HEAD after creating commit"));
1388 if (!strcmp(head, "HEAD"))
1389 head = _("detached HEAD");
1390 else
1391 skip_prefix(head, "refs/heads/", &head);
1392 printf("[%s%s ", head, (flags & SUMMARY_INITIAL_COMMIT) ?
1393 _(" (root-commit)") : "");
1394
1395 if (!log_tree_commit(&rev, commit)) {
1396 rev.always_show_header = 1;
1397 rev.use_terminator = 1;
1398 log_tree_commit(&rev, commit);
1399 }
1400
1401 release_revisions(&rev);
1402 strbuf_release(&format);
1403 }
1404
1405 static int parse_head(struct repository *r, struct commit **head)
1406 {
1407 struct commit *current_head;
1408 struct object_id oid;
1409
1410 if (get_oid("HEAD", &oid)) {
1411 current_head = NULL;
1412 } else {
1413 current_head = lookup_commit_reference(r, &oid);
1414 if (!current_head)
1415 return error(_("could not parse HEAD"));
1416 if (!oideq(&oid, &current_head->object.oid)) {
1417 warning(_("HEAD %s is not a commit!"),
1418 oid_to_hex(&oid));
1419 }
1420 if (parse_commit(current_head))
1421 return error(_("could not parse HEAD commit"));
1422 }
1423 *head = current_head;
1424
1425 return 0;
1426 }
1427
1428 /*
1429 * Try to commit without forking 'git commit'. In some cases we need
1430 * to run 'git commit' to display an error message
1431 *
1432 * Returns:
1433 * -1 - error unable to commit
1434 * 0 - success
1435 * 1 - run 'git commit'
1436 */
1437 static int try_to_commit(struct repository *r,
1438 struct strbuf *msg, const char *author,
1439 struct replay_opts *opts, unsigned int flags,
1440 struct object_id *oid)
1441 {
1442 struct object_id tree;
1443 struct commit *current_head = NULL;
1444 struct commit_list *parents = NULL;
1445 struct commit_extra_header *extra = NULL;
1446 struct strbuf err = STRBUF_INIT;
1447 struct strbuf commit_msg = STRBUF_INIT;
1448 char *amend_author = NULL;
1449 const char *committer = NULL;
1450 const char *hook_commit = NULL;
1451 enum commit_msg_cleanup_mode cleanup;
1452 int res = 0;
1453
1454 if ((flags & CLEANUP_MSG) && (flags & VERBATIM_MSG))
1455 BUG("CLEANUP_MSG and VERBATIM_MSG are mutually exclusive");
1456
1457 if (parse_head(r, &current_head))
1458 return -1;
1459
1460 if (flags & AMEND_MSG) {
1461 const char *exclude_gpgsig[] = { "gpgsig", "gpgsig-sha256", NULL };
1462 const char *out_enc = get_commit_output_encoding();
1463 const char *message = logmsg_reencode(current_head, NULL,
1464 out_enc);
1465
1466 if (!msg) {
1467 const char *orig_message = NULL;
1468
1469 find_commit_subject(message, &orig_message);
1470 msg = &commit_msg;
1471 strbuf_addstr(msg, orig_message);
1472 hook_commit = "HEAD";
1473 }
1474 author = amend_author = get_author(message);
1475 unuse_commit_buffer(current_head, message);
1476 if (!author) {
1477 res = error(_("unable to parse commit author"));
1478 goto out;
1479 }
1480 parents = copy_commit_list(current_head->parents);
1481 extra = read_commit_extra_headers(current_head, exclude_gpgsig);
1482 } else if (current_head &&
1483 (!(flags & CREATE_ROOT_COMMIT) || (flags & AMEND_MSG))) {
1484 commit_list_insert(current_head, &parents);
1485 }
1486
1487 if (write_index_as_tree(&tree, r->index, r->index_file, 0, NULL)) {
1488 res = error(_("git write-tree failed to write a tree"));
1489 goto out;
1490 }
1491
1492 if (!(flags & ALLOW_EMPTY)) {
1493 struct commit *first_parent = current_head;
1494
1495 if (flags & AMEND_MSG) {
1496 if (current_head->parents) {
1497 first_parent = current_head->parents->item;
1498 if (repo_parse_commit(r, first_parent)) {
1499 res = error(_("could not parse HEAD commit"));
1500 goto out;
1501 }
1502 } else {
1503 first_parent = NULL;
1504 }
1505 }
1506 if (oideq(first_parent
1507 ? get_commit_tree_oid(first_parent)
1508 : the_hash_algo->empty_tree,
1509 &tree)) {
1510 res = 1; /* run 'git commit' to display error message */
1511 goto out;
1512 }
1513 }
1514
1515 if (hook_exists("prepare-commit-msg")) {
1516 res = run_prepare_commit_msg_hook(r, msg, hook_commit);
1517 if (res)
1518 goto out;
1519 if (strbuf_read_file(&commit_msg, git_path_commit_editmsg(),
1520 2048) < 0) {
1521 res = error_errno(_("unable to read commit message "
1522 "from '%s'"),
1523 git_path_commit_editmsg());
1524 goto out;
1525 }
1526 msg = &commit_msg;
1527 }
1528
1529 if (flags & CLEANUP_MSG)
1530 cleanup = COMMIT_MSG_CLEANUP_ALL;
1531 else if (flags & VERBATIM_MSG)
1532 cleanup = COMMIT_MSG_CLEANUP_NONE;
1533 else if ((opts->signoff || opts->record_origin) &&
1534 !opts->explicit_cleanup)
1535 cleanup = COMMIT_MSG_CLEANUP_SPACE;
1536 else
1537 cleanup = opts->default_msg_cleanup;
1538
1539 if (cleanup != COMMIT_MSG_CLEANUP_NONE)
1540 strbuf_stripspace(msg, cleanup == COMMIT_MSG_CLEANUP_ALL);
1541 if ((flags & EDIT_MSG) && message_is_empty(msg, cleanup)) {
1542 res = 1; /* run 'git commit' to display error message */
1543 goto out;
1544 }
1545
1546 if (opts->committer_date_is_author_date) {
1547 struct ident_split id;
1548 struct strbuf date = STRBUF_INIT;
1549
1550 if (!opts->ignore_date) {
1551 if (split_ident_line(&id, author, (int)strlen(author)) < 0) {
1552 res = error(_("invalid author identity '%s'"),
1553 author);
1554 goto out;
1555 }
1556 if (!id.date_begin) {
1557 res = error(_(
1558 "corrupt author: missing date information"));
1559 goto out;
1560 }
1561 strbuf_addf(&date, "@%.*s %.*s",
1562 (int)(id.date_end - id.date_begin),
1563 id.date_begin,
1564 (int)(id.tz_end - id.tz_begin),
1565 id.tz_begin);
1566 } else {
1567 reset_ident_date();
1568 }
1569 committer = fmt_ident(getenv("GIT_COMMITTER_NAME"),
1570 getenv("GIT_COMMITTER_EMAIL"),
1571 WANT_COMMITTER_IDENT,
1572 opts->ignore_date ? NULL : date.buf,
1573 IDENT_STRICT);
1574 strbuf_release(&date);
1575 } else {
1576 reset_ident_date();
1577 }
1578
1579 if (opts->ignore_date) {
1580 struct ident_split id;
1581 char *name, *email;
1582
1583 if (split_ident_line(&id, author, strlen(author)) < 0) {
1584 error(_("invalid author identity '%s'"), author);
1585 goto out;
1586 }
1587 name = xmemdupz(id.name_begin, id.name_end - id.name_begin);
1588 email = xmemdupz(id.mail_begin, id.mail_end - id.mail_begin);
1589 author = fmt_ident(name, email, WANT_AUTHOR_IDENT, NULL,
1590 IDENT_STRICT);
1591 free(name);
1592 free(email);
1593 }
1594
1595 if (commit_tree_extended(msg->buf, msg->len, &tree, parents, oid,
1596 author, committer, opts->gpg_sign, extra)) {
1597 res = error(_("failed to write commit object"));
1598 goto out;
1599 }
1600
1601 if (update_head_with_reflog(current_head, oid, opts->reflog_message,
1602 msg, &err)) {
1603 res = error("%s", err.buf);
1604 goto out;
1605 }
1606
1607 run_commit_hook(0, r->index_file, NULL, "post-commit", NULL);
1608 if (flags & AMEND_MSG)
1609 commit_post_rewrite(r, current_head, oid);
1610
1611 out:
1612 free_commit_extra_headers(extra);
1613 strbuf_release(&err);
1614 strbuf_release(&commit_msg);
1615 free(amend_author);
1616
1617 return res;
1618 }
1619
1620 static int write_rebase_head(struct object_id *oid)
1621 {
1622 if (update_ref("rebase", "REBASE_HEAD", oid,
1623 NULL, REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR))
1624 return error(_("could not update %s"), "REBASE_HEAD");
1625
1626 return 0;
1627 }
1628
1629 static int do_commit(struct repository *r,
1630 const char *msg_file, const char *author,
1631 struct replay_opts *opts, unsigned int flags,
1632 struct object_id *oid)
1633 {
1634 int res = 1;
1635
1636 if (!(flags & EDIT_MSG) && !(flags & VERIFY_MSG)) {
1637 struct object_id oid;
1638 struct strbuf sb = STRBUF_INIT;
1639
1640 if (msg_file && strbuf_read_file(&sb, msg_file, 2048) < 0)
1641 return error_errno(_("unable to read commit message "
1642 "from '%s'"),
1643 msg_file);
1644
1645 res = try_to_commit(r, msg_file ? &sb : NULL,
1646 author, opts, flags, &oid);
1647 strbuf_release(&sb);
1648 if (!res) {
1649 refs_delete_ref(get_main_ref_store(r), "",
1650 "CHERRY_PICK_HEAD", NULL, 0);
1651 unlink(git_path_merge_msg(r));
1652 if (!is_rebase_i(opts))
1653 print_commit_summary(r, NULL, &oid,
1654 SUMMARY_SHOW_AUTHOR_DATE);
1655 return res;
1656 }
1657 }
1658 if (res == 1) {
1659 if (is_rebase_i(opts) && oid)
1660 if (write_rebase_head(oid))
1661 return -1;
1662 return run_git_commit(msg_file, opts, flags);
1663 }
1664
1665 return res;
1666 }
1667
1668 static int is_original_commit_empty(struct commit *commit)
1669 {
1670 const struct object_id *ptree_oid;
1671
1672 if (parse_commit(commit))
1673 return error(_("could not parse commit %s"),
1674 oid_to_hex(&commit->object.oid));
1675 if (commit->parents) {
1676 struct commit *parent = commit->parents->item;
1677 if (parse_commit(parent))
1678 return error(_("could not parse parent commit %s"),
1679 oid_to_hex(&parent->object.oid));
1680 ptree_oid = get_commit_tree_oid(parent);
1681 } else {
1682 ptree_oid = the_hash_algo->empty_tree; /* commit is root */
1683 }
1684
1685 return oideq(ptree_oid, get_commit_tree_oid(commit));
1686 }
1687
1688 /*
1689 * Should empty commits be allowed? Return status:
1690 * <0: Error in is_index_unchanged(r) or is_original_commit_empty(commit)
1691 * 0: Halt on empty commit
1692 * 1: Allow empty commit
1693 * 2: Drop empty commit
1694 */
1695 static int allow_empty(struct repository *r,
1696 struct replay_opts *opts,
1697 struct commit *commit)
1698 {
1699 int index_unchanged, originally_empty;
1700
1701 /*
1702 * Four cases:
1703 *
1704 * (1) we do not allow empty at all and error out.
1705 *
1706 * (2) we allow ones that were initially empty, and
1707 * just drop the ones that become empty
1708 *
1709 * (3) we allow ones that were initially empty, but
1710 * halt for the ones that become empty;
1711 *
1712 * (4) we allow both.
1713 */
1714 if (!opts->allow_empty)
1715 return 0; /* let "git commit" barf as necessary */
1716
1717 index_unchanged = is_index_unchanged(r);
1718 if (index_unchanged < 0)
1719 return index_unchanged;
1720 if (!index_unchanged)
1721 return 0; /* we do not have to say --allow-empty */
1722
1723 if (opts->keep_redundant_commits)
1724 return 1;
1725
1726 originally_empty = is_original_commit_empty(commit);
1727 if (originally_empty < 0)
1728 return originally_empty;
1729 if (originally_empty)
1730 return 1;
1731 else if (opts->drop_redundant_commits)
1732 return 2;
1733 else
1734 return 0;
1735 }
1736
1737 static struct {
1738 char c;
1739 const char *str;
1740 } todo_command_info[] = {
1741 [TODO_PICK] = { 'p', "pick" },
1742 [TODO_REVERT] = { 0, "revert" },
1743 [TODO_EDIT] = { 'e', "edit" },
1744 [TODO_REWORD] = { 'r', "reword" },
1745 [TODO_FIXUP] = { 'f', "fixup" },
1746 [TODO_SQUASH] = { 's', "squash" },
1747 [TODO_EXEC] = { 'x', "exec" },
1748 [TODO_BREAK] = { 'b', "break" },
1749 [TODO_LABEL] = { 'l', "label" },
1750 [TODO_RESET] = { 't', "reset" },
1751 [TODO_MERGE] = { 'm', "merge" },
1752 [TODO_UPDATE_REF] = { 'u', "update-ref" },
1753 [TODO_NOOP] = { 0, "noop" },
1754 [TODO_DROP] = { 'd', "drop" },
1755 [TODO_COMMENT] = { 0, NULL },
1756 };
1757
1758 static const char *command_to_string(const enum todo_command command)
1759 {
1760 if (command < TODO_COMMENT)
1761 return todo_command_info[command].str;
1762 die(_("unknown command: %d"), command);
1763 }
1764
1765 static char command_to_char(const enum todo_command command)
1766 {
1767 if (command < TODO_COMMENT)
1768 return todo_command_info[command].c;
1769 return comment_line_char;
1770 }
1771
1772 static int is_noop(const enum todo_command command)
1773 {
1774 return TODO_NOOP <= command;
1775 }
1776
1777 static int is_fixup(enum todo_command command)
1778 {
1779 return command == TODO_FIXUP || command == TODO_SQUASH;
1780 }
1781
1782 /* Does this command create a (non-merge) commit? */
1783 static int is_pick_or_similar(enum todo_command command)
1784 {
1785 switch (command) {
1786 case TODO_PICK:
1787 case TODO_REVERT:
1788 case TODO_EDIT:
1789 case TODO_REWORD:
1790 case TODO_FIXUP:
1791 case TODO_SQUASH:
1792 return 1;
1793 default:
1794 return 0;
1795 }
1796 }
1797
1798 enum todo_item_flags {
1799 TODO_EDIT_MERGE_MSG = (1 << 0),
1800 TODO_REPLACE_FIXUP_MSG = (1 << 1),
1801 TODO_EDIT_FIXUP_MSG = (1 << 2),
1802 };
1803
1804 static const char first_commit_msg_str[] = N_("This is the 1st commit message:");
1805 static const char nth_commit_msg_fmt[] = N_("This is the commit message #%d:");
1806 static const char skip_first_commit_msg_str[] = N_("The 1st commit message will be skipped:");
1807 static const char skip_nth_commit_msg_fmt[] = N_("The commit message #%d will be skipped:");
1808 static const char combined_commit_msg_fmt[] = N_("This is a combination of %d commits.");
1809
1810 static int is_fixup_flag(enum todo_command command, unsigned flag)
1811 {
1812 return command == TODO_FIXUP && ((flag & TODO_REPLACE_FIXUP_MSG) ||
1813 (flag & TODO_EDIT_FIXUP_MSG));
1814 }
1815
1816 /*
1817 * Wrapper around strbuf_add_commented_lines() which avoids double
1818 * commenting commit subjects.
1819 */
1820 static void add_commented_lines(struct strbuf *buf, const void *str, size_t len)
1821 {
1822 const char *s = str;
1823 while (len > 0 && s[0] == comment_line_char) {
1824 size_t count;
1825 const char *n = memchr(s, '\n', len);
1826 if (!n)
1827 count = len;
1828 else
1829 count = n - s + 1;
1830 strbuf_add(buf, s, count);
1831 s += count;
1832 len -= count;
1833 }
1834 strbuf_add_commented_lines(buf, s, len);
1835 }
1836
1837 /* Does the current fixup chain contain a squash command? */
1838 static int seen_squash(struct replay_opts *opts)
1839 {
1840 return starts_with(opts->current_fixups.buf, "squash") ||
1841 strstr(opts->current_fixups.buf, "\nsquash");
1842 }
1843
1844 static void update_comment_bufs(struct strbuf *buf1, struct strbuf *buf2, int n)
1845 {
1846 strbuf_setlen(buf1, 2);
1847 strbuf_addf(buf1, _(nth_commit_msg_fmt), n);
1848 strbuf_addch(buf1, '\n');
1849 strbuf_setlen(buf2, 2);
1850 strbuf_addf(buf2, _(skip_nth_commit_msg_fmt), n);
1851 strbuf_addch(buf2, '\n');
1852 }
1853
1854 /*
1855 * Comment out any un-commented commit messages, updating the message comments
1856 * to say they will be skipped but do not comment out the empty lines that
1857 * surround commit messages and their comments.
1858 */
1859 static void update_squash_message_for_fixup(struct strbuf *msg)
1860 {
1861 void (*copy_lines)(struct strbuf *, const void *, size_t) = strbuf_add;
1862 struct strbuf buf1 = STRBUF_INIT, buf2 = STRBUF_INIT;
1863 const char *s, *start;
1864 char *orig_msg;
1865 size_t orig_msg_len;
1866 int i = 1;
1867
1868 strbuf_addf(&buf1, "# %s\n", _(first_commit_msg_str));
1869 strbuf_addf(&buf2, "# %s\n", _(skip_first_commit_msg_str));
1870 s = start = orig_msg = strbuf_detach(msg, &orig_msg_len);
1871 while (s) {
1872 const char *next;
1873 size_t off;
1874 if (skip_prefix(s, buf1.buf, &next)) {
1875 /*
1876 * Copy the last message, preserving the blank line
1877 * preceding the current line
1878 */
1879 off = (s > start + 1 && s[-2] == '\n') ? 1 : 0;
1880 copy_lines(msg, start, s - start - off);
1881 if (off)
1882 strbuf_addch(msg, '\n');
1883 /*
1884 * The next message needs to be commented out but the
1885 * message header is already commented out so just copy
1886 * it and the blank line that follows it.
1887 */
1888 strbuf_addbuf(msg, &buf2);
1889 if (*next == '\n')
1890 strbuf_addch(msg, *next++);
1891 start = s = next;
1892 copy_lines = add_commented_lines;
1893 update_comment_bufs(&buf1, &buf2, ++i);
1894 } else if (skip_prefix(s, buf2.buf, &next)) {
1895 off = (s > start + 1 && s[-2] == '\n') ? 1 : 0;
1896 copy_lines(msg, start, s - start - off);
1897 start = s - off;
1898 s = next;
1899 copy_lines = strbuf_add;
1900 update_comment_bufs(&buf1, &buf2, ++i);
1901 } else {
1902 s = strchr(s, '\n');
1903 if (s)
1904 s++;
1905 }
1906 }
1907 copy_lines(msg, start, orig_msg_len - (start - orig_msg));
1908 free(orig_msg);
1909 strbuf_release(&buf1);
1910 strbuf_release(&buf2);
1911 }
1912
1913 static int append_squash_message(struct strbuf *buf, const char *body,
1914 enum todo_command command, struct replay_opts *opts,
1915 unsigned flag)
1916 {
1917 const char *fixup_msg;
1918 size_t commented_len = 0, fixup_off;
1919 /*
1920 * amend is non-interactive and not normally used with fixup!
1921 * or squash! commits, so only comment out those subjects when
1922 * squashing commit messages.
1923 */
1924 if (starts_with(body, "amend!") ||
1925 ((command == TODO_SQUASH || seen_squash(opts)) &&
1926 (starts_with(body, "squash!") || starts_with(body, "fixup!"))))
1927 commented_len = commit_subject_length(body);
1928
1929 strbuf_addf(buf, "\n%c ", comment_line_char);
1930 strbuf_addf(buf, _(nth_commit_msg_fmt),
1931 ++opts->current_fixup_count + 1);
1932 strbuf_addstr(buf, "\n\n");
1933 strbuf_add_commented_lines(buf, body, commented_len);
1934 /* buf->buf may be reallocated so store an offset into the buffer */
1935 fixup_off = buf->len;
1936 strbuf_addstr(buf, body + commented_len);
1937
1938 /* fixup -C after squash behaves like squash */
1939 if (is_fixup_flag(command, flag) && !seen_squash(opts)) {
1940 /*
1941 * We're replacing the commit message so we need to
1942 * append the Signed-off-by: trailer if the user
1943 * requested '--signoff'.
1944 */
1945 if (opts->signoff)
1946 append_signoff(buf, 0, 0);
1947
1948 if ((command == TODO_FIXUP) &&
1949 (flag & TODO_REPLACE_FIXUP_MSG) &&
1950 (file_exists(rebase_path_fixup_msg()) ||
1951 !file_exists(rebase_path_squash_msg()))) {
1952 fixup_msg = skip_blank_lines(buf->buf + fixup_off);
1953 if (write_message(fixup_msg, strlen(fixup_msg),
1954 rebase_path_fixup_msg(), 0) < 0)
1955 return error(_("cannot write '%s'"),
1956 rebase_path_fixup_msg());
1957 } else {
1958 unlink(rebase_path_fixup_msg());
1959 }
1960 } else {
1961 unlink(rebase_path_fixup_msg());
1962 }
1963
1964 return 0;
1965 }
1966
1967 static int update_squash_messages(struct repository *r,
1968 enum todo_command command,
1969 struct commit *commit,
1970 struct replay_opts *opts,
1971 unsigned flag)
1972 {
1973 struct strbuf buf = STRBUF_INIT;
1974 int res = 0;
1975 const char *message, *body;
1976 const char *encoding = get_commit_output_encoding();
1977
1978 if (opts->current_fixup_count > 0) {
1979 struct strbuf header = STRBUF_INIT;
1980 char *eol;
1981
1982 if (strbuf_read_file(&buf, rebase_path_squash_msg(), 9) <= 0)
1983 return error(_("could not read '%s'"),
1984 rebase_path_squash_msg());
1985
1986 eol = buf.buf[0] != comment_line_char ?
1987 buf.buf : strchrnul(buf.buf, '\n');
1988
1989 strbuf_addf(&header, "%c ", comment_line_char);
1990 strbuf_addf(&header, _(combined_commit_msg_fmt),
1991 opts->current_fixup_count + 2);
1992 strbuf_splice(&buf, 0, eol - buf.buf, header.buf, header.len);
1993 strbuf_release(&header);
1994 if (is_fixup_flag(command, flag) && !seen_squash(opts))
1995 update_squash_message_for_fixup(&buf);
1996 } else {
1997 struct object_id head;
1998 struct commit *head_commit;
1999 const char *head_message, *body;
2000
2001 if (get_oid("HEAD", &head))
2002 return error(_("need a HEAD to fixup"));
2003 if (!(head_commit = lookup_commit_reference(r, &head)))
2004 return error(_("could not read HEAD"));
2005 if (!(head_message = logmsg_reencode(head_commit, NULL, encoding)))
2006 return error(_("could not read HEAD's commit message"));
2007
2008 find_commit_subject(head_message, &body);
2009 if (command == TODO_FIXUP && !flag && write_message(body, strlen(body),
2010 rebase_path_fixup_msg(), 0) < 0) {
2011 unuse_commit_buffer(head_commit, head_message);
2012 return error(_("cannot write '%s'"), rebase_path_fixup_msg());
2013 }
2014 strbuf_addf(&buf, "%c ", comment_line_char);
2015 strbuf_addf(&buf, _(combined_commit_msg_fmt), 2);
2016 strbuf_addf(&buf, "\n%c ", comment_line_char);
2017 strbuf_addstr(&buf, is_fixup_flag(command, flag) ?
2018 _(skip_first_commit_msg_str) :
2019 _(first_commit_msg_str));
2020 strbuf_addstr(&buf, "\n\n");
2021 if (is_fixup_flag(command, flag))
2022 strbuf_add_commented_lines(&buf, body, strlen(body));
2023 else
2024 strbuf_addstr(&buf, body);
2025
2026 unuse_commit_buffer(head_commit, head_message);
2027 }
2028
2029 if (!(message = logmsg_reencode(commit, NULL, encoding)))
2030 return error(_("could not read commit message of %s"),
2031 oid_to_hex(&commit->object.oid));
2032 find_commit_subject(message, &body);
2033
2034 if (command == TODO_SQUASH || is_fixup_flag(command, flag)) {
2035 res = append_squash_message(&buf, body, command, opts, flag);
2036 } else if (command == TODO_FIXUP) {
2037 strbuf_addf(&buf, "\n%c ", comment_line_char);
2038 strbuf_addf(&buf, _(skip_nth_commit_msg_fmt),
2039 ++opts->current_fixup_count + 1);
2040 strbuf_addstr(&buf, "\n\n");
2041 strbuf_add_commented_lines(&buf, body, strlen(body));
2042 } else
2043 return error(_("unknown command: %d"), command);
2044 unuse_commit_buffer(commit, message);
2045
2046 if (!res)
2047 res = write_message(buf.buf, buf.len, rebase_path_squash_msg(),
2048 0);
2049 strbuf_release(&buf);
2050
2051 if (!res) {
2052 strbuf_addf(&opts->current_fixups, "%s%s %s",
2053 opts->current_fixups.len ? "\n" : "",
2054 command_to_string(command),
2055 oid_to_hex(&commit->object.oid));
2056 res = write_message(opts->current_fixups.buf,
2057 opts->current_fixups.len,
2058 rebase_path_current_fixups(), 0);
2059 }
2060
2061 return res;
2062 }
2063
2064 static void flush_rewritten_pending(void)
2065 {
2066 struct strbuf buf = STRBUF_INIT;
2067 struct object_id newoid;
2068 FILE *out;
2069
2070 if (strbuf_read_file(&buf, rebase_path_rewritten_pending(), (GIT_MAX_HEXSZ + 1) * 2) > 0 &&
2071 !get_oid("HEAD", &newoid) &&
2072 (out = fopen_or_warn(rebase_path_rewritten_list(), "a"))) {
2073 char *bol = buf.buf, *eol;
2074
2075 while (*bol) {
2076 eol = strchrnul(bol, '\n');
2077 fprintf(out, "%.*s %s\n", (int)(eol - bol),
2078 bol, oid_to_hex(&newoid));
2079 if (!*eol)
2080 break;
2081 bol = eol + 1;
2082 }
2083 fclose(out);
2084 unlink(rebase_path_rewritten_pending());
2085 }
2086 strbuf_release(&buf);
2087 }
2088
2089 static void record_in_rewritten(struct object_id *oid,
2090 enum todo_command next_command)
2091 {
2092 FILE *out = fopen_or_warn(rebase_path_rewritten_pending(), "a");
2093
2094 if (!out)
2095 return;
2096
2097 fprintf(out, "%s\n", oid_to_hex(oid));
2098 fclose(out);
2099
2100 if (!is_fixup(next_command))
2101 flush_rewritten_pending();
2102 }
2103
2104 static int should_edit(struct replay_opts *opts) {
2105 if (opts->edit < 0)
2106 /*
2107 * Note that we only handle the case of non-conflicted
2108 * commits; continue_single_pick() handles the conflicted
2109 * commits itself instead of calling this function.
2110 */
2111 return (opts->action == REPLAY_REVERT && isatty(0)) ? 1 : 0;
2112 return opts->edit;
2113 }
2114
2115 static void refer_to_commit(struct replay_opts *opts,
2116 struct strbuf *msgbuf, struct commit *commit)
2117 {
2118 if (opts->commit_use_reference) {
2119 struct pretty_print_context ctx = {
2120 .abbrev = DEFAULT_ABBREV,
2121 .date_mode.type = DATE_SHORT,
2122 };
2123 format_commit_message(commit, "%h (%s, %ad)", msgbuf, &ctx);
2124 } else {
2125 strbuf_addstr(msgbuf, oid_to_hex(&commit->object.oid));
2126 }
2127 }
2128
2129 static int do_pick_commit(struct repository *r,
2130 struct todo_item *item,
2131 struct replay_opts *opts,
2132 int final_fixup, int *check_todo)
2133 {
2134 unsigned int flags = should_edit(opts) ? EDIT_MSG : 0;
2135 const char *msg_file = should_edit(opts) ? NULL : git_path_merge_msg(r);
2136 struct object_id head;
2137 struct commit *base, *next, *parent;
2138 const char *base_label, *next_label;
2139 char *author = NULL;
2140 struct commit_message msg = { NULL, NULL, NULL, NULL };
2141 struct strbuf msgbuf = STRBUF_INIT;
2142 int res, unborn = 0, reword = 0, allow, drop_commit;
2143 enum todo_command command = item->command;
2144 struct commit *commit = item->commit;
2145
2146 if (opts->no_commit) {
2147 /*
2148 * We do not intend to commit immediately. We just want to
2149 * merge the differences in, so let's compute the tree
2150 * that represents the "current" state for the merge machinery
2151 * to work on.
2152 */
2153 if (write_index_as_tree(&head, r->index, r->index_file, 0, NULL))
2154 return error(_("your index file is unmerged."));
2155 } else {
2156 unborn = get_oid("HEAD", &head);
2157 /* Do we want to generate a root commit? */
2158 if (is_pick_or_similar(command) && opts->have_squash_onto &&
2159 oideq(&head, &opts->squash_onto)) {
2160 if (is_fixup(command))
2161 return error(_("cannot fixup root commit"));
2162 flags |= CREATE_ROOT_COMMIT;
2163 unborn = 1;
2164 } else if (unborn)
2165 oidcpy(&head, the_hash_algo->empty_tree);
2166 if (index_differs_from(r, unborn ? empty_tree_oid_hex() : "HEAD",
2167 NULL, 0))
2168 return error_dirty_index(r, opts);
2169 }
2170 discard_index(r->index);
2171
2172 if (!commit->parents)
2173 parent = NULL;
2174 else if (commit->parents->next) {
2175 /* Reverting or cherry-picking a merge commit */
2176 int cnt;
2177 struct commit_list *p;
2178
2179 if (!opts->mainline)
2180 return error(_("commit %s is a merge but no -m option was given."),
2181 oid_to_hex(&commit->object.oid));
2182
2183 for (cnt = 1, p = commit->parents;
2184 cnt != opts->mainline && p;
2185 cnt++)
2186 p = p->next;
2187 if (cnt != opts->mainline || !p)
2188 return error(_("commit %s does not have parent %d"),
2189 oid_to_hex(&commit->object.oid), opts->mainline);
2190 parent = p->item;
2191 } else if (1 < opts->mainline)
2192 /*
2193 * Non-first parent explicitly specified as mainline for
2194 * non-merge commit
2195 */
2196 return error(_("commit %s does not have parent %d"),
2197 oid_to_hex(&commit->object.oid), opts->mainline);
2198 else
2199 parent = commit->parents->item;
2200
2201 if (get_message(commit, &msg) != 0)
2202 return error(_("cannot get commit message for %s"),
2203 oid_to_hex(&commit->object.oid));
2204
2205 if (opts->allow_ff && !is_fixup(command) &&
2206 ((parent && oideq(&parent->object.oid, &head)) ||
2207 (!parent && unborn))) {
2208 if (is_rebase_i(opts))
2209 write_author_script(msg.message);
2210 res = fast_forward_to(r, &commit->object.oid, &head, unborn,
2211 opts);
2212 if (res || command != TODO_REWORD)
2213 goto leave;
2214 reword = 1;
2215 msg_file = NULL;
2216 goto fast_forward_edit;
2217 }
2218 if (parent && parse_commit(parent) < 0)
2219 /* TRANSLATORS: The first %s will be a "todo" command like
2220 "revert" or "pick", the second %s a SHA1. */
2221 return error(_("%s: cannot parse parent commit %s"),
2222 command_to_string(command),
2223 oid_to_hex(&parent->object.oid));
2224
2225 /*
2226 * "commit" is an existing commit. We would want to apply
2227 * the difference it introduces since its first parent "prev"
2228 * on top of the current HEAD if we are cherry-pick. Or the
2229 * reverse of it if we are revert.
2230 */
2231
2232 if (command == TODO_REVERT) {
2233 base = commit;
2234 base_label = msg.label;
2235 next = parent;
2236 next_label = msg.parent_label;
2237 if (opts->commit_use_reference) {
2238 strbuf_addstr(&msgbuf,
2239 "# *** SAY WHY WE ARE REVERTING ON THE TITLE LINE ***");
2240 } else {
2241 strbuf_addstr(&msgbuf, "Revert \"");
2242 strbuf_addstr(&msgbuf, msg.subject);
2243 strbuf_addstr(&msgbuf, "\"");
2244 }
2245 strbuf_addstr(&msgbuf, "\n\nThis reverts commit ");
2246 refer_to_commit(opts, &msgbuf, commit);
2247
2248 if (commit->parents && commit->parents->next) {
2249 strbuf_addstr(&msgbuf, ", reversing\nchanges made to ");
2250 refer_to_commit(opts, &msgbuf, parent);
2251 }
2252 strbuf_addstr(&msgbuf, ".\n");
2253 } else {
2254 const char *p;
2255
2256 base = parent;
2257 base_label = msg.parent_label;
2258 next = commit;
2259 next_label = msg.label;
2260
2261 /* Append the commit log message to msgbuf. */
2262 if (find_commit_subject(msg.message, &p))
2263 strbuf_addstr(&msgbuf, p);
2264
2265 if (opts->record_origin) {
2266 strbuf_complete_line(&msgbuf);
2267 if (!has_conforming_footer(&msgbuf, NULL, 0))
2268 strbuf_addch(&msgbuf, '\n');
2269 strbuf_addstr(&msgbuf, cherry_picked_prefix);
2270 strbuf_addstr(&msgbuf, oid_to_hex(&commit->object.oid));
2271 strbuf_addstr(&msgbuf, ")\n");
2272 }
2273 if (!is_fixup(command))
2274 author = get_author(msg.message);
2275 }
2276
2277 if (command == TODO_REWORD)
2278 reword = 1;
2279 else if (is_fixup(command)) {
2280 if (update_squash_messages(r, command, commit,
2281 opts, item->flags)) {
2282 res = -1;
2283 goto leave;
2284 }
2285 flags |= AMEND_MSG;
2286 if (!final_fixup)
2287 msg_file = rebase_path_squash_msg();
2288 else if (file_exists(rebase_path_fixup_msg())) {
2289 flags |= VERBATIM_MSG;
2290 msg_file = rebase_path_fixup_msg();
2291 } else {
2292 const char *dest = git_path_squash_msg(r);
2293 unlink(dest);
2294 if (copy_file(dest, rebase_path_squash_msg(), 0666)) {
2295 res = error(_("could not rename '%s' to '%s'"),
2296 rebase_path_squash_msg(), dest);
2297 goto leave;
2298 }
2299 unlink(git_path_merge_msg(r));
2300 msg_file = dest;
2301 flags |= EDIT_MSG;
2302 }
2303 }
2304
2305 if (opts->signoff && !is_fixup(command))
2306 append_signoff(&msgbuf, 0, 0);
2307
2308 if (is_rebase_i(opts) && write_author_script(msg.message) < 0)
2309 res = -1;
2310 else if (!opts->strategy ||
2311 !strcmp(opts->strategy, "recursive") ||
2312 !strcmp(opts->strategy, "ort") ||
2313 command == TODO_REVERT) {
2314 res = do_recursive_merge(r, base, next, base_label, next_label,
2315 &head, &msgbuf, opts);
2316 if (res < 0)
2317 goto leave;
2318
2319 res |= write_message(msgbuf.buf, msgbuf.len,
2320 git_path_merge_msg(r), 0);
2321 } else {
2322 struct commit_list *common = NULL;
2323 struct commit_list *remotes = NULL;
2324
2325 res = write_message(msgbuf.buf, msgbuf.len,
2326 git_path_merge_msg(r), 0);
2327
2328 commit_list_insert(base, &common);
2329 commit_list_insert(next, &remotes);
2330 res |= try_merge_command(r, opts->strategy,
2331 opts->xopts_nr, (const char **)opts->xopts,
2332 common, oid_to_hex(&head), remotes);
2333 free_commit_list(common);
2334 free_commit_list(remotes);
2335 }
2336
2337 /*
2338 * If the merge was clean or if it failed due to conflict, we write
2339 * CHERRY_PICK_HEAD for the subsequent invocation of commit to use.
2340 * However, if the merge did not even start, then we don't want to
2341 * write it at all.
2342 */
2343 if ((command == TODO_PICK || command == TODO_REWORD ||
2344 command == TODO_EDIT) && !opts->no_commit &&
2345 (res == 0 || res == 1) &&
2346 update_ref(NULL, "CHERRY_PICK_HEAD", &commit->object.oid, NULL,
2347 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR))
2348 res = -1;
2349 if (command == TODO_REVERT && ((opts->no_commit && res == 0) || res == 1) &&
2350 update_ref(NULL, "REVERT_HEAD", &commit->object.oid, NULL,
2351 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR))
2352 res = -1;
2353
2354 if (res) {
2355 error(command == TODO_REVERT
2356 ? _("could not revert %s... %s")
2357 : _("could not apply %s... %s"),
2358 short_commit_name(commit), msg.subject);
2359 print_advice(r, res == 1, opts);
2360 repo_rerere(r, opts->allow_rerere_auto);
2361 goto leave;
2362 }
2363
2364 drop_commit = 0;
2365 allow = allow_empty(r, opts, commit);
2366 if (allow < 0) {
2367 res = allow;
2368 goto leave;
2369 } else if (allow == 1) {
2370 flags |= ALLOW_EMPTY;
2371 } else if (allow == 2) {
2372 drop_commit = 1;
2373 refs_delete_ref(get_main_ref_store(r), "", "CHERRY_PICK_HEAD",
2374 NULL, 0);
2375 unlink(git_path_merge_msg(r));
2376 unlink(git_path_auto_merge(r));
2377 fprintf(stderr,
2378 _("dropping %s %s -- patch contents already upstream\n"),
2379 oid_to_hex(&commit->object.oid), msg.subject);
2380 } /* else allow == 0 and there's nothing special to do */
2381 if (!opts->no_commit && !drop_commit) {
2382 if (author || command == TODO_REVERT || (flags & AMEND_MSG))
2383 res = do_commit(r, msg_file, author, opts, flags,
2384 commit? &commit->object.oid : NULL);
2385 else
2386 res = error(_("unable to parse commit author"));
2387 *check_todo = !!(flags & EDIT_MSG);
2388 if (!res && reword) {
2389 fast_forward_edit:
2390 res = run_git_commit(NULL, opts, EDIT_MSG |
2391 VERIFY_MSG | AMEND_MSG |
2392 (flags & ALLOW_EMPTY));
2393 *check_todo = 1;
2394 }
2395 }
2396
2397
2398 if (!res && final_fixup) {
2399 unlink(rebase_path_fixup_msg());
2400 unlink(rebase_path_squash_msg());
2401 unlink(rebase_path_current_fixups());
2402 strbuf_reset(&opts->current_fixups);
2403 opts->current_fixup_count = 0;
2404 }
2405
2406 leave:
2407 free_message(commit, &msg);
2408 free(author);
2409 strbuf_release(&msgbuf);
2410 update_abort_safety_file();
2411
2412 return res;
2413 }
2414
2415 static int prepare_revs(struct replay_opts *opts)
2416 {
2417 /*
2418 * picking (but not reverting) ranges (but not individual revisions)
2419 * should be done in reverse
2420 */
2421 if (opts->action == REPLAY_PICK && !opts->revs->no_walk)
2422 opts->revs->reverse ^= 1;
2423
2424 if (prepare_revision_walk(opts->revs))
2425 return error(_("revision walk setup failed"));
2426
2427 return 0;
2428 }
2429
2430 static int read_and_refresh_cache(struct repository *r,
2431 struct replay_opts *opts)
2432 {
2433 struct lock_file index_lock = LOCK_INIT;
2434 int index_fd = repo_hold_locked_index(r, &index_lock, 0);
2435 if (repo_read_index(r) < 0) {
2436 rollback_lock_file(&index_lock);
2437 return error(_("git %s: failed to read the index"),
2438 action_name(opts));
2439 }
2440 refresh_index(r->index, REFRESH_QUIET|REFRESH_UNMERGED, NULL, NULL, NULL);
2441
2442 if (index_fd >= 0) {
2443 if (write_locked_index(r->index, &index_lock,
2444 COMMIT_LOCK | SKIP_IF_UNCHANGED)) {
2445 return error(_("git %s: failed to refresh the index"),
2446 action_name(opts));
2447 }
2448 }
2449
2450 /*
2451 * If we are resolving merges in any way other than "ort", then
2452 * expand the sparse index.
2453 */
2454 if (opts->strategy && strcmp(opts->strategy, "ort"))
2455 ensure_full_index(r->index);
2456 return 0;
2457 }
2458
2459 void todo_list_release(struct todo_list *todo_list)
2460 {
2461 strbuf_release(&todo_list->buf);
2462 FREE_AND_NULL(todo_list->items);
2463 todo_list->nr = todo_list->alloc = 0;
2464 }
2465
2466 static struct todo_item *append_new_todo(struct todo_list *todo_list)
2467 {
2468 ALLOC_GROW(todo_list->items, todo_list->nr + 1, todo_list->alloc);
2469 todo_list->total_nr++;
2470 return todo_list->items + todo_list->nr++;
2471 }
2472
2473 const char *todo_item_get_arg(struct todo_list *todo_list,
2474 struct todo_item *item)
2475 {
2476 return todo_list->buf.buf + item->arg_offset;
2477 }
2478
2479 static int is_command(enum todo_command command, const char **bol)
2480 {
2481 const char *str = todo_command_info[command].str;
2482 const char nick = todo_command_info[command].c;
2483 const char *p = *bol + 1;
2484
2485 return skip_prefix(*bol, str, bol) ||
2486 ((nick && **bol == nick) &&
2487 (*p == ' ' || *p == '\t' || *p == '\n' || *p == '\r' || !*p) &&
2488 (*bol = p));
2489 }
2490
2491 static int parse_insn_line(struct repository *r, struct todo_item *item,
2492 const char *buf, const char *bol, char *eol)
2493 {
2494 struct object_id commit_oid;
2495 char *end_of_object_name;
2496 int i, saved, status, padding;
2497
2498 item->flags = 0;
2499
2500 /* left-trim */
2501 bol += strspn(bol, " \t");
2502
2503 if (bol == eol || *bol == '\r' || *bol == comment_line_char) {
2504 item->command = TODO_COMMENT;
2505 item->commit = NULL;
2506 item->arg_offset = bol - buf;
2507 item->arg_len = eol - bol;
2508 return 0;
2509 }
2510
2511 for (i = 0; i < TODO_COMMENT; i++)
2512 if (is_command(i, &bol)) {
2513 item->command = i;
2514 break;
2515 }
2516 if (i >= TODO_COMMENT)
2517 return -1;
2518
2519 /* Eat up extra spaces/ tabs before object name */
2520 padding = strspn(bol, " \t");
2521 bol += padding;
2522
2523 if (item->command == TODO_NOOP || item->command == TODO_BREAK) {
2524 if (bol != eol)
2525 return error(_("%s does not accept arguments: '%s'"),
2526 command_to_string(item->command), bol);
2527 item->commit = NULL;
2528 item->arg_offset = bol - buf;
2529 item->arg_len = eol - bol;
2530 return 0;
2531 }
2532
2533 if (!padding)
2534 return error(_("missing arguments for %s"),
2535 command_to_string(item->command));
2536
2537 if (item->command == TODO_EXEC || item->command == TODO_LABEL ||
2538 item->command == TODO_RESET || item->command == TODO_UPDATE_REF) {
2539 item->commit = NULL;
2540 item->arg_offset = bol - buf;
2541 item->arg_len = (int)(eol - bol);
2542 return 0;
2543 }
2544
2545 if (item->command == TODO_FIXUP) {
2546 if (skip_prefix(bol, "-C", &bol) &&
2547 (*bol == ' ' || *bol == '\t')) {
2548 bol += strspn(bol, " \t");
2549 item->flags |= TODO_REPLACE_FIXUP_MSG;
2550 } else if (skip_prefix(bol, "-c", &bol) &&
2551 (*bol == ' ' || *bol == '\t')) {
2552 bol += strspn(bol, " \t");
2553 item->flags |= TODO_EDIT_FIXUP_MSG;
2554 }
2555 }
2556
2557 if (item->command == TODO_MERGE) {
2558 if (skip_prefix(bol, "-C", &bol))
2559 bol += strspn(bol, " \t");
2560 else if (skip_prefix(bol, "-c", &bol)) {
2561 bol += strspn(bol, " \t");
2562 item->flags |= TODO_EDIT_MERGE_MSG;
2563 } else {
2564 item->flags |= TODO_EDIT_MERGE_MSG;
2565 item->commit = NULL;
2566 item->arg_offset = bol - buf;
2567 item->arg_len = (int)(eol - bol);
2568 return 0;
2569 }
2570 }
2571
2572 end_of_object_name = (char *) bol + strcspn(bol, " \t\n");
2573 saved = *end_of_object_name;
2574 *end_of_object_name = '\0';
2575 status = get_oid(bol, &commit_oid);
2576 if (status < 0)
2577 error(_("could not parse '%s'"), bol); /* return later */
2578 *end_of_object_name = saved;
2579
2580 bol = end_of_object_name + strspn(end_of_object_name, " \t");
2581 item->arg_offset = bol - buf;
2582 item->arg_len = (int)(eol - bol);
2583
2584 if (status < 0)
2585 return status;
2586
2587 item->commit = lookup_commit_reference(r, &commit_oid);
2588 return item->commit ? 0 : -1;
2589 }
2590
2591 int sequencer_get_last_command(struct repository *r, enum replay_action *action)
2592 {
2593 const char *todo_file, *bol;
2594 struct strbuf buf = STRBUF_INIT;
2595 int ret = 0;
2596
2597 todo_file = git_path_todo_file();
2598 if (strbuf_read_file(&buf, todo_file, 0) < 0) {
2599 if (errno == ENOENT || errno == ENOTDIR)
2600 return -1;
2601 else
2602 return error_errno("unable to open '%s'", todo_file);
2603 }
2604 bol = buf.buf + strspn(buf.buf, " \t\r\n");
2605 if (is_command(TODO_PICK, &bol) && (*bol == ' ' || *bol == '\t'))
2606 *action = REPLAY_PICK;
2607 else if (is_command(TODO_REVERT, &bol) &&
2608 (*bol == ' ' || *bol == '\t'))
2609 *action = REPLAY_REVERT;
2610 else
2611 ret = -1;
2612
2613 strbuf_release(&buf);
2614
2615 return ret;
2616 }
2617
2618 int todo_list_parse_insn_buffer(struct repository *r, char *buf,
2619 struct todo_list *todo_list)
2620 {
2621 struct todo_item *item;
2622 char *p = buf, *next_p;
2623 int i, res = 0, fixup_okay = file_exists(rebase_path_done());
2624
2625 todo_list->current = todo_list->nr = 0;
2626
2627 for (i = 1; *p; i++, p = next_p) {
2628 char *eol = strchrnul(p, '\n');
2629
2630 next_p = *eol ? eol + 1 /* skip LF */ : eol;
2631
2632 if (p != eol && eol[-1] == '\r')
2633 eol--; /* strip Carriage Return */
2634
2635 item = append_new_todo(todo_list);
2636 item->offset_in_buf = p - todo_list->buf.buf;
2637 if (parse_insn_line(r, item, buf, p, eol)) {
2638 res = error(_("invalid line %d: %.*s"),
2639 i, (int)(eol - p), p);
2640 item->command = TODO_COMMENT + 1;
2641 item->arg_offset = p - buf;
2642 item->arg_len = (int)(eol - p);
2643 item->commit = NULL;
2644 }
2645
2646 if (fixup_okay)
2647 ; /* do nothing */
2648 else if (is_fixup(item->command))
2649 return error(_("cannot '%s' without a previous commit"),
2650 command_to_string(item->command));
2651 else if (!is_noop(item->command))
2652 fixup_okay = 1;
2653 }
2654
2655 return res;
2656 }
2657
2658 static int count_commands(struct todo_list *todo_list)
2659 {
2660 int count = 0, i;
2661
2662 for (i = 0; i < todo_list->nr; i++)
2663 if (todo_list->items[i].command != TODO_COMMENT)
2664 count++;
2665
2666 return count;
2667 }
2668
2669 static int get_item_line_offset(struct todo_list *todo_list, int index)
2670 {
2671 return index < todo_list->nr ?
2672 todo_list->items[index].offset_in_buf : todo_list->buf.len;
2673 }
2674
2675 static const char *get_item_line(struct todo_list *todo_list, int index)
2676 {
2677 return todo_list->buf.buf + get_item_line_offset(todo_list, index);
2678 }
2679
2680 static int get_item_line_length(struct todo_list *todo_list, int index)
2681 {
2682 return get_item_line_offset(todo_list, index + 1)
2683 - get_item_line_offset(todo_list, index);
2684 }
2685
2686 static ssize_t strbuf_read_file_or_whine(struct strbuf *sb, const char *path)
2687 {
2688 int fd;
2689 ssize_t len;
2690
2691 fd = open(path, O_RDONLY);
2692 if (fd < 0)
2693 return error_errno(_("could not open '%s'"), path);
2694 len = strbuf_read(sb, fd, 0);
2695 close(fd);
2696 if (len < 0)
2697 return error(_("could not read '%s'."), path);
2698 return len;
2699 }
2700
2701 static int have_finished_the_last_pick(void)
2702 {
2703 struct strbuf buf = STRBUF_INIT;
2704 const char *eol;
2705 const char *todo_path = git_path_todo_file();
2706 int ret = 0;
2707
2708 if (strbuf_read_file(&buf, todo_path, 0) < 0) {
2709 if (errno == ENOENT) {
2710 return 0;
2711 } else {
2712 error_errno("unable to open '%s'", todo_path);
2713 return 0;
2714 }
2715 }
2716 /* If there is only one line then we are done */
2717 eol = strchr(buf.buf, '\n');
2718 if (!eol || !eol[1])
2719 ret = 1;
2720
2721 strbuf_release(&buf);
2722
2723 return ret;
2724 }
2725
2726 void sequencer_post_commit_cleanup(struct repository *r, int verbose)
2727 {
2728 struct replay_opts opts = REPLAY_OPTS_INIT;
2729 int need_cleanup = 0;
2730
2731 if (refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD")) {
2732 if (!refs_delete_ref(get_main_ref_store(r), "",
2733 "CHERRY_PICK_HEAD", NULL, 0) &&
2734 verbose)
2735 warning(_("cancelling a cherry picking in progress"));
2736 opts.action = REPLAY_PICK;
2737 need_cleanup = 1;
2738 }
2739
2740 if (refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD")) {
2741 if (!refs_delete_ref(get_main_ref_store(r), "", "REVERT_HEAD",
2742 NULL, 0) &&
2743 verbose)
2744 warning(_("cancelling a revert in progress"));
2745 opts.action = REPLAY_REVERT;
2746 need_cleanup = 1;
2747 }
2748
2749 unlink(git_path_auto_merge(r));
2750
2751 if (!need_cleanup)
2752 return;
2753
2754 if (!have_finished_the_last_pick())
2755 return;
2756
2757 sequencer_remove_state(&opts);
2758 }
2759
2760 static void todo_list_write_total_nr(struct todo_list *todo_list)
2761 {
2762 FILE *f = fopen_or_warn(rebase_path_msgtotal(), "w");
2763
2764 if (f) {
2765 fprintf(f, "%d\n", todo_list->total_nr);
2766 fclose(f);
2767 }
2768 }
2769
2770 static int read_populate_todo(struct repository *r,
2771 struct todo_list *todo_list,
2772 struct replay_opts *opts)
2773 {
2774 const char *todo_file = get_todo_path(opts);
2775 int res;
2776
2777 strbuf_reset(&todo_list->buf);
2778 if (strbuf_read_file_or_whine(&todo_list->buf, todo_file) < 0)
2779 return -1;
2780
2781 res = todo_list_parse_insn_buffer(r, todo_list->buf.buf, todo_list);
2782 if (res) {
2783 if (is_rebase_i(opts))
2784 return error(_("please fix this using "
2785 "'git rebase --edit-todo'."));
2786 return error(_("unusable instruction sheet: '%s'"), todo_file);
2787 }
2788
2789 if (!todo_list->nr &&
2790 (!is_rebase_i(opts) || !file_exists(rebase_path_done())))
2791 return error(_("no commits parsed."));
2792
2793 if (!is_rebase_i(opts)) {
2794 enum todo_command valid =
2795 opts->action == REPLAY_PICK ? TODO_PICK : TODO_REVERT;
2796 int i;
2797
2798 for (i = 0; i < todo_list->nr; i++)
2799 if (valid == todo_list->items[i].command)
2800 continue;
2801 else if (valid == TODO_PICK)
2802 return error(_("cannot cherry-pick during a revert."));
2803 else
2804 return error(_("cannot revert during a cherry-pick."));
2805 }
2806
2807 if (is_rebase_i(opts)) {
2808 struct todo_list done = TODO_LIST_INIT;
2809
2810 if (strbuf_read_file(&done.buf, rebase_path_done(), 0) > 0 &&
2811 !todo_list_parse_insn_buffer(r, done.buf.buf, &done))
2812 todo_list->done_nr = count_commands(&done);
2813 else
2814 todo_list->done_nr = 0;
2815
2816 todo_list->total_nr = todo_list->done_nr
2817 + count_commands(todo_list);
2818 todo_list_release(&done);
2819
2820 todo_list_write_total_nr(todo_list);
2821 }
2822
2823 return 0;
2824 }
2825
2826 static int git_config_string_dup(char **dest,
2827 const char *var, const char *value)
2828 {
2829 if (!value)
2830 return config_error_nonbool(var);
2831 free(*dest);
2832 *dest = xstrdup(value);
2833 return 0;
2834 }
2835
2836 static int populate_opts_cb(const char *key, const char *value, void *data)
2837 {
2838 struct replay_opts *opts = data;
2839 int error_flag = 1;
2840
2841 if (!value)
2842 error_flag = 0;
2843 else if (!strcmp(key, "options.no-commit"))
2844 opts->no_commit = git_config_bool_or_int(key, value, &error_flag);
2845 else if (!strcmp(key, "options.edit"))
2846 opts->edit = git_config_bool_or_int(key, value, &error_flag);
2847 else if (!strcmp(key, "options.allow-empty"))
2848 opts->allow_empty =
2849 git_config_bool_or_int(key, value, &error_flag);
2850 else if (!strcmp(key, "options.allow-empty-message"))
2851 opts->allow_empty_message =
2852 git_config_bool_or_int(key, value, &error_flag);
2853 else if (!strcmp(key, "options.keep-redundant-commits"))
2854 opts->keep_redundant_commits =
2855 git_config_bool_or_int(key, value, &error_flag);
2856 else if (!strcmp(key, "options.signoff"))
2857 opts->signoff = git_config_bool_or_int(key, value, &error_flag);
2858 else if (!strcmp(key, "options.record-origin"))
2859 opts->record_origin = git_config_bool_or_int(key, value, &error_flag);
2860 else if (!strcmp(key, "options.allow-ff"))
2861 opts->allow_ff = git_config_bool_or_int(key, value, &error_flag);
2862 else if (!strcmp(key, "options.mainline"))
2863 opts->mainline = git_config_int(key, value);
2864 else if (!strcmp(key, "options.strategy"))
2865 git_config_string_dup(&opts->strategy, key, value);
2866 else if (!strcmp(key, "options.gpg-sign"))
2867 git_config_string_dup(&opts->gpg_sign, key, value);
2868 else if (!strcmp(key, "options.strategy-option")) {
2869 ALLOC_GROW(opts->xopts, opts->xopts_nr + 1, opts->xopts_alloc);
2870 opts->xopts[opts->xopts_nr++] = xstrdup(value);
2871 } else if (!strcmp(key, "options.allow-rerere-auto"))
2872 opts->allow_rerere_auto =
2873 git_config_bool_or_int(key, value, &error_flag) ?
2874 RERERE_AUTOUPDATE : RERERE_NOAUTOUPDATE;
2875 else if (!strcmp(key, "options.default-msg-cleanup")) {
2876 opts->explicit_cleanup = 1;
2877 opts->default_msg_cleanup = get_cleanup_mode(value, 1);
2878 } else
2879 return error(_("invalid key: %s"), key);
2880
2881 if (!error_flag)
2882 return error(_("invalid value for '%s': '%s'"), key, value);
2883
2884 return 0;
2885 }
2886
2887 void parse_strategy_opts(struct replay_opts *opts, char *raw_opts)
2888 {
2889 int i;
2890 char *strategy_opts_string = raw_opts;
2891
2892 if (*strategy_opts_string == ' ')
2893 strategy_opts_string++;
2894
2895 opts->xopts_nr = split_cmdline(strategy_opts_string,
2896 (const char ***)&opts->xopts);
2897 for (i = 0; i < opts->xopts_nr; i++) {
2898 const char *arg = opts->xopts[i];
2899
2900 skip_prefix(arg, "--", &arg);
2901 opts->xopts[i] = xstrdup(arg);
2902 }
2903 }
2904
2905 static void read_strategy_opts(struct replay_opts *opts, struct strbuf *buf)
2906 {
2907 strbuf_reset(buf);
2908 if (!read_oneliner(buf, rebase_path_strategy(), 0))
2909 return;
2910 free(opts->strategy);
2911 opts->strategy = strbuf_detach(buf, NULL);
2912 if (!read_oneliner(buf, rebase_path_strategy_opts(), 0))
2913 return;
2914
2915 parse_strategy_opts(opts, buf->buf);
2916 }
2917
2918 static int read_populate_opts(struct replay_opts *opts)
2919 {
2920 if (is_rebase_i(opts)) {
2921 struct strbuf buf = STRBUF_INIT;
2922 int ret = 0;
2923
2924 if (read_oneliner(&buf, rebase_path_gpg_sign_opt(),
2925 READ_ONELINER_SKIP_IF_EMPTY)) {
2926 if (!starts_with(buf.buf, "-S"))
2927 strbuf_reset(&buf);
2928 else {
2929 free(opts->gpg_sign);
2930 opts->gpg_sign = xstrdup(buf.buf + 2);
2931 }
2932 strbuf_reset(&buf);
2933 }
2934
2935 if (read_oneliner(&buf, rebase_path_allow_rerere_autoupdate(),
2936 READ_ONELINER_SKIP_IF_EMPTY)) {
2937 if (!strcmp(buf.buf, "--rerere-autoupdate"))
2938 opts->allow_rerere_auto = RERERE_AUTOUPDATE;
2939 else if (!strcmp(buf.buf, "--no-rerere-autoupdate"))
2940 opts->allow_rerere_auto = RERERE_NOAUTOUPDATE;
2941 strbuf_reset(&buf);
2942 }
2943
2944 if (file_exists(rebase_path_verbose()))
2945 opts->verbose = 1;
2946
2947 if (file_exists(rebase_path_quiet()))
2948 opts->quiet = 1;
2949
2950 if (file_exists(rebase_path_signoff())) {
2951 opts->allow_ff = 0;
2952 opts->signoff = 1;
2953 }
2954
2955 if (file_exists(rebase_path_cdate_is_adate())) {
2956 opts->allow_ff = 0;
2957 opts->committer_date_is_author_date = 1;
2958 }
2959
2960 if (file_exists(rebase_path_ignore_date())) {
2961 opts->allow_ff = 0;
2962 opts->ignore_date = 1;
2963 }
2964
2965 if (file_exists(rebase_path_reschedule_failed_exec()))
2966 opts->reschedule_failed_exec = 1;
2967 else if (file_exists(rebase_path_no_reschedule_failed_exec()))
2968 opts->reschedule_failed_exec = 0;
2969
2970 if (file_exists(rebase_path_drop_redundant_commits()))
2971 opts->drop_redundant_commits = 1;
2972
2973 if (file_exists(rebase_path_keep_redundant_commits()))
2974 opts->keep_redundant_commits = 1;
2975
2976 read_strategy_opts(opts, &buf);
2977 strbuf_reset(&buf);
2978
2979 if (read_oneliner(&opts->current_fixups,
2980 rebase_path_current_fixups(),
2981 READ_ONELINER_SKIP_IF_EMPTY)) {
2982 const char *p = opts->current_fixups.buf;
2983 opts->current_fixup_count = 1;
2984 while ((p = strchr(p, '\n'))) {
2985 opts->current_fixup_count++;
2986 p++;
2987 }
2988 }
2989
2990 if (read_oneliner(&buf, rebase_path_squash_onto(), 0)) {
2991 if (get_oid_committish(buf.buf, &opts->squash_onto) < 0) {
2992 ret = error(_("unusable squash-onto"));
2993 goto done_rebase_i;
2994 }
2995 opts->have_squash_onto = 1;
2996 }
2997
2998 done_rebase_i:
2999 strbuf_release(&buf);
3000 return ret;
3001 }
3002
3003 if (!file_exists(git_path_opts_file()))
3004 return 0;
3005 /*
3006 * The function git_parse_source(), called from git_config_from_file(),
3007 * may die() in case of a syntactically incorrect file. We do not care
3008 * about this case, though, because we wrote that file ourselves, so we
3009 * are pretty certain that it is syntactically correct.
3010 */
3011 if (git_config_from_file(populate_opts_cb, git_path_opts_file(), opts) < 0)
3012 return error(_("malformed options sheet: '%s'"),
3013 git_path_opts_file());
3014 return 0;
3015 }
3016
3017 static void write_strategy_opts(struct replay_opts *opts)
3018 {
3019 int i;
3020 struct strbuf buf = STRBUF_INIT;
3021
3022 for (i = 0; i < opts->xopts_nr; ++i)
3023 strbuf_addf(&buf, " --%s", opts->xopts[i]);
3024
3025 write_file(rebase_path_strategy_opts(), "%s\n", buf.buf);
3026 strbuf_release(&buf);
3027 }
3028
3029 int write_basic_state(struct replay_opts *opts, const char *head_name,
3030 struct commit *onto, const struct object_id *orig_head)
3031 {
3032 if (head_name)
3033 write_file(rebase_path_head_name(), "%s\n", head_name);
3034 if (onto)
3035 write_file(rebase_path_onto(), "%s\n",
3036 oid_to_hex(&onto->object.oid));
3037 if (orig_head)
3038 write_file(rebase_path_orig_head(), "%s\n",
3039 oid_to_hex(orig_head));
3040
3041 if (opts->quiet)
3042 write_file(rebase_path_quiet(), "%s", "");
3043 if (opts->verbose)
3044 write_file(rebase_path_verbose(), "%s", "");
3045 if (opts->strategy)
3046 write_file(rebase_path_strategy(), "%s\n", opts->strategy);
3047 if (opts->xopts_nr > 0)
3048 write_strategy_opts(opts);
3049
3050 if (opts->allow_rerere_auto == RERERE_AUTOUPDATE)
3051 write_file(rebase_path_allow_rerere_autoupdate(), "--rerere-autoupdate\n");
3052 else if (opts->allow_rerere_auto == RERERE_NOAUTOUPDATE)
3053 write_file(rebase_path_allow_rerere_autoupdate(), "--no-rerere-autoupdate\n");
3054
3055 if (opts->gpg_sign)
3056 write_file(rebase_path_gpg_sign_opt(), "-S%s\n", opts->gpg_sign);
3057 if (opts->signoff)
3058 write_file(rebase_path_signoff(), "--signoff\n");
3059 if (opts->drop_redundant_commits)
3060 write_file(rebase_path_drop_redundant_commits(), "%s", "");
3061 if (opts->keep_redundant_commits)
3062 write_file(rebase_path_keep_redundant_commits(), "%s", "");
3063 if (opts->committer_date_is_author_date)
3064 write_file(rebase_path_cdate_is_adate(), "%s", "");
3065 if (opts->ignore_date)
3066 write_file(rebase_path_ignore_date(), "%s", "");
3067 if (opts->reschedule_failed_exec)
3068 write_file(rebase_path_reschedule_failed_exec(), "%s", "");
3069 else
3070 write_file(rebase_path_no_reschedule_failed_exec(), "%s", "");
3071
3072 return 0;
3073 }
3074
3075 static int walk_revs_populate_todo(struct todo_list *todo_list,
3076 struct replay_opts *opts)
3077 {
3078 enum todo_command command = opts->action == REPLAY_PICK ?
3079 TODO_PICK : TODO_REVERT;
3080 const char *command_string = todo_command_info[command].str;
3081 const char *encoding;
3082 struct commit *commit;
3083
3084 if (prepare_revs(opts))
3085 return -1;
3086
3087 encoding = get_log_output_encoding();
3088
3089 while ((commit = get_revision(opts->revs))) {
3090 struct todo_item *item = append_new_todo(todo_list);
3091 const char *commit_buffer = logmsg_reencode(commit, NULL, encoding);
3092 const char *subject;
3093 int subject_len;
3094
3095 item->command = command;
3096 item->commit = commit;
3097 item->arg_offset = 0;
3098 item->arg_len = 0;
3099 item->offset_in_buf = todo_list->buf.len;
3100 subject_len = find_commit_subject(commit_buffer, &subject);
3101 strbuf_addf(&todo_list->buf, "%s %s %.*s\n", command_string,
3102 short_commit_name(commit), subject_len, subject);
3103 unuse_commit_buffer(commit, commit_buffer);
3104 }
3105
3106 if (!todo_list->nr)
3107 return error(_("empty commit set passed"));
3108
3109 return 0;
3110 }
3111
3112 static int create_seq_dir(struct repository *r)
3113 {
3114 enum replay_action action;
3115 const char *in_progress_error = NULL;
3116 const char *in_progress_advice = NULL;
3117 unsigned int advise_skip =
3118 refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD") ||
3119 refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD");
3120
3121 if (!sequencer_get_last_command(r, &action)) {
3122 switch (action) {
3123 case REPLAY_REVERT:
3124 in_progress_error = _("revert is already in progress");
3125 in_progress_advice =
3126 _("try \"git revert (--continue | %s--abort | --quit)\"");
3127 break;
3128 case REPLAY_PICK:
3129 in_progress_error = _("cherry-pick is already in progress");
3130 in_progress_advice =
3131 _("try \"git cherry-pick (--continue | %s--abort | --quit)\"");
3132 break;
3133 default:
3134 BUG("unexpected action in create_seq_dir");
3135 }
3136 }
3137 if (in_progress_error) {
3138 error("%s", in_progress_error);
3139 if (advice_enabled(ADVICE_SEQUENCER_IN_USE))
3140 advise(in_progress_advice,
3141 advise_skip ? "--skip | " : "");
3142 return -1;
3143 }
3144 if (mkdir(git_path_seq_dir(), 0777) < 0)
3145 return error_errno(_("could not create sequencer directory '%s'"),
3146 git_path_seq_dir());
3147
3148 return 0;
3149 }
3150
3151 static int save_head(const char *head)
3152 {
3153 struct lock_file head_lock = LOCK_INIT;
3154 struct strbuf buf = STRBUF_INIT;
3155 int fd;
3156 ssize_t written;
3157
3158 fd = hold_lock_file_for_update(&head_lock, git_path_head_file(), 0);
3159 if (fd < 0)
3160 return error_errno(_("could not lock HEAD"));
3161 strbuf_addf(&buf, "%s\n", head);
3162 written = write_in_full(fd, buf.buf, buf.len);
3163 strbuf_release(&buf);
3164 if (written < 0) {
3165 error_errno(_("could not write to '%s'"), git_path_head_file());
3166 rollback_lock_file(&head_lock);
3167 return -1;
3168 }
3169 if (commit_lock_file(&head_lock) < 0)
3170 return error(_("failed to finalize '%s'"), git_path_head_file());
3171 return 0;
3172 }
3173
3174 static int rollback_is_safe(void)
3175 {
3176 struct strbuf sb = STRBUF_INIT;
3177 struct object_id expected_head, actual_head;
3178
3179 if (strbuf_read_file(&sb, git_path_abort_safety_file(), 0) >= 0) {
3180 strbuf_trim(&sb);
3181 if (get_oid_hex(sb.buf, &expected_head)) {
3182 strbuf_release(&sb);
3183 die(_("could not parse %s"), git_path_abort_safety_file());
3184 }
3185 strbuf_release(&sb);
3186 }
3187 else if (errno == ENOENT)
3188 oidclr(&expected_head);
3189 else
3190 die_errno(_("could not read '%s'"), git_path_abort_safety_file());
3191
3192 if (get_oid("HEAD", &actual_head))
3193 oidclr(&actual_head);
3194
3195 return oideq(&actual_head, &expected_head);
3196 }
3197
3198 static int reset_merge(const struct object_id *oid)
3199 {
3200 struct child_process cmd = CHILD_PROCESS_INIT;
3201
3202 cmd.git_cmd = 1;
3203 strvec_pushl(&cmd.args, "reset", "--merge", NULL);
3204
3205 if (!is_null_oid(oid))
3206 strvec_push(&cmd.args, oid_to_hex(oid));
3207
3208 return run_command(&cmd);
3209 }
3210
3211 static int rollback_single_pick(struct repository *r)
3212 {
3213 struct object_id head_oid;
3214
3215 if (!refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD") &&
3216 !refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD"))
3217 return error(_("no cherry-pick or revert in progress"));
3218 if (read_ref_full("HEAD", 0, &head_oid, NULL))
3219 return error(_("cannot resolve HEAD"));
3220 if (is_null_oid(&head_oid))
3221 return error(_("cannot abort from a branch yet to be born"));
3222 return reset_merge(&head_oid);
3223 }
3224
3225 static int skip_single_pick(void)
3226 {
3227 struct object_id head;
3228
3229 if (read_ref_full("HEAD", 0, &head, NULL))
3230 return error(_("cannot resolve HEAD"));
3231 return reset_merge(&head);
3232 }
3233
3234 int sequencer_rollback(struct repository *r, struct replay_opts *opts)
3235 {
3236 FILE *f;
3237 struct object_id oid;
3238 struct strbuf buf = STRBUF_INIT;
3239 const char *p;
3240
3241 f = fopen(git_path_head_file(), "r");
3242 if (!f && errno == ENOENT) {
3243 /*
3244 * There is no multiple-cherry-pick in progress.
3245 * If CHERRY_PICK_HEAD or REVERT_HEAD indicates
3246 * a single-cherry-pick in progress, abort that.
3247 */
3248 return rollback_single_pick(r);
3249 }
3250 if (!f)
3251 return error_errno(_("cannot open '%s'"), git_path_head_file());
3252 if (strbuf_getline_lf(&buf, f)) {
3253 error(_("cannot read '%s': %s"), git_path_head_file(),
3254 ferror(f) ? strerror(errno) : _("unexpected end of file"));
3255 fclose(f);
3256 goto fail;
3257 }
3258 fclose(f);
3259 if (parse_oid_hex(buf.buf, &oid, &p) || *p != '\0') {
3260 error(_("stored pre-cherry-pick HEAD file '%s' is corrupt"),
3261 git_path_head_file());
3262 goto fail;
3263 }
3264 if (is_null_oid(&oid)) {
3265 error(_("cannot abort from a branch yet to be born"));
3266 goto fail;
3267 }
3268
3269 if (!rollback_is_safe()) {
3270 /* Do not error, just do not rollback */
3271 warning(_("You seem to have moved HEAD. "
3272 "Not rewinding, check your HEAD!"));
3273 } else
3274 if (reset_merge(&oid))
3275 goto fail;
3276 strbuf_release(&buf);
3277 return sequencer_remove_state(opts);
3278 fail:
3279 strbuf_release(&buf);
3280 return -1;
3281 }
3282
3283 int sequencer_skip(struct repository *r, struct replay_opts *opts)
3284 {
3285 enum replay_action action = -1;
3286 sequencer_get_last_command(r, &action);
3287
3288 /*
3289 * Check whether the subcommand requested to skip the commit is actually
3290 * in progress and that it's safe to skip the commit.
3291 *
3292 * opts->action tells us which subcommand requested to skip the commit.
3293 * If the corresponding .git/<ACTION>_HEAD exists, we know that the
3294 * action is in progress and we can skip the commit.
3295 *
3296 * Otherwise we check that the last instruction was related to the
3297 * particular subcommand we're trying to execute and barf if that's not
3298 * the case.
3299 *
3300 * Finally we check that the rollback is "safe", i.e., has the HEAD
3301 * moved? In this case, it doesn't make sense to "reset the merge" and
3302 * "skip the commit" as the user already handled this by committing. But
3303 * we'd not want to barf here, instead give advice on how to proceed. We
3304 * only need to check that when .git/<ACTION>_HEAD doesn't exist because
3305 * it gets removed when the user commits, so if it still exists we're
3306 * sure the user can't have committed before.
3307 */
3308 switch (opts->action) {
3309 case REPLAY_REVERT:
3310 if (!refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD")) {
3311 if (action != REPLAY_REVERT)
3312 return error(_("no revert in progress"));
3313 if (!rollback_is_safe())
3314 goto give_advice;
3315 }
3316 break;
3317 case REPLAY_PICK:
3318 if (!refs_ref_exists(get_main_ref_store(r),
3319 "CHERRY_PICK_HEAD")) {
3320 if (action != REPLAY_PICK)
3321 return error(_("no cherry-pick in progress"));
3322 if (!rollback_is_safe())
3323 goto give_advice;
3324 }
3325 break;
3326 default:
3327 BUG("unexpected action in sequencer_skip");
3328 }
3329
3330 if (skip_single_pick())
3331 return error(_("failed to skip the commit"));
3332 if (!is_directory(git_path_seq_dir()))
3333 return 0;
3334
3335 return sequencer_continue(r, opts);
3336
3337 give_advice:
3338 error(_("there is nothing to skip"));
3339
3340 if (advice_enabled(ADVICE_RESOLVE_CONFLICT)) {
3341 advise(_("have you committed already?\n"
3342 "try \"git %s --continue\""),
3343 action == REPLAY_REVERT ? "revert" : "cherry-pick");
3344 }
3345 return -1;
3346 }
3347
3348 static int save_todo(struct todo_list *todo_list, struct replay_opts *opts)
3349 {
3350 struct lock_file todo_lock = LOCK_INIT;
3351 const char *todo_path = get_todo_path(opts);
3352 int next = todo_list->current, offset, fd;
3353
3354 /*
3355 * rebase -i writes "git-rebase-todo" without the currently executing
3356 * command, appending it to "done" instead.
3357 */
3358 if (is_rebase_i(opts))
3359 next++;
3360
3361 fd = hold_lock_file_for_update(&todo_lock, todo_path, 0);
3362 if (fd < 0)
3363 return error_errno(_("could not lock '%s'"), todo_path);
3364 offset = get_item_line_offset(todo_list, next);
3365 if (write_in_full(fd, todo_list->buf.buf + offset,
3366 todo_list->buf.len - offset) < 0)
3367 return error_errno(_("could not write to '%s'"), todo_path);
3368 if (commit_lock_file(&todo_lock) < 0)
3369 return error(_("failed to finalize '%s'"), todo_path);
3370
3371 if (is_rebase_i(opts) && next > 0) {
3372 const char *done = rebase_path_done();
3373 int fd = open(done, O_CREAT | O_WRONLY | O_APPEND, 0666);
3374 int ret = 0;
3375
3376 if (fd < 0)
3377 return 0;
3378 if (write_in_full(fd, get_item_line(todo_list, next - 1),
3379 get_item_line_length(todo_list, next - 1))
3380 < 0)
3381 ret = error_errno(_("could not write to '%s'"), done);
3382 if (close(fd) < 0)
3383 ret = error_errno(_("failed to finalize '%s'"), done);
3384 return ret;
3385 }
3386 return 0;
3387 }
3388
3389 static int save_opts(struct replay_opts *opts)
3390 {
3391 const char *opts_file = git_path_opts_file();
3392 int res = 0;
3393
3394 if (opts->no_commit)
3395 res |= git_config_set_in_file_gently(opts_file,
3396 "options.no-commit", "true");
3397 if (opts->edit >= 0)
3398 res |= git_config_set_in_file_gently(opts_file, "options.edit",
3399 opts->edit ? "true" : "false");
3400 if (opts->allow_empty)
3401 res |= git_config_set_in_file_gently(opts_file,
3402 "options.allow-empty", "true");
3403 if (opts->allow_empty_message)
3404 res |= git_config_set_in_file_gently(opts_file,
3405 "options.allow-empty-message", "true");
3406 if (opts->keep_redundant_commits)
3407 res |= git_config_set_in_file_gently(opts_file,
3408 "options.keep-redundant-commits", "true");
3409 if (opts->signoff)
3410 res |= git_config_set_in_file_gently(opts_file,
3411 "options.signoff", "true");
3412 if (opts->record_origin)
3413 res |= git_config_set_in_file_gently(opts_file,
3414 "options.record-origin", "true");
3415 if (opts->allow_ff)
3416 res |= git_config_set_in_file_gently(opts_file,
3417 "options.allow-ff", "true");
3418 if (opts->mainline) {
3419 struct strbuf buf = STRBUF_INIT;
3420 strbuf_addf(&buf, "%d", opts->mainline);
3421 res |= git_config_set_in_file_gently(opts_file,
3422 "options.mainline", buf.buf);
3423 strbuf_release(&buf);
3424 }
3425 if (opts->strategy)
3426 res |= git_config_set_in_file_gently(opts_file,
3427 "options.strategy", opts->strategy);
3428 if (opts->gpg_sign)
3429 res |= git_config_set_in_file_gently(opts_file,
3430 "options.gpg-sign", opts->gpg_sign);
3431 if (opts->xopts) {
3432 int i;
3433 for (i = 0; i < opts->xopts_nr; i++)
3434 res |= git_config_set_multivar_in_file_gently(opts_file,
3435 "options.strategy-option",
3436 opts->xopts[i], "^$", 0);
3437 }
3438 if (opts->allow_rerere_auto)
3439 res |= git_config_set_in_file_gently(opts_file,
3440 "options.allow-rerere-auto",
3441 opts->allow_rerere_auto == RERERE_AUTOUPDATE ?
3442 "true" : "false");
3443
3444 if (opts->explicit_cleanup)
3445 res |= git_config_set_in_file_gently(opts_file,
3446 "options.default-msg-cleanup",
3447 describe_cleanup_mode(opts->default_msg_cleanup));
3448 return res;
3449 }
3450
3451 static int make_patch(struct repository *r,
3452 struct commit *commit,
3453 struct replay_opts *opts)
3454 {
3455 struct strbuf buf = STRBUF_INIT;
3456 struct rev_info log_tree_opt;
3457 const char *subject;
3458 char hex[GIT_MAX_HEXSZ + 1];
3459 int res = 0;
3460
3461 oid_to_hex_r(hex, &commit->object.oid);
3462 if (write_message(hex, strlen(hex), rebase_path_stopped_sha(), 1) < 0)
3463 return -1;
3464 res |= write_rebase_head(&commit->object.oid);
3465
3466 strbuf_addf(&buf, "%s/patch", get_dir(opts));
3467 memset(&log_tree_opt, 0, sizeof(log_tree_opt));
3468 repo_init_revisions(r, &log_tree_opt, NULL);
3469 log_tree_opt.abbrev = 0;
3470 log_tree_opt.diff = 1;
3471 log_tree_opt.diffopt.output_format = DIFF_FORMAT_PATCH;
3472 log_tree_opt.disable_stdin = 1;
3473 log_tree_opt.no_commit_id = 1;
3474 log_tree_opt.diffopt.file = fopen(buf.buf, "w");
3475 log_tree_opt.diffopt.use_color = GIT_COLOR_NEVER;
3476 if (!log_tree_opt.diffopt.file)
3477 res |= error_errno(_("could not open '%s'"), buf.buf);
3478 else {
3479 res |= log_tree_commit(&log_tree_opt, commit);
3480 fclose(log_tree_opt.diffopt.file);
3481 }
3482 strbuf_reset(&buf);
3483
3484 strbuf_addf(&buf, "%s/message", get_dir(opts));
3485 if (!file_exists(buf.buf)) {
3486 const char *encoding = get_commit_output_encoding();
3487 const char *commit_buffer = logmsg_reencode(commit, NULL, encoding);
3488 find_commit_subject(commit_buffer, &subject);
3489 res |= write_message(subject, strlen(subject), buf.buf, 1);
3490 unuse_commit_buffer(commit, commit_buffer);
3491 }
3492 strbuf_release(&buf);
3493 release_revisions(&log_tree_opt);
3494
3495 return res;
3496 }
3497
3498 static int intend_to_amend(void)
3499 {
3500 struct object_id head;
3501 char *p;
3502
3503 if (get_oid("HEAD", &head))
3504 return error(_("cannot read HEAD"));
3505
3506 p = oid_to_hex(&head);
3507 return write_message(p, strlen(p), rebase_path_amend(), 1);
3508 }
3509
3510 static int error_with_patch(struct repository *r,
3511 struct commit *commit,
3512 const char *subject, int subject_len,
3513 struct replay_opts *opts,
3514 int exit_code, int to_amend)
3515 {
3516 if (commit) {
3517 if (make_patch(r, commit, opts))
3518 return -1;
3519 } else if (copy_file(rebase_path_message(),
3520 git_path_merge_msg(r), 0666))
3521 return error(_("unable to copy '%s' to '%s'"),
3522 git_path_merge_msg(r), rebase_path_message());
3523
3524 if (to_amend) {
3525 if (intend_to_amend())
3526 return -1;
3527
3528 fprintf(stderr,
3529 _("You can amend the commit now, with\n"
3530 "\n"
3531 " git commit --amend %s\n"
3532 "\n"
3533 "Once you are satisfied with your changes, run\n"
3534 "\n"
3535 " git rebase --continue\n"),
3536 gpg_sign_opt_quoted(opts));
3537 } else if (exit_code) {
3538 if (commit)
3539 fprintf_ln(stderr, _("Could not apply %s... %.*s"),
3540 short_commit_name(commit), subject_len, subject);
3541 else
3542 /*
3543 * We don't have the hash of the parent so
3544 * just print the line from the todo file.
3545 */
3546 fprintf_ln(stderr, _("Could not merge %.*s"),
3547 subject_len, subject);
3548 }
3549
3550 return exit_code;
3551 }
3552
3553 static int error_failed_squash(struct repository *r,
3554 struct commit *commit,
3555 struct replay_opts *opts,
3556 int subject_len,
3557 const char *subject)
3558 {
3559 if (copy_file(rebase_path_message(), rebase_path_squash_msg(), 0666))
3560 return error(_("could not copy '%s' to '%s'"),
3561 rebase_path_squash_msg(), rebase_path_message());
3562 unlink(git_path_merge_msg(r));
3563 if (copy_file(git_path_merge_msg(r), rebase_path_message(), 0666))
3564 return error(_("could not copy '%s' to '%s'"),
3565 rebase_path_message(),
3566 git_path_merge_msg(r));
3567 return error_with_patch(r, commit, subject, subject_len, opts, 1, 0);
3568 }
3569
3570 static int do_exec(struct repository *r, const char *command_line)
3571 {
3572 struct child_process cmd = CHILD_PROCESS_INIT;
3573 int dirty, status;
3574
3575 fprintf(stderr, _("Executing: %s\n"), command_line);
3576 cmd.use_shell = 1;
3577 strvec_push(&cmd.args, command_line);
3578 status = run_command(&cmd);
3579
3580 /* force re-reading of the cache */
3581 discard_index(r->index);
3582 if (repo_read_index(r) < 0)
3583 return error(_("could not read index"));
3584
3585 dirty = require_clean_work_tree(r, "rebase", NULL, 1, 1);
3586
3587 if (status) {
3588 warning(_("execution failed: %s\n%s"
3589 "You can fix the problem, and then run\n"
3590 "\n"
3591 " git rebase --continue\n"
3592 "\n"),
3593 command_line,
3594 dirty ? N_("and made changes to the index and/or the "
3595 "working tree\n") : "");
3596 if (status == 127)
3597 /* command not found */
3598 status = 1;
3599 } else if (dirty) {
3600 warning(_("execution succeeded: %s\nbut "
3601 "left changes to the index and/or the working tree\n"
3602 "Commit or stash your changes, and then run\n"
3603 "\n"
3604 " git rebase --continue\n"
3605 "\n"), command_line);
3606 status = 1;
3607 }
3608
3609 return status;
3610 }
3611
3612 __attribute__((format (printf, 2, 3)))
3613 static int safe_append(const char *filename, const char *fmt, ...)
3614 {
3615 va_list ap;
3616 struct lock_file lock = LOCK_INIT;
3617 int fd = hold_lock_file_for_update(&lock, filename,
3618 LOCK_REPORT_ON_ERROR);
3619 struct strbuf buf = STRBUF_INIT;
3620
3621 if (fd < 0)
3622 return -1;
3623
3624 if (strbuf_read_file(&buf, filename, 0) < 0 && errno != ENOENT) {
3625 error_errno(_("could not read '%s'"), filename);
3626 rollback_lock_file(&lock);
3627 return -1;
3628 }
3629 strbuf_complete(&buf, '\n');
3630 va_start(ap, fmt);
3631 strbuf_vaddf(&buf, fmt, ap);
3632 va_end(ap);
3633
3634 if (write_in_full(fd, buf.buf, buf.len) < 0) {
3635 error_errno(_("could not write to '%s'"), filename);
3636 strbuf_release(&buf);
3637 rollback_lock_file(&lock);
3638 return -1;
3639 }
3640 if (commit_lock_file(&lock) < 0) {
3641 strbuf_release(&buf);
3642 rollback_lock_file(&lock);
3643 return error(_("failed to finalize '%s'"), filename);
3644 }
3645
3646 strbuf_release(&buf);
3647 return 0;
3648 }
3649
3650 static int do_label(struct repository *r, const char *name, int len)
3651 {
3652 struct ref_store *refs = get_main_ref_store(r);
3653 struct ref_transaction *transaction;
3654 struct strbuf ref_name = STRBUF_INIT, err = STRBUF_INIT;
3655 struct strbuf msg = STRBUF_INIT;
3656 int ret = 0;
3657 struct object_id head_oid;
3658
3659 if (len == 1 && *name == '#')
3660 return error(_("illegal label name: '%.*s'"), len, name);
3661
3662 strbuf_addf(&ref_name, "refs/rewritten/%.*s", len, name);
3663 strbuf_addf(&msg, "rebase (label) '%.*s'", len, name);
3664
3665 transaction = ref_store_transaction_begin(refs, &err);
3666 if (!transaction) {
3667 error("%s", err.buf);
3668 ret = -1;
3669 } else if (get_oid("HEAD", &head_oid)) {
3670 error(_("could not read HEAD"));
3671 ret = -1;
3672 } else if (ref_transaction_update(transaction, ref_name.buf, &head_oid,
3673 NULL, 0, msg.buf, &err) < 0 ||
3674 ref_transaction_commit(transaction, &err)) {
3675 error("%s", err.buf);
3676 ret = -1;
3677 }
3678 ref_transaction_free(transaction);
3679 strbuf_release(&err);
3680 strbuf_release(&msg);
3681
3682 if (!ret)
3683 ret = safe_append(rebase_path_refs_to_delete(),
3684 "%s\n", ref_name.buf);
3685 strbuf_release(&ref_name);
3686
3687 return ret;
3688 }
3689
3690 static const char *sequencer_reflog_action(struct replay_opts *opts)
3691 {
3692 if (!opts->reflog_action) {
3693 opts->reflog_action = getenv(GIT_REFLOG_ACTION);
3694 opts->reflog_action =
3695 xstrdup(opts->reflog_action ? opts->reflog_action
3696 : action_name(opts));
3697 }
3698
3699 return opts->reflog_action;
3700 }
3701
3702 __attribute__((format (printf, 3, 4)))
3703 static const char *reflog_message(struct replay_opts *opts,
3704 const char *sub_action, const char *fmt, ...)
3705 {
3706 va_list ap;
3707 static struct strbuf buf = STRBUF_INIT;
3708
3709 va_start(ap, fmt);
3710 strbuf_reset(&buf);
3711 strbuf_addstr(&buf, sequencer_reflog_action(opts));
3712 if (sub_action)
3713 strbuf_addf(&buf, " (%s)", sub_action);
3714 if (fmt) {
3715 strbuf_addstr(&buf, ": ");
3716 strbuf_vaddf(&buf, fmt, ap);
3717 }
3718 va_end(ap);
3719
3720 return buf.buf;
3721 }
3722
3723 static struct commit *lookup_label(struct repository *r, const char *label,
3724 int len, struct strbuf *buf)
3725 {
3726 struct commit *commit;
3727 struct object_id oid;
3728
3729 strbuf_reset(buf);
3730 strbuf_addf(buf, "refs/rewritten/%.*s", len, label);
3731 if (!read_ref(buf->buf, &oid)) {
3732 commit = lookup_commit_object(r, &oid);
3733 } else {
3734 /* fall back to non-rewritten ref or commit */
3735 strbuf_splice(buf, 0, strlen("refs/rewritten/"), "", 0);
3736 commit = lookup_commit_reference_by_name(buf->buf);
3737 }
3738
3739 if (!commit)
3740 error(_("could not resolve '%s'"), buf->buf);
3741
3742 return commit;
3743 }
3744
3745 static int do_reset(struct repository *r,
3746 const char *name, int len,
3747 struct replay_opts *opts)
3748 {
3749 struct strbuf ref_name = STRBUF_INIT;
3750 struct object_id oid;
3751 struct lock_file lock = LOCK_INIT;
3752 struct tree_desc desc = { 0 };
3753 struct tree *tree;
3754 struct unpack_trees_options unpack_tree_opts = { 0 };
3755 int ret = 0;
3756
3757 if (repo_hold_locked_index(r, &lock, LOCK_REPORT_ON_ERROR) < 0)
3758 return -1;
3759
3760 if (len == 10 && !strncmp("[new root]", name, len)) {
3761 if (!opts->have_squash_onto) {
3762 const char *hex;
3763 if (commit_tree("", 0, the_hash_algo->empty_tree,
3764 NULL, &opts->squash_onto,
3765 NULL, NULL))
3766 return error(_("writing fake root commit"));
3767 opts->have_squash_onto = 1;
3768 hex = oid_to_hex(&opts->squash_onto);
3769 if (write_message(hex, strlen(hex),
3770 rebase_path_squash_onto(), 0))
3771 return error(_("writing squash-onto"));
3772 }
3773 oidcpy(&oid, &opts->squash_onto);
3774 } else {
3775 int i;
3776 struct commit *commit;
3777
3778 /* Determine the length of the label */
3779 for (i = 0; i < len; i++)
3780 if (isspace(name[i]))
3781 break;
3782 len = i;
3783
3784 commit = lookup_label(r, name, len, &ref_name);
3785 if (!commit) {
3786 ret = -1;
3787 goto cleanup;
3788 }
3789 oid = commit->object.oid;
3790 }
3791
3792 setup_unpack_trees_porcelain(&unpack_tree_opts, "reset");
3793 unpack_tree_opts.head_idx = 1;
3794 unpack_tree_opts.src_index = r->index;
3795 unpack_tree_opts.dst_index = r->index;
3796 unpack_tree_opts.fn = oneway_merge;
3797 unpack_tree_opts.merge = 1;
3798 unpack_tree_opts.update = 1;
3799 unpack_tree_opts.preserve_ignored = 0; /* FIXME: !overwrite_ignore */
3800 unpack_tree_opts.skip_cache_tree_update = 1;
3801 init_checkout_metadata(&unpack_tree_opts.meta, name, &oid, NULL);
3802
3803 if (repo_read_index_unmerged(r)) {
3804 ret = error_resolve_conflict(action_name(opts));
3805 goto cleanup;
3806 }
3807
3808 if (!fill_tree_descriptor(r, &desc, &oid)) {
3809 ret = error(_("failed to find tree of %s"), oid_to_hex(&oid));
3810 goto cleanup;
3811 }
3812
3813 if (unpack_trees(1, &desc, &unpack_tree_opts)) {
3814 ret = -1;
3815 goto cleanup;
3816 }
3817
3818 tree = parse_tree_indirect(&oid);
3819 prime_cache_tree(r, r->index, tree);
3820
3821 if (write_locked_index(r->index, &lock, COMMIT_LOCK) < 0)
3822 ret = error(_("could not write index"));
3823
3824 if (!ret)
3825 ret = update_ref(reflog_message(opts, "reset", "'%.*s'",
3826 len, name), "HEAD", &oid,
3827 NULL, 0, UPDATE_REFS_MSG_ON_ERR);
3828 cleanup:
3829 free((void *)desc.buffer);
3830 if (ret < 0)
3831 rollback_lock_file(&lock);
3832 strbuf_release(&ref_name);
3833 clear_unpack_trees_porcelain(&unpack_tree_opts);
3834 return ret;
3835 }
3836
3837 static int do_merge(struct repository *r,
3838 struct commit *commit,
3839 const char *arg, int arg_len,
3840 int flags, int *check_todo, struct replay_opts *opts)
3841 {
3842 int run_commit_flags = 0;
3843 struct strbuf ref_name = STRBUF_INIT;
3844 struct commit *head_commit, *merge_commit, *i;
3845 struct commit_list *bases, *j;
3846 struct commit_list *to_merge = NULL, **tail = &to_merge;
3847 const char *strategy = !opts->xopts_nr &&
3848 (!opts->strategy ||
3849 !strcmp(opts->strategy, "recursive") ||
3850 !strcmp(opts->strategy, "ort")) ?
3851 NULL : opts->strategy;
3852 struct merge_options o;
3853 int merge_arg_len, oneline_offset, can_fast_forward, ret, k;
3854 static struct lock_file lock;
3855 const char *p;
3856
3857 if (repo_hold_locked_index(r, &lock, LOCK_REPORT_ON_ERROR) < 0) {
3858 ret = -1;
3859 goto leave_merge;
3860 }
3861
3862 head_commit = lookup_commit_reference_by_name("HEAD");
3863 if (!head_commit) {
3864 ret = error(_("cannot merge without a current revision"));
3865 goto leave_merge;
3866 }
3867
3868 /*
3869 * For octopus merges, the arg starts with the list of revisions to be
3870 * merged. The list is optionally followed by '#' and the oneline.
3871 */
3872 merge_arg_len = oneline_offset = arg_len;
3873 for (p = arg; p - arg < arg_len; p += strspn(p, " \t\n")) {
3874 if (!*p)
3875 break;
3876 if (*p == '#' && (!p[1] || isspace(p[1]))) {
3877 p += 1 + strspn(p + 1, " \t\n");
3878 oneline_offset = p - arg;
3879 break;
3880 }
3881 k = strcspn(p, " \t\n");
3882 if (!k)
3883 continue;
3884 merge_commit = lookup_label(r, p, k, &ref_name);
3885 if (!merge_commit) {
3886 ret = error(_("unable to parse '%.*s'"), k, p);
3887 goto leave_merge;
3888 }
3889 tail = &commit_list_insert(merge_commit, tail)->next;
3890 p += k;
3891 merge_arg_len = p - arg;
3892 }
3893
3894 if (!to_merge) {
3895 ret = error(_("nothing to merge: '%.*s'"), arg_len, arg);
3896 goto leave_merge;
3897 }
3898
3899 if (opts->have_squash_onto &&
3900 oideq(&head_commit->object.oid, &opts->squash_onto)) {
3901 /*
3902 * When the user tells us to "merge" something into a
3903 * "[new root]", let's simply fast-forward to the merge head.
3904 */
3905 rollback_lock_file(&lock);
3906 if (to_merge->next)
3907 ret = error(_("octopus merge cannot be executed on "
3908 "top of a [new root]"));
3909 else
3910 ret = fast_forward_to(r, &to_merge->item->object.oid,
3911 &head_commit->object.oid, 0,
3912 opts);
3913 goto leave_merge;
3914 }
3915
3916 /*
3917 * If HEAD is not identical to the first parent of the original merge
3918 * commit, we cannot fast-forward.
3919 */
3920 can_fast_forward = opts->allow_ff && commit && commit->parents &&
3921 oideq(&commit->parents->item->object.oid,
3922 &head_commit->object.oid);
3923
3924 /*
3925 * If any merge head is different from the original one, we cannot
3926 * fast-forward.
3927 */
3928 if (can_fast_forward) {
3929 struct commit_list *p = commit->parents->next;
3930
3931 for (j = to_merge; j && p; j = j->next, p = p->next)
3932 if (!oideq(&j->item->object.oid,
3933 &p->item->object.oid)) {
3934 can_fast_forward = 0;
3935 break;
3936 }
3937 /*
3938 * If the number of merge heads differs from the original merge
3939 * commit, we cannot fast-forward.
3940 */
3941 if (j || p)
3942 can_fast_forward = 0;
3943 }
3944
3945 if (can_fast_forward) {
3946 rollback_lock_file(&lock);
3947 ret = fast_forward_to(r, &commit->object.oid,
3948 &head_commit->object.oid, 0, opts);
3949 if (flags & TODO_EDIT_MERGE_MSG)
3950 goto fast_forward_edit;
3951
3952 goto leave_merge;
3953 }
3954
3955 if (commit) {
3956 const char *encoding = get_commit_output_encoding();
3957 const char *message = logmsg_reencode(commit, NULL, encoding);
3958 const char *body;
3959 int len;
3960
3961 if (!message) {
3962 ret = error(_("could not get commit message of '%s'"),
3963 oid_to_hex(&commit->object.oid));
3964 goto leave_merge;
3965 }
3966 write_author_script(message);
3967 find_commit_subject(message, &body);
3968 len = strlen(body);
3969 ret = write_message(body, len, git_path_merge_msg(r), 0);
3970 unuse_commit_buffer(commit, message);
3971 if (ret) {
3972 error_errno(_("could not write '%s'"),
3973 git_path_merge_msg(r));
3974 goto leave_merge;
3975 }
3976 } else {
3977 struct strbuf buf = STRBUF_INIT;
3978 int len;
3979
3980 strbuf_addf(&buf, "author %s", git_author_info(0));
3981 write_author_script(buf.buf);
3982 strbuf_reset(&buf);
3983
3984 if (oneline_offset < arg_len) {
3985 p = arg + oneline_offset;
3986 len = arg_len - oneline_offset;
3987 } else {
3988 strbuf_addf(&buf, "Merge %s '%.*s'",
3989 to_merge->next ? "branches" : "branch",
3990 merge_arg_len, arg);
3991 p = buf.buf;
3992 len = buf.len;
3993 }
3994
3995 ret = write_message(p, len, git_path_merge_msg(r), 0);
3996 strbuf_release(&buf);
3997 if (ret) {
3998 error_errno(_("could not write '%s'"),
3999 git_path_merge_msg(r));
4000 goto leave_merge;
4001 }
4002 }
4003
4004 if (strategy || to_merge->next) {
4005 /* Octopus merge */
4006 struct child_process cmd = CHILD_PROCESS_INIT;
4007
4008 if (read_env_script(&cmd.env)) {
4009 const char *gpg_opt = gpg_sign_opt_quoted(opts);
4010
4011 ret = error(_(staged_changes_advice), gpg_opt, gpg_opt);
4012 goto leave_merge;
4013 }
4014
4015 if (opts->committer_date_is_author_date)
4016 strvec_pushf(&cmd.env, "GIT_COMMITTER_DATE=%s",
4017 opts->ignore_date ?
4018 "" :
4019 author_date_from_env(&cmd.env));
4020 if (opts->ignore_date)
4021 strvec_push(&cmd.env, "GIT_AUTHOR_DATE=");
4022
4023 cmd.git_cmd = 1;
4024 strvec_push(&cmd.args, "merge");
4025 strvec_push(&cmd.args, "-s");
4026 if (!strategy)
4027 strvec_push(&cmd.args, "octopus");
4028 else {
4029 strvec_push(&cmd.args, strategy);
4030 for (k = 0; k < opts->xopts_nr; k++)
4031 strvec_pushf(&cmd.args,
4032 "-X%s", opts->xopts[k]);
4033 }
4034 if (!(flags & TODO_EDIT_MERGE_MSG))
4035 strvec_push(&cmd.args, "--no-edit");
4036 else
4037 strvec_push(&cmd.args, "--edit");
4038 strvec_push(&cmd.args, "--no-ff");
4039 strvec_push(&cmd.args, "--no-log");
4040 strvec_push(&cmd.args, "--no-stat");
4041 strvec_push(&cmd.args, "-F");
4042 strvec_push(&cmd.args, git_path_merge_msg(r));
4043 if (opts->gpg_sign)
4044 strvec_pushf(&cmd.args, "-S%s", opts->gpg_sign);
4045 else
4046 strvec_push(&cmd.args, "--no-gpg-sign");
4047
4048 /* Add the tips to be merged */
4049 for (j = to_merge; j; j = j->next)
4050 strvec_push(&cmd.args,
4051 oid_to_hex(&j->item->object.oid));
4052
4053 strbuf_release(&ref_name);
4054 refs_delete_ref(get_main_ref_store(r), "", "CHERRY_PICK_HEAD",
4055 NULL, 0);
4056 rollback_lock_file(&lock);
4057
4058 ret = run_command(&cmd);
4059
4060 /* force re-reading of the cache */
4061 if (!ret) {
4062 discard_index(r->index);
4063 if (repo_read_index(r) < 0)
4064 ret = error(_("could not read index"));
4065 }
4066 goto leave_merge;
4067 }
4068
4069 merge_commit = to_merge->item;
4070 bases = get_merge_bases(head_commit, merge_commit);
4071 if (bases && oideq(&merge_commit->object.oid,
4072 &bases->item->object.oid)) {
4073 ret = 0;
4074 /* skip merging an ancestor of HEAD */
4075 goto leave_merge;
4076 }
4077
4078 write_message(oid_to_hex(&merge_commit->object.oid), the_hash_algo->hexsz,
4079 git_path_merge_head(r), 0);
4080 write_message("no-ff", 5, git_path_merge_mode(r), 0);
4081
4082 bases = reverse_commit_list(bases);
4083
4084 repo_read_index(r);
4085 init_merge_options(&o, r);
4086 o.branch1 = "HEAD";
4087 o.branch2 = ref_name.buf;
4088 o.buffer_output = 2;
4089
4090 if (!opts->strategy || !strcmp(opts->strategy, "ort")) {
4091 /*
4092 * TODO: Should use merge_incore_recursive() and
4093 * merge_switch_to_result(), skipping the call to
4094 * merge_switch_to_result() when we don't actually need to
4095 * update the index and working copy immediately.
4096 */
4097 ret = merge_ort_recursive(&o,
4098 head_commit, merge_commit, bases,
4099 &i);
4100 } else {
4101 ret = merge_recursive(&o, head_commit, merge_commit, bases,
4102 &i);
4103 }
4104 if (ret <= 0)
4105 fputs(o.obuf.buf, stdout);
4106 strbuf_release(&o.obuf);
4107 if (ret < 0) {
4108 error(_("could not even attempt to merge '%.*s'"),
4109 merge_arg_len, arg);
4110 goto leave_merge;
4111 }
4112 /*
4113 * The return value of merge_recursive() is 1 on clean, and 0 on
4114 * unclean merge.
4115 *
4116 * Let's reverse that, so that do_merge() returns 0 upon success and
4117 * 1 upon failed merge (keeping the return value -1 for the cases where
4118 * we will want to reschedule the `merge` command).
4119 */
4120 ret = !ret;
4121
4122 if (r->index->cache_changed &&
4123 write_locked_index(r->index, &lock, COMMIT_LOCK)) {
4124 ret = error(_("merge: Unable to write new index file"));
4125 goto leave_merge;
4126 }
4127
4128 rollback_lock_file(&lock);
4129 if (ret)
4130 repo_rerere(r, opts->allow_rerere_auto);
4131 else
4132 /*
4133 * In case of problems, we now want to return a positive
4134 * value (a negative one would indicate that the `merge`
4135 * command needs to be rescheduled).
4136 */
4137 ret = !!run_git_commit(git_path_merge_msg(r), opts,
4138 run_commit_flags);
4139
4140 if (!ret && flags & TODO_EDIT_MERGE_MSG) {
4141 fast_forward_edit:
4142 *check_todo = 1;
4143 run_commit_flags |= AMEND_MSG | EDIT_MSG | VERIFY_MSG;
4144 ret = !!run_git_commit(NULL, opts, run_commit_flags);
4145 }
4146
4147
4148 leave_merge:
4149 strbuf_release(&ref_name);
4150 rollback_lock_file(&lock);
4151 free_commit_list(to_merge);
4152 return ret;
4153 }
4154
4155 static int write_update_refs_state(struct string_list *refs_to_oids)
4156 {
4157 int result = 0;
4158 struct lock_file lock = LOCK_INIT;
4159 FILE *fp = NULL;
4160 struct string_list_item *item;
4161 char *path;
4162
4163 path = rebase_path_update_refs(the_repository->gitdir);
4164
4165 if (!refs_to_oids->nr) {
4166 if (unlink(path) && errno != ENOENT)
4167 result = error_errno(_("could not unlink: %s"), path);
4168 goto cleanup;
4169 }
4170
4171 if (safe_create_leading_directories(path)) {
4172 result = error(_("unable to create leading directories of %s"),
4173 path);
4174 goto cleanup;
4175 }
4176
4177 if (hold_lock_file_for_update(&lock, path, 0) < 0) {
4178 result = error(_("another 'rebase' process appears to be running; "
4179 "'%s.lock' already exists"),
4180 path);
4181 goto cleanup;
4182 }
4183
4184 fp = fdopen_lock_file(&lock, "w");
4185 if (!fp) {
4186 result = error_errno(_("could not open '%s' for writing"), path);
4187 rollback_lock_file(&lock);
4188 goto cleanup;
4189 }
4190
4191 for_each_string_list_item(item, refs_to_oids) {
4192 struct update_ref_record *rec = item->util;
4193 fprintf(fp, "%s\n%s\n%s\n", item->string,
4194 oid_to_hex(&rec->before), oid_to_hex(&rec->after));
4195 }
4196
4197 result = commit_lock_file(&lock);
4198
4199 cleanup:
4200 free(path);
4201 return result;
4202 }
4203
4204 /*
4205 * Parse the update-refs file for the current rebase, then remove the
4206 * refs that do not appear in the todo_list (and have not had updated
4207 * values stored) and add refs that are in the todo_list but not
4208 * represented in the update-refs file.
4209 *
4210 * If there are changes to the update-refs list, then write the new state
4211 * to disk.
4212 */
4213 void todo_list_filter_update_refs(struct repository *r,
4214 struct todo_list *todo_list)
4215 {
4216 int i;
4217 int updated = 0;
4218 struct string_list update_refs = STRING_LIST_INIT_DUP;
4219
4220 sequencer_get_update_refs_state(r->gitdir, &update_refs);
4221
4222 /*
4223 * For each item in the update_refs list, if it has no updated
4224 * value and does not appear in the todo_list, then remove it
4225 * from the update_refs list.
4226 */
4227 for (i = 0; i < update_refs.nr; i++) {
4228 int j;
4229 int found = 0;
4230 const char *ref = update_refs.items[i].string;
4231 size_t reflen = strlen(ref);
4232 struct update_ref_record *rec = update_refs.items[i].util;
4233
4234 /* OID already stored as updated. */
4235 if (!is_null_oid(&rec->after))
4236 continue;
4237
4238 for (j = 0; !found && j < todo_list->total_nr; j++) {
4239 struct todo_item *item = &todo_list->items[j];
4240 const char *arg = todo_list->buf.buf + item->arg_offset;
4241
4242 if (item->command != TODO_UPDATE_REF)
4243 continue;
4244
4245 if (item->arg_len != reflen ||
4246 strncmp(arg, ref, reflen))
4247 continue;
4248
4249 found = 1;
4250 }
4251
4252 if (!found) {
4253 free(update_refs.items[i].string);
4254 free(update_refs.items[i].util);
4255
4256 update_refs.nr--;
4257 MOVE_ARRAY(update_refs.items + i, update_refs.items + i + 1, update_refs.nr - i);
4258
4259 updated = 1;
4260 i--;
4261 }
4262 }
4263
4264 /*
4265 * For each todo_item, check if its ref is in the update_refs list.
4266 * If not, then add it as an un-updated ref.
4267 */
4268 for (i = 0; i < todo_list->total_nr; i++) {
4269 struct todo_item *item = &todo_list->items[i];
4270 const char *arg = todo_list->buf.buf + item->arg_offset;
4271 int j, found = 0;
4272
4273 if (item->command != TODO_UPDATE_REF)
4274 continue;
4275
4276 for (j = 0; !found && j < update_refs.nr; j++) {
4277 const char *ref = update_refs.items[j].string;
4278
4279 found = strlen(ref) == item->arg_len &&
4280 !strncmp(ref, arg, item->arg_len);
4281 }
4282
4283 if (!found) {
4284 struct string_list_item *inserted;
4285 struct strbuf argref = STRBUF_INIT;
4286
4287 strbuf_add(&argref, arg, item->arg_len);
4288 inserted = string_list_insert(&update_refs, argref.buf);
4289 inserted->util = init_update_ref_record(argref.buf);
4290 strbuf_release(&argref);
4291 updated = 1;
4292 }
4293 }
4294
4295 if (updated)
4296 write_update_refs_state(&update_refs);
4297 string_list_clear(&update_refs, 1);
4298 }
4299
4300 static int do_update_ref(struct repository *r, const char *refname)
4301 {
4302 struct string_list_item *item;
4303 struct string_list list = STRING_LIST_INIT_DUP;
4304
4305 if (sequencer_get_update_refs_state(r->gitdir, &list))
4306 return -1;
4307
4308 for_each_string_list_item(item, &list) {
4309 if (!strcmp(item->string, refname)) {
4310 struct update_ref_record *rec = item->util;
4311 if (read_ref("HEAD", &rec->after))
4312 return -1;
4313 break;
4314 }
4315 }
4316
4317 write_update_refs_state(&list);
4318 string_list_clear(&list, 1);
4319 return 0;
4320 }
4321
4322 static int do_update_refs(struct repository *r, int quiet)
4323 {
4324 int res = 0;
4325 struct string_list_item *item;
4326 struct string_list refs_to_oids = STRING_LIST_INIT_DUP;
4327 struct ref_store *refs = get_main_ref_store(r);
4328 struct strbuf update_msg = STRBUF_INIT;
4329 struct strbuf error_msg = STRBUF_INIT;
4330
4331 if ((res = sequencer_get_update_refs_state(r->gitdir, &refs_to_oids)))
4332 return res;
4333
4334 for_each_string_list_item(item, &refs_to_oids) {
4335 struct update_ref_record *rec = item->util;
4336 int loop_res;
4337
4338 loop_res = refs_update_ref(refs, "rewritten during rebase",
4339 item->string,
4340 &rec->after, &rec->before,
4341 0, UPDATE_REFS_MSG_ON_ERR);
4342 res |= loop_res;
4343
4344 if (quiet)
4345 continue;
4346
4347 if (loop_res)
4348 strbuf_addf(&error_msg, "\t%s\n", item->string);
4349 else
4350 strbuf_addf(&update_msg, "\t%s\n", item->string);
4351 }
4352
4353 if (!quiet &&
4354 (update_msg.len || error_msg.len)) {
4355 fprintf(stderr,
4356 _("Updated the following refs with %s:\n%s"),
4357 "--update-refs",
4358 update_msg.buf);
4359
4360 if (res)
4361 fprintf(stderr,
4362 _("Failed to update the following refs with %s:\n%s"),
4363 "--update-refs",
4364 error_msg.buf);
4365 }
4366
4367 string_list_clear(&refs_to_oids, 1);
4368 strbuf_release(&update_msg);
4369 strbuf_release(&error_msg);
4370 return res;
4371 }
4372
4373 static int is_final_fixup(struct todo_list *todo_list)
4374 {
4375 int i = todo_list->current;
4376
4377 if (!is_fixup(todo_list->items[i].command))
4378 return 0;
4379
4380 while (++i < todo_list->nr)
4381 if (is_fixup(todo_list->items[i].command))
4382 return 0;
4383 else if (!is_noop(todo_list->items[i].command))
4384 break;
4385 return 1;
4386 }
4387
4388 static enum todo_command peek_command(struct todo_list *todo_list, int offset)
4389 {
4390 int i;
4391
4392 for (i = todo_list->current + offset; i < todo_list->nr; i++)
4393 if (!is_noop(todo_list->items[i].command))
4394 return todo_list->items[i].command;
4395
4396 return -1;
4397 }
4398
4399 void create_autostash(struct repository *r, const char *path)
4400 {
4401 struct strbuf buf = STRBUF_INIT;
4402 struct lock_file lock_file = LOCK_INIT;
4403 int fd;
4404
4405 fd = repo_hold_locked_index(r, &lock_file, 0);
4406 refresh_index(r->index, REFRESH_QUIET, NULL, NULL, NULL);
4407 if (0 <= fd)
4408 repo_update_index_if_able(r, &lock_file);
4409 rollback_lock_file(&lock_file);
4410
4411 if (has_unstaged_changes(r, 1) ||
4412 has_uncommitted_changes(r, 1)) {
4413 struct child_process stash = CHILD_PROCESS_INIT;
4414 struct reset_head_opts ropts = { .flags = RESET_HEAD_HARD };
4415 struct object_id oid;
4416
4417 strvec_pushl(&stash.args,
4418 "stash", "create", "autostash", NULL);
4419 stash.git_cmd = 1;
4420 stash.no_stdin = 1;
4421 strbuf_reset(&buf);
4422 if (capture_command(&stash, &buf, GIT_MAX_HEXSZ))
4423 die(_("Cannot autostash"));
4424 strbuf_trim_trailing_newline(&buf);
4425 if (get_oid(buf.buf, &oid))
4426 die(_("Unexpected stash response: '%s'"),
4427 buf.buf);
4428 strbuf_reset(&buf);
4429 strbuf_add_unique_abbrev(&buf, &oid, DEFAULT_ABBREV);
4430
4431 if (safe_create_leading_directories_const(path))
4432 die(_("Could not create directory for '%s'"),
4433 path);
4434 write_file(path, "%s", oid_to_hex(&oid));
4435 printf(_("Created autostash: %s\n"), buf.buf);
4436 if (reset_head(r, &ropts) < 0)
4437 die(_("could not reset --hard"));
4438 discard_index(r->index);
4439 if (repo_read_index(r) < 0)
4440 die(_("could not read index"));
4441 }
4442 strbuf_release(&buf);
4443 }
4444
4445 static int apply_save_autostash_oid(const char *stash_oid, int attempt_apply)
4446 {
4447 struct child_process child = CHILD_PROCESS_INIT;
4448 int ret = 0;
4449
4450 if (attempt_apply) {
4451 child.git_cmd = 1;
4452 child.no_stdout = 1;
4453 child.no_stderr = 1;
4454 strvec_push(&child.args, "stash");
4455 strvec_push(&child.args, "apply");
4456 strvec_push(&child.args, stash_oid);
4457 ret = run_command(&child);
4458 }
4459
4460 if (attempt_apply && !ret)
4461 fprintf(stderr, _("Applied autostash.\n"));
4462 else {
4463 struct child_process store = CHILD_PROCESS_INIT;
4464
4465 store.git_cmd = 1;
4466 strvec_push(&store.args, "stash");
4467 strvec_push(&store.args, "store");
4468 strvec_push(&store.args, "-m");
4469 strvec_push(&store.args, "autostash");
4470 strvec_push(&store.args, "-q");
4471 strvec_push(&store.args, stash_oid);
4472 if (run_command(&store))
4473 ret = error(_("cannot store %s"), stash_oid);
4474 else
4475 fprintf(stderr,
4476 _("%s\n"
4477 "Your changes are safe in the stash.\n"
4478 "You can run \"git stash pop\" or"
4479 " \"git stash drop\" at any time.\n"),
4480 attempt_apply ?
4481 _("Applying autostash resulted in conflicts.") :
4482 _("Autostash exists; creating a new stash entry."));
4483 }
4484
4485 return ret;
4486 }
4487
4488 static int apply_save_autostash(const char *path, int attempt_apply)
4489 {
4490 struct strbuf stash_oid = STRBUF_INIT;
4491 int ret = 0;
4492
4493 if (!read_oneliner(&stash_oid, path,
4494 READ_ONELINER_SKIP_IF_EMPTY)) {
4495 strbuf_release(&stash_oid);
4496 return 0;
4497 }
4498 strbuf_trim(&stash_oid);
4499
4500 ret = apply_save_autostash_oid(stash_oid.buf, attempt_apply);
4501
4502 unlink(path);
4503 strbuf_release(&stash_oid);
4504 return ret;
4505 }
4506
4507 int save_autostash(const char *path)
4508 {
4509 return apply_save_autostash(path, 0);
4510 }
4511
4512 int apply_autostash(const char *path)
4513 {
4514 return apply_save_autostash(path, 1);
4515 }
4516
4517 int apply_autostash_oid(const char *stash_oid)
4518 {
4519 return apply_save_autostash_oid(stash_oid, 1);
4520 }
4521
4522 static int checkout_onto(struct repository *r, struct replay_opts *opts,
4523 const char *onto_name, const struct object_id *onto,
4524 const struct object_id *orig_head)
4525 {
4526 struct reset_head_opts ropts = {
4527 .oid = onto,
4528 .orig_head = orig_head,
4529 .flags = RESET_HEAD_DETACH | RESET_ORIG_HEAD |
4530 RESET_HEAD_RUN_POST_CHECKOUT_HOOK,
4531 .head_msg = reflog_message(opts, "start", "checkout %s",
4532 onto_name),
4533 .default_reflog_action = sequencer_reflog_action(opts)
4534 };
4535 if (reset_head(r, &ropts)) {
4536 apply_autostash(rebase_path_autostash());
4537 sequencer_remove_state(opts);
4538 return error(_("could not detach HEAD"));
4539 }
4540
4541 return 0;
4542 }
4543
4544 static int stopped_at_head(struct repository *r)
4545 {
4546 struct object_id head;
4547 struct commit *commit;
4548 struct commit_message message;
4549
4550 if (get_oid("HEAD", &head) ||
4551 !(commit = lookup_commit(r, &head)) ||
4552 parse_commit(commit) || get_message(commit, &message))
4553 fprintf(stderr, _("Stopped at HEAD\n"));
4554 else {
4555 fprintf(stderr, _("Stopped at %s\n"), message.label);
4556 free_message(commit, &message);
4557 }
4558 return 0;
4559
4560 }
4561
4562 static int reread_todo_if_changed(struct repository *r,
4563 struct todo_list *todo_list,
4564 struct replay_opts *opts)
4565 {
4566 int offset;
4567 struct strbuf buf = STRBUF_INIT;
4568
4569 if (strbuf_read_file_or_whine(&buf, get_todo_path(opts)) < 0)
4570 return -1;
4571 offset = get_item_line_offset(todo_list, todo_list->current + 1);
4572 if (buf.len != todo_list->buf.len - offset ||
4573 memcmp(buf.buf, todo_list->buf.buf + offset, buf.len)) {
4574 /* Reread the todo file if it has changed. */
4575 todo_list_release(todo_list);
4576 if (read_populate_todo(r, todo_list, opts))
4577 return -1; /* message was printed */
4578 /* `current` will be incremented on return */
4579 todo_list->current = -1;
4580 }
4581 strbuf_release(&buf);
4582
4583 return 0;
4584 }
4585
4586 static const char rescheduled_advice[] =
4587 N_("Could not execute the todo command\n"
4588 "\n"
4589 " %.*s"
4590 "\n"
4591 "It has been rescheduled; To edit the command before continuing, please\n"
4592 "edit the todo list first:\n"
4593 "\n"
4594 " git rebase --edit-todo\n"
4595 " git rebase --continue\n");
4596
4597 static int pick_commits(struct repository *r,
4598 struct todo_list *todo_list,
4599 struct replay_opts *opts)
4600 {
4601 int res = 0, reschedule = 0;
4602
4603 opts->reflog_message = sequencer_reflog_action(opts);
4604 if (opts->allow_ff)
4605 assert(!(opts->signoff || opts->no_commit ||
4606 opts->record_origin || should_edit(opts) ||
4607 opts->committer_date_is_author_date ||
4608 opts->ignore_date));
4609 if (read_and_refresh_cache(r, opts))
4610 return -1;
4611
4612 while (todo_list->current < todo_list->nr) {
4613 struct todo_item *item = todo_list->items + todo_list->current;
4614 const char *arg = todo_item_get_arg(todo_list, item);
4615 int check_todo = 0;
4616
4617 if (save_todo(todo_list, opts))
4618 return -1;
4619 if (is_rebase_i(opts)) {
4620 if (item->command != TODO_COMMENT) {
4621 FILE *f = fopen(rebase_path_msgnum(), "w");
4622
4623 todo_list->done_nr++;
4624
4625 if (f) {
4626 fprintf(f, "%d\n", todo_list->done_nr);
4627 fclose(f);
4628 }
4629 if (!opts->quiet)
4630 fprintf(stderr, _("Rebasing (%d/%d)%s"),
4631 todo_list->done_nr,
4632 todo_list->total_nr,
4633 opts->verbose ? "\n" : "\r");
4634 }
4635 unlink(rebase_path_message());
4636 unlink(rebase_path_author_script());
4637 unlink(rebase_path_stopped_sha());
4638 unlink(rebase_path_amend());
4639 unlink(git_path_merge_head(r));
4640 unlink(git_path_auto_merge(r));
4641 delete_ref(NULL, "REBASE_HEAD", NULL, REF_NO_DEREF);
4642
4643 if (item->command == TODO_BREAK) {
4644 if (!opts->verbose)
4645 term_clear_line();
4646 return stopped_at_head(r);
4647 }
4648 }
4649 if (item->command <= TODO_SQUASH) {
4650 if (is_rebase_i(opts))
4651 opts->reflog_message = reflog_message(opts,
4652 command_to_string(item->command), NULL);
4653
4654 res = do_pick_commit(r, item, opts,
4655 is_final_fixup(todo_list),
4656 &check_todo);
4657 if (is_rebase_i(opts) && res < 0) {
4658 /* Reschedule */
4659 advise(_(rescheduled_advice),
4660 get_item_line_length(todo_list,
4661 todo_list->current),
4662 get_item_line(todo_list,
4663 todo_list->current));
4664 todo_list->current--;
4665 if (save_todo(todo_list, opts))
4666 return -1;
4667 }
4668 if (item->command == TODO_EDIT) {
4669 struct commit *commit = item->commit;
4670 if (!res) {
4671 if (!opts->verbose)
4672 term_clear_line();
4673 fprintf(stderr,
4674 _("Stopped at %s... %.*s\n"),
4675 short_commit_name(commit),
4676 item->arg_len, arg);
4677 }
4678 return error_with_patch(r, commit,
4679 arg, item->arg_len, opts, res, !res);
4680 }
4681 if (is_rebase_i(opts) && !res)
4682 record_in_rewritten(&item->commit->object.oid,
4683 peek_command(todo_list, 1));
4684 if (res && is_fixup(item->command)) {
4685 if (res == 1)
4686 intend_to_amend();
4687 return error_failed_squash(r, item->commit, opts,
4688 item->arg_len, arg);
4689 } else if (res && is_rebase_i(opts) && item->commit) {
4690 int to_amend = 0;
4691 struct object_id oid;
4692
4693 /*
4694 * If we are rewording and have either
4695 * fast-forwarded already, or are about to
4696 * create a new root commit, we want to amend,
4697 * otherwise we do not.
4698 */
4699 if (item->command == TODO_REWORD &&
4700 !get_oid("HEAD", &oid) &&
4701 (oideq(&item->commit->object.oid, &oid) ||
4702 (opts->have_squash_onto &&
4703 oideq(&opts->squash_onto, &oid))))
4704 to_amend = 1;
4705
4706 return res | error_with_patch(r, item->commit,
4707 arg, item->arg_len, opts,
4708 res, to_amend);
4709 }
4710 } else if (item->command == TODO_EXEC) {
4711 char *end_of_arg = (char *)(arg + item->arg_len);
4712 int saved = *end_of_arg;
4713
4714 if (!opts->verbose)
4715 term_clear_line();
4716 *end_of_arg = '\0';
4717 res = do_exec(r, arg);
4718 *end_of_arg = saved;
4719
4720 if (res) {
4721 if (opts->reschedule_failed_exec)
4722 reschedule = 1;
4723 }
4724 check_todo = 1;
4725 } else if (item->command == TODO_LABEL) {
4726 if ((res = do_label(r, arg, item->arg_len)))
4727 reschedule = 1;
4728 } else if (item->command == TODO_RESET) {
4729 if ((res = do_reset(r, arg, item->arg_len, opts)))
4730 reschedule = 1;
4731 } else if (item->command == TODO_MERGE) {
4732 if ((res = do_merge(r, item->commit, arg, item->arg_len,
4733 item->flags, &check_todo, opts)) < 0)
4734 reschedule = 1;
4735 else if (item->commit)
4736 record_in_rewritten(&item->commit->object.oid,
4737 peek_command(todo_list, 1));
4738 if (res > 0)
4739 /* failed with merge conflicts */
4740 return error_with_patch(r, item->commit,
4741 arg, item->arg_len,
4742 opts, res, 0);
4743 } else if (item->command == TODO_UPDATE_REF) {
4744 struct strbuf ref = STRBUF_INIT;
4745 strbuf_add(&ref, arg, item->arg_len);
4746 if ((res = do_update_ref(r, ref.buf)))
4747 reschedule = 1;
4748 strbuf_release(&ref);
4749 } else if (!is_noop(item->command))
4750 return error(_("unknown command %d"), item->command);
4751
4752 if (reschedule) {
4753 advise(_(rescheduled_advice),
4754 get_item_line_length(todo_list,
4755 todo_list->current),
4756 get_item_line(todo_list, todo_list->current));
4757 todo_list->current--;
4758 if (save_todo(todo_list, opts))
4759 return -1;
4760 if (item->commit)
4761 return error_with_patch(r,
4762 item->commit,
4763 arg, item->arg_len,
4764 opts, res, 0);
4765 } else if (is_rebase_i(opts) && check_todo && !res &&
4766 reread_todo_if_changed(r, todo_list, opts)) {
4767 return -1;
4768 }
4769
4770 todo_list->current++;
4771 if (res)
4772 return res;
4773 }
4774
4775 if (is_rebase_i(opts)) {
4776 struct strbuf head_ref = STRBUF_INIT, buf = STRBUF_INIT;
4777 struct stat st;
4778
4779 /* Stopped in the middle, as planned? */
4780 if (todo_list->current < todo_list->nr)
4781 return 0;
4782
4783 if (read_oneliner(&head_ref, rebase_path_head_name(), 0) &&
4784 starts_with(head_ref.buf, "refs/")) {
4785 const char *msg;
4786 struct object_id head, orig;
4787 int res;
4788
4789 if (get_oid("HEAD", &head)) {
4790 res = error(_("cannot read HEAD"));
4791 cleanup_head_ref:
4792 strbuf_release(&head_ref);
4793 strbuf_release(&buf);
4794 return res;
4795 }
4796 if (!read_oneliner(&buf, rebase_path_orig_head(), 0) ||
4797 get_oid_hex(buf.buf, &orig)) {
4798 res = error(_("could not read orig-head"));
4799 goto cleanup_head_ref;
4800 }
4801 strbuf_reset(&buf);
4802 if (!read_oneliner(&buf, rebase_path_onto(), 0)) {
4803 res = error(_("could not read 'onto'"));
4804 goto cleanup_head_ref;
4805 }
4806 msg = reflog_message(opts, "finish", "%s onto %s",
4807 head_ref.buf, buf.buf);
4808 if (update_ref(msg, head_ref.buf, &head, &orig,
4809 REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR)) {
4810 res = error(_("could not update %s"),
4811 head_ref.buf);
4812 goto cleanup_head_ref;
4813 }
4814 msg = reflog_message(opts, "finish", "returning to %s",
4815 head_ref.buf);
4816 if (create_symref("HEAD", head_ref.buf, msg)) {
4817 res = error(_("could not update HEAD to %s"),
4818 head_ref.buf);
4819 goto cleanup_head_ref;
4820 }
4821 strbuf_reset(&buf);
4822 }
4823
4824 if (opts->verbose) {
4825 struct rev_info log_tree_opt;
4826 struct object_id orig, head;
4827
4828 memset(&log_tree_opt, 0, sizeof(log_tree_opt));
4829 repo_init_revisions(r, &log_tree_opt, NULL);
4830 log_tree_opt.diff = 1;
4831 log_tree_opt.diffopt.output_format =
4832 DIFF_FORMAT_DIFFSTAT;
4833 log_tree_opt.disable_stdin = 1;
4834
4835 if (read_oneliner(&buf, rebase_path_orig_head(), 0) &&
4836 !get_oid(buf.buf, &orig) &&
4837 !get_oid("HEAD", &head)) {
4838 diff_tree_oid(&orig, &head, "",
4839 &log_tree_opt.diffopt);
4840 log_tree_diff_flush(&log_tree_opt);
4841 }
4842 release_revisions(&log_tree_opt);
4843 }
4844 flush_rewritten_pending();
4845 if (!stat(rebase_path_rewritten_list(), &st) &&
4846 st.st_size > 0) {
4847 struct child_process child = CHILD_PROCESS_INIT;
4848 struct run_hooks_opt hook_opt = RUN_HOOKS_OPT_INIT;
4849
4850 child.in = open(rebase_path_rewritten_list(), O_RDONLY);
4851 child.git_cmd = 1;
4852 strvec_push(&child.args, "notes");
4853 strvec_push(&child.args, "copy");
4854 strvec_push(&child.args, "--for-rewrite=rebase");
4855 /* we don't care if this copying failed */
4856 run_command(&child);
4857
4858 hook_opt.path_to_stdin = rebase_path_rewritten_list();
4859 strvec_push(&hook_opt.args, "rebase");
4860 run_hooks_opt("post-rewrite", &hook_opt);
4861 }
4862 apply_autostash(rebase_path_autostash());
4863
4864 if (!opts->quiet) {
4865 if (!opts->verbose)
4866 term_clear_line();
4867 fprintf(stderr,
4868 _("Successfully rebased and updated %s.\n"),
4869 head_ref.buf);
4870 }
4871
4872 strbuf_release(&buf);
4873 strbuf_release(&head_ref);
4874
4875 if (do_update_refs(r, opts->quiet))
4876 return -1;
4877 }
4878
4879 /*
4880 * Sequence of picks finished successfully; cleanup by
4881 * removing the .git/sequencer directory
4882 */
4883 return sequencer_remove_state(opts);
4884 }
4885
4886 static int continue_single_pick(struct repository *r, struct replay_opts *opts)
4887 {
4888 struct child_process cmd = CHILD_PROCESS_INIT;
4889
4890 if (!refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD") &&
4891 !refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD"))
4892 return error(_("no cherry-pick or revert in progress"));
4893
4894 cmd.git_cmd = 1;
4895 strvec_push(&cmd.args, "commit");
4896
4897 /*
4898 * continue_single_pick() handles the case of recovering from a
4899 * conflict. should_edit() doesn't handle that case; for a conflict,
4900 * we want to edit if the user asked for it, or if they didn't specify
4901 * and stdin is a tty.
4902 */
4903 if (!opts->edit || (opts->edit < 0 && !isatty(0)))
4904 /*
4905 * Include --cleanup=strip as well because we don't want the
4906 * "# Conflicts:" messages.
4907 */
4908 strvec_pushl(&cmd.args, "--no-edit", "--cleanup=strip", NULL);
4909
4910 return run_command(&cmd);
4911 }
4912
4913 static int commit_staged_changes(struct repository *r,
4914 struct replay_opts *opts,
4915 struct todo_list *todo_list)
4916 {
4917 unsigned int flags = ALLOW_EMPTY | EDIT_MSG;
4918 unsigned int final_fixup = 0, is_clean;
4919
4920 if (has_unstaged_changes(r, 1))
4921 return error(_("cannot rebase: You have unstaged changes."));
4922
4923 is_clean = !has_uncommitted_changes(r, 0);
4924
4925 if (file_exists(rebase_path_amend())) {
4926 struct strbuf rev = STRBUF_INIT;
4927 struct object_id head, to_amend;
4928
4929 if (get_oid("HEAD", &head))
4930 return error(_("cannot amend non-existing commit"));
4931 if (!read_oneliner(&rev, rebase_path_amend(), 0))
4932 return error(_("invalid file: '%s'"), rebase_path_amend());
4933 if (get_oid_hex(rev.buf, &to_amend))
4934 return error(_("invalid contents: '%s'"),
4935 rebase_path_amend());
4936 if (!is_clean && !oideq(&head, &to_amend))
4937 return error(_("\nYou have uncommitted changes in your "
4938 "working tree. Please, commit them\n"
4939 "first and then run 'git rebase "
4940 "--continue' again."));
4941 /*
4942 * When skipping a failed fixup/squash, we need to edit the
4943 * commit message, the current fixup list and count, and if it
4944 * was the last fixup/squash in the chain, we need to clean up
4945 * the commit message and if there was a squash, let the user
4946 * edit it.
4947 */
4948 if (!is_clean || !opts->current_fixup_count)
4949 ; /* this is not the final fixup */
4950 else if (!oideq(&head, &to_amend) ||
4951 !file_exists(rebase_path_stopped_sha())) {
4952 /* was a final fixup or squash done manually? */
4953 if (!is_fixup(peek_command(todo_list, 0))) {
4954 unlink(rebase_path_fixup_msg());
4955 unlink(rebase_path_squash_msg());
4956 unlink(rebase_path_current_fixups());
4957 strbuf_reset(&opts->current_fixups);
4958 opts->current_fixup_count = 0;
4959 }
4960 } else {
4961 /* we are in a fixup/squash chain */
4962 const char *p = opts->current_fixups.buf;
4963 int len = opts->current_fixups.len;
4964
4965 opts->current_fixup_count--;
4966 if (!len)
4967 BUG("Incorrect current_fixups:\n%s", p);
4968 while (len && p[len - 1] != '\n')
4969 len--;
4970 strbuf_setlen(&opts->current_fixups, len);
4971 if (write_message(p, len, rebase_path_current_fixups(),
4972 0) < 0)
4973 return error(_("could not write file: '%s'"),
4974 rebase_path_current_fixups());
4975
4976 /*
4977 * If a fixup/squash in a fixup/squash chain failed, the
4978 * commit message is already correct, no need to commit
4979 * it again.
4980 *
4981 * Only if it is the final command in the fixup/squash
4982 * chain, and only if the chain is longer than a single
4983 * fixup/squash command (which was just skipped), do we
4984 * actually need to re-commit with a cleaned up commit
4985 * message.
4986 */
4987 if (opts->current_fixup_count > 0 &&
4988 !is_fixup(peek_command(todo_list, 0))) {
4989 final_fixup = 1;
4990 /*
4991 * If there was not a single "squash" in the
4992 * chain, we only need to clean up the commit
4993 * message, no need to bother the user with
4994 * opening the commit message in the editor.
4995 */
4996 if (!starts_with(p, "squash ") &&
4997 !strstr(p, "\nsquash "))
4998 flags = (flags & ~EDIT_MSG) | CLEANUP_MSG;
4999 } else if (is_fixup(peek_command(todo_list, 0))) {
5000 /*
5001 * We need to update the squash message to skip
5002 * the latest commit message.
5003 */
5004 struct commit *commit;
5005 const char *path = rebase_path_squash_msg();
5006 const char *encoding = get_commit_output_encoding();
5007
5008 if (parse_head(r, &commit) ||
5009 !(p = logmsg_reencode(commit, NULL, encoding)) ||
5010 write_message(p, strlen(p), path, 0)) {
5011 unuse_commit_buffer(commit, p);
5012 return error(_("could not write file: "
5013 "'%s'"), path);
5014 }
5015 unuse_commit_buffer(commit, p);
5016 }
5017 }
5018
5019 strbuf_release(&rev);
5020 flags |= AMEND_MSG;
5021 }
5022
5023 if (is_clean) {
5024 if (refs_ref_exists(get_main_ref_store(r),
5025 "CHERRY_PICK_HEAD") &&
5026 refs_delete_ref(get_main_ref_store(r), "",
5027 "CHERRY_PICK_HEAD", NULL, 0))
5028 return error(_("could not remove CHERRY_PICK_HEAD"));
5029 if (unlink(git_path_merge_msg(r)) && errno != ENOENT)
5030 return error_errno(_("could not remove '%s'"),
5031 git_path_merge_msg(r));
5032 if (!final_fixup)
5033 return 0;
5034 }
5035
5036 if (run_git_commit(final_fixup ? NULL : rebase_path_message(),
5037 opts, flags))
5038 return error(_("could not commit staged changes."));
5039 unlink(rebase_path_amend());
5040 unlink(git_path_merge_head(r));
5041 unlink(git_path_auto_merge(r));
5042 if (final_fixup) {
5043 unlink(rebase_path_fixup_msg());
5044 unlink(rebase_path_squash_msg());
5045 }
5046 if (opts->current_fixup_count > 0) {
5047 /*
5048 * Whether final fixup or not, we just cleaned up the commit
5049 * message...
5050 */
5051 unlink(rebase_path_current_fixups());
5052 strbuf_reset(&opts->current_fixups);
5053 opts->current_fixup_count = 0;
5054 }
5055 return 0;
5056 }
5057
5058 int sequencer_continue(struct repository *r, struct replay_opts *opts)
5059 {
5060 struct todo_list todo_list = TODO_LIST_INIT;
5061 int res;
5062
5063 if (read_and_refresh_cache(r, opts))
5064 return -1;
5065
5066 if (read_populate_opts(opts))
5067 return -1;
5068 if (is_rebase_i(opts)) {
5069 if ((res = read_populate_todo(r, &todo_list, opts)))
5070 goto release_todo_list;
5071
5072 if (file_exists(rebase_path_dropped())) {
5073 if ((res = todo_list_check_against_backup(r, &todo_list)))
5074 goto release_todo_list;
5075
5076 unlink(rebase_path_dropped());
5077 }
5078
5079 opts->reflog_message = reflog_message(opts, "continue", NULL);
5080 if (commit_staged_changes(r, opts, &todo_list)) {
5081 res = -1;
5082 goto release_todo_list;
5083 }
5084 } else if (!file_exists(get_todo_path(opts)))
5085 return continue_single_pick(r, opts);
5086 else if ((res = read_populate_todo(r, &todo_list, opts)))
5087 goto release_todo_list;
5088
5089 if (!is_rebase_i(opts)) {
5090 /* Verify that the conflict has been resolved */
5091 if (refs_ref_exists(get_main_ref_store(r),
5092 "CHERRY_PICK_HEAD") ||
5093 refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD")) {
5094 res = continue_single_pick(r, opts);
5095 if (res)
5096 goto release_todo_list;
5097 }
5098 if (index_differs_from(r, "HEAD", NULL, 0)) {
5099 res = error_dirty_index(r, opts);
5100 goto release_todo_list;
5101 }
5102 todo_list.current++;
5103 } else if (file_exists(rebase_path_stopped_sha())) {
5104 struct strbuf buf = STRBUF_INIT;
5105 struct object_id oid;
5106
5107 if (read_oneliner(&buf, rebase_path_stopped_sha(),
5108 READ_ONELINER_SKIP_IF_EMPTY) &&
5109 !get_oid_hex(buf.buf, &oid))
5110 record_in_rewritten(&oid, peek_command(&todo_list, 0));
5111 strbuf_release(&buf);
5112 }
5113
5114 res = pick_commits(r, &todo_list, opts);
5115 release_todo_list:
5116 todo_list_release(&todo_list);
5117 return res;
5118 }
5119
5120 static int single_pick(struct repository *r,
5121 struct commit *cmit,
5122 struct replay_opts *opts)
5123 {
5124 int check_todo;
5125 struct todo_item item;
5126
5127 item.command = opts->action == REPLAY_PICK ?
5128 TODO_PICK : TODO_REVERT;
5129 item.commit = cmit;
5130
5131 opts->reflog_message = sequencer_reflog_action(opts);
5132 return do_pick_commit(r, &item, opts, 0, &check_todo);
5133 }
5134
5135 int sequencer_pick_revisions(struct repository *r,
5136 struct replay_opts *opts)
5137 {
5138 struct todo_list todo_list = TODO_LIST_INIT;
5139 struct object_id oid;
5140 int i, res;
5141
5142 assert(opts->revs);
5143 if (read_and_refresh_cache(r, opts))
5144 return -1;
5145
5146 for (i = 0; i < opts->revs->pending.nr; i++) {
5147 struct object_id oid;
5148 const char *name = opts->revs->pending.objects[i].name;
5149
5150 /* This happens when using --stdin. */
5151 if (!strlen(name))
5152 continue;
5153
5154 if (!get_oid(name, &oid)) {
5155 if (!lookup_commit_reference_gently(r, &oid, 1)) {
5156 enum object_type type = oid_object_info(r,
5157 &oid,
5158 NULL);
5159 return error(_("%s: can't cherry-pick a %s"),
5160 name, type_name(type));
5161 }
5162 } else
5163 return error(_("%s: bad revision"), name);
5164 }
5165
5166 /*
5167 * If we were called as "git cherry-pick <commit>", just
5168 * cherry-pick/revert it, set CHERRY_PICK_HEAD /
5169 * REVERT_HEAD, and don't touch the sequencer state.
5170 * This means it is possible to cherry-pick in the middle
5171 * of a cherry-pick sequence.
5172 */
5173 if (opts->revs->cmdline.nr == 1 &&
5174 opts->revs->cmdline.rev->whence == REV_CMD_REV &&
5175 opts->revs->no_walk &&
5176 !opts->revs->cmdline.rev->flags) {
5177 struct commit *cmit;
5178 if (prepare_revision_walk(opts->revs))
5179 return error(_("revision walk setup failed"));
5180 cmit = get_revision(opts->revs);
5181 if (!cmit)
5182 return error(_("empty commit set passed"));
5183 if (get_revision(opts->revs))
5184 BUG("unexpected extra commit from walk");
5185 return single_pick(r, cmit, opts);
5186 }
5187
5188 /*
5189 * Start a new cherry-pick/ revert sequence; but
5190 * first, make sure that an existing one isn't in
5191 * progress
5192 */
5193
5194 if (walk_revs_populate_todo(&todo_list, opts) ||
5195 create_seq_dir(r) < 0)
5196 return -1;
5197 if (get_oid("HEAD", &oid) && (opts->action == REPLAY_REVERT))
5198 return error(_("can't revert as initial commit"));
5199 if (save_head(oid_to_hex(&oid)))
5200 return -1;
5201 if (save_opts(opts))
5202 return -1;
5203 update_abort_safety_file();
5204 res = pick_commits(r, &todo_list, opts);
5205 todo_list_release(&todo_list);
5206 return res;
5207 }
5208
5209 void append_signoff(struct strbuf *msgbuf, size_t ignore_footer, unsigned flag)
5210 {
5211 unsigned no_dup_sob = flag & APPEND_SIGNOFF_DEDUP;
5212 struct strbuf sob = STRBUF_INIT;
5213 int has_footer;
5214
5215 strbuf_addstr(&sob, sign_off_header);
5216 strbuf_addstr(&sob, fmt_name(WANT_COMMITTER_IDENT));
5217 strbuf_addch(&sob, '\n');
5218
5219 if (!ignore_footer)
5220 strbuf_complete_line(msgbuf);
5221
5222 /*
5223 * If the whole message buffer is equal to the sob, pretend that we
5224 * found a conforming footer with a matching sob
5225 */
5226 if (msgbuf->len - ignore_footer == sob.len &&
5227 !strncmp(msgbuf->buf, sob.buf, sob.len))
5228 has_footer = 3;
5229 else
5230 has_footer = has_conforming_footer(msgbuf, &sob, ignore_footer);
5231
5232 if (!has_footer) {
5233 const char *append_newlines = NULL;
5234 size_t len = msgbuf->len - ignore_footer;
5235
5236 if (!len) {
5237 /*
5238 * The buffer is completely empty. Leave foom for
5239 * the title and body to be filled in by the user.
5240 */
5241 append_newlines = "\n\n";
5242 } else if (len == 1) {
5243 /*
5244 * Buffer contains a single newline. Add another
5245 * so that we leave room for the title and body.
5246 */
5247 append_newlines = "\n";
5248 } else if (msgbuf->buf[len - 2] != '\n') {
5249 /*
5250 * Buffer ends with a single newline. Add another
5251 * so that there is an empty line between the message
5252 * body and the sob.
5253 */
5254 append_newlines = "\n";
5255 } /* else, the buffer already ends with two newlines. */
5256
5257 if (append_newlines)
5258 strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0,
5259 append_newlines, strlen(append_newlines));
5260 }
5261
5262 if (has_footer != 3 && (!no_dup_sob || has_footer != 2))
5263 strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0,
5264 sob.buf, sob.len);
5265
5266 strbuf_release(&sob);
5267 }
5268
5269 struct labels_entry {
5270 struct hashmap_entry entry;
5271 char label[FLEX_ARRAY];
5272 };
5273
5274 static int labels_cmp(const void *fndata UNUSED,
5275 const struct hashmap_entry *eptr,
5276 const struct hashmap_entry *entry_or_key, const void *key)
5277 {
5278 const struct labels_entry *a, *b;
5279
5280 a = container_of(eptr, const struct labels_entry, entry);
5281 b = container_of(entry_or_key, const struct labels_entry, entry);
5282
5283 return key ? strcmp(a->label, key) : strcmp(a->label, b->label);
5284 }
5285
5286 struct string_entry {
5287 struct oidmap_entry entry;
5288 char string[FLEX_ARRAY];
5289 };
5290
5291 struct label_state {
5292 struct oidmap commit2label;
5293 struct hashmap labels;
5294 struct strbuf buf;
5295 };
5296
5297 static const char *label_oid(struct object_id *oid, const char *label,
5298 struct label_state *state)
5299 {
5300 struct labels_entry *labels_entry;
5301 struct string_entry *string_entry;
5302 struct object_id dummy;
5303 int i;
5304
5305 string_entry = oidmap_get(&state->commit2label, oid);
5306 if (string_entry)
5307 return string_entry->string;
5308
5309 /*
5310 * For "uninteresting" commits, i.e. commits that are not to be
5311 * rebased, and which can therefore not be labeled, we use a unique
5312 * abbreviation of the commit name. This is slightly more complicated
5313 * than calling find_unique_abbrev() because we also need to make
5314 * sure that the abbreviation does not conflict with any other
5315 * label.
5316 *
5317 * We disallow "interesting" commits to be labeled by a string that
5318 * is a valid full-length hash, to ensure that we always can find an
5319 * abbreviation for any uninteresting commit's names that does not
5320 * clash with any other label.
5321 */
5322 strbuf_reset(&state->buf);
5323 if (!label) {
5324 char *p;
5325
5326 strbuf_grow(&state->buf, GIT_MAX_HEXSZ);
5327 label = p = state->buf.buf;
5328
5329 find_unique_abbrev_r(p, oid, default_abbrev);
5330
5331 /*
5332 * We may need to extend the abbreviated hash so that there is
5333 * no conflicting label.
5334 */
5335 if (hashmap_get_from_hash(&state->labels, strihash(p), p)) {
5336 size_t i = strlen(p) + 1;
5337
5338 oid_to_hex_r(p, oid);
5339 for (; i < the_hash_algo->hexsz; i++) {
5340 char save = p[i];
5341 p[i] = '\0';
5342 if (!hashmap_get_from_hash(&state->labels,
5343 strihash(p), p))
5344 break;
5345 p[i] = save;
5346 }
5347 }
5348 } else {
5349 struct strbuf *buf = &state->buf;
5350
5351 /*
5352 * Sanitize labels by replacing non-alpha-numeric characters
5353 * (including white-space ones) by dashes, as they might be
5354 * illegal in file names (and hence in ref names).
5355 *
5356 * Note that we retain non-ASCII UTF-8 characters (identified
5357 * via the most significant bit). They should be all acceptable
5358 * in file names. We do not validate the UTF-8 here, that's not
5359 * the job of this function.
5360 */
5361 for (; *label; label++)
5362 if ((*label & 0x80) || isalnum(*label))
5363 strbuf_addch(buf, *label);
5364 /* avoid leading dash and double-dashes */
5365 else if (buf->len && buf->buf[buf->len - 1] != '-')
5366 strbuf_addch(buf, '-');
5367 if (!buf->len) {
5368 strbuf_addstr(buf, "rev-");
5369 strbuf_add_unique_abbrev(buf, oid, default_abbrev);
5370 }
5371 label = buf->buf;
5372
5373 if ((buf->len == the_hash_algo->hexsz &&
5374 !get_oid_hex(label, &dummy)) ||
5375 (buf->len == 1 && *label == '#') ||
5376 hashmap_get_from_hash(&state->labels,
5377 strihash(label), label)) {
5378 /*
5379 * If the label already exists, or if the label is a
5380 * valid full OID, or the label is a '#' (which we use
5381 * as a separator between merge heads and oneline), we
5382 * append a dash and a number to make it unique.
5383 */
5384 size_t len = buf->len;
5385
5386 for (i = 2; ; i++) {
5387 strbuf_setlen(buf, len);
5388 strbuf_addf(buf, "-%d", i);
5389 if (!hashmap_get_from_hash(&state->labels,
5390 strihash(buf->buf),
5391 buf->buf))
5392 break;
5393 }
5394
5395 label = buf->buf;
5396 }
5397 }
5398
5399 FLEX_ALLOC_STR(labels_entry, label, label);
5400 hashmap_entry_init(&labels_entry->entry, strihash(label));
5401 hashmap_add(&state->labels, &labels_entry->entry);
5402
5403 FLEX_ALLOC_STR(string_entry, string, label);
5404 oidcpy(&string_entry->entry.oid, oid);
5405 oidmap_put(&state->commit2label, string_entry);
5406
5407 return string_entry->string;
5408 }
5409
5410 static int make_script_with_merges(struct pretty_print_context *pp,
5411 struct rev_info *revs, struct strbuf *out,
5412 unsigned flags)
5413 {
5414 int keep_empty = flags & TODO_LIST_KEEP_EMPTY;
5415 int rebase_cousins = flags & TODO_LIST_REBASE_COUSINS;
5416 int root_with_onto = flags & TODO_LIST_ROOT_WITH_ONTO;
5417 int skipped_commit = 0;
5418 struct strbuf buf = STRBUF_INIT, oneline = STRBUF_INIT;
5419 struct strbuf label = STRBUF_INIT;
5420 struct commit_list *commits = NULL, **tail = &commits, *iter;
5421 struct commit_list *tips = NULL, **tips_tail = &tips;
5422 struct commit *commit;
5423 struct oidmap commit2todo = OIDMAP_INIT;
5424 struct string_entry *entry;
5425 struct oidset interesting = OIDSET_INIT, child_seen = OIDSET_INIT,
5426 shown = OIDSET_INIT;
5427 struct label_state state = { OIDMAP_INIT, { NULL }, STRBUF_INIT };
5428
5429 int abbr = flags & TODO_LIST_ABBREVIATE_CMDS;
5430 const char *cmd_pick = abbr ? "p" : "pick",
5431 *cmd_label = abbr ? "l" : "label",
5432 *cmd_reset = abbr ? "t" : "reset",
5433 *cmd_merge = abbr ? "m" : "merge";
5434
5435 oidmap_init(&commit2todo, 0);
5436 oidmap_init(&state.commit2label, 0);
5437 hashmap_init(&state.labels, labels_cmp, NULL, 0);
5438 strbuf_init(&state.buf, 32);
5439
5440 if (revs->cmdline.nr && (revs->cmdline.rev[0].flags & BOTTOM)) {
5441 struct labels_entry *onto_label_entry;
5442 struct object_id *oid = &revs->cmdline.rev[0].item->oid;
5443 FLEX_ALLOC_STR(entry, string, "onto");
5444 oidcpy(&entry->entry.oid, oid);
5445 oidmap_put(&state.commit2label, entry);
5446
5447 FLEX_ALLOC_STR(onto_label_entry, label, "onto");
5448 hashmap_entry_init(&onto_label_entry->entry, strihash("onto"));
5449 hashmap_add(&state.labels, &onto_label_entry->entry);
5450 }
5451
5452 /*
5453 * First phase:
5454 * - get onelines for all commits
5455 * - gather all branch tips (i.e. 2nd or later parents of merges)
5456 * - label all branch tips
5457 */
5458 while ((commit = get_revision(revs))) {
5459 struct commit_list *to_merge;
5460 const char *p1, *p2;
5461 struct object_id *oid;
5462 int is_empty;
5463
5464 tail = &commit_list_insert(commit, tail)->next;
5465 oidset_insert(&interesting, &commit->object.oid);
5466
5467 is_empty = is_original_commit_empty(commit);
5468 if (!is_empty && (commit->object.flags & PATCHSAME)) {
5469 if (flags & TODO_LIST_WARN_SKIPPED_CHERRY_PICKS)
5470 warning(_("skipped previously applied commit %s"),
5471 short_commit_name(commit));
5472 skipped_commit = 1;
5473 continue;
5474 }
5475 if (is_empty && !keep_empty)
5476 continue;
5477
5478 strbuf_reset(&oneline);
5479 pretty_print_commit(pp, commit, &oneline);
5480
5481 to_merge = commit->parents ? commit->parents->next : NULL;
5482 if (!to_merge) {
5483 /* non-merge commit: easy case */
5484 strbuf_reset(&buf);
5485 strbuf_addf(&buf, "%s %s %s", cmd_pick,
5486 oid_to_hex(&commit->object.oid),
5487 oneline.buf);
5488 if (is_empty)
5489 strbuf_addf(&buf, " %c empty",
5490 comment_line_char);
5491
5492 FLEX_ALLOC_STR(entry, string, buf.buf);
5493 oidcpy(&entry->entry.oid, &commit->object.oid);
5494 oidmap_put(&commit2todo, entry);
5495
5496 continue;
5497 }
5498
5499 /* Create a label */
5500 strbuf_reset(&label);
5501 if (skip_prefix(oneline.buf, "Merge ", &p1) &&
5502 (p1 = strchr(p1, '\'')) &&
5503 (p2 = strchr(++p1, '\'')))
5504 strbuf_add(&label, p1, p2 - p1);
5505 else if (skip_prefix(oneline.buf, "Merge pull request ",
5506 &p1) &&
5507 (p1 = strstr(p1, " from ")))
5508 strbuf_addstr(&label, p1 + strlen(" from "));
5509 else
5510 strbuf_addbuf(&label, &oneline);
5511
5512 strbuf_reset(&buf);
5513 strbuf_addf(&buf, "%s -C %s",
5514 cmd_merge, oid_to_hex(&commit->object.oid));
5515
5516 /* label the tips of merged branches */
5517 for (; to_merge; to_merge = to_merge->next) {
5518 oid = &to_merge->item->object.oid;
5519 strbuf_addch(&buf, ' ');
5520
5521 if (!oidset_contains(&interesting, oid)) {
5522 strbuf_addstr(&buf, label_oid(oid, NULL,
5523 &state));
5524 continue;
5525 }
5526
5527 tips_tail = &commit_list_insert(to_merge->item,
5528 tips_tail)->next;
5529
5530 strbuf_addstr(&buf, label_oid(oid, label.buf, &state));
5531 }
5532 strbuf_addf(&buf, " # %s", oneline.buf);
5533
5534 FLEX_ALLOC_STR(entry, string, buf.buf);
5535 oidcpy(&entry->entry.oid, &commit->object.oid);
5536 oidmap_put(&commit2todo, entry);
5537 }
5538 if (skipped_commit)
5539 advise_if_enabled(ADVICE_SKIPPED_CHERRY_PICKS,
5540 _("use --reapply-cherry-picks to include skipped commits"));
5541
5542 /*
5543 * Second phase:
5544 * - label branch points
5545 * - add HEAD to the branch tips
5546 */
5547 for (iter = commits; iter; iter = iter->next) {
5548 struct commit_list *parent = iter->item->parents;
5549 for (; parent; parent = parent->next) {
5550 struct object_id *oid = &parent->item->object.oid;
5551 if (!oidset_contains(&interesting, oid))
5552 continue;
5553 if (oidset_insert(&child_seen, oid))
5554 label_oid(oid, "branch-point", &state);
5555 }
5556
5557 /* Add HEAD as implicit "tip of branch" */
5558 if (!iter->next)
5559 tips_tail = &commit_list_insert(iter->item,
5560 tips_tail)->next;
5561 }
5562
5563 /*
5564 * Third phase: output the todo list. This is a bit tricky, as we
5565 * want to avoid jumping back and forth between revisions. To
5566 * accomplish that goal, we walk backwards from the branch tips,
5567 * gathering commits not yet shown, reversing the list on the fly,
5568 * then outputting that list (labeling revisions as needed).
5569 */
5570 strbuf_addf(out, "%s onto\n", cmd_label);
5571 for (iter = tips; iter; iter = iter->next) {
5572 struct commit_list *list = NULL, *iter2;
5573
5574 commit = iter->item;
5575 if (oidset_contains(&shown, &commit->object.oid))
5576 continue;
5577 entry = oidmap_get(&state.commit2label, &commit->object.oid);
5578
5579 if (entry)
5580 strbuf_addf(out, "\n%c Branch %s\n", comment_line_char, entry->string);
5581 else
5582 strbuf_addch(out, '\n');
5583
5584 while (oidset_contains(&interesting, &commit->object.oid) &&
5585 !oidset_contains(&shown, &commit->object.oid)) {
5586 commit_list_insert(commit, &list);
5587 if (!commit->parents) {
5588 commit = NULL;
5589 break;
5590 }
5591 commit = commit->parents->item;
5592 }
5593
5594 if (!commit)
5595 strbuf_addf(out, "%s %s\n", cmd_reset,
5596 rebase_cousins || root_with_onto ?
5597 "onto" : "[new root]");
5598 else {
5599 const char *to = NULL;
5600
5601 entry = oidmap_get(&state.commit2label,
5602 &commit->object.oid);
5603 if (entry)
5604 to = entry->string;
5605 else if (!rebase_cousins)
5606 to = label_oid(&commit->object.oid, NULL,
5607 &state);
5608
5609 if (!to || !strcmp(to, "onto"))
5610 strbuf_addf(out, "%s onto\n", cmd_reset);
5611 else {
5612 strbuf_reset(&oneline);
5613 pretty_print_commit(pp, commit, &oneline);
5614 strbuf_addf(out, "%s %s # %s\n",
5615 cmd_reset, to, oneline.buf);
5616 }
5617 }
5618
5619 for (iter2 = list; iter2; iter2 = iter2->next) {
5620 struct object_id *oid = &iter2->item->object.oid;
5621 entry = oidmap_get(&commit2todo, oid);
5622 /* only show if not already upstream */
5623 if (entry)
5624 strbuf_addf(out, "%s\n", entry->string);
5625 entry = oidmap_get(&state.commit2label, oid);
5626 if (entry)
5627 strbuf_addf(out, "%s %s\n",
5628 cmd_label, entry->string);
5629 oidset_insert(&shown, oid);
5630 }
5631
5632 free_commit_list(list);
5633 }
5634
5635 free_commit_list(commits);
5636 free_commit_list(tips);
5637
5638 strbuf_release(&label);
5639 strbuf_release(&oneline);
5640 strbuf_release(&buf);
5641
5642 oidmap_free(&commit2todo, 1);
5643 oidmap_free(&state.commit2label, 1);
5644 hashmap_clear_and_free(&state.labels, struct labels_entry, entry);
5645 strbuf_release(&state.buf);
5646
5647 return 0;
5648 }
5649
5650 int sequencer_make_script(struct repository *r, struct strbuf *out, int argc,
5651 const char **argv, unsigned flags)
5652 {
5653 char *format = NULL;
5654 struct pretty_print_context pp = {0};
5655 struct rev_info revs;
5656 struct commit *commit;
5657 int keep_empty = flags & TODO_LIST_KEEP_EMPTY;
5658 const char *insn = flags & TODO_LIST_ABBREVIATE_CMDS ? "p" : "pick";
5659 int rebase_merges = flags & TODO_LIST_REBASE_MERGES;
5660 int reapply_cherry_picks = flags & TODO_LIST_REAPPLY_CHERRY_PICKS;
5661 int skipped_commit = 0;
5662 int ret = 0;
5663
5664 repo_init_revisions(r, &revs, NULL);
5665 revs.verbose_header = 1;
5666 if (!rebase_merges)
5667 revs.max_parents = 1;
5668 revs.cherry_mark = !reapply_cherry_picks;
5669 revs.limited = 1;
5670 revs.reverse = 1;
5671 revs.right_only = 1;
5672 revs.sort_order = REV_SORT_IN_GRAPH_ORDER;
5673 revs.topo_order = 1;
5674
5675 revs.pretty_given = 1;
5676 git_config_get_string("rebase.instructionFormat", &format);
5677 if (!format || !*format) {
5678 free(format);
5679 format = xstrdup("%s");
5680 }
5681 get_commit_format(format, &revs);
5682 free(format);
5683 pp.fmt = revs.commit_format;
5684 pp.output_encoding = get_log_output_encoding();
5685
5686 if (setup_revisions(argc, argv, &revs, NULL) > 1) {
5687 ret = error(_("make_script: unhandled options"));
5688 goto cleanup;
5689 }
5690
5691 if (prepare_revision_walk(&revs) < 0) {
5692 ret = error(_("make_script: error preparing revisions"));
5693 goto cleanup;
5694 }
5695
5696 if (rebase_merges) {
5697 ret = make_script_with_merges(&pp, &revs, out, flags);
5698 goto cleanup;
5699 }
5700
5701 while ((commit = get_revision(&revs))) {
5702 int is_empty = is_original_commit_empty(commit);
5703
5704 if (!is_empty && (commit->object.flags & PATCHSAME)) {
5705 if (flags & TODO_LIST_WARN_SKIPPED_CHERRY_PICKS)
5706 warning(_("skipped previously applied commit %s"),
5707 short_commit_name(commit));
5708 skipped_commit = 1;
5709 continue;
5710 }
5711 if (is_empty && !keep_empty)
5712 continue;
5713 strbuf_addf(out, "%s %s ", insn,
5714 oid_to_hex(&commit->object.oid));
5715 pretty_print_commit(&pp, commit, out);
5716 if (is_empty)
5717 strbuf_addf(out, " %c empty", comment_line_char);
5718 strbuf_addch(out, '\n');
5719 }
5720 if (skipped_commit)
5721 advise_if_enabled(ADVICE_SKIPPED_CHERRY_PICKS,
5722 _("use --reapply-cherry-picks to include skipped commits"));
5723 cleanup:
5724 release_revisions(&revs);
5725 return ret;
5726 }
5727
5728 /*
5729 * Add commands after pick and (series of) squash/fixup commands
5730 * in the todo list.
5731 */
5732 static void todo_list_add_exec_commands(struct todo_list *todo_list,
5733 struct string_list *commands)
5734 {
5735 struct strbuf *buf = &todo_list->buf;
5736 size_t base_offset = buf->len;
5737 int i, insert, nr = 0, alloc = 0;
5738 struct todo_item *items = NULL, *base_items = NULL;
5739
5740 CALLOC_ARRAY(base_items, commands->nr);
5741 for (i = 0; i < commands->nr; i++) {
5742 size_t command_len = strlen(commands->items[i].string);
5743
5744 strbuf_addstr(buf, commands->items[i].string);
5745 strbuf_addch(buf, '\n');
5746
5747 base_items[i].command = TODO_EXEC;
5748 base_items[i].offset_in_buf = base_offset;
5749 base_items[i].arg_offset = base_offset;
5750 base_items[i].arg_len = command_len;
5751
5752 base_offset += command_len + 1;
5753 }
5754
5755 /*
5756 * Insert <commands> after every pick. Here, fixup/squash chains
5757 * are considered part of the pick, so we insert the commands *after*
5758 * those chains if there are any.
5759 *
5760 * As we insert the exec commands immediately after rearranging
5761 * any fixups and before the user edits the list, a fixup chain
5762 * can never contain comments (any comments are empty picks that
5763 * have been commented out because the user did not specify
5764 * --keep-empty). So, it is safe to insert an exec command
5765 * without looking at the command following a comment.
5766 */
5767 insert = 0;
5768 for (i = 0; i < todo_list->nr; i++) {
5769 enum todo_command command = todo_list->items[i].command;
5770 if (insert && !is_fixup(command)) {
5771 ALLOC_GROW(items, nr + commands->nr, alloc);
5772 COPY_ARRAY(items + nr, base_items, commands->nr);
5773 nr += commands->nr;
5774
5775 insert = 0;
5776 }
5777
5778 ALLOC_GROW(items, nr + 1, alloc);
5779 items[nr++] = todo_list->items[i];
5780
5781 if (command == TODO_PICK || command == TODO_MERGE)
5782 insert = 1;
5783 }
5784
5785 /* insert or append final <commands> */
5786 if (insert) {
5787 ALLOC_GROW(items, nr + commands->nr, alloc);
5788 COPY_ARRAY(items + nr, base_items, commands->nr);
5789 nr += commands->nr;
5790 }
5791
5792 free(base_items);
5793 FREE_AND_NULL(todo_list->items);
5794 todo_list->items = items;
5795 todo_list->nr = nr;
5796 todo_list->alloc = alloc;
5797 }
5798
5799 static void todo_list_to_strbuf(struct repository *r, struct todo_list *todo_list,
5800 struct strbuf *buf, int num, unsigned flags)
5801 {
5802 struct todo_item *item;
5803 int i, max = todo_list->nr;
5804
5805 if (num > 0 && num < max)
5806 max = num;
5807
5808 for (item = todo_list->items, i = 0; i < max; i++, item++) {
5809 char cmd;
5810
5811 /* if the item is not a command write it and continue */
5812 if (item->command >= TODO_COMMENT) {
5813 strbuf_addf(buf, "%.*s\n", item->arg_len,
5814 todo_item_get_arg(todo_list, item));
5815 continue;
5816 }
5817
5818 /* add command to the buffer */
5819 cmd = command_to_char(item->command);
5820 if ((flags & TODO_LIST_ABBREVIATE_CMDS) && cmd)
5821 strbuf_addch(buf, cmd);
5822 else
5823 strbuf_addstr(buf, command_to_string(item->command));
5824
5825 /* add commit id */
5826 if (item->commit) {
5827 const char *oid = flags & TODO_LIST_SHORTEN_IDS ?
5828 short_commit_name(item->commit) :
5829 oid_to_hex(&item->commit->object.oid);
5830
5831 if (item->command == TODO_FIXUP) {
5832 if (item->flags & TODO_EDIT_FIXUP_MSG)
5833 strbuf_addstr(buf, " -c");
5834 else if (item->flags & TODO_REPLACE_FIXUP_MSG) {
5835 strbuf_addstr(buf, " -C");
5836 }
5837 }
5838
5839 if (item->command == TODO_MERGE) {
5840 if (item->flags & TODO_EDIT_MERGE_MSG)
5841 strbuf_addstr(buf, " -c");
5842 else
5843 strbuf_addstr(buf, " -C");
5844 }
5845
5846 strbuf_addf(buf, " %s", oid);
5847 }
5848
5849 /* add all the rest */
5850 if (!item->arg_len)
5851 strbuf_addch(buf, '\n');
5852 else
5853 strbuf_addf(buf, " %.*s\n", item->arg_len,
5854 todo_item_get_arg(todo_list, item));
5855 }
5856 }
5857
5858 int todo_list_write_to_file(struct repository *r, struct todo_list *todo_list,
5859 const char *file, const char *shortrevisions,
5860 const char *shortonto, int num, unsigned flags)
5861 {
5862 int res;
5863 struct strbuf buf = STRBUF_INIT;
5864
5865 todo_list_to_strbuf(r, todo_list, &buf, num, flags);
5866 if (flags & TODO_LIST_APPEND_TODO_HELP)
5867 append_todo_help(count_commands(todo_list),
5868 shortrevisions, shortonto, &buf);
5869
5870 res = write_message(buf.buf, buf.len, file, 0);
5871 strbuf_release(&buf);
5872
5873 return res;
5874 }
5875
5876 /* skip picking commits whose parents are unchanged */
5877 static int skip_unnecessary_picks(struct repository *r,
5878 struct todo_list *todo_list,
5879 struct object_id *base_oid)
5880 {
5881 struct object_id *parent_oid;
5882 int i;
5883
5884 for (i = 0; i < todo_list->nr; i++) {
5885 struct todo_item *item = todo_list->items + i;
5886
5887 if (item->command >= TODO_NOOP)
5888 continue;
5889 if (item->command != TODO_PICK)
5890 break;
5891 if (parse_commit(item->commit)) {
5892 return error(_("could not parse commit '%s'"),
5893 oid_to_hex(&item->commit->object.oid));
5894 }
5895 if (!item->commit->parents)
5896 break; /* root commit */
5897 if (item->commit->parents->next)
5898 break; /* merge commit */
5899 parent_oid = &item->commit->parents->item->object.oid;
5900 if (!oideq(parent_oid, base_oid))
5901 break;
5902 oidcpy(base_oid, &item->commit->object.oid);
5903 }
5904 if (i > 0) {
5905 const char *done_path = rebase_path_done();
5906
5907 if (todo_list_write_to_file(r, todo_list, done_path, NULL, NULL, i, 0)) {
5908 error_errno(_("could not write to '%s'"), done_path);
5909 return -1;
5910 }
5911
5912 MOVE_ARRAY(todo_list->items, todo_list->items + i, todo_list->nr - i);
5913 todo_list->nr -= i;
5914 todo_list->current = 0;
5915 todo_list->done_nr += i;
5916
5917 if (is_fixup(peek_command(todo_list, 0)))
5918 record_in_rewritten(base_oid, peek_command(todo_list, 0));
5919 }
5920
5921 return 0;
5922 }
5923
5924 struct todo_add_branch_context {
5925 struct todo_item *items;
5926 size_t items_nr;
5927 size_t items_alloc;
5928 struct strbuf *buf;
5929 struct commit *commit;
5930 struct string_list refs_to_oids;
5931 };
5932
5933 static int add_decorations_to_list(const struct commit *commit,
5934 struct todo_add_branch_context *ctx)
5935 {
5936 const struct name_decoration *decoration = get_name_decoration(&commit->object);
5937 const char *head_ref = resolve_ref_unsafe("HEAD",
5938 RESOLVE_REF_READING,
5939 NULL,
5940 NULL);
5941
5942 while (decoration) {
5943 struct todo_item *item;
5944 const char *path;
5945 size_t base_offset = ctx->buf->len;
5946
5947 /*
5948 * If the branch is the current HEAD, then it will be
5949 * updated by the default rebase behavior.
5950 */
5951 if (head_ref && !strcmp(head_ref, decoration->name)) {
5952 decoration = decoration->next;
5953 continue;
5954 }
5955
5956 ALLOC_GROW(ctx->items,
5957 ctx->items_nr + 1,
5958 ctx->items_alloc);
5959 item = &ctx->items[ctx->items_nr];
5960 memset(item, 0, sizeof(*item));
5961
5962 /* If the branch is checked out, then leave a comment instead. */
5963 if ((path = branch_checked_out(decoration->name))) {
5964 item->command = TODO_COMMENT;
5965 strbuf_addf(ctx->buf, "# Ref %s checked out at '%s'\n",
5966 decoration->name, path);
5967 } else {
5968 struct string_list_item *sti;
5969 item->command = TODO_UPDATE_REF;
5970 strbuf_addf(ctx->buf, "%s\n", decoration->name);
5971
5972 sti = string_list_insert(&ctx->refs_to_oids,
5973 decoration->name);
5974 sti->util = init_update_ref_record(decoration->name);
5975 }
5976
5977 item->offset_in_buf = base_offset;
5978 item->arg_offset = base_offset;
5979 item->arg_len = ctx->buf->len - base_offset;
5980 ctx->items_nr++;
5981
5982 decoration = decoration->next;
5983 }
5984
5985 return 0;
5986 }
5987
5988 /*
5989 * For each 'pick' command, find out if the commit has a decoration in
5990 * refs/heads/. If so, then add a 'label for-update-refs/' command.
5991 */
5992 static int todo_list_add_update_ref_commands(struct todo_list *todo_list)
5993 {
5994 int i, res;
5995 static struct string_list decorate_refs_exclude = STRING_LIST_INIT_NODUP;
5996 static struct string_list decorate_refs_exclude_config = STRING_LIST_INIT_NODUP;
5997 static struct string_list decorate_refs_include = STRING_LIST_INIT_NODUP;
5998 struct decoration_filter decoration_filter = {
5999 .include_ref_pattern = &decorate_refs_include,
6000 .exclude_ref_pattern = &decorate_refs_exclude,
6001 .exclude_ref_config_pattern = &decorate_refs_exclude_config,
6002 };
6003 struct todo_add_branch_context ctx = {
6004 .buf = &todo_list->buf,
6005 .refs_to_oids = STRING_LIST_INIT_DUP,
6006 };
6007
6008 ctx.items_alloc = 2 * todo_list->nr + 1;
6009 ALLOC_ARRAY(ctx.items, ctx.items_alloc);
6010
6011 string_list_append(&decorate_refs_include, "refs/heads/");
6012 load_ref_decorations(&decoration_filter, 0);
6013
6014 for (i = 0; i < todo_list->nr; ) {
6015 struct todo_item *item = &todo_list->items[i];
6016
6017 /* insert ith item into new list */
6018 ALLOC_GROW(ctx.items,
6019 ctx.items_nr + 1,
6020 ctx.items_alloc);
6021
6022 ctx.items[ctx.items_nr++] = todo_list->items[i++];
6023
6024 if (item->commit) {
6025 ctx.commit = item->commit;
6026 add_decorations_to_list(item->commit, &ctx);
6027 }
6028 }
6029
6030 res = write_update_refs_state(&ctx.refs_to_oids);
6031
6032 string_list_clear(&ctx.refs_to_oids, 1);
6033
6034 if (res) {
6035 /* we failed, so clean up the new list. */
6036 free(ctx.items);
6037 return res;
6038 }
6039
6040 free(todo_list->items);
6041 todo_list->items = ctx.items;
6042 todo_list->nr = ctx.items_nr;
6043 todo_list->alloc = ctx.items_alloc;
6044
6045 return 0;
6046 }
6047
6048 int complete_action(struct repository *r, struct replay_opts *opts, unsigned flags,
6049 const char *shortrevisions, const char *onto_name,
6050 struct commit *onto, const struct object_id *orig_head,
6051 struct string_list *commands, unsigned autosquash,
6052 unsigned update_refs,
6053 struct todo_list *todo_list)
6054 {
6055 char shortonto[GIT_MAX_HEXSZ + 1];
6056 const char *todo_file = rebase_path_todo();
6057 struct todo_list new_todo = TODO_LIST_INIT;
6058 struct strbuf *buf = &todo_list->buf, buf2 = STRBUF_INIT;
6059 struct object_id oid = onto->object.oid;
6060 int res;
6061
6062 find_unique_abbrev_r(shortonto, &oid, DEFAULT_ABBREV);
6063
6064 if (buf->len == 0) {
6065 struct todo_item *item = append_new_todo(todo_list);
6066 item->command = TODO_NOOP;
6067 item->commit = NULL;
6068 item->arg_len = item->arg_offset = item->flags = item->offset_in_buf = 0;
6069 }
6070
6071 if (update_refs && todo_list_add_update_ref_commands(todo_list))
6072 return -1;
6073
6074 if (autosquash && todo_list_rearrange_squash(todo_list))
6075 return -1;
6076
6077 if (commands->nr)
6078 todo_list_add_exec_commands(todo_list, commands);
6079
6080 if (count_commands(todo_list) == 0) {
6081 apply_autostash(rebase_path_autostash());
6082 sequencer_remove_state(opts);
6083
6084 return error(_("nothing to do"));
6085 }
6086
6087 res = edit_todo_list(r, todo_list, &new_todo, shortrevisions,
6088 shortonto, flags);
6089 if (res == -1)
6090 return -1;
6091 else if (res == -2) {
6092 apply_autostash(rebase_path_autostash());
6093 sequencer_remove_state(opts);
6094
6095 return -1;
6096 } else if (res == -3) {
6097 apply_autostash(rebase_path_autostash());
6098 sequencer_remove_state(opts);
6099 todo_list_release(&new_todo);
6100
6101 return error(_("nothing to do"));
6102 } else if (res == -4) {
6103 checkout_onto(r, opts, onto_name, &onto->object.oid, orig_head);
6104 todo_list_release(&new_todo);
6105
6106 return -1;
6107 }
6108
6109 /* Expand the commit IDs */
6110 todo_list_to_strbuf(r, &new_todo, &buf2, -1, 0);
6111 strbuf_swap(&new_todo.buf, &buf2);
6112 strbuf_release(&buf2);
6113 new_todo.total_nr -= new_todo.nr;
6114 if (todo_list_parse_insn_buffer(r, new_todo.buf.buf, &new_todo) < 0)
6115 BUG("invalid todo list after expanding IDs:\n%s",
6116 new_todo.buf.buf);
6117
6118 if (opts->allow_ff && skip_unnecessary_picks(r, &new_todo, &oid)) {
6119 todo_list_release(&new_todo);
6120 return error(_("could not skip unnecessary pick commands"));
6121 }
6122
6123 if (todo_list_write_to_file(r, &new_todo, todo_file, NULL, NULL, -1,
6124 flags & ~(TODO_LIST_SHORTEN_IDS))) {
6125 todo_list_release(&new_todo);
6126 return error_errno(_("could not write '%s'"), todo_file);
6127 }
6128
6129 res = -1;
6130
6131 if (checkout_onto(r, opts, onto_name, &oid, orig_head))
6132 goto cleanup;
6133
6134 if (require_clean_work_tree(r, "rebase", "", 1, 1))
6135 goto cleanup;
6136
6137 todo_list_write_total_nr(&new_todo);
6138 res = pick_commits(r, &new_todo, opts);
6139
6140 cleanup:
6141 todo_list_release(&new_todo);
6142
6143 return res;
6144 }
6145
6146 struct subject2item_entry {
6147 struct hashmap_entry entry;
6148 int i;
6149 char subject[FLEX_ARRAY];
6150 };
6151
6152 static int subject2item_cmp(const void *fndata UNUSED,
6153 const struct hashmap_entry *eptr,
6154 const struct hashmap_entry *entry_or_key,
6155 const void *key)
6156 {
6157 const struct subject2item_entry *a, *b;
6158
6159 a = container_of(eptr, const struct subject2item_entry, entry);
6160 b = container_of(entry_or_key, const struct subject2item_entry, entry);
6161
6162 return key ? strcmp(a->subject, key) : strcmp(a->subject, b->subject);
6163 }
6164
6165 define_commit_slab(commit_todo_item, struct todo_item *);
6166
6167 static int skip_fixupish(const char *subject, const char **p) {
6168 return skip_prefix(subject, "fixup! ", p) ||
6169 skip_prefix(subject, "amend! ", p) ||
6170 skip_prefix(subject, "squash! ", p);
6171 }
6172
6173 /*
6174 * Rearrange the todo list that has both "pick commit-id msg" and "pick
6175 * commit-id fixup!/squash! msg" in it so that the latter is put immediately
6176 * after the former, and change "pick" to "fixup"/"squash".
6177 *
6178 * Note that if the config has specified a custom instruction format, each log
6179 * message will have to be retrieved from the commit (as the oneline in the
6180 * script cannot be trusted) in order to normalize the autosquash arrangement.
6181 */
6182 int todo_list_rearrange_squash(struct todo_list *todo_list)
6183 {
6184 struct hashmap subject2item;
6185 int rearranged = 0, *next, *tail, i, nr = 0, alloc = 0;
6186 char **subjects;
6187 struct commit_todo_item commit_todo;
6188 struct todo_item *items = NULL;
6189
6190 init_commit_todo_item(&commit_todo);
6191 /*
6192 * The hashmap maps onelines to the respective todo list index.
6193 *
6194 * If any items need to be rearranged, the next[i] value will indicate
6195 * which item was moved directly after the i'th.
6196 *
6197 * In that case, last[i] will indicate the index of the latest item to
6198 * be moved to appear after the i'th.
6199 */
6200 hashmap_init(&subject2item, subject2item_cmp, NULL, todo_list->nr);
6201 ALLOC_ARRAY(next, todo_list->nr);
6202 ALLOC_ARRAY(tail, todo_list->nr);
6203 ALLOC_ARRAY(subjects, todo_list->nr);
6204 for (i = 0; i < todo_list->nr; i++) {
6205 struct strbuf buf = STRBUF_INIT;
6206 struct todo_item *item = todo_list->items + i;
6207 const char *commit_buffer, *subject, *p;
6208 size_t subject_len;
6209 int i2 = -1;
6210 struct subject2item_entry *entry;
6211
6212 next[i] = tail[i] = -1;
6213 if (!item->commit || item->command == TODO_DROP) {
6214 subjects[i] = NULL;
6215 continue;
6216 }
6217
6218 if (is_fixup(item->command)) {
6219 clear_commit_todo_item(&commit_todo);
6220 return error(_("the script was already rearranged."));
6221 }
6222
6223 parse_commit(item->commit);
6224 commit_buffer = logmsg_reencode(item->commit, NULL, "UTF-8");
6225 find_commit_subject(commit_buffer, &subject);
6226 format_subject(&buf, subject, " ");
6227 subject = subjects[i] = strbuf_detach(&buf, &subject_len);
6228 unuse_commit_buffer(item->commit, commit_buffer);
6229 if (skip_fixupish(subject, &p)) {
6230 struct commit *commit2;
6231
6232 for (;;) {
6233 while (isspace(*p))
6234 p++;
6235 if (!skip_fixupish(p, &p))
6236 break;
6237 }
6238
6239 entry = hashmap_get_entry_from_hash(&subject2item,
6240 strhash(p), p,
6241 struct subject2item_entry,
6242 entry);
6243 if (entry)
6244 /* found by title */
6245 i2 = entry->i;
6246 else if (!strchr(p, ' ') &&
6247 (commit2 =
6248 lookup_commit_reference_by_name(p)) &&
6249 *commit_todo_item_at(&commit_todo, commit2))
6250 /* found by commit name */
6251 i2 = *commit_todo_item_at(&commit_todo, commit2)
6252 - todo_list->items;
6253 else {
6254 /* copy can be a prefix of the commit subject */
6255 for (i2 = 0; i2 < i; i2++)
6256 if (subjects[i2] &&
6257 starts_with(subjects[i2], p))
6258 break;
6259 if (i2 == i)
6260 i2 = -1;
6261 }
6262 }
6263 if (i2 >= 0) {
6264 rearranged = 1;
6265 if (starts_with(subject, "fixup!")) {
6266 todo_list->items[i].command = TODO_FIXUP;
6267 } else if (starts_with(subject, "amend!")) {
6268 todo_list->items[i].command = TODO_FIXUP;
6269 todo_list->items[i].flags = TODO_REPLACE_FIXUP_MSG;
6270 } else {
6271 todo_list->items[i].command = TODO_SQUASH;
6272 }
6273 if (tail[i2] < 0) {
6274 next[i] = next[i2];
6275 next[i2] = i;
6276 } else {
6277 next[i] = next[tail[i2]];
6278 next[tail[i2]] = i;
6279 }
6280 tail[i2] = i;
6281 } else if (!hashmap_get_from_hash(&subject2item,
6282 strhash(subject), subject)) {
6283 FLEX_ALLOC_MEM(entry, subject, subject, subject_len);
6284 entry->i = i;
6285 hashmap_entry_init(&entry->entry,
6286 strhash(entry->subject));
6287 hashmap_put(&subject2item, &entry->entry);
6288 }
6289
6290 *commit_todo_item_at(&commit_todo, item->commit) = item;
6291 }
6292
6293 if (rearranged) {
6294 for (i = 0; i < todo_list->nr; i++) {
6295 enum todo_command command = todo_list->items[i].command;
6296 int cur = i;
6297
6298 /*
6299 * Initially, all commands are 'pick's. If it is a
6300 * fixup or a squash now, we have rearranged it.
6301 */
6302 if (is_fixup(command))
6303 continue;
6304
6305 while (cur >= 0) {
6306 ALLOC_GROW(items, nr + 1, alloc);
6307 items[nr++] = todo_list->items[cur];
6308 cur = next[cur];
6309 }
6310 }
6311
6312 FREE_AND_NULL(todo_list->items);
6313 todo_list->items = items;
6314 todo_list->nr = nr;
6315 todo_list->alloc = alloc;
6316 }
6317
6318 free(next);
6319 free(tail);
6320 for (i = 0; i < todo_list->nr; i++)
6321 free(subjects[i]);
6322 free(subjects);
6323 hashmap_clear_and_free(&subject2item, struct subject2item_entry, entry);
6324
6325 clear_commit_todo_item(&commit_todo);
6326
6327 return 0;
6328 }
6329
6330 int sequencer_determine_whence(struct repository *r, enum commit_whence *whence)
6331 {
6332 if (refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD")) {
6333 struct object_id cherry_pick_head, rebase_head;
6334
6335 if (file_exists(git_path_seq_dir()))
6336 *whence = FROM_CHERRY_PICK_MULTI;
6337 if (file_exists(rebase_path()) &&
6338 !get_oid("REBASE_HEAD", &rebase_head) &&
6339 !get_oid("CHERRY_PICK_HEAD", &cherry_pick_head) &&
6340 oideq(&rebase_head, &cherry_pick_head))
6341 *whence = FROM_REBASE_PICK;
6342 else
6343 *whence = FROM_CHERRY_PICK_SINGLE;
6344
6345 return 1;
6346 }
6347
6348 return 0;
6349 }
6350
6351 int sequencer_get_update_refs_state(const char *wt_dir,
6352 struct string_list *refs)
6353 {
6354 int result = 0;
6355 FILE *fp = NULL;
6356 struct strbuf ref = STRBUF_INIT;
6357 struct strbuf hash = STRBUF_INIT;
6358 struct update_ref_record *rec = NULL;
6359
6360 char *path = rebase_path_update_refs(wt_dir);
6361
6362 fp = fopen(path, "r");
6363 if (!fp)
6364 goto cleanup;
6365
6366 while (strbuf_getline(&ref, fp) != EOF) {
6367 struct string_list_item *item;
6368
6369 CALLOC_ARRAY(rec, 1);
6370
6371 if (strbuf_getline(&hash, fp) == EOF ||
6372 get_oid_hex(hash.buf, &rec->before)) {
6373 warning(_("update-refs file at '%s' is invalid"),
6374 path);
6375 result = -1;
6376 goto cleanup;
6377 }
6378
6379 if (strbuf_getline(&hash, fp) == EOF ||
6380 get_oid_hex(hash.buf, &rec->after)) {
6381 warning(_("update-refs file at '%s' is invalid"),
6382 path);
6383 result = -1;
6384 goto cleanup;
6385 }
6386
6387 item = string_list_insert(refs, ref.buf);
6388 item->util = rec;
6389 rec = NULL;
6390 }
6391
6392 cleanup:
6393 if (fp)
6394 fclose(fp);
6395 free(path);
6396 free(rec);
6397 strbuf_release(&ref);
6398 strbuf_release(&hash);
6399 return result;
6400 }