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"cache-tree.h" 11#include"quote.h" 12#include"blob.h" 13#include"delta.h" 14#include"builtin.h" 15#include"string-list.h" 16#include"dir.h" 17 18/* 19 * --check turns on checking that the working tree matches the 20 * files that are being modified, but doesn't apply the patch 21 * --stat does just a diffstat, and doesn't actually apply 22 * --numstat does numeric diffstat, and doesn't actually apply 23 * --index-info shows the old and new index info for paths if available. 24 * --index updates the cache as well. 25 * --cached updates only the cache without ever touching the working tree. 26 */ 27static const char*prefix; 28static int prefix_length = -1; 29static int newfd = -1; 30 31static int unidiff_zero; 32static int p_value =1; 33static int p_value_known; 34static int check_index; 35static int update_index; 36static int cached; 37static int diffstat; 38static int numstat; 39static int summary; 40static int check; 41static int apply =1; 42static int apply_in_reverse; 43static int apply_with_reject; 44static int apply_verbosely; 45static int no_add; 46static const char*fake_ancestor; 47static int line_termination ='\n'; 48static unsigned long p_context = ULONG_MAX; 49static const char apply_usage[] = 50"git apply [--stat] [--numstat] [--summary] [--check] [--index] [--cached] [--apply] [--no-add] [--index-info] [--allow-binary-replacement] [--reverse] [--reject] [--verbose] [-z] [-pNUM] [-CNUM] [--whitespace=<nowarn|warn|fix|error|error-all>] <patch>..."; 51 52static enum ws_error_action { 53 nowarn_ws_error, 54 warn_on_ws_error, 55 die_on_ws_error, 56 correct_ws_error, 57} ws_error_action = warn_on_ws_error; 58static int whitespace_error; 59static int squelch_whitespace_errors =5; 60static int applied_after_fixing_ws; 61static const char*patch_input_file; 62static const char*root; 63static int root_len; 64 65static voidparse_whitespace_option(const char*option) 66{ 67if(!option) { 68 ws_error_action = warn_on_ws_error; 69return; 70} 71if(!strcmp(option,"warn")) { 72 ws_error_action = warn_on_ws_error; 73return; 74} 75if(!strcmp(option,"nowarn")) { 76 ws_error_action = nowarn_ws_error; 77return; 78} 79if(!strcmp(option,"error")) { 80 ws_error_action = die_on_ws_error; 81return; 82} 83if(!strcmp(option,"error-all")) { 84 ws_error_action = die_on_ws_error; 85 squelch_whitespace_errors =0; 86return; 87} 88if(!strcmp(option,"strip") || !strcmp(option,"fix")) { 89 ws_error_action = correct_ws_error; 90return; 91} 92die("unrecognized whitespace option '%s'", option); 93} 94 95static voidset_default_whitespace_mode(const char*whitespace_option) 96{ 97if(!whitespace_option && !apply_default_whitespace) 98 ws_error_action = (apply ? warn_on_ws_error : nowarn_ws_error); 99} 100 101/* 102 * For "diff-stat" like behaviour, we keep track of the biggest change 103 * we've seen, and the longest filename. That allows us to do simple 104 * scaling. 105 */ 106static int max_change, max_len; 107 108/* 109 * Various "current state", notably line numbers and what 110 * file (and how) we're patching right now.. The "is_xxxx" 111 * things are flags, where -1 means "don't know yet". 112 */ 113static int linenr =1; 114 115/* 116 * This represents one "hunk" from a patch, starting with 117 * "@@ -oldpos,oldlines +newpos,newlines @@" marker. The 118 * patch text is pointed at by patch, and its byte length 119 * is stored in size. leading and trailing are the number 120 * of context lines. 121 */ 122struct fragment { 123unsigned long leading, trailing; 124unsigned long oldpos, oldlines; 125unsigned long newpos, newlines; 126const char*patch; 127int size; 128int rejected; 129struct fragment *next; 130}; 131 132/* 133 * When dealing with a binary patch, we reuse "leading" field 134 * to store the type of the binary hunk, either deflated "delta" 135 * or deflated "literal". 136 */ 137#define binary_patch_method leading 138#define BINARY_DELTA_DEFLATED 1 139#define BINARY_LITERAL_DEFLATED 2 140 141/* 142 * This represents a "patch" to a file, both metainfo changes 143 * such as creation/deletion, filemode and content changes represented 144 * as a series of fragments. 145 */ 146struct patch { 147char*new_name, *old_name, *def_name; 148unsigned int old_mode, new_mode; 149int is_new, is_delete;/* -1 = unknown, 0 = false, 1 = true */ 150int rejected; 151unsigned ws_rule; 152unsigned long deflate_origlen; 153int lines_added, lines_deleted; 154int score; 155unsigned int is_toplevel_relative:1; 156unsigned int inaccurate_eof:1; 157unsigned int is_binary:1; 158unsigned int is_copy:1; 159unsigned int is_rename:1; 160unsigned int recount:1; 161struct fragment *fragments; 162char*result; 163size_t resultsize; 164char old_sha1_prefix[41]; 165char new_sha1_prefix[41]; 166struct patch *next; 167}; 168 169/* 170 * A line in a file, len-bytes long (includes the terminating LF, 171 * except for an incomplete line at the end if the file ends with 172 * one), and its contents hashes to 'hash'. 173 */ 174struct line { 175size_t len; 176unsigned hash :24; 177unsigned flag :8; 178#define LINE_COMMON 1 179}; 180 181/* 182 * This represents a "file", which is an array of "lines". 183 */ 184struct image { 185char*buf; 186size_t len; 187size_t nr; 188size_t alloc; 189struct line *line_allocated; 190struct line *line; 191}; 192 193/* 194 * Records filenames that have been touched, in order to handle 195 * the case where more than one patches touch the same file. 196 */ 197 198static struct string_list fn_table; 199 200static uint32_thash_line(const char*cp,size_t len) 201{ 202size_t i; 203uint32_t h; 204for(i =0, h =0; i < len; i++) { 205if(!isspace(cp[i])) { 206 h = h *3+ (cp[i] &0xff); 207} 208} 209return h; 210} 211 212static voidadd_line_info(struct image *img,const char*bol,size_t len,unsigned flag) 213{ 214ALLOC_GROW(img->line_allocated, img->nr +1, img->alloc); 215 img->line_allocated[img->nr].len = len; 216 img->line_allocated[img->nr].hash =hash_line(bol, len); 217 img->line_allocated[img->nr].flag = flag; 218 img->nr++; 219} 220 221static voidprepare_image(struct image *image,char*buf,size_t len, 222int prepare_linetable) 223{ 224const char*cp, *ep; 225 226memset(image,0,sizeof(*image)); 227 image->buf = buf; 228 image->len = len; 229 230if(!prepare_linetable) 231return; 232 233 ep = image->buf + image->len; 234 cp = image->buf; 235while(cp < ep) { 236const char*next; 237for(next = cp; next < ep && *next !='\n'; next++) 238; 239if(next < ep) 240 next++; 241add_line_info(image, cp, next - cp,0); 242 cp = next; 243} 244 image->line = image->line_allocated; 245} 246 247static voidclear_image(struct image *image) 248{ 249free(image->buf); 250 image->buf = NULL; 251 image->len =0; 252} 253 254static voidsay_patch_name(FILE*output,const char*pre, 255struct patch *patch,const char*post) 256{ 257fputs(pre, output); 258if(patch->old_name && patch->new_name && 259strcmp(patch->old_name, patch->new_name)) { 260quote_c_style(patch->old_name, NULL, output,0); 261fputs(" => ", output); 262quote_c_style(patch->new_name, NULL, output,0); 263}else{ 264const char*n = patch->new_name; 265if(!n) 266 n = patch->old_name; 267quote_c_style(n, NULL, output,0); 268} 269fputs(post, output); 270} 271 272#define CHUNKSIZE (8192) 273#define SLOP (16) 274 275static voidread_patch_file(struct strbuf *sb,int fd) 276{ 277if(strbuf_read(sb, fd,0) <0) 278die("git apply: read returned%s",strerror(errno)); 279 280/* 281 * Make sure that we have some slop in the buffer 282 * so that we can do speculative "memcmp" etc, and 283 * see to it that it is NUL-filled. 284 */ 285strbuf_grow(sb, SLOP); 286memset(sb->buf + sb->len,0, SLOP); 287} 288 289static unsigned longlinelen(const char*buffer,unsigned long size) 290{ 291unsigned long len =0; 292while(size--) { 293 len++; 294if(*buffer++ =='\n') 295break; 296} 297return len; 298} 299 300static intis_dev_null(const char*str) 301{ 302return!memcmp("/dev/null", str,9) &&isspace(str[9]); 303} 304 305#define TERM_SPACE 1 306#define TERM_TAB 2 307 308static intname_terminate(const char*name,int namelen,int c,int terminate) 309{ 310if(c ==' '&& !(terminate & TERM_SPACE)) 311return0; 312if(c =='\t'&& !(terminate & TERM_TAB)) 313return0; 314 315return1; 316} 317 318static char*find_name(const char*line,char*def,int p_value,int terminate) 319{ 320int len; 321const char*start = line; 322 323if(*line =='"') { 324struct strbuf name = STRBUF_INIT; 325 326/* 327 * Proposed "new-style" GNU patch/diff format; see 328 * http://marc.theaimsgroup.com/?l=git&m=112927316408690&w=2 329 */ 330if(!unquote_c_style(&name, line, NULL)) { 331char*cp; 332 333for(cp = name.buf; p_value; p_value--) { 334 cp =strchr(cp,'/'); 335if(!cp) 336break; 337 cp++; 338} 339if(cp) { 340/* name can later be freed, so we need 341 * to memmove, not just return cp 342 */ 343strbuf_remove(&name,0, cp - name.buf); 344free(def); 345if(root) 346strbuf_insert(&name,0, root, root_len); 347returnstrbuf_detach(&name, NULL); 348} 349} 350strbuf_release(&name); 351} 352 353for(;;) { 354char c = *line; 355 356if(isspace(c)) { 357if(c =='\n') 358break; 359if(name_terminate(start, line-start, c, terminate)) 360break; 361} 362 line++; 363if(c =='/'&& !--p_value) 364 start = line; 365} 366if(!start) 367return def; 368 len = line - start; 369if(!len) 370return def; 371 372/* 373 * Generally we prefer the shorter name, especially 374 * if the other one is just a variation of that with 375 * something else tacked on to the end (ie "file.orig" 376 * or "file~"). 377 */ 378if(def) { 379int deflen =strlen(def); 380if(deflen < len && !strncmp(start, def, deflen)) 381return def; 382free(def); 383} 384 385if(root) { 386char*ret =xmalloc(root_len + len +1); 387strcpy(ret, root); 388memcpy(ret + root_len, start, len); 389 ret[root_len + len] ='\0'; 390return ret; 391} 392 393returnxmemdupz(start, len); 394} 395 396static intcount_slashes(const char*cp) 397{ 398int cnt =0; 399char ch; 400 401while((ch = *cp++)) 402if(ch =='/') 403 cnt++; 404return cnt; 405} 406 407/* 408 * Given the string after "--- " or "+++ ", guess the appropriate 409 * p_value for the given patch. 410 */ 411static intguess_p_value(const char*nameline) 412{ 413char*name, *cp; 414int val = -1; 415 416if(is_dev_null(nameline)) 417return-1; 418 name =find_name(nameline, NULL,0, TERM_SPACE | TERM_TAB); 419if(!name) 420return-1; 421 cp =strchr(name,'/'); 422if(!cp) 423 val =0; 424else if(prefix) { 425/* 426 * Does it begin with "a/$our-prefix" and such? Then this is 427 * very likely to apply to our directory. 428 */ 429if(!strncmp(name, prefix, prefix_length)) 430 val =count_slashes(prefix); 431else{ 432 cp++; 433if(!strncmp(cp, prefix, prefix_length)) 434 val =count_slashes(prefix) +1; 435} 436} 437free(name); 438return val; 439} 440 441/* 442 * Get the name etc info from the ---/+++ lines of a traditional patch header 443 * 444 * FIXME! The end-of-filename heuristics are kind of screwy. For existing 445 * files, we can happily check the index for a match, but for creating a 446 * new file we should try to match whatever "patch" does. I have no idea. 447 */ 448static voidparse_traditional_patch(const char*first,const char*second,struct patch *patch) 449{ 450char*name; 451 452 first +=4;/* skip "--- " */ 453 second +=4;/* skip "+++ " */ 454if(!p_value_known) { 455int p, q; 456 p =guess_p_value(first); 457 q =guess_p_value(second); 458if(p <0) p = q; 459if(0<= p && p == q) { 460 p_value = p; 461 p_value_known =1; 462} 463} 464if(is_dev_null(first)) { 465 patch->is_new =1; 466 patch->is_delete =0; 467 name =find_name(second, NULL, p_value, TERM_SPACE | TERM_TAB); 468 patch->new_name = name; 469}else if(is_dev_null(second)) { 470 patch->is_new =0; 471 patch->is_delete =1; 472 name =find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB); 473 patch->old_name = name; 474}else{ 475 name =find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB); 476 name =find_name(second, name, p_value, TERM_SPACE | TERM_TAB); 477 patch->old_name = patch->new_name = name; 478} 479if(!name) 480die("unable to find filename in patch at line%d", linenr); 481} 482 483static intgitdiff_hdrend(const char*line,struct patch *patch) 484{ 485return-1; 486} 487 488/* 489 * We're anal about diff header consistency, to make 490 * sure that we don't end up having strange ambiguous 491 * patches floating around. 492 * 493 * As a result, gitdiff_{old|new}name() will check 494 * their names against any previous information, just 495 * to make sure.. 496 */ 497static char*gitdiff_verify_name(const char*line,int isnull,char*orig_name,const char*oldnew) 498{ 499if(!orig_name && !isnull) 500returnfind_name(line, NULL, p_value, TERM_TAB); 501 502if(orig_name) { 503int len; 504const char*name; 505char*another; 506 name = orig_name; 507 len =strlen(name); 508if(isnull) 509die("git apply: bad git-diff - expected /dev/null, got%son line%d", name, linenr); 510 another =find_name(line, NULL, p_value, TERM_TAB); 511if(!another ||memcmp(another, name, len)) 512die("git apply: bad git-diff - inconsistent%sfilename on line%d", oldnew, linenr); 513free(another); 514return orig_name; 515} 516else{ 517/* expect "/dev/null" */ 518if(memcmp("/dev/null", line,9) || line[9] !='\n') 519die("git apply: bad git-diff - expected /dev/null on line%d", linenr); 520return NULL; 521} 522} 523 524static intgitdiff_oldname(const char*line,struct patch *patch) 525{ 526 patch->old_name =gitdiff_verify_name(line, patch->is_new, patch->old_name,"old"); 527return0; 528} 529 530static intgitdiff_newname(const char*line,struct patch *patch) 531{ 532 patch->new_name =gitdiff_verify_name(line, patch->is_delete, patch->new_name,"new"); 533return0; 534} 535 536static intgitdiff_oldmode(const char*line,struct patch *patch) 537{ 538 patch->old_mode =strtoul(line, NULL,8); 539return0; 540} 541 542static intgitdiff_newmode(const char*line,struct patch *patch) 543{ 544 patch->new_mode =strtoul(line, NULL,8); 545return0; 546} 547 548static intgitdiff_delete(const char*line,struct patch *patch) 549{ 550 patch->is_delete =1; 551 patch->old_name = patch->def_name; 552returngitdiff_oldmode(line, patch); 553} 554 555static intgitdiff_newfile(const char*line,struct patch *patch) 556{ 557 patch->is_new =1; 558 patch->new_name = patch->def_name; 559returngitdiff_newmode(line, patch); 560} 561 562static intgitdiff_copysrc(const char*line,struct patch *patch) 563{ 564 patch->is_copy =1; 565 patch->old_name =find_name(line, NULL,0,0); 566return0; 567} 568 569static intgitdiff_copydst(const char*line,struct patch *patch) 570{ 571 patch->is_copy =1; 572 patch->new_name =find_name(line, NULL,0,0); 573return0; 574} 575 576static intgitdiff_renamesrc(const char*line,struct patch *patch) 577{ 578 patch->is_rename =1; 579 patch->old_name =find_name(line, NULL,0,0); 580return0; 581} 582 583static intgitdiff_renamedst(const char*line,struct patch *patch) 584{ 585 patch->is_rename =1; 586 patch->new_name =find_name(line, NULL,0,0); 587return0; 588} 589 590static intgitdiff_similarity(const char*line,struct patch *patch) 591{ 592if((patch->score =strtoul(line, NULL,10)) == ULONG_MAX) 593 patch->score =0; 594return0; 595} 596 597static intgitdiff_dissimilarity(const char*line,struct patch *patch) 598{ 599if((patch->score =strtoul(line, NULL,10)) == ULONG_MAX) 600 patch->score =0; 601return0; 602} 603 604static intgitdiff_index(const char*line,struct patch *patch) 605{ 606/* 607 * index line is N hexadecimal, "..", N hexadecimal, 608 * and optional space with octal mode. 609 */ 610const char*ptr, *eol; 611int len; 612 613 ptr =strchr(line,'.'); 614if(!ptr || ptr[1] !='.'||40< ptr - line) 615return0; 616 len = ptr - line; 617memcpy(patch->old_sha1_prefix, line, len); 618 patch->old_sha1_prefix[len] =0; 619 620 line = ptr +2; 621 ptr =strchr(line,' '); 622 eol =strchr(line,'\n'); 623 624if(!ptr || eol < ptr) 625 ptr = eol; 626 len = ptr - line; 627 628if(40< len) 629return0; 630memcpy(patch->new_sha1_prefix, line, len); 631 patch->new_sha1_prefix[len] =0; 632if(*ptr ==' ') 633 patch->old_mode =strtoul(ptr+1, NULL,8); 634return0; 635} 636 637/* 638 * This is normal for a diff that doesn't change anything: we'll fall through 639 * into the next diff. Tell the parser to break out. 640 */ 641static intgitdiff_unrecognized(const char*line,struct patch *patch) 642{ 643return-1; 644} 645 646static const char*stop_at_slash(const char*line,int llen) 647{ 648int i; 649 650for(i =0; i < llen; i++) { 651int ch = line[i]; 652if(ch =='/') 653return line + i; 654} 655return NULL; 656} 657 658/* 659 * This is to extract the same name that appears on "diff --git" 660 * line. We do not find and return anything if it is a rename 661 * patch, and it is OK because we will find the name elsewhere. 662 * We need to reliably find name only when it is mode-change only, 663 * creation or deletion of an empty file. In any of these cases, 664 * both sides are the same name under a/ and b/ respectively. 665 */ 666static char*git_header_name(char*line,int llen) 667{ 668const char*name; 669const char*second = NULL; 670size_t len; 671 672 line +=strlen("diff --git "); 673 llen -=strlen("diff --git "); 674 675if(*line =='"') { 676const char*cp; 677struct strbuf first = STRBUF_INIT; 678struct strbuf sp = STRBUF_INIT; 679 680if(unquote_c_style(&first, line, &second)) 681goto free_and_fail1; 682 683/* advance to the first slash */ 684 cp =stop_at_slash(first.buf, first.len); 685/* we do not accept absolute paths */ 686if(!cp || cp == first.buf) 687goto free_and_fail1; 688strbuf_remove(&first,0, cp +1- first.buf); 689 690/* 691 * second points at one past closing dq of name. 692 * find the second name. 693 */ 694while((second < line + llen) &&isspace(*second)) 695 second++; 696 697if(line + llen <= second) 698goto free_and_fail1; 699if(*second =='"') { 700if(unquote_c_style(&sp, second, NULL)) 701goto free_and_fail1; 702 cp =stop_at_slash(sp.buf, sp.len); 703if(!cp || cp == sp.buf) 704goto free_and_fail1; 705/* They must match, otherwise ignore */ 706if(strcmp(cp +1, first.buf)) 707goto free_and_fail1; 708strbuf_release(&sp); 709returnstrbuf_detach(&first, NULL); 710} 711 712/* unquoted second */ 713 cp =stop_at_slash(second, line + llen - second); 714if(!cp || cp == second) 715goto free_and_fail1; 716 cp++; 717if(line + llen - cp != first.len +1|| 718memcmp(first.buf, cp, first.len)) 719goto free_and_fail1; 720returnstrbuf_detach(&first, NULL); 721 722 free_and_fail1: 723strbuf_release(&first); 724strbuf_release(&sp); 725return NULL; 726} 727 728/* unquoted first name */ 729 name =stop_at_slash(line, llen); 730if(!name || name == line) 731return NULL; 732 name++; 733 734/* 735 * since the first name is unquoted, a dq if exists must be 736 * the beginning of the second name. 737 */ 738for(second = name; second < line + llen; second++) { 739if(*second =='"') { 740struct strbuf sp = STRBUF_INIT; 741const char*np; 742 743if(unquote_c_style(&sp, second, NULL)) 744goto free_and_fail2; 745 746 np =stop_at_slash(sp.buf, sp.len); 747if(!np || np == sp.buf) 748goto free_and_fail2; 749 np++; 750 751 len = sp.buf + sp.len - np; 752if(len < second - name && 753!strncmp(np, name, len) && 754isspace(name[len])) { 755/* Good */ 756strbuf_remove(&sp,0, np - sp.buf); 757returnstrbuf_detach(&sp, NULL); 758} 759 760 free_and_fail2: 761strbuf_release(&sp); 762return NULL; 763} 764} 765 766/* 767 * Accept a name only if it shows up twice, exactly the same 768 * form. 769 */ 770for(len =0; ; len++) { 771switch(name[len]) { 772default: 773continue; 774case'\n': 775return NULL; 776case'\t':case' ': 777 second = name+len; 778for(;;) { 779char c = *second++; 780if(c =='\n') 781return NULL; 782if(c =='/') 783break; 784} 785if(second[len] =='\n'&& !memcmp(name, second, len)) { 786returnxmemdupz(name, len); 787} 788} 789} 790} 791 792/* Verify that we recognize the lines following a git header */ 793static intparse_git_header(char*line,int len,unsigned int size,struct patch *patch) 794{ 795unsigned long offset; 796 797/* A git diff has explicit new/delete information, so we don't guess */ 798 patch->is_new =0; 799 patch->is_delete =0; 800 801/* 802 * Some things may not have the old name in the 803 * rest of the headers anywhere (pure mode changes, 804 * or removing or adding empty files), so we get 805 * the default name from the header. 806 */ 807 patch->def_name =git_header_name(line, len); 808if(patch->def_name && root) { 809char*s =xmalloc(root_len +strlen(patch->def_name) +1); 810strcpy(s, root); 811strcpy(s + root_len, patch->def_name); 812free(patch->def_name); 813 patch->def_name = s; 814} 815 816 line += len; 817 size -= len; 818 linenr++; 819for(offset = len ; size >0; offset += len, size -= len, line += len, linenr++) { 820static const struct opentry { 821const char*str; 822int(*fn)(const char*,struct patch *); 823} optable[] = { 824{"@@ -", gitdiff_hdrend }, 825{"--- ", gitdiff_oldname }, 826{"+++ ", gitdiff_newname }, 827{"old mode ", gitdiff_oldmode }, 828{"new mode ", gitdiff_newmode }, 829{"deleted file mode ", gitdiff_delete }, 830{"new file mode ", gitdiff_newfile }, 831{"copy from ", gitdiff_copysrc }, 832{"copy to ", gitdiff_copydst }, 833{"rename old ", gitdiff_renamesrc }, 834{"rename new ", gitdiff_renamedst }, 835{"rename from ", gitdiff_renamesrc }, 836{"rename to ", gitdiff_renamedst }, 837{"similarity index ", gitdiff_similarity }, 838{"dissimilarity index ", gitdiff_dissimilarity }, 839{"index ", gitdiff_index }, 840{"", gitdiff_unrecognized }, 841}; 842int i; 843 844 len =linelen(line, size); 845if(!len || line[len-1] !='\n') 846break; 847for(i =0; i <ARRAY_SIZE(optable); i++) { 848const struct opentry *p = optable + i; 849int oplen =strlen(p->str); 850if(len < oplen ||memcmp(p->str, line, oplen)) 851continue; 852if(p->fn(line + oplen, patch) <0) 853return offset; 854break; 855} 856} 857 858return offset; 859} 860 861static intparse_num(const char*line,unsigned long*p) 862{ 863char*ptr; 864 865if(!isdigit(*line)) 866return0; 867*p =strtoul(line, &ptr,10); 868return ptr - line; 869} 870 871static intparse_range(const char*line,int len,int offset,const char*expect, 872unsigned long*p1,unsigned long*p2) 873{ 874int digits, ex; 875 876if(offset <0|| offset >= len) 877return-1; 878 line += offset; 879 len -= offset; 880 881 digits =parse_num(line, p1); 882if(!digits) 883return-1; 884 885 offset += digits; 886 line += digits; 887 len -= digits; 888 889*p2 =1; 890if(*line ==',') { 891 digits =parse_num(line+1, p2); 892if(!digits) 893return-1; 894 895 offset += digits+1; 896 line += digits+1; 897 len -= digits+1; 898} 899 900 ex =strlen(expect); 901if(ex > len) 902return-1; 903if(memcmp(line, expect, ex)) 904return-1; 905 906return offset + ex; 907} 908 909static voidrecount_diff(char*line,int size,struct fragment *fragment) 910{ 911int oldlines =0, newlines =0, ret =0; 912 913if(size <1) { 914warning("recount: ignore empty hunk"); 915return; 916} 917 918for(;;) { 919int len =linelen(line, size); 920 size -= len; 921 line += len; 922 923if(size <1) 924break; 925 926switch(*line) { 927case' ':case'\n': 928 newlines++; 929/* fall through */ 930case'-': 931 oldlines++; 932continue; 933case'+': 934 newlines++; 935continue; 936case'\\': 937continue; 938case'@': 939 ret = size <3||prefixcmp(line,"@@ "); 940break; 941case'd': 942 ret = size <5||prefixcmp(line,"diff "); 943break; 944default: 945 ret = -1; 946break; 947} 948if(ret) { 949warning("recount: unexpected line: %.*s", 950(int)linelen(line, size), line); 951return; 952} 953break; 954} 955 fragment->oldlines = oldlines; 956 fragment->newlines = newlines; 957} 958 959/* 960 * Parse a unified diff fragment header of the 961 * form "@@ -a,b +c,d @@" 962 */ 963static intparse_fragment_header(char*line,int len,struct fragment *fragment) 964{ 965int offset; 966 967if(!len || line[len-1] !='\n') 968return-1; 969 970/* Figure out the number of lines in a fragment */ 971 offset =parse_range(line, len,4," +", &fragment->oldpos, &fragment->oldlines); 972 offset =parse_range(line, len, offset," @@", &fragment->newpos, &fragment->newlines); 973 974return offset; 975} 976 977static intfind_header(char*line,unsigned long size,int*hdrsize,struct patch *patch) 978{ 979unsigned long offset, len; 980 981 patch->is_toplevel_relative =0; 982 patch->is_rename = patch->is_copy =0; 983 patch->is_new = patch->is_delete = -1; 984 patch->old_mode = patch->new_mode =0; 985 patch->old_name = patch->new_name = NULL; 986for(offset =0; size >0; offset += len, size -= len, line += len, linenr++) { 987unsigned long nextlen; 988 989 len =linelen(line, size); 990if(!len) 991break; 992 993/* Testing this early allows us to take a few shortcuts.. */ 994if(len <6) 995continue; 996 997/* 998 * Make sure we don't find any unconnected patch fragments. 999 * That's a sign that we didn't find a header, and that a1000 * patch has become corrupted/broken up.1001 */1002if(!memcmp("@@ -", line,4)) {1003struct fragment dummy;1004if(parse_fragment_header(line, len, &dummy) <0)1005continue;1006die("patch fragment without header at line%d: %.*s",1007 linenr, (int)len-1, line);1008}10091010if(size < len +6)1011break;10121013/*1014 * Git patch? It might not have a real patch, just a rename1015 * or mode change, so we handle that specially1016 */1017if(!memcmp("diff --git ", line,11)) {1018int git_hdr_len =parse_git_header(line, len, size, patch);1019if(git_hdr_len <= len)1020continue;1021if(!patch->old_name && !patch->new_name) {1022if(!patch->def_name)1023die("git diff header lacks filename information (line%d)", linenr);1024 patch->old_name = patch->new_name = patch->def_name;1025}1026 patch->is_toplevel_relative =1;1027*hdrsize = git_hdr_len;1028return offset;1029}10301031/* --- followed by +++ ? */1032if(memcmp("--- ", line,4) ||memcmp("+++ ", line + len,4))1033continue;10341035/*1036 * We only accept unified patches, so we want it to1037 * at least have "@@ -a,b +c,d @@\n", which is 14 chars1038 * minimum ("@@ -0,0 +1 @@\n" is the shortest).1039 */1040 nextlen =linelen(line + len, size - len);1041if(size < nextlen +14||memcmp("@@ -", line + len + nextlen,4))1042continue;10431044/* Ok, we'll consider it a patch */1045parse_traditional_patch(line, line+len, patch);1046*hdrsize = len + nextlen;1047 linenr +=2;1048return offset;1049}1050return-1;1051}10521053static voidcheck_whitespace(const char*line,int len,unsigned ws_rule)1054{1055char*err;1056unsigned result =ws_check(line +1, len -1, ws_rule);1057if(!result)1058return;10591060 whitespace_error++;1061if(squelch_whitespace_errors &&1062 squelch_whitespace_errors < whitespace_error)1063;1064else{1065 err =whitespace_error_string(result);1066fprintf(stderr,"%s:%d:%s.\n%.*s\n",1067 patch_input_file, linenr, err, len -2, line +1);1068free(err);1069}1070}10711072/*1073 * Parse a unified diff. Note that this really needs to parse each1074 * fragment separately, since the only way to know the difference1075 * between a "---" that is part of a patch, and a "---" that starts1076 * the next patch is to look at the line counts..1077 */1078static intparse_fragment(char*line,unsigned long size,1079struct patch *patch,struct fragment *fragment)1080{1081int added, deleted;1082int len =linelen(line, size), offset;1083unsigned long oldlines, newlines;1084unsigned long leading, trailing;10851086 offset =parse_fragment_header(line, len, fragment);1087if(offset <0)1088return-1;1089if(offset >0&& patch->recount)1090recount_diff(line + offset, size - offset, fragment);1091 oldlines = fragment->oldlines;1092 newlines = fragment->newlines;1093 leading =0;1094 trailing =0;10951096/* Parse the thing.. */1097 line += len;1098 size -= len;1099 linenr++;1100 added = deleted =0;1101for(offset = len;11020< size;1103 offset += len, size -= len, line += len, linenr++) {1104if(!oldlines && !newlines)1105break;1106 len =linelen(line, size);1107if(!len || line[len-1] !='\n')1108return-1;1109switch(*line) {1110default:1111return-1;1112case'\n':/* newer GNU diff, an empty context line */1113case' ':1114 oldlines--;1115 newlines--;1116if(!deleted && !added)1117 leading++;1118 trailing++;1119break;1120case'-':1121if(apply_in_reverse &&1122 ws_error_action != nowarn_ws_error)1123check_whitespace(line, len, patch->ws_rule);1124 deleted++;1125 oldlines--;1126 trailing =0;1127break;1128case'+':1129if(!apply_in_reverse &&1130 ws_error_action != nowarn_ws_error)1131check_whitespace(line, len, patch->ws_rule);1132 added++;1133 newlines--;1134 trailing =0;1135break;11361137/*1138 * We allow "\ No newline at end of file". Depending1139 * on locale settings when the patch was produced we1140 * don't know what this line looks like. The only1141 * thing we do know is that it begins with "\ ".1142 * Checking for 12 is just for sanity check -- any1143 * l10n of "\ No newline..." is at least that long.1144 */1145case'\\':1146if(len <12||memcmp(line,"\\",2))1147return-1;1148break;1149}1150}1151if(oldlines || newlines)1152return-1;1153 fragment->leading = leading;1154 fragment->trailing = trailing;11551156/*1157 * If a fragment ends with an incomplete line, we failed to include1158 * it in the above loop because we hit oldlines == newlines == 01159 * before seeing it.1160 */1161if(12< size && !memcmp(line,"\\",2))1162 offset +=linelen(line, size);11631164 patch->lines_added += added;1165 patch->lines_deleted += deleted;11661167if(0< patch->is_new && oldlines)1168returnerror("new file depends on old contents");1169if(0< patch->is_delete && newlines)1170returnerror("deleted file still has contents");1171return offset;1172}11731174static intparse_single_patch(char*line,unsigned long size,struct patch *patch)1175{1176unsigned long offset =0;1177unsigned long oldlines =0, newlines =0, context =0;1178struct fragment **fragp = &patch->fragments;11791180while(size >4&& !memcmp(line,"@@ -",4)) {1181struct fragment *fragment;1182int len;11831184 fragment =xcalloc(1,sizeof(*fragment));1185 len =parse_fragment(line, size, patch, fragment);1186if(len <=0)1187die("corrupt patch at line%d", linenr);1188 fragment->patch = line;1189 fragment->size = len;1190 oldlines += fragment->oldlines;1191 newlines += fragment->newlines;1192 context += fragment->leading + fragment->trailing;11931194*fragp = fragment;1195 fragp = &fragment->next;11961197 offset += len;1198 line += len;1199 size -= len;1200}12011202/*1203 * If something was removed (i.e. we have old-lines) it cannot1204 * be creation, and if something was added it cannot be1205 * deletion. However, the reverse is not true; --unified=01206 * patches that only add are not necessarily creation even1207 * though they do not have any old lines, and ones that only1208 * delete are not necessarily deletion.1209 *1210 * Unfortunately, a real creation/deletion patch do _not_ have1211 * any context line by definition, so we cannot safely tell it1212 * apart with --unified=0 insanity. At least if the patch has1213 * more than one hunk it is not creation or deletion.1214 */1215if(patch->is_new <0&&1216(oldlines || (patch->fragments && patch->fragments->next)))1217 patch->is_new =0;1218if(patch->is_delete <0&&1219(newlines || (patch->fragments && patch->fragments->next)))1220 patch->is_delete =0;12211222if(0< patch->is_new && oldlines)1223die("new file%sdepends on old contents", patch->new_name);1224if(0< patch->is_delete && newlines)1225die("deleted file%sstill has contents", patch->old_name);1226if(!patch->is_delete && !newlines && context)1227fprintf(stderr,"** warning: file%sbecomes empty but "1228"is not deleted\n", patch->new_name);12291230return offset;1231}12321233staticinlineintmetadata_changes(struct patch *patch)1234{1235return patch->is_rename >0||1236 patch->is_copy >0||1237 patch->is_new >0||1238 patch->is_delete ||1239(patch->old_mode && patch->new_mode &&1240 patch->old_mode != patch->new_mode);1241}12421243static char*inflate_it(const void*data,unsigned long size,1244unsigned long inflated_size)1245{1246 z_stream stream;1247void*out;1248int st;12491250memset(&stream,0,sizeof(stream));12511252 stream.next_in = (unsigned char*)data;1253 stream.avail_in = size;1254 stream.next_out = out =xmalloc(inflated_size);1255 stream.avail_out = inflated_size;1256git_inflate_init(&stream);1257 st =git_inflate(&stream, Z_FINISH);1258git_inflate_end(&stream);1259if((st != Z_STREAM_END) || stream.total_out != inflated_size) {1260free(out);1261return NULL;1262}1263return out;1264}12651266static struct fragment *parse_binary_hunk(char**buf_p,1267unsigned long*sz_p,1268int*status_p,1269int*used_p)1270{1271/*1272 * Expect a line that begins with binary patch method ("literal"1273 * or "delta"), followed by the length of data before deflating.1274 * a sequence of 'length-byte' followed by base-85 encoded data1275 * should follow, terminated by a newline.1276 *1277 * Each 5-byte sequence of base-85 encodes up to 4 bytes,1278 * and we would limit the patch line to 66 characters,1279 * so one line can fit up to 13 groups that would decode1280 * to 52 bytes max. The length byte 'A'-'Z' corresponds1281 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.1282 */1283int llen, used;1284unsigned long size = *sz_p;1285char*buffer = *buf_p;1286int patch_method;1287unsigned long origlen;1288char*data = NULL;1289int hunk_size =0;1290struct fragment *frag;12911292 llen =linelen(buffer, size);1293 used = llen;12941295*status_p =0;12961297if(!prefixcmp(buffer,"delta ")) {1298 patch_method = BINARY_DELTA_DEFLATED;1299 origlen =strtoul(buffer +6, NULL,10);1300}1301else if(!prefixcmp(buffer,"literal ")) {1302 patch_method = BINARY_LITERAL_DEFLATED;1303 origlen =strtoul(buffer +8, NULL,10);1304}1305else1306return NULL;13071308 linenr++;1309 buffer += llen;1310while(1) {1311int byte_length, max_byte_length, newsize;1312 llen =linelen(buffer, size);1313 used += llen;1314 linenr++;1315if(llen ==1) {1316/* consume the blank line */1317 buffer++;1318 size--;1319break;1320}1321/*1322 * Minimum line is "A00000\n" which is 7-byte long,1323 * and the line length must be multiple of 5 plus 2.1324 */1325if((llen <7) || (llen-2) %5)1326goto corrupt;1327 max_byte_length = (llen -2) /5*4;1328 byte_length = *buffer;1329if('A'<= byte_length && byte_length <='Z')1330 byte_length = byte_length -'A'+1;1331else if('a'<= byte_length && byte_length <='z')1332 byte_length = byte_length -'a'+27;1333else1334goto corrupt;1335/* if the input length was not multiple of 4, we would1336 * have filler at the end but the filler should never1337 * exceed 3 bytes1338 */1339if(max_byte_length < byte_length ||1340 byte_length <= max_byte_length -4)1341goto corrupt;1342 newsize = hunk_size + byte_length;1343 data =xrealloc(data, newsize);1344if(decode_85(data + hunk_size, buffer +1, byte_length))1345goto corrupt;1346 hunk_size = newsize;1347 buffer += llen;1348 size -= llen;1349}13501351 frag =xcalloc(1,sizeof(*frag));1352 frag->patch =inflate_it(data, hunk_size, origlen);1353if(!frag->patch)1354goto corrupt;1355free(data);1356 frag->size = origlen;1357*buf_p = buffer;1358*sz_p = size;1359*used_p = used;1360 frag->binary_patch_method = patch_method;1361return frag;13621363 corrupt:1364free(data);1365*status_p = -1;1366error("corrupt binary patch at line%d: %.*s",1367 linenr-1, llen-1, buffer);1368return NULL;1369}13701371static intparse_binary(char*buffer,unsigned long size,struct patch *patch)1372{1373/*1374 * We have read "GIT binary patch\n"; what follows is a line1375 * that says the patch method (currently, either "literal" or1376 * "delta") and the length of data before deflating; a1377 * sequence of 'length-byte' followed by base-85 encoded data1378 * follows.1379 *1380 * When a binary patch is reversible, there is another binary1381 * hunk in the same format, starting with patch method (either1382 * "literal" or "delta") with the length of data, and a sequence1383 * of length-byte + base-85 encoded data, terminated with another1384 * empty line. This data, when applied to the postimage, produces1385 * the preimage.1386 */1387struct fragment *forward;1388struct fragment *reverse;1389int status;1390int used, used_1;13911392 forward =parse_binary_hunk(&buffer, &size, &status, &used);1393if(!forward && !status)1394/* there has to be one hunk (forward hunk) */1395returnerror("unrecognized binary patch at line%d", linenr-1);1396if(status)1397/* otherwise we already gave an error message */1398return status;13991400 reverse =parse_binary_hunk(&buffer, &size, &status, &used_1);1401if(reverse)1402 used += used_1;1403else if(status) {1404/*1405 * Not having reverse hunk is not an error, but having1406 * a corrupt reverse hunk is.1407 */1408free((void*) forward->patch);1409free(forward);1410return status;1411}1412 forward->next = reverse;1413 patch->fragments = forward;1414 patch->is_binary =1;1415return used;1416}14171418static intparse_chunk(char*buffer,unsigned long size,struct patch *patch)1419{1420int hdrsize, patchsize;1421int offset =find_header(buffer, size, &hdrsize, patch);14221423if(offset <0)1424return offset;14251426 patch->ws_rule =whitespace_rule(patch->new_name1427? patch->new_name1428: patch->old_name);14291430 patchsize =parse_single_patch(buffer + offset + hdrsize,1431 size - offset - hdrsize, patch);14321433if(!patchsize) {1434static const char*binhdr[] = {1435"Binary files ",1436"Files ",1437 NULL,1438};1439static const char git_binary[] ="GIT binary patch\n";1440int i;1441int hd = hdrsize + offset;1442unsigned long llen =linelen(buffer + hd, size - hd);14431444if(llen ==sizeof(git_binary) -1&&1445!memcmp(git_binary, buffer + hd, llen)) {1446int used;1447 linenr++;1448 used =parse_binary(buffer + hd + llen,1449 size - hd - llen, patch);1450if(used)1451 patchsize = used + llen;1452else1453 patchsize =0;1454}1455else if(!memcmp(" differ\n", buffer + hd + llen -8,8)) {1456for(i =0; binhdr[i]; i++) {1457int len =strlen(binhdr[i]);1458if(len < size - hd &&1459!memcmp(binhdr[i], buffer + hd, len)) {1460 linenr++;1461 patch->is_binary =1;1462 patchsize = llen;1463break;1464}1465}1466}14671468/* Empty patch cannot be applied if it is a text patch1469 * without metadata change. A binary patch appears1470 * empty to us here.1471 */1472if((apply || check) &&1473(!patch->is_binary && !metadata_changes(patch)))1474die("patch with only garbage at line%d", linenr);1475}14761477return offset + hdrsize + patchsize;1478}14791480#define swap(a,b) myswap((a),(b),sizeof(a))14811482#define myswap(a, b, size) do { \1483 unsigned char mytmp[size]; \1484 memcpy(mytmp, &a, size); \1485 memcpy(&a, &b, size); \1486 memcpy(&b, mytmp, size); \1487} while (0)14881489static voidreverse_patches(struct patch *p)1490{1491for(; p; p = p->next) {1492struct fragment *frag = p->fragments;14931494swap(p->new_name, p->old_name);1495swap(p->new_mode, p->old_mode);1496swap(p->is_new, p->is_delete);1497swap(p->lines_added, p->lines_deleted);1498swap(p->old_sha1_prefix, p->new_sha1_prefix);14991500for(; frag; frag = frag->next) {1501swap(frag->newpos, frag->oldpos);1502swap(frag->newlines, frag->oldlines);1503}1504}1505}15061507static const char pluses[] =1508"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";1509static const char minuses[]=1510"----------------------------------------------------------------------";15111512static voidshow_stats(struct patch *patch)1513{1514struct strbuf qname = STRBUF_INIT;1515char*cp = patch->new_name ? patch->new_name : patch->old_name;1516int max, add, del;15171518quote_c_style(cp, &qname, NULL,0);15191520/*1521 * "scale" the filename1522 */1523 max = max_len;1524if(max >50)1525 max =50;15261527if(qname.len > max) {1528 cp =strchr(qname.buf + qname.len +3- max,'/');1529if(!cp)1530 cp = qname.buf + qname.len +3- max;1531strbuf_splice(&qname,0, cp - qname.buf,"...",3);1532}15331534if(patch->is_binary) {1535printf(" %-*s | Bin\n", max, qname.buf);1536strbuf_release(&qname);1537return;1538}15391540printf(" %-*s |", max, qname.buf);1541strbuf_release(&qname);15421543/*1544 * scale the add/delete1545 */1546 max = max + max_change >70?70- max : max_change;1547 add = patch->lines_added;1548 del = patch->lines_deleted;15491550if(max_change >0) {1551int total = ((add + del) * max + max_change /2) / max_change;1552 add = (add * max + max_change /2) / max_change;1553 del = total - add;1554}1555printf("%5d %.*s%.*s\n", patch->lines_added + patch->lines_deleted,1556 add, pluses, del, minuses);1557}15581559static intread_old_data(struct stat *st,const char*path,struct strbuf *buf)1560{1561switch(st->st_mode & S_IFMT) {1562case S_IFLNK:1563if(strbuf_readlink(buf, path, st->st_size) <0)1564returnerror("unable to read symlink%s", path);1565return0;1566case S_IFREG:1567if(strbuf_read_file(buf, path, st->st_size) != st->st_size)1568returnerror("unable to open or read%s", path);1569convert_to_git(path, buf->buf, buf->len, buf,0);1570return0;1571default:1572return-1;1573}1574}15751576static voidupdate_pre_post_images(struct image *preimage,1577struct image *postimage,1578char*buf,1579size_t len)1580{1581int i, ctx;1582char*new, *old, *fixed;1583struct image fixed_preimage;15841585/*1586 * Update the preimage with whitespace fixes. Note that we1587 * are not losing preimage->buf -- apply_one_fragment() will1588 * free "oldlines".1589 */1590prepare_image(&fixed_preimage, buf, len,1);1591assert(fixed_preimage.nr == preimage->nr);1592for(i =0; i < preimage->nr; i++)1593 fixed_preimage.line[i].flag = preimage->line[i].flag;1594free(preimage->line_allocated);1595*preimage = fixed_preimage;15961597/*1598 * Adjust the common context lines in postimage, in place.1599 * This is possible because whitespace fixing does not make1600 * the string grow.1601 */1602new= old = postimage->buf;1603 fixed = preimage->buf;1604for(i = ctx =0; i < postimage->nr; i++) {1605size_t len = postimage->line[i].len;1606if(!(postimage->line[i].flag & LINE_COMMON)) {1607/* an added line -- no counterparts in preimage */1608memmove(new, old, len);1609 old += len;1610new+= len;1611continue;1612}16131614/* a common context -- skip it in the original postimage */1615 old += len;16161617/* and find the corresponding one in the fixed preimage */1618while(ctx < preimage->nr &&1619!(preimage->line[ctx].flag & LINE_COMMON)) {1620 fixed += preimage->line[ctx].len;1621 ctx++;1622}1623if(preimage->nr <= ctx)1624die("oops");16251626/* and copy it in, while fixing the line length */1627 len = preimage->line[ctx].len;1628memcpy(new, fixed, len);1629new+= len;1630 fixed += len;1631 postimage->line[i].len = len;1632 ctx++;1633}16341635/* Fix the length of the whole thing */1636 postimage->len =new- postimage->buf;1637}16381639static intmatch_fragment(struct image *img,1640struct image *preimage,1641struct image *postimage,1642unsigned longtry,1643int try_lno,1644unsigned ws_rule,1645int match_beginning,int match_end)1646{1647int i;1648char*fixed_buf, *buf, *orig, *target;16491650if(preimage->nr + try_lno > img->nr)1651return0;16521653if(match_beginning && try_lno)1654return0;16551656if(match_end && preimage->nr + try_lno != img->nr)1657return0;16581659/* Quick hash check */1660for(i =0; i < preimage->nr; i++)1661if(preimage->line[i].hash != img->line[try_lno + i].hash)1662return0;16631664/*1665 * Do we have an exact match? If we were told to match1666 * at the end, size must be exactly at try+fragsize,1667 * otherwise try+fragsize must be still within the preimage,1668 * and either case, the old piece should match the preimage1669 * exactly.1670 */1671if((match_end1672? (try+ preimage->len == img->len)1673: (try+ preimage->len <= img->len)) &&1674!memcmp(img->buf +try, preimage->buf, preimage->len))1675return1;16761677if(ws_error_action != correct_ws_error)1678return0;16791680/*1681 * The hunk does not apply byte-by-byte, but the hash says1682 * it might with whitespace fuzz.1683 */1684 fixed_buf =xmalloc(preimage->len +1);1685 buf = fixed_buf;1686 orig = preimage->buf;1687 target = img->buf +try;1688for(i =0; i < preimage->nr; i++) {1689size_t fixlen;/* length after fixing the preimage */1690size_t oldlen = preimage->line[i].len;1691size_t tgtlen = img->line[try_lno + i].len;1692size_t tgtfixlen;/* length after fixing the target line */1693char tgtfixbuf[1024], *tgtfix;1694int match;16951696/* Try fixing the line in the preimage */1697 fixlen =ws_fix_copy(buf, orig, oldlen, ws_rule, NULL);16981699/* Try fixing the line in the target */1700if(sizeof(tgtfixbuf) > tgtlen)1701 tgtfix = tgtfixbuf;1702else1703 tgtfix =xmalloc(tgtlen);1704 tgtfixlen =ws_fix_copy(tgtfix, target, tgtlen, ws_rule, NULL);17051706/*1707 * If they match, either the preimage was based on1708 * a version before our tree fixed whitespace breakage,1709 * or we are lacking a whitespace-fix patch the tree1710 * the preimage was based on already had (i.e. target1711 * has whitespace breakage, the preimage doesn't).1712 * In either case, we are fixing the whitespace breakages1713 * so we might as well take the fix together with their1714 * real change.1715 */1716 match = (tgtfixlen == fixlen && !memcmp(tgtfix, buf, fixlen));17171718if(tgtfix != tgtfixbuf)1719free(tgtfix);1720if(!match)1721goto unmatch_exit;17221723 orig += oldlen;1724 buf += fixlen;1725 target += tgtlen;1726}17271728/*1729 * Yes, the preimage is based on an older version that still1730 * has whitespace breakages unfixed, and fixing them makes the1731 * hunk match. Update the context lines in the postimage.1732 */1733update_pre_post_images(preimage, postimage,1734 fixed_buf, buf - fixed_buf);1735return1;17361737 unmatch_exit:1738free(fixed_buf);1739return0;1740}17411742static intfind_pos(struct image *img,1743struct image *preimage,1744struct image *postimage,1745int line,1746unsigned ws_rule,1747int match_beginning,int match_end)1748{1749int i;1750unsigned long backwards, forwards,try;1751int backwards_lno, forwards_lno, try_lno;17521753if(preimage->nr > img->nr)1754return-1;17551756/*1757 * If match_begining or match_end is specified, there is no1758 * point starting from a wrong line that will never match and1759 * wander around and wait for a match at the specified end.1760 */1761if(match_beginning)1762 line =0;1763else if(match_end)1764 line = img->nr - preimage->nr;17651766if(line > img->nr)1767 line = img->nr;17681769try=0;1770for(i =0; i < line; i++)1771try+= img->line[i].len;17721773/*1774 * There's probably some smart way to do this, but I'll leave1775 * that to the smart and beautiful people. I'm simple and stupid.1776 */1777 backwards =try;1778 backwards_lno = line;1779 forwards =try;1780 forwards_lno = line;1781 try_lno = line;17821783for(i =0; ; i++) {1784if(match_fragment(img, preimage, postimage,1785try, try_lno, ws_rule,1786 match_beginning, match_end))1787return try_lno;17881789 again:1790if(backwards_lno ==0&& forwards_lno == img->nr)1791break;17921793if(i &1) {1794if(backwards_lno ==0) {1795 i++;1796goto again;1797}1798 backwards_lno--;1799 backwards -= img->line[backwards_lno].len;1800try= backwards;1801 try_lno = backwards_lno;1802}else{1803if(forwards_lno == img->nr) {1804 i++;1805goto again;1806}1807 forwards += img->line[forwards_lno].len;1808 forwards_lno++;1809try= forwards;1810 try_lno = forwards_lno;1811}18121813}1814return-1;1815}18161817static voidremove_first_line(struct image *img)1818{1819 img->buf += img->line[0].len;1820 img->len -= img->line[0].len;1821 img->line++;1822 img->nr--;1823}18241825static voidremove_last_line(struct image *img)1826{1827 img->len -= img->line[--img->nr].len;1828}18291830static voidupdate_image(struct image *img,1831int applied_pos,1832struct image *preimage,1833struct image *postimage)1834{1835/*1836 * remove the copy of preimage at offset in img1837 * and replace it with postimage1838 */1839int i, nr;1840size_t remove_count, insert_count, applied_at =0;1841char*result;18421843for(i =0; i < applied_pos; i++)1844 applied_at += img->line[i].len;18451846 remove_count =0;1847for(i =0; i < preimage->nr; i++)1848 remove_count += img->line[applied_pos + i].len;1849 insert_count = postimage->len;18501851/* Adjust the contents */1852 result =xmalloc(img->len + insert_count - remove_count +1);1853memcpy(result, img->buf, applied_at);1854memcpy(result + applied_at, postimage->buf, postimage->len);1855memcpy(result + applied_at + postimage->len,1856 img->buf + (applied_at + remove_count),1857 img->len - (applied_at + remove_count));1858free(img->buf);1859 img->buf = result;1860 img->len += insert_count - remove_count;1861 result[img->len] ='\0';18621863/* Adjust the line table */1864 nr = img->nr + postimage->nr - preimage->nr;1865if(preimage->nr < postimage->nr) {1866/*1867 * NOTE: this knows that we never call remove_first_line()1868 * on anything other than pre/post image.1869 */1870 img->line =xrealloc(img->line, nr *sizeof(*img->line));1871 img->line_allocated = img->line;1872}1873if(preimage->nr != postimage->nr)1874memmove(img->line + applied_pos + postimage->nr,1875 img->line + applied_pos + preimage->nr,1876(img->nr - (applied_pos + preimage->nr)) *1877sizeof(*img->line));1878memcpy(img->line + applied_pos,1879 postimage->line,1880 postimage->nr *sizeof(*img->line));1881 img->nr = nr;1882}18831884static intapply_one_fragment(struct image *img,struct fragment *frag,1885int inaccurate_eof,unsigned ws_rule)1886{1887int match_beginning, match_end;1888const char*patch = frag->patch;1889int size = frag->size;1890char*old, *new, *oldlines, *newlines;1891int new_blank_lines_at_end =0;1892unsigned long leading, trailing;1893int pos, applied_pos;1894struct image preimage;1895struct image postimage;18961897memset(&preimage,0,sizeof(preimage));1898memset(&postimage,0,sizeof(postimage));1899 oldlines =xmalloc(size);1900 newlines =xmalloc(size);19011902 old = oldlines;1903new= newlines;1904while(size >0) {1905char first;1906int len =linelen(patch, size);1907int plen, added;1908int added_blank_line =0;19091910if(!len)1911break;19121913/*1914 * "plen" is how much of the line we should use for1915 * the actual patch data. Normally we just remove the1916 * first character on the line, but if the line is1917 * followed by "\ No newline", then we also remove the1918 * last one (which is the newline, of course).1919 */1920 plen = len -1;1921if(len < size && patch[len] =='\\')1922 plen--;1923 first = *patch;1924if(apply_in_reverse) {1925if(first =='-')1926 first ='+';1927else if(first =='+')1928 first ='-';1929}19301931switch(first) {1932case'\n':1933/* Newer GNU diff, empty context line */1934if(plen <0)1935/* ... followed by '\No newline'; nothing */1936break;1937*old++ ='\n';1938*new++ ='\n';1939add_line_info(&preimage,"\n",1, LINE_COMMON);1940add_line_info(&postimage,"\n",1, LINE_COMMON);1941break;1942case' ':1943case'-':1944memcpy(old, patch +1, plen);1945add_line_info(&preimage, old, plen,1946(first ==' '? LINE_COMMON :0));1947 old += plen;1948if(first =='-')1949break;1950/* Fall-through for ' ' */1951case'+':1952/* --no-add does not add new lines */1953if(first =='+'&& no_add)1954break;19551956if(first !='+'||1957!whitespace_error ||1958 ws_error_action != correct_ws_error) {1959memcpy(new, patch +1, plen);1960 added = plen;1961}1962else{1963 added =ws_fix_copy(new, patch +1, plen, ws_rule, &applied_after_fixing_ws);1964}1965add_line_info(&postimage,new, added,1966(first =='+'?0: LINE_COMMON));1967new+= added;1968if(first =='+'&&1969 added ==1&&new[-1] =='\n')1970 added_blank_line =1;1971break;1972case'@':case'\\':1973/* Ignore it, we already handled it */1974break;1975default:1976if(apply_verbosely)1977error("invalid start of line: '%c'", first);1978return-1;1979}1980if(added_blank_line)1981 new_blank_lines_at_end++;1982else1983 new_blank_lines_at_end =0;1984 patch += len;1985 size -= len;1986}1987if(inaccurate_eof &&1988 old > oldlines && old[-1] =='\n'&&1989new> newlines &&new[-1] =='\n') {1990 old--;1991new--;1992}19931994 leading = frag->leading;1995 trailing = frag->trailing;19961997/*1998 * A hunk to change lines at the beginning would begin with1999 * @@ -1,L +N,M @@2000 * but we need to be careful. -U0 that inserts before the second2001 * line also has this pattern.2002 *2003 * And a hunk to add to an empty file would begin with2004 * @@ -0,0 +N,M @@2005 *2006 * In other words, a hunk that is (frag->oldpos <= 1) with or2007 * without leading context must match at the beginning.2008 */2009 match_beginning = (!frag->oldpos ||2010(frag->oldpos ==1&& !unidiff_zero));20112012/*2013 * A hunk without trailing lines must match at the end.2014 * However, we simply cannot tell if a hunk must match end2015 * from the lack of trailing lines if the patch was generated2016 * with unidiff without any context.2017 */2018 match_end = !unidiff_zero && !trailing;20192020 pos = frag->newpos ? (frag->newpos -1) :0;2021 preimage.buf = oldlines;2022 preimage.len = old - oldlines;2023 postimage.buf = newlines;2024 postimage.len =new- newlines;2025 preimage.line = preimage.line_allocated;2026 postimage.line = postimage.line_allocated;20272028for(;;) {20292030 applied_pos =find_pos(img, &preimage, &postimage, pos,2031 ws_rule, match_beginning, match_end);20322033if(applied_pos >=0)2034break;20352036/* Am I at my context limits? */2037if((leading <= p_context) && (trailing <= p_context))2038break;2039if(match_beginning || match_end) {2040 match_beginning = match_end =0;2041continue;2042}20432044/*2045 * Reduce the number of context lines; reduce both2046 * leading and trailing if they are equal otherwise2047 * just reduce the larger context.2048 */2049if(leading >= trailing) {2050remove_first_line(&preimage);2051remove_first_line(&postimage);2052 pos--;2053 leading--;2054}2055if(trailing > leading) {2056remove_last_line(&preimage);2057remove_last_line(&postimage);2058 trailing--;2059}2060}20612062if(applied_pos >=0) {2063if(ws_error_action == correct_ws_error &&2064 new_blank_lines_at_end &&2065 postimage.nr + applied_pos == img->nr) {2066/*2067 * If the patch application adds blank lines2068 * at the end, and if the patch applies at the2069 * end of the image, remove those added blank2070 * lines.2071 */2072while(new_blank_lines_at_end--)2073remove_last_line(&postimage);2074}20752076/*2077 * Warn if it was necessary to reduce the number2078 * of context lines.2079 */2080if((leading != frag->leading) ||2081(trailing != frag->trailing))2082fprintf(stderr,"Context reduced to (%ld/%ld)"2083" to apply fragment at%d\n",2084 leading, trailing, applied_pos+1);2085update_image(img, applied_pos, &preimage, &postimage);2086}else{2087if(apply_verbosely)2088error("while searching for:\n%.*s",2089(int)(old - oldlines), oldlines);2090}20912092free(oldlines);2093free(newlines);2094free(preimage.line_allocated);2095free(postimage.line_allocated);20962097return(applied_pos <0);2098}20992100static intapply_binary_fragment(struct image *img,struct patch *patch)2101{2102struct fragment *fragment = patch->fragments;2103unsigned long len;2104void*dst;21052106/* Binary patch is irreversible without the optional second hunk */2107if(apply_in_reverse) {2108if(!fragment->next)2109returnerror("cannot reverse-apply a binary patch "2110"without the reverse hunk to '%s'",2111 patch->new_name2112? patch->new_name : patch->old_name);2113 fragment = fragment->next;2114}2115switch(fragment->binary_patch_method) {2116case BINARY_DELTA_DEFLATED:2117 dst =patch_delta(img->buf, img->len, fragment->patch,2118 fragment->size, &len);2119if(!dst)2120return-1;2121clear_image(img);2122 img->buf = dst;2123 img->len = len;2124return0;2125case BINARY_LITERAL_DEFLATED:2126clear_image(img);2127 img->len = fragment->size;2128 img->buf =xmalloc(img->len+1);2129memcpy(img->buf, fragment->patch, img->len);2130 img->buf[img->len] ='\0';2131return0;2132}2133return-1;2134}21352136static intapply_binary(struct image *img,struct patch *patch)2137{2138const char*name = patch->old_name ? patch->old_name : patch->new_name;2139unsigned char sha1[20];21402141/*2142 * For safety, we require patch index line to contain2143 * full 40-byte textual SHA1 for old and new, at least for now.2144 */2145if(strlen(patch->old_sha1_prefix) !=40||2146strlen(patch->new_sha1_prefix) !=40||2147get_sha1_hex(patch->old_sha1_prefix, sha1) ||2148get_sha1_hex(patch->new_sha1_prefix, sha1))2149returnerror("cannot apply binary patch to '%s' "2150"without full index line", name);21512152if(patch->old_name) {2153/*2154 * See if the old one matches what the patch2155 * applies to.2156 */2157hash_sha1_file(img->buf, img->len, blob_type, sha1);2158if(strcmp(sha1_to_hex(sha1), patch->old_sha1_prefix))2159returnerror("the patch applies to '%s' (%s), "2160"which does not match the "2161"current contents.",2162 name,sha1_to_hex(sha1));2163}2164else{2165/* Otherwise, the old one must be empty. */2166if(img->len)2167returnerror("the patch applies to an empty "2168"'%s' but it is not empty", name);2169}21702171get_sha1_hex(patch->new_sha1_prefix, sha1);2172if(is_null_sha1(sha1)) {2173clear_image(img);2174return0;/* deletion patch */2175}21762177if(has_sha1_file(sha1)) {2178/* We already have the postimage */2179enum object_type type;2180unsigned long size;2181char*result;21822183 result =read_sha1_file(sha1, &type, &size);2184if(!result)2185returnerror("the necessary postimage%sfor "2186"'%s' cannot be read",2187 patch->new_sha1_prefix, name);2188clear_image(img);2189 img->buf = result;2190 img->len = size;2191}else{2192/*2193 * We have verified buf matches the preimage;2194 * apply the patch data to it, which is stored2195 * in the patch->fragments->{patch,size}.2196 */2197if(apply_binary_fragment(img, patch))2198returnerror("binary patch does not apply to '%s'",2199 name);22002201/* verify that the result matches */2202hash_sha1_file(img->buf, img->len, blob_type, sha1);2203if(strcmp(sha1_to_hex(sha1), patch->new_sha1_prefix))2204returnerror("binary patch to '%s' creates incorrect result (expecting%s, got%s)",2205 name, patch->new_sha1_prefix,sha1_to_hex(sha1));2206}22072208return0;2209}22102211static intapply_fragments(struct image *img,struct patch *patch)2212{2213struct fragment *frag = patch->fragments;2214const char*name = patch->old_name ? patch->old_name : patch->new_name;2215unsigned ws_rule = patch->ws_rule;2216unsigned inaccurate_eof = patch->inaccurate_eof;22172218if(patch->is_binary)2219returnapply_binary(img, patch);22202221while(frag) {2222if(apply_one_fragment(img, frag, inaccurate_eof, ws_rule)) {2223error("patch failed:%s:%ld", name, frag->oldpos);2224if(!apply_with_reject)2225return-1;2226 frag->rejected =1;2227}2228 frag = frag->next;2229}2230return0;2231}22322233static intread_file_or_gitlink(struct cache_entry *ce,struct strbuf *buf)2234{2235if(!ce)2236return0;22372238if(S_ISGITLINK(ce->ce_mode)) {2239strbuf_grow(buf,100);2240strbuf_addf(buf,"Subproject commit%s\n",sha1_to_hex(ce->sha1));2241}else{2242enum object_type type;2243unsigned long sz;2244char*result;22452246 result =read_sha1_file(ce->sha1, &type, &sz);2247if(!result)2248return-1;2249/* XXX read_sha1_file NUL-terminates */2250strbuf_attach(buf, result, sz, sz +1);2251}2252return0;2253}22542255static struct patch *in_fn_table(const char*name)2256{2257struct string_list_item *item;22582259if(name == NULL)2260return NULL;22612262 item =string_list_lookup(name, &fn_table);2263if(item != NULL)2264return(struct patch *)item->util;22652266return NULL;2267}22682269static voidadd_to_fn_table(struct patch *patch)2270{2271struct string_list_item *item;22722273/*2274 * Always add new_name unless patch is a deletion2275 * This should cover the cases for normal diffs,2276 * file creations and copies2277 */2278if(patch->new_name != NULL) {2279 item =string_list_insert(patch->new_name, &fn_table);2280 item->util = patch;2281}22822283/*2284 * store a failure on rename/deletion cases because2285 * later chunks shouldn't patch old names2286 */2287if((patch->new_name == NULL) || (patch->is_rename)) {2288 item =string_list_insert(patch->old_name, &fn_table);2289 item->util = (struct patch *) -1;2290}2291}22922293static intapply_data(struct patch *patch,struct stat *st,struct cache_entry *ce)2294{2295struct strbuf buf = STRBUF_INIT;2296struct image image;2297size_t len;2298char*img;2299struct patch *tpatch;23002301if(!(patch->is_copy || patch->is_rename) &&2302((tpatch =in_fn_table(patch->old_name)) != NULL)) {2303if(tpatch == (struct patch *) -1) {2304returnerror("patch%shas been renamed/deleted",2305 patch->old_name);2306}2307/* We have a patched copy in memory use that */2308strbuf_add(&buf, tpatch->result, tpatch->resultsize);2309}else if(cached) {2310if(read_file_or_gitlink(ce, &buf))2311returnerror("read of%sfailed", patch->old_name);2312}else if(patch->old_name) {2313if(S_ISGITLINK(patch->old_mode)) {2314if(ce) {2315read_file_or_gitlink(ce, &buf);2316}else{2317/*2318 * There is no way to apply subproject2319 * patch without looking at the index.2320 */2321 patch->fragments = NULL;2322}2323}else{2324if(read_old_data(st, patch->old_name, &buf))2325returnerror("read of%sfailed", patch->old_name);2326}2327}23282329 img =strbuf_detach(&buf, &len);2330prepare_image(&image, img, len, !patch->is_binary);23312332if(apply_fragments(&image, patch) <0)2333return-1;/* note with --reject this succeeds. */2334 patch->result = image.buf;2335 patch->resultsize = image.len;2336add_to_fn_table(patch);2337free(image.line_allocated);23382339if(0< patch->is_delete && patch->resultsize)2340returnerror("removal patch leaves file contents");23412342return0;2343}23442345static intcheck_to_create_blob(const char*new_name,int ok_if_exists)2346{2347struct stat nst;2348if(!lstat(new_name, &nst)) {2349if(S_ISDIR(nst.st_mode) || ok_if_exists)2350return0;2351/*2352 * A leading component of new_name might be a symlink2353 * that is going to be removed with this patch, but2354 * still pointing at somewhere that has the path.2355 * In such a case, path "new_name" does not exist as2356 * far as git is concerned.2357 */2358if(has_symlink_leading_path(strlen(new_name), new_name))2359return0;23602361returnerror("%s: already exists in working directory", new_name);2362}2363else if((errno != ENOENT) && (errno != ENOTDIR))2364returnerror("%s:%s", new_name,strerror(errno));2365return0;2366}23672368static intverify_index_match(struct cache_entry *ce,struct stat *st)2369{2370if(S_ISGITLINK(ce->ce_mode)) {2371if(!S_ISDIR(st->st_mode))2372return-1;2373return0;2374}2375returnce_match_stat(ce, st, CE_MATCH_IGNORE_VALID);2376}23772378static intcheck_preimage(struct patch *patch,struct cache_entry **ce,struct stat *st)2379{2380const char*old_name = patch->old_name;2381struct patch *tpatch = NULL;2382int stat_ret =0;2383unsigned st_mode =0;23842385/*2386 * Make sure that we do not have local modifications from the2387 * index when we are looking at the index. Also make sure2388 * we have the preimage file to be patched in the work tree,2389 * unless --cached, which tells git to apply only in the index.2390 */2391if(!old_name)2392return0;23932394assert(patch->is_new <=0);23952396if(!(patch->is_copy || patch->is_rename) &&2397(tpatch =in_fn_table(old_name)) != NULL) {2398if(tpatch == (struct patch *) -1) {2399returnerror("%s: has been deleted/renamed", old_name);2400}2401 st_mode = tpatch->new_mode;2402}else if(!cached) {2403 stat_ret =lstat(old_name, st);2404if(stat_ret && errno != ENOENT)2405returnerror("%s:%s", old_name,strerror(errno));2406}24072408if(check_index && !tpatch) {2409int pos =cache_name_pos(old_name,strlen(old_name));2410if(pos <0) {2411if(patch->is_new <0)2412goto is_new;2413returnerror("%s: does not exist in index", old_name);2414}2415*ce = active_cache[pos];2416if(stat_ret <0) {2417struct checkout costate;2418/* checkout */2419 costate.base_dir ="";2420 costate.base_dir_len =0;2421 costate.force =0;2422 costate.quiet =0;2423 costate.not_new =0;2424 costate.refresh_cache =1;2425if(checkout_entry(*ce, &costate, NULL) ||2426lstat(old_name, st))2427return-1;2428}2429if(!cached &&verify_index_match(*ce, st))2430returnerror("%s: does not match index", old_name);2431if(cached)2432 st_mode = (*ce)->ce_mode;2433}else if(stat_ret <0) {2434if(patch->is_new <0)2435goto is_new;2436returnerror("%s:%s", old_name,strerror(errno));2437}24382439if(!cached && !tpatch)2440 st_mode =ce_mode_from_stat(*ce, st->st_mode);24412442if(patch->is_new <0)2443 patch->is_new =0;2444if(!patch->old_mode)2445 patch->old_mode = st_mode;2446if((st_mode ^ patch->old_mode) & S_IFMT)2447returnerror("%s: wrong type", old_name);2448if(st_mode != patch->old_mode)2449fprintf(stderr,"warning:%shas type%o, expected%o\n",2450 old_name, st_mode, patch->old_mode);2451if(!patch->new_mode && !patch->is_delete)2452 patch->new_mode = st_mode;2453return0;24542455 is_new:2456 patch->is_new =1;2457 patch->is_delete =0;2458 patch->old_name = NULL;2459return0;2460}24612462static intcheck_patch(struct patch *patch)2463{2464struct stat st;2465const char*old_name = patch->old_name;2466const char*new_name = patch->new_name;2467const char*name = old_name ? old_name : new_name;2468struct cache_entry *ce = NULL;2469int ok_if_exists;2470int status;24712472 patch->rejected =1;/* we will drop this after we succeed */24732474 status =check_preimage(patch, &ce, &st);2475if(status)2476return status;2477 old_name = patch->old_name;24782479if(in_fn_table(new_name) == (struct patch *) -1)2480/*2481 * A type-change diff is always split into a patch to2482 * delete old, immediately followed by a patch to2483 * create new (see diff.c::run_diff()); in such a case2484 * it is Ok that the entry to be deleted by the2485 * previous patch is still in the working tree and in2486 * the index.2487 */2488 ok_if_exists =1;2489else2490 ok_if_exists =0;24912492if(new_name &&2493((0< patch->is_new) | (0< patch->is_rename) | patch->is_copy)) {2494if(check_index &&2495cache_name_pos(new_name,strlen(new_name)) >=0&&2496!ok_if_exists)2497returnerror("%s: already exists in index", new_name);2498if(!cached) {2499int err =check_to_create_blob(new_name, ok_if_exists);2500if(err)2501return err;2502}2503if(!patch->new_mode) {2504if(0< patch->is_new)2505 patch->new_mode = S_IFREG |0644;2506else2507 patch->new_mode = patch->old_mode;2508}2509}25102511if(new_name && old_name) {2512int same = !strcmp(old_name, new_name);2513if(!patch->new_mode)2514 patch->new_mode = patch->old_mode;2515if((patch->old_mode ^ patch->new_mode) & S_IFMT)2516returnerror("new mode (%o) of%sdoes not match old mode (%o)%s%s",2517 patch->new_mode, new_name, patch->old_mode,2518 same ?"":" of ", same ?"": old_name);2519}25202521if(apply_data(patch, &st, ce) <0)2522returnerror("%s: patch does not apply", name);2523 patch->rejected =0;2524return0;2525}25262527static intcheck_patch_list(struct patch *patch)2528{2529int err =0;25302531while(patch) {2532if(apply_verbosely)2533say_patch_name(stderr,2534"Checking patch ", patch,"...\n");2535 err |=check_patch(patch);2536 patch = patch->next;2537}2538return err;2539}25402541/* This function tries to read the sha1 from the current index */2542static intget_current_sha1(const char*path,unsigned char*sha1)2543{2544int pos;25452546if(read_cache() <0)2547return-1;2548 pos =cache_name_pos(path,strlen(path));2549if(pos <0)2550return-1;2551hashcpy(sha1, active_cache[pos]->sha1);2552return0;2553}25542555/* Build an index that contains the just the files needed for a 3way merge */2556static voidbuild_fake_ancestor(struct patch *list,const char*filename)2557{2558struct patch *patch;2559struct index_state result = {0};2560int fd;25612562/* Once we start supporting the reverse patch, it may be2563 * worth showing the new sha1 prefix, but until then...2564 */2565for(patch = list; patch; patch = patch->next) {2566const unsigned char*sha1_ptr;2567unsigned char sha1[20];2568struct cache_entry *ce;2569const char*name;25702571 name = patch->old_name ? patch->old_name : patch->new_name;2572if(0< patch->is_new)2573continue;2574else if(get_sha1(patch->old_sha1_prefix, sha1))2575/* git diff has no index line for mode/type changes */2576if(!patch->lines_added && !patch->lines_deleted) {2577if(get_current_sha1(patch->new_name, sha1) ||2578get_current_sha1(patch->old_name, sha1))2579die("mode change for%s, which is not "2580"in current HEAD", name);2581 sha1_ptr = sha1;2582}else2583die("sha1 information is lacking or useless "2584"(%s).", name);2585else2586 sha1_ptr = sha1;25872588 ce =make_cache_entry(patch->old_mode, sha1_ptr, name,0,0);2589if(!ce)2590die("make_cache_entry failed for path '%s'", name);2591if(add_index_entry(&result, ce, ADD_CACHE_OK_TO_ADD))2592die("Could not add%sto temporary index", name);2593}25942595 fd =open(filename, O_WRONLY | O_CREAT,0666);2596if(fd <0||write_index(&result, fd) ||close(fd))2597die("Could not write temporary index to%s", filename);25982599discard_index(&result);2600}26012602static voidstat_patch_list(struct patch *patch)2603{2604int files, adds, dels;26052606for(files = adds = dels =0; patch ; patch = patch->next) {2607 files++;2608 adds += patch->lines_added;2609 dels += patch->lines_deleted;2610show_stats(patch);2611}26122613printf("%dfiles changed,%dinsertions(+),%ddeletions(-)\n", files, adds, dels);2614}26152616static voidnumstat_patch_list(struct patch *patch)2617{2618for( ; patch; patch = patch->next) {2619const char*name;2620 name = patch->new_name ? patch->new_name : patch->old_name;2621if(patch->is_binary)2622printf("-\t-\t");2623else2624printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);2625write_name_quoted(name, stdout, line_termination);2626}2627}26282629static voidshow_file_mode_name(const char*newdelete,unsigned int mode,const char*name)2630{2631if(mode)2632printf("%smode%06o%s\n", newdelete, mode, name);2633else2634printf("%s %s\n", newdelete, name);2635}26362637static voidshow_mode_change(struct patch *p,int show_name)2638{2639if(p->old_mode && p->new_mode && p->old_mode != p->new_mode) {2640if(show_name)2641printf(" mode change%06o =>%06o%s\n",2642 p->old_mode, p->new_mode, p->new_name);2643else2644printf(" mode change%06o =>%06o\n",2645 p->old_mode, p->new_mode);2646}2647}26482649static voidshow_rename_copy(struct patch *p)2650{2651const char*renamecopy = p->is_rename ?"rename":"copy";2652const char*old, *new;26532654/* Find common prefix */2655 old = p->old_name;2656new= p->new_name;2657while(1) {2658const char*slash_old, *slash_new;2659 slash_old =strchr(old,'/');2660 slash_new =strchr(new,'/');2661if(!slash_old ||2662!slash_new ||2663 slash_old - old != slash_new -new||2664memcmp(old,new, slash_new -new))2665break;2666 old = slash_old +1;2667new= slash_new +1;2668}2669/* p->old_name thru old is the common prefix, and old and new2670 * through the end of names are renames2671 */2672if(old != p->old_name)2673printf("%s%.*s{%s=>%s} (%d%%)\n", renamecopy,2674(int)(old - p->old_name), p->old_name,2675 old,new, p->score);2676else2677printf("%s %s=>%s(%d%%)\n", renamecopy,2678 p->old_name, p->new_name, p->score);2679show_mode_change(p,0);2680}26812682static voidsummary_patch_list(struct patch *patch)2683{2684struct patch *p;26852686for(p = patch; p; p = p->next) {2687if(p->is_new)2688show_file_mode_name("create", p->new_mode, p->new_name);2689else if(p->is_delete)2690show_file_mode_name("delete", p->old_mode, p->old_name);2691else{2692if(p->is_rename || p->is_copy)2693show_rename_copy(p);2694else{2695if(p->score) {2696printf(" rewrite%s(%d%%)\n",2697 p->new_name, p->score);2698show_mode_change(p,0);2699}2700else2701show_mode_change(p,1);2702}2703}2704}2705}27062707static voidpatch_stats(struct patch *patch)2708{2709int lines = patch->lines_added + patch->lines_deleted;27102711if(lines > max_change)2712 max_change = lines;2713if(patch->old_name) {2714int len =quote_c_style(patch->old_name, NULL, NULL,0);2715if(!len)2716 len =strlen(patch->old_name);2717if(len > max_len)2718 max_len = len;2719}2720if(patch->new_name) {2721int len =quote_c_style(patch->new_name, NULL, NULL,0);2722if(!len)2723 len =strlen(patch->new_name);2724if(len > max_len)2725 max_len = len;2726}2727}27282729static voidremove_file(struct patch *patch,int rmdir_empty)2730{2731if(update_index) {2732if(remove_file_from_cache(patch->old_name) <0)2733die("unable to remove%sfrom index", patch->old_name);2734}2735if(!cached) {2736if(S_ISGITLINK(patch->old_mode)) {2737if(rmdir(patch->old_name))2738warning("unable to remove submodule%s",2739 patch->old_name);2740}else if(!unlink(patch->old_name) && rmdir_empty) {2741remove_path(patch->old_name);2742}2743}2744}27452746static voidadd_index_file(const char*path,unsigned mode,void*buf,unsigned long size)2747{2748struct stat st;2749struct cache_entry *ce;2750int namelen =strlen(path);2751unsigned ce_size =cache_entry_size(namelen);27522753if(!update_index)2754return;27552756 ce =xcalloc(1, ce_size);2757memcpy(ce->name, path, namelen);2758 ce->ce_mode =create_ce_mode(mode);2759 ce->ce_flags = namelen;2760if(S_ISGITLINK(mode)) {2761const char*s = buf;27622763if(get_sha1_hex(s +strlen("Subproject commit "), ce->sha1))2764die("corrupt patch for subproject%s", path);2765}else{2766if(!cached) {2767if(lstat(path, &st) <0)2768die("unable to stat newly created file%s",2769 path);2770fill_stat_cache_info(ce, &st);2771}2772if(write_sha1_file(buf, size, blob_type, ce->sha1) <0)2773die("unable to create backing store for newly created file%s", path);2774}2775if(add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) <0)2776die("unable to add cache entry for%s", path);2777}27782779static inttry_create_file(const char*path,unsigned int mode,const char*buf,unsigned long size)2780{2781int fd;2782struct strbuf nbuf = STRBUF_INIT;27832784if(S_ISGITLINK(mode)) {2785struct stat st;2786if(!lstat(path, &st) &&S_ISDIR(st.st_mode))2787return0;2788returnmkdir(path,0777);2789}27902791if(has_symlinks &&S_ISLNK(mode))2792/* Although buf:size is counted string, it also is NUL2793 * terminated.2794 */2795returnsymlink(buf, path);27962797 fd =open(path, O_CREAT | O_EXCL | O_WRONLY, (mode &0100) ?0777:0666);2798if(fd <0)2799return-1;28002801if(convert_to_working_tree(path, buf, size, &nbuf)) {2802 size = nbuf.len;2803 buf = nbuf.buf;2804}2805write_or_die(fd, buf, size);2806strbuf_release(&nbuf);28072808if(close(fd) <0)2809die("closing file%s:%s", path,strerror(errno));2810return0;2811}28122813/*2814 * We optimistically assume that the directories exist,2815 * which is true 99% of the time anyway. If they don't,2816 * we create them and try again.2817 */2818static voidcreate_one_file(char*path,unsigned mode,const char*buf,unsigned long size)2819{2820if(cached)2821return;2822if(!try_create_file(path, mode, buf, size))2823return;28242825if(errno == ENOENT) {2826if(safe_create_leading_directories(path))2827return;2828if(!try_create_file(path, mode, buf, size))2829return;2830}28312832if(errno == EEXIST || errno == EACCES) {2833/* We may be trying to create a file where a directory2834 * used to be.2835 */2836struct stat st;2837if(!lstat(path, &st) && (!S_ISDIR(st.st_mode) || !rmdir(path)))2838 errno = EEXIST;2839}28402841if(errno == EEXIST) {2842unsigned int nr =getpid();28432844for(;;) {2845char newpath[PATH_MAX];2846mksnpath(newpath,sizeof(newpath),"%s~%u", path, nr);2847if(!try_create_file(newpath, mode, buf, size)) {2848if(!rename(newpath, path))2849return;2850unlink(newpath);2851break;2852}2853if(errno != EEXIST)2854break;2855++nr;2856}2857}2858die("unable to write file%smode%o", path, mode);2859}28602861static voidcreate_file(struct patch *patch)2862{2863char*path = patch->new_name;2864unsigned mode = patch->new_mode;2865unsigned long size = patch->resultsize;2866char*buf = patch->result;28672868if(!mode)2869 mode = S_IFREG |0644;2870create_one_file(path, mode, buf, size);2871add_index_file(path, mode, buf, size);2872}28732874/* phase zero is to remove, phase one is to create */2875static voidwrite_out_one_result(struct patch *patch,int phase)2876{2877if(patch->is_delete >0) {2878if(phase ==0)2879remove_file(patch,1);2880return;2881}2882if(patch->is_new >0|| patch->is_copy) {2883if(phase ==1)2884create_file(patch);2885return;2886}2887/*2888 * Rename or modification boils down to the same2889 * thing: remove the old, write the new2890 */2891if(phase ==0)2892remove_file(patch, patch->is_rename);2893if(phase ==1)2894create_file(patch);2895}28962897static intwrite_out_one_reject(struct patch *patch)2898{2899FILE*rej;2900char namebuf[PATH_MAX];2901struct fragment *frag;2902int cnt =0;29032904for(cnt =0, frag = patch->fragments; frag; frag = frag->next) {2905if(!frag->rejected)2906continue;2907 cnt++;2908}29092910if(!cnt) {2911if(apply_verbosely)2912say_patch_name(stderr,2913"Applied patch ", patch," cleanly.\n");2914return0;2915}29162917/* This should not happen, because a removal patch that leaves2918 * contents are marked "rejected" at the patch level.2919 */2920if(!patch->new_name)2921die("internal error");29222923/* Say this even without --verbose */2924say_patch_name(stderr,"Applying patch ", patch," with");2925fprintf(stderr,"%drejects...\n", cnt);29262927 cnt =strlen(patch->new_name);2928if(ARRAY_SIZE(namebuf) <= cnt +5) {2929 cnt =ARRAY_SIZE(namebuf) -5;2930fprintf(stderr,2931"warning: truncating .rej filename to %.*s.rej",2932 cnt -1, patch->new_name);2933}2934memcpy(namebuf, patch->new_name, cnt);2935memcpy(namebuf + cnt,".rej",5);29362937 rej =fopen(namebuf,"w");2938if(!rej)2939returnerror("cannot open%s:%s", namebuf,strerror(errno));29402941/* Normal git tools never deal with .rej, so do not pretend2942 * this is a git patch by saying --git nor give extended2943 * headers. While at it, maybe please "kompare" that wants2944 * the trailing TAB and some garbage at the end of line ;-).2945 */2946fprintf(rej,"diff a/%sb/%s\t(rejected hunks)\n",2947 patch->new_name, patch->new_name);2948for(cnt =1, frag = patch->fragments;2949 frag;2950 cnt++, frag = frag->next) {2951if(!frag->rejected) {2952fprintf(stderr,"Hunk #%dapplied cleanly.\n", cnt);2953continue;2954}2955fprintf(stderr,"Rejected hunk #%d.\n", cnt);2956fprintf(rej,"%.*s", frag->size, frag->patch);2957if(frag->patch[frag->size-1] !='\n')2958fputc('\n', rej);2959}2960fclose(rej);2961return-1;2962}29632964static intwrite_out_results(struct patch *list,int skipped_patch)2965{2966int phase;2967int errs =0;2968struct patch *l;29692970if(!list && !skipped_patch)2971returnerror("No changes");29722973for(phase =0; phase <2; phase++) {2974 l = list;2975while(l) {2976if(l->rejected)2977 errs =1;2978else{2979write_out_one_result(l, phase);2980if(phase ==1&&write_out_one_reject(l))2981 errs =1;2982}2983 l = l->next;2984}2985}2986return errs;2987}29882989static struct lock_file lock_file;29902991static struct string_list limit_by_name;2992static int has_include;2993static voidadd_name_limit(const char*name,int exclude)2994{2995struct string_list_item *it;29962997 it =string_list_append(name, &limit_by_name);2998 it->util = exclude ? NULL : (void*)1;2999}30003001static intuse_patch(struct patch *p)3002{3003const char*pathname = p->new_name ? p->new_name : p->old_name;3004int i;30053006/* Paths outside are not touched regardless of "--include" */3007if(0< prefix_length) {3008int pathlen =strlen(pathname);3009if(pathlen <= prefix_length ||3010memcmp(prefix, pathname, prefix_length))3011return0;3012}30133014/* See if it matches any of exclude/include rule */3015for(i =0; i < limit_by_name.nr; i++) {3016struct string_list_item *it = &limit_by_name.items[i];3017if(!fnmatch(it->string, pathname,0))3018return(it->util != NULL);3019}30203021/*3022 * If we had any include, a path that does not match any rule is3023 * not used. Otherwise, we saw bunch of exclude rules (or none)3024 * and such a path is used.3025 */3026return!has_include;3027}302830293030static voidprefix_one(char**name)3031{3032char*old_name = *name;3033if(!old_name)3034return;3035*name =xstrdup(prefix_filename(prefix, prefix_length, *name));3036free(old_name);3037}30383039static voidprefix_patches(struct patch *p)3040{3041if(!prefix || p->is_toplevel_relative)3042return;3043for( ; p; p = p->next) {3044if(p->new_name == p->old_name) {3045char*prefixed = p->new_name;3046prefix_one(&prefixed);3047 p->new_name = p->old_name = prefixed;3048}3049else{3050prefix_one(&p->new_name);3051prefix_one(&p->old_name);3052}3053}3054}30553056#define INACCURATE_EOF (1<<0)3057#define RECOUNT (1<<1)30583059static intapply_patch(int fd,const char*filename,int options)3060{3061size_t offset;3062struct strbuf buf = STRBUF_INIT;3063struct patch *list = NULL, **listp = &list;3064int skipped_patch =0;30653066/* FIXME - memory leak when using multiple patch files as inputs */3067memset(&fn_table,0,sizeof(struct string_list));3068 patch_input_file = filename;3069read_patch_file(&buf, fd);3070 offset =0;3071while(offset < buf.len) {3072struct patch *patch;3073int nr;30743075 patch =xcalloc(1,sizeof(*patch));3076 patch->inaccurate_eof = !!(options & INACCURATE_EOF);3077 patch->recount = !!(options & RECOUNT);3078 nr =parse_chunk(buf.buf + offset, buf.len - offset, patch);3079if(nr <0)3080break;3081if(apply_in_reverse)3082reverse_patches(patch);3083if(prefix)3084prefix_patches(patch);3085if(use_patch(patch)) {3086patch_stats(patch);3087*listp = patch;3088 listp = &patch->next;3089}3090else{3091/* perhaps free it a bit better? */3092free(patch);3093 skipped_patch++;3094}3095 offset += nr;3096}30973098if(whitespace_error && (ws_error_action == die_on_ws_error))3099 apply =0;31003101 update_index = check_index && apply;3102if(update_index && newfd <0)3103 newfd =hold_locked_index(&lock_file,1);31043105if(check_index) {3106if(read_cache() <0)3107die("unable to read index file");3108}31093110if((check || apply) &&3111check_patch_list(list) <0&&3112!apply_with_reject)3113exit(1);31143115if(apply &&write_out_results(list, skipped_patch))3116exit(1);31173118if(fake_ancestor)3119build_fake_ancestor(list, fake_ancestor);31203121if(diffstat)3122stat_patch_list(list);31233124if(numstat)3125numstat_patch_list(list);31263127if(summary)3128summary_patch_list(list);31293130strbuf_release(&buf);3131return0;3132}31333134static intgit_apply_config(const char*var,const char*value,void*cb)3135{3136if(!strcmp(var,"apply.whitespace"))3137returngit_config_string(&apply_default_whitespace, var, value);3138returngit_default_config(var, value, cb);3139}314031413142intcmd_apply(int argc,const char**argv,const char*unused_prefix)3143{3144int i;3145int read_stdin =1;3146int options =0;3147int errs =0;3148int is_not_gitdir;31493150const char*whitespace_option = NULL;31513152 prefix =setup_git_directory_gently(&is_not_gitdir);3153 prefix_length = prefix ?strlen(prefix) :0;3154git_config(git_apply_config, NULL);3155if(apply_default_whitespace)3156parse_whitespace_option(apply_default_whitespace);31573158for(i =1; i < argc; i++) {3159const char*arg = argv[i];3160char*end;3161int fd;31623163if(!strcmp(arg,"-")) {3164 errs |=apply_patch(0,"<stdin>", options);3165 read_stdin =0;3166continue;3167}3168if(!prefixcmp(arg,"--exclude=")) {3169add_name_limit(arg +10,1);3170continue;3171}3172if(!prefixcmp(arg,"--include=")) {3173add_name_limit(arg +10,0);3174 has_include =1;3175continue;3176}3177if(!prefixcmp(arg,"-p")) {3178 p_value =atoi(arg +2);3179 p_value_known =1;3180continue;3181}3182if(!strcmp(arg,"--no-add")) {3183 no_add =1;3184continue;3185}3186if(!strcmp(arg,"--stat")) {3187 apply =0;3188 diffstat =1;3189continue;3190}3191if(!strcmp(arg,"--allow-binary-replacement") ||3192!strcmp(arg,"--binary")) {3193continue;/* now no-op */3194}3195if(!strcmp(arg,"--numstat")) {3196 apply =0;3197 numstat =1;3198continue;3199}3200if(!strcmp(arg,"--summary")) {3201 apply =0;3202 summary =1;3203continue;3204}3205if(!strcmp(arg,"--check")) {3206 apply =0;3207 check =1;3208continue;3209}3210if(!strcmp(arg,"--index")) {3211if(is_not_gitdir)3212die("--index outside a repository");3213 check_index =1;3214continue;3215}3216if(!strcmp(arg,"--cached")) {3217if(is_not_gitdir)3218die("--cached outside a repository");3219 check_index =1;3220 cached =1;3221continue;3222}3223if(!strcmp(arg,"--apply")) {3224 apply =1;3225continue;3226}3227if(!strcmp(arg,"--build-fake-ancestor")) {3228 apply =0;3229if(++i >= argc)3230die("need a filename");3231 fake_ancestor = argv[i];3232continue;3233}3234if(!strcmp(arg,"-z")) {3235 line_termination =0;3236continue;3237}3238if(!prefixcmp(arg,"-C")) {3239 p_context =strtoul(arg +2, &end,0);3240if(*end !='\0')3241die("unrecognized context count '%s'", arg +2);3242continue;3243}3244if(!prefixcmp(arg,"--whitespace=")) {3245 whitespace_option = arg +13;3246parse_whitespace_option(arg +13);3247continue;3248}3249if(!strcmp(arg,"-R") || !strcmp(arg,"--reverse")) {3250 apply_in_reverse =1;3251continue;3252}3253if(!strcmp(arg,"--unidiff-zero")) {3254 unidiff_zero =1;3255continue;3256}3257if(!strcmp(arg,"--reject")) {3258 apply = apply_with_reject = apply_verbosely =1;3259continue;3260}3261if(!strcmp(arg,"-v") || !strcmp(arg,"--verbose")) {3262 apply_verbosely =1;3263continue;3264}3265if(!strcmp(arg,"--inaccurate-eof")) {3266 options |= INACCURATE_EOF;3267continue;3268}3269if(!strcmp(arg,"--recount")) {3270 options |= RECOUNT;3271continue;3272}3273if(!prefixcmp(arg,"--directory=")) {3274 arg +=strlen("--directory=");3275 root_len =strlen(arg);3276if(root_len && arg[root_len -1] !='/') {3277char*new_root;3278 root = new_root =xmalloc(root_len +2);3279strcpy(new_root, arg);3280strcpy(new_root + root_len++,"/");3281}else3282 root = arg;3283continue;3284}3285if(0< prefix_length)3286 arg =prefix_filename(prefix, prefix_length, arg);32873288 fd =open(arg, O_RDONLY);3289if(fd <0)3290die("can't open patch '%s':%s", arg,strerror(errno));3291 read_stdin =0;3292set_default_whitespace_mode(whitespace_option);3293 errs |=apply_patch(fd, arg, options);3294close(fd);3295}3296set_default_whitespace_mode(whitespace_option);3297if(read_stdin)3298 errs |=apply_patch(0,"<stdin>", options);3299if(whitespace_error) {3300if(squelch_whitespace_errors &&3301 squelch_whitespace_errors < whitespace_error) {3302int squelched =3303 whitespace_error - squelch_whitespace_errors;3304fprintf(stderr,"warning: squelched%d"3305"whitespace error%s\n",3306 squelched,3307 squelched ==1?"":"s");3308}3309if(ws_error_action == die_on_ws_error)3310die("%dline%sadd%swhitespace errors.",3311 whitespace_error,3312 whitespace_error ==1?"":"s",3313 whitespace_error ==1?"s":"");3314if(applied_after_fixing_ws && apply)3315fprintf(stderr,"warning:%dline%sapplied after"3316" fixing whitespace errors.\n",3317 applied_after_fixing_ws,3318 applied_after_fixing_ws ==1?"":"s");3319else if(whitespace_error)3320fprintf(stderr,"warning:%dline%sadd%swhitespace errors.\n",3321 whitespace_error,3322 whitespace_error ==1?"":"s",3323 whitespace_error ==1?"s":"");3324}33253326if(update_index) {3327if(write_cache(newfd, active_cache, active_nr) ||3328commit_locked_index(&lock_file))3329die("Unable to write new index file");3330}33313332return!!errs;3333}