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 "cache.h" 10#include "lockfile.h" 11#include "cache-tree.h" 12#include "quote.h" 13#include "blob.h" 14#include "delta.h" 15#include "builtin.h" 16#include "string-list.h" 17#include "dir.h" 18#include "diff.h" 19#include "parse-options.h" 20#include "xdiff-interface.h" 21#include "ll-merge.h" 22#include "rerere.h" 23#include "apply.h" 24 25static const char * const apply_usage[] = { 26 N_("git apply [<options>] [<patch>...]"), 27 NULL 28}; 29 30static void parse_whitespace_option(struct apply_state *state, const char *option) 31{ 32 if (!option) { 33 state->ws_error_action = warn_on_ws_error; 34 return; 35 } 36 if (!strcmp(option, "warn")) { 37 state->ws_error_action = warn_on_ws_error; 38 return; 39 } 40 if (!strcmp(option, "nowarn")) { 41 state->ws_error_action = nowarn_ws_error; 42 return; 43 } 44 if (!strcmp(option, "error")) { 45 state->ws_error_action = die_on_ws_error; 46 return; 47 } 48 if (!strcmp(option, "error-all")) { 49 state->ws_error_action = die_on_ws_error; 50 state->squelch_whitespace_errors = 0; 51 return; 52 } 53 if (!strcmp(option, "strip") || !strcmp(option, "fix")) { 54 state->ws_error_action = correct_ws_error; 55 return; 56 } 57 die(_("unrecognized whitespace option '%s'"), option); 58} 59 60static void parse_ignorewhitespace_option(struct apply_state *state, 61 const char *option) 62{ 63 if (!option || !strcmp(option, "no") || 64 !strcmp(option, "false") || !strcmp(option, "never") || 65 !strcmp(option, "none")) { 66 state->ws_ignore_action = ignore_ws_none; 67 return; 68 } 69 if (!strcmp(option, "change")) { 70 state->ws_ignore_action = ignore_ws_change; 71 return; 72 } 73 die(_("unrecognized whitespace ignore option '%s'"), option); 74} 75 76static void set_default_whitespace_mode(struct apply_state *state) 77{ 78 if (!state->whitespace_option && !apply_default_whitespace) 79 state->ws_error_action = (state->apply ? warn_on_ws_error : nowarn_ws_error); 80} 81 82/* 83 * This represents one "hunk" from a patch, starting with 84 * "@@ -oldpos,oldlines +newpos,newlines @@" marker. The 85 * patch text is pointed at by patch, and its byte length 86 * is stored in size. leading and trailing are the number 87 * of context lines. 88 */ 89struct fragment { 90 unsigned long leading, trailing; 91 unsigned long oldpos, oldlines; 92 unsigned long newpos, newlines; 93 /* 94 * 'patch' is usually borrowed from buf in apply_patch(), 95 * but some codepaths store an allocated buffer. 96 */ 97 const char *patch; 98 unsigned free_patch:1, 99 rejected:1; 100 int size; 101 int linenr; 102 struct fragment *next; 103}; 104 105/* 106 * When dealing with a binary patch, we reuse "leading" field 107 * to store the type of the binary hunk, either deflated "delta" 108 * or deflated "literal". 109 */ 110#define binary_patch_method leading 111#define BINARY_DELTA_DEFLATED 1 112#define BINARY_LITERAL_DEFLATED 2 113 114/* 115 * This represents a "patch" to a file, both metainfo changes 116 * such as creation/deletion, filemode and content changes represented 117 * as a series of fragments. 118 */ 119struct patch { 120 char *new_name, *old_name, *def_name; 121 unsigned int old_mode, new_mode; 122 int is_new, is_delete; /* -1 = unknown, 0 = false, 1 = true */ 123 int rejected; 124 unsigned ws_rule; 125 int lines_added, lines_deleted; 126 int score; 127 unsigned int is_toplevel_relative:1; 128 unsigned int inaccurate_eof:1; 129 unsigned int is_binary:1; 130 unsigned int is_copy:1; 131 unsigned int is_rename:1; 132 unsigned int recount:1; 133 unsigned int conflicted_threeway:1; 134 unsigned int direct_to_threeway:1; 135 struct fragment *fragments; 136 char *result; 137 size_t resultsize; 138 char old_sha1_prefix[41]; 139 char new_sha1_prefix[41]; 140 struct patch *next; 141 142 /* three-way fallback result */ 143 struct object_id threeway_stage[3]; 144}; 145 146static void free_fragment_list(struct fragment *list) 147{ 148 while (list) { 149 struct fragment *next = list->next; 150 if (list->free_patch) 151 free((char *)list->patch); 152 free(list); 153 list = next; 154 } 155} 156 157static void free_patch(struct patch *patch) 158{ 159 free_fragment_list(patch->fragments); 160 free(patch->def_name); 161 free(patch->old_name); 162 free(patch->new_name); 163 free(patch->result); 164 free(patch); 165} 166 167static void free_patch_list(struct patch *list) 168{ 169 while (list) { 170 struct patch *next = list->next; 171 free_patch(list); 172 list = next; 173 } 174} 175 176/* 177 * A line in a file, len-bytes long (includes the terminating LF, 178 * except for an incomplete line at the end if the file ends with 179 * one), and its contents hashes to 'hash'. 180 */ 181struct line { 182 size_t len; 183 unsigned hash : 24; 184 unsigned flag : 8; 185#define LINE_COMMON 1 186#define LINE_PATCHED 2 187}; 188 189/* 190 * This represents a "file", which is an array of "lines". 191 */ 192struct image { 193 char *buf; 194 size_t len; 195 size_t nr; 196 size_t alloc; 197 struct line *line_allocated; 198 struct line *line; 199}; 200 201static uint32_t hash_line(const char *cp, size_t len) 202{ 203 size_t i; 204 uint32_t h; 205 for (i = 0, h = 0; i < len; i++) { 206 if (!isspace(cp[i])) { 207 h = h * 3 + (cp[i] & 0xff); 208 } 209 } 210 return h; 211} 212 213/* 214 * Compare lines s1 of length n1 and s2 of length n2, ignoring 215 * whitespace difference. Returns 1 if they match, 0 otherwise 216 */ 217static int fuzzy_matchlines(const char *s1, size_t n1, 218 const char *s2, size_t n2) 219{ 220 const char *last1 = s1 + n1 - 1; 221 const char *last2 = s2 + n2 - 1; 222 int result = 0; 223 224 /* ignore line endings */ 225 while ((*last1 == '\r') || (*last1 == '\n')) 226 last1--; 227 while ((*last2 == '\r') || (*last2 == '\n')) 228 last2--; 229 230 /* skip leading whitespaces, if both begin with whitespace */ 231 if (s1 <= last1 && s2 <= last2 && isspace(*s1) && isspace(*s2)) { 232 while (isspace(*s1) && (s1 <= last1)) 233 s1++; 234 while (isspace(*s2) && (s2 <= last2)) 235 s2++; 236 } 237 /* early return if both lines are empty */ 238 if ((s1 > last1) && (s2 > last2)) 239 return 1; 240 while (!result) { 241 result = *s1++ - *s2++; 242 /* 243 * Skip whitespace inside. We check for whitespace on 244 * both buffers because we don't want "a b" to match 245 * "ab" 246 */ 247 if (isspace(*s1) && isspace(*s2)) { 248 while (isspace(*s1) && s1 <= last1) 249 s1++; 250 while (isspace(*s2) && s2 <= last2) 251 s2++; 252 } 253 /* 254 * If we reached the end on one side only, 255 * lines don't match 256 */ 257 if ( 258 ((s2 > last2) && (s1 <= last1)) || 259 ((s1 > last1) && (s2 <= last2))) 260 return 0; 261 if ((s1 > last1) && (s2 > last2)) 262 break; 263 } 264 265 return !result; 266} 267 268static void add_line_info(struct image *img, const char *bol, size_t len, unsigned flag) 269{ 270 ALLOC_GROW(img->line_allocated, img->nr + 1, img->alloc); 271 img->line_allocated[img->nr].len = len; 272 img->line_allocated[img->nr].hash = hash_line(bol, len); 273 img->line_allocated[img->nr].flag = flag; 274 img->nr++; 275} 276 277/* 278 * "buf" has the file contents to be patched (read from various sources). 279 * attach it to "image" and add line-based index to it. 280 * "image" now owns the "buf". 281 */ 282static void prepare_image(struct image *image, char *buf, size_t len, 283 int prepare_linetable) 284{ 285 const char *cp, *ep; 286 287 memset(image, 0, sizeof(*image)); 288 image->buf = buf; 289 image->len = len; 290 291 if (!prepare_linetable) 292 return; 293 294 ep = image->buf + image->len; 295 cp = image->buf; 296 while (cp < ep) { 297 const char *next; 298 for (next = cp; next < ep && *next != '\n'; next++) 299 ; 300 if (next < ep) 301 next++; 302 add_line_info(image, cp, next - cp, 0); 303 cp = next; 304 } 305 image->line = image->line_allocated; 306} 307 308static void clear_image(struct image *image) 309{ 310 free(image->buf); 311 free(image->line_allocated); 312 memset(image, 0, sizeof(*image)); 313} 314 315/* fmt must contain _one_ %s and no other substitution */ 316static void say_patch_name(FILE *output, const char *fmt, struct patch *patch) 317{ 318 struct strbuf sb = STRBUF_INIT; 319 320 if (patch->old_name && patch->new_name && 321 strcmp(patch->old_name, patch->new_name)) { 322 quote_c_style(patch->old_name, &sb, NULL, 0); 323 strbuf_addstr(&sb, " => "); 324 quote_c_style(patch->new_name, &sb, NULL, 0); 325 } else { 326 const char *n = patch->new_name; 327 if (!n) 328 n = patch->old_name; 329 quote_c_style(n, &sb, NULL, 0); 330 } 331 fprintf(output, fmt, sb.buf); 332 fputc('\n', output); 333 strbuf_release(&sb); 334} 335 336#define SLOP (16) 337 338static int read_patch_file(struct strbuf *sb, int fd) 339{ 340 if (strbuf_read(sb, fd, 0) < 0) 341 return error_errno("git apply: failed to read"); 342 343 /* 344 * Make sure that we have some slop in the buffer 345 * so that we can do speculative "memcmp" etc, and 346 * see to it that it is NUL-filled. 347 */ 348 strbuf_grow(sb, SLOP); 349 memset(sb->buf + sb->len, 0, SLOP); 350 return 0; 351} 352 353static unsigned long linelen(const char *buffer, unsigned long size) 354{ 355 unsigned long len = 0; 356 while (size--) { 357 len++; 358 if (*buffer++ == '\n') 359 break; 360 } 361 return len; 362} 363 364static int is_dev_null(const char *str) 365{ 366 return skip_prefix(str, "/dev/null", &str) && isspace(*str); 367} 368 369#define TERM_SPACE 1 370#define TERM_TAB 2 371 372static int name_terminate(int c, int terminate) 373{ 374 if (c == ' ' && !(terminate & TERM_SPACE)) 375 return 0; 376 if (c == '\t' && !(terminate & TERM_TAB)) 377 return 0; 378 379 return 1; 380} 381 382/* remove double slashes to make --index work with such filenames */ 383static char *squash_slash(char *name) 384{ 385 int i = 0, j = 0; 386 387 if (!name) 388 return NULL; 389 390 while (name[i]) { 391 if ((name[j++] = name[i++]) == '/') 392 while (name[i] == '/') 393 i++; 394 } 395 name[j] = '\0'; 396 return name; 397} 398 399static char *find_name_gnu(struct apply_state *state, 400 const char *line, 401 const char *def, 402 int p_value) 403{ 404 struct strbuf name = STRBUF_INIT; 405 char *cp; 406 407 /* 408 * Proposed "new-style" GNU patch/diff format; see 409 * http://marc.info/?l=git&m=112927316408690&w=2 410 */ 411 if (unquote_c_style(&name, line, NULL)) { 412 strbuf_release(&name); 413 return NULL; 414 } 415 416 for (cp = name.buf; p_value; p_value--) { 417 cp = strchr(cp, '/'); 418 if (!cp) { 419 strbuf_release(&name); 420 return NULL; 421 } 422 cp++; 423 } 424 425 strbuf_remove(&name, 0, cp - name.buf); 426 if (state->root.len) 427 strbuf_insert(&name, 0, state->root.buf, state->root.len); 428 return squash_slash(strbuf_detach(&name, NULL)); 429} 430 431static size_t sane_tz_len(const char *line, size_t len) 432{ 433 const char *tz, *p; 434 435 if (len < strlen(" +0500") || line[len-strlen(" +0500")] != ' ') 436 return 0; 437 tz = line + len - strlen(" +0500"); 438 439 if (tz[1] != '+' && tz[1] != '-') 440 return 0; 441 442 for (p = tz + 2; p != line + len; p++) 443 if (!isdigit(*p)) 444 return 0; 445 446 return line + len - tz; 447} 448 449static size_t tz_with_colon_len(const char *line, size_t len) 450{ 451 const char *tz, *p; 452 453 if (len < strlen(" +08:00") || line[len - strlen(":00")] != ':') 454 return 0; 455 tz = line + len - strlen(" +08:00"); 456 457 if (tz[0] != ' ' || (tz[1] != '+' && tz[1] != '-')) 458 return 0; 459 p = tz + 2; 460 if (!isdigit(*p++) || !isdigit(*p++) || *p++ != ':' || 461 !isdigit(*p++) || !isdigit(*p++)) 462 return 0; 463 464 return line + len - tz; 465} 466 467static size_t date_len(const char *line, size_t len) 468{ 469 const char *date, *p; 470 471 if (len < strlen("72-02-05") || line[len-strlen("-05")] != '-') 472 return 0; 473 p = date = line + len - strlen("72-02-05"); 474 475 if (!isdigit(*p++) || !isdigit(*p++) || *p++ != '-' || 476 !isdigit(*p++) || !isdigit(*p++) || *p++ != '-' || 477 !isdigit(*p++) || !isdigit(*p++)) /* Not a date. */ 478 return 0; 479 480 if (date - line >= strlen("19") && 481 isdigit(date[-1]) && isdigit(date[-2])) /* 4-digit year */ 482 date -= strlen("19"); 483 484 return line + len - date; 485} 486 487static size_t short_time_len(const char *line, size_t len) 488{ 489 const char *time, *p; 490 491 if (len < strlen(" 07:01:32") || line[len-strlen(":32")] != ':') 492 return 0; 493 p = time = line + len - strlen(" 07:01:32"); 494 495 /* Permit 1-digit hours? */ 496 if (*p++ != ' ' || 497 !isdigit(*p++) || !isdigit(*p++) || *p++ != ':' || 498 !isdigit(*p++) || !isdigit(*p++) || *p++ != ':' || 499 !isdigit(*p++) || !isdigit(*p++)) /* Not a time. */ 500 return 0; 501 502 return line + len - time; 503} 504 505static size_t fractional_time_len(const char *line, size_t len) 506{ 507 const char *p; 508 size_t n; 509 510 /* Expected format: 19:41:17.620000023 */ 511 if (!len || !isdigit(line[len - 1])) 512 return 0; 513 p = line + len - 1; 514 515 /* Fractional seconds. */ 516 while (p > line && isdigit(*p)) 517 p--; 518 if (*p != '.') 519 return 0; 520 521 /* Hours, minutes, and whole seconds. */ 522 n = short_time_len(line, p - line); 523 if (!n) 524 return 0; 525 526 return line + len - p + n; 527} 528 529static size_t trailing_spaces_len(const char *line, size_t len) 530{ 531 const char *p; 532 533 /* Expected format: ' ' x (1 or more) */ 534 if (!len || line[len - 1] != ' ') 535 return 0; 536 537 p = line + len; 538 while (p != line) { 539 p--; 540 if (*p != ' ') 541 return line + len - (p + 1); 542 } 543 544 /* All spaces! */ 545 return len; 546} 547 548static size_t diff_timestamp_len(const char *line, size_t len) 549{ 550 const char *end = line + len; 551 size_t n; 552 553 /* 554 * Posix: 2010-07-05 19:41:17 555 * GNU: 2010-07-05 19:41:17.620000023 -0500 556 */ 557 558 if (!isdigit(end[-1])) 559 return 0; 560 561 n = sane_tz_len(line, end - line); 562 if (!n) 563 n = tz_with_colon_len(line, end - line); 564 end -= n; 565 566 n = short_time_len(line, end - line); 567 if (!n) 568 n = fractional_time_len(line, end - line); 569 end -= n; 570 571 n = date_len(line, end - line); 572 if (!n) /* No date. Too bad. */ 573 return 0; 574 end -= n; 575 576 if (end == line) /* No space before date. */ 577 return 0; 578 if (end[-1] == '\t') { /* Success! */ 579 end--; 580 return line + len - end; 581 } 582 if (end[-1] != ' ') /* No space before date. */ 583 return 0; 584 585 /* Whitespace damage. */ 586 end -= trailing_spaces_len(line, end - line); 587 return line + len - end; 588} 589 590static char *find_name_common(struct apply_state *state, 591 const char *line, 592 const char *def, 593 int p_value, 594 const char *end, 595 int terminate) 596{ 597 int len; 598 const char *start = NULL; 599 600 if (p_value == 0) 601 start = line; 602 while (line != end) { 603 char c = *line; 604 605 if (!end && isspace(c)) { 606 if (c == '\n') 607 break; 608 if (name_terminate(c, terminate)) 609 break; 610 } 611 line++; 612 if (c == '/' && !--p_value) 613 start = line; 614 } 615 if (!start) 616 return squash_slash(xstrdup_or_null(def)); 617 len = line - start; 618 if (!len) 619 return squash_slash(xstrdup_or_null(def)); 620 621 /* 622 * Generally we prefer the shorter name, especially 623 * if the other one is just a variation of that with 624 * something else tacked on to the end (ie "file.orig" 625 * or "file~"). 626 */ 627 if (def) { 628 int deflen = strlen(def); 629 if (deflen < len && !strncmp(start, def, deflen)) 630 return squash_slash(xstrdup(def)); 631 } 632 633 if (state->root.len) { 634 char *ret = xstrfmt("%s%.*s", state->root.buf, len, start); 635 return squash_slash(ret); 636 } 637 638 return squash_slash(xmemdupz(start, len)); 639} 640 641static char *find_name(struct apply_state *state, 642 const char *line, 643 char *def, 644 int p_value, 645 int terminate) 646{ 647 if (*line == '"') { 648 char *name = find_name_gnu(state, line, def, p_value); 649 if (name) 650 return name; 651 } 652 653 return find_name_common(state, line, def, p_value, NULL, terminate); 654} 655 656static char *find_name_traditional(struct apply_state *state, 657 const char *line, 658 char *def, 659 int p_value) 660{ 661 size_t len; 662 size_t date_len; 663 664 if (*line == '"') { 665 char *name = find_name_gnu(state, line, def, p_value); 666 if (name) 667 return name; 668 } 669 670 len = strchrnul(line, '\n') - line; 671 date_len = diff_timestamp_len(line, len); 672 if (!date_len) 673 return find_name_common(state, line, def, p_value, NULL, TERM_TAB); 674 len -= date_len; 675 676 return find_name_common(state, line, def, p_value, line + len, 0); 677} 678 679static int count_slashes(const char *cp) 680{ 681 int cnt = 0; 682 char ch; 683 684 while ((ch = *cp++)) 685 if (ch == '/') 686 cnt++; 687 return cnt; 688} 689 690/* 691 * Given the string after "--- " or "+++ ", guess the appropriate 692 * p_value for the given patch. 693 */ 694static int guess_p_value(struct apply_state *state, const char *nameline) 695{ 696 char *name, *cp; 697 int val = -1; 698 699 if (is_dev_null(nameline)) 700 return -1; 701 name = find_name_traditional(state, nameline, NULL, 0); 702 if (!name) 703 return -1; 704 cp = strchr(name, '/'); 705 if (!cp) 706 val = 0; 707 else if (state->prefix) { 708 /* 709 * Does it begin with "a/$our-prefix" and such? Then this is 710 * very likely to apply to our directory. 711 */ 712 if (!strncmp(name, state->prefix, state->prefix_length)) 713 val = count_slashes(state->prefix); 714 else { 715 cp++; 716 if (!strncmp(cp, state->prefix, state->prefix_length)) 717 val = count_slashes(state->prefix) + 1; 718 } 719 } 720 free(name); 721 return val; 722} 723 724/* 725 * Does the ---/+++ line have the POSIX timestamp after the last HT? 726 * GNU diff puts epoch there to signal a creation/deletion event. Is 727 * this such a timestamp? 728 */ 729static int has_epoch_timestamp(const char *nameline) 730{ 731 /* 732 * We are only interested in epoch timestamp; any non-zero 733 * fraction cannot be one, hence "(\.0+)?" in the regexp below. 734 * For the same reason, the date must be either 1969-12-31 or 735 * 1970-01-01, and the seconds part must be "00". 736 */ 737 const char stamp_regexp[] = 738 "^(1969-12-31|1970-01-01)" 739 " " 740 "[0-2][0-9]:[0-5][0-9]:00(\\.0+)?" 741 " " 742 "([-+][0-2][0-9]:?[0-5][0-9])\n"; 743 const char *timestamp = NULL, *cp, *colon; 744 static regex_t *stamp; 745 regmatch_t m[10]; 746 int zoneoffset; 747 int hourminute; 748 int status; 749 750 for (cp = nameline; *cp != '\n'; cp++) { 751 if (*cp == '\t') 752 timestamp = cp + 1; 753 } 754 if (!timestamp) 755 return 0; 756 if (!stamp) { 757 stamp = xmalloc(sizeof(*stamp)); 758 if (regcomp(stamp, stamp_regexp, REG_EXTENDED)) { 759 warning(_("Cannot prepare timestamp regexp %s"), 760 stamp_regexp); 761 return 0; 762 } 763 } 764 765 status = regexec(stamp, timestamp, ARRAY_SIZE(m), m, 0); 766 if (status) { 767 if (status != REG_NOMATCH) 768 warning(_("regexec returned %d for input: %s"), 769 status, timestamp); 770 return 0; 771 } 772 773 zoneoffset = strtol(timestamp + m[3].rm_so + 1, (char **) &colon, 10); 774 if (*colon == ':') 775 zoneoffset = zoneoffset * 60 + strtol(colon + 1, NULL, 10); 776 else 777 zoneoffset = (zoneoffset / 100) * 60 + (zoneoffset % 100); 778 if (timestamp[m[3].rm_so] == '-') 779 zoneoffset = -zoneoffset; 780 781 /* 782 * YYYY-MM-DD hh:mm:ss must be from either 1969-12-31 783 * (west of GMT) or 1970-01-01 (east of GMT) 784 */ 785 if ((zoneoffset < 0 && memcmp(timestamp, "1969-12-31", 10)) || 786 (0 <= zoneoffset && memcmp(timestamp, "1970-01-01", 10))) 787 return 0; 788 789 hourminute = (strtol(timestamp + 11, NULL, 10) * 60 + 790 strtol(timestamp + 14, NULL, 10) - 791 zoneoffset); 792 793 return ((zoneoffset < 0 && hourminute == 1440) || 794 (0 <= zoneoffset && !hourminute)); 795} 796 797/* 798 * Get the name etc info from the ---/+++ lines of a traditional patch header 799 * 800 * FIXME! The end-of-filename heuristics are kind of screwy. For existing 801 * files, we can happily check the index for a match, but for creating a 802 * new file we should try to match whatever "patch" does. I have no idea. 803 */ 804static void parse_traditional_patch(struct apply_state *state, 805 const char *first, 806 const char *second, 807 struct patch *patch) 808{ 809 char *name; 810 811 first += 4; /* skip "--- " */ 812 second += 4; /* skip "+++ " */ 813 if (!state->p_value_known) { 814 int p, q; 815 p = guess_p_value(state, first); 816 q = guess_p_value(state, second); 817 if (p < 0) p = q; 818 if (0 <= p && p == q) { 819 state->p_value = p; 820 state->p_value_known = 1; 821 } 822 } 823 if (is_dev_null(first)) { 824 patch->is_new = 1; 825 patch->is_delete = 0; 826 name = find_name_traditional(state, second, NULL, state->p_value); 827 patch->new_name = name; 828 } else if (is_dev_null(second)) { 829 patch->is_new = 0; 830 patch->is_delete = 1; 831 name = find_name_traditional(state, first, NULL, state->p_value); 832 patch->old_name = name; 833 } else { 834 char *first_name; 835 first_name = find_name_traditional(state, first, NULL, state->p_value); 836 name = find_name_traditional(state, second, first_name, state->p_value); 837 free(first_name); 838 if (has_epoch_timestamp(first)) { 839 patch->is_new = 1; 840 patch->is_delete = 0; 841 patch->new_name = name; 842 } else if (has_epoch_timestamp(second)) { 843 patch->is_new = 0; 844 patch->is_delete = 1; 845 patch->old_name = name; 846 } else { 847 patch->old_name = name; 848 patch->new_name = xstrdup_or_null(name); 849 } 850 } 851 if (!name) 852 die(_("unable to find filename in patch at line %d"), state->linenr); 853} 854 855static int gitdiff_hdrend(struct apply_state *state, 856 const char *line, 857 struct patch *patch) 858{ 859 return -1; 860} 861 862/* 863 * We're anal about diff header consistency, to make 864 * sure that we don't end up having strange ambiguous 865 * patches floating around. 866 * 867 * As a result, gitdiff_{old|new}name() will check 868 * their names against any previous information, just 869 * to make sure.. 870 */ 871#define DIFF_OLD_NAME 0 872#define DIFF_NEW_NAME 1 873 874static void gitdiff_verify_name(struct apply_state *state, 875 const char *line, 876 int isnull, 877 char **name, 878 int side) 879{ 880 if (!*name && !isnull) { 881 *name = find_name(state, line, NULL, state->p_value, TERM_TAB); 882 return; 883 } 884 885 if (*name) { 886 int len = strlen(*name); 887 char *another; 888 if (isnull) 889 die(_("git apply: bad git-diff - expected /dev/null, got %s on line %d"), 890 *name, state->linenr); 891 another = find_name(state, line, NULL, state->p_value, TERM_TAB); 892 if (!another || memcmp(another, *name, len + 1)) 893 die((side == DIFF_NEW_NAME) ? 894 _("git apply: bad git-diff - inconsistent new filename on line %d") : 895 _("git apply: bad git-diff - inconsistent old filename on line %d"), state->linenr); 896 free(another); 897 } else { 898 /* expect "/dev/null" */ 899 if (memcmp("/dev/null", line, 9) || line[9] != '\n') 900 die(_("git apply: bad git-diff - expected /dev/null on line %d"), state->linenr); 901 } 902} 903 904static int gitdiff_oldname(struct apply_state *state, 905 const char *line, 906 struct patch *patch) 907{ 908 gitdiff_verify_name(state, line, 909 patch->is_new, &patch->old_name, 910 DIFF_OLD_NAME); 911 return 0; 912} 913 914static int gitdiff_newname(struct apply_state *state, 915 const char *line, 916 struct patch *patch) 917{ 918 gitdiff_verify_name(state, line, 919 patch->is_delete, &patch->new_name, 920 DIFF_NEW_NAME); 921 return 0; 922} 923 924static int gitdiff_oldmode(struct apply_state *state, 925 const char *line, 926 struct patch *patch) 927{ 928 patch->old_mode = strtoul(line, NULL, 8); 929 return 0; 930} 931 932static int gitdiff_newmode(struct apply_state *state, 933 const char *line, 934 struct patch *patch) 935{ 936 patch->new_mode = strtoul(line, NULL, 8); 937 return 0; 938} 939 940static int gitdiff_delete(struct apply_state *state, 941 const char *line, 942 struct patch *patch) 943{ 944 patch->is_delete = 1; 945 free(patch->old_name); 946 patch->old_name = xstrdup_or_null(patch->def_name); 947 return gitdiff_oldmode(state, line, patch); 948} 949 950static int gitdiff_newfile(struct apply_state *state, 951 const char *line, 952 struct patch *patch) 953{ 954 patch->is_new = 1; 955 free(patch->new_name); 956 patch->new_name = xstrdup_or_null(patch->def_name); 957 return gitdiff_newmode(state, line, patch); 958} 959 960static int gitdiff_copysrc(struct apply_state *state, 961 const char *line, 962 struct patch *patch) 963{ 964 patch->is_copy = 1; 965 free(patch->old_name); 966 patch->old_name = find_name(state, line, NULL, state->p_value ? state->p_value - 1 : 0, 0); 967 return 0; 968} 969 970static int gitdiff_copydst(struct apply_state *state, 971 const char *line, 972 struct patch *patch) 973{ 974 patch->is_copy = 1; 975 free(patch->new_name); 976 patch->new_name = find_name(state, line, NULL, state->p_value ? state->p_value - 1 : 0, 0); 977 return 0; 978} 979 980static int gitdiff_renamesrc(struct apply_state *state, 981 const char *line, 982 struct patch *patch) 983{ 984 patch->is_rename = 1; 985 free(patch->old_name); 986 patch->old_name = find_name(state, line, NULL, state->p_value ? state->p_value - 1 : 0, 0); 987 return 0; 988} 989 990static int gitdiff_renamedst(struct apply_state *state, 991 const char *line, 992 struct patch *patch) 993{ 994 patch->is_rename = 1; 995 free(patch->new_name); 996 patch->new_name = find_name(state, line, NULL, state->p_value ? state->p_value - 1 : 0, 0); 997 return 0; 998} 9991000static int gitdiff_similarity(struct apply_state *state,1001 const char *line,1002 struct patch *patch)1003{1004 unsigned long val = strtoul(line, NULL, 10);1005 if (val <= 100)1006 patch->score = val;1007 return 0;1008}10091010static int gitdiff_dissimilarity(struct apply_state *state,1011 const char *line,1012 struct patch *patch)1013{1014 unsigned long val = strtoul(line, NULL, 10);1015 if (val <= 100)1016 patch->score = val;1017 return 0;1018}10191020static int gitdiff_index(struct apply_state *state,1021 const char *line,1022 struct patch *patch)1023{1024 /*1025 * index line is N hexadecimal, "..", N hexadecimal,1026 * and optional space with octal mode.1027 */1028 const char *ptr, *eol;1029 int len;10301031 ptr = strchr(line, '.');1032 if (!ptr || ptr[1] != '.' || 40 < ptr - line)1033 return 0;1034 len = ptr - line;1035 memcpy(patch->old_sha1_prefix, line, len);1036 patch->old_sha1_prefix[len] = 0;10371038 line = ptr + 2;1039 ptr = strchr(line, ' ');1040 eol = strchrnul(line, '\n');10411042 if (!ptr || eol < ptr)1043 ptr = eol;1044 len = ptr - line;10451046 if (40 < len)1047 return 0;1048 memcpy(patch->new_sha1_prefix, line, len);1049 patch->new_sha1_prefix[len] = 0;1050 if (*ptr == ' ')1051 patch->old_mode = strtoul(ptr+1, NULL, 8);1052 return 0;1053}10541055/*1056 * This is normal for a diff that doesn't change anything: we'll fall through1057 * into the next diff. Tell the parser to break out.1058 */1059static int gitdiff_unrecognized(struct apply_state *state,1060 const char *line,1061 struct patch *patch)1062{1063 return -1;1064}10651066/*1067 * Skip p_value leading components from "line"; as we do not accept1068 * absolute paths, return NULL in that case.1069 */1070static const char *skip_tree_prefix(struct apply_state *state,1071 const char *line,1072 int llen)1073{1074 int nslash;1075 int i;10761077 if (!state->p_value)1078 return (llen && line[0] == '/') ? NULL : line;10791080 nslash = state->p_value;1081 for (i = 0; i < llen; i++) {1082 int ch = line[i];1083 if (ch == '/' && --nslash <= 0)1084 return (i == 0) ? NULL : &line[i + 1];1085 }1086 return NULL;1087}10881089/*1090 * This is to extract the same name that appears on "diff --git"1091 * line. We do not find and return anything if it is a rename1092 * patch, and it is OK because we will find the name elsewhere.1093 * We need to reliably find name only when it is mode-change only,1094 * creation or deletion of an empty file. In any of these cases,1095 * both sides are the same name under a/ and b/ respectively.1096 */1097static char *git_header_name(struct apply_state *state,1098 const char *line,1099 int llen)1100{1101 const char *name;1102 const char *second = NULL;1103 size_t len, line_len;11041105 line += strlen("diff --git ");1106 llen -= strlen("diff --git ");11071108 if (*line == '"') {1109 const char *cp;1110 struct strbuf first = STRBUF_INIT;1111 struct strbuf sp = STRBUF_INIT;11121113 if (unquote_c_style(&first, line, &second))1114 goto free_and_fail1;11151116 /* strip the a/b prefix including trailing slash */1117 cp = skip_tree_prefix(state, first.buf, first.len);1118 if (!cp)1119 goto free_and_fail1;1120 strbuf_remove(&first, 0, cp - first.buf);11211122 /*1123 * second points at one past closing dq of name.1124 * find the second name.1125 */1126 while ((second < line + llen) && isspace(*second))1127 second++;11281129 if (line + llen <= second)1130 goto free_and_fail1;1131 if (*second == '"') {1132 if (unquote_c_style(&sp, second, NULL))1133 goto free_and_fail1;1134 cp = skip_tree_prefix(state, sp.buf, sp.len);1135 if (!cp)1136 goto free_and_fail1;1137 /* They must match, otherwise ignore */1138 if (strcmp(cp, first.buf))1139 goto free_and_fail1;1140 strbuf_release(&sp);1141 return strbuf_detach(&first, NULL);1142 }11431144 /* unquoted second */1145 cp = skip_tree_prefix(state, second, line + llen - second);1146 if (!cp)1147 goto free_and_fail1;1148 if (line + llen - cp != first.len ||1149 memcmp(first.buf, cp, first.len))1150 goto free_and_fail1;1151 return strbuf_detach(&first, NULL);11521153 free_and_fail1:1154 strbuf_release(&first);1155 strbuf_release(&sp);1156 return NULL;1157 }11581159 /* unquoted first name */1160 name = skip_tree_prefix(state, line, llen);1161 if (!name)1162 return NULL;11631164 /*1165 * since the first name is unquoted, a dq if exists must be1166 * the beginning of the second name.1167 */1168 for (second = name; second < line + llen; second++) {1169 if (*second == '"') {1170 struct strbuf sp = STRBUF_INIT;1171 const char *np;11721173 if (unquote_c_style(&sp, second, NULL))1174 goto free_and_fail2;11751176 np = skip_tree_prefix(state, sp.buf, sp.len);1177 if (!np)1178 goto free_and_fail2;11791180 len = sp.buf + sp.len - np;1181 if (len < second - name &&1182 !strncmp(np, name, len) &&1183 isspace(name[len])) {1184 /* Good */1185 strbuf_remove(&sp, 0, np - sp.buf);1186 return strbuf_detach(&sp, NULL);1187 }11881189 free_and_fail2:1190 strbuf_release(&sp);1191 return NULL;1192 }1193 }11941195 /*1196 * Accept a name only if it shows up twice, exactly the same1197 * form.1198 */1199 second = strchr(name, '\n');1200 if (!second)1201 return NULL;1202 line_len = second - name;1203 for (len = 0 ; ; len++) {1204 switch (name[len]) {1205 default:1206 continue;1207 case '\n':1208 return NULL;1209 case '\t': case ' ':1210 /*1211 * Is this the separator between the preimage1212 * and the postimage pathname? Again, we are1213 * only interested in the case where there is1214 * no rename, as this is only to set def_name1215 * and a rename patch has the names elsewhere1216 * in an unambiguous form.1217 */1218 if (!name[len + 1])1219 return NULL; /* no postimage name */1220 second = skip_tree_prefix(state, name + len + 1,1221 line_len - (len + 1));1222 if (!second)1223 return NULL;1224 /*1225 * Does len bytes starting at "name" and "second"1226 * (that are separated by one HT or SP we just1227 * found) exactly match?1228 */1229 if (second[len] == '\n' && !strncmp(name, second, len))1230 return xmemdupz(name, len);1231 }1232 }1233}12341235/* Verify that we recognize the lines following a git header */1236static int parse_git_header(struct apply_state *state,1237 const char *line,1238 int len,1239 unsigned int size,1240 struct patch *patch)1241{1242 unsigned long offset;12431244 /* A git diff has explicit new/delete information, so we don't guess */1245 patch->is_new = 0;1246 patch->is_delete = 0;12471248 /*1249 * Some things may not have the old name in the1250 * rest of the headers anywhere (pure mode changes,1251 * or removing or adding empty files), so we get1252 * the default name from the header.1253 */1254 patch->def_name = git_header_name(state, line, len);1255 if (patch->def_name && state->root.len) {1256 char *s = xstrfmt("%s%s", state->root.buf, patch->def_name);1257 free(patch->def_name);1258 patch->def_name = s;1259 }12601261 line += len;1262 size -= len;1263 state->linenr++;1264 for (offset = len ; size > 0 ; offset += len, size -= len, line += len, state->linenr++) {1265 static const struct opentry {1266 const char *str;1267 int (*fn)(struct apply_state *, const char *, struct patch *);1268 } optable[] = {1269 { "@@ -", gitdiff_hdrend },1270 { "--- ", gitdiff_oldname },1271 { "+++ ", gitdiff_newname },1272 { "old mode ", gitdiff_oldmode },1273 { "new mode ", gitdiff_newmode },1274 { "deleted file mode ", gitdiff_delete },1275 { "new file mode ", gitdiff_newfile },1276 { "copy from ", gitdiff_copysrc },1277 { "copy to ", gitdiff_copydst },1278 { "rename old ", gitdiff_renamesrc },1279 { "rename new ", gitdiff_renamedst },1280 { "rename from ", gitdiff_renamesrc },1281 { "rename to ", gitdiff_renamedst },1282 { "similarity index ", gitdiff_similarity },1283 { "dissimilarity index ", gitdiff_dissimilarity },1284 { "index ", gitdiff_index },1285 { "", gitdiff_unrecognized },1286 };1287 int i;12881289 len = linelen(line, size);1290 if (!len || line[len-1] != '\n')1291 break;1292 for (i = 0; i < ARRAY_SIZE(optable); i++) {1293 const struct opentry *p = optable + i;1294 int oplen = strlen(p->str);1295 if (len < oplen || memcmp(p->str, line, oplen))1296 continue;1297 if (p->fn(state, line + oplen, patch) < 0)1298 return offset;1299 break;1300 }1301 }13021303 return offset;1304}13051306static int parse_num(const char *line, unsigned long *p)1307{1308 char *ptr;13091310 if (!isdigit(*line))1311 return 0;1312 *p = strtoul(line, &ptr, 10);1313 return ptr - line;1314}13151316static int parse_range(const char *line, int len, int offset, const char *expect,1317 unsigned long *p1, unsigned long *p2)1318{1319 int digits, ex;13201321 if (offset < 0 || offset >= len)1322 return -1;1323 line += offset;1324 len -= offset;13251326 digits = parse_num(line, p1);1327 if (!digits)1328 return -1;13291330 offset += digits;1331 line += digits;1332 len -= digits;13331334 *p2 = 1;1335 if (*line == ',') {1336 digits = parse_num(line+1, p2);1337 if (!digits)1338 return -1;13391340 offset += digits+1;1341 line += digits+1;1342 len -= digits+1;1343 }13441345 ex = strlen(expect);1346 if (ex > len)1347 return -1;1348 if (memcmp(line, expect, ex))1349 return -1;13501351 return offset + ex;1352}13531354static void recount_diff(const char *line, int size, struct fragment *fragment)1355{1356 int oldlines = 0, newlines = 0, ret = 0;13571358 if (size < 1) {1359 warning("recount: ignore empty hunk");1360 return;1361 }13621363 for (;;) {1364 int len = linelen(line, size);1365 size -= len;1366 line += len;13671368 if (size < 1)1369 break;13701371 switch (*line) {1372 case ' ': case '\n':1373 newlines++;1374 /* fall through */1375 case '-':1376 oldlines++;1377 continue;1378 case '+':1379 newlines++;1380 continue;1381 case '\\':1382 continue;1383 case '@':1384 ret = size < 3 || !starts_with(line, "@@ ");1385 break;1386 case 'd':1387 ret = size < 5 || !starts_with(line, "diff ");1388 break;1389 default:1390 ret = -1;1391 break;1392 }1393 if (ret) {1394 warning(_("recount: unexpected line: %.*s"),1395 (int)linelen(line, size), line);1396 return;1397 }1398 break;1399 }1400 fragment->oldlines = oldlines;1401 fragment->newlines = newlines;1402}14031404/*1405 * Parse a unified diff fragment header of the1406 * form "@@ -a,b +c,d @@"1407 */1408static int parse_fragment_header(const char *line, int len, struct fragment *fragment)1409{1410 int offset;14111412 if (!len || line[len-1] != '\n')1413 return -1;14141415 /* Figure out the number of lines in a fragment */1416 offset = parse_range(line, len, 4, " +", &fragment->oldpos, &fragment->oldlines);1417 offset = parse_range(line, len, offset, " @@", &fragment->newpos, &fragment->newlines);14181419 return offset;1420}14211422/*1423 * Find file diff header1424 *1425 * Returns:1426 * -1 if no header was found1427 * -128 in case of error1428 * the size of the header in bytes (called "offset") otherwise1429 */1430static int find_header(struct apply_state *state,1431 const char *line,1432 unsigned long size,1433 int *hdrsize,1434 struct patch *patch)1435{1436 unsigned long offset, len;14371438 patch->is_toplevel_relative = 0;1439 patch->is_rename = patch->is_copy = 0;1440 patch->is_new = patch->is_delete = -1;1441 patch->old_mode = patch->new_mode = 0;1442 patch->old_name = patch->new_name = NULL;1443 for (offset = 0; size > 0; offset += len, size -= len, line += len, state->linenr++) {1444 unsigned long nextlen;14451446 len = linelen(line, size);1447 if (!len)1448 break;14491450 /* Testing this early allows us to take a few shortcuts.. */1451 if (len < 6)1452 continue;14531454 /*1455 * Make sure we don't find any unconnected patch fragments.1456 * That's a sign that we didn't find a header, and that a1457 * patch has become corrupted/broken up.1458 */1459 if (!memcmp("@@ -", line, 4)) {1460 struct fragment dummy;1461 if (parse_fragment_header(line, len, &dummy) < 0)1462 continue;1463 error(_("patch fragment without header at line %d: %.*s"),1464 state->linenr, (int)len-1, line);1465 return -128;1466 }14671468 if (size < len + 6)1469 break;14701471 /*1472 * Git patch? It might not have a real patch, just a rename1473 * or mode change, so we handle that specially1474 */1475 if (!memcmp("diff --git ", line, 11)) {1476 int git_hdr_len = parse_git_header(state, line, len, size, patch);1477 if (git_hdr_len <= len)1478 continue;1479 if (!patch->old_name && !patch->new_name) {1480 if (!patch->def_name) {1481 error(Q_("git diff header lacks filename information when removing "1482 "%d leading pathname component (line %d)",1483 "git diff header lacks filename information when removing "1484 "%d leading pathname components (line %d)",1485 state->p_value),1486 state->p_value, state->linenr);1487 return -128;1488 }1489 patch->old_name = xstrdup(patch->def_name);1490 patch->new_name = xstrdup(patch->def_name);1491 }1492 if (!patch->is_delete && !patch->new_name) {1493 error("git diff header lacks filename information "1494 "(line %d)", state->linenr);1495 return -128;1496 }1497 patch->is_toplevel_relative = 1;1498 *hdrsize = git_hdr_len;1499 return offset;1500 }15011502 /* --- followed by +++ ? */1503 if (memcmp("--- ", line, 4) || memcmp("+++ ", line + len, 4))1504 continue;15051506 /*1507 * We only accept unified patches, so we want it to1508 * at least have "@@ -a,b +c,d @@\n", which is 14 chars1509 * minimum ("@@ -0,0 +1 @@\n" is the shortest).1510 */1511 nextlen = linelen(line + len, size - len);1512 if (size < nextlen + 14 || memcmp("@@ -", line + len + nextlen, 4))1513 continue;15141515 /* Ok, we'll consider it a patch */1516 parse_traditional_patch(state, line, line+len, patch);1517 *hdrsize = len + nextlen;1518 state->linenr += 2;1519 return offset;1520 }1521 return -1;1522}15231524static void record_ws_error(struct apply_state *state,1525 unsigned result,1526 const char *line,1527 int len,1528 int linenr)1529{1530 char *err;15311532 if (!result)1533 return;15341535 state->whitespace_error++;1536 if (state->squelch_whitespace_errors &&1537 state->squelch_whitespace_errors < state->whitespace_error)1538 return;15391540 err = whitespace_error_string(result);1541 fprintf(stderr, "%s:%d: %s.\n%.*s\n",1542 state->patch_input_file, linenr, err, len, line);1543 free(err);1544}15451546static void check_whitespace(struct apply_state *state,1547 const char *line,1548 int len,1549 unsigned ws_rule)1550{1551 unsigned result = ws_check(line + 1, len - 1, ws_rule);15521553 record_ws_error(state, result, line + 1, len - 2, state->linenr);1554}15551556/*1557 * Parse a unified diff. Note that this really needs to parse each1558 * fragment separately, since the only way to know the difference1559 * between a "---" that is part of a patch, and a "---" that starts1560 * the next patch is to look at the line counts..1561 */1562static int parse_fragment(struct apply_state *state,1563 const char *line,1564 unsigned long size,1565 struct patch *patch,1566 struct fragment *fragment)1567{1568 int added, deleted;1569 int len = linelen(line, size), offset;1570 unsigned long oldlines, newlines;1571 unsigned long leading, trailing;15721573 offset = parse_fragment_header(line, len, fragment);1574 if (offset < 0)1575 return -1;1576 if (offset > 0 && patch->recount)1577 recount_diff(line + offset, size - offset, fragment);1578 oldlines = fragment->oldlines;1579 newlines = fragment->newlines;1580 leading = 0;1581 trailing = 0;15821583 /* Parse the thing.. */1584 line += len;1585 size -= len;1586 state->linenr++;1587 added = deleted = 0;1588 for (offset = len;1589 0 < size;1590 offset += len, size -= len, line += len, state->linenr++) {1591 if (!oldlines && !newlines)1592 break;1593 len = linelen(line, size);1594 if (!len || line[len-1] != '\n')1595 return -1;1596 switch (*line) {1597 default:1598 return -1;1599 case '\n': /* newer GNU diff, an empty context line */1600 case ' ':1601 oldlines--;1602 newlines--;1603 if (!deleted && !added)1604 leading++;1605 trailing++;1606 if (!state->apply_in_reverse &&1607 state->ws_error_action == correct_ws_error)1608 check_whitespace(state, line, len, patch->ws_rule);1609 break;1610 case '-':1611 if (state->apply_in_reverse &&1612 state->ws_error_action != nowarn_ws_error)1613 check_whitespace(state, line, len, patch->ws_rule);1614 deleted++;1615 oldlines--;1616 trailing = 0;1617 break;1618 case '+':1619 if (!state->apply_in_reverse &&1620 state->ws_error_action != nowarn_ws_error)1621 check_whitespace(state, line, len, patch->ws_rule);1622 added++;1623 newlines--;1624 trailing = 0;1625 break;16261627 /*1628 * We allow "\ No newline at end of file". Depending1629 * on locale settings when the patch was produced we1630 * don't know what this line looks like. The only1631 * thing we do know is that it begins with "\ ".1632 * Checking for 12 is just for sanity check -- any1633 * l10n of "\ No newline..." is at least that long.1634 */1635 case '\\':1636 if (len < 12 || memcmp(line, "\\ ", 2))1637 return -1;1638 break;1639 }1640 }1641 if (oldlines || newlines)1642 return -1;1643 if (!deleted && !added)1644 return -1;16451646 fragment->leading = leading;1647 fragment->trailing = trailing;16481649 /*1650 * If a fragment ends with an incomplete line, we failed to include1651 * it in the above loop because we hit oldlines == newlines == 01652 * before seeing it.1653 */1654 if (12 < size && !memcmp(line, "\\ ", 2))1655 offset += linelen(line, size);16561657 patch->lines_added += added;1658 patch->lines_deleted += deleted;16591660 if (0 < patch->is_new && oldlines)1661 return error(_("new file depends on old contents"));1662 if (0 < patch->is_delete && newlines)1663 return error(_("deleted file still has contents"));1664 return offset;1665}16661667/*1668 * We have seen "diff --git a/... b/..." header (or a traditional patch1669 * header). Read hunks that belong to this patch into fragments and hang1670 * them to the given patch structure.1671 *1672 * The (fragment->patch, fragment->size) pair points into the memory given1673 * by the caller, not a copy, when we return.1674 *1675 * Returns:1676 * -1 in case of error,1677 * the number of bytes in the patch otherwise.1678 */1679static int parse_single_patch(struct apply_state *state,1680 const char *line,1681 unsigned long size,1682 struct patch *patch)1683{1684 unsigned long offset = 0;1685 unsigned long oldlines = 0, newlines = 0, context = 0;1686 struct fragment **fragp = &patch->fragments;16871688 while (size > 4 && !memcmp(line, "@@ -", 4)) {1689 struct fragment *fragment;1690 int len;16911692 fragment = xcalloc(1, sizeof(*fragment));1693 fragment->linenr = state->linenr;1694 len = parse_fragment(state, line, size, patch, fragment);1695 if (len <= 0) {1696 free(fragment);1697 return error(_("corrupt patch at line %d"), state->linenr);1698 }1699 fragment->patch = line;1700 fragment->size = len;1701 oldlines += fragment->oldlines;1702 newlines += fragment->newlines;1703 context += fragment->leading + fragment->trailing;17041705 *fragp = fragment;1706 fragp = &fragment->next;17071708 offset += len;1709 line += len;1710 size -= len;1711 }17121713 /*1714 * If something was removed (i.e. we have old-lines) it cannot1715 * be creation, and if something was added it cannot be1716 * deletion. However, the reverse is not true; --unified=01717 * patches that only add are not necessarily creation even1718 * though they do not have any old lines, and ones that only1719 * delete are not necessarily deletion.1720 *1721 * Unfortunately, a real creation/deletion patch do _not_ have1722 * any context line by definition, so we cannot safely tell it1723 * apart with --unified=0 insanity. At least if the patch has1724 * more than one hunk it is not creation or deletion.1725 */1726 if (patch->is_new < 0 &&1727 (oldlines || (patch->fragments && patch->fragments->next)))1728 patch->is_new = 0;1729 if (patch->is_delete < 0 &&1730 (newlines || (patch->fragments && patch->fragments->next)))1731 patch->is_delete = 0;17321733 if (0 < patch->is_new && oldlines)1734 return error(_("new file %s depends on old contents"), patch->new_name);1735 if (0 < patch->is_delete && newlines)1736 return error(_("deleted file %s still has contents"), patch->old_name);1737 if (!patch->is_delete && !newlines && context)1738 fprintf_ln(stderr,1739 _("** warning: "1740 "file %s becomes empty but is not deleted"),1741 patch->new_name);17421743 return offset;1744}17451746static inline int metadata_changes(struct patch *patch)1747{1748 return patch->is_rename > 0 ||1749 patch->is_copy > 0 ||1750 patch->is_new > 0 ||1751 patch->is_delete ||1752 (patch->old_mode && patch->new_mode &&1753 patch->old_mode != patch->new_mode);1754}17551756static char *inflate_it(const void *data, unsigned long size,1757 unsigned long inflated_size)1758{1759 git_zstream stream;1760 void *out;1761 int st;17621763 memset(&stream, 0, sizeof(stream));17641765 stream.next_in = (unsigned char *)data;1766 stream.avail_in = size;1767 stream.next_out = out = xmalloc(inflated_size);1768 stream.avail_out = inflated_size;1769 git_inflate_init(&stream);1770 st = git_inflate(&stream, Z_FINISH);1771 git_inflate_end(&stream);1772 if ((st != Z_STREAM_END) || stream.total_out != inflated_size) {1773 free(out);1774 return NULL;1775 }1776 return out;1777}17781779/*1780 * Read a binary hunk and return a new fragment; fragment->patch1781 * points at an allocated memory that the caller must free, so1782 * it is marked as "->free_patch = 1".1783 */1784static struct fragment *parse_binary_hunk(struct apply_state *state,1785 char **buf_p,1786 unsigned long *sz_p,1787 int *status_p,1788 int *used_p)1789{1790 /*1791 * Expect a line that begins with binary patch method ("literal"1792 * or "delta"), followed by the length of data before deflating.1793 * a sequence of 'length-byte' followed by base-85 encoded data1794 * should follow, terminated by a newline.1795 *1796 * Each 5-byte sequence of base-85 encodes up to 4 bytes,1797 * and we would limit the patch line to 66 characters,1798 * so one line can fit up to 13 groups that would decode1799 * to 52 bytes max. The length byte 'A'-'Z' corresponds1800 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.1801 */1802 int llen, used;1803 unsigned long size = *sz_p;1804 char *buffer = *buf_p;1805 int patch_method;1806 unsigned long origlen;1807 char *data = NULL;1808 int hunk_size = 0;1809 struct fragment *frag;18101811 llen = linelen(buffer, size);1812 used = llen;18131814 *status_p = 0;18151816 if (starts_with(buffer, "delta ")) {1817 patch_method = BINARY_DELTA_DEFLATED;1818 origlen = strtoul(buffer + 6, NULL, 10);1819 }1820 else if (starts_with(buffer, "literal ")) {1821 patch_method = BINARY_LITERAL_DEFLATED;1822 origlen = strtoul(buffer + 8, NULL, 10);1823 }1824 else1825 return NULL;18261827 state->linenr++;1828 buffer += llen;1829 while (1) {1830 int byte_length, max_byte_length, newsize;1831 llen = linelen(buffer, size);1832 used += llen;1833 state->linenr++;1834 if (llen == 1) {1835 /* consume the blank line */1836 buffer++;1837 size--;1838 break;1839 }1840 /*1841 * Minimum line is "A00000\n" which is 7-byte long,1842 * and the line length must be multiple of 5 plus 2.1843 */1844 if ((llen < 7) || (llen-2) % 5)1845 goto corrupt;1846 max_byte_length = (llen - 2) / 5 * 4;1847 byte_length = *buffer;1848 if ('A' <= byte_length && byte_length <= 'Z')1849 byte_length = byte_length - 'A' + 1;1850 else if ('a' <= byte_length && byte_length <= 'z')1851 byte_length = byte_length - 'a' + 27;1852 else1853 goto corrupt;1854 /* if the input length was not multiple of 4, we would1855 * have filler at the end but the filler should never1856 * exceed 3 bytes1857 */1858 if (max_byte_length < byte_length ||1859 byte_length <= max_byte_length - 4)1860 goto corrupt;1861 newsize = hunk_size + byte_length;1862 data = xrealloc(data, newsize);1863 if (decode_85(data + hunk_size, buffer + 1, byte_length))1864 goto corrupt;1865 hunk_size = newsize;1866 buffer += llen;1867 size -= llen;1868 }18691870 frag = xcalloc(1, sizeof(*frag));1871 frag->patch = inflate_it(data, hunk_size, origlen);1872 frag->free_patch = 1;1873 if (!frag->patch)1874 goto corrupt;1875 free(data);1876 frag->size = origlen;1877 *buf_p = buffer;1878 *sz_p = size;1879 *used_p = used;1880 frag->binary_patch_method = patch_method;1881 return frag;18821883 corrupt:1884 free(data);1885 *status_p = -1;1886 error(_("corrupt binary patch at line %d: %.*s"),1887 state->linenr-1, llen-1, buffer);1888 return NULL;1889}18901891/*1892 * Returns:1893 * -1 in case of error,1894 * the length of the parsed binary patch otherwise1895 */1896static int parse_binary(struct apply_state *state,1897 char *buffer,1898 unsigned long size,1899 struct patch *patch)1900{1901 /*1902 * We have read "GIT binary patch\n"; what follows is a line1903 * that says the patch method (currently, either "literal" or1904 * "delta") and the length of data before deflating; a1905 * sequence of 'length-byte' followed by base-85 encoded data1906 * follows.1907 *1908 * When a binary patch is reversible, there is another binary1909 * hunk in the same format, starting with patch method (either1910 * "literal" or "delta") with the length of data, and a sequence1911 * of length-byte + base-85 encoded data, terminated with another1912 * empty line. This data, when applied to the postimage, produces1913 * the preimage.1914 */1915 struct fragment *forward;1916 struct fragment *reverse;1917 int status;1918 int used, used_1;19191920 forward = parse_binary_hunk(state, &buffer, &size, &status, &used);1921 if (!forward && !status)1922 /* there has to be one hunk (forward hunk) */1923 return error(_("unrecognized binary patch at line %d"), state->linenr-1);1924 if (status)1925 /* otherwise we already gave an error message */1926 return status;19271928 reverse = parse_binary_hunk(state, &buffer, &size, &status, &used_1);1929 if (reverse)1930 used += used_1;1931 else if (status) {1932 /*1933 * Not having reverse hunk is not an error, but having1934 * a corrupt reverse hunk is.1935 */1936 free((void*) forward->patch);1937 free(forward);1938 return status;1939 }1940 forward->next = reverse;1941 patch->fragments = forward;1942 patch->is_binary = 1;1943 return used;1944}19451946static void prefix_one(struct apply_state *state, char **name)1947{1948 char *old_name = *name;1949 if (!old_name)1950 return;1951 *name = xstrdup(prefix_filename(state->prefix, state->prefix_length, *name));1952 free(old_name);1953}19541955static void prefix_patch(struct apply_state *state, struct patch *p)1956{1957 if (!state->prefix || p->is_toplevel_relative)1958 return;1959 prefix_one(state, &p->new_name);1960 prefix_one(state, &p->old_name);1961}19621963/*1964 * include/exclude1965 */19661967static void add_name_limit(struct apply_state *state,1968 const char *name,1969 int exclude)1970{1971 struct string_list_item *it;19721973 it = string_list_append(&state->limit_by_name, name);1974 it->util = exclude ? NULL : (void *) 1;1975}19761977static int use_patch(struct apply_state *state, struct patch *p)1978{1979 const char *pathname = p->new_name ? p->new_name : p->old_name;1980 int i;19811982 /* Paths outside are not touched regardless of "--include" */1983 if (0 < state->prefix_length) {1984 int pathlen = strlen(pathname);1985 if (pathlen <= state->prefix_length ||1986 memcmp(state->prefix, pathname, state->prefix_length))1987 return 0;1988 }19891990 /* See if it matches any of exclude/include rule */1991 for (i = 0; i < state->limit_by_name.nr; i++) {1992 struct string_list_item *it = &state->limit_by_name.items[i];1993 if (!wildmatch(it->string, pathname, 0, NULL))1994 return (it->util != NULL);1995 }19961997 /*1998 * If we had any include, a path that does not match any rule is1999 * not used. Otherwise, we saw bunch of exclude rules (or none)2000 * and such a path is used.2001 */2002 return !state->has_include;2003}20042005/*2006 * Read the patch text in "buffer" that extends for "size" bytes; stop2007 * reading after seeing a single patch (i.e. changes to a single file).2008 * Create fragments (i.e. patch hunks) and hang them to the given patch.2009 *2010 * Returns:2011 * -1 if no header was found or parse_binary() failed,2012 * -128 on another error,2013 * the number of bytes consumed otherwise,2014 * so that the caller can call us again for the next patch.2015 */2016static int parse_chunk(struct apply_state *state, char *buffer, unsigned long size, struct patch *patch)2017{2018 int hdrsize, patchsize;2019 int offset = find_header(state, buffer, size, &hdrsize, patch);20202021 if (offset < 0)2022 return offset;20232024 prefix_patch(state, patch);20252026 if (!use_patch(state, patch))2027 patch->ws_rule = 0;2028 else2029 patch->ws_rule = whitespace_rule(patch->new_name2030 ? patch->new_name2031 : patch->old_name);20322033 patchsize = parse_single_patch(state,2034 buffer + offset + hdrsize,2035 size - offset - hdrsize,2036 patch);20372038 if (patchsize < 0)2039 return -128;20402041 if (!patchsize) {2042 static const char git_binary[] = "GIT binary patch\n";2043 int hd = hdrsize + offset;2044 unsigned long llen = linelen(buffer + hd, size - hd);20452046 if (llen == sizeof(git_binary) - 1 &&2047 !memcmp(git_binary, buffer + hd, llen)) {2048 int used;2049 state->linenr++;2050 used = parse_binary(state, buffer + hd + llen,2051 size - hd - llen, patch);2052 if (used < 0)2053 return -1;2054 if (used)2055 patchsize = used + llen;2056 else2057 patchsize = 0;2058 }2059 else if (!memcmp(" differ\n", buffer + hd + llen - 8, 8)) {2060 static const char *binhdr[] = {2061 "Binary files ",2062 "Files ",2063 NULL,2064 };2065 int i;2066 for (i = 0; binhdr[i]; i++) {2067 int len = strlen(binhdr[i]);2068 if (len < size - hd &&2069 !memcmp(binhdr[i], buffer + hd, len)) {2070 state->linenr++;2071 patch->is_binary = 1;2072 patchsize = llen;2073 break;2074 }2075 }2076 }20772078 /* Empty patch cannot be applied if it is a text patch2079 * without metadata change. A binary patch appears2080 * empty to us here.2081 */2082 if ((state->apply || state->check) &&2083 (!patch->is_binary && !metadata_changes(patch))) {2084 error(_("patch with only garbage at line %d"), state->linenr);2085 return -128;2086 }2087 }20882089 return offset + hdrsize + patchsize;2090}20912092#define swap(a,b) myswap((a),(b),sizeof(a))20932094#define myswap(a, b, size) do { \2095 unsigned char mytmp[size]; \2096 memcpy(mytmp, &a, size); \2097 memcpy(&a, &b, size); \2098 memcpy(&b, mytmp, size); \2099} while (0)21002101static void reverse_patches(struct patch *p)2102{2103 for (; p; p = p->next) {2104 struct fragment *frag = p->fragments;21052106 swap(p->new_name, p->old_name);2107 swap(p->new_mode, p->old_mode);2108 swap(p->is_new, p->is_delete);2109 swap(p->lines_added, p->lines_deleted);2110 swap(p->old_sha1_prefix, p->new_sha1_prefix);21112112 for (; frag; frag = frag->next) {2113 swap(frag->newpos, frag->oldpos);2114 swap(frag->newlines, frag->oldlines);2115 }2116 }2117}21182119static const char pluses[] =2120"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";2121static const char minuses[]=2122"----------------------------------------------------------------------";21232124static void show_stats(struct apply_state *state, struct patch *patch)2125{2126 struct strbuf qname = STRBUF_INIT;2127 char *cp = patch->new_name ? patch->new_name : patch->old_name;2128 int max, add, del;21292130 quote_c_style(cp, &qname, NULL, 0);21312132 /*2133 * "scale" the filename2134 */2135 max = state->max_len;2136 if (max > 50)2137 max = 50;21382139 if (qname.len > max) {2140 cp = strchr(qname.buf + qname.len + 3 - max, '/');2141 if (!cp)2142 cp = qname.buf + qname.len + 3 - max;2143 strbuf_splice(&qname, 0, cp - qname.buf, "...", 3);2144 }21452146 if (patch->is_binary) {2147 printf(" %-*s | Bin\n", max, qname.buf);2148 strbuf_release(&qname);2149 return;2150 }21512152 printf(" %-*s |", max, qname.buf);2153 strbuf_release(&qname);21542155 /*2156 * scale the add/delete2157 */2158 max = max + state->max_change > 70 ? 70 - max : state->max_change;2159 add = patch->lines_added;2160 del = patch->lines_deleted;21612162 if (state->max_change > 0) {2163 int total = ((add + del) * max + state->max_change / 2) / state->max_change;2164 add = (add * max + state->max_change / 2) / state->max_change;2165 del = total - add;2166 }2167 printf("%5d %.*s%.*s\n", patch->lines_added + patch->lines_deleted,2168 add, pluses, del, minuses);2169}21702171static int read_old_data(struct stat *st, const char *path, struct strbuf *buf)2172{2173 switch (st->st_mode & S_IFMT) {2174 case S_IFLNK:2175 if (strbuf_readlink(buf, path, st->st_size) < 0)2176 return error(_("unable to read symlink %s"), path);2177 return 0;2178 case S_IFREG:2179 if (strbuf_read_file(buf, path, st->st_size) != st->st_size)2180 return error(_("unable to open or read %s"), path);2181 convert_to_git(path, buf->buf, buf->len, buf, 0);2182 return 0;2183 default:2184 return -1;2185 }2186}21872188/*2189 * Update the preimage, and the common lines in postimage,2190 * from buffer buf of length len. If postlen is 0 the postimage2191 * is updated in place, otherwise it's updated on a new buffer2192 * of length postlen2193 */21942195static void update_pre_post_images(struct image *preimage,2196 struct image *postimage,2197 char *buf,2198 size_t len, size_t postlen)2199{2200 int i, ctx, reduced;2201 char *new, *old, *fixed;2202 struct image fixed_preimage;22032204 /*2205 * Update the preimage with whitespace fixes. Note that we2206 * are not losing preimage->buf -- apply_one_fragment() will2207 * free "oldlines".2208 */2209 prepare_image(&fixed_preimage, buf, len, 1);2210 assert(postlen2211 ? fixed_preimage.nr == preimage->nr2212 : fixed_preimage.nr <= preimage->nr);2213 for (i = 0; i < fixed_preimage.nr; i++)2214 fixed_preimage.line[i].flag = preimage->line[i].flag;2215 free(preimage->line_allocated);2216 *preimage = fixed_preimage;22172218 /*2219 * Adjust the common context lines in postimage. This can be2220 * done in-place when we are shrinking it with whitespace2221 * fixing, but needs a new buffer when ignoring whitespace or2222 * expanding leading tabs to spaces.2223 *2224 * We trust the caller to tell us if the update can be done2225 * in place (postlen==0) or not.2226 */2227 old = postimage->buf;2228 if (postlen)2229 new = postimage->buf = xmalloc(postlen);2230 else2231 new = old;2232 fixed = preimage->buf;22332234 for (i = reduced = ctx = 0; i < postimage->nr; i++) {2235 size_t l_len = postimage->line[i].len;2236 if (!(postimage->line[i].flag & LINE_COMMON)) {2237 /* an added line -- no counterparts in preimage */2238 memmove(new, old, l_len);2239 old += l_len;2240 new += l_len;2241 continue;2242 }22432244 /* a common context -- skip it in the original postimage */2245 old += l_len;22462247 /* and find the corresponding one in the fixed preimage */2248 while (ctx < preimage->nr &&2249 !(preimage->line[ctx].flag & LINE_COMMON)) {2250 fixed += preimage->line[ctx].len;2251 ctx++;2252 }22532254 /*2255 * preimage is expected to run out, if the caller2256 * fixed addition of trailing blank lines.2257 */2258 if (preimage->nr <= ctx) {2259 reduced++;2260 continue;2261 }22622263 /* and copy it in, while fixing the line length */2264 l_len = preimage->line[ctx].len;2265 memcpy(new, fixed, l_len);2266 new += l_len;2267 fixed += l_len;2268 postimage->line[i].len = l_len;2269 ctx++;2270 }22712272 if (postlen2273 ? postlen < new - postimage->buf2274 : postimage->len < new - postimage->buf)2275 die("BUG: caller miscounted postlen: asked %d, orig = %d, used = %d",2276 (int)postlen, (int) postimage->len, (int)(new - postimage->buf));22772278 /* Fix the length of the whole thing */2279 postimage->len = new - postimage->buf;2280 postimage->nr -= reduced;2281}22822283static int line_by_line_fuzzy_match(struct image *img,2284 struct image *preimage,2285 struct image *postimage,2286 unsigned long try,2287 int try_lno,2288 int preimage_limit)2289{2290 int i;2291 size_t imgoff = 0;2292 size_t preoff = 0;2293 size_t postlen = postimage->len;2294 size_t extra_chars;2295 char *buf;2296 char *preimage_eof;2297 char *preimage_end;2298 struct strbuf fixed;2299 char *fixed_buf;2300 size_t fixed_len;23012302 for (i = 0; i < preimage_limit; i++) {2303 size_t prelen = preimage->line[i].len;2304 size_t imglen = img->line[try_lno+i].len;23052306 if (!fuzzy_matchlines(img->buf + try + imgoff, imglen,2307 preimage->buf + preoff, prelen))2308 return 0;2309 if (preimage->line[i].flag & LINE_COMMON)2310 postlen += imglen - prelen;2311 imgoff += imglen;2312 preoff += prelen;2313 }23142315 /*2316 * Ok, the preimage matches with whitespace fuzz.2317 *2318 * imgoff now holds the true length of the target that2319 * matches the preimage before the end of the file.2320 *2321 * Count the number of characters in the preimage that fall2322 * beyond the end of the file and make sure that all of them2323 * are whitespace characters. (This can only happen if2324 * we are removing blank lines at the end of the file.)2325 */2326 buf = preimage_eof = preimage->buf + preoff;2327 for ( ; i < preimage->nr; i++)2328 preoff += preimage->line[i].len;2329 preimage_end = preimage->buf + preoff;2330 for ( ; buf < preimage_end; buf++)2331 if (!isspace(*buf))2332 return 0;23332334 /*2335 * Update the preimage and the common postimage context2336 * lines to use the same whitespace as the target.2337 * If whitespace is missing in the target (i.e.2338 * if the preimage extends beyond the end of the file),2339 * use the whitespace from the preimage.2340 */2341 extra_chars = preimage_end - preimage_eof;2342 strbuf_init(&fixed, imgoff + extra_chars);2343 strbuf_add(&fixed, img->buf + try, imgoff);2344 strbuf_add(&fixed, preimage_eof, extra_chars);2345 fixed_buf = strbuf_detach(&fixed, &fixed_len);2346 update_pre_post_images(preimage, postimage,2347 fixed_buf, fixed_len, postlen);2348 return 1;2349}23502351static int match_fragment(struct apply_state *state,2352 struct image *img,2353 struct image *preimage,2354 struct image *postimage,2355 unsigned long try,2356 int try_lno,2357 unsigned ws_rule,2358 int match_beginning, int match_end)2359{2360 int i;2361 char *fixed_buf, *buf, *orig, *target;2362 struct strbuf fixed;2363 size_t fixed_len, postlen;2364 int preimage_limit;23652366 if (preimage->nr + try_lno <= img->nr) {2367 /*2368 * The hunk falls within the boundaries of img.2369 */2370 preimage_limit = preimage->nr;2371 if (match_end && (preimage->nr + try_lno != img->nr))2372 return 0;2373 } else if (state->ws_error_action == correct_ws_error &&2374 (ws_rule & WS_BLANK_AT_EOF)) {2375 /*2376 * This hunk extends beyond the end of img, and we are2377 * removing blank lines at the end of the file. This2378 * many lines from the beginning of the preimage must2379 * match with img, and the remainder of the preimage2380 * must be blank.2381 */2382 preimage_limit = img->nr - try_lno;2383 } else {2384 /*2385 * The hunk extends beyond the end of the img and2386 * we are not removing blanks at the end, so we2387 * should reject the hunk at this position.2388 */2389 return 0;2390 }23912392 if (match_beginning && try_lno)2393 return 0;23942395 /* Quick hash check */2396 for (i = 0; i < preimage_limit; i++)2397 if ((img->line[try_lno + i].flag & LINE_PATCHED) ||2398 (preimage->line[i].hash != img->line[try_lno + i].hash))2399 return 0;24002401 if (preimage_limit == preimage->nr) {2402 /*2403 * Do we have an exact match? If we were told to match2404 * at the end, size must be exactly at try+fragsize,2405 * otherwise try+fragsize must be still within the preimage,2406 * and either case, the old piece should match the preimage2407 * exactly.2408 */2409 if ((match_end2410 ? (try + preimage->len == img->len)2411 : (try + preimage->len <= img->len)) &&2412 !memcmp(img->buf + try, preimage->buf, preimage->len))2413 return 1;2414 } else {2415 /*2416 * The preimage extends beyond the end of img, so2417 * there cannot be an exact match.2418 *2419 * There must be one non-blank context line that match2420 * a line before the end of img.2421 */2422 char *buf_end;24232424 buf = preimage->buf;2425 buf_end = buf;2426 for (i = 0; i < preimage_limit; i++)2427 buf_end += preimage->line[i].len;24282429 for ( ; buf < buf_end; buf++)2430 if (!isspace(*buf))2431 break;2432 if (buf == buf_end)2433 return 0;2434 }24352436 /*2437 * No exact match. If we are ignoring whitespace, run a line-by-line2438 * fuzzy matching. We collect all the line length information because2439 * we need it to adjust whitespace if we match.2440 */2441 if (state->ws_ignore_action == ignore_ws_change)2442 return line_by_line_fuzzy_match(img, preimage, postimage,2443 try, try_lno, preimage_limit);24442445 if (state->ws_error_action != correct_ws_error)2446 return 0;24472448 /*2449 * The hunk does not apply byte-by-byte, but the hash says2450 * it might with whitespace fuzz. We weren't asked to2451 * ignore whitespace, we were asked to correct whitespace2452 * errors, so let's try matching after whitespace correction.2453 *2454 * While checking the preimage against the target, whitespace2455 * errors in both fixed, we count how large the corresponding2456 * postimage needs to be. The postimage prepared by2457 * apply_one_fragment() has whitespace errors fixed on added2458 * lines already, but the common lines were propagated as-is,2459 * which may become longer when their whitespace errors are2460 * fixed.2461 */24622463 /* First count added lines in postimage */2464 postlen = 0;2465 for (i = 0; i < postimage->nr; i++) {2466 if (!(postimage->line[i].flag & LINE_COMMON))2467 postlen += postimage->line[i].len;2468 }24692470 /*2471 * The preimage may extend beyond the end of the file,2472 * but in this loop we will only handle the part of the2473 * preimage that falls within the file.2474 */2475 strbuf_init(&fixed, preimage->len + 1);2476 orig = preimage->buf;2477 target = img->buf + try;2478 for (i = 0; i < preimage_limit; i++) {2479 size_t oldlen = preimage->line[i].len;2480 size_t tgtlen = img->line[try_lno + i].len;2481 size_t fixstart = fixed.len;2482 struct strbuf tgtfix;2483 int match;24842485 /* Try fixing the line in the preimage */2486 ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);24872488 /* Try fixing the line in the target */2489 strbuf_init(&tgtfix, tgtlen);2490 ws_fix_copy(&tgtfix, target, tgtlen, ws_rule, NULL);24912492 /*2493 * If they match, either the preimage was based on2494 * a version before our tree fixed whitespace breakage,2495 * or we are lacking a whitespace-fix patch the tree2496 * the preimage was based on already had (i.e. target2497 * has whitespace breakage, the preimage doesn't).2498 * In either case, we are fixing the whitespace breakages2499 * so we might as well take the fix together with their2500 * real change.2501 */2502 match = (tgtfix.len == fixed.len - fixstart &&2503 !memcmp(tgtfix.buf, fixed.buf + fixstart,2504 fixed.len - fixstart));25052506 /* Add the length if this is common with the postimage */2507 if (preimage->line[i].flag & LINE_COMMON)2508 postlen += tgtfix.len;25092510 strbuf_release(&tgtfix);2511 if (!match)2512 goto unmatch_exit;25132514 orig += oldlen;2515 target += tgtlen;2516 }251725182519 /*2520 * Now handle the lines in the preimage that falls beyond the2521 * end of the file (if any). They will only match if they are2522 * empty or only contain whitespace (if WS_BLANK_AT_EOL is2523 * false).2524 */2525 for ( ; i < preimage->nr; i++) {2526 size_t fixstart = fixed.len; /* start of the fixed preimage */2527 size_t oldlen = preimage->line[i].len;2528 int j;25292530 /* Try fixing the line in the preimage */2531 ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);25322533 for (j = fixstart; j < fixed.len; j++)2534 if (!isspace(fixed.buf[j]))2535 goto unmatch_exit;25362537 orig += oldlen;2538 }25392540 /*2541 * Yes, the preimage is based on an older version that still2542 * has whitespace breakages unfixed, and fixing them makes the2543 * hunk match. Update the context lines in the postimage.2544 */2545 fixed_buf = strbuf_detach(&fixed, &fixed_len);2546 if (postlen < postimage->len)2547 postlen = 0;2548 update_pre_post_images(preimage, postimage,2549 fixed_buf, fixed_len, postlen);2550 return 1;25512552 unmatch_exit:2553 strbuf_release(&fixed);2554 return 0;2555}25562557static int find_pos(struct apply_state *state,2558 struct image *img,2559 struct image *preimage,2560 struct image *postimage,2561 int line,2562 unsigned ws_rule,2563 int match_beginning, int match_end)2564{2565 int i;2566 unsigned long backwards, forwards, try;2567 int backwards_lno, forwards_lno, try_lno;25682569 /*2570 * If match_beginning or match_end is specified, there is no2571 * point starting from a wrong line that will never match and2572 * wander around and wait for a match at the specified end.2573 */2574 if (match_beginning)2575 line = 0;2576 else if (match_end)2577 line = img->nr - preimage->nr;25782579 /*2580 * Because the comparison is unsigned, the following test2581 * will also take care of a negative line number that can2582 * result when match_end and preimage is larger than the target.2583 */2584 if ((size_t) line > img->nr)2585 line = img->nr;25862587 try = 0;2588 for (i = 0; i < line; i++)2589 try += img->line[i].len;25902591 /*2592 * There's probably some smart way to do this, but I'll leave2593 * that to the smart and beautiful people. I'm simple and stupid.2594 */2595 backwards = try;2596 backwards_lno = line;2597 forwards = try;2598 forwards_lno = line;2599 try_lno = line;26002601 for (i = 0; ; i++) {2602 if (match_fragment(state, img, preimage, postimage,2603 try, try_lno, ws_rule,2604 match_beginning, match_end))2605 return try_lno;26062607 again:2608 if (backwards_lno == 0 && forwards_lno == img->nr)2609 break;26102611 if (i & 1) {2612 if (backwards_lno == 0) {2613 i++;2614 goto again;2615 }2616 backwards_lno--;2617 backwards -= img->line[backwards_lno].len;2618 try = backwards;2619 try_lno = backwards_lno;2620 } else {2621 if (forwards_lno == img->nr) {2622 i++;2623 goto again;2624 }2625 forwards += img->line[forwards_lno].len;2626 forwards_lno++;2627 try = forwards;2628 try_lno = forwards_lno;2629 }26302631 }2632 return -1;2633}26342635static void remove_first_line(struct image *img)2636{2637 img->buf += img->line[0].len;2638 img->len -= img->line[0].len;2639 img->line++;2640 img->nr--;2641}26422643static void remove_last_line(struct image *img)2644{2645 img->len -= img->line[--img->nr].len;2646}26472648/*2649 * The change from "preimage" and "postimage" has been found to2650 * apply at applied_pos (counts in line numbers) in "img".2651 * Update "img" to remove "preimage" and replace it with "postimage".2652 */2653static void update_image(struct apply_state *state,2654 struct image *img,2655 int applied_pos,2656 struct image *preimage,2657 struct image *postimage)2658{2659 /*2660 * remove the copy of preimage at offset in img2661 * and replace it with postimage2662 */2663 int i, nr;2664 size_t remove_count, insert_count, applied_at = 0;2665 char *result;2666 int preimage_limit;26672668 /*2669 * If we are removing blank lines at the end of img,2670 * the preimage may extend beyond the end.2671 * If that is the case, we must be careful only to2672 * remove the part of the preimage that falls within2673 * the boundaries of img. Initialize preimage_limit2674 * to the number of lines in the preimage that falls2675 * within the boundaries.2676 */2677 preimage_limit = preimage->nr;2678 if (preimage_limit > img->nr - applied_pos)2679 preimage_limit = img->nr - applied_pos;26802681 for (i = 0; i < applied_pos; i++)2682 applied_at += img->line[i].len;26832684 remove_count = 0;2685 for (i = 0; i < preimage_limit; i++)2686 remove_count += img->line[applied_pos + i].len;2687 insert_count = postimage->len;26882689 /* Adjust the contents */2690 result = xmalloc(st_add3(st_sub(img->len, remove_count), insert_count, 1));2691 memcpy(result, img->buf, applied_at);2692 memcpy(result + applied_at, postimage->buf, postimage->len);2693 memcpy(result + applied_at + postimage->len,2694 img->buf + (applied_at + remove_count),2695 img->len - (applied_at + remove_count));2696 free(img->buf);2697 img->buf = result;2698 img->len += insert_count - remove_count;2699 result[img->len] = '\0';27002701 /* Adjust the line table */2702 nr = img->nr + postimage->nr - preimage_limit;2703 if (preimage_limit < postimage->nr) {2704 /*2705 * NOTE: this knows that we never call remove_first_line()2706 * on anything other than pre/post image.2707 */2708 REALLOC_ARRAY(img->line, nr);2709 img->line_allocated = img->line;2710 }2711 if (preimage_limit != postimage->nr)2712 memmove(img->line + applied_pos + postimage->nr,2713 img->line + applied_pos + preimage_limit,2714 (img->nr - (applied_pos + preimage_limit)) *2715 sizeof(*img->line));2716 memcpy(img->line + applied_pos,2717 postimage->line,2718 postimage->nr * sizeof(*img->line));2719 if (!state->allow_overlap)2720 for (i = 0; i < postimage->nr; i++)2721 img->line[applied_pos + i].flag |= LINE_PATCHED;2722 img->nr = nr;2723}27242725/*2726 * Use the patch-hunk text in "frag" to prepare two images (preimage and2727 * postimage) for the hunk. Find lines that match "preimage" in "img" and2728 * replace the part of "img" with "postimage" text.2729 */2730static int apply_one_fragment(struct apply_state *state,2731 struct image *img, struct fragment *frag,2732 int inaccurate_eof, unsigned ws_rule,2733 int nth_fragment)2734{2735 int match_beginning, match_end;2736 const char *patch = frag->patch;2737 int size = frag->size;2738 char *old, *oldlines;2739 struct strbuf newlines;2740 int new_blank_lines_at_end = 0;2741 int found_new_blank_lines_at_end = 0;2742 int hunk_linenr = frag->linenr;2743 unsigned long leading, trailing;2744 int pos, applied_pos;2745 struct image preimage;2746 struct image postimage;27472748 memset(&preimage, 0, sizeof(preimage));2749 memset(&postimage, 0, sizeof(postimage));2750 oldlines = xmalloc(size);2751 strbuf_init(&newlines, size);27522753 old = oldlines;2754 while (size > 0) {2755 char first;2756 int len = linelen(patch, size);2757 int plen;2758 int added_blank_line = 0;2759 int is_blank_context = 0;2760 size_t start;27612762 if (!len)2763 break;27642765 /*2766 * "plen" is how much of the line we should use for2767 * the actual patch data. Normally we just remove the2768 * first character on the line, but if the line is2769 * followed by "\ No newline", then we also remove the2770 * last one (which is the newline, of course).2771 */2772 plen = len - 1;2773 if (len < size && patch[len] == '\\')2774 plen--;2775 first = *patch;2776 if (state->apply_in_reverse) {2777 if (first == '-')2778 first = '+';2779 else if (first == '+')2780 first = '-';2781 }27822783 switch (first) {2784 case '\n':2785 /* Newer GNU diff, empty context line */2786 if (plen < 0)2787 /* ... followed by '\No newline'; nothing */2788 break;2789 *old++ = '\n';2790 strbuf_addch(&newlines, '\n');2791 add_line_info(&preimage, "\n", 1, LINE_COMMON);2792 add_line_info(&postimage, "\n", 1, LINE_COMMON);2793 is_blank_context = 1;2794 break;2795 case ' ':2796 if (plen && (ws_rule & WS_BLANK_AT_EOF) &&2797 ws_blank_line(patch + 1, plen, ws_rule))2798 is_blank_context = 1;2799 case '-':2800 memcpy(old, patch + 1, plen);2801 add_line_info(&preimage, old, plen,2802 (first == ' ' ? LINE_COMMON : 0));2803 old += plen;2804 if (first == '-')2805 break;2806 /* Fall-through for ' ' */2807 case '+':2808 /* --no-add does not add new lines */2809 if (first == '+' && state->no_add)2810 break;28112812 start = newlines.len;2813 if (first != '+' ||2814 !state->whitespace_error ||2815 state->ws_error_action != correct_ws_error) {2816 strbuf_add(&newlines, patch + 1, plen);2817 }2818 else {2819 ws_fix_copy(&newlines, patch + 1, plen, ws_rule, &state->applied_after_fixing_ws);2820 }2821 add_line_info(&postimage, newlines.buf + start, newlines.len - start,2822 (first == '+' ? 0 : LINE_COMMON));2823 if (first == '+' &&2824 (ws_rule & WS_BLANK_AT_EOF) &&2825 ws_blank_line(patch + 1, plen, ws_rule))2826 added_blank_line = 1;2827 break;2828 case '@': case '\\':2829 /* Ignore it, we already handled it */2830 break;2831 default:2832 if (state->apply_verbosely)2833 error(_("invalid start of line: '%c'"), first);2834 applied_pos = -1;2835 goto out;2836 }2837 if (added_blank_line) {2838 if (!new_blank_lines_at_end)2839 found_new_blank_lines_at_end = hunk_linenr;2840 new_blank_lines_at_end++;2841 }2842 else if (is_blank_context)2843 ;2844 else2845 new_blank_lines_at_end = 0;2846 patch += len;2847 size -= len;2848 hunk_linenr++;2849 }2850 if (inaccurate_eof &&2851 old > oldlines && old[-1] == '\n' &&2852 newlines.len > 0 && newlines.buf[newlines.len - 1] == '\n') {2853 old--;2854 strbuf_setlen(&newlines, newlines.len - 1);2855 }28562857 leading = frag->leading;2858 trailing = frag->trailing;28592860 /*2861 * A hunk to change lines at the beginning would begin with2862 * @@ -1,L +N,M @@2863 * but we need to be careful. -U0 that inserts before the second2864 * line also has this pattern.2865 *2866 * And a hunk to add to an empty file would begin with2867 * @@ -0,0 +N,M @@2868 *2869 * In other words, a hunk that is (frag->oldpos <= 1) with or2870 * without leading context must match at the beginning.2871 */2872 match_beginning = (!frag->oldpos ||2873 (frag->oldpos == 1 && !state->unidiff_zero));28742875 /*2876 * A hunk without trailing lines must match at the end.2877 * However, we simply cannot tell if a hunk must match end2878 * from the lack of trailing lines if the patch was generated2879 * with unidiff without any context.2880 */2881 match_end = !state->unidiff_zero && !trailing;28822883 pos = frag->newpos ? (frag->newpos - 1) : 0;2884 preimage.buf = oldlines;2885 preimage.len = old - oldlines;2886 postimage.buf = newlines.buf;2887 postimage.len = newlines.len;2888 preimage.line = preimage.line_allocated;2889 postimage.line = postimage.line_allocated;28902891 for (;;) {28922893 applied_pos = find_pos(state, img, &preimage, &postimage, pos,2894 ws_rule, match_beginning, match_end);28952896 if (applied_pos >= 0)2897 break;28982899 /* Am I at my context limits? */2900 if ((leading <= state->p_context) && (trailing <= state->p_context))2901 break;2902 if (match_beginning || match_end) {2903 match_beginning = match_end = 0;2904 continue;2905 }29062907 /*2908 * Reduce the number of context lines; reduce both2909 * leading and trailing if they are equal otherwise2910 * just reduce the larger context.2911 */2912 if (leading >= trailing) {2913 remove_first_line(&preimage);2914 remove_first_line(&postimage);2915 pos--;2916 leading--;2917 }2918 if (trailing > leading) {2919 remove_last_line(&preimage);2920 remove_last_line(&postimage);2921 trailing--;2922 }2923 }29242925 if (applied_pos >= 0) {2926 if (new_blank_lines_at_end &&2927 preimage.nr + applied_pos >= img->nr &&2928 (ws_rule & WS_BLANK_AT_EOF) &&2929 state->ws_error_action != nowarn_ws_error) {2930 record_ws_error(state, WS_BLANK_AT_EOF, "+", 1,2931 found_new_blank_lines_at_end);2932 if (state->ws_error_action == correct_ws_error) {2933 while (new_blank_lines_at_end--)2934 remove_last_line(&postimage);2935 }2936 /*2937 * We would want to prevent write_out_results()2938 * from taking place in apply_patch() that follows2939 * the callchain led us here, which is:2940 * apply_patch->check_patch_list->check_patch->2941 * apply_data->apply_fragments->apply_one_fragment2942 */2943 if (state->ws_error_action == die_on_ws_error)2944 state->apply = 0;2945 }29462947 if (state->apply_verbosely && applied_pos != pos) {2948 int offset = applied_pos - pos;2949 if (state->apply_in_reverse)2950 offset = 0 - offset;2951 fprintf_ln(stderr,2952 Q_("Hunk #%d succeeded at %d (offset %d line).",2953 "Hunk #%d succeeded at %d (offset %d lines).",2954 offset),2955 nth_fragment, applied_pos + 1, offset);2956 }29572958 /*2959 * Warn if it was necessary to reduce the number2960 * of context lines.2961 */2962 if ((leading != frag->leading) ||2963 (trailing != frag->trailing))2964 fprintf_ln(stderr, _("Context reduced to (%ld/%ld)"2965 " to apply fragment at %d"),2966 leading, trailing, applied_pos+1);2967 update_image(state, img, applied_pos, &preimage, &postimage);2968 } else {2969 if (state->apply_verbosely)2970 error(_("while searching for:\n%.*s"),2971 (int)(old - oldlines), oldlines);2972 }29732974out:2975 free(oldlines);2976 strbuf_release(&newlines);2977 free(preimage.line_allocated);2978 free(postimage.line_allocated);29792980 return (applied_pos < 0);2981}29822983static int apply_binary_fragment(struct apply_state *state,2984 struct image *img,2985 struct patch *patch)2986{2987 struct fragment *fragment = patch->fragments;2988 unsigned long len;2989 void *dst;29902991 if (!fragment)2992 return error(_("missing binary patch data for '%s'"),2993 patch->new_name ?2994 patch->new_name :2995 patch->old_name);29962997 /* Binary patch is irreversible without the optional second hunk */2998 if (state->apply_in_reverse) {2999 if (!fragment->next)3000 return error("cannot reverse-apply a binary patch "3001 "without the reverse hunk to '%s'",3002 patch->new_name3003 ? patch->new_name : patch->old_name);3004 fragment = fragment->next;3005 }3006 switch (fragment->binary_patch_method) {3007 case BINARY_DELTA_DEFLATED:3008 dst = patch_delta(img->buf, img->len, fragment->patch,3009 fragment->size, &len);3010 if (!dst)3011 return -1;3012 clear_image(img);3013 img->buf = dst;3014 img->len = len;3015 return 0;3016 case BINARY_LITERAL_DEFLATED:3017 clear_image(img);3018 img->len = fragment->size;3019 img->buf = xmemdupz(fragment->patch, img->len);3020 return 0;3021 }3022 return -1;3023}30243025/*3026 * Replace "img" with the result of applying the binary patch.3027 * The binary patch data itself in patch->fragment is still kept3028 * but the preimage prepared by the caller in "img" is freed here3029 * or in the helper function apply_binary_fragment() this calls.3030 */3031static int apply_binary(struct apply_state *state,3032 struct image *img,3033 struct patch *patch)3034{3035 const char *name = patch->old_name ? patch->old_name : patch->new_name;3036 unsigned char sha1[20];30373038 /*3039 * For safety, we require patch index line to contain3040 * full 40-byte textual SHA1 for old and new, at least for now.3041 */3042 if (strlen(patch->old_sha1_prefix) != 40 ||3043 strlen(patch->new_sha1_prefix) != 40 ||3044 get_sha1_hex(patch->old_sha1_prefix, sha1) ||3045 get_sha1_hex(patch->new_sha1_prefix, sha1))3046 return error("cannot apply binary patch to '%s' "3047 "without full index line", name);30483049 if (patch->old_name) {3050 /*3051 * See if the old one matches what the patch3052 * applies to.3053 */3054 hash_sha1_file(img->buf, img->len, blob_type, sha1);3055 if (strcmp(sha1_to_hex(sha1), patch->old_sha1_prefix))3056 return error("the patch applies to '%s' (%s), "3057 "which does not match the "3058 "current contents.",3059 name, sha1_to_hex(sha1));3060 }3061 else {3062 /* Otherwise, the old one must be empty. */3063 if (img->len)3064 return error("the patch applies to an empty "3065 "'%s' but it is not empty", name);3066 }30673068 get_sha1_hex(patch->new_sha1_prefix, sha1);3069 if (is_null_sha1(sha1)) {3070 clear_image(img);3071 return 0; /* deletion patch */3072 }30733074 if (has_sha1_file(sha1)) {3075 /* We already have the postimage */3076 enum object_type type;3077 unsigned long size;3078 char *result;30793080 result = read_sha1_file(sha1, &type, &size);3081 if (!result)3082 return error("the necessary postimage %s for "3083 "'%s' cannot be read",3084 patch->new_sha1_prefix, name);3085 clear_image(img);3086 img->buf = result;3087 img->len = size;3088 } else {3089 /*3090 * We have verified buf matches the preimage;3091 * apply the patch data to it, which is stored3092 * in the patch->fragments->{patch,size}.3093 */3094 if (apply_binary_fragment(state, img, patch))3095 return error(_("binary patch does not apply to '%s'"),3096 name);30973098 /* verify that the result matches */3099 hash_sha1_file(img->buf, img->len, blob_type, sha1);3100 if (strcmp(sha1_to_hex(sha1), patch->new_sha1_prefix))3101 return error(_("binary patch to '%s' creates incorrect result (expecting %s, got %s)"),3102 name, patch->new_sha1_prefix, sha1_to_hex(sha1));3103 }31043105 return 0;3106}31073108static int apply_fragments(struct apply_state *state, struct image *img, struct patch *patch)3109{3110 struct fragment *frag = patch->fragments;3111 const char *name = patch->old_name ? patch->old_name : patch->new_name;3112 unsigned ws_rule = patch->ws_rule;3113 unsigned inaccurate_eof = patch->inaccurate_eof;3114 int nth = 0;31153116 if (patch->is_binary)3117 return apply_binary(state, img, patch);31183119 while (frag) {3120 nth++;3121 if (apply_one_fragment(state, img, frag, inaccurate_eof, ws_rule, nth)) {3122 error(_("patch failed: %s:%ld"), name, frag->oldpos);3123 if (!state->apply_with_reject)3124 return -1;3125 frag->rejected = 1;3126 }3127 frag = frag->next;3128 }3129 return 0;3130}31313132static int read_blob_object(struct strbuf *buf, const unsigned char *sha1, unsigned mode)3133{3134 if (S_ISGITLINK(mode)) {3135 strbuf_grow(buf, 100);3136 strbuf_addf(buf, "Subproject commit %s\n", sha1_to_hex(sha1));3137 } else {3138 enum object_type type;3139 unsigned long sz;3140 char *result;31413142 result = read_sha1_file(sha1, &type, &sz);3143 if (!result)3144 return -1;3145 /* XXX read_sha1_file NUL-terminates */3146 strbuf_attach(buf, result, sz, sz + 1);3147 }3148 return 0;3149}31503151static int read_file_or_gitlink(const struct cache_entry *ce, struct strbuf *buf)3152{3153 if (!ce)3154 return 0;3155 return read_blob_object(buf, ce->sha1, ce->ce_mode);3156}31573158static struct patch *in_fn_table(struct apply_state *state, const char *name)3159{3160 struct string_list_item *item;31613162 if (name == NULL)3163 return NULL;31643165 item = string_list_lookup(&state->fn_table, name);3166 if (item != NULL)3167 return (struct patch *)item->util;31683169 return NULL;3170}31713172/*3173 * item->util in the filename table records the status of the path.3174 * Usually it points at a patch (whose result records the contents3175 * of it after applying it), but it could be PATH_WAS_DELETED for a3176 * path that a previously applied patch has already removed, or3177 * PATH_TO_BE_DELETED for a path that a later patch would remove.3178 *3179 * The latter is needed to deal with a case where two paths A and B3180 * are swapped by first renaming A to B and then renaming B to A;3181 * moving A to B should not be prevented due to presence of B as we3182 * will remove it in a later patch.3183 */3184#define PATH_TO_BE_DELETED ((struct patch *) -2)3185#define PATH_WAS_DELETED ((struct patch *) -1)31863187static int to_be_deleted(struct patch *patch)3188{3189 return patch == PATH_TO_BE_DELETED;3190}31913192static int was_deleted(struct patch *patch)3193{3194 return patch == PATH_WAS_DELETED;3195}31963197static void add_to_fn_table(struct apply_state *state, struct patch *patch)3198{3199 struct string_list_item *item;32003201 /*3202 * Always add new_name unless patch is a deletion3203 * This should cover the cases for normal diffs,3204 * file creations and copies3205 */3206 if (patch->new_name != NULL) {3207 item = string_list_insert(&state->fn_table, patch->new_name);3208 item->util = patch;3209 }32103211 /*3212 * store a failure on rename/deletion cases because3213 * later chunks shouldn't patch old names3214 */3215 if ((patch->new_name == NULL) || (patch->is_rename)) {3216 item = string_list_insert(&state->fn_table, patch->old_name);3217 item->util = PATH_WAS_DELETED;3218 }3219}32203221static void prepare_fn_table(struct apply_state *state, struct patch *patch)3222{3223 /*3224 * store information about incoming file deletion3225 */3226 while (patch) {3227 if ((patch->new_name == NULL) || (patch->is_rename)) {3228 struct string_list_item *item;3229 item = string_list_insert(&state->fn_table, patch->old_name);3230 item->util = PATH_TO_BE_DELETED;3231 }3232 patch = patch->next;3233 }3234}32353236static int checkout_target(struct index_state *istate,3237 struct cache_entry *ce, struct stat *st)3238{3239 struct checkout costate;32403241 memset(&costate, 0, sizeof(costate));3242 costate.base_dir = "";3243 costate.refresh_cache = 1;3244 costate.istate = istate;3245 if (checkout_entry(ce, &costate, NULL) || lstat(ce->name, st))3246 return error(_("cannot checkout %s"), ce->name);3247 return 0;3248}32493250static struct patch *previous_patch(struct apply_state *state,3251 struct patch *patch,3252 int *gone)3253{3254 struct patch *previous;32553256 *gone = 0;3257 if (patch->is_copy || patch->is_rename)3258 return NULL; /* "git" patches do not depend on the order */32593260 previous = in_fn_table(state, patch->old_name);3261 if (!previous)3262 return NULL;32633264 if (to_be_deleted(previous))3265 return NULL; /* the deletion hasn't happened yet */32663267 if (was_deleted(previous))3268 *gone = 1;32693270 return previous;3271}32723273static int verify_index_match(const struct cache_entry *ce, struct stat *st)3274{3275 if (S_ISGITLINK(ce->ce_mode)) {3276 if (!S_ISDIR(st->st_mode))3277 return -1;3278 return 0;3279 }3280 return ce_match_stat(ce, st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);3281}32823283#define SUBMODULE_PATCH_WITHOUT_INDEX 132843285static int load_patch_target(struct apply_state *state,3286 struct strbuf *buf,3287 const struct cache_entry *ce,3288 struct stat *st,3289 const char *name,3290 unsigned expected_mode)3291{3292 if (state->cached || state->check_index) {3293 if (read_file_or_gitlink(ce, buf))3294 return error(_("failed to read %s"), name);3295 } else if (name) {3296 if (S_ISGITLINK(expected_mode)) {3297 if (ce)3298 return read_file_or_gitlink(ce, buf);3299 else3300 return SUBMODULE_PATCH_WITHOUT_INDEX;3301 } else if (has_symlink_leading_path(name, strlen(name))) {3302 return error(_("reading from '%s' beyond a symbolic link"), name);3303 } else {3304 if (read_old_data(st, name, buf))3305 return error(_("failed to read %s"), name);3306 }3307 }3308 return 0;3309}33103311/*3312 * We are about to apply "patch"; populate the "image" with the3313 * current version we have, from the working tree or from the index,3314 * depending on the situation e.g. --cached/--index. If we are3315 * applying a non-git patch that incrementally updates the tree,3316 * we read from the result of a previous diff.3317 */3318static int load_preimage(struct apply_state *state,3319 struct image *image,3320 struct patch *patch, struct stat *st,3321 const struct cache_entry *ce)3322{3323 struct strbuf buf = STRBUF_INIT;3324 size_t len;3325 char *img;3326 struct patch *previous;3327 int status;33283329 previous = previous_patch(state, patch, &status);3330 if (status)3331 return error(_("path %s has been renamed/deleted"),3332 patch->old_name);3333 if (previous) {3334 /* We have a patched copy in memory; use that. */3335 strbuf_add(&buf, previous->result, previous->resultsize);3336 } else {3337 status = load_patch_target(state, &buf, ce, st,3338 patch->old_name, patch->old_mode);3339 if (status < 0)3340 return status;3341 else if (status == SUBMODULE_PATCH_WITHOUT_INDEX) {3342 /*3343 * There is no way to apply subproject3344 * patch without looking at the index.3345 * NEEDSWORK: shouldn't this be flagged3346 * as an error???3347 */3348 free_fragment_list(patch->fragments);3349 patch->fragments = NULL;3350 } else if (status) {3351 return error(_("failed to read %s"), patch->old_name);3352 }3353 }33543355 img = strbuf_detach(&buf, &len);3356 prepare_image(image, img, len, !patch->is_binary);3357 return 0;3358}33593360static int three_way_merge(struct image *image,3361 char *path,3362 const unsigned char *base,3363 const unsigned char *ours,3364 const unsigned char *theirs)3365{3366 mmfile_t base_file, our_file, their_file;3367 mmbuffer_t result = { NULL };3368 int status;33693370 read_mmblob(&base_file, base);3371 read_mmblob(&our_file, ours);3372 read_mmblob(&their_file, theirs);3373 status = ll_merge(&result, path,3374 &base_file, "base",3375 &our_file, "ours",3376 &their_file, "theirs", NULL);3377 free(base_file.ptr);3378 free(our_file.ptr);3379 free(their_file.ptr);3380 if (status < 0 || !result.ptr) {3381 free(result.ptr);3382 return -1;3383 }3384 clear_image(image);3385 image->buf = result.ptr;3386 image->len = result.size;33873388 return status;3389}33903391/*3392 * When directly falling back to add/add three-way merge, we read from3393 * the current contents of the new_name. In no cases other than that3394 * this function will be called.3395 */3396static int load_current(struct apply_state *state,3397 struct image *image,3398 struct patch *patch)3399{3400 struct strbuf buf = STRBUF_INIT;3401 int status, pos;3402 size_t len;3403 char *img;3404 struct stat st;3405 struct cache_entry *ce;3406 char *name = patch->new_name;3407 unsigned mode = patch->new_mode;34083409 if (!patch->is_new)3410 die("BUG: patch to %s is not a creation", patch->old_name);34113412 pos = cache_name_pos(name, strlen(name));3413 if (pos < 0)3414 return error(_("%s: does not exist in index"), name);3415 ce = active_cache[pos];3416 if (lstat(name, &st)) {3417 if (errno != ENOENT)3418 return error(_("%s: %s"), name, strerror(errno));3419 if (checkout_target(&the_index, ce, &st))3420 return -1;3421 }3422 if (verify_index_match(ce, &st))3423 return error(_("%s: does not match index"), name);34243425 status = load_patch_target(state, &buf, ce, &st, name, mode);3426 if (status < 0)3427 return status;3428 else if (status)3429 return -1;3430 img = strbuf_detach(&buf, &len);3431 prepare_image(image, img, len, !patch->is_binary);3432 return 0;3433}34343435static int try_threeway(struct apply_state *state,3436 struct image *image,3437 struct patch *patch,3438 struct stat *st,3439 const struct cache_entry *ce)3440{3441 unsigned char pre_sha1[20], post_sha1[20], our_sha1[20];3442 struct strbuf buf = STRBUF_INIT;3443 size_t len;3444 int status;3445 char *img;3446 struct image tmp_image;34473448 /* No point falling back to 3-way merge in these cases */3449 if (patch->is_delete ||3450 S_ISGITLINK(patch->old_mode) || S_ISGITLINK(patch->new_mode))3451 return -1;34523453 /* Preimage the patch was prepared for */3454 if (patch->is_new)3455 write_sha1_file("", 0, blob_type, pre_sha1);3456 else if (get_sha1(patch->old_sha1_prefix, pre_sha1) ||3457 read_blob_object(&buf, pre_sha1, patch->old_mode))3458 return error("repository lacks the necessary blob to fall back on 3-way merge.");34593460 fprintf(stderr, "Falling back to three-way merge...\n");34613462 img = strbuf_detach(&buf, &len);3463 prepare_image(&tmp_image, img, len, 1);3464 /* Apply the patch to get the post image */3465 if (apply_fragments(state, &tmp_image, patch) < 0) {3466 clear_image(&tmp_image);3467 return -1;3468 }3469 /* post_sha1[] is theirs */3470 write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, post_sha1);3471 clear_image(&tmp_image);34723473 /* our_sha1[] is ours */3474 if (patch->is_new) {3475 if (load_current(state, &tmp_image, patch))3476 return error("cannot read the current contents of '%s'",3477 patch->new_name);3478 } else {3479 if (load_preimage(state, &tmp_image, patch, st, ce))3480 return error("cannot read the current contents of '%s'",3481 patch->old_name);3482 }3483 write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, our_sha1);3484 clear_image(&tmp_image);34853486 /* in-core three-way merge between post and our using pre as base */3487 status = three_way_merge(image, patch->new_name,3488 pre_sha1, our_sha1, post_sha1);3489 if (status < 0) {3490 fprintf(stderr, "Failed to fall back on three-way merge...\n");3491 return status;3492 }34933494 if (status) {3495 patch->conflicted_threeway = 1;3496 if (patch->is_new)3497 oidclr(&patch->threeway_stage[0]);3498 else3499 hashcpy(patch->threeway_stage[0].hash, pre_sha1);3500 hashcpy(patch->threeway_stage[1].hash, our_sha1);3501 hashcpy(patch->threeway_stage[2].hash, post_sha1);3502 fprintf(stderr, "Applied patch to '%s' with conflicts.\n", patch->new_name);3503 } else {3504 fprintf(stderr, "Applied patch to '%s' cleanly.\n", patch->new_name);3505 }3506 return 0;3507}35083509static int apply_data(struct apply_state *state, struct patch *patch,3510 struct stat *st, const struct cache_entry *ce)3511{3512 struct image image;35133514 if (load_preimage(state, &image, patch, st, ce) < 0)3515 return -1;35163517 if (patch->direct_to_threeway ||3518 apply_fragments(state, &image, patch) < 0) {3519 /* Note: with --reject, apply_fragments() returns 0 */3520 if (!state->threeway || try_threeway(state, &image, patch, st, ce) < 0)3521 return -1;3522 }3523 patch->result = image.buf;3524 patch->resultsize = image.len;3525 add_to_fn_table(state, patch);3526 free(image.line_allocated);35273528 if (0 < patch->is_delete && patch->resultsize)3529 return error(_("removal patch leaves file contents"));35303531 return 0;3532}35333534/*3535 * If "patch" that we are looking at modifies or deletes what we have,3536 * we would want it not to lose any local modification we have, either3537 * in the working tree or in the index.3538 *3539 * This also decides if a non-git patch is a creation patch or a3540 * modification to an existing empty file. We do not check the state3541 * of the current tree for a creation patch in this function; the caller3542 * check_patch() separately makes sure (and errors out otherwise) that3543 * the path the patch creates does not exist in the current tree.3544 */3545static int check_preimage(struct apply_state *state,3546 struct patch *patch,3547 struct cache_entry **ce,3548 struct stat *st)3549{3550 const char *old_name = patch->old_name;3551 struct patch *previous = NULL;3552 int stat_ret = 0, status;3553 unsigned st_mode = 0;35543555 if (!old_name)3556 return 0;35573558 assert(patch->is_new <= 0);3559 previous = previous_patch(state, patch, &status);35603561 if (status)3562 return error(_("path %s has been renamed/deleted"), old_name);3563 if (previous) {3564 st_mode = previous->new_mode;3565 } else if (!state->cached) {3566 stat_ret = lstat(old_name, st);3567 if (stat_ret && errno != ENOENT)3568 return error(_("%s: %s"), old_name, strerror(errno));3569 }35703571 if (state->check_index && !previous) {3572 int pos = cache_name_pos(old_name, strlen(old_name));3573 if (pos < 0) {3574 if (patch->is_new < 0)3575 goto is_new;3576 return error(_("%s: does not exist in index"), old_name);3577 }3578 *ce = active_cache[pos];3579 if (stat_ret < 0) {3580 if (checkout_target(&the_index, *ce, st))3581 return -1;3582 }3583 if (!state->cached && verify_index_match(*ce, st))3584 return error(_("%s: does not match index"), old_name);3585 if (state->cached)3586 st_mode = (*ce)->ce_mode;3587 } else if (stat_ret < 0) {3588 if (patch->is_new < 0)3589 goto is_new;3590 return error(_("%s: %s"), old_name, strerror(errno));3591 }35923593 if (!state->cached && !previous)3594 st_mode = ce_mode_from_stat(*ce, st->st_mode);35953596 if (patch->is_new < 0)3597 patch->is_new = 0;3598 if (!patch->old_mode)3599 patch->old_mode = st_mode;3600 if ((st_mode ^ patch->old_mode) & S_IFMT)3601 return error(_("%s: wrong type"), old_name);3602 if (st_mode != patch->old_mode)3603 warning(_("%s has type %o, expected %o"),3604 old_name, st_mode, patch->old_mode);3605 if (!patch->new_mode && !patch->is_delete)3606 patch->new_mode = st_mode;3607 return 0;36083609 is_new:3610 patch->is_new = 1;3611 patch->is_delete = 0;3612 free(patch->old_name);3613 patch->old_name = NULL;3614 return 0;3615}361636173618#define EXISTS_IN_INDEX 13619#define EXISTS_IN_WORKTREE 236203621static int check_to_create(struct apply_state *state,3622 const char *new_name,3623 int ok_if_exists)3624{3625 struct stat nst;36263627 if (state->check_index &&3628 cache_name_pos(new_name, strlen(new_name)) >= 0 &&3629 !ok_if_exists)3630 return EXISTS_IN_INDEX;3631 if (state->cached)3632 return 0;36333634 if (!lstat(new_name, &nst)) {3635 if (S_ISDIR(nst.st_mode) || ok_if_exists)3636 return 0;3637 /*3638 * A leading component of new_name might be a symlink3639 * that is going to be removed with this patch, but3640 * still pointing at somewhere that has the path.3641 * In such a case, path "new_name" does not exist as3642 * far as git is concerned.3643 */3644 if (has_symlink_leading_path(new_name, strlen(new_name)))3645 return 0;36463647 return EXISTS_IN_WORKTREE;3648 } else if ((errno != ENOENT) && (errno != ENOTDIR)) {3649 return error("%s: %s", new_name, strerror(errno));3650 }3651 return 0;3652}36533654static uintptr_t register_symlink_changes(struct apply_state *state,3655 const char *path,3656 uintptr_t what)3657{3658 struct string_list_item *ent;36593660 ent = string_list_lookup(&state->symlink_changes, path);3661 if (!ent) {3662 ent = string_list_insert(&state->symlink_changes, path);3663 ent->util = (void *)0;3664 }3665 ent->util = (void *)(what | ((uintptr_t)ent->util));3666 return (uintptr_t)ent->util;3667}36683669static uintptr_t check_symlink_changes(struct apply_state *state, const char *path)3670{3671 struct string_list_item *ent;36723673 ent = string_list_lookup(&state->symlink_changes, path);3674 if (!ent)3675 return 0;3676 return (uintptr_t)ent->util;3677}36783679static void prepare_symlink_changes(struct apply_state *state, struct patch *patch)3680{3681 for ( ; patch; patch = patch->next) {3682 if ((patch->old_name && S_ISLNK(patch->old_mode)) &&3683 (patch->is_rename || patch->is_delete))3684 /* the symlink at patch->old_name is removed */3685 register_symlink_changes(state, patch->old_name, APPLY_SYMLINK_GOES_AWAY);36863687 if (patch->new_name && S_ISLNK(patch->new_mode))3688 /* the symlink at patch->new_name is created or remains */3689 register_symlink_changes(state, patch->new_name, APPLY_SYMLINK_IN_RESULT);3690 }3691}36923693static int path_is_beyond_symlink_1(struct apply_state *state, struct strbuf *name)3694{3695 do {3696 unsigned int change;36973698 while (--name->len && name->buf[name->len] != '/')3699 ; /* scan backwards */3700 if (!name->len)3701 break;3702 name->buf[name->len] = '\0';3703 change = check_symlink_changes(state, name->buf);3704 if (change & APPLY_SYMLINK_IN_RESULT)3705 return 1;3706 if (change & APPLY_SYMLINK_GOES_AWAY)3707 /*3708 * This cannot be "return 0", because we may3709 * see a new one created at a higher level.3710 */3711 continue;37123713 /* otherwise, check the preimage */3714 if (state->check_index) {3715 struct cache_entry *ce;37163717 ce = cache_file_exists(name->buf, name->len, ignore_case);3718 if (ce && S_ISLNK(ce->ce_mode))3719 return 1;3720 } else {3721 struct stat st;3722 if (!lstat(name->buf, &st) && S_ISLNK(st.st_mode))3723 return 1;3724 }3725 } while (1);3726 return 0;3727}37283729static int path_is_beyond_symlink(struct apply_state *state, const char *name_)3730{3731 int ret;3732 struct strbuf name = STRBUF_INIT;37333734 assert(*name_ != '\0');3735 strbuf_addstr(&name, name_);3736 ret = path_is_beyond_symlink_1(state, &name);3737 strbuf_release(&name);37383739 return ret;3740}37413742static void die_on_unsafe_path(struct patch *patch)3743{3744 const char *old_name = NULL;3745 const char *new_name = NULL;3746 if (patch->is_delete)3747 old_name = patch->old_name;3748 else if (!patch->is_new && !patch->is_copy)3749 old_name = patch->old_name;3750 if (!patch->is_delete)3751 new_name = patch->new_name;37523753 if (old_name && !verify_path(old_name))3754 die(_("invalid path '%s'"), old_name);3755 if (new_name && !verify_path(new_name))3756 die(_("invalid path '%s'"), new_name);3757}37583759/*3760 * Check and apply the patch in-core; leave the result in patch->result3761 * for the caller to write it out to the final destination.3762 */3763static int check_patch(struct apply_state *state, struct patch *patch)3764{3765 struct stat st;3766 const char *old_name = patch->old_name;3767 const char *new_name = patch->new_name;3768 const char *name = old_name ? old_name : new_name;3769 struct cache_entry *ce = NULL;3770 struct patch *tpatch;3771 int ok_if_exists;3772 int status;37733774 patch->rejected = 1; /* we will drop this after we succeed */37753776 status = check_preimage(state, patch, &ce, &st);3777 if (status)3778 return status;3779 old_name = patch->old_name;37803781 /*3782 * A type-change diff is always split into a patch to delete3783 * old, immediately followed by a patch to create new (see3784 * diff.c::run_diff()); in such a case it is Ok that the entry3785 * to be deleted by the previous patch is still in the working3786 * tree and in the index.3787 *3788 * A patch to swap-rename between A and B would first rename A3789 * to B and then rename B to A. While applying the first one,3790 * the presence of B should not stop A from getting renamed to3791 * B; ask to_be_deleted() about the later rename. Removal of3792 * B and rename from A to B is handled the same way by asking3793 * was_deleted().3794 */3795 if ((tpatch = in_fn_table(state, new_name)) &&3796 (was_deleted(tpatch) || to_be_deleted(tpatch)))3797 ok_if_exists = 1;3798 else3799 ok_if_exists = 0;38003801 if (new_name &&3802 ((0 < patch->is_new) || patch->is_rename || patch->is_copy)) {3803 int err = check_to_create(state, new_name, ok_if_exists);38043805 if (err && state->threeway) {3806 patch->direct_to_threeway = 1;3807 } else switch (err) {3808 case 0:3809 break; /* happy */3810 case EXISTS_IN_INDEX:3811 return error(_("%s: already exists in index"), new_name);3812 break;3813 case EXISTS_IN_WORKTREE:3814 return error(_("%s: already exists in working directory"),3815 new_name);3816 default:3817 return err;3818 }38193820 if (!patch->new_mode) {3821 if (0 < patch->is_new)3822 patch->new_mode = S_IFREG | 0644;3823 else3824 patch->new_mode = patch->old_mode;3825 }3826 }38273828 if (new_name && old_name) {3829 int same = !strcmp(old_name, new_name);3830 if (!patch->new_mode)3831 patch->new_mode = patch->old_mode;3832 if ((patch->old_mode ^ patch->new_mode) & S_IFMT) {3833 if (same)3834 return error(_("new mode (%o) of %s does not "3835 "match old mode (%o)"),3836 patch->new_mode, new_name,3837 patch->old_mode);3838 else3839 return error(_("new mode (%o) of %s does not "3840 "match old mode (%o) of %s"),3841 patch->new_mode, new_name,3842 patch->old_mode, old_name);3843 }3844 }38453846 if (!state->unsafe_paths)3847 die_on_unsafe_path(patch);38483849 /*3850 * An attempt to read from or delete a path that is beyond a3851 * symbolic link will be prevented by load_patch_target() that3852 * is called at the beginning of apply_data() so we do not3853 * have to worry about a patch marked with "is_delete" bit3854 * here. We however need to make sure that the patch result3855 * is not deposited to a path that is beyond a symbolic link3856 * here.3857 */3858 if (!patch->is_delete && path_is_beyond_symlink(state, patch->new_name))3859 return error(_("affected file '%s' is beyond a symbolic link"),3860 patch->new_name);38613862 if (apply_data(state, patch, &st, ce) < 0)3863 return error(_("%s: patch does not apply"), name);3864 patch->rejected = 0;3865 return 0;3866}38673868static int check_patch_list(struct apply_state *state, struct patch *patch)3869{3870 int err = 0;38713872 prepare_symlink_changes(state, patch);3873 prepare_fn_table(state, patch);3874 while (patch) {3875 if (state->apply_verbosely)3876 say_patch_name(stderr,3877 _("Checking patch %s..."), patch);3878 err |= check_patch(state, patch);3879 patch = patch->next;3880 }3881 return err;3882}38833884/* This function tries to read the sha1 from the current index */3885static int get_current_sha1(const char *path, unsigned char *sha1)3886{3887 int pos;38883889 if (read_cache() < 0)3890 return -1;3891 pos = cache_name_pos(path, strlen(path));3892 if (pos < 0)3893 return -1;3894 hashcpy(sha1, active_cache[pos]->sha1);3895 return 0;3896}38973898static int preimage_sha1_in_gitlink_patch(struct patch *p, unsigned char sha1[20])3899{3900 /*3901 * A usable gitlink patch has only one fragment (hunk) that looks like:3902 * @@ -1 +1 @@3903 * -Subproject commit <old sha1>3904 * +Subproject commit <new sha1>3905 * or3906 * @@ -1 +0,0 @@3907 * -Subproject commit <old sha1>3908 * for a removal patch.3909 */3910 struct fragment *hunk = p->fragments;3911 static const char heading[] = "-Subproject commit ";3912 char *preimage;39133914 if (/* does the patch have only one hunk? */3915 hunk && !hunk->next &&3916 /* is its preimage one line? */3917 hunk->oldpos == 1 && hunk->oldlines == 1 &&3918 /* does preimage begin with the heading? */3919 (preimage = memchr(hunk->patch, '\n', hunk->size)) != NULL &&3920 starts_with(++preimage, heading) &&3921 /* does it record full SHA-1? */3922 !get_sha1_hex(preimage + sizeof(heading) - 1, sha1) &&3923 preimage[sizeof(heading) + 40 - 1] == '\n' &&3924 /* does the abbreviated name on the index line agree with it? */3925 starts_with(preimage + sizeof(heading) - 1, p->old_sha1_prefix))3926 return 0; /* it all looks fine */39273928 /* we may have full object name on the index line */3929 return get_sha1_hex(p->old_sha1_prefix, sha1);3930}39313932/* Build an index that contains the just the files needed for a 3way merge */3933static void build_fake_ancestor(struct patch *list, const char *filename)3934{3935 struct patch *patch;3936 struct index_state result = { NULL };3937 static struct lock_file lock;39383939 /* Once we start supporting the reverse patch, it may be3940 * worth showing the new sha1 prefix, but until then...3941 */3942 for (patch = list; patch; patch = patch->next) {3943 unsigned char sha1[20];3944 struct cache_entry *ce;3945 const char *name;39463947 name = patch->old_name ? patch->old_name : patch->new_name;3948 if (0 < patch->is_new)3949 continue;39503951 if (S_ISGITLINK(patch->old_mode)) {3952 if (!preimage_sha1_in_gitlink_patch(patch, sha1))3953 ; /* ok, the textual part looks sane */3954 else3955 die("sha1 information is lacking or useless for submodule %s",3956 name);3957 } else if (!get_sha1_blob(patch->old_sha1_prefix, sha1)) {3958 ; /* ok */3959 } else if (!patch->lines_added && !patch->lines_deleted) {3960 /* mode-only change: update the current */3961 if (get_current_sha1(patch->old_name, sha1))3962 die("mode change for %s, which is not "3963 "in current HEAD", name);3964 } else3965 die("sha1 information is lacking or useless "3966 "(%s).", name);39673968 ce = make_cache_entry(patch->old_mode, sha1, name, 0, 0);3969 if (!ce)3970 die(_("make_cache_entry failed for path '%s'"), name);3971 if (add_index_entry(&result, ce, ADD_CACHE_OK_TO_ADD))3972 die ("Could not add %s to temporary index", name);3973 }39743975 hold_lock_file_for_update(&lock, filename, LOCK_DIE_ON_ERROR);3976 if (write_locked_index(&result, &lock, COMMIT_LOCK))3977 die ("Could not write temporary index to %s", filename);39783979 discard_index(&result);3980}39813982static void stat_patch_list(struct apply_state *state, struct patch *patch)3983{3984 int files, adds, dels;39853986 for (files = adds = dels = 0 ; patch ; patch = patch->next) {3987 files++;3988 adds += patch->lines_added;3989 dels += patch->lines_deleted;3990 show_stats(state, patch);3991 }39923993 print_stat_summary(stdout, files, adds, dels);3994}39953996static void numstat_patch_list(struct apply_state *state,3997 struct patch *patch)3998{3999 for ( ; patch; patch = patch->next) {4000 const char *name;4001 name = patch->new_name ? patch->new_name : patch->old_name;4002 if (patch->is_binary)4003 printf("-\t-\t");4004 else4005 printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);4006 write_name_quoted(name, stdout, state->line_termination);4007 }4008}40094010static void show_file_mode_name(const char *newdelete, unsigned int mode, const char *name)4011{4012 if (mode)4013 printf(" %s mode %06o %s\n", newdelete, mode, name);4014 else4015 printf(" %s %s\n", newdelete, name);4016}40174018static void show_mode_change(struct patch *p, int show_name)4019{4020 if (p->old_mode && p->new_mode && p->old_mode != p->new_mode) {4021 if (show_name)4022 printf(" mode change %06o => %06o %s\n",4023 p->old_mode, p->new_mode, p->new_name);4024 else4025 printf(" mode change %06o => %06o\n",4026 p->old_mode, p->new_mode);4027 }4028}40294030static void show_rename_copy(struct patch *p)4031{4032 const char *renamecopy = p->is_rename ? "rename" : "copy";4033 const char *old, *new;40344035 /* Find common prefix */4036 old = p->old_name;4037 new = p->new_name;4038 while (1) {4039 const char *slash_old, *slash_new;4040 slash_old = strchr(old, '/');4041 slash_new = strchr(new, '/');4042 if (!slash_old ||4043 !slash_new ||4044 slash_old - old != slash_new - new ||4045 memcmp(old, new, slash_new - new))4046 break;4047 old = slash_old + 1;4048 new = slash_new + 1;4049 }4050 /* p->old_name thru old is the common prefix, and old and new4051 * through the end of names are renames4052 */4053 if (old != p->old_name)4054 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy,4055 (int)(old - p->old_name), p->old_name,4056 old, new, p->score);4057 else4058 printf(" %s %s => %s (%d%%)\n", renamecopy,4059 p->old_name, p->new_name, p->score);4060 show_mode_change(p, 0);4061}40624063static void summary_patch_list(struct patch *patch)4064{4065 struct patch *p;40664067 for (p = patch; p; p = p->next) {4068 if (p->is_new)4069 show_file_mode_name("create", p->new_mode, p->new_name);4070 else if (p->is_delete)4071 show_file_mode_name("delete", p->old_mode, p->old_name);4072 else {4073 if (p->is_rename || p->is_copy)4074 show_rename_copy(p);4075 else {4076 if (p->score) {4077 printf(" rewrite %s (%d%%)\n",4078 p->new_name, p->score);4079 show_mode_change(p, 0);4080 }4081 else4082 show_mode_change(p, 1);4083 }4084 }4085 }4086}40874088static void patch_stats(struct apply_state *state, struct patch *patch)4089{4090 int lines = patch->lines_added + patch->lines_deleted;40914092 if (lines > state->max_change)4093 state->max_change = lines;4094 if (patch->old_name) {4095 int len = quote_c_style(patch->old_name, NULL, NULL, 0);4096 if (!len)4097 len = strlen(patch->old_name);4098 if (len > state->max_len)4099 state->max_len = len;4100 }4101 if (patch->new_name) {4102 int len = quote_c_style(patch->new_name, NULL, NULL, 0);4103 if (!len)4104 len = strlen(patch->new_name);4105 if (len > state->max_len)4106 state->max_len = len;4107 }4108}41094110static void remove_file(struct apply_state *state, struct patch *patch, int rmdir_empty)4111{4112 if (state->update_index) {4113 if (remove_file_from_cache(patch->old_name) < 0)4114 die(_("unable to remove %s from index"), patch->old_name);4115 }4116 if (!state->cached) {4117 if (!remove_or_warn(patch->old_mode, patch->old_name) && rmdir_empty) {4118 remove_path(patch->old_name);4119 }4120 }4121}41224123static void add_index_file(struct apply_state *state,4124 const char *path,4125 unsigned mode,4126 void *buf,4127 unsigned long size)4128{4129 struct stat st;4130 struct cache_entry *ce;4131 int namelen = strlen(path);4132 unsigned ce_size = cache_entry_size(namelen);41334134 if (!state->update_index)4135 return;41364137 ce = xcalloc(1, ce_size);4138 memcpy(ce->name, path, namelen);4139 ce->ce_mode = create_ce_mode(mode);4140 ce->ce_flags = create_ce_flags(0);4141 ce->ce_namelen = namelen;4142 if (S_ISGITLINK(mode)) {4143 const char *s;41444145 if (!skip_prefix(buf, "Subproject commit ", &s) ||4146 get_sha1_hex(s, ce->sha1))4147 die(_("corrupt patch for submodule %s"), path);4148 } else {4149 if (!state->cached) {4150 if (lstat(path, &st) < 0)4151 die_errno(_("unable to stat newly created file '%s'"),4152 path);4153 fill_stat_cache_info(ce, &st);4154 }4155 if (write_sha1_file(buf, size, blob_type, ce->sha1) < 0)4156 die(_("unable to create backing store for newly created file %s"), path);4157 }4158 if (add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) < 0)4159 die(_("unable to add cache entry for %s"), path);4160}41614162static int try_create_file(const char *path, unsigned int mode, const char *buf, unsigned long size)4163{4164 int fd;4165 struct strbuf nbuf = STRBUF_INIT;41664167 if (S_ISGITLINK(mode)) {4168 struct stat st;4169 if (!lstat(path, &st) && S_ISDIR(st.st_mode))4170 return 0;4171 return mkdir(path, 0777);4172 }41734174 if (has_symlinks && S_ISLNK(mode))4175 /* Although buf:size is counted string, it also is NUL4176 * terminated.4177 */4178 return symlink(buf, path);41794180 fd = open(path, O_CREAT | O_EXCL | O_WRONLY, (mode & 0100) ? 0777 : 0666);4181 if (fd < 0)4182 return -1;41834184 if (convert_to_working_tree(path, buf, size, &nbuf)) {4185 size = nbuf.len;4186 buf = nbuf.buf;4187 }4188 write_or_die(fd, buf, size);4189 strbuf_release(&nbuf);41904191 if (close(fd) < 0)4192 die_errno(_("closing file '%s'"), path);4193 return 0;4194}41954196/*4197 * We optimistically assume that the directories exist,4198 * which is true 99% of the time anyway. If they don't,4199 * we create them and try again.4200 */4201static void create_one_file(struct apply_state *state,4202 char *path,4203 unsigned mode,4204 const char *buf,4205 unsigned long size)4206{4207 if (state->cached)4208 return;4209 if (!try_create_file(path, mode, buf, size))4210 return;42114212 if (errno == ENOENT) {4213 if (safe_create_leading_directories(path))4214 return;4215 if (!try_create_file(path, mode, buf, size))4216 return;4217 }42184219 if (errno == EEXIST || errno == EACCES) {4220 /* We may be trying to create a file where a directory4221 * used to be.4222 */4223 struct stat st;4224 if (!lstat(path, &st) && (!S_ISDIR(st.st_mode) || !rmdir(path)))4225 errno = EEXIST;4226 }42274228 if (errno == EEXIST) {4229 unsigned int nr = getpid();42304231 for (;;) {4232 char newpath[PATH_MAX];4233 mksnpath(newpath, sizeof(newpath), "%s~%u", path, nr);4234 if (!try_create_file(newpath, mode, buf, size)) {4235 if (!rename(newpath, path))4236 return;4237 unlink_or_warn(newpath);4238 break;4239 }4240 if (errno != EEXIST)4241 break;4242 ++nr;4243 }4244 }4245 die_errno(_("unable to write file '%s' mode %o"), path, mode);4246}42474248static void add_conflicted_stages_file(struct apply_state *state,4249 struct patch *patch)4250{4251 int stage, namelen;4252 unsigned ce_size, mode;4253 struct cache_entry *ce;42544255 if (!state->update_index)4256 return;4257 namelen = strlen(patch->new_name);4258 ce_size = cache_entry_size(namelen);4259 mode = patch->new_mode ? patch->new_mode : (S_IFREG | 0644);42604261 remove_file_from_cache(patch->new_name);4262 for (stage = 1; stage < 4; stage++) {4263 if (is_null_oid(&patch->threeway_stage[stage - 1]))4264 continue;4265 ce = xcalloc(1, ce_size);4266 memcpy(ce->name, patch->new_name, namelen);4267 ce->ce_mode = create_ce_mode(mode);4268 ce->ce_flags = create_ce_flags(stage);4269 ce->ce_namelen = namelen;4270 hashcpy(ce->sha1, patch->threeway_stage[stage - 1].hash);4271 if (add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) < 0)4272 die(_("unable to add cache entry for %s"), patch->new_name);4273 }4274}42754276static void create_file(struct apply_state *state, struct patch *patch)4277{4278 char *path = patch->new_name;4279 unsigned mode = patch->new_mode;4280 unsigned long size = patch->resultsize;4281 char *buf = patch->result;42824283 if (!mode)4284 mode = S_IFREG | 0644;4285 create_one_file(state, path, mode, buf, size);42864287 if (patch->conflicted_threeway)4288 add_conflicted_stages_file(state, patch);4289 else4290 add_index_file(state, path, mode, buf, size);4291}42924293/* phase zero is to remove, phase one is to create */4294static void write_out_one_result(struct apply_state *state,4295 struct patch *patch,4296 int phase)4297{4298 if (patch->is_delete > 0) {4299 if (phase == 0)4300 remove_file(state, patch, 1);4301 return;4302 }4303 if (patch->is_new > 0 || patch->is_copy) {4304 if (phase == 1)4305 create_file(state, patch);4306 return;4307 }4308 /*4309 * Rename or modification boils down to the same4310 * thing: remove the old, write the new4311 */4312 if (phase == 0)4313 remove_file(state, patch, patch->is_rename);4314 if (phase == 1)4315 create_file(state, patch);4316}43174318static int write_out_one_reject(struct apply_state *state, struct patch *patch)4319{4320 FILE *rej;4321 char namebuf[PATH_MAX];4322 struct fragment *frag;4323 int cnt = 0;4324 struct strbuf sb = STRBUF_INIT;43254326 for (cnt = 0, frag = patch->fragments; frag; frag = frag->next) {4327 if (!frag->rejected)4328 continue;4329 cnt++;4330 }43314332 if (!cnt) {4333 if (state->apply_verbosely)4334 say_patch_name(stderr,4335 _("Applied patch %s cleanly."), patch);4336 return 0;4337 }43384339 /* This should not happen, because a removal patch that leaves4340 * contents are marked "rejected" at the patch level.4341 */4342 if (!patch->new_name)4343 die(_("internal error"));43444345 /* Say this even without --verbose */4346 strbuf_addf(&sb, Q_("Applying patch %%s with %d reject...",4347 "Applying patch %%s with %d rejects...",4348 cnt),4349 cnt);4350 say_patch_name(stderr, sb.buf, patch);4351 strbuf_release(&sb);43524353 cnt = strlen(patch->new_name);4354 if (ARRAY_SIZE(namebuf) <= cnt + 5) {4355 cnt = ARRAY_SIZE(namebuf) - 5;4356 warning(_("truncating .rej filename to %.*s.rej"),4357 cnt - 1, patch->new_name);4358 }4359 memcpy(namebuf, patch->new_name, cnt);4360 memcpy(namebuf + cnt, ".rej", 5);43614362 rej = fopen(namebuf, "w");4363 if (!rej)4364 return error(_("cannot open %s: %s"), namebuf, strerror(errno));43654366 /* Normal git tools never deal with .rej, so do not pretend4367 * this is a git patch by saying --git or giving extended4368 * headers. While at it, maybe please "kompare" that wants4369 * the trailing TAB and some garbage at the end of line ;-).4370 */4371 fprintf(rej, "diff a/%s b/%s\t(rejected hunks)\n",4372 patch->new_name, patch->new_name);4373 for (cnt = 1, frag = patch->fragments;4374 frag;4375 cnt++, frag = frag->next) {4376 if (!frag->rejected) {4377 fprintf_ln(stderr, _("Hunk #%d applied cleanly."), cnt);4378 continue;4379 }4380 fprintf_ln(stderr, _("Rejected hunk #%d."), cnt);4381 fprintf(rej, "%.*s", frag->size, frag->patch);4382 if (frag->patch[frag->size-1] != '\n')4383 fputc('\n', rej);4384 }4385 fclose(rej);4386 return -1;4387}43884389static int write_out_results(struct apply_state *state, struct patch *list)4390{4391 int phase;4392 int errs = 0;4393 struct patch *l;4394 struct string_list cpath = STRING_LIST_INIT_DUP;43954396 for (phase = 0; phase < 2; phase++) {4397 l = list;4398 while (l) {4399 if (l->rejected)4400 errs = 1;4401 else {4402 write_out_one_result(state, l, phase);4403 if (phase == 1) {4404 if (write_out_one_reject(state, l))4405 errs = 1;4406 if (l->conflicted_threeway) {4407 string_list_append(&cpath, l->new_name);4408 errs = 1;4409 }4410 }4411 }4412 l = l->next;4413 }4414 }44154416 if (cpath.nr) {4417 struct string_list_item *item;44184419 string_list_sort(&cpath);4420 for_each_string_list_item(item, &cpath)4421 fprintf(stderr, "U %s\n", item->string);4422 string_list_clear(&cpath, 0);44234424 rerere(0);4425 }44264427 return errs;4428}44294430static struct lock_file lock_file;44314432#define INACCURATE_EOF (1<<0)4433#define RECOUNT (1<<1)44344435/*4436 * Try to apply a patch.4437 *4438 * Returns:4439 * -128 if a bad error happened (like patch unreadable)4440 * -1 if patch did not apply and user cannot deal with it4441 * 0 if the patch applied4442 * 1 if the patch did not apply but user might fix it4443 */4444static int apply_patch(struct apply_state *state,4445 int fd,4446 const char *filename,4447 int options)4448{4449 size_t offset;4450 struct strbuf buf = STRBUF_INIT; /* owns the patch text */4451 struct patch *list = NULL, **listp = &list;4452 int skipped_patch = 0;4453 int res = 0;44544455 state->patch_input_file = filename;4456 if (read_patch_file(&buf, fd) < 0)4457 return -128;4458 offset = 0;4459 while (offset < buf.len) {4460 struct patch *patch;4461 int nr;44624463 patch = xcalloc(1, sizeof(*patch));4464 patch->inaccurate_eof = !!(options & INACCURATE_EOF);4465 patch->recount = !!(options & RECOUNT);4466 nr = parse_chunk(state, buf.buf + offset, buf.len - offset, patch);4467 if (nr < 0) {4468 free_patch(patch);4469 if (nr == -128) {4470 res = -128;4471 goto end;4472 }4473 break;4474 }4475 if (state->apply_in_reverse)4476 reverse_patches(patch);4477 if (use_patch(state, patch)) {4478 patch_stats(state, patch);4479 *listp = patch;4480 listp = &patch->next;4481 }4482 else {4483 if (state->apply_verbosely)4484 say_patch_name(stderr, _("Skipped patch '%s'."), patch);4485 free_patch(patch);4486 skipped_patch++;4487 }4488 offset += nr;4489 }44904491 if (!list && !skipped_patch) {4492 error(_("unrecognized input"));4493 res = -128;4494 goto end;4495 }44964497 if (state->whitespace_error && (state->ws_error_action == die_on_ws_error))4498 state->apply = 0;44994500 state->update_index = state->check_index && state->apply;4501 if (state->update_index && state->newfd < 0)4502 state->newfd = hold_locked_index(state->lock_file, 1);45034504 if (state->check_index && read_cache() < 0) {4505 error(_("unable to read index file"));4506 res = -128;4507 goto end;4508 }45094510 if ((state->check || state->apply) &&4511 check_patch_list(state, list) < 0 &&4512 !state->apply_with_reject) {4513 res = -1;4514 goto end;4515 }45164517 if (state->apply && write_out_results(state, list)) {4518 /* with --3way, we still need to write the index out */4519 res = state->apply_with_reject ? -1 : 1;4520 goto end;4521 }45224523 if (state->fake_ancestor)4524 build_fake_ancestor(list, state->fake_ancestor);45254526 if (state->diffstat)4527 stat_patch_list(state, list);45284529 if (state->numstat)4530 numstat_patch_list(state, list);45314532 if (state->summary)4533 summary_patch_list(list);45344535end:4536 free_patch_list(list);4537 strbuf_release(&buf);4538 string_list_clear(&state->fn_table, 0);4539 return res;4540}45414542static void git_apply_config(void)4543{4544 git_config_get_string_const("apply.whitespace", &apply_default_whitespace);4545 git_config_get_string_const("apply.ignorewhitespace", &apply_default_ignorewhitespace);4546 git_config(git_default_config, NULL);4547}45484549static int option_parse_exclude(const struct option *opt,4550 const char *arg, int unset)4551{4552 struct apply_state *state = opt->value;4553 add_name_limit(state, arg, 1);4554 return 0;4555}45564557static int option_parse_include(const struct option *opt,4558 const char *arg, int unset)4559{4560 struct apply_state *state = opt->value;4561 add_name_limit(state, arg, 0);4562 state->has_include = 1;4563 return 0;4564}45654566static int option_parse_p(const struct option *opt,4567 const char *arg,4568 int unset)4569{4570 struct apply_state *state = opt->value;4571 state->p_value = atoi(arg);4572 state->p_value_known = 1;4573 return 0;4574}45754576static int option_parse_space_change(const struct option *opt,4577 const char *arg, int unset)4578{4579 struct apply_state *state = opt->value;4580 if (unset)4581 state->ws_ignore_action = ignore_ws_none;4582 else4583 state->ws_ignore_action = ignore_ws_change;4584 return 0;4585}45864587static int option_parse_whitespace(const struct option *opt,4588 const char *arg, int unset)4589{4590 struct apply_state *state = opt->value;4591 state->whitespace_option = arg;4592 parse_whitespace_option(state, arg);4593 return 0;4594}45954596static int option_parse_directory(const struct option *opt,4597 const char *arg, int unset)4598{4599 struct apply_state *state = opt->value;4600 strbuf_reset(&state->root);4601 strbuf_addstr(&state->root, arg);4602 strbuf_complete(&state->root, '/');4603 return 0;4604}46054606static void init_apply_state(struct apply_state *state,4607 const char *prefix,4608 struct lock_file *lock_file)4609{4610 memset(state, 0, sizeof(*state));4611 state->prefix = prefix;4612 state->prefix_length = state->prefix ? strlen(state->prefix) : 0;4613 state->lock_file = lock_file;4614 state->newfd = -1;4615 state->apply = 1;4616 state->line_termination = '\n';4617 state->p_value = 1;4618 state->p_context = UINT_MAX;4619 state->squelch_whitespace_errors = 5;4620 state->ws_error_action = warn_on_ws_error;4621 state->ws_ignore_action = ignore_ws_none;4622 state->linenr = 1;4623 string_list_init(&state->fn_table, 0);4624 string_list_init(&state->limit_by_name, 0);4625 string_list_init(&state->symlink_changes, 0);4626 strbuf_init(&state->root, 0);46274628 git_apply_config();4629 if (apply_default_whitespace)4630 parse_whitespace_option(state, apply_default_whitespace);4631 if (apply_default_ignorewhitespace)4632 parse_ignorewhitespace_option(state, apply_default_ignorewhitespace);4633}46344635static void clear_apply_state(struct apply_state *state)4636{4637 string_list_clear(&state->limit_by_name, 0);4638 string_list_clear(&state->symlink_changes, 0);4639 strbuf_release(&state->root);46404641 /* &state->fn_table is cleared at the end of apply_patch() */4642}46434644static void check_apply_state(struct apply_state *state, int force_apply)4645{4646 int is_not_gitdir = !startup_info->have_repository;46474648 if (state->apply_with_reject && state->threeway)4649 die("--reject and --3way cannot be used together.");4650 if (state->cached && state->threeway)4651 die("--cached and --3way cannot be used together.");4652 if (state->threeway) {4653 if (is_not_gitdir)4654 die(_("--3way outside a repository"));4655 state->check_index = 1;4656 }4657 if (state->apply_with_reject)4658 state->apply = state->apply_verbosely = 1;4659 if (!force_apply && (state->diffstat || state->numstat || state->summary || state->check || state->fake_ancestor))4660 state->apply = 0;4661 if (state->check_index && is_not_gitdir)4662 die(_("--index outside a repository"));4663 if (state->cached) {4664 if (is_not_gitdir)4665 die(_("--cached outside a repository"));4666 state->check_index = 1;4667 }4668 if (state->check_index)4669 state->unsafe_paths = 0;4670 if (!state->lock_file)4671 die("BUG: state->lock_file should not be NULL");4672}46734674static int apply_all_patches(struct apply_state *state,4675 int argc,4676 const char **argv,4677 int options)4678{4679 int i;4680 int res;4681 int errs = 0;4682 int read_stdin = 1;46834684 for (i = 0; i < argc; i++) {4685 const char *arg = argv[i];4686 int fd;46874688 if (!strcmp(arg, "-")) {4689 res = apply_patch(state, 0, "<stdin>", options);4690 if (res < 0)4691 goto end;4692 errs |= res;4693 read_stdin = 0;4694 continue;4695 } else if (0 < state->prefix_length)4696 arg = prefix_filename(state->prefix,4697 state->prefix_length,4698 arg);46994700 fd = open(arg, O_RDONLY);4701 if (fd < 0)4702 die_errno(_("can't open patch '%s'"), arg);4703 read_stdin = 0;4704 set_default_whitespace_mode(state);4705 res = apply_patch(state, fd, arg, options);4706 if (res < 0)4707 goto end;4708 errs |= res;4709 close(fd);4710 }4711 set_default_whitespace_mode(state);4712 if (read_stdin) {4713 res = apply_patch(state, 0, "<stdin>", options);4714 if (res < 0)4715 goto end;4716 errs |= res;4717 }47184719 if (state->whitespace_error) {4720 if (state->squelch_whitespace_errors &&4721 state->squelch_whitespace_errors < state->whitespace_error) {4722 int squelched =4723 state->whitespace_error - state->squelch_whitespace_errors;4724 warning(Q_("squelched %d whitespace error",4725 "squelched %d whitespace errors",4726 squelched),4727 squelched);4728 }4729 if (state->ws_error_action == die_on_ws_error)4730 die(Q_("%d line adds whitespace errors.",4731 "%d lines add whitespace errors.",4732 state->whitespace_error),4733 state->whitespace_error);4734 if (state->applied_after_fixing_ws && state->apply)4735 warning("%d line%s applied after"4736 " fixing whitespace errors.",4737 state->applied_after_fixing_ws,4738 state->applied_after_fixing_ws == 1 ? "" : "s");4739 else if (state->whitespace_error)4740 warning(Q_("%d line adds whitespace errors.",4741 "%d lines add whitespace errors.",4742 state->whitespace_error),4743 state->whitespace_error);4744 }47454746 if (state->update_index) {4747 if (write_locked_index(&the_index, state->lock_file, COMMIT_LOCK))4748 die(_("Unable to write new index file"));4749 state->newfd = -1;4750 }47514752 return !!errs;47534754end:4755 exit(res == -1 ? 1 : 128);4756}47574758int cmd_apply(int argc, const char **argv, const char *prefix)4759{4760 int force_apply = 0;4761 int options = 0;4762 int ret;4763 struct apply_state state;47644765 struct option builtin_apply_options[] = {4766 { OPTION_CALLBACK, 0, "exclude", &state, N_("path"),4767 N_("don't apply changes matching the given path"),4768 0, option_parse_exclude },4769 { OPTION_CALLBACK, 0, "include", &state, N_("path"),4770 N_("apply changes matching the given path"),4771 0, option_parse_include },4772 { OPTION_CALLBACK, 'p', NULL, &state, N_("num"),4773 N_("remove <num> leading slashes from traditional diff paths"),4774 0, option_parse_p },4775 OPT_BOOL(0, "no-add", &state.no_add,4776 N_("ignore additions made by the patch")),4777 OPT_BOOL(0, "stat", &state.diffstat,4778 N_("instead of applying the patch, output diffstat for the input")),4779 OPT_NOOP_NOARG(0, "allow-binary-replacement"),4780 OPT_NOOP_NOARG(0, "binary"),4781 OPT_BOOL(0, "numstat", &state.numstat,4782 N_("show number of added and deleted lines in decimal notation")),4783 OPT_BOOL(0, "summary", &state.summary,4784 N_("instead of applying the patch, output a summary for the input")),4785 OPT_BOOL(0, "check", &state.check,4786 N_("instead of applying the patch, see if the patch is applicable")),4787 OPT_BOOL(0, "index", &state.check_index,4788 N_("make sure the patch is applicable to the current index")),4789 OPT_BOOL(0, "cached", &state.cached,4790 N_("apply a patch without touching the working tree")),4791 OPT_BOOL(0, "unsafe-paths", &state.unsafe_paths,4792 N_("accept a patch that touches outside the working area")),4793 OPT_BOOL(0, "apply", &force_apply,4794 N_("also apply the patch (use with --stat/--summary/--check)")),4795 OPT_BOOL('3', "3way", &state.threeway,4796 N_( "attempt three-way merge if a patch does not apply")),4797 OPT_FILENAME(0, "build-fake-ancestor", &state.fake_ancestor,4798 N_("build a temporary index based on embedded index information")),4799 /* Think twice before adding "--nul" synonym to this */4800 OPT_SET_INT('z', NULL, &state.line_termination,4801 N_("paths are separated with NUL character"), '\0'),4802 OPT_INTEGER('C', NULL, &state.p_context,4803 N_("ensure at least <n> lines of context match")),4804 { OPTION_CALLBACK, 0, "whitespace", &state, N_("action"),4805 N_("detect new or modified lines that have whitespace errors"),4806 0, option_parse_whitespace },4807 { OPTION_CALLBACK, 0, "ignore-space-change", &state, NULL,4808 N_("ignore changes in whitespace when finding context"),4809 PARSE_OPT_NOARG, option_parse_space_change },4810 { OPTION_CALLBACK, 0, "ignore-whitespace", &state, NULL,4811 N_("ignore changes in whitespace when finding context"),4812 PARSE_OPT_NOARG, option_parse_space_change },4813 OPT_BOOL('R', "reverse", &state.apply_in_reverse,4814 N_("apply the patch in reverse")),4815 OPT_BOOL(0, "unidiff-zero", &state.unidiff_zero,4816 N_("don't expect at least one line of context")),4817 OPT_BOOL(0, "reject", &state.apply_with_reject,4818 N_("leave the rejected hunks in corresponding *.rej files")),4819 OPT_BOOL(0, "allow-overlap", &state.allow_overlap,4820 N_("allow overlapping hunks")),4821 OPT__VERBOSE(&state.apply_verbosely, N_("be verbose")),4822 OPT_BIT(0, "inaccurate-eof", &options,4823 N_("tolerate incorrectly detected missing new-line at the end of file"),4824 INACCURATE_EOF),4825 OPT_BIT(0, "recount", &options,4826 N_("do not trust the line counts in the hunk headers"),4827 RECOUNT),4828 { OPTION_CALLBACK, 0, "directory", &state, N_("root"),4829 N_("prepend <root> to all filenames"),4830 0, option_parse_directory },4831 OPT_END()4832 };48334834 init_apply_state(&state, prefix, &lock_file);48354836 argc = parse_options(argc, argv, state.prefix, builtin_apply_options,4837 apply_usage, 0);48384839 check_apply_state(&state, force_apply);48404841 ret = apply_all_patches(&state, argc, argv, options);48424843 clear_apply_state(&state);48444845 return ret;4846}