apply.con commit git-apply: safety fixes (c150462)
   1/*
   2 * apply.c
   3 *
   4 * Copyright (C) Linus Torvalds, 2005
   5 *
   6 * This applies patches on top of some (arbitrary) version of the SCM.
   7 *
   8 */
   9#include <fnmatch.h>
  10#include "cache.h"
  11#include "quote.h"
  12
  13//  --check turns on checking that the working tree matches the
  14//    files that are being modified, but doesn't apply the patch
  15//  --stat does just a diffstat, and doesn't actually apply
  16//  --numstat does numeric diffstat, and doesn't actually apply
  17//  --index-info shows the old and new index info for paths if available.
  18//
  19static const char *prefix;
  20static int prefix_length = -1;
  21
  22static int p_value = 1;
  23static int allow_binary_replacement = 0;
  24static int check_index = 0;
  25static int write_index = 0;
  26static int diffstat = 0;
  27static int numstat = 0;
  28static int summary = 0;
  29static int check = 0;
  30static int apply = 1;
  31static int no_add = 0;
  32static int show_index_info = 0;
  33static int line_termination = '\n';
  34static const char apply_usage[] =
  35"git-apply [--stat] [--numstat] [--summary] [--check] [--index] [--apply] [--no-add] [--index-info] [--allow-binary-replacement] [-z] [-pNUM] [--whitespace=<nowarn|warn|error|error-all|strip>] <patch>...";
  36
  37static enum whitespace_eol {
  38        nowarn_whitespace,
  39        warn_on_whitespace,
  40        error_on_whitespace,
  41        strip_whitespace,
  42} new_whitespace = warn_on_whitespace;
  43static int whitespace_error = 0;
  44static int squelch_whitespace_errors = 5;
  45static int applied_after_stripping = 0;
  46static const char *patch_input_file = NULL;
  47
  48static void parse_whitespace_option(const char *option)
  49{
  50        if (!option) {
  51                new_whitespace = warn_on_whitespace;
  52                return;
  53        }
  54        if (!strcmp(option, "warn")) {
  55                new_whitespace = warn_on_whitespace;
  56                return;
  57        }
  58        if (!strcmp(option, "nowarn")) {
  59                new_whitespace = nowarn_whitespace;
  60                return;
  61        }
  62        if (!strcmp(option, "error")) {
  63                new_whitespace = error_on_whitespace;
  64                return;
  65        }
  66        if (!strcmp(option, "error-all")) {
  67                new_whitespace = error_on_whitespace;
  68                squelch_whitespace_errors = 0;
  69                return;
  70        }
  71        if (!strcmp(option, "strip")) {
  72                new_whitespace = strip_whitespace;
  73                return;
  74        }
  75        die("unrecognized whitespace option '%s'", option);
  76}
  77
  78static void set_default_whitespace_mode(const char *whitespace_option)
  79{
  80        if (!whitespace_option && !apply_default_whitespace) {
  81                new_whitespace = (apply
  82                                  ? warn_on_whitespace
  83                                  : nowarn_whitespace);
  84        }
  85}
  86
  87/*
  88 * For "diff-stat" like behaviour, we keep track of the biggest change
  89 * we've seen, and the longest filename. That allows us to do simple
  90 * scaling.
  91 */
  92static int max_change, max_len;
  93
  94/*
  95 * Various "current state", notably line numbers and what
  96 * file (and how) we're patching right now.. The "is_xxxx"
  97 * things are flags, where -1 means "don't know yet".
  98 */
  99static int linenr = 1;
 100
 101struct fragment {
 102        unsigned long oldpos, oldlines;
 103        unsigned long newpos, newlines;
 104        const char *patch;
 105        int size;
 106        struct fragment *next;
 107};
 108
 109struct patch {
 110        char *new_name, *old_name, *def_name;
 111        unsigned int old_mode, new_mode;
 112        int is_rename, is_copy, is_new, is_delete, is_binary;
 113        int lines_added, lines_deleted;
 114        int score;
 115        struct fragment *fragments;
 116        char *result;
 117        unsigned long resultsize;
 118        char old_sha1_prefix[41];
 119        char new_sha1_prefix[41];
 120        struct patch *next;
 121};
 122
 123#define CHUNKSIZE (8192)
 124#define SLOP (16)
 125
 126static void *read_patch_file(int fd, unsigned long *sizep)
 127{
 128        unsigned long size = 0, alloc = CHUNKSIZE;
 129        void *buffer = xmalloc(alloc);
 130
 131        for (;;) {
 132                int nr = alloc - size;
 133                if (nr < 1024) {
 134                        alloc += CHUNKSIZE;
 135                        buffer = xrealloc(buffer, alloc);
 136                        nr = alloc - size;
 137                }
 138                nr = xread(fd, buffer + size, nr);
 139                if (!nr)
 140                        break;
 141                if (nr < 0)
 142                        die("git-apply: read returned %s", strerror(errno));
 143                size += nr;
 144        }
 145        *sizep = size;
 146
 147        /*
 148         * Make sure that we have some slop in the buffer
 149         * so that we can do speculative "memcmp" etc, and
 150         * see to it that it is NUL-filled.
 151         */
 152        if (alloc < size + SLOP)
 153                buffer = xrealloc(buffer, size + SLOP);
 154        memset(buffer + size, 0, SLOP);
 155        return buffer;
 156}
 157
 158static unsigned long linelen(const char *buffer, unsigned long size)
 159{
 160        unsigned long len = 0;
 161        while (size--) {
 162                len++;
 163                if (*buffer++ == '\n')
 164                        break;
 165        }
 166        return len;
 167}
 168
 169static int is_dev_null(const char *str)
 170{
 171        return !memcmp("/dev/null", str, 9) && isspace(str[9]);
 172}
 173
 174#define TERM_SPACE      1
 175#define TERM_TAB        2
 176
 177static int name_terminate(const char *name, int namelen, int c, int terminate)
 178{
 179        if (c == ' ' && !(terminate & TERM_SPACE))
 180                return 0;
 181        if (c == '\t' && !(terminate & TERM_TAB))
 182                return 0;
 183
 184        return 1;
 185}
 186
 187static char * find_name(const char *line, char *def, int p_value, int terminate)
 188{
 189        int len;
 190        const char *start = line;
 191        char *name;
 192
 193        if (*line == '"') {
 194                /* Proposed "new-style" GNU patch/diff format; see
 195                 * http://marc.theaimsgroup.com/?l=git&m=112927316408690&w=2
 196                 */
 197                name = unquote_c_style(line, NULL);
 198                if (name) {
 199                        char *cp = name;
 200                        while (p_value) {
 201                                cp = strchr(name, '/');
 202                                if (!cp)
 203                                        break;
 204                                cp++;
 205                                p_value--;
 206                        }
 207                        if (cp) {
 208                                /* name can later be freed, so we need
 209                                 * to memmove, not just return cp
 210                                 */
 211                                memmove(name, cp, strlen(cp) + 1);
 212                                free(def);
 213                                return name;
 214                        }
 215                        else {
 216                                free(name);
 217                                name = NULL;
 218                        }
 219                }
 220        }
 221
 222        for (;;) {
 223                char c = *line;
 224
 225                if (isspace(c)) {
 226                        if (c == '\n')
 227                                break;
 228                        if (name_terminate(start, line-start, c, terminate))
 229                                break;
 230                }
 231                line++;
 232                if (c == '/' && !--p_value)
 233                        start = line;
 234        }
 235        if (!start)
 236                return def;
 237        len = line - start;
 238        if (!len)
 239                return def;
 240
 241        /*
 242         * Generally we prefer the shorter name, especially
 243         * if the other one is just a variation of that with
 244         * something else tacked on to the end (ie "file.orig"
 245         * or "file~").
 246         */
 247        if (def) {
 248                int deflen = strlen(def);
 249                if (deflen < len && !strncmp(start, def, deflen))
 250                        return def;
 251        }
 252
 253        name = xmalloc(len + 1);
 254        memcpy(name, start, len);
 255        name[len] = 0;
 256        free(def);
 257        return name;
 258}
 259
 260/*
 261 * Get the name etc info from the --/+++ lines of a traditional patch header
 262 *
 263 * NOTE! This hardcodes "-p1" behaviour in filename detection.
 264 *
 265 * FIXME! The end-of-filename heuristics are kind of screwy. For existing
 266 * files, we can happily check the index for a match, but for creating a
 267 * new file we should try to match whatever "patch" does. I have no idea.
 268 */
 269static void parse_traditional_patch(const char *first, const char *second, struct patch *patch)
 270{
 271        char *name;
 272
 273        first += 4;     // skip "--- "
 274        second += 4;    // skip "+++ "
 275        if (is_dev_null(first)) {
 276                patch->is_new = 1;
 277                patch->is_delete = 0;
 278                name = find_name(second, NULL, p_value, TERM_SPACE | TERM_TAB);
 279                patch->new_name = name;
 280        } else if (is_dev_null(second)) {
 281                patch->is_new = 0;
 282                patch->is_delete = 1;
 283                name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB);
 284                patch->old_name = name;
 285        } else {
 286                name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB);
 287                name = find_name(second, name, p_value, TERM_SPACE | TERM_TAB);
 288                patch->old_name = patch->new_name = name;
 289        }
 290        if (!name)
 291                die("unable to find filename in patch at line %d", linenr);
 292}
 293
 294static int gitdiff_hdrend(const char *line, struct patch *patch)
 295{
 296        return -1;
 297}
 298
 299/*
 300 * We're anal about diff header consistency, to make
 301 * sure that we don't end up having strange ambiguous
 302 * patches floating around.
 303 *
 304 * As a result, gitdiff_{old|new}name() will check
 305 * their names against any previous information, just
 306 * to make sure..
 307 */
 308static char *gitdiff_verify_name(const char *line, int isnull, char *orig_name, const char *oldnew)
 309{
 310        if (!orig_name && !isnull)
 311                return find_name(line, NULL, 1, 0);
 312
 313        if (orig_name) {
 314                int len;
 315                const char *name;
 316                char *another;
 317                name = orig_name;
 318                len = strlen(name);
 319                if (isnull)
 320                        die("git-apply: bad git-diff - expected /dev/null, got %s on line %d", name, linenr);
 321                another = find_name(line, NULL, 1, 0);
 322                if (!another || memcmp(another, name, len))
 323                        die("git-apply: bad git-diff - inconsistent %s filename on line %d", oldnew, linenr);
 324                free(another);
 325                return orig_name;
 326        }
 327        else {
 328                /* expect "/dev/null" */
 329                if (memcmp("/dev/null", line, 9) || line[9] != '\n')
 330                        die("git-apply: bad git-diff - expected /dev/null on line %d", linenr);
 331                return NULL;
 332        }
 333}
 334
 335static int gitdiff_oldname(const char *line, struct patch *patch)
 336{
 337        patch->old_name = gitdiff_verify_name(line, patch->is_new, patch->old_name, "old");
 338        return 0;
 339}
 340
 341static int gitdiff_newname(const char *line, struct patch *patch)
 342{
 343        patch->new_name = gitdiff_verify_name(line, patch->is_delete, patch->new_name, "new");
 344        return 0;
 345}
 346
 347static int gitdiff_oldmode(const char *line, struct patch *patch)
 348{
 349        patch->old_mode = strtoul(line, NULL, 8);
 350        return 0;
 351}
 352
 353static int gitdiff_newmode(const char *line, struct patch *patch)
 354{
 355        patch->new_mode = strtoul(line, NULL, 8);
 356        return 0;
 357}
 358
 359static int gitdiff_delete(const char *line, struct patch *patch)
 360{
 361        patch->is_delete = 1;
 362        patch->old_name = patch->def_name;
 363        return gitdiff_oldmode(line, patch);
 364}
 365
 366static int gitdiff_newfile(const char *line, struct patch *patch)
 367{
 368        patch->is_new = 1;
 369        patch->new_name = patch->def_name;
 370        return gitdiff_newmode(line, patch);
 371}
 372
 373static int gitdiff_copysrc(const char *line, struct patch *patch)
 374{
 375        patch->is_copy = 1;
 376        patch->old_name = find_name(line, NULL, 0, 0);
 377        return 0;
 378}
 379
 380static int gitdiff_copydst(const char *line, struct patch *patch)
 381{
 382        patch->is_copy = 1;
 383        patch->new_name = find_name(line, NULL, 0, 0);
 384        return 0;
 385}
 386
 387static int gitdiff_renamesrc(const char *line, struct patch *patch)
 388{
 389        patch->is_rename = 1;
 390        patch->old_name = find_name(line, NULL, 0, 0);
 391        return 0;
 392}
 393
 394static int gitdiff_renamedst(const char *line, struct patch *patch)
 395{
 396        patch->is_rename = 1;
 397        patch->new_name = find_name(line, NULL, 0, 0);
 398        return 0;
 399}
 400
 401static int gitdiff_similarity(const char *line, struct patch *patch)
 402{
 403        if ((patch->score = strtoul(line, NULL, 10)) == ULONG_MAX)
 404                patch->score = 0;
 405        return 0;
 406}
 407
 408static int gitdiff_dissimilarity(const char *line, struct patch *patch)
 409{
 410        if ((patch->score = strtoul(line, NULL, 10)) == ULONG_MAX)
 411                patch->score = 0;
 412        return 0;
 413}
 414
 415static int gitdiff_index(const char *line, struct patch *patch)
 416{
 417        /* index line is N hexadecimal, "..", N hexadecimal,
 418         * and optional space with octal mode.
 419         */
 420        const char *ptr, *eol;
 421        int len;
 422
 423        ptr = strchr(line, '.');
 424        if (!ptr || ptr[1] != '.' || 40 < ptr - line)
 425                return 0;
 426        len = ptr - line;
 427        memcpy(patch->old_sha1_prefix, line, len);
 428        patch->old_sha1_prefix[len] = 0;
 429
 430        line = ptr + 2;
 431        ptr = strchr(line, ' ');
 432        eol = strchr(line, '\n');
 433
 434        if (!ptr || eol < ptr)
 435                ptr = eol;
 436        len = ptr - line;
 437
 438        if (40 < len)
 439                return 0;
 440        memcpy(patch->new_sha1_prefix, line, len);
 441        patch->new_sha1_prefix[len] = 0;
 442        if (*ptr == ' ')
 443                patch->new_mode = patch->old_mode = strtoul(ptr+1, NULL, 8);
 444        return 0;
 445}
 446
 447/*
 448 * This is normal for a diff that doesn't change anything: we'll fall through
 449 * into the next diff. Tell the parser to break out.
 450 */
 451static int gitdiff_unrecognized(const char *line, struct patch *patch)
 452{
 453        return -1;
 454}
 455
 456static const char *stop_at_slash(const char *line, int llen)
 457{
 458        int i;
 459
 460        for (i = 0; i < llen; i++) {
 461                int ch = line[i];
 462                if (ch == '/')
 463                        return line + i;
 464        }
 465        return NULL;
 466}
 467
 468/* This is to extract the same name that appears on "diff --git"
 469 * line.  We do not find and return anything if it is a rename
 470 * patch, and it is OK because we will find the name elsewhere.
 471 * We need to reliably find name only when it is mode-change only,
 472 * creation or deletion of an empty file.  In any of these cases,
 473 * both sides are the same name under a/ and b/ respectively.
 474 */
 475static char *git_header_name(char *line, int llen)
 476{
 477        int len;
 478        const char *name;
 479        const char *second = NULL;
 480
 481        line += strlen("diff --git ");
 482        llen -= strlen("diff --git ");
 483
 484        if (*line == '"') {
 485                const char *cp;
 486                char *first = unquote_c_style(line, &second);
 487                if (!first)
 488                        return NULL;
 489
 490                /* advance to the first slash */
 491                cp = stop_at_slash(first, strlen(first));
 492                if (!cp || cp == first) {
 493                        /* we do not accept absolute paths */
 494                free_first_and_fail:
 495                        free(first);
 496                        return NULL;
 497                }
 498                len = strlen(cp+1);
 499                memmove(first, cp+1, len+1); /* including NUL */
 500
 501                /* second points at one past closing dq of name.
 502                 * find the second name.
 503                 */
 504                while ((second < line + llen) && isspace(*second))
 505                        second++;
 506
 507                if (line + llen <= second)
 508                        goto free_first_and_fail;
 509                if (*second == '"') {
 510                        char *sp = unquote_c_style(second, NULL);
 511                        if (!sp)
 512                                goto free_first_and_fail;
 513                        cp = stop_at_slash(sp, strlen(sp));
 514                        if (!cp || cp == sp) {
 515                        free_both_and_fail:
 516                                free(sp);
 517                                goto free_first_and_fail;
 518                        }
 519                        /* They must match, otherwise ignore */
 520                        if (strcmp(cp+1, first))
 521                                goto free_both_and_fail;
 522                        free(sp);
 523                        return first;
 524                }
 525
 526                /* unquoted second */
 527                cp = stop_at_slash(second, line + llen - second);
 528                if (!cp || cp == second)
 529                        goto free_first_and_fail;
 530                cp++;
 531                if (line + llen - cp != len + 1 ||
 532                    memcmp(first, cp, len))
 533                        goto free_first_and_fail;
 534                return first;
 535        }
 536
 537        /* unquoted first name */
 538        name = stop_at_slash(line, llen);
 539        if (!name || name == line)
 540                return NULL;
 541
 542        name++;
 543
 544        /* since the first name is unquoted, a dq if exists must be
 545         * the beginning of the second name.
 546         */
 547        for (second = name; second < line + llen; second++) {
 548                if (*second == '"') {
 549                        const char *cp = second;
 550                        const char *np;
 551                        char *sp = unquote_c_style(second, NULL);
 552
 553                        if (!sp)
 554                                return NULL;
 555                        np = stop_at_slash(sp, strlen(sp));
 556                        if (!np || np == sp) {
 557                        free_second_and_fail:
 558                                free(sp);
 559                                return NULL;
 560                        }
 561                        np++;
 562                        len = strlen(np);
 563                        if (len < cp - name &&
 564                            !strncmp(np, name, len) &&
 565                            isspace(name[len])) {
 566                                /* Good */
 567                                memmove(sp, np, len + 1);
 568                                return sp;
 569                        }
 570                        goto free_second_and_fail;
 571                }
 572        }
 573
 574        /*
 575         * Accept a name only if it shows up twice, exactly the same
 576         * form.
 577         */
 578        for (len = 0 ; ; len++) {
 579                char c = name[len];
 580
 581                switch (c) {
 582                default:
 583                        continue;
 584                case '\n':
 585                        return NULL;
 586                case '\t': case ' ':
 587                        second = name+len;
 588                        for (;;) {
 589                                char c = *second++;
 590                                if (c == '\n')
 591                                        return NULL;
 592                                if (c == '/')
 593                                        break;
 594                        }
 595                        if (second[len] == '\n' && !memcmp(name, second, len)) {
 596                                char *ret = xmalloc(len + 1);
 597                                memcpy(ret, name, len);
 598                                ret[len] = 0;
 599                                return ret;
 600                        }
 601                }
 602        }
 603        return NULL;
 604}
 605
 606/* Verify that we recognize the lines following a git header */
 607static int parse_git_header(char *line, int len, unsigned int size, struct patch *patch)
 608{
 609        unsigned long offset;
 610
 611        /* A git diff has explicit new/delete information, so we don't guess */
 612        patch->is_new = 0;
 613        patch->is_delete = 0;
 614
 615        /*
 616         * Some things may not have the old name in the
 617         * rest of the headers anywhere (pure mode changes,
 618         * or removing or adding empty files), so we get
 619         * the default name from the header.
 620         */
 621        patch->def_name = git_header_name(line, len);
 622
 623        line += len;
 624        size -= len;
 625        linenr++;
 626        for (offset = len ; size > 0 ; offset += len, size -= len, line += len, linenr++) {
 627                static const struct opentry {
 628                        const char *str;
 629                        int (*fn)(const char *, struct patch *);
 630                } optable[] = {
 631                        { "@@ -", gitdiff_hdrend },
 632                        { "--- ", gitdiff_oldname },
 633                        { "+++ ", gitdiff_newname },
 634                        { "old mode ", gitdiff_oldmode },
 635                        { "new mode ", gitdiff_newmode },
 636                        { "deleted file mode ", gitdiff_delete },
 637                        { "new file mode ", gitdiff_newfile },
 638                        { "copy from ", gitdiff_copysrc },
 639                        { "copy to ", gitdiff_copydst },
 640                        { "rename old ", gitdiff_renamesrc },
 641                        { "rename new ", gitdiff_renamedst },
 642                        { "rename from ", gitdiff_renamesrc },
 643                        { "rename to ", gitdiff_renamedst },
 644                        { "similarity index ", gitdiff_similarity },
 645                        { "dissimilarity index ", gitdiff_dissimilarity },
 646                        { "index ", gitdiff_index },
 647                        { "", gitdiff_unrecognized },
 648                };
 649                int i;
 650
 651                len = linelen(line, size);
 652                if (!len || line[len-1] != '\n')
 653                        break;
 654                for (i = 0; i < ARRAY_SIZE(optable); i++) {
 655                        const struct opentry *p = optable + i;
 656                        int oplen = strlen(p->str);
 657                        if (len < oplen || memcmp(p->str, line, oplen))
 658                                continue;
 659                        if (p->fn(line + oplen, patch) < 0)
 660                                return offset;
 661                        break;
 662                }
 663        }
 664
 665        return offset;
 666}
 667
 668static int parse_num(const char *line, unsigned long *p)
 669{
 670        char *ptr;
 671
 672        if (!isdigit(*line))
 673                return 0;
 674        *p = strtoul(line, &ptr, 10);
 675        return ptr - line;
 676}
 677
 678static int parse_range(const char *line, int len, int offset, const char *expect,
 679                        unsigned long *p1, unsigned long *p2)
 680{
 681        int digits, ex;
 682
 683        if (offset < 0 || offset >= len)
 684                return -1;
 685        line += offset;
 686        len -= offset;
 687
 688        digits = parse_num(line, p1);
 689        if (!digits)
 690                return -1;
 691
 692        offset += digits;
 693        line += digits;
 694        len -= digits;
 695
 696        *p2 = 1;
 697        if (*line == ',') {
 698                digits = parse_num(line+1, p2);
 699                if (!digits)
 700                        return -1;
 701
 702                offset += digits+1;
 703                line += digits+1;
 704                len -= digits+1;
 705        }
 706
 707        ex = strlen(expect);
 708        if (ex > len)
 709                return -1;
 710        if (memcmp(line, expect, ex))
 711                return -1;
 712
 713        return offset + ex;
 714}
 715
 716/*
 717 * Parse a unified diff fragment header of the
 718 * form "@@ -a,b +c,d @@"
 719 */
 720static int parse_fragment_header(char *line, int len, struct fragment *fragment)
 721{
 722        int offset;
 723
 724        if (!len || line[len-1] != '\n')
 725                return -1;
 726
 727        /* Figure out the number of lines in a fragment */
 728        offset = parse_range(line, len, 4, " +", &fragment->oldpos, &fragment->oldlines);
 729        offset = parse_range(line, len, offset, " @@", &fragment->newpos, &fragment->newlines);
 730
 731        return offset;
 732}
 733
 734static int find_header(char *line, unsigned long size, int *hdrsize, struct patch *patch)
 735{
 736        unsigned long offset, len;
 737
 738        patch->is_rename = patch->is_copy = 0;
 739        patch->is_new = patch->is_delete = -1;
 740        patch->old_mode = patch->new_mode = 0;
 741        patch->old_name = patch->new_name = NULL;
 742        for (offset = 0; size > 0; offset += len, size -= len, line += len, linenr++) {
 743                unsigned long nextlen;
 744
 745                len = linelen(line, size);
 746                if (!len)
 747                        break;
 748
 749                /* Testing this early allows us to take a few shortcuts.. */
 750                if (len < 6)
 751                        continue;
 752
 753                /*
 754                 * Make sure we don't find any unconnected patch fragmants.
 755                 * That's a sign that we didn't find a header, and that a
 756                 * patch has become corrupted/broken up.
 757                 */
 758                if (!memcmp("@@ -", line, 4)) {
 759                        struct fragment dummy;
 760                        if (parse_fragment_header(line, len, &dummy) < 0)
 761                                continue;
 762                        error("patch fragment without header at line %d: %.*s", linenr, (int)len-1, line);
 763                }
 764
 765                if (size < len + 6)
 766                        break;
 767
 768                /*
 769                 * Git patch? It might not have a real patch, just a rename
 770                 * or mode change, so we handle that specially
 771                 */
 772                if (!memcmp("diff --git ", line, 11)) {
 773                        int git_hdr_len = parse_git_header(line, len, size, patch);
 774                        if (git_hdr_len <= len)
 775                                continue;
 776                        if (!patch->old_name && !patch->new_name) {
 777                                if (!patch->def_name)
 778                                        die("git diff header lacks filename information (line %d)", linenr);
 779                                patch->old_name = patch->new_name = patch->def_name;
 780                        }
 781                        *hdrsize = git_hdr_len;
 782                        return offset;
 783                }
 784
 785                /** --- followed by +++ ? */
 786                if (memcmp("--- ", line,  4) || memcmp("+++ ", line + len, 4))
 787                        continue;
 788
 789                /*
 790                 * We only accept unified patches, so we want it to
 791                 * at least have "@@ -a,b +c,d @@\n", which is 14 chars
 792                 * minimum
 793                 */
 794                nextlen = linelen(line + len, size - len);
 795                if (size < nextlen + 14 || memcmp("@@ -", line + len + nextlen, 4))
 796                        continue;
 797
 798                /* Ok, we'll consider it a patch */
 799                parse_traditional_patch(line, line+len, patch);
 800                *hdrsize = len + nextlen;
 801                linenr += 2;
 802                return offset;
 803        }
 804        return -1;
 805}
 806
 807/*
 808 * Parse a unified diff. Note that this really needs
 809 * to parse each fragment separately, since the only
 810 * way to know the difference between a "---" that is
 811 * part of a patch, and a "---" that starts the next
 812 * patch is to look at the line counts..
 813 */
 814static int parse_fragment(char *line, unsigned long size, struct patch *patch, struct fragment *fragment)
 815{
 816        int added, deleted;
 817        int len = linelen(line, size), offset;
 818        unsigned long oldlines, newlines;
 819
 820        offset = parse_fragment_header(line, len, fragment);
 821        if (offset < 0)
 822                return -1;
 823        oldlines = fragment->oldlines;
 824        newlines = fragment->newlines;
 825
 826        if (patch->is_new < 0) {
 827                patch->is_new =  !oldlines;
 828                if (!oldlines)
 829                        patch->old_name = NULL;
 830        }
 831        if (patch->is_delete < 0) {
 832                patch->is_delete = !newlines;
 833                if (!newlines)
 834                        patch->new_name = NULL;
 835        }
 836
 837        if (patch->is_new && oldlines)
 838                return error("new file depends on old contents");
 839        if (patch->is_delete != !newlines) {
 840                if (newlines)
 841                        return error("deleted file still has contents");
 842                fprintf(stderr, "** warning: file %s becomes empty but is not deleted\n", patch->new_name);
 843        }
 844
 845        /* Parse the thing.. */
 846        line += len;
 847        size -= len;
 848        linenr++;
 849        added = deleted = 0;
 850        for (offset = len; size > 0; offset += len, size -= len, line += len, linenr++) {
 851                if (!oldlines && !newlines)
 852                        break;
 853                len = linelen(line, size);
 854                if (!len || line[len-1] != '\n')
 855                        return -1;
 856                switch (*line) {
 857                default:
 858                        return -1;
 859                case ' ':
 860                        oldlines--;
 861                        newlines--;
 862                        break;
 863                case '-':
 864                        deleted++;
 865                        oldlines--;
 866                        break;
 867                case '+':
 868                        /*
 869                         * We know len is at least two, since we have a '+' and
 870                         * we checked that the last character was a '\n' above.
 871                         * That is, an addition of an empty line would check
 872                         * the '+' here.  Sneaky...
 873                         */
 874                        if ((new_whitespace != nowarn_whitespace) &&
 875                            isspace(line[len-2])) {
 876                                whitespace_error++;
 877                                if (squelch_whitespace_errors &&
 878                                    squelch_whitespace_errors <
 879                                    whitespace_error)
 880                                        ;
 881                                else {
 882                                        fprintf(stderr, "Adds trailing whitespace.\n%s:%d:%.*s\n",
 883                                                patch_input_file,
 884                                                linenr, len-2, line+1);
 885                                }
 886                        }
 887                        added++;
 888                        newlines--;
 889                        break;
 890
 891                /* We allow "\ No newline at end of file". Depending
 892                 * on locale settings when the patch was produced we
 893                 * don't know what this line looks like. The only
 894                 * thing we do know is that it begins with "\ ".
 895                 * Checking for 12 is just for sanity check -- any
 896                 * l10n of "\ No newline..." is at least that long.
 897                 */
 898                case '\\':
 899                        if (len < 12 || memcmp(line, "\\ ", 2))
 900                                return -1;
 901                        break;
 902                }
 903        }
 904        if (oldlines || newlines)
 905                return -1;
 906        /* If a fragment ends with an incomplete line, we failed to include
 907         * it in the above loop because we hit oldlines == newlines == 0
 908         * before seeing it.
 909         */
 910        if (12 < size && !memcmp(line, "\\ ", 2))
 911                offset += linelen(line, size);
 912
 913        patch->lines_added += added;
 914        patch->lines_deleted += deleted;
 915        return offset;
 916}
 917
 918static int parse_single_patch(char *line, unsigned long size, struct patch *patch)
 919{
 920        unsigned long offset = 0;
 921        struct fragment **fragp = &patch->fragments;
 922
 923        while (size > 4 && !memcmp(line, "@@ -", 4)) {
 924                struct fragment *fragment;
 925                int len;
 926
 927                fragment = xmalloc(sizeof(*fragment));
 928                memset(fragment, 0, sizeof(*fragment));
 929                len = parse_fragment(line, size, patch, fragment);
 930                if (len <= 0)
 931                        die("corrupt patch at line %d", linenr);
 932
 933                fragment->patch = line;
 934                fragment->size = len;
 935
 936                *fragp = fragment;
 937                fragp = &fragment->next;
 938
 939                offset += len;
 940                line += len;
 941                size -= len;
 942        }
 943        return offset;
 944}
 945
 946static inline int metadata_changes(struct patch *patch)
 947{
 948        return  patch->is_rename > 0 ||
 949                patch->is_copy > 0 ||
 950                patch->is_new > 0 ||
 951                patch->is_delete ||
 952                (patch->old_mode && patch->new_mode &&
 953                 patch->old_mode != patch->new_mode);
 954}
 955
 956static int parse_chunk(char *buffer, unsigned long size, struct patch *patch)
 957{
 958        int hdrsize, patchsize;
 959        int offset = find_header(buffer, size, &hdrsize, patch);
 960
 961        if (offset < 0)
 962                return offset;
 963
 964        patchsize = parse_single_patch(buffer + offset + hdrsize, size - offset - hdrsize, patch);
 965
 966        if (!patchsize) {
 967                static const char *binhdr[] = {
 968                        "Binary files ",
 969                        "Files ",
 970                        NULL,
 971                };
 972                int i;
 973                int hd = hdrsize + offset;
 974                unsigned long llen = linelen(buffer + hd, size - hd);
 975
 976                if (!memcmp(" differ\n", buffer + hd + llen - 8, 8))
 977                        for (i = 0; binhdr[i]; i++) {
 978                                int len = strlen(binhdr[i]);
 979                                if (len < size - hd &&
 980                                    !memcmp(binhdr[i], buffer + hd, len)) {
 981                                        patch->is_binary = 1;
 982                                        break;
 983                                }
 984                        }
 985
 986                /* Empty patch cannot be applied if:
 987                 * - it is a binary patch and we do not do binary_replace, or
 988                 * - text patch without metadata change
 989                 */
 990                if ((apply || check) &&
 991                    (patch->is_binary
 992                     ? !allow_binary_replacement
 993                     : !metadata_changes(patch)))
 994                        die("patch with only garbage at line %d", linenr);
 995        }
 996
 997        return offset + hdrsize + patchsize;
 998}
 999
