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