builtin / am.con commit am: match --signoff to the original scripted version (aab8454)
   1/*
   2 * Builtin "git am"
   3 *
   4 * Based on git-am.sh by Junio C Hamano.
   5 */
   6#include "cache.h"
   7#include "builtin.h"
   8#include "exec_cmd.h"
   9#include "parse-options.h"
  10#include "dir.h"
  11#include "run-command.h"
  12#include "quote.h"
  13#include "lockfile.h"
  14#include "cache-tree.h"
  15#include "refs.h"
  16#include "commit.h"
  17#include "diff.h"
  18#include "diffcore.h"
  19#include "unpack-trees.h"
  20#include "branch.h"
  21#include "sequencer.h"
  22#include "revision.h"
  23#include "merge-recursive.h"
  24#include "revision.h"
  25#include "log-tree.h"
  26#include "notes-utils.h"
  27#include "rerere.h"
  28#include "prompt.h"
  29
  30/**
  31 * Returns 1 if the file is empty or does not exist, 0 otherwise.
  32 */
  33static int is_empty_file(const char *filename)
  34{
  35        struct stat st;
  36
  37        if (stat(filename, &st) < 0) {
  38                if (errno == ENOENT)
  39                        return 1;
  40                die_errno(_("could not stat %s"), filename);
  41        }
  42
  43        return !st.st_size;
  44}
  45
  46/**
  47 * Like strbuf_getline(), but treats both '\n' and "\r\n" as line terminators.
  48 */
  49static int strbuf_getline_crlf(struct strbuf *sb, FILE *fp)
  50{
  51        if (strbuf_getwholeline(sb, fp, '\n'))
  52                return EOF;
  53        if (sb->buf[sb->len - 1] == '\n') {
  54                strbuf_setlen(sb, sb->len - 1);
  55                if (sb->len > 0 && sb->buf[sb->len - 1] == '\r')
  56                        strbuf_setlen(sb, sb->len - 1);
  57        }
  58        return 0;
  59}
  60
  61/**
  62 * Returns the length of the first line of msg.
  63 */
  64static int linelen(const char *msg)
  65{
  66        return strchrnul(msg, '\n') - msg;
  67}
  68
  69/**
  70 * Returns true if `str` consists of only whitespace, false otherwise.
  71 */
  72static int str_isspace(const char *str)
  73{
  74        for (; *str; str++)
  75                if (!isspace(*str))
  76                        return 0;
  77
  78        return 1;
  79}
  80
  81enum patch_format {
  82        PATCH_FORMAT_UNKNOWN = 0,
  83        PATCH_FORMAT_MBOX,
  84        PATCH_FORMAT_STGIT,
  85        PATCH_FORMAT_STGIT_SERIES,
  86        PATCH_FORMAT_HG
  87};
  88
  89enum keep_type {
  90        KEEP_FALSE = 0,
  91        KEEP_TRUE,      /* pass -k flag to git-mailinfo */
  92        KEEP_NON_PATCH  /* pass -b flag to git-mailinfo */
  93};
  94
  95enum scissors_type {
  96        SCISSORS_UNSET = -1,
  97        SCISSORS_FALSE = 0,  /* pass --no-scissors to git-mailinfo */
  98        SCISSORS_TRUE        /* pass --scissors to git-mailinfo */
  99};
 100
 101enum signoff_type {
 102        SIGNOFF_FALSE = 0,
 103        SIGNOFF_TRUE = 1,
 104        SIGNOFF_EXPLICIT /* --signoff was set on the command-line */
 105};
 106
 107struct am_state {
 108        /* state directory path */
 109        char *dir;
 110
 111        /* current and last patch numbers, 1-indexed */
 112        int cur;
 113        int last;
 114
 115        /* commit metadata and message */
 116        char *author_name;
 117        char *author_email;
 118        char *author_date;
 119        char *msg;
 120        size_t msg_len;
 121
 122        /* when --rebasing, records the original commit the patch came from */
 123        unsigned char orig_commit[GIT_SHA1_RAWSZ];
 124
 125        /* number of digits in patch filename */
 126        int prec;
 127
 128        /* various operating modes and command line options */
 129        int interactive;
 130        int threeway;
 131        int quiet;
 132        int signoff; /* enum signoff_type */
 133        int utf8;
 134        int keep; /* enum keep_type */
 135        int message_id;
 136        int scissors; /* enum scissors_type */
 137        struct argv_array git_apply_opts;
 138        const char *resolvemsg;
 139        int committer_date_is_author_date;
 140        int ignore_date;
 141        int allow_rerere_autoupdate;
 142        const char *sign_commit;
 143        int rebasing;
 144};
 145
 146/**
 147 * Initializes am_state with the default values. The state directory is set to
 148 * dir.
 149 */
 150static void am_state_init(struct am_state *state, const char *dir)
 151{
 152        int gpgsign;
 153
 154        memset(state, 0, sizeof(*state));
 155
 156        assert(dir);
 157        state->dir = xstrdup(dir);
 158
 159        state->prec = 4;
 160
 161        git_config_get_bool("am.threeway", &state->threeway);
 162
 163        state->utf8 = 1;
 164
 165        git_config_get_bool("am.messageid", &state->message_id);
 166
 167        state->scissors = SCISSORS_UNSET;
 168
 169        argv_array_init(&state->git_apply_opts);
 170
 171        if (!git_config_get_bool("commit.gpgsign", &gpgsign))
 172                state->sign_commit = gpgsign ? "" : NULL;
 173}
 174
 175/**
 176 * Releases memory allocated by an am_state.
 177 */
 178static void am_state_release(struct am_state *state)
 179{
 180        free(state->dir);
 181        free(state->author_name);
 182        free(state->author_email);
 183        free(state->author_date);
 184        free(state->msg);
 185        argv_array_clear(&state->git_apply_opts);
 186}
 187
 188/**
 189 * Returns path relative to the am_state directory.
 190 */
 191static inline const char *am_path(const struct am_state *state, const char *path)
 192{
 193        return mkpath("%s/%s", state->dir, path);
 194}
 195
 196/**
 197 * If state->quiet is false, calls fprintf(fp, fmt, ...), and appends a newline
 198 * at the end.
 199 */
 200static void say(const struct am_state *state, FILE *fp, const char *fmt, ...)
 201{
 202        va_list ap;
 203
 204        va_start(ap, fmt);
 205        if (!state->quiet) {
 206                vfprintf(fp, fmt, ap);
 207                putc('\n', fp);
 208        }
 209        va_end(ap);
 210}
 211
 212/**
 213 * Returns 1 if there is an am session in progress, 0 otherwise.
 214 */
 215static int am_in_progress(const struct am_state *state)
 216{
 217        struct stat st;
 218
 219        if (lstat(state->dir, &st) < 0 || !S_ISDIR(st.st_mode))
 220                return 0;
 221        if (lstat(am_path(state, "last"), &st) || !S_ISREG(st.st_mode))
 222                return 0;
 223        if (lstat(am_path(state, "next"), &st) || !S_ISREG(st.st_mode))
 224                return 0;
 225        return 1;
 226}
 227
 228/**
 229 * Reads the contents of `file` in the `state` directory into `sb`. Returns the
 230 * number of bytes read on success, -1 if the file does not exist. If `trim` is
 231 * set, trailing whitespace will be removed.
 232 */
 233static int read_state_file(struct strbuf *sb, const struct am_state *state,
 234                        const char *file, int trim)
 235{
 236        strbuf_reset(sb);
 237
 238        if (strbuf_read_file(sb, am_path(state, file), 0) >= 0) {
 239                if (trim)
 240                        strbuf_trim(sb);
 241
 242                return sb->len;
 243        }
 244
 245        if (errno == ENOENT)
 246                return -1;
 247
 248        die_errno(_("could not read '%s'"), am_path(state, file));
 249}
 250
 251/**
 252 * Reads a KEY=VALUE shell variable assignment from `fp`, returning the VALUE
 253 * as a newly-allocated string. VALUE must be a quoted string, and the KEY must
 254 * match `key`. Returns NULL on failure.
 255 *
 256 * This is used by read_author_script() to read the GIT_AUTHOR_* variables from
 257 * the author-script.
 258 */
 259static char *read_shell_var(FILE *fp, const char *key)
 260{
 261        struct strbuf sb = STRBUF_INIT;
 262        const char *str;
 263
 264        if (strbuf_getline(&sb, fp, '\n'))
 265                goto fail;
 266
 267        if (!skip_prefix(sb.buf, key, &str))
 268                goto fail;
 269
 270        if (!skip_prefix(str, "=", &str))
 271                goto fail;
 272
 273        strbuf_remove(&sb, 0, str - sb.buf);
 274
 275        str = sq_dequote(sb.buf);
 276        if (!str)
 277                goto fail;
 278
 279        return strbuf_detach(&sb, NULL);
 280
 281fail:
 282        strbuf_release(&sb);
 283        return NULL;
 284}
 285
 286/**
 287 * Reads and parses the state directory's "author-script" file, and sets
 288 * state->author_name, state->author_email and state->author_date accordingly.
 289 * Returns 0 on success, -1 if the file could not be parsed.
 290 *
 291 * The author script is of the format:
 292 *
 293 *      GIT_AUTHOR_NAME='$author_name'
 294 *      GIT_AUTHOR_EMAIL='$author_email'
 295 *      GIT_AUTHOR_DATE='$author_date'
 296 *
 297 * where $author_name, $author_email and $author_date are quoted. We are strict
 298 * with our parsing, as the file was meant to be eval'd in the old git-am.sh
 299 * script, and thus if the file differs from what this function expects, it is
 300 * better to bail out than to do something that the user does not expect.
 301 */
 302static int read_author_script(struct am_state *state)
 303{
 304        const char *filename = am_path(state, "author-script");
 305        FILE *fp;
 306
 307        assert(!state->author_name);
 308        assert(!state->author_email);
 309        assert(!state->author_date);
 310
 311        fp = fopen(filename, "r");
 312        if (!fp) {
 313                if (errno == ENOENT)
 314                        return 0;
 315                die_errno(_("could not open '%s' for reading"), filename);
 316        }
 317
 318        state->author_name = read_shell_var(fp, "GIT_AUTHOR_NAME");
 319        if (!state->author_name) {
 320                fclose(fp);
 321                return -1;
 322        }
 323
 324        state->author_email = read_shell_var(fp, "GIT_AUTHOR_EMAIL");
 325        if (!state->author_email) {
 326                fclose(fp);
 327                return -1;
 328        }
 329
 330        state->author_date = read_shell_var(fp, "GIT_AUTHOR_DATE");
 331        if (!state->author_date) {
 332                fclose(fp);
 333                return -1;
 334        }
 335
 336        if (fgetc(fp) != EOF) {
 337                fclose(fp);
 338                return -1;
 339        }
 340
 341        fclose(fp);
 342        return 0;
 343}
 344
 345/**
 346 * Saves state->author_name, state->author_email and state->author_date in the
 347 * state directory's "author-script" file.
 348 */
 349static void write_author_script(const struct am_state *state)
 350{
 351        struct strbuf sb = STRBUF_INIT;
 352
 353        strbuf_addstr(&sb, "GIT_AUTHOR_NAME=");
 354        sq_quote_buf(&sb, state->author_name);
 355        strbuf_addch(&sb, '\n');
 356
 357        strbuf_addstr(&sb, "GIT_AUTHOR_EMAIL=");
 358        sq_quote_buf(&sb, state->author_email);
 359        strbuf_addch(&sb, '\n');
 360
 361        strbuf_addstr(&sb, "GIT_AUTHOR_DATE=");
 362        sq_quote_buf(&sb, state->author_date);
 363        strbuf_addch(&sb, '\n');
 364
 365        write_file(am_path(state, "author-script"), 1, "%s", sb.buf);
 366
 367        strbuf_release(&sb);
 368}
 369
 370/**
 371 * Reads the commit message from the state directory's "final-commit" file,
 372 * setting state->msg to its contents and state->msg_len to the length of its
 373 * contents in bytes.
 374 *
 375 * Returns 0 on success, -1 if the file does not exist.
 376 */
 377static int read_commit_msg(struct am_state *state)
 378{
 379        struct strbuf sb = STRBUF_INIT;
 380
 381        assert(!state->msg);
 382
 383        if (read_state_file(&sb, state, "final-commit", 0) < 0) {
 384                strbuf_release(&sb);
 385                return -1;
 386        }
 387
 388        state->msg = strbuf_detach(&sb, &state->msg_len);
 389        return 0;
 390}
 391
 392/**
 393 * Saves state->msg in the state directory's "final-commit" file.
 394 */
 395static void write_commit_msg(const struct am_state *state)
 396{
 397        int fd;
 398        const char *filename = am_path(state, "final-commit");
 399
 400        fd = xopen(filename, O_WRONLY | O_CREAT, 0666);
 401        if (write_in_full(fd, state->msg, state->msg_len) < 0)
 402                die_errno(_("could not write to %s"), filename);
 403        close(fd);
 404}
 405
 406/**
 407 * Loads state from disk.
 408 */
 409static void am_load(struct am_state *state)
 410{
 411        struct strbuf sb = STRBUF_INIT;
 412
 413        if (read_state_file(&sb, state, "next", 1) < 0)
 414                die("BUG: state file 'next' does not exist");
 415        state->cur = strtol(sb.buf, NULL, 10);
 416
 417        if (read_state_file(&sb, state, "last", 1) < 0)
 418                die("BUG: state file 'last' does not exist");
 419        state->last = strtol(sb.buf, NULL, 10);
 420
 421        if (read_author_script(state) < 0)
 422                die(_("could not parse author script"));
 423
 424        read_commit_msg(state);
 425
 426        if (read_state_file(&sb, state, "original-commit", 1) < 0)
 427                hashclr(state->orig_commit);
 428        else if (get_sha1_hex(sb.buf, state->orig_commit) < 0)
 429                die(_("could not parse %s"), am_path(state, "original-commit"));
 430
 431        read_state_file(&sb, state, "threeway", 1);
 432        state->threeway = !strcmp(sb.buf, "t");
 433
 434        read_state_file(&sb, state, "quiet", 1);
 435        state->quiet = !strcmp(sb.buf, "t");
 436
 437        read_state_file(&sb, state, "sign", 1);
 438        state->signoff = !strcmp(sb.buf, "t");
 439
 440        read_state_file(&sb, state, "utf8", 1);
 441        state->utf8 = !strcmp(sb.buf, "t");
 442
 443        read_state_file(&sb, state, "keep", 1);
 444        if (!strcmp(sb.buf, "t"))
 445                state->keep = KEEP_TRUE;
 446        else if (!strcmp(sb.buf, "b"))
 447                state->keep = KEEP_NON_PATCH;
 448        else
 449                state->keep = KEEP_FALSE;
 450
 451        read_state_file(&sb, state, "messageid", 1);
 452        state->message_id = !strcmp(sb.buf, "t");
 453
 454        read_state_file(&sb, state, "scissors", 1);
 455        if (!strcmp(sb.buf, "t"))
 456                state->scissors = SCISSORS_TRUE;
 457        else if (!strcmp(sb.buf, "f"))
 458                state->scissors = SCISSORS_FALSE;
 459        else
 460                state->scissors = SCISSORS_UNSET;
 461
 462        read_state_file(&sb, state, "apply-opt", 1);
 463        argv_array_clear(&state->git_apply_opts);
 464        if (sq_dequote_to_argv_array(sb.buf, &state->git_apply_opts) < 0)
 465                die(_("could not parse %s"), am_path(state, "apply-opt"));
 466
 467        state->rebasing = !!file_exists(am_path(state, "rebasing"));
 468
 469        strbuf_release(&sb);
 470}
 471
 472/**
 473 * Removes the am_state directory, forcefully terminating the current am
 474 * session.
 475 */
 476static void am_destroy(const struct am_state *state)
 477{
 478        struct strbuf sb = STRBUF_INIT;
 479
 480        strbuf_addstr(&sb, state->dir);
 481        remove_dir_recursively(&sb, 0);
 482        strbuf_release(&sb);
 483}
 484
 485/**
 486 * Runs applypatch-msg hook. Returns its exit code.
 487 */
 488static int run_applypatch_msg_hook(struct am_state *state)
 489{
 490        int ret;
 491
 492        assert(state->msg);
 493        ret = run_hook_le(NULL, "applypatch-msg", am_path(state, "final-commit"), NULL);
 494
 495        if (!ret) {
 496                free(state->msg);
 497                state->msg = NULL;
 498                if (read_commit_msg(state) < 0)
 499                        die(_("'%s' was deleted by the applypatch-msg hook"),
 500                                am_path(state, "final-commit"));
 501        }
 502
 503        return ret;
 504}
 505
 506/**
 507 * Runs post-rewrite hook. Returns it exit code.
 508 */
 509static int run_post_rewrite_hook(const struct am_state *state)
 510{
 511        struct child_process cp = CHILD_PROCESS_INIT;
 512        const char *hook = find_hook("post-rewrite");
 513        int ret;
 514
 515        if (!hook)
 516                return 0;
 517
 518        argv_array_push(&cp.args, hook);
 519        argv_array_push(&cp.args, "rebase");
 520
 521        cp.in = xopen(am_path(state, "rewritten"), O_RDONLY);
 522        cp.stdout_to_stderr = 1;
 523
 524        ret = run_command(&cp);
 525
 526        close(cp.in);
 527        return ret;
 528}
 529
 530/**
 531 * Reads the state directory's "rewritten" file, and copies notes from the old
 532 * commits listed in the file to their rewritten commits.
 533 *
 534 * Returns 0 on success, -1 on failure.
 535 */
 536static int copy_notes_for_rebase(const struct am_state *state)
 537{
 538        struct notes_rewrite_cfg *c;
 539        struct strbuf sb = STRBUF_INIT;
 540        const char *invalid_line = _("Malformed input line: '%s'.");
 541        const char *msg = "Notes added by 'git rebase'";
 542        FILE *fp;
 543        int ret = 0;
 544
 545        assert(state->rebasing);
 546
 547        c = init_copy_notes_for_rewrite("rebase");
 548        if (!c)
 549                return 0;
 550
 551        fp = xfopen(am_path(state, "rewritten"), "r");
 552
 553        while (!strbuf_getline(&sb, fp, '\n')) {
 554                unsigned char from_obj[GIT_SHA1_RAWSZ], to_obj[GIT_SHA1_RAWSZ];
 555
 556                if (sb.len != GIT_SHA1_HEXSZ * 2 + 1) {
 557                        ret = error(invalid_line, sb.buf);
 558                        goto finish;
 559                }
 560
 561                if (get_sha1_hex(sb.buf, from_obj)) {
 562                        ret = error(invalid_line, sb.buf);
 563                        goto finish;
 564                }
 565
 566                if (sb.buf[GIT_SHA1_HEXSZ] != ' ') {
 567                        ret = error(invalid_line, sb.buf);
 568                        goto finish;
 569                }
 570
 571                if (get_sha1_hex(sb.buf + GIT_SHA1_HEXSZ + 1, to_obj)) {
 572                        ret = error(invalid_line, sb.buf);
 573                        goto finish;
 574                }
 575
 576                if (copy_note_for_rewrite(c, from_obj, to_obj))
 577                        ret = error(_("Failed to copy notes from '%s' to '%s'"),
 578                                        sha1_to_hex(from_obj), sha1_to_hex(to_obj));
 579        }
 580
 581finish:
 582        finish_copy_notes_for_rewrite(c, msg);
 583        fclose(fp);
 584        strbuf_release(&sb);
 585        return ret;
 586}
 587
 588/**
 589 * Determines if the file looks like a piece of RFC2822 mail by grabbing all
 590 * non-indented lines and checking if they look like they begin with valid
 591 * header field names.
 592 *
 593 * Returns 1 if the file looks like a piece of mail, 0 otherwise.
 594 */
 595static int is_mail(FILE *fp)
 596{
 597        const char *header_regex = "^[!-9;-~]+:";
 598        struct strbuf sb = STRBUF_INIT;
 599        regex_t regex;
 600        int ret = 1;
 601
 602        if (fseek(fp, 0L, SEEK_SET))
 603                die_errno(_("fseek failed"));
 604
 605        if (regcomp(&regex, header_regex, REG_NOSUB | REG_EXTENDED))
 606                die("invalid pattern: %s", header_regex);
 607
 608        while (!strbuf_getline_crlf(&sb, fp)) {
 609                if (!sb.len)
 610                        break; /* End of header */
 611
 612                /* Ignore indented folded lines */
 613                if (*sb.buf == '\t' || *sb.buf == ' ')
 614                        continue;
 615
 616                /* It's a header if it matches header_regex */
 617                if (regexec(&regex, sb.buf, 0, NULL, 0)) {
 618                        ret = 0;
 619                        goto done;
 620                }
 621        }
 622
 623done:
 624        regfree(&regex);
 625        strbuf_release(&sb);
 626        return ret;
 627}
 628
 629/**
 630 * Attempts to detect the patch_format of the patches contained in `paths`,
 631 * returning the PATCH_FORMAT_* enum value. Returns PATCH_FORMAT_UNKNOWN if
 632 * detection fails.
 633 */
 634static int detect_patch_format(const char **paths)
 635{
 636        enum patch_format ret = PATCH_FORMAT_UNKNOWN;
 637        struct strbuf l1 = STRBUF_INIT;
 638        struct strbuf l2 = STRBUF_INIT;
 639        struct strbuf l3 = STRBUF_INIT;
 640        FILE *fp;
 641
 642        /*
 643         * We default to mbox format if input is from stdin and for directories
 644         */
 645        if (!*paths || !strcmp(*paths, "-") || is_directory(*paths))
 646                return PATCH_FORMAT_MBOX;
 647
 648        /*
 649         * Otherwise, check the first few lines of the first patch, starting
 650         * from the first non-blank line, to try to detect its format.
 651         */
 652
 653        fp = xfopen(*paths, "r");
 654
 655        while (!strbuf_getline_crlf(&l1, fp)) {
 656                if (l1.len)
 657                        break;
 658        }
 659
 660        if (starts_with(l1.buf, "From ") || starts_with(l1.buf, "From: ")) {
 661                ret = PATCH_FORMAT_MBOX;
 662                goto done;
 663        }
 664
 665        if (starts_with(l1.buf, "# This series applies on GIT commit")) {
 666                ret = PATCH_FORMAT_STGIT_SERIES;
 667                goto done;
 668        }
 669
 670        if (!strcmp(l1.buf, "# HG changeset patch")) {
 671                ret = PATCH_FORMAT_HG;
 672                goto done;
 673        }
 674
 675        strbuf_reset(&l2);
 676        strbuf_getline_crlf(&l2, fp);
 677        strbuf_reset(&l3);
 678        strbuf_getline_crlf(&l3, fp);
 679
 680        /*
 681         * If the second line is empty and the third is a From, Author or Date
 682         * entry, this is likely an StGit patch.
 683         */
 684        if (l1.len && !l2.len &&
 685                (starts_with(l3.buf, "From:") ||
 686                 starts_with(l3.buf, "Author:") ||
 687                 starts_with(l3.buf, "Date:"))) {
 688                ret = PATCH_FORMAT_STGIT;
 689                goto done;
 690        }
 691
 692        if (l1.len && is_mail(fp)) {
 693                ret = PATCH_FORMAT_MBOX;
 694                goto done;
 695        }
 696
 697done:
 698        fclose(fp);
 699        strbuf_release(&l1);
 700        return ret;
 701}
 702
 703/**
 704 * Splits out individual email patches from `paths`, where each path is either
 705 * a mbox file or a Maildir. Returns 0 on success, -1 on failure.
 706 */
 707static int split_mail_mbox(struct am_state *state, const char **paths, int keep_cr)
 708{
 709        struct child_process cp = CHILD_PROCESS_INIT;
 710        struct strbuf last = STRBUF_INIT;
 711
 712        cp.git_cmd = 1;
 713        argv_array_push(&cp.args, "mailsplit");
 714        argv_array_pushf(&cp.args, "-d%d", state->prec);
 715        argv_array_pushf(&cp.args, "-o%s", state->dir);
 716        argv_array_push(&cp.args, "-b");
 717        if (keep_cr)
 718                argv_array_push(&cp.args, "--keep-cr");
 719        argv_array_push(&cp.args, "--");
 720        argv_array_pushv(&cp.args, paths);
 721
 722        if (capture_command(&cp, &last, 8))
 723                return -1;
 724
 725        state->cur = 1;
 726        state->last = strtol(last.buf, NULL, 10);
 727
 728        return 0;
 729}
 730
 731/**
 732 * Callback signature for split_mail_conv(). The foreign patch should be
 733 * read from `in`, and the converted patch (in RFC2822 mail format) should be
 734 * written to `out`. Return 0 on success, or -1 on failure.
 735 */
 736typedef int (*mail_conv_fn)(FILE *out, FILE *in, int keep_cr);
 737
 738/**
 739 * Calls `fn` for each file in `paths` to convert the foreign patch to the
 740 * RFC2822 mail format suitable for parsing with git-mailinfo.
 741 *
 742 * Returns 0 on success, -1 on failure.
 743 */
 744static int split_mail_conv(mail_conv_fn fn, struct am_state *state,
 745                        const char **paths, int keep_cr)
 746{
 747        static const char *stdin_only[] = {"-", NULL};
 748        int i;
 749
 750        if (!*paths)
 751                paths = stdin_only;
 752
 753        for (i = 0; *paths; paths++, i++) {
 754                FILE *in, *out;
 755                const char *mail;
 756                int ret;
 757
 758                if (!strcmp(*paths, "-"))
 759                        in = stdin;
 760                else
 761                        in = fopen(*paths, "r");
 762
 763                if (!in)
 764                        return error(_("could not open '%s' for reading: %s"),
 765                                        *paths, strerror(errno));
 766
 767                mail = mkpath("%s/%0*d", state->dir, state->prec, i + 1);
 768
 769                out = fopen(mail, "w");
 770                if (!out)
 771                        return error(_("could not open '%s' for writing: %s"),
 772                                        mail, strerror(errno));
 773
 774                ret = fn(out, in, keep_cr);
 775
 776                fclose(out);
 777                fclose(in);
 778
 779                if (ret)
 780                        return error(_("could not parse patch '%s'"), *paths);
 781        }
 782
 783        state->cur = 1;
 784        state->last = i;
 785        return 0;
 786}
 787
 788/**
 789 * A split_mail_conv() callback that converts an StGit patch to an RFC2822
 790 * message suitable for parsing with git-mailinfo.
 791 */
 792static int stgit_patch_to_mail(FILE *out, FILE *in, int keep_cr)
 793{
 794        struct strbuf sb = STRBUF_INIT;
 795        int subject_printed = 0;
 796
 797        while (!strbuf_getline(&sb, in, '\n')) {
 798                const char *str;
 799
 800                if (str_isspace(sb.buf))
 801                        continue;
 802                else if (skip_prefix(sb.buf, "Author:", &str))
 803                        fprintf(out, "From:%s\n", str);
 804                else if (starts_with(sb.buf, "From") || starts_with(sb.buf, "Date"))
 805                        fprintf(out, "%s\n", sb.buf);
 806                else if (!subject_printed) {
 807                        fprintf(out, "Subject: %s\n", sb.buf);
 808                        subject_printed = 1;
 809                } else {
 810                        fprintf(out, "\n%s\n", sb.buf);
 811                        break;
 812                }
 813        }
 814
 815        strbuf_reset(&sb);
 816        while (strbuf_fread(&sb, 8192, in) > 0) {
 817                fwrite(sb.buf, 1, sb.len, out);
 818                strbuf_reset(&sb);
 819        }
 820
 821        strbuf_release(&sb);
 822        return 0;
 823}
 824
 825/**
 826 * This function only supports a single StGit series file in `paths`.
 827 *
 828 * Given an StGit series file, converts the StGit patches in the series into
 829 * RFC2822 messages suitable for parsing with git-mailinfo, and queues them in
 830 * the state directory.
 831 *
 832 * Returns 0 on success, -1 on failure.
 833 */
 834static int split_mail_stgit_series(struct am_state *state, const char **paths,
 835                                        int keep_cr)
 836{
 837        const char *series_dir;
 838        char *series_dir_buf;
 839        FILE *fp;
 840        struct argv_array patches = ARGV_ARRAY_INIT;
 841        struct strbuf sb = STRBUF_INIT;
 842        int ret;
 843
 844        if (!paths[0] || paths[1])
 845                return error(_("Only one StGIT patch series can be applied at once"));
 846
 847        series_dir_buf = xstrdup(*paths);
 848        series_dir = dirname(series_dir_buf);
 849
 850        fp = fopen(*paths, "r");
 851        if (!fp)
 852                return error(_("could not open '%s' for reading: %s"), *paths,
 853                                strerror(errno));
 854
 855        while (!strbuf_getline(&sb, fp, '\n')) {
 856                if (*sb.buf == '#')
 857                        continue; /* skip comment lines */
 858
 859                argv_array_push(&patches, mkpath("%s/%s", series_dir, sb.buf));
 860        }
 861
 862        fclose(fp);
 863        strbuf_release(&sb);
 864        free(series_dir_buf);
 865
 866        ret = split_mail_conv(stgit_patch_to_mail, state, patches.argv, keep_cr);
 867
 868        argv_array_clear(&patches);
 869        return ret;
 870}
 871
 872/**
 873 * A split_patches_conv() callback that converts a mercurial patch to a RFC2822
 874 * message suitable for parsing with git-mailinfo.
 875 */
 876static int hg_patch_to_mail(FILE *out, FILE *in, int keep_cr)
 877{
 878        struct strbuf sb = STRBUF_INIT;
 879
 880        while (!strbuf_getline(&sb, in, '\n')) {
 881                const char *str;
 882
 883                if (skip_prefix(sb.buf, "# User ", &str))
 884                        fprintf(out, "From: %s\n", str);
 885                else if (skip_prefix(sb.buf, "# Date ", &str)) {
 886                        unsigned long timestamp;
 887                        long tz, tz2;
 888                        char *end;
 889
 890                        errno = 0;
 891                        timestamp = strtoul(str, &end, 10);
 892                        if (errno)
 893                                return error(_("invalid timestamp"));
 894
 895                        if (!skip_prefix(end, " ", &str))
 896                                return error(_("invalid Date line"));
 897
 898                        errno = 0;
 899                        tz = strtol(str, &end, 10);
 900                        if (errno)
 901                                return error(_("invalid timezone offset"));
 902
 903                        if (*end)
 904                                return error(_("invalid Date line"));
 905
 906                        /*
 907                         * mercurial's timezone is in seconds west of UTC,
 908                         * however git's timezone is in hours + minutes east of
 909                         * UTC. Convert it.
 910                         */
 911                        tz2 = labs(tz) / 3600 * 100 + labs(tz) % 3600 / 60;
 912                        if (tz > 0)
 913                                tz2 = -tz2;
 914
 915                        fprintf(out, "Date: %s\n", show_date(timestamp, tz2, DATE_MODE(RFC2822)));
 916                } else if (starts_with(sb.buf, "# ")) {
 917                        continue;
 918                } else {
 919                        fprintf(out, "\n%s\n", sb.buf);
 920                        break;
 921                }
 922        }
 923
 924        strbuf_reset(&sb);
 925        while (strbuf_fread(&sb, 8192, in) > 0) {
 926                fwrite(sb.buf, 1, sb.len, out);
 927                strbuf_reset(&sb);
 928        }
 929
 930        strbuf_release(&sb);
 931        return 0;
 932}
 933
 934/**
 935 * Splits a list of files/directories into individual email patches. Each path
 936 * in `paths` must be a file/directory that is formatted according to
 937 * `patch_format`.
 938 *
 939 * Once split out, the individual email patches will be stored in the state
 940 * directory, with each patch's filename being its index, padded to state->prec
 941 * digits.
 942 *
 943 * state->cur will be set to the index of the first mail, and state->last will
 944 * be set to the index of the last mail.
 945 *
 946 * Set keep_cr to 0 to convert all lines ending with \r\n to end with \n, 1
 947 * to disable this behavior, -1 to use the default configured setting.
 948 *
 949 * Returns 0 on success, -1 on failure.
 950 */
 951static int split_mail(struct am_state *state, enum patch_format patch_format,
 952                        const char **paths, int keep_cr)
 953{
 954        if (keep_cr < 0) {
 955                keep_cr = 0;
 956                git_config_get_bool("am.keepcr", &keep_cr);
 957        }
 958
 959        switch (patch_format) {
 960        case PATCH_FORMAT_MBOX:
 961                return split_mail_mbox(state, paths, keep_cr);
 962        case PATCH_FORMAT_STGIT:
 963                return split_mail_conv(stgit_patch_to_mail, state, paths, keep_cr);
 964        case PATCH_FORMAT_STGIT_SERIES:
 965                return split_mail_stgit_series(state, paths, keep_cr);
 966        case PATCH_FORMAT_HG:
 967                return split_mail_conv(hg_patch_to_mail, state, paths, keep_cr);
 968        default:
 969                die("BUG: invalid patch_format");
 970        }
 971        return -1;
 972}
 973
 974/**
 975 * Setup a new am session for applying patches
 976 */
 977static void am_setup(struct am_state *state, enum patch_format patch_format,
 978                        const char **paths, int keep_cr)
 979{
 980        unsigned char curr_head[GIT_SHA1_RAWSZ];
 981        const char *str;
 982        struct strbuf sb = STRBUF_INIT;
 983
 984        if (!patch_format)
 985                patch_format = detect_patch_format(paths);
 986
 987        if (!patch_format) {
 988                fprintf_ln(stderr, _("Patch format detection failed."));
 989                exit(128);
 990        }
 991
 992        if (mkdir(state->dir, 0777) < 0 && errno != EEXIST)
 993                die_errno(_("failed to create directory '%s'"), state->dir);
 994
 995        if (split_mail(state, patch_format, paths, keep_cr) < 0) {
 996                am_destroy(state);
 997                die(_("Failed to split patches."));
 998        }
 999
1000        if (state->rebasing)
1001                state->threeway = 1;
1002
1003        write_file(am_path(state, "threeway"), 1, state->threeway ? "t" : "f");
1004
1005        write_file(am_path(state, "quiet"), 1, state->quiet ? "t" : "f");
1006
1007        write_file(am_path(state, "sign"), 1, state->signoff ? "t" : "f");
1008
1009        write_file(am_path(state, "utf8"), 1, state->utf8 ? "t" : "f");
1010
1011        switch (state->keep) {
1012        case KEEP_FALSE:
1013                str = "f";
1014                break;
1015        case KEEP_TRUE:
1016                str = "t";
1017                break;
1018        case KEEP_NON_PATCH:
1019                str = "b";
1020                break;
1021        default:
1022                die("BUG: invalid value for state->keep");
1023        }
1024
1025        write_file(am_path(state, "keep"), 1, "%s", str);
1026
1027        write_file(am_path(state, "messageid"), 1, state->message_id ? "t" : "f");
1028
1029        switch (state->scissors) {
1030        case SCISSORS_UNSET:
1031                str = "";
1032                break;
1033        case SCISSORS_FALSE:
1034                str = "f";
1035                break;
1036        case SCISSORS_TRUE:
1037                str = "t";
1038                break;
1039        default:
1040                die("BUG: invalid value for state->scissors");
1041        }
1042
1043        write_file(am_path(state, "scissors"), 1, "%s", str);
1044
1045        sq_quote_argv(&sb, state->git_apply_opts.argv, 0);
1046        write_file(am_path(state, "apply-opt"), 1, "%s", sb.buf);
1047
1048        if (state->rebasing)
1049                write_file(am_path(state, "rebasing"), 1, "%s", "");
1050        else
1051                write_file(am_path(state, "applying"), 1, "%s", "");
1052
1053        if (!get_sha1("HEAD", curr_head)) {
1054                write_file(am_path(state, "abort-safety"), 1, "%s", sha1_to_hex(curr_head));
1055                if (!state->rebasing)
1056                        update_ref("am", "ORIG_HEAD", curr_head, NULL, 0,
1057                                        UPDATE_REFS_DIE_ON_ERR);
1058        } else {
1059                write_file(am_path(state, "abort-safety"), 1, "%s", "");
1060                if (!state->rebasing)
1061                        delete_ref("ORIG_HEAD", NULL, 0);
1062        }
1063
1064        /*
1065         * NOTE: Since the "next" and "last" files determine if an am_state
1066         * session is in progress, they should be written last.
1067         */
1068
1069        write_file(am_path(state, "next"), 1, "%d", state->cur);
1070
1071        write_file(am_path(state, "last"), 1, "%d", state->last);
1072
1073        strbuf_release(&sb);
1074}
1075
1076/**
1077 * Increments the patch pointer, and cleans am_state for the application of the
1078 * next patch.
1079 */
1080static void am_next(struct am_state *state)
1081{
1082        unsigned char head[GIT_SHA1_RAWSZ];
1083
1084        free(state->author_name);
1085        state->author_name = NULL;
1086
1087        free(state->author_email);
1088        state->author_email = NULL;
1089
1090        free(state->author_date);
1091        state->author_date = NULL;
1092
1093        free(state->msg);
1094        state->msg = NULL;
1095        state->msg_len = 0;
1096
1097        unlink(am_path(state, "author-script"));
1098        unlink(am_path(state, "final-commit"));
1099
1100        hashclr(state->orig_commit);
1101        unlink(am_path(state, "original-commit"));
1102
1103        if (!get_sha1("HEAD", head))
1104                write_file(am_path(state, "abort-safety"), 1, "%s", sha1_to_hex(head));
1105        else
1106                write_file(am_path(state, "abort-safety"), 1, "%s", "");
1107
1108        state->cur++;
1109        write_file(am_path(state, "next"), 1, "%d", state->cur);
1110}
1111
1112/**
1113 * Returns the filename of the current patch email.
1114 */
1115static const char *msgnum(const struct am_state *state)
1116{
1117        static struct strbuf sb = STRBUF_INIT;
1118
1119        strbuf_reset(&sb);
1120        strbuf_addf(&sb, "%0*d", state->prec, state->cur);
1121
1122        return sb.buf;
1123}
1124
1125/**
1126 * Refresh and write index.
1127 */
1128static void refresh_and_write_cache(void)
1129{
1130        struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
1131
1132        hold_locked_index(lock_file, 1);
1133        refresh_cache(REFRESH_QUIET);
1134        if (write_locked_index(&the_index, lock_file, COMMIT_LOCK))
1135                die(_("unable to write index file"));
1136}
1137
1138/**
1139 * Returns 1 if the index differs from HEAD, 0 otherwise. When on an unborn
1140 * branch, returns 1 if there are entries in the index, 0 otherwise. If an
1141 * strbuf is provided, the space-separated list of files that differ will be
1142 * appended to it.
1143 */
1144static int index_has_changes(struct strbuf *sb)
1145{
1146        unsigned char head[GIT_SHA1_RAWSZ];
1147        int i;
1148
1149        if (!get_sha1_tree("HEAD", head)) {
1150                struct diff_options opt;
1151
1152                diff_setup(&opt);
1153                DIFF_OPT_SET(&opt, EXIT_WITH_STATUS);
1154                if (!sb)
1155                        DIFF_OPT_SET(&opt, QUICK);
1156                do_diff_cache(head, &opt);
1157                diffcore_std(&opt);
1158                for (i = 0; sb && i < diff_queued_diff.nr; i++) {
1159                        if (i)
1160                                strbuf_addch(sb, ' ');
1161                        strbuf_addstr(sb, diff_queued_diff.queue[i]->two->path);
1162                }
1163                diff_flush(&opt);
1164                return DIFF_OPT_TST(&opt, HAS_CHANGES) != 0;
1165        } else {
1166                for (i = 0; sb && i < active_nr; i++) {
1167                        if (i)
1168                                strbuf_addch(sb, ' ');
1169                        strbuf_addstr(sb, active_cache[i]->name);
1170                }
1171                return !!active_nr;
1172        }
1173}
1174
1175/**
1176 * Dies with a user-friendly message on how to proceed after resolving the
1177 * problem. This message can be overridden with state->resolvemsg.
1178 */
1179static void NORETURN die_user_resolve(const struct am_state *state)
1180{
1181        if (state->resolvemsg) {
1182                printf_ln("%s", state->resolvemsg);
1183        } else {
1184                const char *cmdline = state->interactive ? "git am -i" : "git am";
1185
1186                printf_ln(_("When you have resolved this problem, run \"%s --continue\"."), cmdline);
1187                printf_ln(_("If you prefer to skip this patch, run \"%s --skip\" instead."), cmdline);
1188                printf_ln(_("To restore the original branch and stop patching, run \"%s --abort\"."), cmdline);
1189        }
1190
1191        exit(128);
1192}
1193
1194static void am_signoff(struct strbuf *sb)
1195{
1196        char *cp;
1197        struct strbuf mine = STRBUF_INIT;
1198
1199        /* Does it end with our own sign-off? */
1200        strbuf_addf(&mine, "\n%s%s\n",
1201                    sign_off_header,
1202                    fmt_name(getenv("GIT_COMMITTER_NAME"),
1203                             getenv("GIT_COMMITTER_EMAIL")));
1204        if (mine.len < sb->len &&
1205            !strcmp(mine.buf, sb->buf + sb->len - mine.len))
1206                goto exit; /* no need to duplicate */
1207
1208        /* Does it have any Signed-off-by: in the text */
1209        for (cp = sb->buf;
1210             cp && *cp && (cp = strstr(cp, sign_off_header)) != NULL;
1211             cp = strchr(cp, '\n')) {
1212                if (sb->buf == cp || cp[-1] == '\n')
1213                        break;
1214        }
1215
1216        strbuf_addstr(sb, mine.buf + !!cp);
1217exit:
1218        strbuf_release(&mine);
1219}
1220
1221/**
1222 * Appends signoff to the "msg" field of the am_state.
1223 */
1224static void am_append_signoff(struct am_state *state)
1225{
1226        struct strbuf sb = STRBUF_INIT;
1227
1228        strbuf_attach(&sb, state->msg, state->msg_len, state->msg_len);
1229        am_signoff(&sb);
1230        state->msg = strbuf_detach(&sb, &state->msg_len);
1231}
1232
1233/**
1234 * Parses `mail` using git-mailinfo, extracting its patch and authorship info.
1235 * state->msg will be set to the patch message. state->author_name,
1236 * state->author_email and state->author_date will be set to the patch author's
1237 * name, email and date respectively. The patch body will be written to the
1238 * state directory's "patch" file.
1239 *
1240 * Returns 1 if the patch should be skipped, 0 otherwise.
1241 */
1242static int parse_mail(struct am_state *state, const char *mail)
1243{
1244        FILE *fp;
1245        struct child_process cp = CHILD_PROCESS_INIT;
1246        struct strbuf sb = STRBUF_INIT;
1247        struct strbuf msg = STRBUF_INIT;
1248        struct strbuf author_name = STRBUF_INIT;
1249        struct strbuf author_date = STRBUF_INIT;
1250        struct strbuf author_email = STRBUF_INIT;
1251        int ret = 0;
1252
1253        cp.git_cmd = 1;
1254        cp.in = xopen(mail, O_RDONLY, 0);
1255        cp.out = xopen(am_path(state, "info"), O_WRONLY | O_CREAT, 0777);
1256
1257        argv_array_push(&cp.args, "mailinfo");
1258        argv_array_push(&cp.args, state->utf8 ? "-u" : "-n");
1259
1260        switch (state->keep) {
1261        case KEEP_FALSE:
1262                break;
1263        case KEEP_TRUE:
1264                argv_array_push(&cp.args, "-k");
1265                break;
1266        case KEEP_NON_PATCH:
1267                argv_array_push(&cp.args, "-b");
1268                break;
1269        default:
1270                die("BUG: invalid value for state->keep");
1271        }
1272
1273        if (state->message_id)
1274                argv_array_push(&cp.args, "-m");
1275
1276        switch (state->scissors) {
1277        case SCISSORS_UNSET:
1278                break;
1279        case SCISSORS_FALSE:
1280                argv_array_push(&cp.args, "--no-scissors");
1281                break;
1282        case SCISSORS_TRUE:
1283                argv_array_push(&cp.args, "--scissors");
1284                break;
1285        default:
1286                die("BUG: invalid value for state->scissors");
1287        }
1288
1289        argv_array_push(&cp.args, am_path(state, "msg"));
1290        argv_array_push(&cp.args, am_path(state, "patch"));
1291
1292        if (run_command(&cp) < 0)
1293                die("could not parse patch");
1294
1295        close(cp.in);
1296        close(cp.out);
1297
1298        /* Extract message and author information */
1299        fp = xfopen(am_path(state, "info"), "r");
1300        while (!strbuf_getline(&sb, fp, '\n')) {
1301                const char *x;
1302
1303                if (skip_prefix(sb.buf, "Subject: ", &x)) {
1304                        if (msg.len)
1305                                strbuf_addch(&msg, '\n');
1306                        strbuf_addstr(&msg, x);
1307                } else if (skip_prefix(sb.buf, "Author: ", &x))
1308                        strbuf_addstr(&author_name, x);
1309                else if (skip_prefix(sb.buf, "Email: ", &x))
1310                        strbuf_addstr(&author_email, x);
1311                else if (skip_prefix(sb.buf, "Date: ", &x))
1312                        strbuf_addstr(&author_date, x);
1313        }
1314        fclose(fp);
1315
1316        /* Skip pine's internal folder data */
1317        if (!strcmp(author_name.buf, "Mail System Internal Data")) {
1318                ret = 1;
1319                goto finish;
1320        }
1321
1322        if (is_empty_file(am_path(state, "patch"))) {
1323                printf_ln(_("Patch is empty. Was it split wrong?"));
1324                die_user_resolve(state);
1325        }
1326
1327        strbuf_addstr(&msg, "\n\n");
1328        if (strbuf_read_file(&msg, am_path(state, "msg"), 0) < 0)
1329                die_errno(_("could not read '%s'"), am_path(state, "msg"));
1330        stripspace(&msg, 0);
1331
1332        if (state->signoff)
1333                am_signoff(&msg);
1334
1335        assert(!state->author_name);
1336        state->author_name = strbuf_detach(&author_name, NULL);
1337
1338        assert(!state->author_email);
1339        state->author_email = strbuf_detach(&author_email, NULL);
1340
1341        assert(!state->author_date);
1342        state->author_date = strbuf_detach(&author_date, NULL);
1343
1344        assert(!state->msg);
1345        state->msg = strbuf_detach(&msg, &state->msg_len);
1346
1347finish:
1348        strbuf_release(&msg);
1349        strbuf_release(&author_date);
1350        strbuf_release(&author_email);
1351        strbuf_release(&author_name);
1352        strbuf_release(&sb);
1353        return ret;
1354}
1355
1356/**
1357 * Sets commit_id to the commit hash where the mail was generated from.
1358 * Returns 0 on success, -1 on failure.
1359 */
1360static int get_mail_commit_sha1(unsigned char *commit_id, const char *mail)
1361{
1362        struct strbuf sb = STRBUF_INIT;
1363        FILE *fp = xfopen(mail, "r");
1364        const char *x;
1365
1366        if (strbuf_getline(&sb, fp, '\n'))
1367                return -1;
1368
1369        if (!skip_prefix(sb.buf, "From ", &x))
1370                return -1;
1371
1372        if (get_sha1_hex(x, commit_id) < 0)
1373                return -1;
1374
1375        strbuf_release(&sb);
1376        fclose(fp);
1377        return 0;
1378}
1379
1380/**
1381 * Sets state->msg, state->author_name, state->author_email, state->author_date
1382 * to the commit's respective info.
1383 */
1384static void get_commit_info(struct am_state *state, struct commit *commit)
1385{
1386        const char *buffer, *ident_line, *author_date, *msg;
1387        size_t ident_len;
1388        struct ident_split ident_split;
1389        struct strbuf sb = STRBUF_INIT;
1390
1391        buffer = logmsg_reencode(commit, NULL, get_commit_output_encoding());
1392
1393        ident_line = find_commit_header(buffer, "author", &ident_len);
1394
1395        if (split_ident_line(&ident_split, ident_line, ident_len) < 0) {
1396                strbuf_add(&sb, ident_line, ident_len);
1397                die(_("invalid ident line: %s"), sb.buf);
1398        }
1399
1400        assert(!state->author_name);
1401        if (ident_split.name_begin) {
1402                strbuf_add(&sb, ident_split.name_begin,
1403                        ident_split.name_end - ident_split.name_begin);
1404                state->author_name = strbuf_detach(&sb, NULL);
1405        } else
1406                state->author_name = xstrdup("");
1407
1408        assert(!state->author_email);
1409        if (ident_split.mail_begin) {
1410                strbuf_add(&sb, ident_split.mail_begin,
1411                        ident_split.mail_end - ident_split.mail_begin);
1412                state->author_email = strbuf_detach(&sb, NULL);
1413        } else
1414                state->author_email = xstrdup("");
1415
1416        author_date = show_ident_date(&ident_split, DATE_MODE(NORMAL));
1417        strbuf_addstr(&sb, author_date);
1418        assert(!state->author_date);
1419        state->author_date = strbuf_detach(&sb, NULL);
1420
1421        assert(!state->msg);
1422        msg = strstr(buffer, "\n\n");
1423        if (!msg)
1424                die(_("unable to parse commit %s"), sha1_to_hex(commit->object.sha1));
1425        state->msg = xstrdup(msg + 2);
1426        state->msg_len = strlen(state->msg);
1427}
1428
1429/**
1430 * Writes `commit` as a patch to the state directory's "patch" file.
1431 */
1432static void write_commit_patch(const struct am_state *state, struct commit *commit)
1433{
1434        struct rev_info rev_info;
1435        FILE *fp;
1436
1437        fp = xfopen(am_path(state, "patch"), "w");
1438        init_revisions(&rev_info, NULL);
1439        rev_info.diff = 1;
1440        rev_info.abbrev = 0;
1441        rev_info.disable_stdin = 1;
1442        rev_info.show_root_diff = 1;
1443        rev_info.diffopt.output_format = DIFF_FORMAT_PATCH;
1444        rev_info.no_commit_id = 1;
1445        DIFF_OPT_SET(&rev_info.diffopt, BINARY);
1446        DIFF_OPT_SET(&rev_info.diffopt, FULL_INDEX);
1447        rev_info.diffopt.use_color = 0;
1448        rev_info.diffopt.file = fp;
1449        rev_info.diffopt.close_file = 1;
1450        add_pending_object(&rev_info, &commit->object, "");
1451        diff_setup_done(&rev_info.diffopt);
1452        log_tree_commit(&rev_info, commit);
1453}
1454
1455/**
1456 * Writes the diff of the index against HEAD as a patch to the state
1457 * directory's "patch" file.
1458 */
1459static void write_index_patch(const struct am_state *state)
1460{
1461        struct tree *tree;
1462        unsigned char head[GIT_SHA1_RAWSZ];
1463        struct rev_info rev_info;
1464        FILE *fp;
1465
1466        if (!get_sha1_tree("HEAD", head))
1467                tree = lookup_tree(head);
1468        else
1469                tree = lookup_tree(EMPTY_TREE_SHA1_BIN);
1470
1471        fp = xfopen(am_path(state, "patch"), "w");
1472        init_revisions(&rev_info, NULL);
1473        rev_info.diff = 1;
1474        rev_info.disable_stdin = 1;
1475        rev_info.no_commit_id = 1;
1476        rev_info.diffopt.output_format = DIFF_FORMAT_PATCH;
1477        rev_info.diffopt.use_color = 0;
1478        rev_info.diffopt.file = fp;
1479        rev_info.diffopt.close_file = 1;
1480        add_pending_object(&rev_info, &tree->object, "");
1481        diff_setup_done(&rev_info.diffopt);
1482        run_diff_index(&rev_info, 1);
1483}
1484
1485/**
1486 * Like parse_mail(), but parses the mail by looking up its commit ID
1487 * directly. This is used in --rebasing mode to bypass git-mailinfo's munging
1488 * of patches.
1489 *
1490 * state->orig_commit will be set to the original commit ID.
1491 *
1492 * Will always return 0 as the patch should never be skipped.
1493 */
1494static int parse_mail_rebase(struct am_state *state, const char *mail)
1495{
1496        struct commit *commit;
1497        unsigned char commit_sha1[GIT_SHA1_RAWSZ];
1498
1499        if (get_mail_commit_sha1(commit_sha1, mail) < 0)
1500                die(_("could not parse %s"), mail);
1501
1502        commit = lookup_commit_or_die(commit_sha1, mail);
1503
1504        get_commit_info(state, commit);
1505
1506        write_commit_patch(state, commit);
1507
1508        hashcpy(state->orig_commit, commit_sha1);
1509        write_file(am_path(state, "original-commit"), 1, "%s",
1510                        sha1_to_hex(commit_sha1));
1511
1512        return 0;
1513}
1514
1515/**
1516 * Applies current patch with git-apply. Returns 0 on success, -1 otherwise. If
1517 * `index_file` is not NULL, the patch will be applied to that index.
1518 */
1519static int run_apply(const struct am_state *state, const char *index_file)
1520{
1521        struct child_process cp = CHILD_PROCESS_INIT;
1522
1523        cp.git_cmd = 1;
1524
1525        if (index_file)
1526                argv_array_pushf(&cp.env_array, "GIT_INDEX_FILE=%s", index_file);
1527
1528        /*
1529         * If we are allowed to fall back on 3-way merge, don't give false
1530         * errors during the initial attempt.
1531         */
1532        if (state->threeway && !index_file) {
1533                cp.no_stdout = 1;
1534                cp.no_stderr = 1;
1535        }
1536
1537        argv_array_push(&cp.args, "apply");
1538
1539        argv_array_pushv(&cp.args, state->git_apply_opts.argv);
1540
1541        if (index_file)
1542                argv_array_push(&cp.args, "--cached");
1543        else
1544                argv_array_push(&cp.args, "--index");
1545
1546        argv_array_push(&cp.args, am_path(state, "patch"));
1547
1548        if (run_command(&cp))
1549                return -1;
1550
1551        /* Reload index as git-apply will have modified it. */
1552        discard_cache();
1553        read_cache_from(index_file ? index_file : get_index_file());
1554
1555        return 0;
1556}
1557
1558/**
1559 * Builds an index that contains just the blobs needed for a 3way merge.
1560 */
1561static int build_fake_ancestor(const struct am_state *state, const char *index_file)
1562{
1563        struct child_process cp = CHILD_PROCESS_INIT;
1564
1565        cp.git_cmd = 1;
1566        argv_array_push(&cp.args, "apply");
1567        argv_array_pushv(&cp.args, state->git_apply_opts.argv);
1568        argv_array_pushf(&cp.args, "--build-fake-ancestor=%s", index_file);
1569        argv_array_push(&cp.args, am_path(state, "patch"));
1570
1571        if (run_command(&cp))
1572                return -1;
1573
1574        return 0;
1575}
1576
1577/**
1578 * Attempt a threeway merge, using index_path as the temporary index.
1579 */
1580static int fall_back_threeway(const struct am_state *state, const char *index_path)
1581{
1582        unsigned char orig_tree[GIT_SHA1_RAWSZ], his_tree[GIT_SHA1_RAWSZ],
1583                      our_tree[GIT_SHA1_RAWSZ];
1584        const unsigned char *bases[1] = {orig_tree};
1585        struct merge_options o;
1586        struct commit *result;
1587        char *his_tree_name;
1588
1589        if (get_sha1("HEAD", our_tree) < 0)
1590                hashcpy(our_tree, EMPTY_TREE_SHA1_BIN);
1591
1592        if (build_fake_ancestor(state, index_path))
1593                return error("could not build fake ancestor");
1594
1595        discard_cache();
1596        read_cache_from(index_path);
1597
1598        if (write_index_as_tree(orig_tree, &the_index, index_path, 0, NULL))
1599                return error(_("Repository lacks necessary blobs to fall back on 3-way merge."));
1600
1601        say(state, stdout, _("Using index info to reconstruct a base tree..."));
1602
1603        if (!state->quiet) {
1604                /*
1605                 * List paths that needed 3-way fallback, so that the user can
1606                 * review them with extra care to spot mismerges.
1607                 */
1608                struct rev_info rev_info;
1609                const char *diff_filter_str = "--diff-filter=AM";
1610
1611                init_revisions(&rev_info, NULL);
1612                rev_info.diffopt.output_format = DIFF_FORMAT_NAME_STATUS;
1613                diff_opt_parse(&rev_info.diffopt, &diff_filter_str, 1);
1614                add_pending_sha1(&rev_info, "HEAD", our_tree, 0);
1615                diff_setup_done(&rev_info.diffopt);
1616                run_diff_index(&rev_info, 1);
1617        }
1618
1619        if (run_apply(state, index_path))
1620                return error(_("Did you hand edit your patch?\n"
1621                                "It does not apply to blobs recorded in its index."));
1622
1623        if (write_index_as_tree(his_tree, &the_index, index_path, 0, NULL))
1624                return error("could not write tree");
1625
1626        say(state, stdout, _("Falling back to patching base and 3-way merge..."));
1627
1628        discard_cache();
1629        read_cache();
1630
1631        /*
1632         * This is not so wrong. Depending on which base we picked, orig_tree
1633         * may be wildly different from ours, but his_tree has the same set of
1634         * wildly different changes in parts the patch did not touch, so
1635         * recursive ends up canceling them, saying that we reverted all those
1636         * changes.
1637         */
1638
1639        init_merge_options(&o);
1640
1641        o.branch1 = "HEAD";
1642        his_tree_name = xstrfmt("%.*s", linelen(state->msg), state->msg);
1643        o.branch2 = his_tree_name;
1644
1645        if (state->quiet)
1646                o.verbosity = 0;
1647
1648        if (merge_recursive_generic(&o, our_tree, his_tree, 1, bases, &result)) {
1649                rerere(state->allow_rerere_autoupdate);
1650                free(his_tree_name);
1651                return error(_("Failed to merge in the changes."));
1652        }
1653
1654        free(his_tree_name);
1655        return 0;
1656}
1657
1658/**
1659 * Commits the current index with state->msg as the commit message and
1660 * state->author_name, state->author_email and state->author_date as the author
1661 * information.
1662 */
1663static void do_commit(const struct am_state *state)
1664{
1665        unsigned char tree[GIT_SHA1_RAWSZ], parent[GIT_SHA1_RAWSZ],
1666                      commit[GIT_SHA1_RAWSZ];
1667        unsigned char *ptr;
1668        struct commit_list *parents = NULL;
1669        const char *reflog_msg, *author;
1670        struct strbuf sb = STRBUF_INIT;
1671
1672        if (run_hook_le(NULL, "pre-applypatch", NULL))
1673                exit(1);
1674
1675        if (write_cache_as_tree(tree, 0, NULL))
1676                die(_("git write-tree failed to write a tree"));
1677
1678        if (!get_sha1_commit("HEAD", parent)) {
1679                ptr = parent;
1680                commit_list_insert(lookup_commit(parent), &parents);
1681        } else {
1682                ptr = NULL;
1683                say(state, stderr, _("applying to an empty history"));
1684        }
1685
1686        author = fmt_ident(state->author_name, state->author_email,
1687                        state->ignore_date ? NULL : state->author_date,
1688                        IDENT_STRICT);
1689
1690        if (state->committer_date_is_author_date)
1691                setenv("GIT_COMMITTER_DATE",
1692                        state->ignore_date ? "" : state->author_date, 1);
1693
1694        if (commit_tree(state->msg, state->msg_len, tree, parents, commit,
1695                                author, state->sign_commit))
1696                die(_("failed to write commit object"));
1697
1698        reflog_msg = getenv("GIT_REFLOG_ACTION");
1699        if (!reflog_msg)
1700                reflog_msg = "am";
1701
1702        strbuf_addf(&sb, "%s: %.*s", reflog_msg, linelen(state->msg),
1703                        state->msg);
1704
1705        update_ref(sb.buf, "HEAD", commit, ptr, 0, UPDATE_REFS_DIE_ON_ERR);
1706
1707        if (state->rebasing) {
1708                FILE *fp = xfopen(am_path(state, "rewritten"), "a");
1709
1710                assert(!is_null_sha1(state->orig_commit));
1711                fprintf(fp, "%s ", sha1_to_hex(state->orig_commit));
1712                fprintf(fp, "%s\n", sha1_to_hex(commit));
1713                fclose(fp);
1714        }
1715
1716        run_hook_le(NULL, "post-applypatch", NULL);
1717
1718        strbuf_release(&sb);
1719}
1720
1721/**
1722 * Validates the am_state for resuming -- the "msg" and authorship fields must
1723 * be filled up.
1724 */
1725static void validate_resume_state(const struct am_state *state)
1726{
1727        if (!state->msg)
1728                die(_("cannot resume: %s does not exist."),
1729                        am_path(state, "final-commit"));
1730
1731        if (!state->author_name || !state->author_email || !state->author_date)
1732                die(_("cannot resume: %s does not exist."),
1733                        am_path(state, "author-script"));
1734}
1735
1736/**
1737 * Interactively prompt the user on whether the current patch should be
1738 * applied.
1739 *
1740 * Returns 0 if the user chooses to apply the patch, 1 if the user chooses to
1741 * skip it.
1742 */
1743static int do_interactive(struct am_state *state)
1744{
1745        assert(state->msg);
1746
1747        if (!isatty(0))
1748                die(_("cannot be interactive without stdin connected to a terminal."));
1749
1750        for (;;) {
1751                const char *reply;
1752
1753                puts(_("Commit Body is:"));
1754                puts("--------------------------");
1755                printf("%s", state->msg);
1756                puts("--------------------------");
1757
1758                /*
1759                 * TRANSLATORS: Make sure to include [y], [n], [e], [v] and [a]
1760                 * in your translation. The program will only accept English
1761                 * input at this point.
1762                 */
1763                reply = git_prompt(_("Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all: "), PROMPT_ECHO);
1764
1765                if (!reply) {
1766                        continue;
1767                } else if (*reply == 'y' || *reply == 'Y') {
1768                        return 0;
1769                } else if (*reply == 'a' || *reply == 'A') {
1770                        state->interactive = 0;
1771                        return 0;
1772                } else if (*reply == 'n' || *reply == 'N') {
1773                        return 1;
1774                } else if (*reply == 'e' || *reply == 'E') {
1775                        struct strbuf msg = STRBUF_INIT;
1776
1777                        if (!launch_editor(am_path(state, "final-commit"), &msg, NULL)) {
1778                                free(state->msg);
1779                                state->msg = strbuf_detach(&msg, &state->msg_len);
1780                        }
1781                        strbuf_release(&msg);
1782                } else if (*reply == 'v' || *reply == 'V') {
1783                        const char *pager = git_pager(1);
1784                        struct child_process cp = CHILD_PROCESS_INIT;
1785
1786                        if (!pager)
1787                                pager = "cat";
1788                        argv_array_push(&cp.args, pager);
1789                        argv_array_push(&cp.args, am_path(state, "patch"));
1790                        run_command(&cp);
1791                }
1792        }
1793}
1794
1795/**
1796 * Applies all queued mail.
1797 *
1798 * If `resume` is true, we are "resuming". The "msg" and authorship fields, as
1799 * well as the state directory's "patch" file is used as-is for applying the
1800 * patch and committing it.
1801 */
1802static void am_run(struct am_state *state, int resume)
1803{
1804        const char *argv_gc_auto[] = {"gc", "--auto", NULL};
1805        struct strbuf sb = STRBUF_INIT;
1806
1807        unlink(am_path(state, "dirtyindex"));
1808
1809        refresh_and_write_cache();
1810
1811        if (index_has_changes(&sb)) {
1812                write_file(am_path(state, "dirtyindex"), 1, "t");
1813                die(_("Dirty index: cannot apply patches (dirty: %s)"), sb.buf);
1814        }
1815
1816        strbuf_release(&sb);
1817
1818        while (state->cur <= state->last) {
1819                const char *mail = am_path(state, msgnum(state));
1820                int apply_status;
1821
1822                if (!file_exists(mail))
1823                        goto next;
1824
1825                if (resume) {
1826                        validate_resume_state(state);
1827                } else {
1828                        int skip;
1829
1830                        if (state->rebasing)
1831                                skip = parse_mail_rebase(state, mail);
1832                        else
1833                                skip = parse_mail(state, mail);
1834
1835                        if (skip)
1836                                goto next; /* mail should be skipped */
1837
1838                        write_author_script(state);
1839                        write_commit_msg(state);
1840                }
1841
1842                if (state->interactive && do_interactive(state))
1843                        goto next;
1844
1845                if (run_applypatch_msg_hook(state))
1846                        exit(1);
1847
1848                say(state, stdout, _("Applying: %.*s"), linelen(state->msg), state->msg);
1849
1850                apply_status = run_apply(state, NULL);
1851
1852                if (apply_status && state->threeway) {
1853                        struct strbuf sb = STRBUF_INIT;
1854
1855                        strbuf_addstr(&sb, am_path(state, "patch-merge-index"));
1856                        apply_status = fall_back_threeway(state, sb.buf);
1857                        strbuf_release(&sb);
1858
1859                        /*
1860                         * Applying the patch to an earlier tree and merging
1861                         * the result may have produced the same tree as ours.
1862                         */
1863                        if (!apply_status && !index_has_changes(NULL)) {
1864                                say(state, stdout, _("No changes -- Patch already applied."));
1865                                goto next;
1866                        }
1867                }
1868
1869                if (apply_status) {
1870                        int advice_amworkdir = 1;
1871
1872                        printf_ln(_("Patch failed at %s %.*s"), msgnum(state),
1873                                linelen(state->msg), state->msg);
1874
1875                        git_config_get_bool("advice.amworkdir", &advice_amworkdir);
1876
1877                        if (advice_amworkdir)
1878                                printf_ln(_("The copy of the patch that failed is found in: %s"),
1879                                                am_path(state, "patch"));
1880
1881                        die_user_resolve(state);
1882                }
1883
1884                do_commit(state);
1885
1886next:
1887                am_next(state);
1888
1889                if (resume)
1890                        am_load(state);
1891                resume = 0;
1892        }
1893
1894        if (!is_empty_file(am_path(state, "rewritten"))) {
1895                assert(state->rebasing);
1896                copy_notes_for_rebase(state);
1897                run_post_rewrite_hook(state);
1898        }
1899
1900        /*
1901         * In rebasing mode, it's up to the caller to take care of
1902         * housekeeping.
1903         */
1904        if (!state->rebasing) {
1905                am_destroy(state);
1906                run_command_v_opt(argv_gc_auto, RUN_GIT_CMD);
1907        }
1908}
1909
1910/**
1911 * Resume the current am session after patch application failure. The user did
1912 * all the hard work, and we do not have to do any patch application. Just
1913 * trust and commit what the user has in the index and working tree.
1914 */
1915static void am_resolve(struct am_state *state)
1916{
1917        validate_resume_state(state);
1918
1919        say(state, stdout, _("Applying: %.*s"), linelen(state->msg), state->msg);
1920
1921        if (!index_has_changes(NULL)) {
1922                printf_ln(_("No changes - did you forget to use 'git add'?\n"
1923                        "If there is nothing left to stage, chances are that something else\n"
1924                        "already introduced the same changes; you might want to skip this patch."));
1925                die_user_resolve(state);
1926        }
1927
1928        if (unmerged_cache()) {
1929                printf_ln(_("You still have unmerged paths in your index.\n"
1930                        "Did you forget to use 'git add'?"));
1931                die_user_resolve(state);
1932        }
1933
1934        if (state->interactive) {
1935                write_index_patch(state);
1936                if (do_interactive(state))
1937                        goto next;
1938        }
1939
1940        rerere(0);
1941
1942        do_commit(state);
1943
1944next:
1945        am_next(state);
1946        am_load(state);
1947        am_run(state, 0);
1948}
1949
1950/**
1951 * Performs a checkout fast-forward from `head` to `remote`. If `reset` is
1952 * true, any unmerged entries will be discarded. Returns 0 on success, -1 on
1953 * failure.
1954 */
1955static int fast_forward_to(struct tree *head, struct tree *remote, int reset)
1956{
1957        struct lock_file *lock_file;
1958        struct unpack_trees_options opts;
1959        struct tree_desc t[2];
1960
1961        if (parse_tree(head) || parse_tree(remote))
1962                return -1;
1963
1964        lock_file = xcalloc(1, sizeof(struct lock_file));
1965        hold_locked_index(lock_file, 1);
1966
1967        refresh_cache(REFRESH_QUIET);
1968
1969        memset(&opts, 0, sizeof(opts));
1970        opts.head_idx = 1;
1971        opts.src_index = &the_index;
1972        opts.dst_index = &the_index;
1973        opts.update = 1;
1974        opts.merge = 1;
1975        opts.reset = reset;
1976        opts.fn = twoway_merge;
1977        init_tree_desc(&t[0], head->buffer, head->size);
1978        init_tree_desc(&t[1], remote->buffer, remote->size);
1979
1980        if (unpack_trees(2, t, &opts)) {
1981                rollback_lock_file(lock_file);
1982                return -1;
1983        }
1984
1985        if (write_locked_index(&the_index, lock_file, COMMIT_LOCK))
1986                die(_("unable to write new index file"));
1987
1988        return 0;
1989}
1990
1991/**
1992 * Clean the index without touching entries that are not modified between
1993 * `head` and `remote`.
1994 */
1995static int clean_index(const unsigned char *head, const unsigned char *remote)
1996{
1997        struct lock_file *lock_file;
1998        struct tree *head_tree, *remote_tree, *index_tree;
1999        unsigned char index[GIT_SHA1_RAWSZ];
2000        struct pathspec pathspec;
2001
2002        head_tree = parse_tree_indirect(head);
2003        if (!head_tree)
2004                return error(_("Could not parse object '%s'."), sha1_to_hex(head));
2005
2006        remote_tree = parse_tree_indirect(remote);
2007        if (!remote_tree)
2008                return error(_("Could not parse object '%s'."), sha1_to_hex(remote));
2009
2010        read_cache_unmerged();
2011
2012        if (fast_forward_to(head_tree, head_tree, 1))
2013                return -1;
2014
2015        if (write_cache_as_tree(index, 0, NULL))
2016                return -1;
2017
2018        index_tree = parse_tree_indirect(index);
2019        if (!index_tree)
2020                return error(_("Could not parse object '%s'."), sha1_to_hex(index));
2021
2022        if (fast_forward_to(index_tree, remote_tree, 0))
2023                return -1;
2024
2025        memset(&pathspec, 0, sizeof(pathspec));
2026
2027        lock_file = xcalloc(1, sizeof(struct lock_file));
2028        hold_locked_index(lock_file, 1);
2029
2030        if (read_tree(remote_tree, 0, &pathspec)) {
2031                rollback_lock_file(lock_file);
2032                return -1;
2033        }
2034
2035        if (write_locked_index(&the_index, lock_file, COMMIT_LOCK))
2036                die(_("unable to write new index file"));
2037
2038        remove_branch_state();
2039
2040        return 0;
2041}
2042
2043/**
2044 * Resets rerere's merge resolution metadata.
2045 */
2046static void am_rerere_clear(void)
2047{
2048        struct string_list merge_rr = STRING_LIST_INIT_DUP;
2049        int fd = setup_rerere(&merge_rr, 0);
2050
2051        if (fd < 0)
2052                return;
2053
2054        rerere_clear(&merge_rr);
2055        string_list_clear(&merge_rr, 1);
2056}
2057
2058/**
2059 * Resume the current am session by skipping the current patch.
2060 */
2061static void am_skip(struct am_state *state)
2062{
2063        unsigned char head[GIT_SHA1_RAWSZ];
2064
2065        am_rerere_clear();
2066
2067        if (get_sha1("HEAD", head))
2068                hashcpy(head, EMPTY_TREE_SHA1_BIN);
2069
2070        if (clean_index(head, head))
2071                die(_("failed to clean index"));
2072
2073        am_next(state);
2074        am_load(state);
2075        am_run(state, 0);
2076}
2077
2078/**
2079 * Returns true if it is safe to reset HEAD to the ORIG_HEAD, false otherwise.
2080 *
2081 * It is not safe to reset HEAD when:
2082 * 1. git-am previously failed because the index was dirty.
2083 * 2. HEAD has moved since git-am previously failed.
2084 */
2085static int safe_to_abort(const struct am_state *state)
2086{
2087        struct strbuf sb = STRBUF_INIT;
2088        unsigned char abort_safety[GIT_SHA1_RAWSZ], head[GIT_SHA1_RAWSZ];
2089
2090        if (file_exists(am_path(state, "dirtyindex")))
2091                return 0;
2092
2093        if (read_state_file(&sb, state, "abort-safety", 1) > 0) {
2094                if (get_sha1_hex(sb.buf, abort_safety))
2095                        die(_("could not parse %s"), am_path(state, "abort_safety"));
2096        } else
2097                hashclr(abort_safety);
2098
2099        if (get_sha1("HEAD", head))
2100                hashclr(head);
2101
2102        if (!hashcmp(head, abort_safety))
2103                return 1;
2104
2105        error(_("You seem to have moved HEAD since the last 'am' failure.\n"
2106                "Not rewinding to ORIG_HEAD"));
2107
2108        return 0;
2109}
2110
2111/**
2112 * Aborts the current am session if it is safe to do so.
2113 */
2114static void am_abort(struct am_state *state)
2115{
2116        unsigned char curr_head[GIT_SHA1_RAWSZ], orig_head[GIT_SHA1_RAWSZ];
2117        int has_curr_head, has_orig_head;
2118        char *curr_branch;
2119
2120        if (!safe_to_abort(state)) {
2121                am_destroy(state);
2122                return;
2123        }
2124
2125        am_rerere_clear();
2126
2127        curr_branch = resolve_refdup("HEAD", 0, curr_head, NULL);
2128        has_curr_head = !is_null_sha1(curr_head);
2129        if (!has_curr_head)
2130                hashcpy(curr_head, EMPTY_TREE_SHA1_BIN);
2131
2132        has_orig_head = !get_sha1("ORIG_HEAD", orig_head);
2133        if (!has_orig_head)
2134                hashcpy(orig_head, EMPTY_TREE_SHA1_BIN);
2135
2136        clean_index(curr_head, orig_head);
2137
2138        if (has_orig_head)
2139                update_ref("am --abort", "HEAD", orig_head,
2140                                has_curr_head ? curr_head : NULL, 0,
2141                                UPDATE_REFS_DIE_ON_ERR);
2142        else if (curr_branch)
2143                delete_ref(curr_branch, NULL, REF_NODEREF);
2144
2145        free(curr_branch);
2146        am_destroy(state);
2147}
2148
2149/**
2150 * parse_options() callback that validates and sets opt->value to the
2151 * PATCH_FORMAT_* enum value corresponding to `arg`.
2152 */
2153static int parse_opt_patchformat(const struct option *opt, const char *arg, int unset)
2154{
2155        int *opt_value = opt->value;
2156
2157        if (!strcmp(arg, "mbox"))
2158                *opt_value = PATCH_FORMAT_MBOX;
2159        else if (!strcmp(arg, "stgit"))
2160                *opt_value = PATCH_FORMAT_STGIT;
2161        else if (!strcmp(arg, "stgit-series"))
2162                *opt_value = PATCH_FORMAT_STGIT_SERIES;
2163        else if (!strcmp(arg, "hg"))
2164                *opt_value = PATCH_FORMAT_HG;
2165        else
2166                return error(_("Invalid value for --patch-format: %s"), arg);
2167        return 0;
2168}
2169
2170enum resume_mode {
2171        RESUME_FALSE = 0,
2172        RESUME_APPLY,
2173        RESUME_RESOLVED,
2174        RESUME_SKIP,
2175        RESUME_ABORT
2176};
2177
2178int cmd_am(int argc, const char **argv, const char *prefix)
2179{
2180        struct am_state state;
2181        int binary = -1;
2182        int keep_cr = -1;
2183        int patch_format = PATCH_FORMAT_UNKNOWN;
2184        enum resume_mode resume = RESUME_FALSE;
2185        int in_progress;
2186
2187        const char * const usage[] = {
2188                N_("git am [options] [(<mbox>|<Maildir>)...]"),
2189                N_("git am [options] (--continue | --skip | --abort)"),
2190                NULL
2191        };
2192
2193        struct option options[] = {
2194                OPT_BOOL('i', "interactive", &state.interactive,
2195                        N_("run interactively")),
2196                OPT_HIDDEN_BOOL('b', "binary", &binary,
2197                        N_("(historical option -- no-op")),
2198                OPT_BOOL('3', "3way", &state.threeway,
2199                        N_("allow fall back on 3way merging if needed")),
2200                OPT__QUIET(&state.quiet, N_("be quiet")),
2201                OPT_SET_INT('s', "signoff", &state.signoff,
2202                        N_("add a Signed-off-by line to the commit message"),
2203                        SIGNOFF_EXPLICIT),
2204                OPT_BOOL('u', "utf8", &state.utf8,
2205                        N_("recode into utf8 (default)")),
2206                OPT_SET_INT('k', "keep", &state.keep,
2207                        N_("pass -k flag to git-mailinfo"), KEEP_TRUE),
2208                OPT_SET_INT(0, "keep-non-patch", &state.keep,
2209                        N_("pass -b flag to git-mailinfo"), KEEP_NON_PATCH),
2210                OPT_BOOL('m', "message-id", &state.message_id,
2211                        N_("pass -m flag to git-mailinfo")),
2212                { OPTION_SET_INT, 0, "keep-cr", &keep_cr, NULL,
2213                  N_("pass --keep-cr flag to git-mailsplit for mbox format"),
2214                  PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, 1},
2215                { OPTION_SET_INT, 0, "no-keep-cr", &keep_cr, NULL,
2216                  N_("do not pass --keep-cr flag to git-mailsplit independent of am.keepcr"),
2217                  PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, 0},
2218                OPT_BOOL('c', "scissors", &state.scissors,
2219                        N_("strip everything before a scissors line")),
2220                OPT_PASSTHRU_ARGV(0, "whitespace", &state.git_apply_opts, N_("action"),
2221                        N_("pass it through git-apply"),
2222                        0),
2223                OPT_PASSTHRU_ARGV(0, "ignore-space-change", &state.git_apply_opts, NULL,
2224                        N_("pass it through git-apply"),
2225                        PARSE_OPT_NOARG),
2226                OPT_PASSTHRU_ARGV(0, "ignore-whitespace", &state.git_apply_opts, NULL,
2227                        N_("pass it through git-apply"),
2228                        PARSE_OPT_NOARG),
2229                OPT_PASSTHRU_ARGV(0, "directory", &state.git_apply_opts, N_("root"),
2230                        N_("pass it through git-apply"),
2231                        0),
2232                OPT_PASSTHRU_ARGV(0, "exclude", &state.git_apply_opts, N_("path"),
2233                        N_("pass it through git-apply"),
2234                        0),
2235                OPT_PASSTHRU_ARGV(0, "include", &state.git_apply_opts, N_("path"),
2236                        N_("pass it through git-apply"),
2237                        0),
2238                OPT_PASSTHRU_ARGV('C', NULL, &state.git_apply_opts, N_("n"),
2239                        N_("pass it through git-apply"),
2240                        0),
2241                OPT_PASSTHRU_ARGV('p', NULL, &state.git_apply_opts, N_("num"),
2242                        N_("pass it through git-apply"),
2243                        0),
2244                OPT_CALLBACK(0, "patch-format", &patch_format, N_("format"),
2245                        N_("format the patch(es) are in"),
2246                        parse_opt_patchformat),
2247                OPT_PASSTHRU_ARGV(0, "reject", &state.git_apply_opts, NULL,
2248                        N_("pass it through git-apply"),
2249                        PARSE_OPT_NOARG),
2250                OPT_STRING(0, "resolvemsg", &state.resolvemsg, NULL,
2251                        N_("override error message when patch failure occurs")),
2252                OPT_CMDMODE(0, "continue", &resume,
2253                        N_("continue applying patches after resolving a conflict"),
2254                        RESUME_RESOLVED),
2255                OPT_CMDMODE('r', "resolved", &resume,
2256                        N_("synonyms for --continue"),
2257                        RESUME_RESOLVED),
2258                OPT_CMDMODE(0, "skip", &resume,
2259                        N_("skip the current patch"),
2260                        RESUME_SKIP),
2261                OPT_CMDMODE(0, "abort", &resume,
2262                        N_("restore the original branch and abort the patching operation."),
2263                        RESUME_ABORT),
2264                OPT_BOOL(0, "committer-date-is-author-date",
2265                        &state.committer_date_is_author_date,
2266                        N_("lie about committer date")),
2267                OPT_BOOL(0, "ignore-date", &state.ignore_date,
2268                        N_("use current timestamp for author date")),
2269                OPT_RERERE_AUTOUPDATE(&state.allow_rerere_autoupdate),
2270                { OPTION_STRING, 'S', "gpg-sign", &state.sign_commit, N_("key-id"),
2271                  N_("GPG-sign commits"),
2272                  PARSE_OPT_OPTARG, NULL, (intptr_t) "" },
2273                OPT_HIDDEN_BOOL(0, "rebasing", &state.rebasing,
2274                        N_("(internal use for git-rebase)")),
2275                OPT_END()
2276        };
2277
2278        git_config(git_default_config, NULL);
2279
2280        am_state_init(&state, git_path("rebase-apply"));
2281
2282        in_progress = am_in_progress(&state);
2283        if (in_progress)
2284                am_load(&state);
2285
2286        argc = parse_options(argc, argv, prefix, options, usage, 0);
2287
2288        if (binary >= 0)
2289                fprintf_ln(stderr, _("The -b/--binary option has been a no-op for long time, and\n"
2290                                "it will be removed. Please do not use it anymore."));
2291
2292        /* Ensure a valid committer ident can be constructed */
2293        git_committer_info(IDENT_STRICT);
2294
2295        if (read_index_preload(&the_index, NULL) < 0)
2296                die(_("failed to read the index"));
2297
2298        if (in_progress) {
2299                /*
2300                 * Catch user error to feed us patches when there is a session
2301                 * in progress:
2302                 *
2303                 * 1. mbox path(s) are provided on the command-line.
2304                 * 2. stdin is not a tty: the user is trying to feed us a patch
2305                 *    from standard input. This is somewhat unreliable -- stdin
2306                 *    could be /dev/null for example and the caller did not
2307                 *    intend to feed us a patch but wanted to continue
2308                 *    unattended.
2309                 */
2310                if (argc || (resume == RESUME_FALSE && !isatty(0)))
2311                        die(_("previous rebase directory %s still exists but mbox given."),
2312                                state.dir);
2313
2314                if (resume == RESUME_FALSE)
2315                        resume = RESUME_APPLY;
2316
2317                if (state.signoff == SIGNOFF_EXPLICIT)
2318                        am_append_signoff(&state);
2319        } else {
2320                struct argv_array paths = ARGV_ARRAY_INIT;
2321                int i;
2322
2323                /*
2324                 * Handle stray state directory in the independent-run case. In
2325                 * the --rebasing case, it is up to the caller to take care of
2326                 * stray directories.
2327                 */
2328                if (file_exists(state.dir) && !state.rebasing) {
2329                        if (resume == RESUME_ABORT) {
2330                                am_destroy(&state);
2331                                am_state_release(&state);
2332                                return 0;
2333                        }
2334
2335                        die(_("Stray %s directory found.\n"
2336                                "Use \"git am --abort\" to remove it."),
2337                                state.dir);
2338                }
2339
2340                if (resume)
2341                        die(_("Resolve operation not in progress, we are not resuming."));
2342
2343                for (i = 0; i < argc; i++) {
2344                        if (is_absolute_path(argv[i]) || !prefix)
2345                                argv_array_push(&paths, argv[i]);
2346                        else
2347                                argv_array_push(&paths, mkpath("%s/%s", prefix, argv[i]));
2348                }
2349
2350                am_setup(&state, patch_format, paths.argv, keep_cr);
2351
2352                argv_array_clear(&paths);
2353        }
2354
2355        switch (resume) {
2356        case RESUME_FALSE:
2357                am_run(&state, 0);
2358                break;
2359        case RESUME_APPLY:
2360                am_run(&state, 1);
2361                break;
2362        case RESUME_RESOLVED:
2363                am_resolve(&state);
2364                break;
2365        case RESUME_SKIP:
2366                am_skip(&state);
2367                break;
2368        case RESUME_ABORT:
2369                am_abort(&state);
2370                break;
2371        default:
2372                die("BUG: invalid resume value");
2373        }
2374
2375        am_state_release(&state);
2376
2377        return 0;
2378}