1000static const char pluses[] = "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
1001static const char minuses[]= "----------------------------------------------------------------------";
1002
1003static void show_stats(struct patch *patch)
1004{
1005        const char *prefix = "";
1006        char *name = patch->new_name;
1007        char *qname = NULL;
1008        int len, max, add, del, total;
1009
1010        if (!name)
1011                name = patch->old_name;
1012
1013        if (0 < (len = quote_c_style(name, NULL, NULL, 0))) {
1014                qname = xmalloc(len + 1);
1015                quote_c_style(name, qname, NULL, 0);
1016                name = qname;
1017        }
1018
1019        /*
1020         * "scale" the filename
1021         */
1022        len = strlen(name);
1023        max = max_len;
1024        if (max > 50)
1025                max = 50;
1026        if (len > max) {
1027                char *slash;
1028                prefix = "...";
1029                max -= 3;
1030                name += len - max;
1031                slash = strchr(name, '/');
1032                if (slash)
1033                        name = slash;
1034        }
1035        len = max;
1036
1037        /*
1038         * scale the add/delete
1039         */
1040        max = max_change;
1041        if (max + len > 70)
1042                max = 70 - len;
1043
1044        add = patch->lines_added;
1045        del = patch->lines_deleted;
1046        total = add + del;
1047
1048        if (max_change > 0) {
1049                total = (total * max + max_change / 2) / max_change;
1050                add = (add * max + max_change / 2) / max_change;
1051                del = total - add;
1052        }
1053        if (patch->is_binary)
1054                printf(" %s%-*s |  Bin\n", prefix, len, name);
1055        else
1056                printf(" %s%-*s |%5d %.*s%.*s\n", prefix,
1057                       len, name, patch->lines_added + patch->lines_deleted,
1058                       add, pluses, del, minuses);
1059        if (qname)
1060                free(qname);
1061}
1062
1063static int read_old_data(struct stat *st, const char *path, void *buf, unsigned long size)
1064{
1065        int fd;
1066        unsigned long got;
1067
1068        switch (st->st_mode & S_IFMT) {
1069        case S_IFLNK:
1070                return readlink(path, buf, size);
1071        case S_IFREG:
1072                fd = open(path, O_RDONLY);
1073                if (fd < 0)
1074                        return error("unable to open %s", path);
1075                got = 0;
1076                for (;;) {
1077                        int ret = xread(fd, buf + got, size - got);
1078                        if (ret <= 0)
1079                                break;
1080                        got += ret;
1081                }
1082                close(fd);
1083                return got;
1084
1085        default:
1086                return -1;
1087        }
1088}
1089
1090static int find_offset(const char *buf, unsigned long size, const char *fragment, unsigned long fragsize, int line)
1091{
1092        int i;
1093        unsigned long start, backwards, forwards;
1094
1095        if (fragsize > size)
1096                return -1;
1097
1098        start = 0;
1099        if (line > 1) {
1100                unsigned long offset = 0;
1101                i = line-1;
1102                while (offset + fragsize <= size) {
1103                        if (buf[offset++] == '\n') {
1104                                start = offset;
1105                                if (!--i)
1106                                        break;
1107                        }
1108                }
1109        }
1110
1111        /* Exact line number? */
1112        if (!memcmp(buf + start, fragment, fragsize))
1113                return start;
1114
1115        /*
1116         * There's probably some smart way to do this, but I'll leave
1117         * that to the smart and beautiful people. I'm simple and stupid.
1118         */
1119        backwards = start;
1120        forwards = start;
1121        for (i = 0; ; i++) {
1122                unsigned long try;
1123                int n;
1124
1125                /* "backward" */
1126                if (i & 1) {
1127                        if (!backwards) {
1128                                if (forwards + fragsize > size)
1129                                        break;
1130                                continue;
1131                        }
1132                        do {
1133                                --backwards;
1134                        } while (backwards && buf[backwards-1] != '\n');
1135                        try = backwards;
1136                } else {
1137                        while (forwards + fragsize <= size) {
1138                                if (buf[forwards++] == '\n')
1139                                        break;
1140                        }
1141                        try = forwards;
1142                }
1143
1144                if (try + fragsize > size)
1145                        continue;
1146                if (memcmp(buf + try, fragment, fragsize))
1147                        continue;
1148                n = (i >> 1)+1;
1149                if (i & 1)
1150                        n = -n;
1151                return try;
1152        }
1153
1154        /*
1155         * We should start searching forward and backward.
1156         */
1157        return -1;
1158}
1159
1160struct buffer_desc {
1161        char *buffer;
1162        unsigned long size;
1163        unsigned long alloc;
1164};
1165
1166static int apply_line(char *output, const char *patch, int plen)
1167{
1168        /* plen is number of bytes to be copied from patch,
1169         * starting at patch+1 (patch[0] is '+').  Typically
1170         * patch[plen] is '\n'.
1171         */
1172        int add_nl_to_tail = 0;
1173        if ((new_whitespace == strip_whitespace) &&
1174            1 < plen && isspace(patch[plen-1])) {
1175                if (patch[plen] == '\n')
1176                        add_nl_to_tail = 1;
1177                plen--;
1178                while (0 < plen && isspace(patch[plen]))
1179                        plen--;
1180                applied_after_stripping++;
1181        }
1182        memcpy(output, patch + 1, plen);
1183        if (add_nl_to_tail)
1184                output[plen++] = '\n';
1185        return plen;
1186}
1187
1188static int apply_one_fragment(struct buffer_desc *desc, struct fragment *frag)
1189{
1190        char *buf = desc->buffer;
1191        const char *patch = frag->patch;
1192        int offset, size = frag->size;
1193        char *old = xmalloc(size);
1194        char *new = xmalloc(size);
1195        int oldsize = 0, newsize = 0;
1196
1197        while (size > 0) {
1198                int len = linelen(patch, size);
1199                int plen;
1200
1201                if (!len)
1202                        break;
1203
1204                /*
1205                 * "plen" is how much of the line we should use for
1206                 * the actual patch data. Normally we just remove the
1207                 * first character on the line, but if the line is
1208                 * followed by "\ No newline", then we also remove the
1209                 * last one (which is the newline, of course).
1210                 */
1211                plen = len-1;
1212                if (len < size && patch[len] == '\\')
1213                        plen--;
1214                switch (*patch) {
1215                case ' ':
1216                case '-':
1217                        memcpy(old + oldsize, patch + 1, plen);
1218                        oldsize += plen;
1219                        if (*patch == '-')
1220                                break;
1221                /* Fall-through for ' ' */
1222                case '+':
1223                        if (*patch != '+' || !no_add)
1224                                newsize += apply_line(new + newsize, patch,
1225                                                      plen);
1226                        break;
1227                case '@': case '\\':
1228                        /* Ignore it, we already handled it */
1229                        break;
1230                default:
1231                        return -1;
1232                }
1233                patch += len;
1234                size -= len;
1235        }
1236
1237#ifdef NO_ACCURATE_DIFF
1238        if (oldsize > 0 && old[oldsize - 1] == '\n' &&
1239                        newsize > 0 && new[newsize - 1] == '\n') {
1240                oldsize--;
1241                newsize--;
1242        }
1243#endif
1244                        
1245        offset = find_offset(buf, desc->size, old, oldsize, frag->newpos);
1246        if (offset >= 0) {
1247                int diff = newsize - oldsize;
1248                unsigned long size = desc->size + diff;
1249                unsigned long alloc = desc->alloc;
1250
1251                if (size > alloc) {
1252                        alloc = size + 8192;
1253                        desc->alloc = alloc;
1254                        buf = xrealloc(buf, alloc);
1255                        desc->buffer = buf;
1256                }
1257                desc->size = size;
1258                memmove(buf + offset + newsize, buf + offset + oldsize, size - offset - newsize);
1259                memcpy(buf + offset, new, newsize);
1260                offset = 0;
1261        }
1262
1263        free(old);
1264        free(new);
1265        return offset;
1266}
1267
1268static int apply_fragments(struct buffer_desc *desc, struct patch *patch)
1269{
1270        struct fragment *frag = patch->fragments;
1271        const char *name = patch->old_name ? patch->old_name : patch->new_name;
1272
1273        if (patch->is_binary) {
1274                unsigned char sha1[20];
1275
1276                if (!allow_binary_replacement)
1277                        return error("cannot apply binary patch to '%s' "
1278                                     "without --allow-binary-replacement",
1279                                     name);
1280
1281                /* For safety, we require patch index line to contain
1282                 * full 40-byte textual SHA1 for old and new, at least for now.
1283                 */
1284                if (strlen(patch->old_sha1_prefix) != 40 ||
1285                    strlen(patch->new_sha1_prefix) != 40 ||
1286                    get_sha1_hex(patch->old_sha1_prefix, sha1) ||
1287                    get_sha1_hex(patch->new_sha1_prefix, sha1))
1288                        return error("cannot apply binary patch to '%s' "
1289                                     "without full index line", name);
1290
1291                if (patch->old_name) {
1292                        unsigned char hdr[50];
1293                        int hdrlen;
1294
1295                        /* See if the old one matches what the patch
1296                         * applies to.
1297                         */
1298                        write_sha1_file_prepare(desc->buffer, desc->size,
1299                                                "blob", sha1, hdr, &hdrlen);
1300                        if (strcmp(sha1_to_hex(sha1), patch->old_sha1_prefix))
1301                                return error("the patch applies to '%s' (%s), "
1302                                             "which does not match the "
1303                                             "current contents.",
1304                                             name, sha1_to_hex(sha1));
1305                }
1306                else {
1307                        /* Otherwise, the old one must be empty. */
1308                        if (desc->size)
1309                                return error("the patch applies to an empty "
1310                                             "'%s' but it is not empty", name);
1311                }
1312
1313                /* For now, we do not record post-image data in the patch,
1314                 * and require the object already present in the recipient's
1315                 * object database.
1316                 */
1317                if (desc->buffer) {
1318                        free(desc->buffer);
1319                        desc->alloc = desc->size = 0;
1320                }
1321                get_sha1_hex(patch->new_sha1_prefix, sha1);
1322
1323                if (memcmp(sha1, null_sha1, 20)) {
1324                        char type[10];
1325                        unsigned long size;
1326
1327                        desc->buffer = read_sha1_file(sha1, type, &size);
1328                        if (!desc->buffer)
1329                                return error("the necessary postimage %s for "
1330                                             "'%s' does not exist",
1331                                             patch->new_sha1_prefix, name);
1332                        desc->alloc = desc->size = size;
1333                }
1334
1335                return 0;
1336        }
1337
1338        while (frag) {
1339                if (apply_one_fragment(desc, frag) < 0)
1340                        return error("patch failed: %s:%ld",
1341                                     name, frag->oldpos);
1342                frag = frag->next;
1343        }
1344        return 0;
1345}
1346
1347static int apply_data(struct patch *patch, struct stat *st)
1348{
1349        char *buf;
1350        unsigned long size, alloc;
1351        struct buffer_desc desc;
1352
1353        size = 0;
1354        alloc = 0;
1355        buf = NULL;
1356        if (patch->old_name) {
1357                size = st->st_size;
1358                alloc = size + 8192;
1359                buf = xmalloc(alloc);
1360                if (read_old_data(st, patch->old_name, buf, alloc) != size)
1361                        return error("read of %s failed", patch->old_name);
1362        }
1363
1364        desc.size = size;
1365        desc.alloc = alloc;
1366        desc.buffer = buf;
1367        if (apply_fragments(&desc, patch) < 0)
1368                return -1;
1369        patch->result = desc.buffer;
1370        patch->resultsize = desc.size;
1371
1372        if (patch->is_delete && patch->resultsize)
1373                return error("removal patch leaves file contents");
1374
1375        return 0;
1376}
1377
1378static int check_patch(struct patch *patch)
1379{
1380        struct stat st;
1381        const char *old_name = patch->old_name;
1382        const char *new_name = patch->new_name;
1383        const char *name = old_name ? old_name : new_name;
1384
1385        if (old_name) {
1386                int changed;
1387                int stat_ret = lstat(old_name, &st);
1388
1389                if (check_index) {
1390                        int pos = cache_name_pos(old_name, strlen(old_name));
1391                        if (pos < 0)
1392                                return error("%s: does not exist in index",
1393                                             old_name);
1394                        if (stat_ret < 0) {
1395                                struct checkout costate;
1396                                if (errno != ENOENT)
1397                                        return error("%s: %s", old_name,
1398                                                     strerror(errno));
1399                                /* checkout */
1400                                costate.base_dir = "";
1401                                costate.base_dir_len = 0;
1402                                costate.force = 0;
1403                                costate.quiet = 0;
1404                                costate.not_new = 0;
1405                                costate.refresh_cache = 1;
1406                                if (checkout_entry(active_cache[pos],
1407                                                   &costate,
1408                                                   NULL) ||
1409                                    lstat(old_name, &st))
1410                                        return -1;
1411                        }
1412
1413                        changed = ce_match_stat(active_cache[pos], &st, 1);
1414                        if (changed)
1415                                return error("%s: does not match index",
1416                                             old_name);
1417                }
1418                else if (stat_ret < 0)
1419                        return error("%s: %s", old_name, strerror(errno));
1420
1421                if (patch->is_new < 0)
1422                        patch->is_new = 0;
1423                st.st_mode = ntohl(create_ce_mode(st.st_mode));
1424                if (!patch->old_mode)
1425                        patch->old_mode = st.st_mode;
1426                if ((st.st_mode ^ patch->old_mode) & S_IFMT)
1427                        return error("%s: wrong type", old_name);
1428                if (st.st_mode != patch->old_mode)
1429                        fprintf(stderr, "warning: %s has type %o, expected %o\n",
1430                                old_name, st.st_mode, patch->old_mode);
1431        }
1432
1433        if (new_name && (patch->is_new | patch->is_rename | patch->is_copy)) {
1434                if (check_index && cache_name_pos(new_name, strlen(new_name)) >= 0)
1435                        return error("%s: already exists in index", new_name);
1436                if (!lstat(new_name, &st))
1437                        return error("%s: already exists in working directory", new_name);
1438                if (errno != ENOENT)
1439                        return error("%s: %s", new_name, strerror(errno));
1440                if (!patch->new_mode) {
1441                        if (patch->is_new)
1442                                patch->new_mode = S_IFREG | 0644;
1443                        else
1444                                patch->new_mode = patch->old_mode;
1445                }
1446        }
1447
1448        if (new_name && old_name) {
1449                int same = !strcmp(old_name, new_name);
1450                if (!patch->new_mode)
1451                        patch->new_mode = patch->old_mode;
1452                if ((patch->old_mode ^ patch->new_mode) & S_IFMT)
1453                        return error("new mode (%o) of %s does not match old mode (%o)%s%s",
1454                                patch->new_mode, new_name, patch->old_mode,
1455                                same ? "" : " of ", same ? "" : old_name);
1456        }       
1457
1458        if (apply_data(patch, &st) < 0)
1459                return error("%s: patch does not apply", name);
1460        return 0;
1461}
1462
1463static int check_patch_list(struct patch *patch)
1464{
1465        int error = 0;
1466
1467        for (;patch ; patch = patch->next)
1468                error |= check_patch(patch);
1469        return error;
1470}
1471
1472static inline int is_null_sha1(const unsigned char *sha1)
1473{
1474        return !memcmp(sha1, null_sha1, 20);
1475}
1476
1477static void show_index_list(struct patch *list)
1478{
1479        struct patch *patch;
1480
1481        /* Once we start supporting the reverse patch, it may be
1482         * worth showing the new sha1 prefix, but until then...
1483         */
1484        for (patch = list; patch; patch = patch->next) {
1485                const unsigned char *sha1_ptr;
1486                unsigned char sha1[20];
1487                const char *name;
1488
1489                name = patch->old_name ? patch->old_name : patch->new_name;
1490                if (patch->is_new)
1491                        sha1_ptr = null_sha1;
1492                else if (get_sha1(patch->old_sha1_prefix, sha1))
1493                        die("sha1 information is lacking or useless (%s).",
1494                            name);
1495                else
1496                        sha1_ptr = sha1;
1497
1498                printf("%06o %s ",patch->old_mode, sha1_to_hex(sha1_ptr));
1499                if (line_termination && quote_c_style(name, NULL, NULL, 0))
1500                        quote_c_style(name, NULL, stdout, 0);
1501                else
1502                        fputs(name, stdout);
1503                putchar(line_termination);
1504        }
1505}
1506
1507static void stat_patch_list(struct patch *patch)
1508{
1509        int files, adds, dels;
1510
1511        for (files = adds = dels = 0 ; patch ; patch = patch->next) {
1512                files++;
1513                adds += patch->lines_added;
1514                dels += patch->lines_deleted;
1515                show_stats(patch);
1516        }
1517
1518        printf(" %d files changed, %d insertions(+), %d deletions(-)\n", files, adds, dels);
1519}
1520
1521static void numstat_patch_list(struct patch *patch)
1522{
1523        for ( ; patch; patch = patch->next) {
1524                const char *name;
1525                name = patch->old_name ? patch->old_name : patch->new_name;
1526                printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);
1527                if (line_termination && quote_c_style(name, NULL, NULL, 0))
1528                        quote_c_style(name, NULL, stdout, 0);
1529                else
1530                        fputs(name, stdout);
1531                putchar('\n');
1532        }
1533}
1534
1535static void show_file_mode_name(const char *newdelete, unsigned int mode, const char *name)
1536{
1537        if (mode)
1538                printf(" %s mode %06o %s\n", newdelete, mode, name);
1539        else
1540                printf(" %s %s\n", newdelete, name);
1541}
1542
1543static void show_mode_change(struct patch *p, int show_name)
1544{
1545        if (p->old_mode && p->new_mode && p->old_mode != p->new_mode) {
1546                if (show_name)
1547                        printf(" mode change %06o => %06o %s\n",
1548                               p->old_mode, p->new_mode, p->new_name);
1549                else
1550                        printf(" mode change %06o => %06o\n",
1551                               p->old_mode, p->new_mode);
1552        }
1553}
1554
1555static void show_rename_copy(struct patch *p)
1556{
1557        const char *renamecopy = p->is_rename ? "rename" : "copy";
1558        const char *old, *new;
1559
1560        /* Find common prefix */
1561        old = p->old_name;
1562        new = p->new_name;
1563        while (1) {
1564                const char *slash_old, *slash_new;
1565                slash_old = strchr(old, '/');
1566                slash_new = strchr(new, '/');
1567                if (!slash_old ||
1568                    !slash_new ||
1569                    slash_old - old != slash_new - new ||
1570                    memcmp(old, new, slash_new - new))
1571                        break;
1572                old = slash_old + 1;
1573                new = slash_new + 1;
1574        }
1575        /* p->old_name thru old is the common prefix, and old and new
1576         * through the end of names are renames
1577         */
1578        if (old != p->old_name)
1579                printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy,
1580                       (int)(old - p->old_name), p->old_name,
1581                       old, new, p->score);
1582        else
1583                printf(" %s %s => %s (%d%%)\n", renamecopy,
1584                       p->old_name, p->new_name, p->score);
1585        show_mode_change(p, 0);
1586}
1587
1588static void summary_patch_list(struct patch *patch)
1589{
1590        struct patch *p;
1591
1592        for (p = patch; p; p = p->next) {
1593                if (p->is_new)
1594                        show_file_mode_name("create", p->new_mode, p->new_name);
1595                else if (p->is_delete)
1596                        show_file_mode_name("delete", p->old_mode, p->old_name);
1597                else {
1598                        if (p->is_rename || p->is_copy)
1599                                show_rename_copy(p);
1600                        else {
1601                                if (p->score) {
1602                                        printf(" rewrite %s (%d%%)\n",
1603                                               p->new_name, p->score);
1604                                        show_mode_change(p, 0);
1605                                }
1606                                else
1607                                        show_mode_change(p, 1);
1608                        }
1609                }
1610        }
1611}
1612
1613static void patch_stats(struct patch *patch)
1614{
1615        int lines = patch->lines_added + patch->lines_deleted;
1616
1617        if (lines > max_change)
1618                max_change = lines;
1619        if (patch->old_name) {
1620                int len = quote_c_style(patch->old_name, NULL, NULL, 0);
1621                if (!len)
1622                        len = strlen(patch->old_name);
1623                if (len > max_len)
1624                        max_len = len;
1625        }
1626        if (patch->new_name) {
1627                int len = quote_c_style(patch->new_name, NULL, NULL, 0);
1628                if (!len)
1629                        len = strlen(patch->new_name);
1630                if (len > max_len)
1631                        max_len = len;
1632        }
1633}
1634
1635static void remove_file(struct patch *patch)
1636{
1637        if (write_index) {
1638                if (remove_file_from_cache(patch->old_name) < 0)
1639                        die("unable to remove %s from index", patch->old_name);
1640        }
1641        unlink(patch->old_name);
1642}
1643
1644static void add_index_file(const char *path, unsigned mode, void *buf, unsigned long size)
1645{
1646        struct stat st;
1647        struct cache_entry *ce;
1648        int namelen = strlen(path);
1649        unsigned ce_size = cache_entry_size(namelen);
1650
1651        if (!write_index)
1652                return;
1653
1654        ce = xmalloc(ce_size);
1655        memset(ce, 0, ce_size);
1656        memcpy(ce->name, path, namelen);
1657        ce->ce_mode = create_ce_mode(mode);
1658        ce->ce_flags = htons(namelen);
1659        if (lstat(path, &st) < 0)
1660                die("unable to stat newly created file %s", path);
1661        fill_stat_cache_info(ce, &st);
1662        if (write_sha1_file(buf, size, "blob", ce->sha1) < 0)
1663                die("unable to create backing store for newly created file %s", path);
1664        if (add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) < 0)
1665                die("unable to add cache entry for %s", path);
1666}
1667
1668static int try_create_file(const char *path, unsigned int mode, const char *buf, unsigned long size)
1669{
1670        int fd;
1671
1672        if (S_ISLNK(mode))
1673                return symlink(buf, path);
1674        fd = open(path, O_CREAT | O_EXCL | O_WRONLY, (mode & 0100) ? 0777 : 0666);
1675        if (fd < 0)
1676                return -1;
1677        while (size) {
1678                int written = xwrite(fd, buf, size);
1679                if (written < 0)
1680                        die("writing file %s: %s", path, strerror(errno));
1681                if (!written)
1682                        die("out of space writing file %s", path);
1683                buf += written;
1684                size -= written;
1685        }
1686        if (close(fd) < 0)
1687                die("closing file %s: %s", path, strerror(errno));
1688        return 0;
1689}
1690
1691/*
1692 * We optimistically assume that the directories exist,
1693 * which is true 99% of the time anyway. If they don't,
1694 * we create them and try again.
1695 */
1696static void create_one_file(char *path, unsigned mode, const char *buf, unsigned long size)
1697{
1698        if (!try_create_file(path, mode, buf, size))
1699                return;
1700
1701        if (errno == ENOENT) {
1702                if (safe_create_leading_directories(path))
1703                        return;
1704                if (!try_create_file(path, mode, buf, size))
1705                        return;
1706        }
1707
1708        if (errno == EEXIST) {
1709                unsigned int nr = getpid();
1710
1711                for (;;) {
1712                        const char *newpath;
1713                        newpath = mkpath("%s~%u", path, nr);
1714                        if (!try_create_file(newpath, mode, buf, size)) {
1715                                if (!rename(newpath, path))
1716                                        return;
1717                                unlink(newpath);
1718                                break;
1719                        }
1720                        if (errno != EEXIST)
1721                                break;
1722                        ++nr;
1723                }
1724        }
1725        die("unable to write file %s mode %o", path, mode);
1726}
1727
1728static void create_file(struct patch *patch)
1729{
1730        char *path = patch->new_name;
1731        unsigned mode = patch->new_mode;
1732        unsigned long size = patch->resultsize;
1733        char *buf = patch->result;
1734
1735        if (!mode)
1736                mode = S_IFREG | 0644;
1737        create_one_file(path, mode, buf, size); 
1738        add_index_file(path, mode, buf, size);
1739}
1740
1741static void write_out_one_result(struct patch *patch)
1742{
1743        if (patch->is_delete > 0) {
1744                remove_file(patch);
1745                return;
1746        }
1747        if (patch->is_new > 0 || patch->is_copy) {
1748                create_file(patch);
1749                return;
1750        }
1751        /*
1752         * Rename or modification boils down to the same
1753         * thing: remove the old, write the new
1754         */
1755        remove_file(patch);
1756        create_file(patch);
1757}
1758
1759static void write_out_results(struct patch *list, int skipped_patch)
1760{
1761        if (!list && !skipped_patch)
1762                die("No changes");
1763
1764        while (list) {
1765                write_out_one_result(list);
1766                list = list->next;
1767        }
1768}
1769
1770static struct cache_file cache_file;
1771
1772static struct excludes {
1773        struct excludes *next;
1774        const char *path;
1775} *excludes;
1776
1777static int use_patch(struct patch *p)
1778{
1779        const char *pathname = p->new_name ? p->new_name : p->old_name;
1780        struct excludes *x = excludes;
1781        while (x) {
1782                if (fnmatch(x->path, pathname, 0) == 0)
1783                        return 0;
1784                x = x->next;
1785        }
1786        if (0 < prefix_length) {
1787                int pathlen = strlen(pathname);
1788                if (pathlen <= prefix_length ||
1789                    memcmp(prefix, pathname, prefix_length))
1790                        return 0;
1791        }
1792        return 1;
1793}
1794
1795static int apply_patch(int fd, const char *filename)
1796{
1797        int newfd;
1798        unsigned long offset, size;
1799        char *buffer = read_patch_file(fd, &size);
1800        struct patch *list = NULL, **listp = &list;
1801        int skipped_patch = 0;
1802
1803        patch_input_file = filename;
1804        if (!buffer)
1805                return -1;
1806        offset = 0;
1807        while (size > 0) {
1808                struct patch *patch;
1809                int nr;
1810
1811                patch = xmalloc(sizeof(*patch));
1812                memset(patch, 0, sizeof(*patch));
1813                nr = parse_chunk(buffer + offset, size, patch);
1814                if (nr < 0)
1815                        break;
1816                if (use_patch(patch)) {
1817                        patch_stats(patch);
1818                        *listp = patch;
1819                        listp = &patch->next;
1820                } else {
1821                        /* perhaps free it a bit better? */
1822                        free(patch);
1823                        skipped_patch++;
1824                }
1825                offset += nr;
1826                size -= nr;
1827        }
1828
1829        newfd = -1;
1830        if (whitespace_error && (new_whitespace == error_on_whitespace))
1831                apply = 0;
1832
1833        write_index = check_index && apply;
1834        if (write_index)
1835                newfd = hold_index_file_for_update(&cache_file, get_index_file());
1836        if (check_index) {
1837                if (read_cache() < 0)
1838                        die("unable to read index file");
1839        }
1840
1841        if ((check || apply) && check_patch_list(list) < 0)
1842                exit(1);
1843
1844        if (apply)
1845                write_out_results(list, skipped_patch);
1846
1847        if (write_index) {
1848                if (write_cache(newfd, active_cache, active_nr) ||
1849                    commit_index_file(&cache_file))
1850                        die("Unable to write new cachefile");
1851        }
1852
1853        if (show_index_info)
1854                show_index_list(list);
1855
1856        if (diffstat)
1857                stat_patch_list(list);
1858
1859        if (numstat)
1860                numstat_patch_list(list);
1861
1862        if (summary)
1863                summary_patch_list(list);
1864
1865        free(buffer);
1866        return 0;
1867}
1868
1869static int git_apply_config(const char *var, const char *value)
1870{
1871        if (!strcmp(var, "apply.whitespace")) {
1872                apply_default_whitespace = strdup(value);
1873                return 0;
1874        }
1875        return git_default_config(var, value);
1876}
1877
1878
1879int main(int argc, char **argv)
1880{
1881        int i;
1882        int read_stdin = 1;
1883        const char *whitespace_option = NULL;
1884
1885        for (i = 1; i < argc; i++) {
1886                const char *arg = argv[i];
1887                int fd;
1888
1889                if (!strcmp(arg, "-")) {
1890                        apply_patch(0, "<stdin>");
1891                        read_stdin = 0;
1892                        continue;
1893                }
1894                if (!strncmp(arg, "--exclude=", 10)) {
1895                        struct excludes *x = xmalloc(sizeof(*x));
1896                        x->path = arg + 10;
1897                        x->next = excludes;
1898                        excludes = x;
1899                        continue;
1900                }
1901                if (!strncmp(arg, "-p", 2)) {
1902                        p_value = atoi(arg + 2);
1903                        continue;
1904                }
1905                if (!strcmp(arg, "--no-add")) {
1906                        no_add = 1;
1907                        continue;
1908                }
1909                if (!strcmp(arg, "--stat")) {
1910                        apply = 0;
1911                        diffstat = 1;
1912                        continue;
1913                }
1914                if (!strcmp(arg, "--allow-binary-replacement")) {
1915                        allow_binary_replacement = 1;
1916                        continue;
1917                }
1918                if (!strcmp(arg, "--numstat")) {
1919                        apply = 0;
1920                        numstat = 1;
1921                        continue;
1922                }
1923                if (!strcmp(arg, "--summary")) {
1924                        apply = 0;
1925                        summary = 1;
1926                        continue;
1927                }
1928                if (!strcmp(arg, "--check")) {
1929                        apply = 0;
1930                        check = 1;
1931                        continue;
1932                }
1933                if (!strcmp(arg, "--index")) {
1934                        check_index = 1;
1935                        continue;
1936                }
1937                if (!strcmp(arg, "--apply")) {
1938                        apply = 1;
1939                        continue;
1940                }
1941                if (!strcmp(arg, "--index-info")) {
1942                        apply = 0;
1943                        show_index_info = 1;
1944                        continue;
1945                }
1946                if (!strcmp(arg, "-z")) {
1947                        line_termination = 0;
1948                        continue;
1949                }
1950                if (!strncmp(arg, "--whitespace=", 13)) {
1951                        whitespace_option = arg + 13;
1952                        parse_whitespace_option(arg + 13);
1953                        continue;
1954                }
1955
1956                if (check_index && prefix_length < 0) {
1957                        prefix = setup_git_directory();
1958                        prefix_length = prefix ? strlen(prefix) : 0;
1959                        git_config(git_apply_config);
1960                        if (!whitespace_option && apply_default_whitespace)
1961                                parse_whitespace_option(apply_default_whitespace);
1962                }
1963                if (0 < prefix_length)
1964                        arg = prefix_filename(prefix, prefix_length, arg);
1965
1966                fd = open(arg, O_RDONLY);
1967                if (fd < 0)
1968                        usage(apply_usage);
1969                read_stdin = 0;
1970                set_default_whitespace_mode(whitespace_option);
1971                apply_patch(fd, arg);
1972                close(fd);
1973        }
1974        set_default_whitespace_mode(whitespace_option);
1975        if (read_stdin)
1976                apply_patch(0, "<stdin>");
1977        if (whitespace_error) {
1978                if (squelch_whitespace_errors &&
1979                    squelch_whitespace_errors < whitespace_error) {
1980                        int squelched =
1981                                whitespace_error - squelch_whitespace_errors;
1982                        fprintf(stderr, "warning: squelched %d whitespace error%s\n",
1983                                squelched,
1984                                squelched == 1 ? "" : "s");
1985                }
1986                if (new_whitespace == error_on_whitespace)
1987                        die("%d line%s add%s trailing whitespaces.",
1988                            whitespace_error,
1989                            whitespace_error == 1 ? "" : "s",
1990                            whitespace_error == 1 ? "s" : "");
1991                if (applied_after_stripping)
1992                        fprintf(stderr, "warning: %d line%s applied after"
1993                                " stripping trailing whitespaces.\n",
1994                                applied_after_stripping,
1995                                applied_after_stripping == 1 ? "" : "s");
1996                else if (whitespace_error)
1997                        fprintf(stderr, "warning: %d line%s add%s trailing"
1998                                " whitespaces.\n",
1999                                whitespace_error,
2000                                whitespace_error == 1 ? "" : "s",
2001                                whitespace_error == 1 ? "s" : "");
2002        }
2003        return 0;
2004}