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