04fcfd893f6bcc5a0f54502c57f5fb61d17ea07e
   1#include "cache.h"
   2#include "lockfile.h"
   3#include "sequencer.h"
   4#include "dir.h"
   5#include "object.h"
   6#include "commit.h"
   7#include "tag.h"
   8#include "run-command.h"
   9#include "exec_cmd.h"
  10#include "utf8.h"
  11#include "cache-tree.h"
  12#include "diff.h"
  13#include "revision.h"
  14#include "rerere.h"
  15#include "merge-recursive.h"
  16#include "refs.h"
  17#include "argv-array.h"
  18
  19#define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
  20
  21const char sign_off_header[] = "Signed-off-by: ";
  22static const char cherry_picked_prefix[] = "(cherry picked from commit ";
  23
  24GIT_PATH_FUNC(git_path_seq_dir, "sequencer")
  25
  26static GIT_PATH_FUNC(git_path_todo_file, "sequencer/todo")
  27static GIT_PATH_FUNC(git_path_opts_file, "sequencer/opts")
  28static GIT_PATH_FUNC(git_path_head_file, "sequencer/head")
  29
  30static const char *get_dir(const struct replay_opts *opts)
  31{
  32        return git_path_seq_dir();
  33}
  34
  35static const char *get_todo_path(const struct replay_opts *opts)
  36{
  37        return git_path_todo_file();
  38}
  39
  40static int is_rfc2822_line(const char *buf, int len)
  41{
  42        int i;
  43
  44        for (i = 0; i < len; i++) {
  45                int ch = buf[i];
  46                if (ch == ':')
  47                        return 1;
  48                if (!isalnum(ch) && ch != '-')
  49                        break;
  50        }
  51
  52        return 0;
  53}
  54
  55static int is_cherry_picked_from_line(const char *buf, int len)
  56{
  57        /*
  58         * We only care that it looks roughly like (cherry picked from ...)
  59         */
  60        return len > strlen(cherry_picked_prefix) + 1 &&
  61                starts_with(buf, cherry_picked_prefix) && buf[len - 1] == ')';
  62}
  63
  64/*
  65 * Returns 0 for non-conforming footer
  66 * Returns 1 for conforming footer
  67 * Returns 2 when sob exists within conforming footer
  68 * Returns 3 when sob exists within conforming footer as last entry
  69 */
  70static int has_conforming_footer(struct strbuf *sb, struct strbuf *sob,
  71        int ignore_footer)
  72{
  73        char prev;
  74        int i, k;
  75        int len = sb->len - ignore_footer;
  76        const char *buf = sb->buf;
  77        int found_sob = 0;
  78
  79        /* footer must end with newline */
  80        if (!len || buf[len - 1] != '\n')
  81                return 0;
  82
  83        prev = '\0';
  84        for (i = len - 1; i > 0; i--) {
  85                char ch = buf[i];
  86                if (prev == '\n' && ch == '\n') /* paragraph break */
  87                        break;
  88                prev = ch;
  89        }
  90
  91        /* require at least one blank line */
  92        if (prev != '\n' || buf[i] != '\n')
  93                return 0;
  94
  95        /* advance to start of last paragraph */
  96        while (i < len - 1 && buf[i] == '\n')
  97                i++;
  98
  99        for (; i < len; i = k) {
 100                int found_rfc2822;
 101
 102                for (k = i; k < len && buf[k] != '\n'; k++)
 103                        ; /* do nothing */
 104                k++;
 105
 106                found_rfc2822 = is_rfc2822_line(buf + i, k - i - 1);
 107                if (found_rfc2822 && sob &&
 108                    !strncmp(buf + i, sob->buf, sob->len))
 109                        found_sob = k;
 110
 111                if (!(found_rfc2822 ||
 112                      is_cherry_picked_from_line(buf + i, k - i - 1)))
 113                        return 0;
 114        }
 115        if (found_sob == i)
 116                return 3;
 117        if (found_sob)
 118                return 2;
 119        return 1;
 120}
 121
 122static void remove_sequencer_state(const struct replay_opts *opts)
 123{
 124        struct strbuf dir = STRBUF_INIT;
 125        int i;
 126
 127        free(opts->gpg_sign);
 128        free(opts->strategy);
 129        for (i = 0; i < opts->xopts_nr; i++)
 130                free(opts->xopts[i]);
 131        free(opts->xopts);
 132
 133        strbuf_addf(&dir, "%s", get_dir(opts));
 134        remove_dir_recursively(&dir, 0);
 135        strbuf_release(&dir);
 136}
 137
 138static const char *action_name(const struct replay_opts *opts)
 139{
 140        return opts->action == REPLAY_REVERT ? "revert" : "cherry-pick";
 141}
 142
 143struct commit_message {
 144        char *parent_label;
 145        char *label;
 146        char *subject;
 147        const char *message;
 148};
 149
 150static const char *short_commit_name(struct commit *commit)
 151{
 152        return find_unique_abbrev(commit->object.oid.hash, DEFAULT_ABBREV);
 153}
 154
 155static int get_message(struct commit *commit, struct commit_message *out)
 156{
 157        const char *abbrev, *subject;
 158        int subject_len;
 159
 160        out->message = logmsg_reencode(commit, NULL, get_commit_output_encoding());
 161        abbrev = short_commit_name(commit);
 162
 163        subject_len = find_commit_subject(out->message, &subject);
 164
 165        out->subject = xmemdupz(subject, subject_len);
 166        out->label = xstrfmt("%s... %s", abbrev, out->subject);
 167        out->parent_label = xstrfmt("parent of %s", out->label);
 168
 169        return 0;
 170}
 171
 172static void free_message(struct commit *commit, struct commit_message *msg)
 173{
 174        free(msg->parent_label);
 175        free(msg->label);
 176        free(msg->subject);
 177        unuse_commit_buffer(commit, msg->message);
 178}
 179
 180static void print_advice(int show_hint, struct replay_opts *opts)
 181{
 182        char *msg = getenv("GIT_CHERRY_PICK_HELP");
 183
 184        if (msg) {
 185                fprintf(stderr, "%s\n", msg);
 186                /*
 187                 * A conflict has occurred but the porcelain
 188                 * (typically rebase --interactive) wants to take care
 189                 * of the commit itself so remove CHERRY_PICK_HEAD
 190                 */
 191                unlink(git_path_cherry_pick_head());
 192                return;
 193        }
 194
 195        if (show_hint) {
 196                if (opts->no_commit)
 197                        advise(_("after resolving the conflicts, mark the corrected paths\n"
 198                                 "with 'git add <paths>' or 'git rm <paths>'"));
 199                else
 200                        advise(_("after resolving the conflicts, mark the corrected paths\n"
 201                                 "with 'git add <paths>' or 'git rm <paths>'\n"
 202                                 "and commit the result with 'git commit'"));
 203        }
 204}
 205
 206static int write_message(struct strbuf *msgbuf, const char *filename)
 207{
 208        static struct lock_file msg_file;
 209
 210        int msg_fd = hold_lock_file_for_update(&msg_file, filename, 0);
 211        if (msg_fd < 0)
 212                return error_errno(_("Could not lock '%s'"), filename);
 213        if (write_in_full(msg_fd, msgbuf->buf, msgbuf->len) < 0)
 214                return error_errno(_("Could not write to %s"), filename);
 215        strbuf_release(msgbuf);
 216        if (commit_lock_file(&msg_file) < 0)
 217                return error(_("Error wrapping up %s."), filename);
 218
 219        return 0;
 220}
 221
 222static struct tree *empty_tree(void)
 223{
 224        return lookup_tree(EMPTY_TREE_SHA1_BIN);
 225}
 226
 227static int error_dirty_index(struct replay_opts *opts)
 228{
 229        if (read_cache_unmerged())
 230                return error_resolve_conflict(action_name(opts));
 231
 232        /* Different translation strings for cherry-pick and revert */
 233        if (opts->action == REPLAY_PICK)
 234                error(_("Your local changes would be overwritten by cherry-pick."));
 235        else
 236                error(_("Your local changes would be overwritten by revert."));
 237
 238        if (advice_commit_before_merge)
 239                advise(_("Commit your changes or stash them to proceed."));
 240        return -1;
 241}
 242
 243static int fast_forward_to(const unsigned char *to, const unsigned char *from,
 244                        int unborn, struct replay_opts *opts)
 245{
 246        struct ref_transaction *transaction;
 247        struct strbuf sb = STRBUF_INIT;
 248        struct strbuf err = STRBUF_INIT;
 249
 250        read_cache();
 251        if (checkout_fast_forward(from, to, 1))
 252                return -1; /* the callee should have complained already */
 253
 254        strbuf_addf(&sb, _("%s: fast-forward"), action_name(opts));
 255
 256        transaction = ref_transaction_begin(&err);
 257        if (!transaction ||
 258            ref_transaction_update(transaction, "HEAD",
 259                                   to, unborn ? null_sha1 : from,
 260                                   0, sb.buf, &err) ||
 261            ref_transaction_commit(transaction, &err)) {
 262                ref_transaction_free(transaction);
 263                error("%s", err.buf);
 264                strbuf_release(&sb);
 265                strbuf_release(&err);
 266                return -1;
 267        }
 268
 269        strbuf_release(&sb);
 270        strbuf_release(&err);
 271        ref_transaction_free(transaction);
 272        return 0;
 273}
 274
 275void append_conflicts_hint(struct strbuf *msgbuf)
 276{
 277        int i;
 278
 279        strbuf_addch(msgbuf, '\n');
 280        strbuf_commented_addf(msgbuf, "Conflicts:\n");
 281        for (i = 0; i < active_nr;) {
 282                const struct cache_entry *ce = active_cache[i++];
 283                if (ce_stage(ce)) {
 284                        strbuf_commented_addf(msgbuf, "\t%s\n", ce->name);
 285                        while (i < active_nr && !strcmp(ce->name,
 286                                                        active_cache[i]->name))
 287                                i++;
 288                }
 289        }
 290}
 291
 292static int do_recursive_merge(struct commit *base, struct commit *next,
 293                              const char *base_label, const char *next_label,
 294                              unsigned char *head, struct strbuf *msgbuf,
 295                              struct replay_opts *opts)
 296{
 297        struct merge_options o;
 298        struct tree *result, *next_tree, *base_tree, *head_tree;
 299        int clean;
 300        char **xopt;
 301        static struct lock_file index_lock;
 302
 303        hold_locked_index(&index_lock, 1);
 304
 305        read_cache();
 306
 307        init_merge_options(&o);
 308        o.ancestor = base ? base_label : "(empty tree)";
 309        o.branch1 = "HEAD";
 310        o.branch2 = next ? next_label : "(empty tree)";
 311
 312        head_tree = parse_tree_indirect(head);
 313        next_tree = next ? next->tree : empty_tree();
 314        base_tree = base ? base->tree : empty_tree();
 315
 316        for (xopt = opts->xopts; xopt != opts->xopts + opts->xopts_nr; xopt++)
 317                parse_merge_opt(&o, *xopt);
 318
 319        clean = merge_trees(&o,
 320                            head_tree,
 321                            next_tree, base_tree, &result);
 322        strbuf_release(&o.obuf);
 323        if (clean < 0)
 324                return clean;
 325
 326        if (active_cache_changed &&
 327            write_locked_index(&the_index, &index_lock, COMMIT_LOCK))
 328                /* TRANSLATORS: %s will be "revert" or "cherry-pick" */
 329                return error(_("%s: Unable to write new index file"),
 330                        action_name(opts));
 331        rollback_lock_file(&index_lock);
 332
 333        if (opts->signoff)
 334                append_signoff(msgbuf, 0, 0);
 335
 336        if (!clean)
 337                append_conflicts_hint(msgbuf);
 338
 339        return !clean;
 340}
 341
 342static int is_index_unchanged(void)
 343{
 344        unsigned char head_sha1[20];
 345        struct commit *head_commit;
 346
 347        if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING, head_sha1, NULL))
 348                return error(_("Could not resolve HEAD commit\n"));
 349
 350        head_commit = lookup_commit(head_sha1);
 351
 352        /*
 353         * If head_commit is NULL, check_commit, called from
 354         * lookup_commit, would have indicated that head_commit is not
 355         * a commit object already.  parse_commit() will return failure
 356         * without further complaints in such a case.  Otherwise, if
 357         * the commit is invalid, parse_commit() will complain.  So
 358         * there is nothing for us to say here.  Just return failure.
 359         */
 360        if (parse_commit(head_commit))
 361                return -1;
 362
 363        if (!active_cache_tree)
 364                active_cache_tree = cache_tree();
 365
 366        if (!cache_tree_fully_valid(active_cache_tree))
 367                if (cache_tree_update(&the_index, 0))
 368                        return error(_("Unable to update cache tree\n"));
 369
 370        return !hashcmp(active_cache_tree->sha1, head_commit->tree->object.oid.hash);
 371}
 372
 373/*
 374 * If we are cherry-pick, and if the merge did not result in
 375 * hand-editing, we will hit this commit and inherit the original
 376 * author date and name.
 377 * If we are revert, or if our cherry-pick results in a hand merge,
 378 * we had better say that the current user is responsible for that.
 379 */
 380static int run_git_commit(const char *defmsg, struct replay_opts *opts,
 381                          int allow_empty)
 382{
 383        struct argv_array array;
 384        int rc;
 385        const char *value;
 386
 387        argv_array_init(&array);
 388        argv_array_push(&array, "commit");
 389        argv_array_push(&array, "-n");
 390
 391        if (opts->gpg_sign)
 392                argv_array_pushf(&array, "-S%s", opts->gpg_sign);
 393        if (opts->signoff)
 394                argv_array_push(&array, "-s");
 395        if (!opts->edit) {
 396                argv_array_push(&array, "-F");
 397                argv_array_push(&array, defmsg);
 398                if (!opts->signoff &&
 399                    !opts->record_origin &&
 400                    git_config_get_value("commit.cleanup", &value))
 401                        argv_array_push(&array, "--cleanup=verbatim");
 402        }
 403
 404        if (allow_empty)
 405                argv_array_push(&array, "--allow-empty");
 406
 407        if (opts->allow_empty_message)
 408                argv_array_push(&array, "--allow-empty-message");
 409
 410        rc = run_command_v_opt(array.argv, RUN_GIT_CMD);
 411        argv_array_clear(&array);
 412        return rc;
 413}
 414
 415static int is_original_commit_empty(struct commit *commit)
 416{
 417        const unsigned char *ptree_sha1;
 418
 419        if (parse_commit(commit))
 420                return error(_("Could not parse commit %s\n"),
 421                             oid_to_hex(&commit->object.oid));
 422        if (commit->parents) {
 423                struct commit *parent = commit->parents->item;
 424                if (parse_commit(parent))
 425                        return error(_("Could not parse parent commit %s\n"),
 426                                oid_to_hex(&parent->object.oid));
 427                ptree_sha1 = parent->tree->object.oid.hash;
 428        } else {
 429                ptree_sha1 = EMPTY_TREE_SHA1_BIN; /* commit is root */
 430        }
 431
 432        return !hashcmp(ptree_sha1, commit->tree->object.oid.hash);
 433}
 434
 435/*
 436 * Do we run "git commit" with "--allow-empty"?
 437 */
 438static int allow_empty(struct replay_opts *opts, struct commit *commit)
 439{
 440        int index_unchanged, empty_commit;
 441
 442        /*
 443         * Three cases:
 444         *
 445         * (1) we do not allow empty at all and error out.
 446         *
 447         * (2) we allow ones that were initially empty, but
 448         * forbid the ones that become empty;
 449         *
 450         * (3) we allow both.
 451         */
 452        if (!opts->allow_empty)
 453                return 0; /* let "git commit" barf as necessary */
 454
 455        index_unchanged = is_index_unchanged();
 456        if (index_unchanged < 0)
 457                return index_unchanged;
 458        if (!index_unchanged)
 459                return 0; /* we do not have to say --allow-empty */
 460
 461        if (opts->keep_redundant_commits)
 462                return 1;
 463
 464        empty_commit = is_original_commit_empty(commit);
 465        if (empty_commit < 0)
 466                return empty_commit;
 467        if (!empty_commit)
 468                return 0;
 469        else
 470                return 1;
 471}
 472
 473enum todo_command {
 474        TODO_PICK = 0,
 475        TODO_REVERT
 476};
 477
 478static const char *todo_command_strings[] = {
 479        "pick",
 480        "revert"
 481};
 482
 483static const char *command_to_string(const enum todo_command command)
 484{
 485        if (command < ARRAY_SIZE(todo_command_strings))
 486                return todo_command_strings[command];
 487        die("Unknown command: %d", command);
 488}
 489
 490
 491static int do_pick_commit(enum todo_command command, struct commit *commit,
 492                struct replay_opts *opts)
 493{
 494        unsigned char head[20];
 495        struct commit *base, *next, *parent;
 496        const char *base_label, *next_label;
 497        struct commit_message msg = { NULL, NULL, NULL, NULL };
 498        struct strbuf msgbuf = STRBUF_INIT;
 499        int res, unborn = 0, allow;
 500
 501        if (opts->no_commit) {
 502                /*
 503                 * We do not intend to commit immediately.  We just want to
 504                 * merge the differences in, so let's compute the tree
 505                 * that represents the "current" state for merge-recursive
 506                 * to work on.
 507                 */
 508                if (write_cache_as_tree(head, 0, NULL))
 509                        return error(_("Your index file is unmerged."));
 510        } else {
 511                unborn = get_sha1("HEAD", head);
 512                if (unborn)
 513                        hashcpy(head, EMPTY_TREE_SHA1_BIN);
 514                if (index_differs_from(unborn ? EMPTY_TREE_SHA1_HEX : "HEAD", 0))
 515                        return error_dirty_index(opts);
 516        }
 517        discard_cache();
 518
 519        if (!commit->parents) {
 520                parent = NULL;
 521        }
 522        else if (commit->parents->next) {
 523                /* Reverting or cherry-picking a merge commit */
 524                int cnt;
 525                struct commit_list *p;
 526
 527                if (!opts->mainline)
 528                        return error(_("Commit %s is a merge but no -m option was given."),
 529                                oid_to_hex(&commit->object.oid));
 530
 531                for (cnt = 1, p = commit->parents;
 532                     cnt != opts->mainline && p;
 533                     cnt++)
 534                        p = p->next;
 535                if (cnt != opts->mainline || !p)
 536                        return error(_("Commit %s does not have parent %d"),
 537                                oid_to_hex(&commit->object.oid), opts->mainline);
 538                parent = p->item;
 539        } else if (0 < opts->mainline)
 540                return error(_("Mainline was specified but commit %s is not a merge."),
 541                        oid_to_hex(&commit->object.oid));
 542        else
 543                parent = commit->parents->item;
 544
 545        if (opts->allow_ff &&
 546            ((parent && !hashcmp(parent->object.oid.hash, head)) ||
 547             (!parent && unborn)))
 548                return fast_forward_to(commit->object.oid.hash, head, unborn, opts);
 549
 550        if (parent && parse_commit(parent) < 0)
 551                /* TRANSLATORS: The first %s will be a "todo" command like
 552                   "revert" or "pick", the second %s a SHA1. */
 553                return error(_("%s: cannot parse parent commit %s"),
 554                        command_to_string(command),
 555                        oid_to_hex(&parent->object.oid));
 556
 557        if (get_message(commit, &msg) != 0)
 558                return error(_("Cannot get commit message for %s"),
 559                        oid_to_hex(&commit->object.oid));
 560
 561        /*
 562         * "commit" is an existing commit.  We would want to apply
 563         * the difference it introduces since its first parent "prev"
 564         * on top of the current HEAD if we are cherry-pick.  Or the
 565         * reverse of it if we are revert.
 566         */
 567
 568        if (command == TODO_REVERT) {
 569                base = commit;
 570                base_label = msg.label;
 571                next = parent;
 572                next_label = msg.parent_label;
 573                strbuf_addstr(&msgbuf, "Revert \"");
 574                strbuf_addstr(&msgbuf, msg.subject);
 575                strbuf_addstr(&msgbuf, "\"\n\nThis reverts commit ");
 576                strbuf_addstr(&msgbuf, oid_to_hex(&commit->object.oid));
 577
 578                if (commit->parents && commit->parents->next) {
 579                        strbuf_addstr(&msgbuf, ", reversing\nchanges made to ");
 580                        strbuf_addstr(&msgbuf, oid_to_hex(&parent->object.oid));
 581                }
 582                strbuf_addstr(&msgbuf, ".\n");
 583        } else {
 584                const char *p;
 585
 586                base = parent;
 587                base_label = msg.parent_label;
 588                next = commit;
 589                next_label = msg.label;
 590
 591                /*
 592                 * Append the commit log message to msgbuf; it starts
 593                 * after the tree, parent, author, committer
 594                 * information followed by "\n\n".
 595                 */
 596                p = strstr(msg.message, "\n\n");
 597                if (p)
 598                        strbuf_addstr(&msgbuf, skip_blank_lines(p + 2));
 599
 600                if (opts->record_origin) {
 601                        if (!has_conforming_footer(&msgbuf, NULL, 0))
 602                                strbuf_addch(&msgbuf, '\n');
 603                        strbuf_addstr(&msgbuf, cherry_picked_prefix);
 604                        strbuf_addstr(&msgbuf, oid_to_hex(&commit->object.oid));
 605                        strbuf_addstr(&msgbuf, ")\n");
 606                }
 607        }
 608
 609        if (!opts->strategy || !strcmp(opts->strategy, "recursive") || command == TODO_REVERT) {
 610                res = do_recursive_merge(base, next, base_label, next_label,
 611                                         head, &msgbuf, opts);
 612                if (res < 0)
 613                        return res;
 614                res |= write_message(&msgbuf, git_path_merge_msg());
 615        } else {
 616                struct commit_list *common = NULL;
 617                struct commit_list *remotes = NULL;
 618
 619                res = write_message(&msgbuf, git_path_merge_msg());
 620
 621                commit_list_insert(base, &common);
 622                commit_list_insert(next, &remotes);
 623                res |= try_merge_command(opts->strategy,
 624                                         opts->xopts_nr, (const char **)opts->xopts,
 625                                        common, sha1_to_hex(head), remotes);
 626                free_commit_list(common);
 627                free_commit_list(remotes);
 628        }
 629
 630        /*
 631         * If the merge was clean or if it failed due to conflict, we write
 632         * CHERRY_PICK_HEAD for the subsequent invocation of commit to use.
 633         * However, if the merge did not even start, then we don't want to
 634         * write it at all.
 635         */
 636        if (command == TODO_PICK && !opts->no_commit && (res == 0 || res == 1) &&
 637            update_ref(NULL, "CHERRY_PICK_HEAD", commit->object.oid.hash, NULL,
 638                       REF_NODEREF, UPDATE_REFS_MSG_ON_ERR))
 639                res = -1;
 640        if (command == TODO_REVERT && ((opts->no_commit && res == 0) || res == 1) &&
 641            update_ref(NULL, "REVERT_HEAD", commit->object.oid.hash, NULL,
 642                       REF_NODEREF, UPDATE_REFS_MSG_ON_ERR))
 643                res = -1;
 644
 645        if (res) {
 646                error(command == TODO_REVERT
 647                      ? _("could not revert %s... %s")
 648                      : _("could not apply %s... %s"),
 649                      short_commit_name(commit), msg.subject);
 650                print_advice(res == 1, opts);
 651                rerere(opts->allow_rerere_auto);
 652                goto leave;
 653        }
 654
 655        allow = allow_empty(opts, commit);
 656        if (allow < 0) {
 657                res = allow;
 658                goto leave;
 659        }
 660        if (!opts->no_commit)
 661                res = run_git_commit(git_path_merge_msg(), opts, allow);
 662
 663leave:
 664        free_message(commit, &msg);
 665
 666        return res;
 667}
 668
 669static int prepare_revs(struct replay_opts *opts)
 670{
 671        /*
 672         * picking (but not reverting) ranges (but not individual revisions)
 673         * should be done in reverse
 674         */
 675        if (opts->action == REPLAY_PICK && !opts->revs->no_walk)
 676                opts->revs->reverse ^= 1;
 677
 678        if (prepare_revision_walk(opts->revs))
 679                return error(_("revision walk setup failed"));
 680
 681        if (!opts->revs->commits)
 682                return error(_("empty commit set passed"));
 683        return 0;
 684}
 685
 686static int read_and_refresh_cache(struct replay_opts *opts)
 687{
 688        static struct lock_file index_lock;
 689        int index_fd = hold_locked_index(&index_lock, 0);
 690        if (read_index_preload(&the_index, NULL) < 0) {
 691                rollback_lock_file(&index_lock);
 692                return error(_("git %s: failed to read the index"),
 693                        action_name(opts));
 694        }
 695        refresh_index(&the_index, REFRESH_QUIET|REFRESH_UNMERGED, NULL, NULL, NULL);
 696        if (the_index.cache_changed && index_fd >= 0) {
 697                if (write_locked_index(&the_index, &index_lock, COMMIT_LOCK)) {
 698                        rollback_lock_file(&index_lock);
 699                        return error(_("git %s: failed to refresh the index"),
 700                                action_name(opts));
 701                }
 702        }
 703        rollback_lock_file(&index_lock);
 704        return 0;
 705}
 706
 707struct todo_item {
 708        enum todo_command command;
 709        struct commit *commit;
 710        size_t offset_in_buf;
 711};
 712
 713struct todo_list {
 714        struct strbuf buf;
 715        struct todo_item *items;
 716        int nr, alloc, current;
 717};
 718
 719#define TODO_LIST_INIT { STRBUF_INIT }
 720
 721static void todo_list_release(struct todo_list *todo_list)
 722{
 723        strbuf_release(&todo_list->buf);
 724        free(todo_list->items);
 725        todo_list->items = NULL;
 726        todo_list->nr = todo_list->alloc = 0;
 727}
 728
 729static struct todo_item *append_new_todo(struct todo_list *todo_list)
 730{
 731        ALLOC_GROW(todo_list->items, todo_list->nr + 1, todo_list->alloc);
 732        return todo_list->items + todo_list->nr++;
 733}
 734
 735static int parse_insn_line(struct todo_item *item, const char *bol, char *eol)
 736{
 737        unsigned char commit_sha1[20];
 738        char *end_of_object_name;
 739        int i, saved, status, padding;
 740
 741        for (i = 0; i < ARRAY_SIZE(todo_command_strings); i++)
 742                if (skip_prefix(bol, todo_command_strings[i], &bol)) {
 743                        item->command = i;
 744                        break;
 745                }
 746        if (i >= ARRAY_SIZE(todo_command_strings))
 747                return -1;
 748
 749        /* Eat up extra spaces/ tabs before object name */
 750        padding = strspn(bol, " \t");
 751        if (!padding)
 752                return -1;
 753        bol += padding;
 754
 755        end_of_object_name = (char *) bol + strcspn(bol, " \t\n");
 756        saved = *end_of_object_name;
 757        *end_of_object_name = '\0';
 758        status = get_sha1(bol, commit_sha1);
 759        *end_of_object_name = saved;
 760
 761        if (status < 0)
 762                return -1;
 763
 764        item->commit = lookup_commit_reference(commit_sha1);
 765        return !item->commit;
 766}
 767
 768static int parse_insn_buffer(char *buf, struct todo_list *todo_list)
 769{
 770        struct todo_item *item;
 771        char *p = buf, *next_p;
 772        int i, res = 0;
 773
 774        for (i = 1; *p; i++, p = next_p) {
 775                char *eol = strchrnul(p, '\n');
 776
 777                next_p = *eol ? eol + 1 /* skip LF */ : eol;
 778
 779                if (p != eol && eol[-1] == '\r')
 780                        eol--; /* strip Carriage Return */
 781
 782                item = append_new_todo(todo_list);
 783                item->offset_in_buf = p - todo_list->buf.buf;
 784                if (parse_insn_line(item, p, eol)) {
 785                        res = error(_("Invalid line %d: %.*s"),
 786                                i, (int)(eol - p), p);
 787                        item->command = -1;
 788                }
 789        }
 790        if (!todo_list->nr)
 791                return error(_("No commits parsed."));
 792        return res;
 793}
 794
 795static int read_populate_todo(struct todo_list *todo_list,
 796                        struct replay_opts *opts)
 797{
 798        const char *todo_file = get_todo_path(opts);
 799        int fd, res;
 800
 801        strbuf_reset(&todo_list->buf);
 802        fd = open(todo_file, O_RDONLY);
 803        if (fd < 0)
 804                return error_errno(_("Could not open %s"), todo_file);
 805        if (strbuf_read(&todo_list->buf, fd, 0) < 0) {
 806                close(fd);
 807                return error(_("Could not read %s."), todo_file);
 808        }
 809        close(fd);
 810
 811        res = parse_insn_buffer(todo_list->buf.buf, todo_list);
 812        if (!res) {
 813                enum todo_command valid =
 814                        opts->action == REPLAY_PICK ? TODO_PICK : TODO_REVERT;
 815                int i;
 816
 817                for (i = 0; i < todo_list->nr; i++)
 818                        if (valid == todo_list->items[i].command)
 819                                continue;
 820                        else if (valid == TODO_PICK)
 821                                return error(_("Cannot cherry-pick during a revert."));
 822                        else
 823                                return error(_("Cannot revert during a cherry-pick."));
 824        }
 825
 826        if (res)
 827                return error(_("Unusable instruction sheet: %s"), todo_file);
 828        return 0;
 829}
 830
 831static int git_config_string_dup(char **dest,
 832                                 const char *var, const char *value)
 833{
 834        if (!value)
 835                return config_error_nonbool(var);
 836        free(*dest);
 837        *dest = xstrdup(value);
 838        return 0;
 839}
 840
 841static int populate_opts_cb(const char *key, const char *value, void *data)
 842{
 843        struct replay_opts *opts = data;
 844        int error_flag = 1;
 845
 846        if (!value)
 847                error_flag = 0;
 848        else if (!strcmp(key, "options.no-commit"))
 849                opts->no_commit = git_config_bool_or_int(key, value, &error_flag);
 850        else if (!strcmp(key, "options.edit"))
 851                opts->edit = git_config_bool_or_int(key, value, &error_flag);
 852        else if (!strcmp(key, "options.signoff"))
 853                opts->signoff = git_config_bool_or_int(key, value, &error_flag);
 854        else if (!strcmp(key, "options.record-origin"))
 855                opts->record_origin = git_config_bool_or_int(key, value, &error_flag);
 856        else if (!strcmp(key, "options.allow-ff"))
 857                opts->allow_ff = git_config_bool_or_int(key, value, &error_flag);
 858        else if (!strcmp(key, "options.mainline"))
 859                opts->mainline = git_config_int(key, value);
 860        else if (!strcmp(key, "options.strategy"))
 861                git_config_string_dup(&opts->strategy, key, value);
 862        else if (!strcmp(key, "options.gpg-sign"))
 863                git_config_string_dup(&opts->gpg_sign, key, value);
 864        else if (!strcmp(key, "options.strategy-option")) {
 865                ALLOC_GROW(opts->xopts, opts->xopts_nr + 1, opts->xopts_alloc);
 866                opts->xopts[opts->xopts_nr++] = xstrdup(value);
 867        } else
 868                return error(_("Invalid key: %s"), key);
 869
 870        if (!error_flag)
 871                return error(_("Invalid value for %s: %s"), key, value);
 872
 873        return 0;
 874}
 875
 876static int read_populate_opts(struct replay_opts *opts)
 877{
 878        if (!file_exists(git_path_opts_file()))
 879                return 0;
 880        /*
 881         * The function git_parse_source(), called from git_config_from_file(),
 882         * may die() in case of a syntactically incorrect file. We do not care
 883         * about this case, though, because we wrote that file ourselves, so we
 884         * are pretty certain that it is syntactically correct.
 885         */
 886        if (git_config_from_file(populate_opts_cb, git_path_opts_file(), opts) < 0)
 887                return error(_("Malformed options sheet: %s"),
 888                        git_path_opts_file());
 889        return 0;
 890}
 891
 892static int walk_revs_populate_todo(struct todo_list *todo_list,
 893                                struct replay_opts *opts)
 894{
 895        enum todo_command command = opts->action == REPLAY_PICK ?
 896                TODO_PICK : TODO_REVERT;
 897        const char *command_string = todo_command_strings[command];
 898        struct commit *commit;
 899
 900        if (prepare_revs(opts))
 901                return -1;
 902
 903        while ((commit = get_revision(opts->revs))) {
 904                struct todo_item *item = append_new_todo(todo_list);
 905                const char *commit_buffer = get_commit_buffer(commit, NULL);
 906                const char *subject;
 907                int subject_len;
 908
 909                item->command = command;
 910                item->commit = commit;
 911                item->offset_in_buf = todo_list->buf.len;
 912                subject_len = find_commit_subject(commit_buffer, &subject);
 913                strbuf_addf(&todo_list->buf, "%s %s %.*s\n", command_string,
 914                        short_commit_name(commit), subject_len, subject);
 915                unuse_commit_buffer(commit, commit_buffer);
 916        }
 917        return 0;
 918}
 919
 920static int create_seq_dir(void)
 921{
 922        if (file_exists(git_path_seq_dir())) {
 923                error(_("a cherry-pick or revert is already in progress"));
 924                advise(_("try \"git cherry-pick (--continue | --quit | --abort)\""));
 925                return -1;
 926        }
 927        else if (mkdir(git_path_seq_dir(), 0777) < 0)
 928                return error_errno(_("Could not create sequencer directory %s"),
 929                                   git_path_seq_dir());
 930        return 0;
 931}
 932
 933static int save_head(const char *head)
 934{
 935        static struct lock_file head_lock;
 936        struct strbuf buf = STRBUF_INIT;
 937        int fd;
 938
 939        fd = hold_lock_file_for_update(&head_lock, git_path_head_file(), 0);
 940        if (fd < 0) {
 941                rollback_lock_file(&head_lock);
 942                return error_errno(_("Could not lock HEAD"));
 943        }
 944        strbuf_addf(&buf, "%s\n", head);
 945        if (write_in_full(fd, buf.buf, buf.len) < 0) {
 946                rollback_lock_file(&head_lock);
 947                return error_errno(_("Could not write to %s"),
 948                                   git_path_head_file());
 949        }
 950        if (commit_lock_file(&head_lock) < 0) {
 951                rollback_lock_file(&head_lock);
 952                return error(_("Error wrapping up %s."), git_path_head_file());
 953        }
 954        return 0;
 955}
 956
 957static int reset_for_rollback(const unsigned char *sha1)
 958{
 959        const char *argv[4];    /* reset --merge <arg> + NULL */
 960        argv[0] = "reset";
 961        argv[1] = "--merge";
 962        argv[2] = sha1_to_hex(sha1);
 963        argv[3] = NULL;
 964        return run_command_v_opt(argv, RUN_GIT_CMD);
 965}
 966
 967static int rollback_single_pick(void)
 968{
 969        unsigned char head_sha1[20];
 970
 971        if (!file_exists(git_path_cherry_pick_head()) &&
 972            !file_exists(git_path_revert_head()))
 973                return error(_("no cherry-pick or revert in progress"));
 974        if (read_ref_full("HEAD", 0, head_sha1, NULL))
 975                return error(_("cannot resolve HEAD"));
 976        if (is_null_sha1(head_sha1))
 977                return error(_("cannot abort from a branch yet to be born"));
 978        return reset_for_rollback(head_sha1);
 979}
 980
 981static int sequencer_rollback(struct replay_opts *opts)
 982{
 983        FILE *f;
 984        unsigned char sha1[20];
 985        struct strbuf buf = STRBUF_INIT;
 986
 987        f = fopen(git_path_head_file(), "r");
 988        if (!f && errno == ENOENT) {
 989                /*
 990                 * There is no multiple-cherry-pick in progress.
 991                 * If CHERRY_PICK_HEAD or REVERT_HEAD indicates
 992                 * a single-cherry-pick in progress, abort that.
 993                 */
 994                return rollback_single_pick();
 995        }
 996        if (!f)
 997                return error_errno(_("cannot open %s"), git_path_head_file());
 998        if (strbuf_getline_lf(&buf, f)) {
 999                error(_("cannot read %s: %s"), git_path_head_file(),
1000                      ferror(f) ?  strerror(errno) : _("unexpected end of file"));
1001                fclose(f);
1002                goto fail;
1003        }
1004        fclose(f);
1005        if (get_sha1_hex(buf.buf, sha1) || buf.buf[40] != '\0') {
1006                error(_("stored pre-cherry-pick HEAD file '%s' is corrupt"),
1007                        git_path_head_file());
1008                goto fail;
1009        }
1010        if (is_null_sha1(sha1)) {
1011                error(_("cannot abort from a branch yet to be born"));
1012                goto fail;
1013        }
1014        if (reset_for_rollback(sha1))
1015                goto fail;
1016        remove_sequencer_state(opts);
1017        strbuf_release(&buf);
1018        return 0;
1019fail:
1020        strbuf_release(&buf);
1021        return -1;
1022}
1023
1024static int save_todo(struct todo_list *todo_list, struct replay_opts *opts)
1025{
1026        static struct lock_file todo_lock;
1027        const char *todo_path = get_todo_path(opts);
1028        int next = todo_list->current, offset, fd;
1029
1030        fd = hold_lock_file_for_update(&todo_lock, todo_path, 0);
1031        if (fd < 0)
1032                return error_errno(_("Could not lock '%s'"), todo_path);
1033        offset = next < todo_list->nr ?
1034                todo_list->items[next].offset_in_buf : todo_list->buf.len;
1035        if (write_in_full(fd, todo_list->buf.buf + offset,
1036                        todo_list->buf.len - offset) < 0)
1037                return error_errno(_("Could not write to '%s'"), todo_path);
1038        if (commit_lock_file(&todo_lock) < 0)
1039                return error(_("Error wrapping up %s."), todo_path);
1040        return 0;
1041}
1042
1043static int save_opts(struct replay_opts *opts)
1044{
1045        const char *opts_file = git_path_opts_file();
1046        int res = 0;
1047
1048        if (opts->no_commit)
1049                res |= git_config_set_in_file_gently(opts_file, "options.no-commit", "true");
1050        if (opts->edit)
1051                res |= git_config_set_in_file_gently(opts_file, "options.edit", "true");
1052        if (opts->signoff)
1053                res |= git_config_set_in_file_gently(opts_file, "options.signoff", "true");
1054        if (opts->record_origin)
1055                res |= git_config_set_in_file_gently(opts_file, "options.record-origin", "true");
1056        if (opts->allow_ff)
1057                res |= git_config_set_in_file_gently(opts_file, "options.allow-ff", "true");
1058        if (opts->mainline) {
1059                struct strbuf buf = STRBUF_INIT;
1060                strbuf_addf(&buf, "%d", opts->mainline);
1061                res |= git_config_set_in_file_gently(opts_file, "options.mainline", buf.buf);
1062                strbuf_release(&buf);
1063        }
1064        if (opts->strategy)
1065                res |= git_config_set_in_file_gently(opts_file, "options.strategy", opts->strategy);
1066        if (opts->gpg_sign)
1067                res |= git_config_set_in_file_gently(opts_file, "options.gpg-sign", opts->gpg_sign);
1068        if (opts->xopts) {
1069                int i;
1070                for (i = 0; i < opts->xopts_nr; i++)
1071                        res |= git_config_set_multivar_in_file_gently(opts_file,
1072                                                        "options.strategy-option",
1073                                                        opts->xopts[i], "^$", 0);
1074        }
1075        return res;
1076}
1077
1078static int pick_commits(struct todo_list *todo_list, struct replay_opts *opts)
1079{
1080        int res;
1081
1082        setenv(GIT_REFLOG_ACTION, action_name(opts), 0);
1083        if (opts->allow_ff)
1084                assert(!(opts->signoff || opts->no_commit ||
1085                                opts->record_origin || opts->edit));
1086        if (read_and_refresh_cache(opts))
1087                return -1;
1088
1089        while (todo_list->current < todo_list->nr) {
1090                struct todo_item *item = todo_list->items + todo_list->current;
1091                if (save_todo(todo_list, opts))
1092                        return -1;
1093                res = do_pick_commit(item->command, item->commit, opts);
1094                todo_list->current++;
1095                if (res)
1096                        return res;
1097        }
1098
1099        /*
1100         * Sequence of picks finished successfully; cleanup by
1101         * removing the .git/sequencer directory
1102         */
1103        remove_sequencer_state(opts);
1104        return 0;
1105}
1106
1107static int continue_single_pick(void)
1108{
1109        const char *argv[] = { "commit", NULL };
1110
1111        if (!file_exists(git_path_cherry_pick_head()) &&
1112            !file_exists(git_path_revert_head()))
1113                return error(_("no cherry-pick or revert in progress"));
1114        return run_command_v_opt(argv, RUN_GIT_CMD);
1115}
1116
1117static int sequencer_continue(struct replay_opts *opts)
1118{
1119        struct todo_list todo_list = TODO_LIST_INIT;
1120        int res;
1121
1122        if (!file_exists(get_todo_path(opts)))
1123                return continue_single_pick();
1124        if (read_populate_opts(opts))
1125                return -1;
1126        if ((res = read_populate_todo(&todo_list, opts)))
1127                goto release_todo_list;
1128
1129        /* Verify that the conflict has been resolved */
1130        if (file_exists(git_path_cherry_pick_head()) ||
1131            file_exists(git_path_revert_head())) {
1132                res = continue_single_pick();
1133                if (res)
1134                        goto release_todo_list;
1135        }
1136        if (index_differs_from("HEAD", 0)) {
1137                res = error_dirty_index(opts);
1138                goto release_todo_list;
1139        }
1140        todo_list.current++;
1141        res = pick_commits(&todo_list, opts);
1142release_todo_list:
1143        todo_list_release(&todo_list);
1144        return res;
1145}
1146
1147static int single_pick(struct commit *cmit, struct replay_opts *opts)
1148{
1149        setenv(GIT_REFLOG_ACTION, action_name(opts), 0);
1150        return do_pick_commit(opts->action == REPLAY_PICK ?
1151                TODO_PICK : TODO_REVERT, cmit, opts);
1152}
1153
1154int sequencer_pick_revisions(struct replay_opts *opts)
1155{
1156        struct todo_list todo_list = TODO_LIST_INIT;
1157        unsigned char sha1[20];
1158        int i, res;
1159
1160        if (opts->subcommand == REPLAY_NONE)
1161                assert(opts->revs);
1162
1163        if (read_and_refresh_cache(opts))
1164                return -1;
1165
1166        /*
1167         * Decide what to do depending on the arguments; a fresh
1168         * cherry-pick should be handled differently from an existing
1169         * one that is being continued
1170         */
1171        if (opts->subcommand == REPLAY_REMOVE_STATE) {
1172                remove_sequencer_state(opts);
1173                return 0;
1174        }
1175        if (opts->subcommand == REPLAY_ROLLBACK)
1176                return sequencer_rollback(opts);
1177        if (opts->subcommand == REPLAY_CONTINUE)
1178                return sequencer_continue(opts);
1179
1180        for (i = 0; i < opts->revs->pending.nr; i++) {
1181                unsigned char sha1[20];
1182                const char *name = opts->revs->pending.objects[i].name;
1183
1184                /* This happens when using --stdin. */
1185                if (!strlen(name))
1186                        continue;
1187
1188                if (!get_sha1(name, sha1)) {
1189                        if (!lookup_commit_reference_gently(sha1, 1)) {
1190                                enum object_type type = sha1_object_info(sha1, NULL);
1191                                return error(_("%s: can't cherry-pick a %s"),
1192                                        name, typename(type));
1193                        }
1194                } else
1195                        return error(_("%s: bad revision"), name);
1196        }
1197
1198        /*
1199         * If we were called as "git cherry-pick <commit>", just
1200         * cherry-pick/revert it, set CHERRY_PICK_HEAD /
1201         * REVERT_HEAD, and don't touch the sequencer state.
1202         * This means it is possible to cherry-pick in the middle
1203         * of a cherry-pick sequence.
1204         */
1205        if (opts->revs->cmdline.nr == 1 &&
1206            opts->revs->cmdline.rev->whence == REV_CMD_REV &&
1207            opts->revs->no_walk &&
1208            !opts->revs->cmdline.rev->flags) {
1209                struct commit *cmit;
1210                if (prepare_revision_walk(opts->revs))
1211                        return error(_("revision walk setup failed"));
1212                cmit = get_revision(opts->revs);
1213                if (!cmit || get_revision(opts->revs))
1214                        return error("BUG: expected exactly one commit from walk");
1215                return single_pick(cmit, opts);
1216        }
1217
1218        /*
1219         * Start a new cherry-pick/ revert sequence; but
1220         * first, make sure that an existing one isn't in
1221         * progress
1222         */
1223
1224        if (walk_revs_populate_todo(&todo_list, opts) ||
1225                        create_seq_dir() < 0)
1226                return -1;
1227        if (get_sha1("HEAD", sha1) && (opts->action == REPLAY_REVERT))
1228                return error(_("Can't revert as initial commit"));
1229        if (save_head(sha1_to_hex(sha1)))
1230                return -1;
1231        if (save_opts(opts))
1232                return -1;
1233        res = pick_commits(&todo_list, opts);
1234        todo_list_release(&todo_list);
1235        return res;
1236}
1237
1238void append_signoff(struct strbuf *msgbuf, int ignore_footer, unsigned flag)
1239{
1240        unsigned no_dup_sob = flag & APPEND_SIGNOFF_DEDUP;
1241        struct strbuf sob = STRBUF_INIT;
1242        int has_footer;
1243
1244        strbuf_addstr(&sob, sign_off_header);
1245        strbuf_addstr(&sob, fmt_name(getenv("GIT_COMMITTER_NAME"),
1246                                getenv("GIT_COMMITTER_EMAIL")));
1247        strbuf_addch(&sob, '\n');
1248
1249        /*
1250         * If the whole message buffer is equal to the sob, pretend that we
1251         * found a conforming footer with a matching sob
1252         */
1253        if (msgbuf->len - ignore_footer == sob.len &&
1254            !strncmp(msgbuf->buf, sob.buf, sob.len))
1255                has_footer = 3;
1256        else
1257                has_footer = has_conforming_footer(msgbuf, &sob, ignore_footer);
1258
1259        if (!has_footer) {
1260                const char *append_newlines = NULL;
1261                size_t len = msgbuf->len - ignore_footer;
1262
1263                if (!len) {
1264                        /*
1265                         * The buffer is completely empty.  Leave foom for
1266                         * the title and body to be filled in by the user.
1267                         */
1268                        append_newlines = "\n\n";
1269                } else if (msgbuf->buf[len - 1] != '\n') {
1270                        /*
1271                         * Incomplete line.  Complete the line and add a
1272                         * blank one so that there is an empty line between
1273                         * the message body and the sob.
1274                         */
1275                        append_newlines = "\n\n";
1276                } else if (len == 1) {
1277                        /*
1278                         * Buffer contains a single newline.  Add another
1279                         * so that we leave room for the title and body.
1280                         */
1281                        append_newlines = "\n";
1282                } else if (msgbuf->buf[len - 2] != '\n') {
1283                        /*
1284                         * Buffer ends with a single newline.  Add another
1285                         * so that there is an empty line between the message
1286                         * body and the sob.
1287                         */
1288                        append_newlines = "\n";
1289                } /* else, the buffer already ends with two newlines. */
1290
1291                if (append_newlines)
1292                        strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0,
1293                                append_newlines, strlen(append_newlines));
1294        }
1295
1296        if (has_footer != 3 && (!no_dup_sob || has_footer != 2))
1297                strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0,
1298                                sob.buf, sob.len);
1299
1300        strbuf_release(&sob);
1301}