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 */ 211unsigned char threeway_stage[3][20]; 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;1641 fragment->leading = leading;1642 fragment->trailing = trailing;16431644/*1645 * If a fragment ends with an incomplete line, we failed to include1646 * it in the above loop because we hit oldlines == newlines == 01647 * before seeing it.1648 */1649if(12< size && !memcmp(line,"\\",2))1650 offset +=linelen(line, size);16511652 patch->lines_added += added;1653 patch->lines_deleted += deleted;16541655if(0< patch->is_new && oldlines)1656returnerror(_("new file depends on old contents"));1657if(0< patch->is_delete && newlines)1658returnerror(_("deleted file still has contents"));1659return offset;1660}16611662/*1663 * We have seen "diff --git a/... b/..." header (or a traditional patch1664 * header). Read hunks that belong to this patch into fragments and hang1665 * them to the given patch structure.1666 *1667 * The (fragment->patch, fragment->size) pair points into the memory given1668 * by the caller, not a copy, when we return.1669 */1670static intparse_single_patch(const char*line,unsigned long size,struct patch *patch)1671{1672unsigned long offset =0;1673unsigned long oldlines =0, newlines =0, context =0;1674struct fragment **fragp = &patch->fragments;16751676while(size >4&& !memcmp(line,"@@ -",4)) {1677struct fragment *fragment;1678int len;16791680 fragment =xcalloc(1,sizeof(*fragment));1681 fragment->linenr = linenr;1682 len =parse_fragment(line, size, patch, fragment);1683if(len <=0)1684die(_("corrupt patch at line%d"), linenr);1685 fragment->patch = line;1686 fragment->size = len;1687 oldlines += fragment->oldlines;1688 newlines += fragment->newlines;1689 context += fragment->leading + fragment->trailing;16901691*fragp = fragment;1692 fragp = &fragment->next;16931694 offset += len;1695 line += len;1696 size -= len;1697}16981699/*1700 * If something was removed (i.e. we have old-lines) it cannot1701 * be creation, and if something was added it cannot be1702 * deletion. However, the reverse is not true; --unified=01703 * patches that only add are not necessarily creation even1704 * though they do not have any old lines, and ones that only1705 * delete are not necessarily deletion.1706 *1707 * Unfortunately, a real creation/deletion patch do _not_ have1708 * any context line by definition, so we cannot safely tell it1709 * apart with --unified=0 insanity. At least if the patch has1710 * more than one hunk it is not creation or deletion.1711 */1712if(patch->is_new <0&&1713(oldlines || (patch->fragments && patch->fragments->next)))1714 patch->is_new =0;1715if(patch->is_delete <0&&1716(newlines || (patch->fragments && patch->fragments->next)))1717 patch->is_delete =0;17181719if(0< patch->is_new && oldlines)1720die(_("new file%sdepends on old contents"), patch->new_name);1721if(0< patch->is_delete && newlines)1722die(_("deleted file%sstill has contents"), patch->old_name);1723if(!patch->is_delete && !newlines && context)1724fprintf_ln(stderr,1725_("** warning: "1726"file%sbecomes empty but is not deleted"),1727 patch->new_name);17281729return offset;1730}17311732staticinlineintmetadata_changes(struct patch *patch)1733{1734return patch->is_rename >0||1735 patch->is_copy >0||1736 patch->is_new >0||1737 patch->is_delete ||1738(patch->old_mode && patch->new_mode &&1739 patch->old_mode != patch->new_mode);1740}17411742static char*inflate_it(const void*data,unsigned long size,1743unsigned long inflated_size)1744{1745 git_zstream stream;1746void*out;1747int st;17481749memset(&stream,0,sizeof(stream));17501751 stream.next_in = (unsigned char*)data;1752 stream.avail_in = size;1753 stream.next_out = out =xmalloc(inflated_size);1754 stream.avail_out = inflated_size;1755git_inflate_init(&stream);1756 st =git_inflate(&stream, Z_FINISH);1757git_inflate_end(&stream);1758if((st != Z_STREAM_END) || stream.total_out != inflated_size) {1759free(out);1760return NULL;1761}1762return out;1763}17641765/*1766 * Read a binary hunk and return a new fragment; fragment->patch1767 * points at an allocated memory that the caller must free, so1768 * it is marked as "->free_patch = 1".1769 */1770static struct fragment *parse_binary_hunk(char**buf_p,1771unsigned long*sz_p,1772int*status_p,1773int*used_p)1774{1775/*1776 * Expect a line that begins with binary patch method ("literal"1777 * or "delta"), followed by the length of data before deflating.1778 * a sequence of 'length-byte' followed by base-85 encoded data1779 * should follow, terminated by a newline.1780 *1781 * Each 5-byte sequence of base-85 encodes up to 4 bytes,1782 * and we would limit the patch line to 66 characters,1783 * so one line can fit up to 13 groups that would decode1784 * to 52 bytes max. The length byte 'A'-'Z' corresponds1785 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.1786 */1787int llen, used;1788unsigned long size = *sz_p;1789char*buffer = *buf_p;1790int patch_method;1791unsigned long origlen;1792char*data = NULL;1793int hunk_size =0;1794struct fragment *frag;17951796 llen =linelen(buffer, size);1797 used = llen;17981799*status_p =0;18001801if(starts_with(buffer,"delta ")) {1802 patch_method = BINARY_DELTA_DEFLATED;1803 origlen =strtoul(buffer +6, NULL,10);1804}1805else if(starts_with(buffer,"literal ")) {1806 patch_method = BINARY_LITERAL_DEFLATED;1807 origlen =strtoul(buffer +8, NULL,10);1808}1809else1810return NULL;18111812 linenr++;1813 buffer += llen;1814while(1) {1815int byte_length, max_byte_length, newsize;1816 llen =linelen(buffer, size);1817 used += llen;1818 linenr++;1819if(llen ==1) {1820/* consume the blank line */1821 buffer++;1822 size--;1823break;1824}1825/*1826 * Minimum line is "A00000\n" which is 7-byte long,1827 * and the line length must be multiple of 5 plus 2.1828 */1829if((llen <7) || (llen-2) %5)1830goto corrupt;1831 max_byte_length = (llen -2) /5*4;1832 byte_length = *buffer;1833if('A'<= byte_length && byte_length <='Z')1834 byte_length = byte_length -'A'+1;1835else if('a'<= byte_length && byte_length <='z')1836 byte_length = byte_length -'a'+27;1837else1838goto corrupt;1839/* if the input length was not multiple of 4, we would1840 * have filler at the end but the filler should never1841 * exceed 3 bytes1842 */1843if(max_byte_length < byte_length ||1844 byte_length <= max_byte_length -4)1845goto corrupt;1846 newsize = hunk_size + byte_length;1847 data =xrealloc(data, newsize);1848if(decode_85(data + hunk_size, buffer +1, byte_length))1849goto corrupt;1850 hunk_size = newsize;1851 buffer += llen;1852 size -= llen;1853}18541855 frag =xcalloc(1,sizeof(*frag));1856 frag->patch =inflate_it(data, hunk_size, origlen);1857 frag->free_patch =1;1858if(!frag->patch)1859goto corrupt;1860free(data);1861 frag->size = origlen;1862*buf_p = buffer;1863*sz_p = size;1864*used_p = used;1865 frag->binary_patch_method = patch_method;1866return frag;18671868 corrupt:1869free(data);1870*status_p = -1;1871error(_("corrupt binary patch at line%d: %.*s"),1872 linenr-1, llen-1, buffer);1873return NULL;1874}18751876static intparse_binary(char*buffer,unsigned long size,struct patch *patch)1877{1878/*1879 * We have read "GIT binary patch\n"; what follows is a line1880 * that says the patch method (currently, either "literal" or1881 * "delta") and the length of data before deflating; a1882 * sequence of 'length-byte' followed by base-85 encoded data1883 * follows.1884 *1885 * When a binary patch is reversible, there is another binary1886 * hunk in the same format, starting with patch method (either1887 * "literal" or "delta") with the length of data, and a sequence1888 * of length-byte + base-85 encoded data, terminated with another1889 * empty line. This data, when applied to the postimage, produces1890 * the preimage.1891 */1892struct fragment *forward;1893struct fragment *reverse;1894int status;1895int used, used_1;18961897 forward =parse_binary_hunk(&buffer, &size, &status, &used);1898if(!forward && !status)1899/* there has to be one hunk (forward hunk) */1900returnerror(_("unrecognized binary patch at line%d"), linenr-1);1901if(status)1902/* otherwise we already gave an error message */1903return status;19041905 reverse =parse_binary_hunk(&buffer, &size, &status, &used_1);1906if(reverse)1907 used += used_1;1908else if(status) {1909/*1910 * Not having reverse hunk is not an error, but having1911 * a corrupt reverse hunk is.1912 */1913free((void*) forward->patch);1914free(forward);1915return status;1916}1917 forward->next = reverse;1918 patch->fragments = forward;1919 patch->is_binary =1;1920return used;1921}19221923static voidprefix_one(char**name)1924{1925char*old_name = *name;1926if(!old_name)1927return;1928*name =xstrdup(prefix_filename(prefix, prefix_length, *name));1929free(old_name);1930}19311932static voidprefix_patch(struct patch *p)1933{1934if(!prefix || p->is_toplevel_relative)1935return;1936prefix_one(&p->new_name);1937prefix_one(&p->old_name);1938}19391940/*1941 * include/exclude1942 */19431944static struct string_list limit_by_name;1945static int has_include;1946static voidadd_name_limit(const char*name,int exclude)1947{1948struct string_list_item *it;19491950 it =string_list_append(&limit_by_name, name);1951 it->util = exclude ? NULL : (void*)1;1952}19531954static intuse_patch(struct patch *p)1955{1956const char*pathname = p->new_name ? p->new_name : p->old_name;1957int i;19581959/* Paths outside are not touched regardless of "--include" */1960if(0< prefix_length) {1961int pathlen =strlen(pathname);1962if(pathlen <= prefix_length ||1963memcmp(prefix, pathname, prefix_length))1964return0;1965}19661967/* See if it matches any of exclude/include rule */1968for(i =0; i < limit_by_name.nr; i++) {1969struct string_list_item *it = &limit_by_name.items[i];1970if(!wildmatch(it->string, pathname,0, NULL))1971return(it->util != NULL);1972}19731974/*1975 * If we had any include, a path that does not match any rule is1976 * not used. Otherwise, we saw bunch of exclude rules (or none)1977 * and such a path is used.1978 */1979return!has_include;1980}198119821983/*1984 * Read the patch text in "buffer" that extends for "size" bytes; stop1985 * reading after seeing a single patch (i.e. changes to a single file).1986 * Create fragments (i.e. patch hunks) and hang them to the given patch.1987 * Return the number of bytes consumed, so that the caller can call us1988 * again for the next patch.1989 */1990static intparse_chunk(char*buffer,unsigned long size,struct patch *patch)1991{1992int hdrsize, patchsize;1993int offset =find_header(buffer, size, &hdrsize, patch);19941995if(offset <0)1996return offset;19971998prefix_patch(patch);19992000if(!use_patch(patch))2001 patch->ws_rule =0;2002else2003 patch->ws_rule =whitespace_rule(patch->new_name2004? patch->new_name2005: patch->old_name);20062007 patchsize =parse_single_patch(buffer + offset + hdrsize,2008 size - offset - hdrsize, patch);20092010if(!patchsize) {2011static const char git_binary[] ="GIT binary patch\n";2012int hd = hdrsize + offset;2013unsigned long llen =linelen(buffer + hd, size - hd);20142015if(llen ==sizeof(git_binary) -1&&2016!memcmp(git_binary, buffer + hd, llen)) {2017int used;2018 linenr++;2019 used =parse_binary(buffer + hd + llen,2020 size - hd - llen, patch);2021if(used)2022 patchsize = used + llen;2023else2024 patchsize =0;2025}2026else if(!memcmp(" differ\n", buffer + hd + llen -8,8)) {2027static const char*binhdr[] = {2028"Binary files ",2029"Files ",2030 NULL,2031};2032int i;2033for(i =0; binhdr[i]; i++) {2034int len =strlen(binhdr[i]);2035if(len < size - hd &&2036!memcmp(binhdr[i], buffer + hd, len)) {2037 linenr++;2038 patch->is_binary =1;2039 patchsize = llen;2040break;2041}2042}2043}20442045/* Empty patch cannot be applied if it is a text patch2046 * without metadata change. A binary patch appears2047 * empty to us here.2048 */2049if((apply || check) &&2050(!patch->is_binary && !metadata_changes(patch)))2051die(_("patch with only garbage at line%d"), linenr);2052}20532054return offset + hdrsize + patchsize;2055}20562057#define swap(a,b) myswap((a),(b),sizeof(a))20582059#define myswap(a, b, size) do { \2060 unsigned char mytmp[size]; \2061 memcpy(mytmp, &a, size); \2062 memcpy(&a, &b, size); \2063 memcpy(&b, mytmp, size); \2064} while (0)20652066static voidreverse_patches(struct patch *p)2067{2068for(; p; p = p->next) {2069struct fragment *frag = p->fragments;20702071swap(p->new_name, p->old_name);2072swap(p->new_mode, p->old_mode);2073swap(p->is_new, p->is_delete);2074swap(p->lines_added, p->lines_deleted);2075swap(p->old_sha1_prefix, p->new_sha1_prefix);20762077for(; frag; frag = frag->next) {2078swap(frag->newpos, frag->oldpos);2079swap(frag->newlines, frag->oldlines);2080}2081}2082}20832084static const char pluses[] =2085"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";2086static const char minuses[]=2087"----------------------------------------------------------------------";20882089static voidshow_stats(struct patch *patch)2090{2091struct strbuf qname = STRBUF_INIT;2092char*cp = patch->new_name ? patch->new_name : patch->old_name;2093int max, add, del;20942095quote_c_style(cp, &qname, NULL,0);20962097/*2098 * "scale" the filename2099 */2100 max = max_len;2101if(max >50)2102 max =50;21032104if(qname.len > max) {2105 cp =strchr(qname.buf + qname.len +3- max,'/');2106if(!cp)2107 cp = qname.buf + qname.len +3- max;2108strbuf_splice(&qname,0, cp - qname.buf,"...",3);2109}21102111if(patch->is_binary) {2112printf(" %-*s | Bin\n", max, qname.buf);2113strbuf_release(&qname);2114return;2115}21162117printf(" %-*s |", max, qname.buf);2118strbuf_release(&qname);21192120/*2121 * scale the add/delete2122 */2123 max = max + max_change >70?70- max : max_change;2124 add = patch->lines_added;2125 del = patch->lines_deleted;21262127if(max_change >0) {2128int total = ((add + del) * max + max_change /2) / max_change;2129 add = (add * max + max_change /2) / max_change;2130 del = total - add;2131}2132printf("%5d %.*s%.*s\n", patch->lines_added + patch->lines_deleted,2133 add, pluses, del, minuses);2134}21352136static intread_old_data(struct stat *st,const char*path,struct strbuf *buf)2137{2138switch(st->st_mode & S_IFMT) {2139case S_IFLNK:2140if(strbuf_readlink(buf, path, st->st_size) <0)2141returnerror(_("unable to read symlink%s"), path);2142return0;2143case S_IFREG:2144if(strbuf_read_file(buf, path, st->st_size) != st->st_size)2145returnerror(_("unable to open or read%s"), path);2146convert_to_git(path, buf->buf, buf->len, buf,0);2147return0;2148default:2149return-1;2150}2151}21522153/*2154 * Update the preimage, and the common lines in postimage,2155 * from buffer buf of length len. If postlen is 0 the postimage2156 * is updated in place, otherwise it's updated on a new buffer2157 * of length postlen2158 */21592160static voidupdate_pre_post_images(struct image *preimage,2161struct image *postimage,2162char*buf,2163size_t len,size_t postlen)2164{2165int i, ctx, reduced;2166char*new, *old, *fixed;2167struct image fixed_preimage;21682169/*2170 * Update the preimage with whitespace fixes. Note that we2171 * are not losing preimage->buf -- apply_one_fragment() will2172 * free "oldlines".2173 */2174prepare_image(&fixed_preimage, buf, len,1);2175assert(postlen2176? fixed_preimage.nr == preimage->nr2177: fixed_preimage.nr <= preimage->nr);2178for(i =0; i < fixed_preimage.nr; i++)2179 fixed_preimage.line[i].flag = preimage->line[i].flag;2180free(preimage->line_allocated);2181*preimage = fixed_preimage;21822183/*2184 * Adjust the common context lines in postimage. This can be2185 * done in-place when we are shrinking it with whitespace2186 * fixing, but needs a new buffer when ignoring whitespace or2187 * expanding leading tabs to spaces.2188 *2189 * We trust the caller to tell us if the update can be done2190 * in place (postlen==0) or not.2191 */2192 old = postimage->buf;2193if(postlen)2194new= postimage->buf =xmalloc(postlen);2195else2196new= old;2197 fixed = preimage->buf;21982199for(i = reduced = ctx =0; i < postimage->nr; i++) {2200size_t len = postimage->line[i].len;2201if(!(postimage->line[i].flag & LINE_COMMON)) {2202/* an added line -- no counterparts in preimage */2203memmove(new, old, len);2204 old += len;2205new+= len;2206continue;2207}22082209/* a common context -- skip it in the original postimage */2210 old += len;22112212/* and find the corresponding one in the fixed preimage */2213while(ctx < preimage->nr &&2214!(preimage->line[ctx].flag & LINE_COMMON)) {2215 fixed += preimage->line[ctx].len;2216 ctx++;2217}22182219/*2220 * preimage is expected to run out, if the caller2221 * fixed addition of trailing blank lines.2222 */2223if(preimage->nr <= ctx) {2224 reduced++;2225continue;2226}22272228/* and copy it in, while fixing the line length */2229 len = preimage->line[ctx].len;2230memcpy(new, fixed, len);2231new+= len;2232 fixed += len;2233 postimage->line[i].len = len;2234 ctx++;2235}22362237if(postlen2238? postlen <new- postimage->buf2239: postimage->len <new- postimage->buf)2240die("BUG: caller miscounted postlen: asked%d, orig =%d, used =%d",2241(int)postlen, (int) postimage->len, (int)(new- postimage->buf));22422243/* Fix the length of the whole thing */2244 postimage->len =new- postimage->buf;2245 postimage->nr -= reduced;2246}22472248static intmatch_fragment(struct image *img,2249struct image *preimage,2250struct image *postimage,2251unsigned longtry,2252int try_lno,2253unsigned ws_rule,2254int match_beginning,int match_end)2255{2256int i;2257char*fixed_buf, *buf, *orig, *target;2258struct strbuf fixed;2259size_t fixed_len, postlen;2260int preimage_limit;22612262if(preimage->nr + try_lno <= img->nr) {2263/*2264 * The hunk falls within the boundaries of img.2265 */2266 preimage_limit = preimage->nr;2267if(match_end && (preimage->nr + try_lno != img->nr))2268return0;2269}else if(ws_error_action == correct_ws_error &&2270(ws_rule & WS_BLANK_AT_EOF)) {2271/*2272 * This hunk extends beyond the end of img, and we are2273 * removing blank lines at the end of the file. This2274 * many lines from the beginning of the preimage must2275 * match with img, and the remainder of the preimage2276 * must be blank.2277 */2278 preimage_limit = img->nr - try_lno;2279}else{2280/*2281 * The hunk extends beyond the end of the img and2282 * we are not removing blanks at the end, so we2283 * should reject the hunk at this position.2284 */2285return0;2286}22872288if(match_beginning && try_lno)2289return0;22902291/* Quick hash check */2292for(i =0; i < preimage_limit; i++)2293if((img->line[try_lno + i].flag & LINE_PATCHED) ||2294(preimage->line[i].hash != img->line[try_lno + i].hash))2295return0;22962297if(preimage_limit == preimage->nr) {2298/*2299 * Do we have an exact match? If we were told to match2300 * at the end, size must be exactly at try+fragsize,2301 * otherwise try+fragsize must be still within the preimage,2302 * and either case, the old piece should match the preimage2303 * exactly.2304 */2305if((match_end2306? (try+ preimage->len == img->len)2307: (try+ preimage->len <= img->len)) &&2308!memcmp(img->buf +try, preimage->buf, preimage->len))2309return1;2310}else{2311/*2312 * The preimage extends beyond the end of img, so2313 * there cannot be an exact match.2314 *2315 * There must be one non-blank context line that match2316 * a line before the end of img.2317 */2318char*buf_end;23192320 buf = preimage->buf;2321 buf_end = buf;2322for(i =0; i < preimage_limit; i++)2323 buf_end += preimage->line[i].len;23242325for( ; buf < buf_end; buf++)2326if(!isspace(*buf))2327break;2328if(buf == buf_end)2329return0;2330}23312332/*2333 * No exact match. If we are ignoring whitespace, run a line-by-line2334 * fuzzy matching. We collect all the line length information because2335 * we need it to adjust whitespace if we match.2336 */2337if(ws_ignore_action == ignore_ws_change) {2338size_t imgoff =0;2339size_t preoff =0;2340size_t postlen = postimage->len;2341size_t extra_chars;2342char*preimage_eof;2343char*preimage_end;2344for(i =0; i < preimage_limit; i++) {2345size_t prelen = preimage->line[i].len;2346size_t imglen = img->line[try_lno+i].len;23472348if(!fuzzy_matchlines(img->buf +try+ imgoff, imglen,2349 preimage->buf + preoff, prelen))2350return0;2351if(preimage->line[i].flag & LINE_COMMON)2352 postlen += imglen - prelen;2353 imgoff += imglen;2354 preoff += prelen;2355}23562357/*2358 * Ok, the preimage matches with whitespace fuzz.2359 *2360 * imgoff now holds the true length of the target that2361 * matches the preimage before the end of the file.2362 *2363 * Count the number of characters in the preimage that fall2364 * beyond the end of the file and make sure that all of them2365 * are whitespace characters. (This can only happen if2366 * we are removing blank lines at the end of the file.)2367 */2368 buf = preimage_eof = preimage->buf + preoff;2369for( ; i < preimage->nr; i++)2370 preoff += preimage->line[i].len;2371 preimage_end = preimage->buf + preoff;2372for( ; buf < preimage_end; buf++)2373if(!isspace(*buf))2374return0;23752376/*2377 * Update the preimage and the common postimage context2378 * lines to use the same whitespace as the target.2379 * If whitespace is missing in the target (i.e.2380 * if the preimage extends beyond the end of the file),2381 * use the whitespace from the preimage.2382 */2383 extra_chars = preimage_end - preimage_eof;2384strbuf_init(&fixed, imgoff + extra_chars);2385strbuf_add(&fixed, img->buf +try, imgoff);2386strbuf_add(&fixed, preimage_eof, extra_chars);2387 fixed_buf =strbuf_detach(&fixed, &fixed_len);2388update_pre_post_images(preimage, postimage,2389 fixed_buf, fixed_len, postlen);2390return1;2391}23922393if(ws_error_action != correct_ws_error)2394return0;23952396/*2397 * The hunk does not apply byte-by-byte, but the hash says2398 * it might with whitespace fuzz. We weren't asked to2399 * ignore whitespace, we were asked to correct whitespace2400 * errors, so let's try matching after whitespace correction.2401 *2402 * While checking the preimage against the target, whitespace2403 * errors in both fixed, we count how large the corresponding2404 * postimage needs to be. The postimage prepared by2405 * apply_one_fragment() has whitespace errors fixed on added2406 * lines already, but the common lines were propagated as-is,2407 * which may become longer when their whitespace errors are2408 * fixed.2409 */24102411/* First count added lines in postimage */2412 postlen =0;2413for(i =0; i < postimage->nr; i++) {2414if(!(postimage->line[i].flag & LINE_COMMON))2415 postlen += postimage->line[i].len;2416}24172418/*2419 * The preimage may extend beyond the end of the file,2420 * but in this loop we will only handle the part of the2421 * preimage that falls within the file.2422 */2423strbuf_init(&fixed, preimage->len +1);2424 orig = preimage->buf;2425 target = img->buf +try;2426for(i =0; i < preimage_limit; i++) {2427size_t oldlen = preimage->line[i].len;2428size_t tgtlen = img->line[try_lno + i].len;2429size_t fixstart = fixed.len;2430struct strbuf tgtfix;2431int match;24322433/* Try fixing the line in the preimage */2434ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);24352436/* Try fixing the line in the target */2437strbuf_init(&tgtfix, tgtlen);2438ws_fix_copy(&tgtfix, target, tgtlen, ws_rule, NULL);24392440/*2441 * If they match, either the preimage was based on2442 * a version before our tree fixed whitespace breakage,2443 * or we are lacking a whitespace-fix patch the tree2444 * the preimage was based on already had (i.e. target2445 * has whitespace breakage, the preimage doesn't).2446 * In either case, we are fixing the whitespace breakages2447 * so we might as well take the fix together with their2448 * real change.2449 */2450 match = (tgtfix.len == fixed.len - fixstart &&2451!memcmp(tgtfix.buf, fixed.buf + fixstart,2452 fixed.len - fixstart));24532454/* Add the length if this is common with the postimage */2455if(preimage->line[i].flag & LINE_COMMON)2456 postlen += tgtfix.len;24572458strbuf_release(&tgtfix);2459if(!match)2460goto unmatch_exit;24612462 orig += oldlen;2463 target += tgtlen;2464}246524662467/*2468 * Now handle the lines in the preimage that falls beyond the2469 * end of the file (if any). They will only match if they are2470 * empty or only contain whitespace (if WS_BLANK_AT_EOL is2471 * false).2472 */2473for( ; i < preimage->nr; i++) {2474size_t fixstart = fixed.len;/* start of the fixed preimage */2475size_t oldlen = preimage->line[i].len;2476int j;24772478/* Try fixing the line in the preimage */2479ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);24802481for(j = fixstart; j < fixed.len; j++)2482if(!isspace(fixed.buf[j]))2483goto unmatch_exit;24842485 orig += oldlen;2486}24872488/*2489 * Yes, the preimage is based on an older version that still2490 * has whitespace breakages unfixed, and fixing them makes the2491 * hunk match. Update the context lines in the postimage.2492 */2493 fixed_buf =strbuf_detach(&fixed, &fixed_len);2494if(postlen < postimage->len)2495 postlen =0;2496update_pre_post_images(preimage, postimage,2497 fixed_buf, fixed_len, postlen);2498return1;24992500 unmatch_exit:2501strbuf_release(&fixed);2502return0;2503}25042505static intfind_pos(struct image *img,2506struct image *preimage,2507struct image *postimage,2508int line,2509unsigned ws_rule,2510int match_beginning,int match_end)2511{2512int i;2513unsigned long backwards, forwards,try;2514int backwards_lno, forwards_lno, try_lno;25152516/*2517 * If match_beginning or match_end is specified, there is no2518 * point starting from a wrong line that will never match and2519 * wander around and wait for a match at the specified end.2520 */2521if(match_beginning)2522 line =0;2523else if(match_end)2524 line = img->nr - preimage->nr;25252526/*2527 * Because the comparison is unsigned, the following test2528 * will also take care of a negative line number that can2529 * result when match_end and preimage is larger than the target.2530 */2531if((size_t) line > img->nr)2532 line = img->nr;25332534try=0;2535for(i =0; i < line; i++)2536try+= img->line[i].len;25372538/*2539 * There's probably some smart way to do this, but I'll leave2540 * that to the smart and beautiful people. I'm simple and stupid.2541 */2542 backwards =try;2543 backwards_lno = line;2544 forwards =try;2545 forwards_lno = line;2546 try_lno = line;25472548for(i =0; ; i++) {2549if(match_fragment(img, preimage, postimage,2550try, try_lno, ws_rule,2551 match_beginning, match_end))2552return try_lno;25532554 again:2555if(backwards_lno ==0&& forwards_lno == img->nr)2556break;25572558if(i &1) {2559if(backwards_lno ==0) {2560 i++;2561goto again;2562}2563 backwards_lno--;2564 backwards -= img->line[backwards_lno].len;2565try= backwards;2566 try_lno = backwards_lno;2567}else{2568if(forwards_lno == img->nr) {2569 i++;2570goto again;2571}2572 forwards += img->line[forwards_lno].len;2573 forwards_lno++;2574try= forwards;2575 try_lno = forwards_lno;2576}25772578}2579return-1;2580}25812582static voidremove_first_line(struct image *img)2583{2584 img->buf += img->line[0].len;2585 img->len -= img->line[0].len;2586 img->line++;2587 img->nr--;2588}25892590static voidremove_last_line(struct image *img)2591{2592 img->len -= img->line[--img->nr].len;2593}25942595/*2596 * The change from "preimage" and "postimage" has been found to2597 * apply at applied_pos (counts in line numbers) in "img".2598 * Update "img" to remove "preimage" and replace it with "postimage".2599 */2600static voidupdate_image(struct image *img,2601int applied_pos,2602struct image *preimage,2603struct image *postimage)2604{2605/*2606 * remove the copy of preimage at offset in img2607 * and replace it with postimage2608 */2609int i, nr;2610size_t remove_count, insert_count, applied_at =0;2611char*result;2612int preimage_limit;26132614/*2615 * If we are removing blank lines at the end of img,2616 * the preimage may extend beyond the end.2617 * If that is the case, we must be careful only to2618 * remove the part of the preimage that falls within2619 * the boundaries of img. Initialize preimage_limit2620 * to the number of lines in the preimage that falls2621 * within the boundaries.2622 */2623 preimage_limit = preimage->nr;2624if(preimage_limit > img->nr - applied_pos)2625 preimage_limit = img->nr - applied_pos;26262627for(i =0; i < applied_pos; i++)2628 applied_at += img->line[i].len;26292630 remove_count =0;2631for(i =0; i < preimage_limit; i++)2632 remove_count += img->line[applied_pos + i].len;2633 insert_count = postimage->len;26342635/* Adjust the contents */2636 result =xmalloc(img->len + insert_count - remove_count +1);2637memcpy(result, img->buf, applied_at);2638memcpy(result + applied_at, postimage->buf, postimage->len);2639memcpy(result + applied_at + postimage->len,2640 img->buf + (applied_at + remove_count),2641 img->len - (applied_at + remove_count));2642free(img->buf);2643 img->buf = result;2644 img->len += insert_count - remove_count;2645 result[img->len] ='\0';26462647/* Adjust the line table */2648 nr = img->nr + postimage->nr - preimage_limit;2649if(preimage_limit < postimage->nr) {2650/*2651 * NOTE: this knows that we never call remove_first_line()2652 * on anything other than pre/post image.2653 */2654REALLOC_ARRAY(img->line, nr);2655 img->line_allocated = img->line;2656}2657if(preimage_limit != postimage->nr)2658memmove(img->line + applied_pos + postimage->nr,2659 img->line + applied_pos + preimage_limit,2660(img->nr - (applied_pos + preimage_limit)) *2661sizeof(*img->line));2662memcpy(img->line + applied_pos,2663 postimage->line,2664 postimage->nr *sizeof(*img->line));2665if(!allow_overlap)2666for(i =0; i < postimage->nr; i++)2667 img->line[applied_pos + i].flag |= LINE_PATCHED;2668 img->nr = nr;2669}26702671/*2672 * Use the patch-hunk text in "frag" to prepare two images (preimage and2673 * postimage) for the hunk. Find lines that match "preimage" in "img" and2674 * replace the part of "img" with "postimage" text.2675 */2676static intapply_one_fragment(struct image *img,struct fragment *frag,2677int inaccurate_eof,unsigned ws_rule,2678int nth_fragment)2679{2680int match_beginning, match_end;2681const char*patch = frag->patch;2682int size = frag->size;2683char*old, *oldlines;2684struct strbuf newlines;2685int new_blank_lines_at_end =0;2686int found_new_blank_lines_at_end =0;2687int hunk_linenr = frag->linenr;2688unsigned long leading, trailing;2689int pos, applied_pos;2690struct image preimage;2691struct image postimage;26922693memset(&preimage,0,sizeof(preimage));2694memset(&postimage,0,sizeof(postimage));2695 oldlines =xmalloc(size);2696strbuf_init(&newlines, size);26972698 old = oldlines;2699while(size >0) {2700char first;2701int len =linelen(patch, size);2702int plen;2703int added_blank_line =0;2704int is_blank_context =0;2705size_t start;27062707if(!len)2708break;27092710/*2711 * "plen" is how much of the line we should use for2712 * the actual patch data. Normally we just remove the2713 * first character on the line, but if the line is2714 * followed by "\ No newline", then we also remove the2715 * last one (which is the newline, of course).2716 */2717 plen = len -1;2718if(len < size && patch[len] =='\\')2719 plen--;2720 first = *patch;2721if(apply_in_reverse) {2722if(first =='-')2723 first ='+';2724else if(first =='+')2725 first ='-';2726}27272728switch(first) {2729case'\n':2730/* Newer GNU diff, empty context line */2731if(plen <0)2732/* ... followed by '\No newline'; nothing */2733break;2734*old++ ='\n';2735strbuf_addch(&newlines,'\n');2736add_line_info(&preimage,"\n",1, LINE_COMMON);2737add_line_info(&postimage,"\n",1, LINE_COMMON);2738 is_blank_context =1;2739break;2740case' ':2741if(plen && (ws_rule & WS_BLANK_AT_EOF) &&2742ws_blank_line(patch +1, plen, ws_rule))2743 is_blank_context =1;2744case'-':2745memcpy(old, patch +1, plen);2746add_line_info(&preimage, old, plen,2747(first ==' '? LINE_COMMON :0));2748 old += plen;2749if(first =='-')2750break;2751/* Fall-through for ' ' */2752case'+':2753/* --no-add does not add new lines */2754if(first =='+'&& no_add)2755break;27562757 start = newlines.len;2758if(first !='+'||2759!whitespace_error ||2760 ws_error_action != correct_ws_error) {2761strbuf_add(&newlines, patch +1, plen);2762}2763else{2764ws_fix_copy(&newlines, patch +1, plen, ws_rule, &applied_after_fixing_ws);2765}2766add_line_info(&postimage, newlines.buf + start, newlines.len - start,2767(first =='+'?0: LINE_COMMON));2768if(first =='+'&&2769(ws_rule & WS_BLANK_AT_EOF) &&2770ws_blank_line(patch +1, plen, ws_rule))2771 added_blank_line =1;2772break;2773case'@':case'\\':2774/* Ignore it, we already handled it */2775break;2776default:2777if(apply_verbosely)2778error(_("invalid start of line: '%c'"), first);2779 applied_pos = -1;2780goto out;2781}2782if(added_blank_line) {2783if(!new_blank_lines_at_end)2784 found_new_blank_lines_at_end = hunk_linenr;2785 new_blank_lines_at_end++;2786}2787else if(is_blank_context)2788;2789else2790 new_blank_lines_at_end =0;2791 patch += len;2792 size -= len;2793 hunk_linenr++;2794}2795if(inaccurate_eof &&2796 old > oldlines && old[-1] =='\n'&&2797 newlines.len >0&& newlines.buf[newlines.len -1] =='\n') {2798 old--;2799strbuf_setlen(&newlines, newlines.len -1);2800}28012802 leading = frag->leading;2803 trailing = frag->trailing;28042805/*2806 * A hunk to change lines at the beginning would begin with2807 * @@ -1,L +N,M @@2808 * but we need to be careful. -U0 that inserts before the second2809 * line also has this pattern.2810 *2811 * And a hunk to add to an empty file would begin with2812 * @@ -0,0 +N,M @@2813 *2814 * In other words, a hunk that is (frag->oldpos <= 1) with or2815 * without leading context must match at the beginning.2816 */2817 match_beginning = (!frag->oldpos ||2818(frag->oldpos ==1&& !unidiff_zero));28192820/*2821 * A hunk without trailing lines must match at the end.2822 * However, we simply cannot tell if a hunk must match end2823 * from the lack of trailing lines if the patch was generated2824 * with unidiff without any context.2825 */2826 match_end = !unidiff_zero && !trailing;28272828 pos = frag->newpos ? (frag->newpos -1) :0;2829 preimage.buf = oldlines;2830 preimage.len = old - oldlines;2831 postimage.buf = newlines.buf;2832 postimage.len = newlines.len;2833 preimage.line = preimage.line_allocated;2834 postimage.line = postimage.line_allocated;28352836for(;;) {28372838 applied_pos =find_pos(img, &preimage, &postimage, pos,2839 ws_rule, match_beginning, match_end);28402841if(applied_pos >=0)2842break;28432844/* Am I at my context limits? */2845if((leading <= p_context) && (trailing <= p_context))2846break;2847if(match_beginning || match_end) {2848 match_beginning = match_end =0;2849continue;2850}28512852/*2853 * Reduce the number of context lines; reduce both2854 * leading and trailing if they are equal otherwise2855 * just reduce the larger context.2856 */2857if(leading >= trailing) {2858remove_first_line(&preimage);2859remove_first_line(&postimage);2860 pos--;2861 leading--;2862}2863if(trailing > leading) {2864remove_last_line(&preimage);2865remove_last_line(&postimage);2866 trailing--;2867}2868}28692870if(applied_pos >=0) {2871if(new_blank_lines_at_end &&2872 preimage.nr + applied_pos >= img->nr &&2873(ws_rule & WS_BLANK_AT_EOF) &&2874 ws_error_action != nowarn_ws_error) {2875record_ws_error(WS_BLANK_AT_EOF,"+",1,2876 found_new_blank_lines_at_end);2877if(ws_error_action == correct_ws_error) {2878while(new_blank_lines_at_end--)2879remove_last_line(&postimage);2880}2881/*2882 * We would want to prevent write_out_results()2883 * from taking place in apply_patch() that follows2884 * the callchain led us here, which is:2885 * apply_patch->check_patch_list->check_patch->2886 * apply_data->apply_fragments->apply_one_fragment2887 */2888if(ws_error_action == die_on_ws_error)2889 apply =0;2890}28912892if(apply_verbosely && applied_pos != pos) {2893int offset = applied_pos - pos;2894if(apply_in_reverse)2895 offset =0- offset;2896fprintf_ln(stderr,2897Q_("Hunk #%dsucceeded at%d(offset%dline).",2898"Hunk #%dsucceeded at%d(offset%dlines).",2899 offset),2900 nth_fragment, applied_pos +1, offset);2901}29022903/*2904 * Warn if it was necessary to reduce the number2905 * of context lines.2906 */2907if((leading != frag->leading) ||2908(trailing != frag->trailing))2909fprintf_ln(stderr,_("Context reduced to (%ld/%ld)"2910" to apply fragment at%d"),2911 leading, trailing, applied_pos+1);2912update_image(img, applied_pos, &preimage, &postimage);2913}else{2914if(apply_verbosely)2915error(_("while searching for:\n%.*s"),2916(int)(old - oldlines), oldlines);2917}29182919out:2920free(oldlines);2921strbuf_release(&newlines);2922free(preimage.line_allocated);2923free(postimage.line_allocated);29242925return(applied_pos <0);2926}29272928static intapply_binary_fragment(struct image *img,struct patch *patch)2929{2930struct fragment *fragment = patch->fragments;2931unsigned long len;2932void*dst;29332934if(!fragment)2935returnerror(_("missing binary patch data for '%s'"),2936 patch->new_name ?2937 patch->new_name :2938 patch->old_name);29392940/* Binary patch is irreversible without the optional second hunk */2941if(apply_in_reverse) {2942if(!fragment->next)2943returnerror("cannot reverse-apply a binary patch "2944"without the reverse hunk to '%s'",2945 patch->new_name2946? patch->new_name : patch->old_name);2947 fragment = fragment->next;2948}2949switch(fragment->binary_patch_method) {2950case BINARY_DELTA_DEFLATED:2951 dst =patch_delta(img->buf, img->len, fragment->patch,2952 fragment->size, &len);2953if(!dst)2954return-1;2955clear_image(img);2956 img->buf = dst;2957 img->len = len;2958return0;2959case BINARY_LITERAL_DEFLATED:2960clear_image(img);2961 img->len = fragment->size;2962 img->buf =xmemdupz(fragment->patch, img->len);2963return0;2964}2965return-1;2966}29672968/*2969 * Replace "img" with the result of applying the binary patch.2970 * The binary patch data itself in patch->fragment is still kept2971 * but the preimage prepared by the caller in "img" is freed here2972 * or in the helper function apply_binary_fragment() this calls.2973 */2974static intapply_binary(struct image *img,struct patch *patch)2975{2976const char*name = patch->old_name ? patch->old_name : patch->new_name;2977unsigned char sha1[20];29782979/*2980 * For safety, we require patch index line to contain2981 * full 40-byte textual SHA1 for old and new, at least for now.2982 */2983if(strlen(patch->old_sha1_prefix) !=40||2984strlen(patch->new_sha1_prefix) !=40||2985get_sha1_hex(patch->old_sha1_prefix, sha1) ||2986get_sha1_hex(patch->new_sha1_prefix, sha1))2987returnerror("cannot apply binary patch to '%s' "2988"without full index line", name);29892990if(patch->old_name) {2991/*2992 * See if the old one matches what the patch2993 * applies to.2994 */2995hash_sha1_file(img->buf, img->len, blob_type, sha1);2996if(strcmp(sha1_to_hex(sha1), patch->old_sha1_prefix))2997returnerror("the patch applies to '%s' (%s), "2998"which does not match the "2999"current contents.",3000 name,sha1_to_hex(sha1));3001}3002else{3003/* Otherwise, the old one must be empty. */3004if(img->len)3005returnerror("the patch applies to an empty "3006"'%s' but it is not empty", name);3007}30083009get_sha1_hex(patch->new_sha1_prefix, sha1);3010if(is_null_sha1(sha1)) {3011clear_image(img);3012return0;/* deletion patch */3013}30143015if(has_sha1_file(sha1)) {3016/* We already have the postimage */3017enum object_type type;3018unsigned long size;3019char*result;30203021 result =read_sha1_file(sha1, &type, &size);3022if(!result)3023returnerror("the necessary postimage%sfor "3024"'%s' cannot be read",3025 patch->new_sha1_prefix, name);3026clear_image(img);3027 img->buf = result;3028 img->len = size;3029}else{3030/*3031 * We have verified buf matches the preimage;3032 * apply the patch data to it, which is stored3033 * in the patch->fragments->{patch,size}.3034 */3035if(apply_binary_fragment(img, patch))3036returnerror(_("binary patch does not apply to '%s'"),3037 name);30383039/* verify that the result matches */3040hash_sha1_file(img->buf, img->len, blob_type, sha1);3041if(strcmp(sha1_to_hex(sha1), patch->new_sha1_prefix))3042returnerror(_("binary patch to '%s' creates incorrect result (expecting%s, got%s)"),3043 name, patch->new_sha1_prefix,sha1_to_hex(sha1));3044}30453046return0;3047}30483049static intapply_fragments(struct image *img,struct patch *patch)3050{3051struct fragment *frag = patch->fragments;3052const char*name = patch->old_name ? patch->old_name : patch->new_name;3053unsigned ws_rule = patch->ws_rule;3054unsigned inaccurate_eof = patch->inaccurate_eof;3055int nth =0;30563057if(patch->is_binary)3058returnapply_binary(img, patch);30593060while(frag) {3061 nth++;3062if(apply_one_fragment(img, frag, inaccurate_eof, ws_rule, nth)) {3063error(_("patch failed:%s:%ld"), name, frag->oldpos);3064if(!apply_with_reject)3065return-1;3066 frag->rejected =1;3067}3068 frag = frag->next;3069}3070return0;3071}30723073static intread_blob_object(struct strbuf *buf,const unsigned char*sha1,unsigned mode)3074{3075if(S_ISGITLINK(mode)) {3076strbuf_grow(buf,100);3077strbuf_addf(buf,"Subproject commit%s\n",sha1_to_hex(sha1));3078}else{3079enum object_type type;3080unsigned long sz;3081char*result;30823083 result =read_sha1_file(sha1, &type, &sz);3084if(!result)3085return-1;3086/* XXX read_sha1_file NUL-terminates */3087strbuf_attach(buf, result, sz, sz +1);3088}3089return0;3090}30913092static intread_file_or_gitlink(const struct cache_entry *ce,struct strbuf *buf)3093{3094if(!ce)3095return0;3096returnread_blob_object(buf, ce->sha1, ce->ce_mode);3097}30983099static struct patch *in_fn_table(const char*name)3100{3101struct string_list_item *item;31023103if(name == NULL)3104return NULL;31053106 item =string_list_lookup(&fn_table, name);3107if(item != NULL)3108return(struct patch *)item->util;31093110return NULL;3111}31123113/*3114 * item->util in the filename table records the status of the path.3115 * Usually it points at a patch (whose result records the contents3116 * of it after applying it), but it could be PATH_WAS_DELETED for a3117 * path that a previously applied patch has already removed, or3118 * PATH_TO_BE_DELETED for a path that a later patch would remove.3119 *3120 * The latter is needed to deal with a case where two paths A and B3121 * are swapped by first renaming A to B and then renaming B to A;3122 * moving A to B should not be prevented due to presence of B as we3123 * will remove it in a later patch.3124 */3125#define PATH_TO_BE_DELETED ((struct patch *) -2)3126#define PATH_WAS_DELETED ((struct patch *) -1)31273128static intto_be_deleted(struct patch *patch)3129{3130return patch == PATH_TO_BE_DELETED;3131}31323133static intwas_deleted(struct patch *patch)3134{3135return patch == PATH_WAS_DELETED;3136}31373138static voidadd_to_fn_table(struct patch *patch)3139{3140struct string_list_item *item;31413142/*3143 * Always add new_name unless patch is a deletion3144 * This should cover the cases for normal diffs,3145 * file creations and copies3146 */3147if(patch->new_name != NULL) {3148 item =string_list_insert(&fn_table, patch->new_name);3149 item->util = patch;3150}31513152/*3153 * store a failure on rename/deletion cases because3154 * later chunks shouldn't patch old names3155 */3156if((patch->new_name == NULL) || (patch->is_rename)) {3157 item =string_list_insert(&fn_table, patch->old_name);3158 item->util = PATH_WAS_DELETED;3159}3160}31613162static voidprepare_fn_table(struct patch *patch)3163{3164/*3165 * store information about incoming file deletion3166 */3167while(patch) {3168if((patch->new_name == NULL) || (patch->is_rename)) {3169struct string_list_item *item;3170 item =string_list_insert(&fn_table, patch->old_name);3171 item->util = PATH_TO_BE_DELETED;3172}3173 patch = patch->next;3174}3175}31763177static intcheckout_target(struct index_state *istate,3178struct cache_entry *ce,struct stat *st)3179{3180struct checkout costate;31813182memset(&costate,0,sizeof(costate));3183 costate.base_dir ="";3184 costate.refresh_cache =1;3185 costate.istate = istate;3186if(checkout_entry(ce, &costate, NULL) ||lstat(ce->name, st))3187returnerror(_("cannot checkout%s"), ce->name);3188return0;3189}31903191static struct patch *previous_patch(struct patch *patch,int*gone)3192{3193struct patch *previous;31943195*gone =0;3196if(patch->is_copy || patch->is_rename)3197return NULL;/* "git" patches do not depend on the order */31983199 previous =in_fn_table(patch->old_name);3200if(!previous)3201return NULL;32023203if(to_be_deleted(previous))3204return NULL;/* the deletion hasn't happened yet */32053206if(was_deleted(previous))3207*gone =1;32083209return previous;3210}32113212static intverify_index_match(const struct cache_entry *ce,struct stat *st)3213{3214if(S_ISGITLINK(ce->ce_mode)) {3215if(!S_ISDIR(st->st_mode))3216return-1;3217return0;3218}3219returnce_match_stat(ce, st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);3220}32213222#define SUBMODULE_PATCH_WITHOUT_INDEX 132233224static intload_patch_target(struct strbuf *buf,3225const struct cache_entry *ce,3226struct stat *st,3227const char*name,3228unsigned expected_mode)3229{3230if(cached || check_index) {3231if(read_file_or_gitlink(ce, buf))3232returnerror(_("read of%sfailed"), name);3233}else if(name) {3234if(S_ISGITLINK(expected_mode)) {3235if(ce)3236returnread_file_or_gitlink(ce, buf);3237else3238return SUBMODULE_PATCH_WITHOUT_INDEX;3239}else if(has_symlink_leading_path(name,strlen(name))) {3240returnerror(_("reading from '%s' beyond a symbolic link"), name);3241}else{3242if(read_old_data(st, name, buf))3243returnerror(_("read of%sfailed"), name);3244}3245}3246return0;3247}32483249/*3250 * We are about to apply "patch"; populate the "image" with the3251 * current version we have, from the working tree or from the index,3252 * depending on the situation e.g. --cached/--index. If we are3253 * applying a non-git patch that incrementally updates the tree,3254 * we read from the result of a previous diff.3255 */3256static intload_preimage(struct image *image,3257struct patch *patch,struct stat *st,3258const struct cache_entry *ce)3259{3260struct strbuf buf = STRBUF_INIT;3261size_t len;3262char*img;3263struct patch *previous;3264int status;32653266 previous =previous_patch(patch, &status);3267if(status)3268returnerror(_("path%shas been renamed/deleted"),3269 patch->old_name);3270if(previous) {3271/* We have a patched copy in memory; use that. */3272strbuf_add(&buf, previous->result, previous->resultsize);3273}else{3274 status =load_patch_target(&buf, ce, st,3275 patch->old_name, patch->old_mode);3276if(status <0)3277return status;3278else if(status == SUBMODULE_PATCH_WITHOUT_INDEX) {3279/*3280 * There is no way to apply subproject3281 * patch without looking at the index.3282 * NEEDSWORK: shouldn't this be flagged3283 * as an error???3284 */3285free_fragment_list(patch->fragments);3286 patch->fragments = NULL;3287}else if(status) {3288returnerror(_("read of%sfailed"), patch->old_name);3289}3290}32913292 img =strbuf_detach(&buf, &len);3293prepare_image(image, img, len, !patch->is_binary);3294return0;3295}32963297static intthree_way_merge(struct image *image,3298char*path,3299const unsigned char*base,3300const unsigned char*ours,3301const unsigned char*theirs)3302{3303 mmfile_t base_file, our_file, their_file;3304 mmbuffer_t result = { NULL };3305int status;33063307read_mmblob(&base_file, base);3308read_mmblob(&our_file, ours);3309read_mmblob(&their_file, theirs);3310 status =ll_merge(&result, path,3311&base_file,"base",3312&our_file,"ours",3313&their_file,"theirs", NULL);3314free(base_file.ptr);3315free(our_file.ptr);3316free(their_file.ptr);3317if(status <0|| !result.ptr) {3318free(result.ptr);3319return-1;3320}3321clear_image(image);3322 image->buf = result.ptr;3323 image->len = result.size;33243325return status;3326}33273328/*3329 * When directly falling back to add/add three-way merge, we read from3330 * the current contents of the new_name. In no cases other than that3331 * this function will be called.3332 */3333static intload_current(struct image *image,struct patch *patch)3334{3335struct strbuf buf = STRBUF_INIT;3336int status, pos;3337size_t len;3338char*img;3339struct stat st;3340struct cache_entry *ce;3341char*name = patch->new_name;3342unsigned mode = patch->new_mode;33433344if(!patch->is_new)3345die("BUG: patch to%sis not a creation", patch->old_name);33463347 pos =cache_name_pos(name,strlen(name));3348if(pos <0)3349returnerror(_("%s: does not exist in index"), name);3350 ce = active_cache[pos];3351if(lstat(name, &st)) {3352if(errno != ENOENT)3353returnerror(_("%s:%s"), name,strerror(errno));3354if(checkout_target(&the_index, ce, &st))3355return-1;3356}3357if(verify_index_match(ce, &st))3358returnerror(_("%s: does not match index"), name);33593360 status =load_patch_target(&buf, ce, &st, name, mode);3361if(status <0)3362return status;3363else if(status)3364return-1;3365 img =strbuf_detach(&buf, &len);3366prepare_image(image, img, len, !patch->is_binary);3367return0;3368}33693370static inttry_threeway(struct image *image,struct patch *patch,3371struct stat *st,const struct cache_entry *ce)3372{3373unsigned char pre_sha1[20], post_sha1[20], our_sha1[20];3374struct strbuf buf = STRBUF_INIT;3375size_t len;3376int status;3377char*img;3378struct image tmp_image;33793380/* No point falling back to 3-way merge in these cases */3381if(patch->is_delete ||3382S_ISGITLINK(patch->old_mode) ||S_ISGITLINK(patch->new_mode))3383return-1;33843385/* Preimage the patch was prepared for */3386if(patch->is_new)3387write_sha1_file("",0, blob_type, pre_sha1);3388else if(get_sha1(patch->old_sha1_prefix, pre_sha1) ||3389read_blob_object(&buf, pre_sha1, patch->old_mode))3390returnerror("repository lacks the necessary blob to fall back on 3-way merge.");33913392fprintf(stderr,"Falling back to three-way merge...\n");33933394 img =strbuf_detach(&buf, &len);3395prepare_image(&tmp_image, img, len,1);3396/* Apply the patch to get the post image */3397if(apply_fragments(&tmp_image, patch) <0) {3398clear_image(&tmp_image);3399return-1;3400}3401/* post_sha1[] is theirs */3402write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, post_sha1);3403clear_image(&tmp_image);34043405/* our_sha1[] is ours */3406if(patch->is_new) {3407if(load_current(&tmp_image, patch))3408returnerror("cannot read the current contents of '%s'",3409 patch->new_name);3410}else{3411if(load_preimage(&tmp_image, patch, st, ce))3412returnerror("cannot read the current contents of '%s'",3413 patch->old_name);3414}3415write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, our_sha1);3416clear_image(&tmp_image);34173418/* in-core three-way merge between post and our using pre as base */3419 status =three_way_merge(image, patch->new_name,3420 pre_sha1, our_sha1, post_sha1);3421if(status <0) {3422fprintf(stderr,"Failed to fall back on three-way merge...\n");3423return status;3424}34253426if(status) {3427 patch->conflicted_threeway =1;3428if(patch->is_new)3429hashclr(patch->threeway_stage[0]);3430else3431hashcpy(patch->threeway_stage[0], pre_sha1);3432hashcpy(patch->threeway_stage[1], our_sha1);3433hashcpy(patch->threeway_stage[2], post_sha1);3434fprintf(stderr,"Applied patch to '%s' with conflicts.\n", patch->new_name);3435}else{3436fprintf(stderr,"Applied patch to '%s' cleanly.\n", patch->new_name);3437}3438return0;3439}34403441static intapply_data(struct patch *patch,struct stat *st,const struct cache_entry *ce)3442{3443struct image image;34443445if(load_preimage(&image, patch, st, ce) <0)3446return-1;34473448if(patch->direct_to_threeway ||3449apply_fragments(&image, patch) <0) {3450/* Note: with --reject, apply_fragments() returns 0 */3451if(!threeway ||try_threeway(&image, patch, st, ce) <0)3452return-1;3453}3454 patch->result = image.buf;3455 patch->resultsize = image.len;3456add_to_fn_table(patch);3457free(image.line_allocated);34583459if(0< patch->is_delete && patch->resultsize)3460returnerror(_("removal patch leaves file contents"));34613462return0;3463}34643465/*3466 * If "patch" that we are looking at modifies or deletes what we have,3467 * we would want it not to lose any local modification we have, either3468 * in the working tree or in the index.3469 *3470 * This also decides if a non-git patch is a creation patch or a3471 * modification to an existing empty file. We do not check the state3472 * of the current tree for a creation patch in this function; the caller3473 * check_patch() separately makes sure (and errors out otherwise) that3474 * the path the patch creates does not exist in the current tree.3475 */3476static intcheck_preimage(struct patch *patch,struct cache_entry **ce,struct stat *st)3477{3478const char*old_name = patch->old_name;3479struct patch *previous = NULL;3480int stat_ret =0, status;3481unsigned st_mode =0;34823483if(!old_name)3484return0;34853486assert(patch->is_new <=0);3487 previous =previous_patch(patch, &status);34883489if(status)3490returnerror(_("path%shas been renamed/deleted"), old_name);3491if(previous) {3492 st_mode = previous->new_mode;3493}else if(!cached) {3494 stat_ret =lstat(old_name, st);3495if(stat_ret && errno != ENOENT)3496returnerror(_("%s:%s"), old_name,strerror(errno));3497}34983499if(check_index && !previous) {3500int pos =cache_name_pos(old_name,strlen(old_name));3501if(pos <0) {3502if(patch->is_new <0)3503goto is_new;3504returnerror(_("%s: does not exist in index"), old_name);3505}3506*ce = active_cache[pos];3507if(stat_ret <0) {3508if(checkout_target(&the_index, *ce, st))3509return-1;3510}3511if(!cached &&verify_index_match(*ce, st))3512returnerror(_("%s: does not match index"), old_name);3513if(cached)3514 st_mode = (*ce)->ce_mode;3515}else if(stat_ret <0) {3516if(patch->is_new <0)3517goto is_new;3518returnerror(_("%s:%s"), old_name,strerror(errno));3519}35203521if(!cached && !previous)3522 st_mode =ce_mode_from_stat(*ce, st->st_mode);35233524if(patch->is_new <0)3525 patch->is_new =0;3526if(!patch->old_mode)3527 patch->old_mode = st_mode;3528if((st_mode ^ patch->old_mode) & S_IFMT)3529returnerror(_("%s: wrong type"), old_name);3530if(st_mode != patch->old_mode)3531warning(_("%shas type%o, expected%o"),3532 old_name, st_mode, patch->old_mode);3533if(!patch->new_mode && !patch->is_delete)3534 patch->new_mode = st_mode;3535return0;35363537 is_new:3538 patch->is_new =1;3539 patch->is_delete =0;3540free(patch->old_name);3541 patch->old_name = NULL;3542return0;3543}354435453546#define EXISTS_IN_INDEX 13547#define EXISTS_IN_WORKTREE 235483549static intcheck_to_create(const char*new_name,int ok_if_exists)3550{3551struct stat nst;35523553if(check_index &&3554cache_name_pos(new_name,strlen(new_name)) >=0&&3555!ok_if_exists)3556return EXISTS_IN_INDEX;3557if(cached)3558return0;35593560if(!lstat(new_name, &nst)) {3561if(S_ISDIR(nst.st_mode) || ok_if_exists)3562return0;3563/*3564 * A leading component of new_name might be a symlink3565 * that is going to be removed with this patch, but3566 * still pointing at somewhere that has the path.3567 * In such a case, path "new_name" does not exist as3568 * far as git is concerned.3569 */3570if(has_symlink_leading_path(new_name,strlen(new_name)))3571return0;35723573return EXISTS_IN_WORKTREE;3574}else if((errno != ENOENT) && (errno != ENOTDIR)) {3575returnerror("%s:%s", new_name,strerror(errno));3576}3577return0;3578}35793580/*3581 * We need to keep track of how symlinks in the preimage are3582 * manipulated by the patches. A patch to add a/b/c where a/b3583 * is a symlink should not be allowed to affect the directory3584 * the symlink points at, but if the same patch removes a/b,3585 * it is perfectly fine, as the patch removes a/b to make room3586 * to create a directory a/b so that a/b/c can be created.3587 */3588static struct string_list symlink_changes;3589#define SYMLINK_GOES_AWAY 013590#define SYMLINK_IN_RESULT 0235913592static uintptr_tregister_symlink_changes(const char*path,uintptr_t what)3593{3594struct string_list_item *ent;35953596 ent =string_list_lookup(&symlink_changes, path);3597if(!ent) {3598 ent =string_list_insert(&symlink_changes, path);3599 ent->util = (void*)0;3600}3601 ent->util = (void*)(what | ((uintptr_t)ent->util));3602return(uintptr_t)ent->util;3603}36043605static uintptr_tcheck_symlink_changes(const char*path)3606{3607struct string_list_item *ent;36083609 ent =string_list_lookup(&symlink_changes, path);3610if(!ent)3611return0;3612return(uintptr_t)ent->util;3613}36143615static voidprepare_symlink_changes(struct patch *patch)3616{3617for( ; patch; patch = patch->next) {3618if((patch->old_name &&S_ISLNK(patch->old_mode)) &&3619(patch->is_rename || patch->is_delete))3620/* the symlink at patch->old_name is removed */3621register_symlink_changes(patch->old_name, SYMLINK_GOES_AWAY);36223623if(patch->new_name &&S_ISLNK(patch->new_mode))3624/* the symlink at patch->new_name is created or remains */3625register_symlink_changes(patch->new_name, SYMLINK_IN_RESULT);3626}3627}36283629static intpath_is_beyond_symlink_1(struct strbuf *name)3630{3631do{3632unsigned int change;36333634while(--name->len && name->buf[name->len] !='/')3635;/* scan backwards */3636if(!name->len)3637break;3638 name->buf[name->len] ='\0';3639 change =check_symlink_changes(name->buf);3640if(change & SYMLINK_IN_RESULT)3641return1;3642if(change & SYMLINK_GOES_AWAY)3643/*3644 * This cannot be "return 0", because we may3645 * see a new one created at a higher level.3646 */3647continue;36483649/* otherwise, check the preimage */3650if(check_index) {3651struct cache_entry *ce;36523653 ce =cache_file_exists(name->buf, name->len, ignore_case);3654if(ce &&S_ISLNK(ce->ce_mode))3655return1;3656}else{3657struct stat st;3658if(!lstat(name->buf, &st) &&S_ISLNK(st.st_mode))3659return1;3660}3661}while(1);3662return0;3663}36643665static intpath_is_beyond_symlink(const char*name_)3666{3667int ret;3668struct strbuf name = STRBUF_INIT;36693670assert(*name_ !='\0');3671strbuf_addstr(&name, name_);3672 ret =path_is_beyond_symlink_1(&name);3673strbuf_release(&name);36743675return ret;3676}36773678static voiddie_on_unsafe_path(struct patch *patch)3679{3680const char*old_name = NULL;3681const char*new_name = NULL;3682if(patch->is_delete)3683 old_name = patch->old_name;3684else if(!patch->is_new && !patch->is_copy)3685 old_name = patch->old_name;3686if(!patch->is_delete)3687 new_name = patch->new_name;36883689if(old_name && !verify_path(old_name))3690die(_("invalid path '%s'"), old_name);3691if(new_name && !verify_path(new_name))3692die(_("invalid path '%s'"), new_name);3693}36943695/*3696 * Check and apply the patch in-core; leave the result in patch->result3697 * for the caller to write it out to the final destination.3698 */3699static intcheck_patch(struct patch *patch)3700{3701struct stat st;3702const char*old_name = patch->old_name;3703const char*new_name = patch->new_name;3704const char*name = old_name ? old_name : new_name;3705struct cache_entry *ce = NULL;3706struct patch *tpatch;3707int ok_if_exists;3708int status;37093710 patch->rejected =1;/* we will drop this after we succeed */37113712 status =check_preimage(patch, &ce, &st);3713if(status)3714return status;3715 old_name = patch->old_name;37163717/*3718 * A type-change diff is always split into a patch to delete3719 * old, immediately followed by a patch to create new (see3720 * diff.c::run_diff()); in such a case it is Ok that the entry3721 * to be deleted by the previous patch is still in the working3722 * tree and in the index.3723 *3724 * A patch to swap-rename between A and B would first rename A3725 * to B and then rename B to A. While applying the first one,3726 * the presence of B should not stop A from getting renamed to3727 * B; ask to_be_deleted() about the later rename. Removal of3728 * B and rename from A to B is handled the same way by asking3729 * was_deleted().3730 */3731if((tpatch =in_fn_table(new_name)) &&3732(was_deleted(tpatch) ||to_be_deleted(tpatch)))3733 ok_if_exists =1;3734else3735 ok_if_exists =0;37363737if(new_name &&3738((0< patch->is_new) || patch->is_rename || patch->is_copy)) {3739int err =check_to_create(new_name, ok_if_exists);37403741if(err && threeway) {3742 patch->direct_to_threeway =1;3743}else switch(err) {3744case0:3745break;/* happy */3746case EXISTS_IN_INDEX:3747returnerror(_("%s: already exists in index"), new_name);3748break;3749case EXISTS_IN_WORKTREE:3750returnerror(_("%s: already exists in working directory"),3751 new_name);3752default:3753return err;3754}37553756if(!patch->new_mode) {3757if(0< patch->is_new)3758 patch->new_mode = S_IFREG |0644;3759else3760 patch->new_mode = patch->old_mode;3761}3762}37633764if(new_name && old_name) {3765int same = !strcmp(old_name, new_name);3766if(!patch->new_mode)3767 patch->new_mode = patch->old_mode;3768if((patch->old_mode ^ patch->new_mode) & S_IFMT) {3769if(same)3770returnerror(_("new mode (%o) of%sdoes not "3771"match old mode (%o)"),3772 patch->new_mode, new_name,3773 patch->old_mode);3774else3775returnerror(_("new mode (%o) of%sdoes not "3776"match old mode (%o) of%s"),3777 patch->new_mode, new_name,3778 patch->old_mode, old_name);3779}3780}37813782if(!unsafe_paths)3783die_on_unsafe_path(patch);37843785/*3786 * An attempt to read from or delete a path that is beyond a3787 * symbolic link will be prevented by load_patch_target() that3788 * is called at the beginning of apply_data() so we do not3789 * have to worry about a patch marked with "is_delete" bit3790 * here. We however need to make sure that the patch result3791 * is not deposited to a path that is beyond a symbolic link3792 * here.3793 */3794if(!patch->is_delete &&path_is_beyond_symlink(patch->new_name))3795returnerror(_("affected file '%s' is beyond a symbolic link"),3796 patch->new_name);37973798if(apply_data(patch, &st, ce) <0)3799returnerror(_("%s: patch does not apply"), name);3800 patch->rejected =0;3801return0;3802}38033804static intcheck_patch_list(struct patch *patch)3805{3806int err =0;38073808prepare_symlink_changes(patch);3809prepare_fn_table(patch);3810while(patch) {3811if(apply_verbosely)3812say_patch_name(stderr,3813_("Checking patch%s..."), patch);3814 err |=check_patch(patch);3815 patch = patch->next;3816}3817return err;3818}38193820/* This function tries to read the sha1 from the current index */3821static intget_current_sha1(const char*path,unsigned char*sha1)3822{3823int pos;38243825if(read_cache() <0)3826return-1;3827 pos =cache_name_pos(path,strlen(path));3828if(pos <0)3829return-1;3830hashcpy(sha1, active_cache[pos]->sha1);3831return0;3832}38333834static intpreimage_sha1_in_gitlink_patch(struct patch *p,unsigned char sha1[20])3835{3836/*3837 * A usable gitlink patch has only one fragment (hunk) that looks like:3838 * @@ -1 +1 @@3839 * -Subproject commit <old sha1>3840 * +Subproject commit <new sha1>3841 * or3842 * @@ -1 +0,0 @@3843 * -Subproject commit <old sha1>3844 * for a removal patch.3845 */3846struct fragment *hunk = p->fragments;3847static const char heading[] ="-Subproject commit ";3848char*preimage;38493850if(/* does the patch have only one hunk? */3851 hunk && !hunk->next &&3852/* is its preimage one line? */3853 hunk->oldpos ==1&& hunk->oldlines ==1&&3854/* does preimage begin with the heading? */3855(preimage =memchr(hunk->patch,'\n', hunk->size)) != NULL &&3856starts_with(++preimage, heading) &&3857/* does it record full SHA-1? */3858!get_sha1_hex(preimage +sizeof(heading) -1, sha1) &&3859 preimage[sizeof(heading) +40-1] =='\n'&&3860/* does the abbreviated name on the index line agree with it? */3861starts_with(preimage +sizeof(heading) -1, p->old_sha1_prefix))3862return0;/* it all looks fine */38633864/* we may have full object name on the index line */3865returnget_sha1_hex(p->old_sha1_prefix, sha1);3866}38673868/* Build an index that contains the just the files needed for a 3way merge */3869static voidbuild_fake_ancestor(struct patch *list,const char*filename)3870{3871struct patch *patch;3872struct index_state result = { NULL };3873static struct lock_file lock;38743875/* Once we start supporting the reverse patch, it may be3876 * worth showing the new sha1 prefix, but until then...3877 */3878for(patch = list; patch; patch = patch->next) {3879unsigned char sha1[20];3880struct cache_entry *ce;3881const char*name;38823883 name = patch->old_name ? patch->old_name : patch->new_name;3884if(0< patch->is_new)3885continue;38863887if(S_ISGITLINK(patch->old_mode)) {3888if(!preimage_sha1_in_gitlink_patch(patch, sha1))3889;/* ok, the textual part looks sane */3890else3891die("sha1 information is lacking or useless for submodule%s",3892 name);3893}else if(!get_sha1_blob(patch->old_sha1_prefix, sha1)) {3894;/* ok */3895}else if(!patch->lines_added && !patch->lines_deleted) {3896/* mode-only change: update the current */3897if(get_current_sha1(patch->old_name, sha1))3898die("mode change for%s, which is not "3899"in current HEAD", name);3900}else3901die("sha1 information is lacking or useless "3902"(%s).", name);39033904 ce =make_cache_entry(patch->old_mode, sha1, name,0,0);3905if(!ce)3906die(_("make_cache_entry failed for path '%s'"), name);3907if(add_index_entry(&result, ce, ADD_CACHE_OK_TO_ADD))3908die("Could not add%sto temporary index", name);3909}39103911hold_lock_file_for_update(&lock, filename, LOCK_DIE_ON_ERROR);3912if(write_locked_index(&result, &lock, COMMIT_LOCK))3913die("Could not write temporary index to%s", filename);39143915discard_index(&result);3916}39173918static voidstat_patch_list(struct patch *patch)3919{3920int files, adds, dels;39213922for(files = adds = dels =0; patch ; patch = patch->next) {3923 files++;3924 adds += patch->lines_added;3925 dels += patch->lines_deleted;3926show_stats(patch);3927}39283929print_stat_summary(stdout, files, adds, dels);3930}39313932static voidnumstat_patch_list(struct patch *patch)3933{3934for( ; patch; patch = patch->next) {3935const char*name;3936 name = patch->new_name ? patch->new_name : patch->old_name;3937if(patch->is_binary)3938printf("-\t-\t");3939else3940printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);3941write_name_quoted(name, stdout, line_termination);3942}3943}39443945static voidshow_file_mode_name(const char*newdelete,unsigned int mode,const char*name)3946{3947if(mode)3948printf("%smode%06o%s\n", newdelete, mode, name);3949else3950printf("%s %s\n", newdelete, name);3951}39523953static voidshow_mode_change(struct patch *p,int show_name)3954{3955if(p->old_mode && p->new_mode && p->old_mode != p->new_mode) {3956if(show_name)3957printf(" mode change%06o =>%06o%s\n",3958 p->old_mode, p->new_mode, p->new_name);3959else3960printf(" mode change%06o =>%06o\n",3961 p->old_mode, p->new_mode);3962}3963}39643965static voidshow_rename_copy(struct patch *p)3966{3967const char*renamecopy = p->is_rename ?"rename":"copy";3968const char*old, *new;39693970/* Find common prefix */3971 old = p->old_name;3972new= p->new_name;3973while(1) {3974const char*slash_old, *slash_new;3975 slash_old =strchr(old,'/');3976 slash_new =strchr(new,'/');3977if(!slash_old ||3978!slash_new ||3979 slash_old - old != slash_new -new||3980memcmp(old,new, slash_new -new))3981break;3982 old = slash_old +1;3983new= slash_new +1;3984}3985/* p->old_name thru old is the common prefix, and old and new3986 * through the end of names are renames3987 */3988if(old != p->old_name)3989printf("%s%.*s{%s=>%s} (%d%%)\n", renamecopy,3990(int)(old - p->old_name), p->old_name,3991 old,new, p->score);3992else3993printf("%s %s=>%s(%d%%)\n", renamecopy,3994 p->old_name, p->new_name, p->score);3995show_mode_change(p,0);3996}39973998static voidsummary_patch_list(struct patch *patch)3999{4000struct patch *p;40014002for(p = patch; p; p = p->next) {4003if(p->is_new)4004show_file_mode_name("create", p->new_mode, p->new_name);4005else if(p->is_delete)4006show_file_mode_name("delete", p->old_mode, p->old_name);4007else{4008if(p->is_rename || p->is_copy)4009show_rename_copy(p);4010else{4011if(p->score) {4012printf(" rewrite%s(%d%%)\n",4013 p->new_name, p->score);4014show_mode_change(p,0);4015}4016else4017show_mode_change(p,1);4018}4019}4020}4021}40224023static voidpatch_stats(struct patch *patch)4024{4025int lines = patch->lines_added + patch->lines_deleted;40264027if(lines > max_change)4028 max_change = lines;4029if(patch->old_name) {4030int len =quote_c_style(patch->old_name, NULL, NULL,0);4031if(!len)4032 len =strlen(patch->old_name);4033if(len > max_len)4034 max_len = len;4035}4036if(patch->new_name) {4037int len =quote_c_style(patch->new_name, NULL, NULL,0);4038if(!len)4039 len =strlen(patch->new_name);4040if(len > max_len)4041 max_len = len;4042}4043}40444045static voidremove_file(struct patch *patch,int rmdir_empty)4046{4047if(update_index) {4048if(remove_file_from_cache(patch->old_name) <0)4049die(_("unable to remove%sfrom index"), patch->old_name);4050}4051if(!cached) {4052if(!remove_or_warn(patch->old_mode, patch->old_name) && rmdir_empty) {4053remove_path(patch->old_name);4054}4055}4056}40574058static voidadd_index_file(const char*path,unsigned mode,void*buf,unsigned long size)4059{4060struct stat st;4061struct cache_entry *ce;4062int namelen =strlen(path);4063unsigned ce_size =cache_entry_size(namelen);40644065if(!update_index)4066return;40674068 ce =xcalloc(1, ce_size);4069memcpy(ce->name, path, namelen);4070 ce->ce_mode =create_ce_mode(mode);4071 ce->ce_flags =create_ce_flags(0);4072 ce->ce_namelen = namelen;4073if(S_ISGITLINK(mode)) {4074const char*s;40754076if(!skip_prefix(buf,"Subproject commit ", &s) ||4077get_sha1_hex(s, ce->sha1))4078die(_("corrupt patch for submodule%s"), path);4079}else{4080if(!cached) {4081if(lstat(path, &st) <0)4082die_errno(_("unable to stat newly created file '%s'"),4083 path);4084fill_stat_cache_info(ce, &st);4085}4086if(write_sha1_file(buf, size, blob_type, ce->sha1) <0)4087die(_("unable to create backing store for newly created file%s"), path);4088}4089if(add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) <0)4090die(_("unable to add cache entry for%s"), path);4091}40924093static inttry_create_file(const char*path,unsigned int mode,const char*buf,unsigned long size)4094{4095int fd;4096struct strbuf nbuf = STRBUF_INIT;40974098if(S_ISGITLINK(mode)) {4099struct stat st;4100if(!lstat(path, &st) &&S_ISDIR(st.st_mode))4101return0;4102returnmkdir(path,0777);4103}41044105if(has_symlinks &&S_ISLNK(mode))4106/* Although buf:size is counted string, it also is NUL4107 * terminated.4108 */4109returnsymlink(buf, path);41104111 fd =open(path, O_CREAT | O_EXCL | O_WRONLY, (mode &0100) ?0777:0666);4112if(fd <0)4113return-1;41144115if(convert_to_working_tree(path, buf, size, &nbuf)) {4116 size = nbuf.len;4117 buf = nbuf.buf;4118}4119write_or_die(fd, buf, size);4120strbuf_release(&nbuf);41214122if(close(fd) <0)4123die_errno(_("closing file '%s'"), path);4124return0;4125}41264127/*4128 * We optimistically assume that the directories exist,4129 * which is true 99% of the time anyway. If they don't,4130 * we create them and try again.4131 */4132static voidcreate_one_file(char*path,unsigned mode,const char*buf,unsigned long size)4133{4134if(cached)4135return;4136if(!try_create_file(path, mode, buf, size))4137return;41384139if(errno == ENOENT) {4140if(safe_create_leading_directories(path))4141return;4142if(!try_create_file(path, mode, buf, size))4143return;4144}41454146if(errno == EEXIST || errno == EACCES) {4147/* We may be trying to create a file where a directory4148 * used to be.4149 */4150struct stat st;4151if(!lstat(path, &st) && (!S_ISDIR(st.st_mode) || !rmdir(path)))4152 errno = EEXIST;4153}41544155if(errno == EEXIST) {4156unsigned int nr =getpid();41574158for(;;) {4159char newpath[PATH_MAX];4160mksnpath(newpath,sizeof(newpath),"%s~%u", path, nr);4161if(!try_create_file(newpath, mode, buf, size)) {4162if(!rename(newpath, path))4163return;4164unlink_or_warn(newpath);4165break;4166}4167if(errno != EEXIST)4168break;4169++nr;4170}4171}4172die_errno(_("unable to write file '%s' mode%o"), path, mode);4173}41744175static voidadd_conflicted_stages_file(struct patch *patch)4176{4177int stage, namelen;4178unsigned ce_size, mode;4179struct cache_entry *ce;41804181if(!update_index)4182return;4183 namelen =strlen(patch->new_name);4184 ce_size =cache_entry_size(namelen);4185 mode = patch->new_mode ? patch->new_mode : (S_IFREG |0644);41864187remove_file_from_cache(patch->new_name);4188for(stage =1; stage <4; stage++) {4189if(is_null_sha1(patch->threeway_stage[stage -1]))4190continue;4191 ce =xcalloc(1, ce_size);4192memcpy(ce->name, patch->new_name, namelen);4193 ce->ce_mode =create_ce_mode(mode);4194 ce->ce_flags =create_ce_flags(stage);4195 ce->ce_namelen = namelen;4196hashcpy(ce->sha1, patch->threeway_stage[stage -1]);4197if(add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) <0)4198die(_("unable to add cache entry for%s"), patch->new_name);4199}4200}42014202static voidcreate_file(struct patch *patch)4203{4204char*path = patch->new_name;4205unsigned mode = patch->new_mode;4206unsigned long size = patch->resultsize;4207char*buf = patch->result;42084209if(!mode)4210 mode = S_IFREG |0644;4211create_one_file(path, mode, buf, size);42124213if(patch->conflicted_threeway)4214add_conflicted_stages_file(patch);4215else4216add_index_file(path, mode, buf, size);4217}42184219/* phase zero is to remove, phase one is to create */4220static voidwrite_out_one_result(struct patch *patch,int phase)4221{4222if(patch->is_delete >0) {4223if(phase ==0)4224remove_file(patch,1);4225return;4226}4227if(patch->is_new >0|| patch->is_copy) {4228if(phase ==1)4229create_file(patch);4230return;4231}4232/*4233 * Rename or modification boils down to the same4234 * thing: remove the old, write the new4235 */4236if(phase ==0)4237remove_file(patch, patch->is_rename);4238if(phase ==1)4239create_file(patch);4240}42414242static intwrite_out_one_reject(struct patch *patch)4243{4244FILE*rej;4245char namebuf[PATH_MAX];4246struct fragment *frag;4247int cnt =0;4248struct strbuf sb = STRBUF_INIT;42494250for(cnt =0, frag = patch->fragments; frag; frag = frag->next) {4251if(!frag->rejected)4252continue;4253 cnt++;4254}42554256if(!cnt) {4257if(apply_verbosely)4258say_patch_name(stderr,4259_("Applied patch%scleanly."), patch);4260return0;4261}42624263/* This should not happen, because a removal patch that leaves4264 * contents are marked "rejected" at the patch level.4265 */4266if(!patch->new_name)4267die(_("internal error"));42684269/* Say this even without --verbose */4270strbuf_addf(&sb,Q_("Applying patch %%swith%dreject...",4271"Applying patch %%swith%drejects...",4272 cnt),4273 cnt);4274say_patch_name(stderr, sb.buf, patch);4275strbuf_release(&sb);42764277 cnt =strlen(patch->new_name);4278if(ARRAY_SIZE(namebuf) <= cnt +5) {4279 cnt =ARRAY_SIZE(namebuf) -5;4280warning(_("truncating .rej filename to %.*s.rej"),4281 cnt -1, patch->new_name);4282}4283memcpy(namebuf, patch->new_name, cnt);4284memcpy(namebuf + cnt,".rej",5);42854286 rej =fopen(namebuf,"w");4287if(!rej)4288returnerror(_("cannot open%s:%s"), namebuf,strerror(errno));42894290/* Normal git tools never deal with .rej, so do not pretend4291 * this is a git patch by saying --git or giving extended4292 * headers. While at it, maybe please "kompare" that wants4293 * the trailing TAB and some garbage at the end of line ;-).4294 */4295fprintf(rej,"diff a/%sb/%s\t(rejected hunks)\n",4296 patch->new_name, patch->new_name);4297for(cnt =1, frag = patch->fragments;4298 frag;4299 cnt++, frag = frag->next) {4300if(!frag->rejected) {4301fprintf_ln(stderr,_("Hunk #%dapplied cleanly."), cnt);4302continue;4303}4304fprintf_ln(stderr,_("Rejected hunk #%d."), cnt);4305fprintf(rej,"%.*s", frag->size, frag->patch);4306if(frag->patch[frag->size-1] !='\n')4307fputc('\n', rej);4308}4309fclose(rej);4310return-1;4311}43124313static intwrite_out_results(struct patch *list)4314{4315int phase;4316int errs =0;4317struct patch *l;4318struct string_list cpath = STRING_LIST_INIT_DUP;43194320for(phase =0; phase <2; phase++) {4321 l = list;4322while(l) {4323if(l->rejected)4324 errs =1;4325else{4326write_out_one_result(l, phase);4327if(phase ==1) {4328if(write_out_one_reject(l))4329 errs =1;4330if(l->conflicted_threeway) {4331string_list_append(&cpath, l->new_name);4332 errs =1;4333}4334}4335}4336 l = l->next;4337}4338}43394340if(cpath.nr) {4341struct string_list_item *item;43424343string_list_sort(&cpath);4344for_each_string_list_item(item, &cpath)4345fprintf(stderr,"U%s\n", item->string);4346string_list_clear(&cpath,0);43474348rerere(0);4349}43504351return errs;4352}43534354static struct lock_file lock_file;43554356#define INACCURATE_EOF (1<<0)4357#define RECOUNT (1<<1)43584359static intapply_patch(int fd,const char*filename,int options)4360{4361size_t offset;4362struct strbuf buf = STRBUF_INIT;/* owns the patch text */4363struct patch *list = NULL, **listp = &list;4364int skipped_patch =0;43654366 patch_input_file = filename;4367read_patch_file(&buf, fd);4368 offset =0;4369while(offset < buf.len) {4370struct patch *patch;4371int nr;43724373 patch =xcalloc(1,sizeof(*patch));4374 patch->inaccurate_eof = !!(options & INACCURATE_EOF);4375 patch->recount = !!(options & RECOUNT);4376 nr =parse_chunk(buf.buf + offset, buf.len - offset, patch);4377if(nr <0)4378break;4379if(apply_in_reverse)4380reverse_patches(patch);4381if(use_patch(patch)) {4382patch_stats(patch);4383*listp = patch;4384 listp = &patch->next;4385}4386else{4387free_patch(patch);4388 skipped_patch++;4389}4390 offset += nr;4391}43924393if(!list && !skipped_patch)4394die(_("unrecognized input"));43954396if(whitespace_error && (ws_error_action == die_on_ws_error))4397 apply =0;43984399 update_index = check_index && apply;4400if(update_index && newfd <0)4401 newfd =hold_locked_index(&lock_file,1);44024403if(check_index) {4404if(read_cache() <0)4405die(_("unable to read index file"));4406}44074408if((check || apply) &&4409check_patch_list(list) <0&&4410!apply_with_reject)4411exit(1);44124413if(apply &&write_out_results(list)) {4414if(apply_with_reject)4415exit(1);4416/* with --3way, we still need to write the index out */4417return1;4418}44194420if(fake_ancestor)4421build_fake_ancestor(list, fake_ancestor);44224423if(diffstat)4424stat_patch_list(list);44254426if(numstat)4427numstat_patch_list(list);44284429if(summary)4430summary_patch_list(list);44314432free_patch_list(list);4433strbuf_release(&buf);4434string_list_clear(&fn_table,0);4435return0;4436}44374438static voidgit_apply_config(void)4439{4440git_config_get_string_const("apply.whitespace", &apply_default_whitespace);4441git_config_get_string_const("apply.ignorewhitespace", &apply_default_ignorewhitespace);4442git_config(git_default_config, NULL);4443}44444445static intoption_parse_exclude(const struct option *opt,4446const char*arg,int unset)4447{4448add_name_limit(arg,1);4449return0;4450}44514452static intoption_parse_include(const struct option *opt,4453const char*arg,int unset)4454{4455add_name_limit(arg,0);4456 has_include =1;4457return0;4458}44594460static intoption_parse_p(const struct option *opt,4461const char*arg,int unset)4462{4463 p_value =atoi(arg);4464 p_value_known =1;4465return0;4466}44674468static intoption_parse_z(const struct option *opt,4469const char*arg,int unset)4470{4471if(unset)4472 line_termination ='\n';4473else4474 line_termination =0;4475return0;4476}44774478static intoption_parse_space_change(const struct option *opt,4479const char*arg,int unset)4480{4481if(unset)4482 ws_ignore_action = ignore_ws_none;4483else4484 ws_ignore_action = ignore_ws_change;4485return0;4486}44874488static intoption_parse_whitespace(const struct option *opt,4489const char*arg,int unset)4490{4491const char**whitespace_option = opt->value;44924493*whitespace_option = arg;4494parse_whitespace_option(arg);4495return0;4496}44974498static intoption_parse_directory(const struct option *opt,4499const char*arg,int unset)4500{4501 root_len =strlen(arg);4502if(root_len && arg[root_len -1] !='/') {4503char*new_root;4504 root = new_root =xmalloc(root_len +2);4505strcpy(new_root, arg);4506strcpy(new_root + root_len++,"/");4507}else4508 root = arg;4509return0;4510}45114512intcmd_apply(int argc,const char**argv,const char*prefix_)4513{4514int i;4515int errs =0;4516int is_not_gitdir = !startup_info->have_repository;4517int force_apply =0;45184519const char*whitespace_option = NULL;45204521struct option builtin_apply_options[] = {4522{ OPTION_CALLBACK,0,"exclude", NULL,N_("path"),4523N_("don't apply changes matching the given path"),45240, option_parse_exclude },4525{ OPTION_CALLBACK,0,"include", NULL,N_("path"),4526N_("apply changes matching the given path"),45270, option_parse_include },4528{ OPTION_CALLBACK,'p', NULL, NULL,N_("num"),4529N_("remove <num> leading slashes from traditional diff paths"),45300, option_parse_p },4531OPT_BOOL(0,"no-add", &no_add,4532N_("ignore additions made by the patch")),4533OPT_BOOL(0,"stat", &diffstat,4534N_("instead of applying the patch, output diffstat for the input")),4535OPT_NOOP_NOARG(0,"allow-binary-replacement"),4536OPT_NOOP_NOARG(0,"binary"),4537OPT_BOOL(0,"numstat", &numstat,4538N_("show number of added and deleted lines in decimal notation")),4539OPT_BOOL(0,"summary", &summary,4540N_("instead of applying the patch, output a summary for the input")),4541OPT_BOOL(0,"check", &check,4542N_("instead of applying the patch, see if the patch is applicable")),4543OPT_BOOL(0,"index", &check_index,4544N_("make sure the patch is applicable to the current index")),4545OPT_BOOL(0,"cached", &cached,4546N_("apply a patch without touching the working tree")),4547OPT_BOOL(0,"unsafe-paths", &unsafe_paths,4548N_("accept a patch that touches outside the working area")),4549OPT_BOOL(0,"apply", &force_apply,4550N_("also apply the patch (use with --stat/--summary/--check)")),4551OPT_BOOL('3',"3way", &threeway,4552N_("attempt three-way merge if a patch does not apply")),4553OPT_FILENAME(0,"build-fake-ancestor", &fake_ancestor,4554N_("build a temporary index based on embedded index information")),4555{ OPTION_CALLBACK,'z', NULL, NULL, NULL,4556N_("paths are separated with NUL character"),4557 PARSE_OPT_NOARG, option_parse_z },4558OPT_INTEGER('C', NULL, &p_context,4559N_("ensure at least <n> lines of context match")),4560{ OPTION_CALLBACK,0,"whitespace", &whitespace_option,N_("action"),4561N_("detect new or modified lines that have whitespace errors"),45620, option_parse_whitespace },4563{ OPTION_CALLBACK,0,"ignore-space-change", NULL, NULL,4564N_("ignore changes in whitespace when finding context"),4565 PARSE_OPT_NOARG, option_parse_space_change },4566{ OPTION_CALLBACK,0,"ignore-whitespace", NULL, NULL,4567N_("ignore changes in whitespace when finding context"),4568 PARSE_OPT_NOARG, option_parse_space_change },4569OPT_BOOL('R',"reverse", &apply_in_reverse,4570N_("apply the patch in reverse")),4571OPT_BOOL(0,"unidiff-zero", &unidiff_zero,4572N_("don't expect at least one line of context")),4573OPT_BOOL(0,"reject", &apply_with_reject,4574N_("leave the rejected hunks in corresponding *.rej files")),4575OPT_BOOL(0,"allow-overlap", &allow_overlap,4576N_("allow overlapping hunks")),4577OPT__VERBOSE(&apply_verbosely,N_("be verbose")),4578OPT_BIT(0,"inaccurate-eof", &options,4579N_("tolerate incorrectly detected missing new-line at the end of file"),4580 INACCURATE_EOF),4581OPT_BIT(0,"recount", &options,4582N_("do not trust the line counts in the hunk headers"),4583 RECOUNT),4584{ OPTION_CALLBACK,0,"directory", NULL,N_("root"),4585N_("prepend <root> to all filenames"),45860, option_parse_directory },4587OPT_END()4588};45894590 prefix = prefix_;4591 prefix_length = prefix ?strlen(prefix) :0;4592git_apply_config();4593if(apply_default_whitespace)4594parse_whitespace_option(apply_default_whitespace);4595if(apply_default_ignorewhitespace)4596parse_ignorewhitespace_option(apply_default_ignorewhitespace);45974598 argc =parse_options(argc, argv, prefix, builtin_apply_options,4599 apply_usage,0);46004601if(apply_with_reject && threeway)4602die("--reject and --3way cannot be used together.");4603if(cached && threeway)4604die("--cached and --3way cannot be used together.");4605if(threeway) {4606if(is_not_gitdir)4607die(_("--3way outside a repository"));4608 check_index =1;4609}4610if(apply_with_reject)4611 apply = apply_verbosely =1;4612if(!force_apply && (diffstat || numstat || summary || check || fake_ancestor))4613 apply =0;4614if(check_index && is_not_gitdir)4615die(_("--index outside a repository"));4616if(cached) {4617if(is_not_gitdir)4618die(_("--cached outside a repository"));4619 check_index =1;4620}4621if(check_index)4622 unsafe_paths =0;46234624for(i =0; i < argc; i++) {4625const char*arg = argv[i];4626int fd;46274628if(!strcmp(arg,"-")) {4629 errs |=apply_patch(0,"<stdin>", options);4630 read_stdin =0;4631continue;4632}else if(0< prefix_length)4633 arg =prefix_filename(prefix, prefix_length, arg);46344635 fd =open(arg, O_RDONLY);4636if(fd <0)4637die_errno(_("can't open patch '%s'"), arg);4638 read_stdin =0;4639set_default_whitespace_mode(whitespace_option);4640 errs |=apply_patch(fd, arg, options);4641close(fd);4642}4643set_default_whitespace_mode(whitespace_option);4644if(read_stdin)4645 errs |=apply_patch(0,"<stdin>", options);4646if(whitespace_error) {4647if(squelch_whitespace_errors &&4648 squelch_whitespace_errors < whitespace_error) {4649int squelched =4650 whitespace_error - squelch_whitespace_errors;4651warning(Q_("squelched%dwhitespace error",4652"squelched%dwhitespace errors",4653 squelched),4654 squelched);4655}4656if(ws_error_action == die_on_ws_error)4657die(Q_("%dline adds whitespace errors.",4658"%dlines add whitespace errors.",4659 whitespace_error),4660 whitespace_error);4661if(applied_after_fixing_ws && apply)4662warning("%dline%sapplied after"4663" fixing whitespace errors.",4664 applied_after_fixing_ws,4665 applied_after_fixing_ws ==1?"":"s");4666else if(whitespace_error)4667warning(Q_("%dline adds whitespace errors.",4668"%dlines add whitespace errors.",4669 whitespace_error),4670 whitespace_error);4671}46724673if(update_index) {4674if(write_locked_index(&the_index, &lock_file, COMMIT_LOCK))4675die(_("Unable to write new index file"));4676}46774678return!!errs;4679}