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