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 24/* 25 * --check turns on checking that the working tree matches the 26 * files that are being modified, but doesn't apply the patch 27 * --stat does just a diffstat, and doesn't actually apply 28 * --numstat does numeric diffstat, and doesn't actually apply 29 * --index-info shows the old and new index info for paths if available. 30 * --index updates the cache as well. 31 * --cached updates only the cache without ever touching the working tree. 32 */ 33static const char*prefix; 34static int prefix_length = -1; 35static int newfd = -1; 36 37static int unidiff_zero; 38static int p_value =1; 39static int p_value_known; 40static int check_index; 41static int update_index; 42static int cached; 43static int diffstat; 44static int numstat; 45static int summary; 46static int check; 47static int apply =1; 48static int apply_in_reverse; 49static int apply_with_reject; 50static int apply_verbosely; 51static int allow_overlap; 52static int no_add; 53static int threeway; 54static int unsafe_paths; 55static const char*fake_ancestor; 56static int line_termination ='\n'; 57static unsigned int p_context = UINT_MAX; 58static const char*const apply_usage[] = { 59N_("git apply [<options>] [<patch>...]"), 60 NULL 61}; 62 63static enum ws_error_action { 64 nowarn_ws_error, 65 warn_on_ws_error, 66 die_on_ws_error, 67 correct_ws_error 68} ws_error_action = warn_on_ws_error; 69static int whitespace_error; 70static int squelch_whitespace_errors =5; 71static int applied_after_fixing_ws; 72 73static enum ws_ignore { 74 ignore_ws_none, 75 ignore_ws_change 76} ws_ignore_action = ignore_ws_none; 77 78 79static const char*patch_input_file; 80static const char*root; 81static int root_len; 82static int read_stdin =1; 83static int options; 84 85static voidparse_whitespace_option(const char*option) 86{ 87if(!option) { 88 ws_error_action = warn_on_ws_error; 89return; 90} 91if(!strcmp(option,"warn")) { 92 ws_error_action = warn_on_ws_error; 93return; 94} 95if(!strcmp(option,"nowarn")) { 96 ws_error_action = nowarn_ws_error; 97return; 98} 99if(!strcmp(option,"error")) { 100 ws_error_action = die_on_ws_error; 101return; 102} 103if(!strcmp(option,"error-all")) { 104 ws_error_action = die_on_ws_error; 105 squelch_whitespace_errors =0; 106return; 107} 108if(!strcmp(option,"strip") || !strcmp(option,"fix")) { 109 ws_error_action = correct_ws_error; 110return; 111} 112die(_("unrecognized whitespace option '%s'"), option); 113} 114 115static voidparse_ignorewhitespace_option(const char*option) 116{ 117if(!option || !strcmp(option,"no") || 118!strcmp(option,"false") || !strcmp(option,"never") || 119!strcmp(option,"none")) { 120 ws_ignore_action = ignore_ws_none; 121return; 122} 123if(!strcmp(option,"change")) { 124 ws_ignore_action = ignore_ws_change; 125return; 126} 127die(_("unrecognized whitespace ignore option '%s'"), option); 128} 129 130static voidset_default_whitespace_mode(const char*whitespace_option) 131{ 132if(!whitespace_option && !apply_default_whitespace) 133 ws_error_action = (apply ? warn_on_ws_error : nowarn_ws_error); 134} 135 136/* 137 * For "diff-stat" like behaviour, we keep track of the biggest change 138 * we've seen, and the longest filename. That allows us to do simple 139 * scaling. 140 */ 141static int max_change, max_len; 142 143/* 144 * Various "current state", notably line numbers and what 145 * file (and how) we're patching right now.. The "is_xxxx" 146 * things are flags, where -1 means "don't know yet". 147 */ 148static int linenr =1; 149 150/* 151 * This represents one "hunk" from a patch, starting with 152 * "@@ -oldpos,oldlines +newpos,newlines @@" marker. The 153 * patch text is pointed at by patch, and its byte length 154 * is stored in size. leading and trailing are the number 155 * of context lines. 156 */ 157struct fragment { 158unsigned long leading, trailing; 159unsigned long oldpos, oldlines; 160unsigned long newpos, newlines; 161/* 162 * 'patch' is usually borrowed from buf in apply_patch(), 163 * but some codepaths store an allocated buffer. 164 */ 165const char*patch; 166unsigned free_patch:1, 167 rejected:1; 168int size; 169int linenr; 170struct fragment *next; 171}; 172 173/* 174 * When dealing with a binary patch, we reuse "leading" field 175 * to store the type of the binary hunk, either deflated "delta" 176 * or deflated "literal". 177 */ 178#define binary_patch_method leading 179#define BINARY_DELTA_DEFLATED 1 180#define BINARY_LITERAL_DEFLATED 2 181 182/* 183 * This represents a "patch" to a file, both metainfo changes 184 * such as creation/deletion, filemode and content changes represented 185 * as a series of fragments. 186 */ 187struct patch { 188char*new_name, *old_name, *def_name; 189unsigned int old_mode, new_mode; 190int is_new, is_delete;/* -1 = unknown, 0 = false, 1 = true */ 191int rejected; 192unsigned ws_rule; 193int lines_added, lines_deleted; 194int score; 195unsigned int is_toplevel_relative:1; 196unsigned int inaccurate_eof:1; 197unsigned int is_binary:1; 198unsigned int is_copy:1; 199unsigned int is_rename:1; 200unsigned int recount:1; 201unsigned int conflicted_threeway:1; 202unsigned int direct_to_threeway:1; 203struct fragment *fragments; 204char*result; 205size_t resultsize; 206char old_sha1_prefix[41]; 207char new_sha1_prefix[41]; 208struct patch *next; 209 210/* three-way fallback result */ 211struct object_id threeway_stage[3]; 212}; 213 214static voidfree_fragment_list(struct fragment *list) 215{ 216while(list) { 217struct fragment *next = list->next; 218if(list->free_patch) 219free((char*)list->patch); 220free(list); 221 list = next; 222} 223} 224 225static voidfree_patch(struct patch *patch) 226{ 227free_fragment_list(patch->fragments); 228free(patch->def_name); 229free(patch->old_name); 230free(patch->new_name); 231free(patch->result); 232free(patch); 233} 234 235static voidfree_patch_list(struct patch *list) 236{ 237while(list) { 238struct patch *next = list->next; 239free_patch(list); 240 list = next; 241} 242} 243 244/* 245 * A line in a file, len-bytes long (includes the terminating LF, 246 * except for an incomplete line at the end if the file ends with 247 * one), and its contents hashes to 'hash'. 248 */ 249struct line { 250size_t len; 251unsigned hash :24; 252unsigned flag :8; 253#define LINE_COMMON 1 254#define LINE_PATCHED 2 255}; 256 257/* 258 * This represents a "file", which is an array of "lines". 259 */ 260struct image { 261char*buf; 262size_t len; 263size_t nr; 264size_t alloc; 265struct line *line_allocated; 266struct line *line; 267}; 268 269/* 270 * Records filenames that have been touched, in order to handle 271 * the case where more than one patches touch the same file. 272 */ 273 274static struct string_list fn_table; 275 276static uint32_thash_line(const char*cp,size_t len) 277{ 278size_t i; 279uint32_t h; 280for(i =0, h =0; i < len; i++) { 281if(!isspace(cp[i])) { 282 h = h *3+ (cp[i] &0xff); 283} 284} 285return h; 286} 287 288/* 289 * Compare lines s1 of length n1 and s2 of length n2, ignoring 290 * whitespace difference. Returns 1 if they match, 0 otherwise 291 */ 292static intfuzzy_matchlines(const char*s1,size_t n1, 293const char*s2,size_t n2) 294{ 295const char*last1 = s1 + n1 -1; 296const char*last2 = s2 + n2 -1; 297int result =0; 298 299/* ignore line endings */ 300while((*last1 =='\r') || (*last1 =='\n')) 301 last1--; 302while((*last2 =='\r') || (*last2 =='\n')) 303 last2--; 304 305/* skip leading whitespaces, if both begin with whitespace */ 306if(s1 <= last1 && s2 <= last2 &&isspace(*s1) &&isspace(*s2)) { 307while(isspace(*s1) && (s1 <= last1)) 308 s1++; 309while(isspace(*s2) && (s2 <= last2)) 310 s2++; 311} 312/* early return if both lines are empty */ 313if((s1 > last1) && (s2 > last2)) 314return1; 315while(!result) { 316 result = *s1++ - *s2++; 317/* 318 * Skip whitespace inside. We check for whitespace on 319 * both buffers because we don't want "a b" to match 320 * "ab" 321 */ 322if(isspace(*s1) &&isspace(*s2)) { 323while(isspace(*s1) && s1 <= last1) 324 s1++; 325while(isspace(*s2) && s2 <= last2) 326 s2++; 327} 328/* 329 * If we reached the end on one side only, 330 * lines don't match 331 */ 332if( 333((s2 > last2) && (s1 <= last1)) || 334((s1 > last1) && (s2 <= last2))) 335return0; 336if((s1 > last1) && (s2 > last2)) 337break; 338} 339 340return!result; 341} 342 343static voidadd_line_info(struct image *img,const char*bol,size_t len,unsigned flag) 344{ 345ALLOC_GROW(img->line_allocated, img->nr +1, img->alloc); 346 img->line_allocated[img->nr].len = len; 347 img->line_allocated[img->nr].hash =hash_line(bol, len); 348 img->line_allocated[img->nr].flag = flag; 349 img->nr++; 350} 351 352/* 353 * "buf" has the file contents to be patched (read from various sources). 354 * attach it to "image" and add line-based index to it. 355 * "image" now owns the "buf". 356 */ 357static voidprepare_image(struct image *image,char*buf,size_t len, 358int prepare_linetable) 359{ 360const char*cp, *ep; 361 362memset(image,0,sizeof(*image)); 363 image->buf = buf; 364 image->len = len; 365 366if(!prepare_linetable) 367return; 368 369 ep = image->buf + image->len; 370 cp = image->buf; 371while(cp < ep) { 372const char*next; 373for(next = cp; next < ep && *next !='\n'; next++) 374; 375if(next < ep) 376 next++; 377add_line_info(image, cp, next - cp,0); 378 cp = next; 379} 380 image->line = image->line_allocated; 381} 382 383static voidclear_image(struct image *image) 384{ 385free(image->buf); 386free(image->line_allocated); 387memset(image,0,sizeof(*image)); 388} 389 390/* fmt must contain _one_ %s and no other substitution */ 391static voidsay_patch_name(FILE*output,const char*fmt,struct patch *patch) 392{ 393struct strbuf sb = STRBUF_INIT; 394 395if(patch->old_name && patch->new_name && 396strcmp(patch->old_name, patch->new_name)) { 397quote_c_style(patch->old_name, &sb, NULL,0); 398strbuf_addstr(&sb," => "); 399quote_c_style(patch->new_name, &sb, NULL,0); 400}else{ 401const char*n = patch->new_name; 402if(!n) 403 n = patch->old_name; 404quote_c_style(n, &sb, NULL,0); 405} 406fprintf(output, fmt, sb.buf); 407fputc('\n', output); 408strbuf_release(&sb); 409} 410 411#define SLOP (16) 412 413static voidread_patch_file(struct strbuf *sb,int fd) 414{ 415if(strbuf_read(sb, fd,0) <0) 416die_errno("git apply: failed to read"); 417 418/* 419 * Make sure that we have some slop in the buffer 420 * so that we can do speculative "memcmp" etc, and 421 * see to it that it is NUL-filled. 422 */ 423strbuf_grow(sb, SLOP); 424memset(sb->buf + sb->len,0, SLOP); 425} 426 427static unsigned longlinelen(const char*buffer,unsigned long size) 428{ 429unsigned long len =0; 430while(size--) { 431 len++; 432if(*buffer++ =='\n') 433break; 434} 435return len; 436} 437 438static intis_dev_null(const char*str) 439{ 440returnskip_prefix(str,"/dev/null", &str) &&isspace(*str); 441} 442 443#define TERM_SPACE 1 444#define TERM_TAB 2 445 446static intname_terminate(const char*name,int namelen,int c,int terminate) 447{ 448if(c ==' '&& !(terminate & TERM_SPACE)) 449return0; 450if(c =='\t'&& !(terminate & TERM_TAB)) 451return0; 452 453return1; 454} 455 456/* remove double slashes to make --index work with such filenames */ 457static char*squash_slash(char*name) 458{ 459int i =0, j =0; 460 461if(!name) 462return NULL; 463 464while(name[i]) { 465if((name[j++] = name[i++]) =='/') 466while(name[i] =='/') 467 i++; 468} 469 name[j] ='\0'; 470return name; 471} 472 473static char*find_name_gnu(const char*line,const char*def,int p_value) 474{ 475struct strbuf name = STRBUF_INIT; 476char*cp; 477 478/* 479 * Proposed "new-style" GNU patch/diff format; see 480 * http://marc.info/?l=git&m=112927316408690&w=2 481 */ 482if(unquote_c_style(&name, line, NULL)) { 483strbuf_release(&name); 484return NULL; 485} 486 487for(cp = name.buf; p_value; p_value--) { 488 cp =strchr(cp,'/'); 489if(!cp) { 490strbuf_release(&name); 491return NULL; 492} 493 cp++; 494} 495 496strbuf_remove(&name,0, cp - name.buf); 497if(root) 498strbuf_insert(&name,0, root, root_len); 499returnsquash_slash(strbuf_detach(&name, NULL)); 500} 501 502static size_tsane_tz_len(const char*line,size_t len) 503{ 504const char*tz, *p; 505 506if(len <strlen(" +0500") || line[len-strlen(" +0500")] !=' ') 507return0; 508 tz = line + len -strlen(" +0500"); 509 510if(tz[1] !='+'&& tz[1] !='-') 511return0; 512 513for(p = tz +2; p != line + len; p++) 514if(!isdigit(*p)) 515return0; 516 517return line + len - tz; 518} 519 520static size_ttz_with_colon_len(const char*line,size_t len) 521{ 522const char*tz, *p; 523 524if(len <strlen(" +08:00") || line[len -strlen(":00")] !=':') 525return0; 526 tz = line + len -strlen(" +08:00"); 527 528if(tz[0] !=' '|| (tz[1] !='+'&& tz[1] !='-')) 529return0; 530 p = tz +2; 531if(!isdigit(*p++) || !isdigit(*p++) || *p++ !=':'|| 532!isdigit(*p++) || !isdigit(*p++)) 533return0; 534 535return line + len - tz; 536} 537 538static size_tdate_len(const char*line,size_t len) 539{ 540const char*date, *p; 541 542if(len <strlen("72-02-05") || line[len-strlen("-05")] !='-') 543return0; 544 p = date = line + len -strlen("72-02-05"); 545 546if(!isdigit(*p++) || !isdigit(*p++) || *p++ !='-'|| 547!isdigit(*p++) || !isdigit(*p++) || *p++ !='-'|| 548!isdigit(*p++) || !isdigit(*p++))/* Not a date. */ 549return0; 550 551if(date - line >=strlen("19") && 552isdigit(date[-1]) &&isdigit(date[-2]))/* 4-digit year */ 553 date -=strlen("19"); 554 555return line + len - date; 556} 557 558static size_tshort_time_len(const char*line,size_t len) 559{ 560const char*time, *p; 561 562if(len <strlen(" 07:01:32") || line[len-strlen(":32")] !=':') 563return0; 564 p = time = line + len -strlen(" 07:01:32"); 565 566/* Permit 1-digit hours? */ 567if(*p++ !=' '|| 568!isdigit(*p++) || !isdigit(*p++) || *p++ !=':'|| 569!isdigit(*p++) || !isdigit(*p++) || *p++ !=':'|| 570!isdigit(*p++) || !isdigit(*p++))/* Not a time. */ 571return0; 572 573return line + len - time; 574} 575 576static size_tfractional_time_len(const char*line,size_t len) 577{ 578const char*p; 579size_t n; 580 581/* Expected format: 19:41:17.620000023 */ 582if(!len || !isdigit(line[len -1])) 583return0; 584 p = line + len -1; 585 586/* Fractional seconds. */ 587while(p > line &&isdigit(*p)) 588 p--; 589if(*p !='.') 590return0; 591 592/* Hours, minutes, and whole seconds. */ 593 n =short_time_len(line, p - line); 594if(!n) 595return0; 596 597return line + len - p + n; 598} 599 600static size_ttrailing_spaces_len(const char*line,size_t len) 601{ 602const char*p; 603 604/* Expected format: ' ' x (1 or more) */ 605if(!len || line[len -1] !=' ') 606return0; 607 608 p = line + len; 609while(p != line) { 610 p--; 611if(*p !=' ') 612return line + len - (p +1); 613} 614 615/* All spaces! */ 616return len; 617} 618 619static size_tdiff_timestamp_len(const char*line,size_t len) 620{ 621const char*end = line + len; 622size_t n; 623 624/* 625 * Posix: 2010-07-05 19:41:17 626 * GNU: 2010-07-05 19:41:17.620000023 -0500 627 */ 628 629if(!isdigit(end[-1])) 630return0; 631 632 n =sane_tz_len(line, end - line); 633if(!n) 634 n =tz_with_colon_len(line, end - line); 635 end -= n; 636 637 n =short_time_len(line, end - line); 638if(!n) 639 n =fractional_time_len(line, end - line); 640 end -= n; 641 642 n =date_len(line, end - line); 643if(!n)/* No date. Too bad. */ 644return0; 645 end -= n; 646 647if(end == line)/* No space before date. */ 648return0; 649if(end[-1] =='\t') {/* Success! */ 650 end--; 651return line + len - end; 652} 653if(end[-1] !=' ')/* No space before date. */ 654return0; 655 656/* Whitespace damage. */ 657 end -=trailing_spaces_len(line, end - line); 658return line + len - end; 659} 660 661static char*find_name_common(const char*line,const char*def, 662int p_value,const char*end,int terminate) 663{ 664int len; 665const char*start = NULL; 666 667if(p_value ==0) 668 start = line; 669while(line != end) { 670char c = *line; 671 672if(!end &&isspace(c)) { 673if(c =='\n') 674break; 675if(name_terminate(start, line-start, c, terminate)) 676break; 677} 678 line++; 679if(c =='/'&& !--p_value) 680 start = line; 681} 682if(!start) 683returnsquash_slash(xstrdup_or_null(def)); 684 len = line - start; 685if(!len) 686returnsquash_slash(xstrdup_or_null(def)); 687 688/* 689 * Generally we prefer the shorter name, especially 690 * if the other one is just a variation of that with 691 * something else tacked on to the end (ie "file.orig" 692 * or "file~"). 693 */ 694if(def) { 695int deflen =strlen(def); 696if(deflen < len && !strncmp(start, def, deflen)) 697returnsquash_slash(xstrdup(def)); 698} 699 700if(root) { 701char*ret =xmalloc(root_len + len +1); 702strcpy(ret, root); 703memcpy(ret + root_len, start, len); 704 ret[root_len + len] ='\0'; 705returnsquash_slash(ret); 706} 707 708returnsquash_slash(xmemdupz(start, len)); 709} 710 711static char*find_name(const char*line,char*def,int p_value,int terminate) 712{ 713if(*line =='"') { 714char*name =find_name_gnu(line, def, p_value); 715if(name) 716return name; 717} 718 719returnfind_name_common(line, def, p_value, NULL, terminate); 720} 721 722static char*find_name_traditional(const char*line,char*def,int p_value) 723{ 724size_t len; 725size_t date_len; 726 727if(*line =='"') { 728char*name =find_name_gnu(line, def, p_value); 729if(name) 730return name; 731} 732 733 len =strchrnul(line,'\n') - line; 734 date_len =diff_timestamp_len(line, len); 735if(!date_len) 736returnfind_name_common(line, def, p_value, NULL, TERM_TAB); 737 len -= date_len; 738 739returnfind_name_common(line, def, p_value, line + len,0); 740} 741 742static intcount_slashes(const char*cp) 743{ 744int cnt =0; 745char ch; 746 747while((ch = *cp++)) 748if(ch =='/') 749 cnt++; 750return cnt; 751} 752 753/* 754 * Given the string after "--- " or "+++ ", guess the appropriate 755 * p_value for the given patch. 756 */ 757static intguess_p_value(const char*nameline) 758{ 759char*name, *cp; 760int val = -1; 761 762if(is_dev_null(nameline)) 763return-1; 764 name =find_name_traditional(nameline, NULL,0); 765if(!name) 766return-1; 767 cp =strchr(name,'/'); 768if(!cp) 769 val =0; 770else if(prefix) { 771/* 772 * Does it begin with "a/$our-prefix" and such? Then this is 773 * very likely to apply to our directory. 774 */ 775if(!strncmp(name, prefix, prefix_length)) 776 val =count_slashes(prefix); 777else{ 778 cp++; 779if(!strncmp(cp, prefix, prefix_length)) 780 val =count_slashes(prefix) +1; 781} 782} 783free(name); 784return val; 785} 786 787/* 788 * Does the ---/+++ line has the POSIX timestamp after the last HT? 789 * GNU diff puts epoch there to signal a creation/deletion event. Is 790 * this such a timestamp? 791 */ 792static inthas_epoch_timestamp(const char*nameline) 793{ 794/* 795 * We are only interested in epoch timestamp; any non-zero 796 * fraction cannot be one, hence "(\.0+)?" in the regexp below. 797 * For the same reason, the date must be either 1969-12-31 or 798 * 1970-01-01, and the seconds part must be "00". 799 */ 800const char stamp_regexp[] = 801"^(1969-12-31|1970-01-01)" 802" " 803"[0-2][0-9]:[0-5][0-9]:00(\\.0+)?" 804" " 805"([-+][0-2][0-9]:?[0-5][0-9])\n"; 806const char*timestamp = NULL, *cp, *colon; 807static regex_t *stamp; 808 regmatch_t m[10]; 809int zoneoffset; 810int hourminute; 811int status; 812 813for(cp = nameline; *cp !='\n'; cp++) { 814if(*cp =='\t') 815 timestamp = cp +1; 816} 817if(!timestamp) 818return0; 819if(!stamp) { 820 stamp =xmalloc(sizeof(*stamp)); 821if(regcomp(stamp, stamp_regexp, REG_EXTENDED)) { 822warning(_("Cannot prepare timestamp regexp%s"), 823 stamp_regexp); 824return0; 825} 826} 827 828 status =regexec(stamp, timestamp,ARRAY_SIZE(m), m,0); 829if(status) { 830if(status != REG_NOMATCH) 831warning(_("regexec returned%dfor input:%s"), 832 status, timestamp); 833return0; 834} 835 836 zoneoffset =strtol(timestamp + m[3].rm_so +1, (char**) &colon,10); 837if(*colon ==':') 838 zoneoffset = zoneoffset *60+strtol(colon +1, NULL,10); 839else 840 zoneoffset = (zoneoffset /100) *60+ (zoneoffset %100); 841if(timestamp[m[3].rm_so] =='-') 842 zoneoffset = -zoneoffset; 843 844/* 845 * YYYY-MM-DD hh:mm:ss must be from either 1969-12-31 846 * (west of GMT) or 1970-01-01 (east of GMT) 847 */ 848if((zoneoffset <0&&memcmp(timestamp,"1969-12-31",10)) || 849(0<= zoneoffset &&memcmp(timestamp,"1970-01-01",10))) 850return0; 851 852 hourminute = (strtol(timestamp +11, NULL,10) *60+ 853strtol(timestamp +14, NULL,10) - 854 zoneoffset); 855 856return((zoneoffset <0&& hourminute ==1440) || 857(0<= zoneoffset && !hourminute)); 858} 859 860/* 861 * Get the name etc info from the ---/+++ lines of a traditional patch header 862 * 863 * FIXME! The end-of-filename heuristics are kind of screwy. For existing 864 * files, we can happily check the index for a match, but for creating a 865 * new file we should try to match whatever "patch" does. I have no idea. 866 */ 867static voidparse_traditional_patch(const char*first,const char*second,struct patch *patch) 868{ 869char*name; 870 871 first +=4;/* skip "--- " */ 872 second +=4;/* skip "+++ " */ 873if(!p_value_known) { 874int p, q; 875 p =guess_p_value(first); 876 q =guess_p_value(second); 877if(p <0) p = q; 878if(0<= p && p == q) { 879 p_value = p; 880 p_value_known =1; 881} 882} 883if(is_dev_null(first)) { 884 patch->is_new =1; 885 patch->is_delete =0; 886 name =find_name_traditional(second, NULL, p_value); 887 patch->new_name = name; 888}else if(is_dev_null(second)) { 889 patch->is_new =0; 890 patch->is_delete =1; 891 name =find_name_traditional(first, NULL, p_value); 892 patch->old_name = name; 893}else{ 894char*first_name; 895 first_name =find_name_traditional(first, NULL, p_value); 896 name =find_name_traditional(second, first_name, p_value); 897free(first_name); 898if(has_epoch_timestamp(first)) { 899 patch->is_new =1; 900 patch->is_delete =0; 901 patch->new_name = name; 902}else if(has_epoch_timestamp(second)) { 903 patch->is_new =0; 904 patch->is_delete =1; 905 patch->old_name = name; 906}else{ 907 patch->old_name = name; 908 patch->new_name =xstrdup_or_null(name); 909} 910} 911if(!name) 912die(_("unable to find filename in patch at line%d"), linenr); 913} 914 915static intgitdiff_hdrend(const char*line,struct patch *patch) 916{ 917return-1; 918} 919 920/* 921 * We're anal about diff header consistency, to make 922 * sure that we don't end up having strange ambiguous 923 * patches floating around. 924 * 925 * As a result, gitdiff_{old|new}name() will check 926 * their names against any previous information, just 927 * to make sure.. 928 */ 929#define DIFF_OLD_NAME 0 930#define DIFF_NEW_NAME 1 931 932static char*gitdiff_verify_name(const char*line,int isnull,char*orig_name,int side) 933{ 934if(!orig_name && !isnull) 935returnfind_name(line, NULL, p_value, TERM_TAB); 936 937if(orig_name) { 938int len; 939const char*name; 940char*another; 941 name = orig_name; 942 len =strlen(name); 943if(isnull) 944die(_("git apply: bad git-diff - expected /dev/null, got%son line%d"), name, linenr); 945 another =find_name(line, NULL, p_value, TERM_TAB); 946if(!another ||memcmp(another, name, len +1)) 947die((side == DIFF_NEW_NAME) ? 948_("git apply: bad git-diff - inconsistent new filename on line%d") : 949_("git apply: bad git-diff - inconsistent old filename on line%d"), linenr); 950free(another); 951return orig_name; 952} 953else{ 954/* expect "/dev/null" */ 955if(memcmp("/dev/null", line,9) || line[9] !='\n') 956die(_("git apply: bad git-diff - expected /dev/null on line%d"), linenr); 957return NULL; 958} 959} 960 961static intgitdiff_oldname(const char*line,struct patch *patch) 962{ 963char*orig = patch->old_name; 964 patch->old_name =gitdiff_verify_name(line, patch->is_new, patch->old_name, 965 DIFF_OLD_NAME); 966if(orig != patch->old_name) 967free(orig); 968return0; 969} 970 971static intgitdiff_newname(const char*line,struct patch *patch) 972{ 973char*orig = patch->new_name; 974 patch->new_name =gitdiff_verify_name(line, patch->is_delete, patch->new_name, 975 DIFF_NEW_NAME); 976if(orig != patch->new_name) 977free(orig); 978return0; 979} 980 981static intgitdiff_oldmode(const char*line,struct patch *patch) 982{ 983 patch->old_mode =strtoul(line, NULL,8); 984return0; 985} 986 987static intgitdiff_newmode(const char*line,struct patch *patch) 988{ 989 patch->new_mode =strtoul(line, NULL,8); 990return0; 991} 992 993static intgitdiff_delete(const char*line,struct patch *patch) 994{ 995 patch->is_delete =1; 996free(patch->old_name); 997 patch->old_name =xstrdup_or_null(patch->def_name); 998returngitdiff_oldmode(line, patch); 999}10001001static intgitdiff_newfile(const char*line,struct patch *patch)1002{1003 patch->is_new =1;1004free(patch->new_name);1005 patch->new_name =xstrdup_or_null(patch->def_name);1006returngitdiff_newmode(line, patch);1007}10081009static intgitdiff_copysrc(const char*line,struct patch *patch)1010{1011 patch->is_copy =1;1012free(patch->old_name);1013 patch->old_name =find_name(line, NULL, p_value ? p_value -1:0,0);1014return0;1015}10161017static intgitdiff_copydst(const char*line,struct patch *patch)1018{1019 patch->is_copy =1;1020free(patch->new_name);1021 patch->new_name =find_name(line, NULL, p_value ? p_value -1:0,0);1022return0;1023}10241025static intgitdiff_renamesrc(const char*line,struct patch *patch)1026{1027 patch->is_rename =1;1028free(patch->old_name);1029 patch->old_name =find_name(line, NULL, p_value ? p_value -1:0,0);1030return0;1031}10321033static intgitdiff_renamedst(const char*line,struct patch *patch)1034{1035 patch->is_rename =1;1036free(patch->new_name);1037 patch->new_name =find_name(line, NULL, p_value ? p_value -1:0,0);1038return0;1039}10401041static intgitdiff_similarity(const char*line,struct patch *patch)1042{1043unsigned long val =strtoul(line, NULL,10);1044if(val <=100)1045 patch->score = val;1046return0;1047}10481049static intgitdiff_dissimilarity(const char*line,struct patch *patch)1050{1051unsigned long val =strtoul(line, NULL,10);1052if(val <=100)1053 patch->score = val;1054return0;1055}10561057static intgitdiff_index(const char*line,struct patch *patch)1058{1059/*1060 * index line is N hexadecimal, "..", N hexadecimal,1061 * and optional space with octal mode.1062 */1063const char*ptr, *eol;1064int len;10651066 ptr =strchr(line,'.');1067if(!ptr || ptr[1] !='.'||40< ptr - line)1068return0;1069 len = ptr - line;1070memcpy(patch->old_sha1_prefix, line, len);1071 patch->old_sha1_prefix[len] =0;10721073 line = ptr +2;1074 ptr =strchr(line,' ');1075 eol =strchrnul(line,'\n');10761077if(!ptr || eol < ptr)1078 ptr = eol;1079 len = ptr - line;10801081if(40< len)1082return0;1083memcpy(patch->new_sha1_prefix, line, len);1084 patch->new_sha1_prefix[len] =0;1085if(*ptr ==' ')1086 patch->old_mode =strtoul(ptr+1, NULL,8);1087return0;1088}10891090/*1091 * This is normal for a diff that doesn't change anything: we'll fall through1092 * into the next diff. Tell the parser to break out.1093 */1094static intgitdiff_unrecognized(const char*line,struct patch *patch)1095{1096return-1;1097}10981099/*1100 * Skip p_value leading components from "line"; as we do not accept1101 * absolute paths, return NULL in that case.1102 */1103static const char*skip_tree_prefix(const char*line,int llen)1104{1105int nslash;1106int i;11071108if(!p_value)1109return(llen && line[0] =='/') ? NULL : line;11101111 nslash = p_value;1112for(i =0; i < llen; i++) {1113int ch = line[i];1114if(ch =='/'&& --nslash <=0)1115return(i ==0) ? NULL : &line[i +1];1116}1117return NULL;1118}11191120/*1121 * This is to extract the same name that appears on "diff --git"1122 * line. We do not find and return anything if it is a rename1123 * patch, and it is OK because we will find the name elsewhere.1124 * We need to reliably find name only when it is mode-change only,1125 * creation or deletion of an empty file. In any of these cases,1126 * both sides are the same name under a/ and b/ respectively.1127 */1128static char*git_header_name(const char*line,int llen)1129{1130const char*name;1131const char*second = NULL;1132size_t len, line_len;11331134 line +=strlen("diff --git ");1135 llen -=strlen("diff --git ");11361137if(*line =='"') {1138const char*cp;1139struct strbuf first = STRBUF_INIT;1140struct strbuf sp = STRBUF_INIT;11411142if(unquote_c_style(&first, line, &second))1143goto free_and_fail1;11441145/* strip the a/b prefix including trailing slash */1146 cp =skip_tree_prefix(first.buf, first.len);1147if(!cp)1148goto free_and_fail1;1149strbuf_remove(&first,0, cp - first.buf);11501151/*1152 * second points at one past closing dq of name.1153 * find the second name.1154 */1155while((second < line + llen) &&isspace(*second))1156 second++;11571158if(line + llen <= second)1159goto free_and_fail1;1160if(*second =='"') {1161if(unquote_c_style(&sp, second, NULL))1162goto free_and_fail1;1163 cp =skip_tree_prefix(sp.buf, sp.len);1164if(!cp)1165goto free_and_fail1;1166/* They must match, otherwise ignore */1167if(strcmp(cp, first.buf))1168goto free_and_fail1;1169strbuf_release(&sp);1170returnstrbuf_detach(&first, NULL);1171}11721173/* unquoted second */1174 cp =skip_tree_prefix(second, line + llen - second);1175if(!cp)1176goto free_and_fail1;1177if(line + llen - cp != first.len ||1178memcmp(first.buf, cp, first.len))1179goto free_and_fail1;1180returnstrbuf_detach(&first, NULL);11811182 free_and_fail1:1183strbuf_release(&first);1184strbuf_release(&sp);1185return NULL;1186}11871188/* unquoted first name */1189 name =skip_tree_prefix(line, llen);1190if(!name)1191return NULL;11921193/*1194 * since the first name is unquoted, a dq if exists must be1195 * the beginning of the second name.1196 */1197for(second = name; second < line + llen; second++) {1198if(*second =='"') {1199struct strbuf sp = STRBUF_INIT;1200const char*np;12011202if(unquote_c_style(&sp, second, NULL))1203goto free_and_fail2;12041205 np =skip_tree_prefix(sp.buf, sp.len);1206if(!np)1207goto free_and_fail2;12081209 len = sp.buf + sp.len - np;1210if(len < second - name &&1211!strncmp(np, name, len) &&1212isspace(name[len])) {1213/* Good */1214strbuf_remove(&sp,0, np - sp.buf);1215returnstrbuf_detach(&sp, NULL);1216}12171218 free_and_fail2:1219strbuf_release(&sp);1220return NULL;1221}1222}12231224/*1225 * Accept a name only if it shows up twice, exactly the same1226 * form.1227 */1228 second =strchr(name,'\n');1229if(!second)1230return NULL;1231 line_len = second - name;1232for(len =0; ; len++) {1233switch(name[len]) {1234default:1235continue;1236case'\n':1237return NULL;1238case'\t':case' ':1239/*1240 * Is this the separator between the preimage1241 * and the postimage pathname? Again, we are1242 * only interested in the case where there is1243 * no rename, as this is only to set def_name1244 * and a rename patch has the names elsewhere1245 * in an unambiguous form.1246 */1247if(!name[len +1])1248return NULL;/* no postimage name */1249 second =skip_tree_prefix(name + len +1,1250 line_len - (len +1));1251if(!second)1252return NULL;1253/*1254 * Does len bytes starting at "name" and "second"1255 * (that are separated by one HT or SP we just1256 * found) exactly match?1257 */1258if(second[len] =='\n'&& !strncmp(name, second, len))1259returnxmemdupz(name, len);1260}1261}1262}12631264/* Verify that we recognize the lines following a git header */1265static intparse_git_header(const char*line,int len,unsigned int size,struct patch *patch)1266{1267unsigned long offset;12681269/* A git diff has explicit new/delete information, so we don't guess */1270 patch->is_new =0;1271 patch->is_delete =0;12721273/*1274 * Some things may not have the old name in the1275 * rest of the headers anywhere (pure mode changes,1276 * or removing or adding empty files), so we get1277 * the default name from the header.1278 */1279 patch->def_name =git_header_name(line, len);1280if(patch->def_name && root) {1281char*s =xstrfmt("%s%s", root, patch->def_name);1282free(patch->def_name);1283 patch->def_name = s;1284}12851286 line += len;1287 size -= len;1288 linenr++;1289for(offset = len ; size >0; offset += len, size -= len, line += len, linenr++) {1290static const struct opentry {1291const char*str;1292int(*fn)(const char*,struct patch *);1293} optable[] = {1294{"@@ -", gitdiff_hdrend },1295{"--- ", gitdiff_oldname },1296{"+++ ", gitdiff_newname },1297{"old mode ", gitdiff_oldmode },1298{"new mode ", gitdiff_newmode },1299{"deleted file mode ", gitdiff_delete },1300{"new file mode ", gitdiff_newfile },1301{"copy from ", gitdiff_copysrc },1302{"copy to ", gitdiff_copydst },1303{"rename old ", gitdiff_renamesrc },1304{"rename new ", gitdiff_renamedst },1305{"rename from ", gitdiff_renamesrc },1306{"rename to ", gitdiff_renamedst },1307{"similarity index ", gitdiff_similarity },1308{"dissimilarity index ", gitdiff_dissimilarity },1309{"index ", gitdiff_index },1310{"", gitdiff_unrecognized },1311};1312int i;13131314 len =linelen(line, size);1315if(!len || line[len-1] !='\n')1316break;1317for(i =0; i <ARRAY_SIZE(optable); i++) {1318const struct opentry *p = optable + i;1319int oplen =strlen(p->str);1320if(len < oplen ||memcmp(p->str, line, oplen))1321continue;1322if(p->fn(line + oplen, patch) <0)1323return offset;1324break;1325}1326}13271328return offset;1329}13301331static intparse_num(const char*line,unsigned long*p)1332{1333char*ptr;13341335if(!isdigit(*line))1336return0;1337*p =strtoul(line, &ptr,10);1338return ptr - line;1339}13401341static intparse_range(const char*line,int len,int offset,const char*expect,1342unsigned long*p1,unsigned long*p2)1343{1344int digits, ex;13451346if(offset <0|| offset >= len)1347return-1;1348 line += offset;1349 len -= offset;13501351 digits =parse_num(line, p1);1352if(!digits)1353return-1;13541355 offset += digits;1356 line += digits;1357 len -= digits;13581359*p2 =1;1360if(*line ==',') {1361 digits =parse_num(line+1, p2);1362if(!digits)1363return-1;13641365 offset += digits+1;1366 line += digits+1;1367 len -= digits+1;1368}13691370 ex =strlen(expect);1371if(ex > len)1372return-1;1373if(memcmp(line, expect, ex))1374return-1;13751376return offset + ex;1377}13781379static voidrecount_diff(const char*line,int size,struct fragment *fragment)1380{1381int oldlines =0, newlines =0, ret =0;13821383if(size <1) {1384warning("recount: ignore empty hunk");1385return;1386}13871388for(;;) {1389int len =linelen(line, size);1390 size -= len;1391 line += len;13921393if(size <1)1394break;13951396switch(*line) {1397case' ':case'\n':1398 newlines++;1399/* fall through */1400case'-':1401 oldlines++;1402continue;1403case'+':1404 newlines++;1405continue;1406case'\\':1407continue;1408case'@':1409 ret = size <3|| !starts_with(line,"@@ ");1410break;1411case'd':1412 ret = size <5|| !starts_with(line,"diff ");1413break;1414default:1415 ret = -1;1416break;1417}1418if(ret) {1419warning(_("recount: unexpected line: %.*s"),1420(int)linelen(line, size), line);1421return;1422}1423break;1424}1425 fragment->oldlines = oldlines;1426 fragment->newlines = newlines;1427}14281429/*1430 * Parse a unified diff fragment header of the1431 * form "@@ -a,b +c,d @@"1432 */1433static intparse_fragment_header(const char*line,int len,struct fragment *fragment)1434{1435int offset;14361437if(!len || line[len-1] !='\n')1438return-1;14391440/* Figure out the number of lines in a fragment */1441 offset =parse_range(line, len,4," +", &fragment->oldpos, &fragment->oldlines);1442 offset =parse_range(line, len, offset," @@", &fragment->newpos, &fragment->newlines);14431444return offset;1445}14461447static intfind_header(const char*line,unsigned long size,int*hdrsize,struct patch *patch)1448{1449unsigned long offset, len;14501451 patch->is_toplevel_relative =0;1452 patch->is_rename = patch->is_copy =0;1453 patch->is_new = patch->is_delete = -1;1454 patch->old_mode = patch->new_mode =0;1455 patch->old_name = patch->new_name = NULL;1456for(offset =0; size >0; offset += len, size -= len, line += len, linenr++) {1457unsigned long nextlen;14581459 len =linelen(line, size);1460if(!len)1461break;14621463/* Testing this early allows us to take a few shortcuts.. */1464if(len <6)1465continue;14661467/*1468 * Make sure we don't find any unconnected patch fragments.1469 * That's a sign that we didn't find a header, and that a1470 * patch has become corrupted/broken up.1471 */1472if(!memcmp("@@ -", line,4)) {1473struct fragment dummy;1474if(parse_fragment_header(line, len, &dummy) <0)1475continue;1476die(_("patch fragment without header at line%d: %.*s"),1477 linenr, (int)len-1, line);1478}14791480if(size < len +6)1481break;14821483/*1484 * Git patch? It might not have a real patch, just a rename1485 * or mode change, so we handle that specially1486 */1487if(!memcmp("diff --git ", line,11)) {1488int git_hdr_len =parse_git_header(line, len, size, patch);1489if(git_hdr_len <= len)1490continue;1491if(!patch->old_name && !patch->new_name) {1492if(!patch->def_name)1493die(Q_("git diff header lacks filename information when removing "1494"%dleading pathname component (line%d)",1495"git diff header lacks filename information when removing "1496"%dleading pathname components (line%d)",1497 p_value),1498 p_value, linenr);1499 patch->old_name =xstrdup(patch->def_name);1500 patch->new_name =xstrdup(patch->def_name);1501}1502if(!patch->is_delete && !patch->new_name)1503die("git diff header lacks filename information "1504"(line%d)", linenr);1505 patch->is_toplevel_relative =1;1506*hdrsize = git_hdr_len;1507return offset;1508}15091510/* --- followed by +++ ? */1511if(memcmp("--- ", line,4) ||memcmp("+++ ", line + len,4))1512continue;15131514/*1515 * We only accept unified patches, so we want it to1516 * at least have "@@ -a,b +c,d @@\n", which is 14 chars1517 * minimum ("@@ -0,0 +1 @@\n" is the shortest).1518 */1519 nextlen =linelen(line + len, size - len);1520if(size < nextlen +14||memcmp("@@ -", line + len + nextlen,4))1521continue;15221523/* Ok, we'll consider it a patch */1524parse_traditional_patch(line, line+len, patch);1525*hdrsize = len + nextlen;1526 linenr +=2;1527return offset;1528}1529return-1;1530}15311532static voidrecord_ws_error(unsigned result,const char*line,int len,int linenr)1533{1534char*err;15351536if(!result)1537return;15381539 whitespace_error++;1540if(squelch_whitespace_errors &&1541 squelch_whitespace_errors < whitespace_error)1542return;15431544 err =whitespace_error_string(result);1545fprintf(stderr,"%s:%d:%s.\n%.*s\n",1546 patch_input_file, linenr, err, len, line);1547free(err);1548}15491550static voidcheck_whitespace(const char*line,int len,unsigned ws_rule)1551{1552unsigned result =ws_check(line +1, len -1, ws_rule);15531554record_ws_error(result, line +1, len -2, linenr);1555}15561557/*1558 * Parse a unified diff. Note that this really needs to parse each1559 * fragment separately, since the only way to know the difference1560 * between a "---" that is part of a patch, and a "---" that starts1561 * the next patch is to look at the line counts..1562 */1563static intparse_fragment(const char*line,unsigned long size,1564struct patch *patch,struct fragment *fragment)1565{1566int added, deleted;1567int len =linelen(line, size), offset;1568unsigned long oldlines, newlines;1569unsigned long leading, trailing;15701571 offset =parse_fragment_header(line, len, fragment);1572if(offset <0)1573return-1;1574if(offset >0&& patch->recount)1575recount_diff(line + offset, size - offset, fragment);1576 oldlines = fragment->oldlines;1577 newlines = fragment->newlines;1578 leading =0;1579 trailing =0;15801581/* Parse the thing.. */1582 line += len;1583 size -= len;1584 linenr++;1585 added = deleted =0;1586for(offset = len;15870< size;1588 offset += len, size -= len, line += len, linenr++) {1589if(!oldlines && !newlines)1590break;1591 len =linelen(line, size);1592if(!len || line[len-1] !='\n')1593return-1;1594switch(*line) {1595default:1596return-1;1597case'\n':/* newer GNU diff, an empty context line */1598case' ':1599 oldlines--;1600 newlines--;1601if(!deleted && !added)1602 leading++;1603 trailing++;1604if(!apply_in_reverse &&1605 ws_error_action == correct_ws_error)1606check_whitespace(line, len, patch->ws_rule);1607break;1608case'-':1609if(apply_in_reverse &&1610 ws_error_action != nowarn_ws_error)1611check_whitespace(line, len, patch->ws_rule);1612 deleted++;1613 oldlines--;1614 trailing =0;1615break;1616case'+':1617if(!apply_in_reverse &&1618 ws_error_action != nowarn_ws_error)1619check_whitespace(line, len, patch->ws_rule);1620 added++;1621 newlines--;1622 trailing =0;1623break;16241625/*1626 * We allow "\ No newline at end of file". Depending1627 * on locale settings when the patch was produced we1628 * don't know what this line looks like. The only1629 * thing we do know is that it begins with "\ ".1630 * Checking for 12 is just for sanity check -- any1631 * l10n of "\ No newline..." is at least that long.1632 */1633case'\\':1634if(len <12||memcmp(line,"\\",2))1635return-1;1636break;1637}1638}1639if(oldlines || newlines)1640return-1;1641if(!deleted && !added)1642return-1;16431644 fragment->leading = leading;1645 fragment->trailing = trailing;16461647/*1648 * If a fragment ends with an incomplete line, we failed to include1649 * it in the above loop because we hit oldlines == newlines == 01650 * before seeing it.1651 */1652if(12< size && !memcmp(line,"\\",2))1653 offset +=linelen(line, size);16541655 patch->lines_added += added;1656 patch->lines_deleted += deleted;16571658if(0< patch->is_new && oldlines)1659returnerror(_("new file depends on old contents"));1660if(0< patch->is_delete && newlines)1661returnerror(_("deleted file still has contents"));1662return offset;1663}16641665/*1666 * We have seen "diff --git a/... b/..." header (or a traditional patch1667 * header). Read hunks that belong to this patch into fragments and hang1668 * them to the given patch structure.1669 *1670 * The (fragment->patch, fragment->size) pair points into the memory given1671 * by the caller, not a copy, when we return.1672 */1673static intparse_single_patch(const char*line,unsigned long size,struct patch *patch)1674{1675unsigned long offset =0;1676unsigned long oldlines =0, newlines =0, context =0;1677struct fragment **fragp = &patch->fragments;16781679while(size >4&& !memcmp(line,"@@ -",4)) {1680struct fragment *fragment;1681int len;16821683 fragment =xcalloc(1,sizeof(*fragment));1684 fragment->linenr = linenr;1685 len =parse_fragment(line, size, patch, fragment);1686if(len <=0)1687die(_("corrupt patch at line%d"), linenr);1688 fragment->patch = line;1689 fragment->size = len;1690 oldlines += fragment->oldlines;1691 newlines += fragment->newlines;1692 context += fragment->leading + fragment->trailing;16931694*fragp = fragment;1695 fragp = &fragment->next;16961697 offset += len;1698 line += len;1699 size -= len;1700}17011702/*1703 * If something was removed (i.e. we have old-lines) it cannot1704 * be creation, and if something was added it cannot be1705 * deletion. However, the reverse is not true; --unified=01706 * patches that only add are not necessarily creation even1707 * though they do not have any old lines, and ones that only1708 * delete are not necessarily deletion.1709 *1710 * Unfortunately, a real creation/deletion patch do _not_ have1711 * any context line by definition, so we cannot safely tell it1712 * apart with --unified=0 insanity. At least if the patch has1713 * more than one hunk it is not creation or deletion.1714 */1715if(patch->is_new <0&&1716(oldlines || (patch->fragments && patch->fragments->next)))1717 patch->is_new =0;1718if(patch->is_delete <0&&1719(newlines || (patch->fragments && patch->fragments->next)))1720 patch->is_delete =0;17211722if(0< patch->is_new && oldlines)1723die(_("new file%sdepends on old contents"), patch->new_name);1724if(0< patch->is_delete && newlines)1725die(_("deleted file%sstill has contents"), patch->old_name);1726if(!patch->is_delete && !newlines && context)1727fprintf_ln(stderr,1728_("** warning: "1729"file%sbecomes empty but is not deleted"),1730 patch->new_name);17311732return offset;1733}17341735staticinlineintmetadata_changes(struct patch *patch)1736{1737return patch->is_rename >0||1738 patch->is_copy >0||1739 patch->is_new >0||1740 patch->is_delete ||1741(patch->old_mode && patch->new_mode &&1742 patch->old_mode != patch->new_mode);1743}17441745static char*inflate_it(const void*data,unsigned long size,1746unsigned long inflated_size)1747{1748 git_zstream stream;1749void*out;1750int st;17511752memset(&stream,0,sizeof(stream));17531754 stream.next_in = (unsigned char*)data;1755 stream.avail_in = size;1756 stream.next_out = out =xmalloc(inflated_size);1757 stream.avail_out = inflated_size;1758git_inflate_init(&stream);1759 st =git_inflate(&stream, Z_FINISH);1760git_inflate_end(&stream);1761if((st != Z_STREAM_END) || stream.total_out != inflated_size) {1762free(out);1763return NULL;1764}1765return out;1766}17671768/*1769 * Read a binary hunk and return a new fragment; fragment->patch1770 * points at an allocated memory that the caller must free, so1771 * it is marked as "->free_patch = 1".1772 */1773static struct fragment *parse_binary_hunk(char**buf_p,1774unsigned long*sz_p,1775int*status_p,1776int*used_p)1777{1778/*1779 * Expect a line that begins with binary patch method ("literal"1780 * or "delta"), followed by the length of data before deflating.1781 * a sequence of 'length-byte' followed by base-85 encoded data1782 * should follow, terminated by a newline.1783 *1784 * Each 5-byte sequence of base-85 encodes up to 4 bytes,1785 * and we would limit the patch line to 66 characters,1786 * so one line can fit up to 13 groups that would decode1787 * to 52 bytes max. The length byte 'A'-'Z' corresponds1788 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.1789 */1790int llen, used;1791unsigned long size = *sz_p;1792char*buffer = *buf_p;1793int patch_method;1794unsigned long origlen;1795char*data = NULL;1796int hunk_size =0;1797struct fragment *frag;17981799 llen =linelen(buffer, size);1800 used = llen;18011802*status_p =0;18031804if(starts_with(buffer,"delta ")) {1805 patch_method = BINARY_DELTA_DEFLATED;1806 origlen =strtoul(buffer +6, NULL,10);1807}1808else if(starts_with(buffer,"literal ")) {1809 patch_method = BINARY_LITERAL_DEFLATED;1810 origlen =strtoul(buffer +8, NULL,10);1811}1812else1813return NULL;18141815 linenr++;1816 buffer += llen;1817while(1) {1818int byte_length, max_byte_length, newsize;1819 llen =linelen(buffer, size);1820 used += llen;1821 linenr++;1822if(llen ==1) {1823/* consume the blank line */1824 buffer++;1825 size--;1826break;1827}1828/*1829 * Minimum line is "A00000\n" which is 7-byte long,1830 * and the line length must be multiple of 5 plus 2.1831 */1832if((llen <7) || (llen-2) %5)1833goto corrupt;1834 max_byte_length = (llen -2) /5*4;1835 byte_length = *buffer;1836if('A'<= byte_length && byte_length <='Z')1837 byte_length = byte_length -'A'+1;1838else if('a'<= byte_length && byte_length <='z')1839 byte_length = byte_length -'a'+27;1840else1841goto corrupt;1842/* if the input length was not multiple of 4, we would1843 * have filler at the end but the filler should never1844 * exceed 3 bytes1845 */1846if(max_byte_length < byte_length ||1847 byte_length <= max_byte_length -4)1848goto corrupt;1849 newsize = hunk_size + byte_length;1850 data =xrealloc(data, newsize);1851if(decode_85(data + hunk_size, buffer +1, byte_length))1852goto corrupt;1853 hunk_size = newsize;1854 buffer += llen;1855 size -= llen;1856}18571858 frag =xcalloc(1,sizeof(*frag));1859 frag->patch =inflate_it(data, hunk_size, origlen);1860 frag->free_patch =1;1861if(!frag->patch)1862goto corrupt;1863free(data);1864 frag->size = origlen;1865*buf_p = buffer;1866*sz_p = size;1867*used_p = used;1868 frag->binary_patch_method = patch_method;1869return frag;18701871 corrupt:1872free(data);1873*status_p = -1;1874error(_("corrupt binary patch at line%d: %.*s"),1875 linenr-1, llen-1, buffer);1876return NULL;1877}18781879static intparse_binary(char*buffer,unsigned long size,struct patch *patch)1880{1881/*1882 * We have read "GIT binary patch\n"; what follows is a line1883 * that says the patch method (currently, either "literal" or1884 * "delta") and the length of data before deflating; a1885 * sequence of 'length-byte' followed by base-85 encoded data1886 * follows.1887 *1888 * When a binary patch is reversible, there is another binary1889 * hunk in the same format, starting with patch method (either1890 * "literal" or "delta") with the length of data, and a sequence1891 * of length-byte + base-85 encoded data, terminated with another1892 * empty line. This data, when applied to the postimage, produces1893 * the preimage.1894 */1895struct fragment *forward;1896struct fragment *reverse;1897int status;1898int used, used_1;18991900 forward =parse_binary_hunk(&buffer, &size, &status, &used);1901if(!forward && !status)1902/* there has to be one hunk (forward hunk) */1903returnerror(_("unrecognized binary patch at line%d"), linenr-1);1904if(status)1905/* otherwise we already gave an error message */1906return status;19071908 reverse =parse_binary_hunk(&buffer, &size, &status, &used_1);1909if(reverse)1910 used += used_1;1911else if(status) {1912/*1913 * Not having reverse hunk is not an error, but having1914 * a corrupt reverse hunk is.1915 */1916free((void*) forward->patch);1917free(forward);1918return status;1919}1920 forward->next = reverse;1921 patch->fragments = forward;1922 patch->is_binary =1;1923return used;1924}19251926static voidprefix_one(char**name)1927{1928char*old_name = *name;1929if(!old_name)1930return;1931*name =xstrdup(prefix_filename(prefix, prefix_length, *name));1932free(old_name);1933}19341935static voidprefix_patch(struct patch *p)1936{1937if(!prefix || p->is_toplevel_relative)1938return;1939prefix_one(&p->new_name);1940prefix_one(&p->old_name);1941}19421943/*1944 * include/exclude1945 */19461947static struct string_list limit_by_name;1948static int has_include;1949static voidadd_name_limit(const char*name,int exclude)1950{1951struct string_list_item *it;19521953 it =string_list_append(&limit_by_name, name);1954 it->util = exclude ? NULL : (void*)1;1955}19561957static intuse_patch(struct patch *p)1958{1959const char*pathname = p->new_name ? p->new_name : p->old_name;1960int i;19611962/* Paths outside are not touched regardless of "--include" */1963if(0< prefix_length) {1964int pathlen =strlen(pathname);1965if(pathlen <= prefix_length ||1966memcmp(prefix, pathname, prefix_length))1967return0;1968}19691970/* See if it matches any of exclude/include rule */1971for(i =0; i < limit_by_name.nr; i++) {1972struct string_list_item *it = &limit_by_name.items[i];1973if(!wildmatch(it->string, pathname,0, NULL))1974return(it->util != NULL);1975}19761977/*1978 * If we had any include, a path that does not match any rule is1979 * not used. Otherwise, we saw bunch of exclude rules (or none)1980 * and such a path is used.1981 */1982return!has_include;1983}198419851986/*1987 * Read the patch text in "buffer" that extends for "size" bytes; stop1988 * reading after seeing a single patch (i.e. changes to a single file).1989 * Create fragments (i.e. patch hunks) and hang them to the given patch.1990 * Return the number of bytes consumed, so that the caller can call us1991 * again for the next patch.1992 */1993static intparse_chunk(char*buffer,unsigned long size,struct patch *patch)1994{1995int hdrsize, patchsize;1996int offset =find_header(buffer, size, &hdrsize, patch);19971998if(offset <0)1999return offset;20002001prefix_patch(patch);20022003if(!use_patch(patch))2004 patch->ws_rule =0;2005else2006 patch->ws_rule =whitespace_rule(patch->new_name2007? patch->new_name2008: patch->old_name);20092010 patchsize =parse_single_patch(buffer + offset + hdrsize,2011 size - offset - hdrsize, patch);20122013if(!patchsize) {2014static const char git_binary[] ="GIT binary patch\n";2015int hd = hdrsize + offset;2016unsigned long llen =linelen(buffer + hd, size - hd);20172018if(llen ==sizeof(git_binary) -1&&2019!memcmp(git_binary, buffer + hd, llen)) {2020int used;2021 linenr++;2022 used =parse_binary(buffer + hd + llen,2023 size - hd - llen, patch);2024if(used)2025 patchsize = used + llen;2026else2027 patchsize =0;2028}2029else if(!memcmp(" differ\n", buffer + hd + llen -8,8)) {2030static const char*binhdr[] = {2031"Binary files ",2032"Files ",2033 NULL,2034};2035int i;2036for(i =0; binhdr[i]; i++) {2037int len =strlen(binhdr[i]);2038if(len < size - hd &&2039!memcmp(binhdr[i], buffer + hd, len)) {2040 linenr++;2041 patch->is_binary =1;2042 patchsize = llen;2043break;2044}2045}2046}20472048/* Empty patch cannot be applied if it is a text patch2049 * without metadata change. A binary patch appears2050 * empty to us here.2051 */2052if((apply || check) &&2053(!patch->is_binary && !metadata_changes(patch)))2054die(_("patch with only garbage at line%d"), linenr);2055}20562057return offset + hdrsize + patchsize;2058}20592060#define swap(a,b) myswap((a),(b),sizeof(a))20612062#define myswap(a, b, size) do { \2063 unsigned char mytmp[size]; \2064 memcpy(mytmp, &a, size); \2065 memcpy(&a, &b, size); \2066 memcpy(&b, mytmp, size); \2067} while (0)20682069static voidreverse_patches(struct patch *p)2070{2071for(; p; p = p->next) {2072struct fragment *frag = p->fragments;20732074swap(p->new_name, p->old_name);2075swap(p->new_mode, p->old_mode);2076swap(p->is_new, p->is_delete);2077swap(p->lines_added, p->lines_deleted);2078swap(p->old_sha1_prefix, p->new_sha1_prefix);20792080for(; frag; frag = frag->next) {2081swap(frag->newpos, frag->oldpos);2082swap(frag->newlines, frag->oldlines);2083}2084}2085}20862087static const char pluses[] =2088"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";2089static const char minuses[]=2090"----------------------------------------------------------------------";20912092static voidshow_stats(struct patch *patch)2093{2094struct strbuf qname = STRBUF_INIT;2095char*cp = patch->new_name ? patch->new_name : patch->old_name;2096int max, add, del;20972098quote_c_style(cp, &qname, NULL,0);20992100/*2101 * "scale" the filename2102 */2103 max = max_len;2104if(max >50)2105 max =50;21062107if(qname.len > max) {2108 cp =strchr(qname.buf + qname.len +3- max,'/');2109if(!cp)2110 cp = qname.buf + qname.len +3- max;2111strbuf_splice(&qname,0, cp - qname.buf,"...",3);2112}21132114if(patch->is_binary) {2115printf(" %-*s | Bin\n", max, qname.buf);2116strbuf_release(&qname);2117return;2118}21192120printf(" %-*s |", max, qname.buf);2121strbuf_release(&qname);21222123/*2124 * scale the add/delete2125 */2126 max = max + max_change >70?70- max : max_change;2127 add = patch->lines_added;2128 del = patch->lines_deleted;21292130if(max_change >0) {2131int total = ((add + del) * max + max_change /2) / max_change;2132 add = (add * max + max_change /2) / max_change;2133 del = total - add;2134}2135printf("%5d %.*s%.*s\n", patch->lines_added + patch->lines_deleted,2136 add, pluses, del, minuses);2137}21382139static intread_old_data(struct stat *st,const char*path,struct strbuf *buf)2140{2141switch(st->st_mode & S_IFMT) {2142case S_IFLNK:2143if(strbuf_readlink(buf, path, st->st_size) <0)2144returnerror(_("unable to read symlink%s"), path);2145return0;2146case S_IFREG:2147if(strbuf_read_file(buf, path, st->st_size) != st->st_size)2148returnerror(_("unable to open or read%s"), path);2149convert_to_git(path, buf->buf, buf->len, buf,0);2150return0;2151default:2152return-1;2153}2154}21552156/*2157 * Update the preimage, and the common lines in postimage,2158 * from buffer buf of length len. If postlen is 0 the postimage2159 * is updated in place, otherwise it's updated on a new buffer2160 * of length postlen2161 */21622163static voidupdate_pre_post_images(struct image *preimage,2164struct image *postimage,2165char*buf,2166size_t len,size_t postlen)2167{2168int i, ctx, reduced;2169char*new, *old, *fixed;2170struct image fixed_preimage;21712172/*2173 * Update the preimage with whitespace fixes. Note that we2174 * are not losing preimage->buf -- apply_one_fragment() will2175 * free "oldlines".2176 */2177prepare_image(&fixed_preimage, buf, len,1);2178assert(postlen2179? fixed_preimage.nr == preimage->nr2180: fixed_preimage.nr <= preimage->nr);2181for(i =0; i < fixed_preimage.nr; i++)2182 fixed_preimage.line[i].flag = preimage->line[i].flag;2183free(preimage->line_allocated);2184*preimage = fixed_preimage;21852186/*2187 * Adjust the common context lines in postimage. This can be2188 * done in-place when we are shrinking it with whitespace2189 * fixing, but needs a new buffer when ignoring whitespace or2190 * expanding leading tabs to spaces.2191 *2192 * We trust the caller to tell us if the update can be done2193 * in place (postlen==0) or not.2194 */2195 old = postimage->buf;2196if(postlen)2197new= postimage->buf =xmalloc(postlen);2198else2199new= old;2200 fixed = preimage->buf;22012202for(i = reduced = ctx =0; i < postimage->nr; i++) {2203size_t len = postimage->line[i].len;2204if(!(postimage->line[i].flag & LINE_COMMON)) {2205/* an added line -- no counterparts in preimage */2206memmove(new, old, len);2207 old += len;2208new+= len;2209continue;2210}22112212/* a common context -- skip it in the original postimage */2213 old += len;22142215/* and find the corresponding one in the fixed preimage */2216while(ctx < preimage->nr &&2217!(preimage->line[ctx].flag & LINE_COMMON)) {2218 fixed += preimage->line[ctx].len;2219 ctx++;2220}22212222/*2223 * preimage is expected to run out, if the caller2224 * fixed addition of trailing blank lines.2225 */2226if(preimage->nr <= ctx) {2227 reduced++;2228continue;2229}22302231/* and copy it in, while fixing the line length */2232 len = preimage->line[ctx].len;2233memcpy(new, fixed, len);2234new+= len;2235 fixed += len;2236 postimage->line[i].len = len;2237 ctx++;2238}22392240if(postlen2241? postlen <new- postimage->buf2242: postimage->len <new- postimage->buf)2243die("BUG: caller miscounted postlen: asked%d, orig =%d, used =%d",2244(int)postlen, (int) postimage->len, (int)(new- postimage->buf));22452246/* Fix the length of the whole thing */2247 postimage->len =new- postimage->buf;2248 postimage->nr -= reduced;2249}22502251static intmatch_fragment(struct image *img,2252struct image *preimage,2253struct image *postimage,2254unsigned longtry,2255int try_lno,2256unsigned ws_rule,2257int match_beginning,int match_end)2258{2259int i;2260char*fixed_buf, *buf, *orig, *target;2261struct strbuf fixed;2262size_t fixed_len, postlen;2263int preimage_limit;22642265if(preimage->nr + try_lno <= img->nr) {2266/*2267 * The hunk falls within the boundaries of img.2268 */2269 preimage_limit = preimage->nr;2270if(match_end && (preimage->nr + try_lno != img->nr))2271return0;2272}else if(ws_error_action == correct_ws_error &&2273(ws_rule & WS_BLANK_AT_EOF)) {2274/*2275 * This hunk extends beyond the end of img, and we are2276 * removing blank lines at the end of the file. This2277 * many lines from the beginning of the preimage must2278 * match with img, and the remainder of the preimage2279 * must be blank.2280 */2281 preimage_limit = img->nr - try_lno;2282}else{2283/*2284 * The hunk extends beyond the end of the img and2285 * we are not removing blanks at the end, so we2286 * should reject the hunk at this position.2287 */2288return0;2289}22902291if(match_beginning && try_lno)2292return0;22932294/* Quick hash check */2295for(i =0; i < preimage_limit; i++)2296if((img->line[try_lno + i].flag & LINE_PATCHED) ||2297(preimage->line[i].hash != img->line[try_lno + i].hash))2298return0;22992300if(preimage_limit == preimage->nr) {2301/*2302 * Do we have an exact match? If we were told to match2303 * at the end, size must be exactly at try+fragsize,2304 * otherwise try+fragsize must be still within the preimage,2305 * and either case, the old piece should match the preimage2306 * exactly.2307 */2308if((match_end2309? (try+ preimage->len == img->len)2310: (try+ preimage->len <= img->len)) &&2311!memcmp(img->buf +try, preimage->buf, preimage->len))2312return1;2313}else{2314/*2315 * The preimage extends beyond the end of img, so2316 * there cannot be an exact match.2317 *2318 * There must be one non-blank context line that match2319 * a line before the end of img.2320 */2321char*buf_end;23222323 buf = preimage->buf;2324 buf_end = buf;2325for(i =0; i < preimage_limit; i++)2326 buf_end += preimage->line[i].len;23272328for( ; buf < buf_end; buf++)2329if(!isspace(*buf))2330break;2331if(buf == buf_end)2332return0;2333}23342335/*2336 * No exact match. If we are ignoring whitespace, run a line-by-line2337 * fuzzy matching. We collect all the line length information because2338 * we need it to adjust whitespace if we match.2339 */2340if(ws_ignore_action == ignore_ws_change) {2341size_t imgoff =0;2342size_t preoff =0;2343size_t postlen = postimage->len;2344size_t extra_chars;2345char*preimage_eof;2346char*preimage_end;2347for(i =0; i < preimage_limit; i++) {2348size_t prelen = preimage->line[i].len;2349size_t imglen = img->line[try_lno+i].len;23502351if(!fuzzy_matchlines(img->buf +try+ imgoff, imglen,2352 preimage->buf + preoff, prelen))2353return0;2354if(preimage->line[i].flag & LINE_COMMON)2355 postlen += imglen - prelen;2356 imgoff += imglen;2357 preoff += prelen;2358}23592360/*2361 * Ok, the preimage matches with whitespace fuzz.2362 *2363 * imgoff now holds the true length of the target that2364 * matches the preimage before the end of the file.2365 *2366 * Count the number of characters in the preimage that fall2367 * beyond the end of the file and make sure that all of them2368 * are whitespace characters. (This can only happen if2369 * we are removing blank lines at the end of the file.)2370 */2371 buf = preimage_eof = preimage->buf + preoff;2372for( ; i < preimage->nr; i++)2373 preoff += preimage->line[i].len;2374 preimage_end = preimage->buf + preoff;2375for( ; buf < preimage_end; buf++)2376if(!isspace(*buf))2377return0;23782379/*2380 * Update the preimage and the common postimage context2381 * lines to use the same whitespace as the target.2382 * If whitespace is missing in the target (i.e.2383 * if the preimage extends beyond the end of the file),2384 * use the whitespace from the preimage.2385 */2386 extra_chars = preimage_end - preimage_eof;2387strbuf_init(&fixed, imgoff + extra_chars);2388strbuf_add(&fixed, img->buf +try, imgoff);2389strbuf_add(&fixed, preimage_eof, extra_chars);2390 fixed_buf =strbuf_detach(&fixed, &fixed_len);2391update_pre_post_images(preimage, postimage,2392 fixed_buf, fixed_len, postlen);2393return1;2394}23952396if(ws_error_action != correct_ws_error)2397return0;23982399/*2400 * The hunk does not apply byte-by-byte, but the hash says2401 * it might with whitespace fuzz. We weren't asked to2402 * ignore whitespace, we were asked to correct whitespace2403 * errors, so let's try matching after whitespace correction.2404 *2405 * While checking the preimage against the target, whitespace2406 * errors in both fixed, we count how large the corresponding2407 * postimage needs to be. The postimage prepared by2408 * apply_one_fragment() has whitespace errors fixed on added2409 * lines already, but the common lines were propagated as-is,2410 * which may become longer when their whitespace errors are2411 * fixed.2412 */24132414/* First count added lines in postimage */2415 postlen =0;2416for(i =0; i < postimage->nr; i++) {2417if(!(postimage->line[i].flag & LINE_COMMON))2418 postlen += postimage->line[i].len;2419}24202421/*2422 * The preimage may extend beyond the end of the file,2423 * but in this loop we will only handle the part of the2424 * preimage that falls within the file.2425 */2426strbuf_init(&fixed, preimage->len +1);2427 orig = preimage->buf;2428 target = img->buf +try;2429for(i =0; i < preimage_limit; i++) {2430size_t oldlen = preimage->line[i].len;2431size_t tgtlen = img->line[try_lno + i].len;2432size_t fixstart = fixed.len;2433struct strbuf tgtfix;2434int match;24352436/* Try fixing the line in the preimage */2437ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);24382439/* Try fixing the line in the target */2440strbuf_init(&tgtfix, tgtlen);2441ws_fix_copy(&tgtfix, target, tgtlen, ws_rule, NULL);24422443/*2444 * If they match, either the preimage was based on2445 * a version before our tree fixed whitespace breakage,2446 * or we are lacking a whitespace-fix patch the tree2447 * the preimage was based on already had (i.e. target2448 * has whitespace breakage, the preimage doesn't).2449 * In either case, we are fixing the whitespace breakages2450 * so we might as well take the fix together with their2451 * real change.2452 */2453 match = (tgtfix.len == fixed.len - fixstart &&2454!memcmp(tgtfix.buf, fixed.buf + fixstart,2455 fixed.len - fixstart));24562457/* Add the length if this is common with the postimage */2458if(preimage->line[i].flag & LINE_COMMON)2459 postlen += tgtfix.len;24602461strbuf_release(&tgtfix);2462if(!match)2463goto unmatch_exit;24642465 orig += oldlen;2466 target += tgtlen;2467}246824692470/*2471 * Now handle the lines in the preimage that falls beyond the2472 * end of the file (if any). They will only match if they are2473 * empty or only contain whitespace (if WS_BLANK_AT_EOL is2474 * false).2475 */2476for( ; i < preimage->nr; i++) {2477size_t fixstart = fixed.len;/* start of the fixed preimage */2478size_t oldlen = preimage->line[i].len;2479int j;24802481/* Try fixing the line in the preimage */2482ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);24832484for(j = fixstart; j < fixed.len; j++)2485if(!isspace(fixed.buf[j]))2486goto unmatch_exit;24872488 orig += oldlen;2489}24902491/*2492 * Yes, the preimage is based on an older version that still2493 * has whitespace breakages unfixed, and fixing them makes the2494 * hunk match. Update the context lines in the postimage.2495 */2496 fixed_buf =strbuf_detach(&fixed, &fixed_len);2497if(postlen < postimage->len)2498 postlen =0;2499update_pre_post_images(preimage, postimage,2500 fixed_buf, fixed_len, postlen);2501return1;25022503 unmatch_exit:2504strbuf_release(&fixed);2505return0;2506}25072508static intfind_pos(struct image *img,2509struct image *preimage,2510struct image *postimage,2511int line,2512unsigned ws_rule,2513int match_beginning,int match_end)2514{2515int i;2516unsigned long backwards, forwards,try;2517int backwards_lno, forwards_lno, try_lno;25182519/*2520 * If match_beginning or match_end is specified, there is no2521 * point starting from a wrong line that will never match and2522 * wander around and wait for a match at the specified end.2523 */2524if(match_beginning)2525 line =0;2526else if(match_end)2527 line = img->nr - preimage->nr;25282529/*2530 * Because the comparison is unsigned, the following test2531 * will also take care of a negative line number that can2532 * result when match_end and preimage is larger than the target.2533 */2534if((size_t) line > img->nr)2535 line = img->nr;25362537try=0;2538for(i =0; i < line; i++)2539try+= img->line[i].len;25402541/*2542 * There's probably some smart way to do this, but I'll leave2543 * that to the smart and beautiful people. I'm simple and stupid.2544 */2545 backwards =try;2546 backwards_lno = line;2547 forwards =try;2548 forwards_lno = line;2549 try_lno = line;25502551for(i =0; ; i++) {2552if(match_fragment(img, preimage, postimage,2553try, try_lno, ws_rule,2554 match_beginning, match_end))2555return try_lno;25562557 again:2558if(backwards_lno ==0&& forwards_lno == img->nr)2559break;25602561if(i &1) {2562if(backwards_lno ==0) {2563 i++;2564goto again;2565}2566 backwards_lno--;2567 backwards -= img->line[backwards_lno].len;2568try= backwards;2569 try_lno = backwards_lno;2570}else{2571if(forwards_lno == img->nr) {2572 i++;2573goto again;2574}2575 forwards += img->line[forwards_lno].len;2576 forwards_lno++;2577try= forwards;2578 try_lno = forwards_lno;2579}25802581}2582return-1;2583}25842585static voidremove_first_line(struct image *img)2586{2587 img->buf += img->line[0].len;2588 img->len -= img->line[0].len;2589 img->line++;2590 img->nr--;2591}25922593static voidremove_last_line(struct image *img)2594{2595 img->len -= img->line[--img->nr].len;2596}25972598/*2599 * The change from "preimage" and "postimage" has been found to2600 * apply at applied_pos (counts in line numbers) in "img".2601 * Update "img" to remove "preimage" and replace it with "postimage".2602 */2603static voidupdate_image(struct image *img,2604int applied_pos,2605struct image *preimage,2606struct image *postimage)2607{2608/*2609 * remove the copy of preimage at offset in img2610 * and replace it with postimage2611 */2612int i, nr;2613size_t remove_count, insert_count, applied_at =0;2614char*result;2615int preimage_limit;26162617/*2618 * If we are removing blank lines at the end of img,2619 * the preimage may extend beyond the end.2620 * If that is the case, we must be careful only to2621 * remove the part of the preimage that falls within2622 * the boundaries of img. Initialize preimage_limit2623 * to the number of lines in the preimage that falls2624 * within the boundaries.2625 */2626 preimage_limit = preimage->nr;2627if(preimage_limit > img->nr - applied_pos)2628 preimage_limit = img->nr - applied_pos;26292630for(i =0; i < applied_pos; i++)2631 applied_at += img->line[i].len;26322633 remove_count =0;2634for(i =0; i < preimage_limit; i++)2635 remove_count += img->line[applied_pos + i].len;2636 insert_count = postimage->len;26372638/* Adjust the contents */2639 result =xmalloc(img->len + insert_count - remove_count +1);2640memcpy(result, img->buf, applied_at);2641memcpy(result + applied_at, postimage->buf, postimage->len);2642memcpy(result + applied_at + postimage->len,2643 img->buf + (applied_at + remove_count),2644 img->len - (applied_at + remove_count));2645free(img->buf);2646 img->buf = result;2647 img->len += insert_count - remove_count;2648 result[img->len] ='\0';26492650/* Adjust the line table */2651 nr = img->nr + postimage->nr - preimage_limit;2652if(preimage_limit < postimage->nr) {2653/*2654 * NOTE: this knows that we never call remove_first_line()2655 * on anything other than pre/post image.2656 */2657REALLOC_ARRAY(img->line, nr);2658 img->line_allocated = img->line;2659}2660if(preimage_limit != postimage->nr)2661memmove(img->line + applied_pos + postimage->nr,2662 img->line + applied_pos + preimage_limit,2663(img->nr - (applied_pos + preimage_limit)) *2664sizeof(*img->line));2665memcpy(img->line + applied_pos,2666 postimage->line,2667 postimage->nr *sizeof(*img->line));2668if(!allow_overlap)2669for(i =0; i < postimage->nr; i++)2670 img->line[applied_pos + i].flag |= LINE_PATCHED;2671 img->nr = nr;2672}26732674/*2675 * Use the patch-hunk text in "frag" to prepare two images (preimage and2676 * postimage) for the hunk. Find lines that match "preimage" in "img" and2677 * replace the part of "img" with "postimage" text.2678 */2679static intapply_one_fragment(struct image *img,struct fragment *frag,2680int inaccurate_eof,unsigned ws_rule,2681int nth_fragment)2682{2683int match_beginning, match_end;2684const char*patch = frag->patch;2685int size = frag->size;2686char*old, *oldlines;2687struct strbuf newlines;2688int new_blank_lines_at_end =0;2689int found_new_blank_lines_at_end =0;2690int hunk_linenr = frag->linenr;2691unsigned long leading, trailing;2692int pos, applied_pos;2693struct image preimage;2694struct image postimage;26952696memset(&preimage,0,sizeof(preimage));2697memset(&postimage,0,sizeof(postimage));2698 oldlines =xmalloc(size);2699strbuf_init(&newlines, size);27002701 old = oldlines;2702while(size >0) {2703char first;2704int len =linelen(patch, size);2705int plen;2706int added_blank_line =0;2707int is_blank_context =0;2708size_t start;27092710if(!len)2711break;27122713/*2714 * "plen" is how much of the line we should use for2715 * the actual patch data. Normally we just remove the2716 * first character on the line, but if the line is2717 * followed by "\ No newline", then we also remove the2718 * last one (which is the newline, of course).2719 */2720 plen = len -1;2721if(len < size && patch[len] =='\\')2722 plen--;2723 first = *patch;2724if(apply_in_reverse) {2725if(first =='-')2726 first ='+';2727else if(first =='+')2728 first ='-';2729}27302731switch(first) {2732case'\n':2733/* Newer GNU diff, empty context line */2734if(plen <0)2735/* ... followed by '\No newline'; nothing */2736break;2737*old++ ='\n';2738strbuf_addch(&newlines,'\n');2739add_line_info(&preimage,"\n",1, LINE_COMMON);2740add_line_info(&postimage,"\n",1, LINE_COMMON);2741 is_blank_context =1;2742break;2743case' ':2744if(plen && (ws_rule & WS_BLANK_AT_EOF) &&2745ws_blank_line(patch +1, plen, ws_rule))2746 is_blank_context =1;2747case'-':2748memcpy(old, patch +1, plen);2749add_line_info(&preimage, old, plen,2750(first ==' '? LINE_COMMON :0));2751 old += plen;2752if(first =='-')2753break;2754/* Fall-through for ' ' */2755case'+':2756/* --no-add does not add new lines */2757if(first =='+'&& no_add)2758break;27592760 start = newlines.len;2761if(first !='+'||2762!whitespace_error ||2763 ws_error_action != correct_ws_error) {2764strbuf_add(&newlines, patch +1, plen);2765}2766else{2767ws_fix_copy(&newlines, patch +1, plen, ws_rule, &applied_after_fixing_ws);2768}2769add_line_info(&postimage, newlines.buf + start, newlines.len - start,2770(first =='+'?0: LINE_COMMON));2771if(first =='+'&&2772(ws_rule & WS_BLANK_AT_EOF) &&2773ws_blank_line(patch +1, plen, ws_rule))2774 added_blank_line =1;2775break;2776case'@':case'\\':2777/* Ignore it, we already handled it */2778break;2779default:2780if(apply_verbosely)2781error(_("invalid start of line: '%c'"), first);2782 applied_pos = -1;2783goto out;2784}2785if(added_blank_line) {2786if(!new_blank_lines_at_end)2787 found_new_blank_lines_at_end = hunk_linenr;2788 new_blank_lines_at_end++;2789}2790else if(is_blank_context)2791;2792else2793 new_blank_lines_at_end =0;2794 patch += len;2795 size -= len;2796 hunk_linenr++;2797}2798if(inaccurate_eof &&2799 old > oldlines && old[-1] =='\n'&&2800 newlines.len >0&& newlines.buf[newlines.len -1] =='\n') {2801 old--;2802strbuf_setlen(&newlines, newlines.len -1);2803}28042805 leading = frag->leading;2806 trailing = frag->trailing;28072808/*2809 * A hunk to change lines at the beginning would begin with2810 * @@ -1,L +N,M @@2811 * but we need to be careful. -U0 that inserts before the second2812 * line also has this pattern.2813 *2814 * And a hunk to add to an empty file would begin with2815 * @@ -0,0 +N,M @@2816 *2817 * In other words, a hunk that is (frag->oldpos <= 1) with or2818 * without leading context must match at the beginning.2819 */2820 match_beginning = (!frag->oldpos ||2821(frag->oldpos ==1&& !unidiff_zero));28222823/*2824 * A hunk without trailing lines must match at the end.2825 * However, we simply cannot tell if a hunk must match end2826 * from the lack of trailing lines if the patch was generated2827 * with unidiff without any context.2828 */2829 match_end = !unidiff_zero && !trailing;28302831 pos = frag->newpos ? (frag->newpos -1) :0;2832 preimage.buf = oldlines;2833 preimage.len = old - oldlines;2834 postimage.buf = newlines.buf;2835 postimage.len = newlines.len;2836 preimage.line = preimage.line_allocated;2837 postimage.line = postimage.line_allocated;28382839for(;;) {28402841 applied_pos =find_pos(img, &preimage, &postimage, pos,2842 ws_rule, match_beginning, match_end);28432844if(applied_pos >=0)2845break;28462847/* Am I at my context limits? */2848if((leading <= p_context) && (trailing <= p_context))2849break;2850if(match_beginning || match_end) {2851 match_beginning = match_end =0;2852continue;2853}28542855/*2856 * Reduce the number of context lines; reduce both2857 * leading and trailing if they are equal otherwise2858 * just reduce the larger context.2859 */2860if(leading >= trailing) {2861remove_first_line(&preimage);2862remove_first_line(&postimage);2863 pos--;2864 leading--;2865}2866if(trailing > leading) {2867remove_last_line(&preimage);2868remove_last_line(&postimage);2869 trailing--;2870}2871}28722873if(applied_pos >=0) {2874if(new_blank_lines_at_end &&2875 preimage.nr + applied_pos >= img->nr &&2876(ws_rule & WS_BLANK_AT_EOF) &&2877 ws_error_action != nowarn_ws_error) {2878record_ws_error(WS_BLANK_AT_EOF,"+",1,2879 found_new_blank_lines_at_end);2880if(ws_error_action == correct_ws_error) {2881while(new_blank_lines_at_end--)2882remove_last_line(&postimage);2883}2884/*2885 * We would want to prevent write_out_results()2886 * from taking place in apply_patch() that follows2887 * the callchain led us here, which is:2888 * apply_patch->check_patch_list->check_patch->2889 * apply_data->apply_fragments->apply_one_fragment2890 */2891if(ws_error_action == die_on_ws_error)2892 apply =0;2893}28942895if(apply_verbosely && applied_pos != pos) {2896int offset = applied_pos - pos;2897if(apply_in_reverse)2898 offset =0- offset;2899fprintf_ln(stderr,2900Q_("Hunk #%dsucceeded at%d(offset%dline).",2901"Hunk #%dsucceeded at%d(offset%dlines).",2902 offset),2903 nth_fragment, applied_pos +1, offset);2904}29052906/*2907 * Warn if it was necessary to reduce the number2908 * of context lines.2909 */2910if((leading != frag->leading) ||2911(trailing != frag->trailing))2912fprintf_ln(stderr,_("Context reduced to (%ld/%ld)"2913" to apply fragment at%d"),2914 leading, trailing, applied_pos+1);2915update_image(img, applied_pos, &preimage, &postimage);2916}else{2917if(apply_verbosely)2918error(_("while searching for:\n%.*s"),2919(int)(old - oldlines), oldlines);2920}29212922out:2923free(oldlines);2924strbuf_release(&newlines);2925free(preimage.line_allocated);2926free(postimage.line_allocated);29272928return(applied_pos <0);2929}29302931static intapply_binary_fragment(struct image *img,struct patch *patch)2932{2933struct fragment *fragment = patch->fragments;2934unsigned long len;2935void*dst;29362937if(!fragment)2938returnerror(_("missing binary patch data for '%s'"),2939 patch->new_name ?2940 patch->new_name :2941 patch->old_name);29422943/* Binary patch is irreversible without the optional second hunk */2944if(apply_in_reverse) {2945if(!fragment->next)2946returnerror("cannot reverse-apply a binary patch "2947"without the reverse hunk to '%s'",2948 patch->new_name2949? patch->new_name : patch->old_name);2950 fragment = fragment->next;2951}2952switch(fragment->binary_patch_method) {2953case BINARY_DELTA_DEFLATED:2954 dst =patch_delta(img->buf, img->len, fragment->patch,2955 fragment->size, &len);2956if(!dst)2957return-1;2958clear_image(img);2959 img->buf = dst;2960 img->len = len;2961return0;2962case BINARY_LITERAL_DEFLATED:2963clear_image(img);2964 img->len = fragment->size;2965 img->buf =xmemdupz(fragment->patch, img->len);2966return0;2967}2968return-1;2969}29702971/*2972 * Replace "img" with the result of applying the binary patch.2973 * The binary patch data itself in patch->fragment is still kept2974 * but the preimage prepared by the caller in "img" is freed here2975 * or in the helper function apply_binary_fragment() this calls.2976 */2977static intapply_binary(struct image *img,struct patch *patch)2978{2979const char*name = patch->old_name ? patch->old_name : patch->new_name;2980unsigned char sha1[20];29812982/*2983 * For safety, we require patch index line to contain2984 * full 40-byte textual SHA1 for old and new, at least for now.2985 */2986if(strlen(patch->old_sha1_prefix) !=40||2987strlen(patch->new_sha1_prefix) !=40||2988get_sha1_hex(patch->old_sha1_prefix, sha1) ||2989get_sha1_hex(patch->new_sha1_prefix, sha1))2990returnerror("cannot apply binary patch to '%s' "2991"without full index line", name);29922993if(patch->old_name) {2994/*2995 * See if the old one matches what the patch2996 * applies to.2997 */2998hash_sha1_file(img->buf, img->len, blob_type, sha1);2999if(strcmp(sha1_to_hex(sha1), patch->old_sha1_prefix))3000returnerror("the patch applies to '%s' (%s), "3001"which does not match the "3002"current contents.",3003 name,sha1_to_hex(sha1));3004}3005else{3006/* Otherwise, the old one must be empty. */3007if(img->len)3008returnerror("the patch applies to an empty "3009"'%s' but it is not empty", name);3010}30113012get_sha1_hex(patch->new_sha1_prefix, sha1);3013if(is_null_sha1(sha1)) {3014clear_image(img);3015return0;/* deletion patch */3016}30173018if(has_sha1_file(sha1)) {3019/* We already have the postimage */3020enum object_type type;3021unsigned long size;3022char*result;30233024 result =read_sha1_file(sha1, &type, &size);3025if(!result)3026returnerror("the necessary postimage%sfor "3027"'%s' cannot be read",3028 patch->new_sha1_prefix, name);3029clear_image(img);3030 img->buf = result;3031 img->len = size;3032}else{3033/*3034 * We have verified buf matches the preimage;3035 * apply the patch data to it, which is stored3036 * in the patch->fragments->{patch,size}.3037 */3038if(apply_binary_fragment(img, patch))3039returnerror(_("binary patch does not apply to '%s'"),3040 name);30413042/* verify that the result matches */3043hash_sha1_file(img->buf, img->len, blob_type, sha1);3044if(strcmp(sha1_to_hex(sha1), patch->new_sha1_prefix))3045returnerror(_("binary patch to '%s' creates incorrect result (expecting%s, got%s)"),3046 name, patch->new_sha1_prefix,sha1_to_hex(sha1));3047}30483049return0;3050}30513052static intapply_fragments(struct image *img,struct patch *patch)3053{3054struct fragment *frag = patch->fragments;3055const char*name = patch->old_name ? patch->old_name : patch->new_name;3056unsigned ws_rule = patch->ws_rule;3057unsigned inaccurate_eof = patch->inaccurate_eof;3058int nth =0;30593060if(patch->is_binary)3061returnapply_binary(img, patch);30623063while(frag) {3064 nth++;3065if(apply_one_fragment(img, frag, inaccurate_eof, ws_rule, nth)) {3066error(_("patch failed:%s:%ld"), name, frag->oldpos);3067if(!apply_with_reject)3068return-1;3069 frag->rejected =1;3070}3071 frag = frag->next;3072}3073return0;3074}30753076static intread_blob_object(struct strbuf *buf,const unsigned char*sha1,unsigned mode)3077{3078if(S_ISGITLINK(mode)) {3079strbuf_grow(buf,100);3080strbuf_addf(buf,"Subproject commit%s\n",sha1_to_hex(sha1));3081}else{3082enum object_type type;3083unsigned long sz;3084char*result;30853086 result =read_sha1_file(sha1, &type, &sz);3087if(!result)3088return-1;3089/* XXX read_sha1_file NUL-terminates */3090strbuf_attach(buf, result, sz, sz +1);3091}3092return0;3093}30943095static intread_file_or_gitlink(const struct cache_entry *ce,struct strbuf *buf)3096{3097if(!ce)3098return0;3099returnread_blob_object(buf, ce->sha1, ce->ce_mode);3100}31013102static struct patch *in_fn_table(const char*name)3103{3104struct string_list_item *item;31053106if(name == NULL)3107return NULL;31083109 item =string_list_lookup(&fn_table, name);3110if(item != NULL)3111return(struct patch *)item->util;31123113return NULL;3114}31153116/*3117 * item->util in the filename table records the status of the path.3118 * Usually it points at a patch (whose result records the contents3119 * of it after applying it), but it could be PATH_WAS_DELETED for a3120 * path that a previously applied patch has already removed, or3121 * PATH_TO_BE_DELETED for a path that a later patch would remove.3122 *3123 * The latter is needed to deal with a case where two paths A and B3124 * are swapped by first renaming A to B and then renaming B to A;3125 * moving A to B should not be prevented due to presence of B as we3126 * will remove it in a later patch.3127 */3128#define PATH_TO_BE_DELETED ((struct patch *) -2)3129#define PATH_WAS_DELETED ((struct patch *) -1)31303131static intto_be_deleted(struct patch *patch)3132{3133return patch == PATH_TO_BE_DELETED;3134}31353136static intwas_deleted(struct patch *patch)3137{3138return patch == PATH_WAS_DELETED;3139}31403141static voidadd_to_fn_table(struct patch *patch)3142{3143struct string_list_item *item;31443145/*3146 * Always add new_name unless patch is a deletion3147 * This should cover the cases for normal diffs,3148 * file creations and copies3149 */3150if(patch->new_name != NULL) {3151 item =string_list_insert(&fn_table, patch->new_name);3152 item->util = patch;3153}31543155/*3156 * store a failure on rename/deletion cases because3157 * later chunks shouldn't patch old names3158 */3159if((patch->new_name == NULL) || (patch->is_rename)) {3160 item =string_list_insert(&fn_table, patch->old_name);3161 item->util = PATH_WAS_DELETED;3162}3163}31643165static voidprepare_fn_table(struct patch *patch)3166{3167/*3168 * store information about incoming file deletion3169 */3170while(patch) {3171if((patch->new_name == NULL) || (patch->is_rename)) {3172struct string_list_item *item;3173 item =string_list_insert(&fn_table, patch->old_name);3174 item->util = PATH_TO_BE_DELETED;3175}3176 patch = patch->next;3177}3178}31793180static intcheckout_target(struct index_state *istate,3181struct cache_entry *ce,struct stat *st)3182{3183struct checkout costate;31843185memset(&costate,0,sizeof(costate));3186 costate.base_dir ="";3187 costate.refresh_cache =1;3188 costate.istate = istate;3189if(checkout_entry(ce, &costate, NULL) ||lstat(ce->name, st))3190returnerror(_("cannot checkout%s"), ce->name);3191return0;3192}31933194static struct patch *previous_patch(struct patch *patch,int*gone)3195{3196struct patch *previous;31973198*gone =0;3199if(patch->is_copy || patch->is_rename)3200return NULL;/* "git" patches do not depend on the order */32013202 previous =in_fn_table(patch->old_name);3203if(!previous)3204return NULL;32053206if(to_be_deleted(previous))3207return NULL;/* the deletion hasn't happened yet */32083209if(was_deleted(previous))3210*gone =1;32113212return previous;3213}32143215static intverify_index_match(const struct cache_entry *ce,struct stat *st)3216{3217if(S_ISGITLINK(ce->ce_mode)) {3218if(!S_ISDIR(st->st_mode))3219return-1;3220return0;3221}3222returnce_match_stat(ce, st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);3223}32243225#define SUBMODULE_PATCH_WITHOUT_INDEX 132263227static intload_patch_target(struct strbuf *buf,3228const struct cache_entry *ce,3229struct stat *st,3230const char*name,3231unsigned expected_mode)3232{3233if(cached || check_index) {3234if(read_file_or_gitlink(ce, buf))3235returnerror(_("read of%sfailed"), name);3236}else if(name) {3237if(S_ISGITLINK(expected_mode)) {3238if(ce)3239returnread_file_or_gitlink(ce, buf);3240else3241return SUBMODULE_PATCH_WITHOUT_INDEX;3242}else if(has_symlink_leading_path(name,strlen(name))) {3243returnerror(_("reading from '%s' beyond a symbolic link"), name);3244}else{3245if(read_old_data(st, name, buf))3246returnerror(_("read of%sfailed"), name);3247}3248}3249return0;3250}32513252/*3253 * We are about to apply "patch"; populate the "image" with the3254 * current version we have, from the working tree or from the index,3255 * depending on the situation e.g. --cached/--index. If we are3256 * applying a non-git patch that incrementally updates the tree,3257 * we read from the result of a previous diff.3258 */3259static intload_preimage(struct image *image,3260struct patch *patch,struct stat *st,3261const struct cache_entry *ce)3262{3263struct strbuf buf = STRBUF_INIT;3264size_t len;3265char*img;3266struct patch *previous;3267int status;32683269 previous =previous_patch(patch, &status);3270if(status)3271returnerror(_("path%shas been renamed/deleted"),3272 patch->old_name);3273if(previous) {3274/* We have a patched copy in memory; use that. */3275strbuf_add(&buf, previous->result, previous->resultsize);3276}else{3277 status =load_patch_target(&buf, ce, st,3278 patch->old_name, patch->old_mode);3279if(status <0)3280return status;3281else if(status == SUBMODULE_PATCH_WITHOUT_INDEX) {3282/*3283 * There is no way to apply subproject3284 * patch without looking at the index.3285 * NEEDSWORK: shouldn't this be flagged3286 * as an error???3287 */3288free_fragment_list(patch->fragments);3289 patch->fragments = NULL;3290}else if(status) {3291returnerror(_("read of%sfailed"), patch->old_name);3292}3293}32943295 img =strbuf_detach(&buf, &len);3296prepare_image(image, img, len, !patch->is_binary);3297return0;3298}32993300static intthree_way_merge(struct image *image,3301char*path,3302const unsigned char*base,3303const unsigned char*ours,3304const unsigned char*theirs)3305{3306 mmfile_t base_file, our_file, their_file;3307 mmbuffer_t result = { NULL };3308int status;33093310read_mmblob(&base_file, base);3311read_mmblob(&our_file, ours);3312read_mmblob(&their_file, theirs);3313 status =ll_merge(&result, path,3314&base_file,"base",3315&our_file,"ours",3316&their_file,"theirs", NULL);3317free(base_file.ptr);3318free(our_file.ptr);3319free(their_file.ptr);3320if(status <0|| !result.ptr) {3321free(result.ptr);3322return-1;3323}3324clear_image(image);3325 image->buf = result.ptr;3326 image->len = result.size;33273328return status;3329}33303331/*3332 * When directly falling back to add/add three-way merge, we read from3333 * the current contents of the new_name. In no cases other than that3334 * this function will be called.3335 */3336static intload_current(struct image *image,struct patch *patch)3337{3338struct strbuf buf = STRBUF_INIT;3339int status, pos;3340size_t len;3341char*img;3342struct stat st;3343struct cache_entry *ce;3344char*name = patch->new_name;3345unsigned mode = patch->new_mode;33463347if(!patch->is_new)3348die("BUG: patch to%sis not a creation", patch->old_name);33493350 pos =cache_name_pos(name,strlen(name));3351if(pos <0)3352returnerror(_("%s: does not exist in index"), name);3353 ce = active_cache[pos];3354if(lstat(name, &st)) {3355if(errno != ENOENT)3356returnerror(_("%s:%s"), name,strerror(errno));3357if(checkout_target(&the_index, ce, &st))3358return-1;3359}3360if(verify_index_match(ce, &st))3361returnerror(_("%s: does not match index"), name);33623363 status =load_patch_target(&buf, ce, &st, name, mode);3364if(status <0)3365return status;3366else if(status)3367return-1;3368 img =strbuf_detach(&buf, &len);3369prepare_image(image, img, len, !patch->is_binary);3370return0;3371}33723373static inttry_threeway(struct image *image,struct patch *patch,3374struct stat *st,const struct cache_entry *ce)3375{3376unsigned char pre_sha1[20], post_sha1[20], our_sha1[20];3377struct strbuf buf = STRBUF_INIT;3378size_t len;3379int status;3380char*img;3381struct image tmp_image;33823383/* No point falling back to 3-way merge in these cases */3384if(patch->is_delete ||3385S_ISGITLINK(patch->old_mode) ||S_ISGITLINK(patch->new_mode))3386return-1;33873388/* Preimage the patch was prepared for */3389if(patch->is_new)3390write_sha1_file("",0, blob_type, pre_sha1);3391else if(get_sha1(patch->old_sha1_prefix, pre_sha1) ||3392read_blob_object(&buf, pre_sha1, patch->old_mode))3393returnerror("repository lacks the necessary blob to fall back on 3-way merge.");33943395fprintf(stderr,"Falling back to three-way merge...\n");33963397 img =strbuf_detach(&buf, &len);3398prepare_image(&tmp_image, img, len,1);3399/* Apply the patch to get the post image */3400if(apply_fragments(&tmp_image, patch) <0) {3401clear_image(&tmp_image);3402return-1;3403}3404/* post_sha1[] is theirs */3405write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, post_sha1);3406clear_image(&tmp_image);34073408/* our_sha1[] is ours */3409if(patch->is_new) {3410if(load_current(&tmp_image, patch))3411returnerror("cannot read the current contents of '%s'",3412 patch->new_name);3413}else{3414if(load_preimage(&tmp_image, patch, st, ce))3415returnerror("cannot read the current contents of '%s'",3416 patch->old_name);3417}3418write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, our_sha1);3419clear_image(&tmp_image);34203421/* in-core three-way merge between post and our using pre as base */3422 status =three_way_merge(image, patch->new_name,3423 pre_sha1, our_sha1, post_sha1);3424if(status <0) {3425fprintf(stderr,"Failed to fall back on three-way merge...\n");3426return status;3427}34283429if(status) {3430 patch->conflicted_threeway =1;3431if(patch->is_new)3432oidclr(&patch->threeway_stage[0]);3433else3434hashcpy(patch->threeway_stage[0].hash, pre_sha1);3435hashcpy(patch->threeway_stage[1].hash, our_sha1);3436hashcpy(patch->threeway_stage[2].hash, post_sha1);3437fprintf(stderr,"Applied patch to '%s' with conflicts.\n", patch->new_name);3438}else{3439fprintf(stderr,"Applied patch to '%s' cleanly.\n", patch->new_name);3440}3441return0;3442}34433444static intapply_data(struct patch *patch,struct stat *st,const struct cache_entry *ce)3445{3446struct image image;34473448if(load_preimage(&image, patch, st, ce) <0)3449return-1;34503451if(patch->direct_to_threeway ||3452apply_fragments(&image, patch) <0) {3453/* Note: with --reject, apply_fragments() returns 0 */3454if(!threeway ||try_threeway(&image, patch, st, ce) <0)3455return-1;3456}3457 patch->result = image.buf;3458 patch->resultsize = image.len;3459add_to_fn_table(patch);3460free(image.line_allocated);34613462if(0< patch->is_delete && patch->resultsize)3463returnerror(_("removal patch leaves file contents"));34643465return0;3466}34673468/*3469 * If "patch" that we are looking at modifies or deletes what we have,3470 * we would want it not to lose any local modification we have, either3471 * in the working tree or in the index.3472 *3473 * This also decides if a non-git patch is a creation patch or a3474 * modification to an existing empty file. We do not check the state3475 * of the current tree for a creation patch in this function; the caller3476 * check_patch() separately makes sure (and errors out otherwise) that3477 * the path the patch creates does not exist in the current tree.3478 */3479static intcheck_preimage(struct patch *patch,struct cache_entry **ce,struct stat *st)3480{3481const char*old_name = patch->old_name;3482struct patch *previous = NULL;3483int stat_ret =0, status;3484unsigned st_mode =0;34853486if(!old_name)3487return0;34883489assert(patch->is_new <=0);3490 previous =previous_patch(patch, &status);34913492if(status)3493returnerror(_("path%shas been renamed/deleted"), old_name);3494if(previous) {3495 st_mode = previous->new_mode;3496}else if(!cached) {3497 stat_ret =lstat(old_name, st);3498if(stat_ret && errno != ENOENT)3499returnerror(_("%s:%s"), old_name,strerror(errno));3500}35013502if(check_index && !previous) {3503int pos =cache_name_pos(old_name,strlen(old_name));3504if(pos <0) {3505if(patch->is_new <0)3506goto is_new;3507returnerror(_("%s: does not exist in index"), old_name);3508}3509*ce = active_cache[pos];3510if(stat_ret <0) {3511if(checkout_target(&the_index, *ce, st))3512return-1;3513}3514if(!cached &&verify_index_match(*ce, st))3515returnerror(_("%s: does not match index"), old_name);3516if(cached)3517 st_mode = (*ce)->ce_mode;3518}else if(stat_ret <0) {3519if(patch->is_new <0)3520goto is_new;3521returnerror(_("%s:%s"), old_name,strerror(errno));3522}35233524if(!cached && !previous)3525 st_mode =ce_mode_from_stat(*ce, st->st_mode);35263527if(patch->is_new <0)3528 patch->is_new =0;3529if(!patch->old_mode)3530 patch->old_mode = st_mode;3531if((st_mode ^ patch->old_mode) & S_IFMT)3532returnerror(_("%s: wrong type"), old_name);3533if(st_mode != patch->old_mode)3534warning(_("%shas type%o, expected%o"),3535 old_name, st_mode, patch->old_mode);3536if(!patch->new_mode && !patch->is_delete)3537 patch->new_mode = st_mode;3538return0;35393540 is_new:3541 patch->is_new =1;3542 patch->is_delete =0;3543free(patch->old_name);3544 patch->old_name = NULL;3545return0;3546}354735483549#define EXISTS_IN_INDEX 13550#define EXISTS_IN_WORKTREE 235513552static intcheck_to_create(const char*new_name,int ok_if_exists)3553{3554struct stat nst;35553556if(check_index &&3557cache_name_pos(new_name,strlen(new_name)) >=0&&3558!ok_if_exists)3559return EXISTS_IN_INDEX;3560if(cached)3561return0;35623563if(!lstat(new_name, &nst)) {3564if(S_ISDIR(nst.st_mode) || ok_if_exists)3565return0;3566/*3567 * A leading component of new_name might be a symlink3568 * that is going to be removed with this patch, but3569 * still pointing at somewhere that has the path.3570 * In such a case, path "new_name" does not exist as3571 * far as git is concerned.3572 */3573if(has_symlink_leading_path(new_name,strlen(new_name)))3574return0;35753576return EXISTS_IN_WORKTREE;3577}else if((errno != ENOENT) && (errno != ENOTDIR)) {3578returnerror("%s:%s", new_name,strerror(errno));3579}3580return0;3581}35823583/*3584 * We need to keep track of how symlinks in the preimage are3585 * manipulated by the patches. A patch to add a/b/c where a/b3586 * is a symlink should not be allowed to affect the directory3587 * the symlink points at, but if the same patch removes a/b,3588 * it is perfectly fine, as the patch removes a/b to make room3589 * to create a directory a/b so that a/b/c can be created.3590 */3591static struct string_list symlink_changes;3592#define SYMLINK_GOES_AWAY 013593#define SYMLINK_IN_RESULT 0235943595static uintptr_tregister_symlink_changes(const char*path,uintptr_t what)3596{3597struct string_list_item *ent;35983599 ent =string_list_lookup(&symlink_changes, path);3600if(!ent) {3601 ent =string_list_insert(&symlink_changes, path);3602 ent->util = (void*)0;3603}3604 ent->util = (void*)(what | ((uintptr_t)ent->util));3605return(uintptr_t)ent->util;3606}36073608static uintptr_tcheck_symlink_changes(const char*path)3609{3610struct string_list_item *ent;36113612 ent =string_list_lookup(&symlink_changes, path);3613if(!ent)3614return0;3615return(uintptr_t)ent->util;3616}36173618static voidprepare_symlink_changes(struct patch *patch)3619{3620for( ; patch; patch = patch->next) {3621if((patch->old_name &&S_ISLNK(patch->old_mode)) &&3622(patch->is_rename || patch->is_delete))3623/* the symlink at patch->old_name is removed */3624register_symlink_changes(patch->old_name, SYMLINK_GOES_AWAY);36253626if(patch->new_name &&S_ISLNK(patch->new_mode))3627/* the symlink at patch->new_name is created or remains */3628register_symlink_changes(patch->new_name, SYMLINK_IN_RESULT);3629}3630}36313632static intpath_is_beyond_symlink_1(struct strbuf *name)3633{3634do{3635unsigned int change;36363637while(--name->len && name->buf[name->len] !='/')3638;/* scan backwards */3639if(!name->len)3640break;3641 name->buf[name->len] ='\0';3642 change =check_symlink_changes(name->buf);3643if(change & SYMLINK_IN_RESULT)3644return1;3645if(change & SYMLINK_GOES_AWAY)3646/*3647 * This cannot be "return 0", because we may3648 * see a new one created at a higher level.3649 */3650continue;36513652/* otherwise, check the preimage */3653if(check_index) {3654struct cache_entry *ce;36553656 ce =cache_file_exists(name->buf, name->len, ignore_case);3657if(ce &&S_ISLNK(ce->ce_mode))3658return1;3659}else{3660struct stat st;3661if(!lstat(name->buf, &st) &&S_ISLNK(st.st_mode))3662return1;3663}3664}while(1);3665return0;3666}36673668static intpath_is_beyond_symlink(const char*name_)3669{3670int ret;3671struct strbuf name = STRBUF_INIT;36723673assert(*name_ !='\0');3674strbuf_addstr(&name, name_);3675 ret =path_is_beyond_symlink_1(&name);3676strbuf_release(&name);36773678return ret;3679}36803681static voiddie_on_unsafe_path(struct patch *patch)3682{3683const char*old_name = NULL;3684const char*new_name = NULL;3685if(patch->is_delete)3686 old_name = patch->old_name;3687else if(!patch->is_new && !patch->is_copy)3688 old_name = patch->old_name;3689if(!patch->is_delete)3690 new_name = patch->new_name;36913692if(old_name && !verify_path(old_name))3693die(_("invalid path '%s'"), old_name);3694if(new_name && !verify_path(new_name))3695die(_("invalid path '%s'"), new_name);3696}36973698/*3699 * Check and apply the patch in-core; leave the result in patch->result3700 * for the caller to write it out to the final destination.3701 */3702static intcheck_patch(struct patch *patch)3703{3704struct stat st;3705const char*old_name = patch->old_name;3706const char*new_name = patch->new_name;3707const char*name = old_name ? old_name : new_name;3708struct cache_entry *ce = NULL;3709struct patch *tpatch;3710int ok_if_exists;3711int status;37123713 patch->rejected =1;/* we will drop this after we succeed */37143715 status =check_preimage(patch, &ce, &st);3716if(status)3717return status;3718 old_name = patch->old_name;37193720/*3721 * A type-change diff is always split into a patch to delete3722 * old, immediately followed by a patch to create new (see3723 * diff.c::run_diff()); in such a case it is Ok that the entry3724 * to be deleted by the previous patch is still in the working3725 * tree and in the index.3726 *3727 * A patch to swap-rename between A and B would first rename A3728 * to B and then rename B to A. While applying the first one,3729 * the presence of B should not stop A from getting renamed to3730 * B; ask to_be_deleted() about the later rename. Removal of3731 * B and rename from A to B is handled the same way by asking3732 * was_deleted().3733 */3734if((tpatch =in_fn_table(new_name)) &&3735(was_deleted(tpatch) ||to_be_deleted(tpatch)))3736 ok_if_exists =1;3737else3738 ok_if_exists =0;37393740if(new_name &&3741((0< patch->is_new) || patch->is_rename || patch->is_copy)) {3742int err =check_to_create(new_name, ok_if_exists);37433744if(err && threeway) {3745 patch->direct_to_threeway =1;3746}else switch(err) {3747case0:3748break;/* happy */3749case EXISTS_IN_INDEX:3750returnerror(_("%s: already exists in index"), new_name);3751break;3752case EXISTS_IN_WORKTREE:3753returnerror(_("%s: already exists in working directory"),3754 new_name);3755default:3756return err;3757}37583759if(!patch->new_mode) {3760if(0< patch->is_new)3761 patch->new_mode = S_IFREG |0644;3762else3763 patch->new_mode = patch->old_mode;3764}3765}37663767if(new_name && old_name) {3768int same = !strcmp(old_name, new_name);3769if(!patch->new_mode)3770 patch->new_mode = patch->old_mode;3771if((patch->old_mode ^ patch->new_mode) & S_IFMT) {3772if(same)3773returnerror(_("new mode (%o) of%sdoes not "3774"match old mode (%o)"),3775 patch->new_mode, new_name,3776 patch->old_mode);3777else3778returnerror(_("new mode (%o) of%sdoes not "3779"match old mode (%o) of%s"),3780 patch->new_mode, new_name,3781 patch->old_mode, old_name);3782}3783}37843785if(!unsafe_paths)3786die_on_unsafe_path(patch);37873788/*3789 * An attempt to read from or delete a path that is beyond a3790 * symbolic link will be prevented by load_patch_target() that3791 * is called at the beginning of apply_data() so we do not3792 * have to worry about a patch marked with "is_delete" bit3793 * here. We however need to make sure that the patch result3794 * is not deposited to a path that is beyond a symbolic link3795 * here.3796 */3797if(!patch->is_delete &&path_is_beyond_symlink(patch->new_name))3798returnerror(_("affected file '%s' is beyond a symbolic link"),3799 patch->new_name);38003801if(apply_data(patch, &st, ce) <0)3802returnerror(_("%s: patch does not apply"), name);3803 patch->rejected =0;3804return0;3805}38063807static intcheck_patch_list(struct patch *patch)3808{3809int err =0;38103811prepare_symlink_changes(patch);3812prepare_fn_table(patch);3813while(patch) {3814if(apply_verbosely)3815say_patch_name(stderr,3816_("Checking patch%s..."), patch);3817 err |=check_patch(patch);3818 patch = patch->next;3819}3820return err;3821}38223823/* This function tries to read the sha1 from the current index */3824static intget_current_sha1(const char*path,unsigned char*sha1)3825{3826int pos;38273828if(read_cache() <0)3829return-1;3830 pos =cache_name_pos(path,strlen(path));3831if(pos <0)3832return-1;3833hashcpy(sha1, active_cache[pos]->sha1);3834return0;3835}38363837static intpreimage_sha1_in_gitlink_patch(struct patch *p,unsigned char sha1[20])3838{3839/*3840 * A usable gitlink patch has only one fragment (hunk) that looks like:3841 * @@ -1 +1 @@3842 * -Subproject commit <old sha1>3843 * +Subproject commit <new sha1>3844 * or3845 * @@ -1 +0,0 @@3846 * -Subproject commit <old sha1>3847 * for a removal patch.3848 */3849struct fragment *hunk = p->fragments;3850static const char heading[] ="-Subproject commit ";3851char*preimage;38523853if(/* does the patch have only one hunk? */3854 hunk && !hunk->next &&3855/* is its preimage one line? */3856 hunk->oldpos ==1&& hunk->oldlines ==1&&3857/* does preimage begin with the heading? */3858(preimage =memchr(hunk->patch,'\n', hunk->size)) != NULL &&3859starts_with(++preimage, heading) &&3860/* does it record full SHA-1? */3861!get_sha1_hex(preimage +sizeof(heading) -1, sha1) &&3862 preimage[sizeof(heading) +40-1] =='\n'&&3863/* does the abbreviated name on the index line agree with it? */3864starts_with(preimage +sizeof(heading) -1, p->old_sha1_prefix))3865return0;/* it all looks fine */38663867/* we may have full object name on the index line */3868returnget_sha1_hex(p->old_sha1_prefix, sha1);3869}38703871/* Build an index that contains the just the files needed for a 3way merge */3872static voidbuild_fake_ancestor(struct patch *list,const char*filename)3873{3874struct patch *patch;3875struct index_state result = { NULL };3876static struct lock_file lock;38773878/* Once we start supporting the reverse patch, it may be3879 * worth showing the new sha1 prefix, but until then...3880 */3881for(patch = list; patch; patch = patch->next) {3882unsigned char sha1[20];3883struct cache_entry *ce;3884const char*name;38853886 name = patch->old_name ? patch->old_name : patch->new_name;3887if(0< patch->is_new)3888continue;38893890if(S_ISGITLINK(patch->old_mode)) {3891if(!preimage_sha1_in_gitlink_patch(patch, sha1))3892;/* ok, the textual part looks sane */3893else3894die("sha1 information is lacking or useless for submodule%s",3895 name);3896}else if(!get_sha1_blob(patch->old_sha1_prefix, sha1)) {3897;/* ok */3898}else if(!patch->lines_added && !patch->lines_deleted) {3899/* mode-only change: update the current */3900if(get_current_sha1(patch->old_name, sha1))3901die("mode change for%s, which is not "3902"in current HEAD", name);3903}else3904die("sha1 information is lacking or useless "3905"(%s).", name);39063907 ce =make_cache_entry(patch->old_mode, sha1, name,0,0);3908if(!ce)3909die(_("make_cache_entry failed for path '%s'"), name);3910if(add_index_entry(&result, ce, ADD_CACHE_OK_TO_ADD))3911die("Could not add%sto temporary index", name);3912}39133914hold_lock_file_for_update(&lock, filename, LOCK_DIE_ON_ERROR);3915if(write_locked_index(&result, &lock, COMMIT_LOCK))3916die("Could not write temporary index to%s", filename);39173918discard_index(&result);3919}39203921static voidstat_patch_list(struct patch *patch)3922{3923int files, adds, dels;39243925for(files = adds = dels =0; patch ; patch = patch->next) {3926 files++;3927 adds += patch->lines_added;3928 dels += patch->lines_deleted;3929show_stats(patch);3930}39313932print_stat_summary(stdout, files, adds, dels);3933}39343935static voidnumstat_patch_list(struct patch *patch)3936{3937for( ; patch; patch = patch->next) {3938const char*name;3939 name = patch->new_name ? patch->new_name : patch->old_name;3940if(patch->is_binary)3941printf("-\t-\t");3942else3943printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);3944write_name_quoted(name, stdout, line_termination);3945}3946}39473948static voidshow_file_mode_name(const char*newdelete,unsigned int mode,const char*name)3949{3950if(mode)3951printf("%smode%06o%s\n", newdelete, mode, name);3952else3953printf("%s %s\n", newdelete, name);3954}39553956static voidshow_mode_change(struct patch *p,int show_name)3957{3958if(p->old_mode && p->new_mode && p->old_mode != p->new_mode) {3959if(show_name)3960printf(" mode change%06o =>%06o%s\n",3961 p->old_mode, p->new_mode, p->new_name);3962else3963printf(" mode change%06o =>%06o\n",3964 p->old_mode, p->new_mode);3965}3966}39673968static voidshow_rename_copy(struct patch *p)3969{3970const char*renamecopy = p->is_rename ?"rename":"copy";3971const char*old, *new;39723973/* Find common prefix */3974 old = p->old_name;3975new= p->new_name;3976while(1) {3977const char*slash_old, *slash_new;3978 slash_old =strchr(old,'/');3979 slash_new =strchr(new,'/');3980if(!slash_old ||3981!slash_new ||3982 slash_old - old != slash_new -new||3983memcmp(old,new, slash_new -new))3984break;3985 old = slash_old +1;3986new= slash_new +1;3987}3988/* p->old_name thru old is the common prefix, and old and new3989 * through the end of names are renames3990 */3991if(old != p->old_name)3992printf("%s%.*s{%s=>%s} (%d%%)\n", renamecopy,3993(int)(old - p->old_name), p->old_name,3994 old,new, p->score);3995else3996printf("%s %s=>%s(%d%%)\n", renamecopy,3997 p->old_name, p->new_name, p->score);3998show_mode_change(p,0);3999}40004001static voidsummary_patch_list(struct patch *patch)4002{4003struct patch *p;40044005for(p = patch; p; p = p->next) {4006if(p->is_new)4007show_file_mode_name("create", p->new_mode, p->new_name);4008else if(p->is_delete)4009show_file_mode_name("delete", p->old_mode, p->old_name);4010else{4011if(p->is_rename || p->is_copy)4012show_rename_copy(p);4013else{4014if(p->score) {4015printf(" rewrite%s(%d%%)\n",4016 p->new_name, p->score);4017show_mode_change(p,0);4018}4019else4020show_mode_change(p,1);4021}4022}4023}4024}40254026static voidpatch_stats(struct patch *patch)4027{4028int lines = patch->lines_added + patch->lines_deleted;40294030if(lines > max_change)4031 max_change = lines;4032if(patch->old_name) {4033int len =quote_c_style(patch->old_name, NULL, NULL,0);4034if(!len)4035 len =strlen(patch->old_name);4036if(len > max_len)4037 max_len = len;4038}4039if(patch->new_name) {4040int len =quote_c_style(patch->new_name, NULL, NULL,0);4041if(!len)4042 len =strlen(patch->new_name);4043if(len > max_len)4044 max_len = len;4045}4046}40474048static voidremove_file(struct patch *patch,int rmdir_empty)4049{4050if(update_index) {4051if(remove_file_from_cache(patch->old_name) <0)4052die(_("unable to remove%sfrom index"), patch->old_name);4053}4054if(!cached) {4055if(!remove_or_warn(patch->old_mode, patch->old_name) && rmdir_empty) {4056remove_path(patch->old_name);4057}4058}4059}40604061static voidadd_index_file(const char*path,unsigned mode,void*buf,unsigned long size)4062{4063struct stat st;4064struct cache_entry *ce;4065int namelen =strlen(path);4066unsigned ce_size =cache_entry_size(namelen);40674068if(!update_index)4069return;40704071 ce =xcalloc(1, ce_size);4072memcpy(ce->name, path, namelen);4073 ce->ce_mode =create_ce_mode(mode);4074 ce->ce_flags =create_ce_flags(0);4075 ce->ce_namelen = namelen;4076if(S_ISGITLINK(mode)) {4077const char*s;40784079if(!skip_prefix(buf,"Subproject commit ", &s) ||4080get_sha1_hex(s, ce->sha1))4081die(_("corrupt patch for submodule%s"), path);4082}else{4083if(!cached) {4084if(lstat(path, &st) <0)4085die_errno(_("unable to stat newly created file '%s'"),4086 path);4087fill_stat_cache_info(ce, &st);4088}4089if(write_sha1_file(buf, size, blob_type, ce->sha1) <0)4090die(_("unable to create backing store for newly created file%s"), path);4091}4092if(add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) <0)4093die(_("unable to add cache entry for%s"), path);4094}40954096static inttry_create_file(const char*path,unsigned int mode,const char*buf,unsigned long size)4097{4098int fd;4099struct strbuf nbuf = STRBUF_INIT;41004101if(S_ISGITLINK(mode)) {4102struct stat st;4103if(!lstat(path, &st) &&S_ISDIR(st.st_mode))4104return0;4105returnmkdir(path,0777);4106}41074108if(has_symlinks &&S_ISLNK(mode))4109/* Although buf:size is counted string, it also is NUL4110 * terminated.4111 */4112returnsymlink(buf, path);41134114 fd =open(path, O_CREAT | O_EXCL | O_WRONLY, (mode &0100) ?0777:0666);4115if(fd <0)4116return-1;41174118if(convert_to_working_tree(path, buf, size, &nbuf)) {4119 size = nbuf.len;4120 buf = nbuf.buf;4121}4122write_or_die(fd, buf, size);4123strbuf_release(&nbuf);41244125if(close(fd) <0)4126die_errno(_("closing file '%s'"), path);4127return0;4128}41294130/*4131 * We optimistically assume that the directories exist,4132 * which is true 99% of the time anyway. If they don't,4133 * we create them and try again.4134 */4135static voidcreate_one_file(char*path,unsigned mode,const char*buf,unsigned long size)4136{4137if(cached)4138return;4139if(!try_create_file(path, mode, buf, size))4140return;41414142if(errno == ENOENT) {4143if(safe_create_leading_directories(path))4144return;4145if(!try_create_file(path, mode, buf, size))4146return;4147}41484149if(errno == EEXIST || errno == EACCES) {4150/* We may be trying to create a file where a directory4151 * used to be.4152 */4153struct stat st;4154if(!lstat(path, &st) && (!S_ISDIR(st.st_mode) || !rmdir(path)))4155 errno = EEXIST;4156}41574158if(errno == EEXIST) {4159unsigned int nr =getpid();41604161for(;;) {4162char newpath[PATH_MAX];4163mksnpath(newpath,sizeof(newpath),"%s~%u", path, nr);4164if(!try_create_file(newpath, mode, buf, size)) {4165if(!rename(newpath, path))4166return;4167unlink_or_warn(newpath);4168break;4169}4170if(errno != EEXIST)4171break;4172++nr;4173}4174}4175die_errno(_("unable to write file '%s' mode%o"), path, mode);4176}41774178static voidadd_conflicted_stages_file(struct patch *patch)4179{4180int stage, namelen;4181unsigned ce_size, mode;4182struct cache_entry *ce;41834184if(!update_index)4185return;4186 namelen =strlen(patch->new_name);4187 ce_size =cache_entry_size(namelen);4188 mode = patch->new_mode ? patch->new_mode : (S_IFREG |0644);41894190remove_file_from_cache(patch->new_name);4191for(stage =1; stage <4; stage++) {4192if(is_null_oid(&patch->threeway_stage[stage -1]))4193continue;4194 ce =xcalloc(1, ce_size);4195memcpy(ce->name, patch->new_name, namelen);4196 ce->ce_mode =create_ce_mode(mode);4197 ce->ce_flags =create_ce_flags(stage);4198 ce->ce_namelen = namelen;4199hashcpy(ce->sha1, patch->threeway_stage[stage -1].hash);4200if(add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) <0)4201die(_("unable to add cache entry for%s"), patch->new_name);4202}4203}42044205static voidcreate_file(struct patch *patch)4206{4207char*path = patch->new_name;4208unsigned mode = patch->new_mode;4209unsigned long size = patch->resultsize;4210char*buf = patch->result;42114212if(!mode)4213 mode = S_IFREG |0644;4214create_one_file(path, mode, buf, size);42154216if(patch->conflicted_threeway)4217add_conflicted_stages_file(patch);4218else4219add_index_file(path, mode, buf, size);4220}42214222/* phase zero is to remove, phase one is to create */4223static voidwrite_out_one_result(struct patch *patch,int phase)4224{4225if(patch->is_delete >0) {4226if(phase ==0)4227remove_file(patch,1);4228return;4229}4230if(patch->is_new >0|| patch->is_copy) {4231if(phase ==1)4232create_file(patch);4233return;4234}4235/*4236 * Rename or modification boils down to the same4237 * thing: remove the old, write the new4238 */4239if(phase ==0)4240remove_file(patch, patch->is_rename);4241if(phase ==1)4242create_file(patch);4243}42444245static intwrite_out_one_reject(struct patch *patch)4246{4247FILE*rej;4248char namebuf[PATH_MAX];4249struct fragment *frag;4250int cnt =0;4251struct strbuf sb = STRBUF_INIT;42524253for(cnt =0, frag = patch->fragments; frag; frag = frag->next) {4254if(!frag->rejected)4255continue;4256 cnt++;4257}42584259if(!cnt) {4260if(apply_verbosely)4261say_patch_name(stderr,4262_("Applied patch%scleanly."), patch);4263return0;4264}42654266/* This should not happen, because a removal patch that leaves4267 * contents are marked "rejected" at the patch level.4268 */4269if(!patch->new_name)4270die(_("internal error"));42714272/* Say this even without --verbose */4273strbuf_addf(&sb,Q_("Applying patch %%swith%dreject...",4274"Applying patch %%swith%drejects...",4275 cnt),4276 cnt);4277say_patch_name(stderr, sb.buf, patch);4278strbuf_release(&sb);42794280 cnt =strlen(patch->new_name);4281if(ARRAY_SIZE(namebuf) <= cnt +5) {4282 cnt =ARRAY_SIZE(namebuf) -5;4283warning(_("truncating .rej filename to %.*s.rej"),4284 cnt -1, patch->new_name);4285}4286memcpy(namebuf, patch->new_name, cnt);4287memcpy(namebuf + cnt,".rej",5);42884289 rej =fopen(namebuf,"w");4290if(!rej)4291returnerror(_("cannot open%s:%s"), namebuf,strerror(errno));42924293/* Normal git tools never deal with .rej, so do not pretend4294 * this is a git patch by saying --git or giving extended4295 * headers. While at it, maybe please "kompare" that wants4296 * the trailing TAB and some garbage at the end of line ;-).4297 */4298fprintf(rej,"diff a/%sb/%s\t(rejected hunks)\n",4299 patch->new_name, patch->new_name);4300for(cnt =1, frag = patch->fragments;4301 frag;4302 cnt++, frag = frag->next) {4303if(!frag->rejected) {4304fprintf_ln(stderr,_("Hunk #%dapplied cleanly."), cnt);4305continue;4306}4307fprintf_ln(stderr,_("Rejected hunk #%d."), cnt);4308fprintf(rej,"%.*s", frag->size, frag->patch);4309if(frag->patch[frag->size-1] !='\n')4310fputc('\n', rej);4311}4312fclose(rej);4313return-1;4314}43154316static intwrite_out_results(struct patch *list)4317{4318int phase;4319int errs =0;4320struct patch *l;4321struct string_list cpath = STRING_LIST_INIT_DUP;43224323for(phase =0; phase <2; phase++) {4324 l = list;4325while(l) {4326if(l->rejected)4327 errs =1;4328else{4329write_out_one_result(l, phase);4330if(phase ==1) {4331if(write_out_one_reject(l))4332 errs =1;4333if(l->conflicted_threeway) {4334string_list_append(&cpath, l->new_name);4335 errs =1;4336}4337}4338}4339 l = l->next;4340}4341}43424343if(cpath.nr) {4344struct string_list_item *item;43454346string_list_sort(&cpath);4347for_each_string_list_item(item, &cpath)4348fprintf(stderr,"U%s\n", item->string);4349string_list_clear(&cpath,0);43504351rerere(0);4352}43534354return errs;4355}43564357static struct lock_file lock_file;43584359#define INACCURATE_EOF (1<<0)4360#define RECOUNT (1<<1)43614362static intapply_patch(int fd,const char*filename,int options)4363{4364size_t offset;4365struct strbuf buf = STRBUF_INIT;/* owns the patch text */4366struct patch *list = NULL, **listp = &list;4367int skipped_patch =0;43684369 patch_input_file = filename;4370read_patch_file(&buf, fd);4371 offset =0;4372while(offset < buf.len) {4373struct patch *patch;4374int nr;43754376 patch =xcalloc(1,sizeof(*patch));4377 patch->inaccurate_eof = !!(options & INACCURATE_EOF);4378 patch->recount = !!(options & RECOUNT);4379 nr =parse_chunk(buf.buf + offset, buf.len - offset, patch);4380if(nr <0)4381break;4382if(apply_in_reverse)4383reverse_patches(patch);4384if(use_patch(patch)) {4385patch_stats(patch);4386*listp = patch;4387 listp = &patch->next;4388}4389else{4390free_patch(patch);4391 skipped_patch++;4392}4393 offset += nr;4394}43954396if(!list && !skipped_patch)4397die(_("unrecognized input"));43984399if(whitespace_error && (ws_error_action == die_on_ws_error))4400 apply =0;44014402 update_index = check_index && apply;4403if(update_index && newfd <0)4404 newfd =hold_locked_index(&lock_file,1);44054406if(check_index) {4407if(read_cache() <0)4408die(_("unable to read index file"));4409}44104411if((check || apply) &&4412check_patch_list(list) <0&&4413!apply_with_reject)4414exit(1);44154416if(apply &&write_out_results(list)) {4417if(apply_with_reject)4418exit(1);4419/* with --3way, we still need to write the index out */4420return1;4421}44224423if(fake_ancestor)4424build_fake_ancestor(list, fake_ancestor);44254426if(diffstat)4427stat_patch_list(list);44284429if(numstat)4430numstat_patch_list(list);44314432if(summary)4433summary_patch_list(list);44344435free_patch_list(list);4436strbuf_release(&buf);4437string_list_clear(&fn_table,0);4438return0;4439}44404441static voidgit_apply_config(void)4442{4443git_config_get_string_const("apply.whitespace", &apply_default_whitespace);4444git_config_get_string_const("apply.ignorewhitespace", &apply_default_ignorewhitespace);4445git_config(git_default_config, NULL);4446}44474448static intoption_parse_exclude(const struct option *opt,4449const char*arg,int unset)4450{4451add_name_limit(arg,1);4452return0;4453}44544455static intoption_parse_include(const struct option *opt,4456const char*arg,int unset)4457{4458add_name_limit(arg,0);4459 has_include =1;4460return0;4461}44624463static intoption_parse_p(const struct option *opt,4464const char*arg,int unset)4465{4466 p_value =atoi(arg);4467 p_value_known =1;4468return0;4469}44704471static intoption_parse_z(const struct option *opt,4472const char*arg,int unset)4473{4474if(unset)4475 line_termination ='\n';4476else4477 line_termination =0;4478return0;4479}44804481static intoption_parse_space_change(const struct option *opt,4482const char*arg,int unset)4483{4484if(unset)4485 ws_ignore_action = ignore_ws_none;4486else4487 ws_ignore_action = ignore_ws_change;4488return0;4489}44904491static intoption_parse_whitespace(const struct option *opt,4492const char*arg,int unset)4493{4494const char**whitespace_option = opt->value;44954496*whitespace_option = arg;4497parse_whitespace_option(arg);4498return0;4499}45004501static intoption_parse_directory(const struct option *opt,4502const char*arg,int unset)4503{4504 root_len =strlen(arg);4505if(root_len && arg[root_len -1] !='/') {4506char*new_root;4507 root = new_root =xmalloc(root_len +2);4508strcpy(new_root, arg);4509strcpy(new_root + root_len++,"/");4510}else4511 root = arg;4512return0;4513}45144515intcmd_apply(int argc,const char**argv,const char*prefix_)4516{4517int i;4518int errs =0;4519int is_not_gitdir = !startup_info->have_repository;4520int force_apply =0;45214522const char*whitespace_option = NULL;45234524struct option builtin_apply_options[] = {4525{ OPTION_CALLBACK,0,"exclude", NULL,N_("path"),4526N_("don't apply changes matching the given path"),45270, option_parse_exclude },4528{ OPTION_CALLBACK,0,"include", NULL,N_("path"),4529N_("apply changes matching the given path"),45300, option_parse_include },4531{ OPTION_CALLBACK,'p', NULL, NULL,N_("num"),4532N_("remove <num> leading slashes from traditional diff paths"),45330, option_parse_p },4534OPT_BOOL(0,"no-add", &no_add,4535N_("ignore additions made by the patch")),4536OPT_BOOL(0,"stat", &diffstat,4537N_("instead of applying the patch, output diffstat for the input")),4538OPT_NOOP_NOARG(0,"allow-binary-replacement"),4539OPT_NOOP_NOARG(0,"binary"),4540OPT_BOOL(0,"numstat", &numstat,4541N_("show number of added and deleted lines in decimal notation")),4542OPT_BOOL(0,"summary", &summary,4543N_("instead of applying the patch, output a summary for the input")),4544OPT_BOOL(0,"check", &check,4545N_("instead of applying the patch, see if the patch is applicable")),4546OPT_BOOL(0,"index", &check_index,4547N_("make sure the patch is applicable to the current index")),4548OPT_BOOL(0,"cached", &cached,4549N_("apply a patch without touching the working tree")),4550OPT_BOOL(0,"unsafe-paths", &unsafe_paths,4551N_("accept a patch that touches outside the working area")),4552OPT_BOOL(0,"apply", &force_apply,4553N_("also apply the patch (use with --stat/--summary/--check)")),4554OPT_BOOL('3',"3way", &threeway,4555N_("attempt three-way merge if a patch does not apply")),4556OPT_FILENAME(0,"build-fake-ancestor", &fake_ancestor,4557N_("build a temporary index based on embedded index information")),4558{ OPTION_CALLBACK,'z', NULL, NULL, NULL,4559N_("paths are separated with NUL character"),4560 PARSE_OPT_NOARG, option_parse_z },4561OPT_INTEGER('C', NULL, &p_context,4562N_("ensure at least <n> lines of context match")),4563{ OPTION_CALLBACK,0,"whitespace", &whitespace_option,N_("action"),4564N_("detect new or modified lines that have whitespace errors"),45650, option_parse_whitespace },4566{ OPTION_CALLBACK,0,"ignore-space-change", NULL, NULL,4567N_("ignore changes in whitespace when finding context"),4568 PARSE_OPT_NOARG, option_parse_space_change },4569{ OPTION_CALLBACK,0,"ignore-whitespace", NULL, NULL,4570N_("ignore changes in whitespace when finding context"),4571 PARSE_OPT_NOARG, option_parse_space_change },4572OPT_BOOL('R',"reverse", &apply_in_reverse,4573N_("apply the patch in reverse")),4574OPT_BOOL(0,"unidiff-zero", &unidiff_zero,4575N_("don't expect at least one line of context")),4576OPT_BOOL(0,"reject", &apply_with_reject,4577N_("leave the rejected hunks in corresponding *.rej files")),4578OPT_BOOL(0,"allow-overlap", &allow_overlap,4579N_("allow overlapping hunks")),4580OPT__VERBOSE(&apply_verbosely,N_("be verbose")),4581OPT_BIT(0,"inaccurate-eof", &options,4582N_("tolerate incorrectly detected missing new-line at the end of file"),4583 INACCURATE_EOF),4584OPT_BIT(0,"recount", &options,4585N_("do not trust the line counts in the hunk headers"),4586 RECOUNT),4587{ OPTION_CALLBACK,0,"directory", NULL,N_("root"),4588N_("prepend <root> to all filenames"),45890, option_parse_directory },4590OPT_END()4591};45924593 prefix = prefix_;4594 prefix_length = prefix ?strlen(prefix) :0;4595git_apply_config();4596if(apply_default_whitespace)4597parse_whitespace_option(apply_default_whitespace);4598if(apply_default_ignorewhitespace)4599parse_ignorewhitespace_option(apply_default_ignorewhitespace);46004601 argc =parse_options(argc, argv, prefix, builtin_apply_options,4602 apply_usage,0);46034604if(apply_with_reject && threeway)4605die("--reject and --3way cannot be used together.");4606if(cached && threeway)4607die("--cached and --3way cannot be used together.");4608if(threeway) {4609if(is_not_gitdir)4610die(_("--3way outside a repository"));4611 check_index =1;4612}4613if(apply_with_reject)4614 apply = apply_verbosely =1;4615if(!force_apply && (diffstat || numstat || summary || check || fake_ancestor))4616 apply =0;4617if(check_index && is_not_gitdir)4618die(_("--index outside a repository"));4619if(cached) {4620if(is_not_gitdir)4621die(_("--cached outside a repository"));4622 check_index =1;4623}4624if(check_index)4625 unsafe_paths =0;46264627for(i =0; i < argc; i++) {4628const char*arg = argv[i];4629int fd;46304631if(!strcmp(arg,"-")) {4632 errs |=apply_patch(0,"<stdin>", options);4633 read_stdin =0;4634continue;4635}else if(0< prefix_length)4636 arg =prefix_filename(prefix, prefix_length, arg);46374638 fd =open(arg, O_RDONLY);4639if(fd <0)4640die_errno(_("can't open patch '%s'"), arg);4641 read_stdin =0;4642set_default_whitespace_mode(whitespace_option);4643 errs |=apply_patch(fd, arg, options);4644close(fd);4645}4646set_default_whitespace_mode(whitespace_option);4647if(read_stdin)4648 errs |=apply_patch(0,"<stdin>", options);4649if(whitespace_error) {4650if(squelch_whitespace_errors &&4651 squelch_whitespace_errors < whitespace_error) {4652int squelched =4653 whitespace_error - squelch_whitespace_errors;4654warning(Q_("squelched%dwhitespace error",4655"squelched%dwhitespace errors",4656 squelched),4657 squelched);4658}4659if(ws_error_action == die_on_ws_error)4660die(Q_("%dline adds whitespace errors.",4661"%dlines add whitespace errors.",4662 whitespace_error),4663 whitespace_error);4664if(applied_after_fixing_ws && apply)4665warning("%dline%sapplied after"4666" fixing whitespace errors.",4667 applied_after_fixing_ws,4668 applied_after_fixing_ws ==1?"":"s");4669else if(whitespace_error)4670warning(Q_("%dline adds whitespace errors.",4671"%dlines add whitespace errors.",4672 whitespace_error),4673 whitespace_error);4674}46754676if(update_index) {4677if(write_locked_index(&the_index, &lock_file, COMMIT_LOCK))4678die(_("Unable to write new index file"));4679}46804681return!!errs;4682}