1/* 2 * apply.c 3 * 4 * Copyright (C) Linus Torvalds, 2005 5 * 6 * This applies patches on top of some (arbitrary) version of the SCM. 7 * 8 */ 9#include"cache.h" 10#include"cache-tree.h" 11#include"quote.h" 12#include"blob.h" 13#include"delta.h" 14#include"builtin.h" 15#include"string-list.h" 16#include"dir.h" 17#include"diff.h" 18#include"parse-options.h" 19#include"xdiff-interface.h" 20#include"ll-merge.h" 21#include"rerere.h" 22 23/* 24 * --check turns on checking that the working tree matches the 25 * files that are being modified, but doesn't apply the patch 26 * --stat does just a diffstat, and doesn't actually apply 27 * --numstat does numeric diffstat, and doesn't actually apply 28 * --index-info shows the old and new index info for paths if available. 29 * --index updates the cache as well. 30 * --cached updates only the cache without ever touching the working tree. 31 */ 32static const char*prefix; 33static int prefix_length = -1; 34static int newfd = -1; 35 36static int unidiff_zero; 37static int p_value =1; 38static int p_value_known; 39static int check_index; 40static int update_index; 41static int cached; 42static int diffstat; 43static int numstat; 44static int summary; 45static int check; 46static int apply =1; 47static int apply_in_reverse; 48static int apply_with_reject; 49static int apply_verbosely; 50static int allow_overlap; 51static int no_add; 52static int threeway; 53static const char*fake_ancestor; 54static int line_termination ='\n'; 55static unsigned int p_context = UINT_MAX; 56static const char*const apply_usage[] = { 57N_("git apply [options] [<patch>...]"), 58 NULL 59}; 60 61static enum ws_error_action { 62 nowarn_ws_error, 63 warn_on_ws_error, 64 die_on_ws_error, 65 correct_ws_error 66} ws_error_action = warn_on_ws_error; 67static int whitespace_error; 68static int squelch_whitespace_errors =5; 69static int applied_after_fixing_ws; 70 71static enum ws_ignore { 72 ignore_ws_none, 73 ignore_ws_change 74} ws_ignore_action = ignore_ws_none; 75 76 77static const char*patch_input_file; 78static const char*root; 79static int root_len; 80static int read_stdin =1; 81static int options; 82 83static voidparse_whitespace_option(const char*option) 84{ 85if(!option) { 86 ws_error_action = warn_on_ws_error; 87return; 88} 89if(!strcmp(option,"warn")) { 90 ws_error_action = warn_on_ws_error; 91return; 92} 93if(!strcmp(option,"nowarn")) { 94 ws_error_action = nowarn_ws_error; 95return; 96} 97if(!strcmp(option,"error")) { 98 ws_error_action = die_on_ws_error; 99return; 100} 101if(!strcmp(option,"error-all")) { 102 ws_error_action = die_on_ws_error; 103 squelch_whitespace_errors =0; 104return; 105} 106if(!strcmp(option,"strip") || !strcmp(option,"fix")) { 107 ws_error_action = correct_ws_error; 108return; 109} 110die(_("unrecognized whitespace option '%s'"), option); 111} 112 113static voidparse_ignorewhitespace_option(const char*option) 114{ 115if(!option || !strcmp(option,"no") || 116!strcmp(option,"false") || !strcmp(option,"never") || 117!strcmp(option,"none")) { 118 ws_ignore_action = ignore_ws_none; 119return; 120} 121if(!strcmp(option,"change")) { 122 ws_ignore_action = ignore_ws_change; 123return; 124} 125die(_("unrecognized whitespace ignore option '%s'"), option); 126} 127 128static voidset_default_whitespace_mode(const char*whitespace_option) 129{ 130if(!whitespace_option && !apply_default_whitespace) 131 ws_error_action = (apply ? warn_on_ws_error : nowarn_ws_error); 132} 133 134/* 135 * For "diff-stat" like behaviour, we keep track of the biggest change 136 * we've seen, and the longest filename. That allows us to do simple 137 * scaling. 138 */ 139static int max_change, max_len; 140 141/* 142 * Various "current state", notably line numbers and what 143 * file (and how) we're patching right now.. The "is_xxxx" 144 * things are flags, where -1 means "don't know yet". 145 */ 146static int linenr =1; 147 148/* 149 * This represents one "hunk" from a patch, starting with 150 * "@@ -oldpos,oldlines +newpos,newlines @@" marker. The 151 * patch text is pointed at by patch, and its byte length 152 * is stored in size. leading and trailing are the number 153 * of context lines. 154 */ 155struct fragment { 156unsigned long leading, trailing; 157unsigned long oldpos, oldlines; 158unsigned long newpos, newlines; 159/* 160 * 'patch' is usually borrowed from buf in apply_patch(), 161 * but some codepaths store an allocated buffer. 162 */ 163const char*patch; 164unsigned free_patch:1, 165 rejected:1; 166int size; 167int linenr; 168struct fragment *next; 169}; 170 171/* 172 * When dealing with a binary patch, we reuse "leading" field 173 * to store the type of the binary hunk, either deflated "delta" 174 * or deflated "literal". 175 */ 176#define binary_patch_method leading 177#define BINARY_DELTA_DEFLATED 1 178#define BINARY_LITERAL_DEFLATED 2 179 180/* 181 * This represents a "patch" to a file, both metainfo changes 182 * such as creation/deletion, filemode and content changes represented 183 * as a series of fragments. 184 */ 185struct patch { 186char*new_name, *old_name, *def_name; 187unsigned int old_mode, new_mode; 188int is_new, is_delete;/* -1 = unknown, 0 = false, 1 = true */ 189int rejected; 190unsigned ws_rule; 191int lines_added, lines_deleted; 192int score; 193unsigned int is_toplevel_relative:1; 194unsigned int inaccurate_eof:1; 195unsigned int is_binary:1; 196unsigned int is_copy:1; 197unsigned int is_rename:1; 198unsigned int recount:1; 199unsigned int conflicted_threeway:1; 200unsigned int direct_to_threeway:1; 201struct fragment *fragments; 202char*result; 203size_t resultsize; 204char old_sha1_prefix[41]; 205char new_sha1_prefix[41]; 206struct patch *next; 207 208/* three-way fallback result */ 209unsigned char threeway_stage[3][20]; 210}; 211 212static voidfree_fragment_list(struct fragment *list) 213{ 214while(list) { 215struct fragment *next = list->next; 216if(list->free_patch) 217free((char*)list->patch); 218free(list); 219 list = next; 220} 221} 222 223static voidfree_patch(struct patch *patch) 224{ 225free_fragment_list(patch->fragments); 226free(patch->def_name); 227free(patch->old_name); 228free(patch->new_name); 229free(patch->result); 230free(patch); 231} 232 233static voidfree_patch_list(struct patch *list) 234{ 235while(list) { 236struct patch *next = list->next; 237free_patch(list); 238 list = next; 239} 240} 241 242/* 243 * A line in a file, len-bytes long (includes the terminating LF, 244 * except for an incomplete line at the end if the file ends with 245 * one), and its contents hashes to 'hash'. 246 */ 247struct line { 248size_t len; 249unsigned hash :24; 250unsigned flag :8; 251#define LINE_COMMON 1 252#define LINE_PATCHED 2 253}; 254 255/* 256 * This represents a "file", which is an array of "lines". 257 */ 258struct image { 259char*buf; 260size_t len; 261size_t nr; 262size_t alloc; 263struct line *line_allocated; 264struct line *line; 265}; 266 267/* 268 * Records filenames that have been touched, in order to handle 269 * the case where more than one patches touch the same file. 270 */ 271 272static struct string_list fn_table; 273 274static uint32_thash_line(const char*cp,size_t len) 275{ 276size_t i; 277uint32_t h; 278for(i =0, h =0; i < len; i++) { 279if(!isspace(cp[i])) { 280 h = h *3+ (cp[i] &0xff); 281} 282} 283return h; 284} 285 286/* 287 * Compare lines s1 of length n1 and s2 of length n2, ignoring 288 * whitespace difference. Returns 1 if they match, 0 otherwise 289 */ 290static intfuzzy_matchlines(const char*s1,size_t n1, 291const char*s2,size_t n2) 292{ 293const char*last1 = s1 + n1 -1; 294const char*last2 = s2 + n2 -1; 295int result =0; 296 297/* ignore line endings */ 298while((*last1 =='\r') || (*last1 =='\n')) 299 last1--; 300while((*last2 =='\r') || (*last2 =='\n')) 301 last2--; 302 303/* skip leading whitespaces, if both begin with whitespace */ 304if(s1 <= last1 && s2 <= last2 &&isspace(*s1) &&isspace(*s2)) { 305while(isspace(*s1) && (s1 <= last1)) 306 s1++; 307while(isspace(*s2) && (s2 <= last2)) 308 s2++; 309} 310/* early return if both lines are empty */ 311if((s1 > last1) && (s2 > last2)) 312return1; 313while(!result) { 314 result = *s1++ - *s2++; 315/* 316 * Skip whitespace inside. We check for whitespace on 317 * both buffers because we don't want "a b" to match 318 * "ab" 319 */ 320if(isspace(*s1) &&isspace(*s2)) { 321while(isspace(*s1) && s1 <= last1) 322 s1++; 323while(isspace(*s2) && s2 <= last2) 324 s2++; 325} 326/* 327 * If we reached the end on one side only, 328 * lines don't match 329 */ 330if( 331((s2 > last2) && (s1 <= last1)) || 332((s1 > last1) && (s2 <= last2))) 333return0; 334if((s1 > last1) && (s2 > last2)) 335break; 336} 337 338return!result; 339} 340 341static voidadd_line_info(struct image *img,const char*bol,size_t len,unsigned flag) 342{ 343ALLOC_GROW(img->line_allocated, img->nr +1, img->alloc); 344 img->line_allocated[img->nr].len = len; 345 img->line_allocated[img->nr].hash =hash_line(bol, len); 346 img->line_allocated[img->nr].flag = flag; 347 img->nr++; 348} 349 350/* 351 * "buf" has the file contents to be patched (read from various sources). 352 * attach it to "image" and add line-based index to it. 353 * "image" now owns the "buf". 354 */ 355static voidprepare_image(struct image *image,char*buf,size_t len, 356int prepare_linetable) 357{ 358const char*cp, *ep; 359 360memset(image,0,sizeof(*image)); 361 image->buf = buf; 362 image->len = len; 363 364if(!prepare_linetable) 365return; 366 367 ep = image->buf + image->len; 368 cp = image->buf; 369while(cp < ep) { 370const char*next; 371for(next = cp; next < ep && *next !='\n'; next++) 372; 373if(next < ep) 374 next++; 375add_line_info(image, cp, next - cp,0); 376 cp = next; 377} 378 image->line = image->line_allocated; 379} 380 381static voidclear_image(struct image *image) 382{ 383free(image->buf); 384free(image->line_allocated); 385memset(image,0,sizeof(*image)); 386} 387 388/* fmt must contain _one_ %s and no other substitution */ 389static voidsay_patch_name(FILE*output,const char*fmt,struct patch *patch) 390{ 391struct strbuf sb = STRBUF_INIT; 392 393if(patch->old_name && patch->new_name && 394strcmp(patch->old_name, patch->new_name)) { 395quote_c_style(patch->old_name, &sb, NULL,0); 396strbuf_addstr(&sb," => "); 397quote_c_style(patch->new_name, &sb, NULL,0); 398}else{ 399const char*n = patch->new_name; 400if(!n) 401 n = patch->old_name; 402quote_c_style(n, &sb, NULL,0); 403} 404fprintf(output, fmt, sb.buf); 405fputc('\n', output); 406strbuf_release(&sb); 407} 408 409#define SLOP (16) 410 411static voidread_patch_file(struct strbuf *sb,int fd) 412{ 413if(strbuf_read(sb, fd,0) <0) 414die_errno("git apply: failed to read"); 415 416/* 417 * Make sure that we have some slop in the buffer 418 * so that we can do speculative "memcmp" etc, and 419 * see to it that it is NUL-filled. 420 */ 421strbuf_grow(sb, SLOP); 422memset(sb->buf + sb->len,0, SLOP); 423} 424 425static unsigned longlinelen(const char*buffer,unsigned long size) 426{ 427unsigned long len =0; 428while(size--) { 429 len++; 430if(*buffer++ =='\n') 431break; 432} 433return len; 434} 435 436static intis_dev_null(const char*str) 437{ 438return!memcmp("/dev/null", str,9) &&isspace(str[9]); 439} 440 441#define TERM_SPACE 1 442#define TERM_TAB 2 443 444static intname_terminate(const char*name,int namelen,int c,int terminate) 445{ 446if(c ==' '&& !(terminate & TERM_SPACE)) 447return0; 448if(c =='\t'&& !(terminate & TERM_TAB)) 449return0; 450 451return1; 452} 453 454/* remove double slashes to make --index work with such filenames */ 455static char*squash_slash(char*name) 456{ 457int i =0, j =0; 458 459if(!name) 460return NULL; 461 462while(name[i]) { 463if((name[j++] = name[i++]) =='/') 464while(name[i] =='/') 465 i++; 466} 467 name[j] ='\0'; 468return name; 469} 470 471static char*find_name_gnu(const char*line,const char*def,int p_value) 472{ 473struct strbuf name = STRBUF_INIT; 474char*cp; 475 476/* 477 * Proposed "new-style" GNU patch/diff format; see 478 * http://marc.info/?l=git&m=112927316408690&w=2 479 */ 480if(unquote_c_style(&name, line, NULL)) { 481strbuf_release(&name); 482return NULL; 483} 484 485for(cp = name.buf; p_value; p_value--) { 486 cp =strchr(cp,'/'); 487if(!cp) { 488strbuf_release(&name); 489return NULL; 490} 491 cp++; 492} 493 494strbuf_remove(&name,0, cp - name.buf); 495if(root) 496strbuf_insert(&name,0, root, root_len); 497returnsquash_slash(strbuf_detach(&name, NULL)); 498} 499 500static size_tsane_tz_len(const char*line,size_t len) 501{ 502const char*tz, *p; 503 504if(len <strlen(" +0500") || line[len-strlen(" +0500")] !=' ') 505return0; 506 tz = line + len -strlen(" +0500"); 507 508if(tz[1] !='+'&& tz[1] !='-') 509return0; 510 511for(p = tz +2; p != line + len; p++) 512if(!isdigit(*p)) 513return0; 514 515return line + len - tz; 516} 517 518static size_ttz_with_colon_len(const char*line,size_t len) 519{ 520const char*tz, *p; 521 522if(len <strlen(" +08:00") || line[len -strlen(":00")] !=':') 523return0; 524 tz = line + len -strlen(" +08:00"); 525 526if(tz[0] !=' '|| (tz[1] !='+'&& tz[1] !='-')) 527return0; 528 p = tz +2; 529if(!isdigit(*p++) || !isdigit(*p++) || *p++ !=':'|| 530!isdigit(*p++) || !isdigit(*p++)) 531return0; 532 533return line + len - tz; 534} 535 536static size_tdate_len(const char*line,size_t len) 537{ 538const char*date, *p; 539 540if(len <strlen("72-02-05") || line[len-strlen("-05")] !='-') 541return0; 542 p = date = line + len -strlen("72-02-05"); 543 544if(!isdigit(*p++) || !isdigit(*p++) || *p++ !='-'|| 545!isdigit(*p++) || !isdigit(*p++) || *p++ !='-'|| 546!isdigit(*p++) || !isdigit(*p++))/* Not a date. */ 547return0; 548 549if(date - line >=strlen("19") && 550isdigit(date[-1]) &&isdigit(date[-2]))/* 4-digit year */ 551 date -=strlen("19"); 552 553return line + len - date; 554} 555 556static size_tshort_time_len(const char*line,size_t len) 557{ 558const char*time, *p; 559 560if(len <strlen(" 07:01:32") || line[len-strlen(":32")] !=':') 561return0; 562 p = time = line + len -strlen(" 07:01:32"); 563 564/* Permit 1-digit hours? */ 565if(*p++ !=' '|| 566!isdigit(*p++) || !isdigit(*p++) || *p++ !=':'|| 567!isdigit(*p++) || !isdigit(*p++) || *p++ !=':'|| 568!isdigit(*p++) || !isdigit(*p++))/* Not a time. */ 569return0; 570 571return line + len - time; 572} 573 574static size_tfractional_time_len(const char*line,size_t len) 575{ 576const char*p; 577size_t n; 578 579/* Expected format: 19:41:17.620000023 */ 580if(!len || !isdigit(line[len -1])) 581return0; 582 p = line + len -1; 583 584/* Fractional seconds. */ 585while(p > line &&isdigit(*p)) 586 p--; 587if(*p !='.') 588return0; 589 590/* Hours, minutes, and whole seconds. */ 591 n =short_time_len(line, p - line); 592if(!n) 593return0; 594 595return line + len - p + n; 596} 597 598static size_ttrailing_spaces_len(const char*line,size_t len) 599{ 600const char*p; 601 602/* Expected format: ' ' x (1 or more) */ 603if(!len || line[len -1] !=' ') 604return0; 605 606 p = line + len; 607while(p != line) { 608 p--; 609if(*p !=' ') 610return line + len - (p +1); 611} 612 613/* All spaces! */ 614return len; 615} 616 617static size_tdiff_timestamp_len(const char*line,size_t len) 618{ 619const char*end = line + len; 620size_t n; 621 622/* 623 * Posix: 2010-07-05 19:41:17 624 * GNU: 2010-07-05 19:41:17.620000023 -0500 625 */ 626 627if(!isdigit(end[-1])) 628return0; 629 630 n =sane_tz_len(line, end - line); 631if(!n) 632 n =tz_with_colon_len(line, end - line); 633 end -= n; 634 635 n =short_time_len(line, end - line); 636if(!n) 637 n =fractional_time_len(line, end - line); 638 end -= n; 639 640 n =date_len(line, end - line); 641if(!n)/* No date. Too bad. */ 642return0; 643 end -= n; 644 645if(end == line)/* No space before date. */ 646return0; 647if(end[-1] =='\t') {/* Success! */ 648 end--; 649return line + len - end; 650} 651if(end[-1] !=' ')/* No space before date. */ 652return0; 653 654/* Whitespace damage. */ 655 end -=trailing_spaces_len(line, end - line); 656return line + len - end; 657} 658 659static char*null_strdup(const char*s) 660{ 661return s ?xstrdup(s) : NULL; 662} 663 664static char*find_name_common(const char*line,const char*def, 665int p_value,const char*end,int terminate) 666{ 667int len; 668const char*start = NULL; 669 670if(p_value ==0) 671 start = line; 672while(line != end) { 673char c = *line; 674 675if(!end &&isspace(c)) { 676if(c =='\n') 677break; 678if(name_terminate(start, line-start, c, terminate)) 679break; 680} 681 line++; 682if(c =='/'&& !--p_value) 683 start = line; 684} 685if(!start) 686returnsquash_slash(null_strdup(def)); 687 len = line - start; 688if(!len) 689returnsquash_slash(null_strdup(def)); 690 691/* 692 * Generally we prefer the shorter name, especially 693 * if the other one is just a variation of that with 694 * something else tacked on to the end (ie "file.orig" 695 * or "file~"). 696 */ 697if(def) { 698int deflen =strlen(def); 699if(deflen < len && !strncmp(start, def, deflen)) 700returnsquash_slash(xstrdup(def)); 701} 702 703if(root) { 704char*ret =xmalloc(root_len + len +1); 705strcpy(ret, root); 706memcpy(ret + root_len, start, len); 707 ret[root_len + len] ='\0'; 708returnsquash_slash(ret); 709} 710 711returnsquash_slash(xmemdupz(start, len)); 712} 713 714static char*find_name(const char*line,char*def,int p_value,int terminate) 715{ 716if(*line =='"') { 717char*name =find_name_gnu(line, def, p_value); 718if(name) 719return name; 720} 721 722returnfind_name_common(line, def, p_value, NULL, terminate); 723} 724 725static char*find_name_traditional(const char*line,char*def,int p_value) 726{ 727size_t len; 728size_t date_len; 729 730if(*line =='"') { 731char*name =find_name_gnu(line, def, p_value); 732if(name) 733return name; 734} 735 736 len =strchrnul(line,'\n') - line; 737 date_len =diff_timestamp_len(line, len); 738if(!date_len) 739returnfind_name_common(line, def, p_value, NULL, TERM_TAB); 740 len -= date_len; 741 742returnfind_name_common(line, def, p_value, line + len,0); 743} 744 745static intcount_slashes(const char*cp) 746{ 747int cnt =0; 748char ch; 749 750while((ch = *cp++)) 751if(ch =='/') 752 cnt++; 753return cnt; 754} 755 756/* 757 * Given the string after "--- " or "+++ ", guess the appropriate 758 * p_value for the given patch. 759 */ 760static intguess_p_value(const char*nameline) 761{ 762char*name, *cp; 763int val = -1; 764 765if(is_dev_null(nameline)) 766return-1; 767 name =find_name_traditional(nameline, NULL,0); 768if(!name) 769return-1; 770 cp =strchr(name,'/'); 771if(!cp) 772 val =0; 773else if(prefix) { 774/* 775 * Does it begin with "a/$our-prefix" and such? Then this is 776 * very likely to apply to our directory. 777 */ 778if(!strncmp(name, prefix, prefix_length)) 779 val =count_slashes(prefix); 780else{ 781 cp++; 782if(!strncmp(cp, prefix, prefix_length)) 783 val =count_slashes(prefix) +1; 784} 785} 786free(name); 787return val; 788} 789 790/* 791 * Does the ---/+++ line has the POSIX timestamp after the last HT? 792 * GNU diff puts epoch there to signal a creation/deletion event. Is 793 * this such a timestamp? 794 */ 795static inthas_epoch_timestamp(const char*nameline) 796{ 797/* 798 * We are only interested in epoch timestamp; any non-zero 799 * fraction cannot be one, hence "(\.0+)?" in the regexp below. 800 * For the same reason, the date must be either 1969-12-31 or 801 * 1970-01-01, and the seconds part must be "00". 802 */ 803const char stamp_regexp[] = 804"^(1969-12-31|1970-01-01)" 805" " 806"[0-2][0-9]:[0-5][0-9]:00(\\.0+)?" 807" " 808"([-+][0-2][0-9]:?[0-5][0-9])\n"; 809const char*timestamp = NULL, *cp, *colon; 810static regex_t *stamp; 811 regmatch_t m[10]; 812int zoneoffset; 813int hourminute; 814int status; 815 816for(cp = nameline; *cp !='\n'; cp++) { 817if(*cp =='\t') 818 timestamp = cp +1; 819} 820if(!timestamp) 821return0; 822if(!stamp) { 823 stamp =xmalloc(sizeof(*stamp)); 824if(regcomp(stamp, stamp_regexp, REG_EXTENDED)) { 825warning(_("Cannot prepare timestamp regexp%s"), 826 stamp_regexp); 827return0; 828} 829} 830 831 status =regexec(stamp, timestamp,ARRAY_SIZE(m), m,0); 832if(status) { 833if(status != REG_NOMATCH) 834warning(_("regexec returned%dfor input:%s"), 835 status, timestamp); 836return0; 837} 838 839 zoneoffset =strtol(timestamp + m[3].rm_so +1, (char**) &colon,10); 840if(*colon ==':') 841 zoneoffset = zoneoffset *60+strtol(colon +1, NULL,10); 842else 843 zoneoffset = (zoneoffset /100) *60+ (zoneoffset %100); 844if(timestamp[m[3].rm_so] =='-') 845 zoneoffset = -zoneoffset; 846 847/* 848 * YYYY-MM-DD hh:mm:ss must be from either 1969-12-31 849 * (west of GMT) or 1970-01-01 (east of GMT) 850 */ 851if((zoneoffset <0&&memcmp(timestamp,"1969-12-31",10)) || 852(0<= zoneoffset &&memcmp(timestamp,"1970-01-01",10))) 853return0; 854 855 hourminute = (strtol(timestamp +11, NULL,10) *60+ 856strtol(timestamp +14, NULL,10) - 857 zoneoffset); 858 859return((zoneoffset <0&& hourminute ==1440) || 860(0<= zoneoffset && !hourminute)); 861} 862 863/* 864 * Get the name etc info from the ---/+++ lines of a traditional patch header 865 * 866 * FIXME! The end-of-filename heuristics are kind of screwy. For existing 867 * files, we can happily check the index for a match, but for creating a 868 * new file we should try to match whatever "patch" does. I have no idea. 869 */ 870static voidparse_traditional_patch(const char*first,const char*second,struct patch *patch) 871{ 872char*name; 873 874 first +=4;/* skip "--- " */ 875 second +=4;/* skip "+++ " */ 876if(!p_value_known) { 877int p, q; 878 p =guess_p_value(first); 879 q =guess_p_value(second); 880if(p <0) p = q; 881if(0<= p && p == q) { 882 p_value = p; 883 p_value_known =1; 884} 885} 886if(is_dev_null(first)) { 887 patch->is_new =1; 888 patch->is_delete =0; 889 name =find_name_traditional(second, NULL, p_value); 890 patch->new_name = name; 891}else if(is_dev_null(second)) { 892 patch->is_new =0; 893 patch->is_delete =1; 894 name =find_name_traditional(first, NULL, p_value); 895 patch->old_name = name; 896}else{ 897char*first_name; 898 first_name =find_name_traditional(first, NULL, p_value); 899 name =find_name_traditional(second, first_name, p_value); 900free(first_name); 901if(has_epoch_timestamp(first)) { 902 patch->is_new =1; 903 patch->is_delete =0; 904 patch->new_name = name; 905}else if(has_epoch_timestamp(second)) { 906 patch->is_new =0; 907 patch->is_delete =1; 908 patch->old_name = name; 909}else{ 910 patch->old_name = name; 911 patch->new_name =null_strdup(name); 912} 913} 914if(!name) 915die(_("unable to find filename in patch at line%d"), linenr); 916} 917 918static intgitdiff_hdrend(const char*line,struct patch *patch) 919{ 920return-1; 921} 922 923/* 924 * We're anal about diff header consistency, to make 925 * sure that we don't end up having strange ambiguous 926 * patches floating around. 927 * 928 * As a result, gitdiff_{old|new}name() will check 929 * their names against any previous information, just 930 * to make sure.. 931 */ 932#define DIFF_OLD_NAME 0 933#define DIFF_NEW_NAME 1 934 935static char*gitdiff_verify_name(const char*line,int isnull,char*orig_name,int side) 936{ 937if(!orig_name && !isnull) 938returnfind_name(line, NULL, p_value, TERM_TAB); 939 940if(orig_name) { 941int len; 942const char*name; 943char*another; 944 name = orig_name; 945 len =strlen(name); 946if(isnull) 947die(_("git apply: bad git-diff - expected /dev/null, got%son line%d"), name, linenr); 948 another =find_name(line, NULL, p_value, TERM_TAB); 949if(!another ||memcmp(another, name, len +1)) 950die((side == DIFF_NEW_NAME) ? 951_("git apply: bad git-diff - inconsistent new filename on line%d") : 952_("git apply: bad git-diff - inconsistent old filename on line%d"), linenr); 953free(another); 954return orig_name; 955} 956else{ 957/* expect "/dev/null" */ 958if(memcmp("/dev/null", line,9) || line[9] !='\n') 959die(_("git apply: bad git-diff - expected /dev/null on line%d"), linenr); 960return NULL; 961} 962} 963 964static intgitdiff_oldname(const char*line,struct patch *patch) 965{ 966char*orig = patch->old_name; 967 patch->old_name =gitdiff_verify_name(line, patch->is_new, patch->old_name, 968 DIFF_OLD_NAME); 969if(orig != patch->old_name) 970free(orig); 971return0; 972} 973 974static intgitdiff_newname(const char*line,struct patch *patch) 975{ 976char*orig = patch->new_name; 977 patch->new_name =gitdiff_verify_name(line, patch->is_delete, patch->new_name, 978 DIFF_NEW_NAME); 979if(orig != patch->new_name) 980free(orig); 981return0; 982} 983 984static intgitdiff_oldmode(const char*line,struct patch *patch) 985{ 986 patch->old_mode =strtoul(line, NULL,8); 987return0; 988} 989 990static intgitdiff_newmode(const char*line,struct patch *patch) 991{ 992 patch->new_mode =strtoul(line, NULL,8); 993return0; 994} 995 996static intgitdiff_delete(const char*line,struct patch *patch) 997{ 998 patch->is_delete =1; 999free(patch->old_name);1000 patch->old_name =null_strdup(patch->def_name);1001returngitdiff_oldmode(line, patch);1002}10031004static intgitdiff_newfile(const char*line,struct patch *patch)1005{1006 patch->is_new =1;1007free(patch->new_name);1008 patch->new_name =null_strdup(patch->def_name);1009returngitdiff_newmode(line, patch);1010}10111012static intgitdiff_copysrc(const char*line,struct patch *patch)1013{1014 patch->is_copy =1;1015free(patch->old_name);1016 patch->old_name =find_name(line, NULL, p_value ? p_value -1:0,0);1017return0;1018}10191020static intgitdiff_copydst(const char*line,struct patch *patch)1021{1022 patch->is_copy =1;1023free(patch->new_name);1024 patch->new_name =find_name(line, NULL, p_value ? p_value -1:0,0);1025return0;1026}10271028static intgitdiff_renamesrc(const char*line,struct patch *patch)1029{1030 patch->is_rename =1;1031free(patch->old_name);1032 patch->old_name =find_name(line, NULL, p_value ? p_value -1:0,0);1033return0;1034}10351036static intgitdiff_renamedst(const char*line,struct patch *patch)1037{1038 patch->is_rename =1;1039free(patch->new_name);1040 patch->new_name =find_name(line, NULL, p_value ? p_value -1:0,0);1041return0;1042}10431044static intgitdiff_similarity(const char*line,struct patch *patch)1045{1046unsigned long val =strtoul(line, NULL,10);1047if(val <=100)1048 patch->score = val;1049return0;1050}10511052static intgitdiff_dissimilarity(const char*line,struct patch *patch)1053{1054unsigned long val =strtoul(line, NULL,10);1055if(val <=100)1056 patch->score = val;1057return0;1058}10591060static intgitdiff_index(const char*line,struct patch *patch)1061{1062/*1063 * index line is N hexadecimal, "..", N hexadecimal,1064 * and optional space with octal mode.1065 */1066const char*ptr, *eol;1067int len;10681069 ptr =strchr(line,'.');1070if(!ptr || ptr[1] !='.'||40< ptr - line)1071return0;1072 len = ptr - line;1073memcpy(patch->old_sha1_prefix, line, len);1074 patch->old_sha1_prefix[len] =0;10751076 line = ptr +2;1077 ptr =strchr(line,' ');1078 eol =strchr(line,'\n');10791080if(!ptr || eol < ptr)1081 ptr = eol;1082 len = ptr - line;10831084if(40< len)1085return0;1086memcpy(patch->new_sha1_prefix, line, len);1087 patch->new_sha1_prefix[len] =0;1088if(*ptr ==' ')1089 patch->old_mode =strtoul(ptr+1, NULL,8);1090return0;1091}10921093/*1094 * This is normal for a diff that doesn't change anything: we'll fall through1095 * into the next diff. Tell the parser to break out.1096 */1097static intgitdiff_unrecognized(const char*line,struct patch *patch)1098{1099return-1;1100}11011102/*1103 * Skip p_value leading components from "line"; as we do not accept1104 * absolute paths, return NULL in that case.1105 */1106static const char*skip_tree_prefix(const char*line,int llen)1107{1108int nslash;1109int i;11101111if(!p_value)1112return(llen && line[0] =='/') ? NULL : line;11131114 nslash = p_value;1115for(i =0; i < llen; i++) {1116int ch = line[i];1117if(ch =='/'&& --nslash <=0)1118return(i ==0) ? NULL : &line[i +1];1119}1120return NULL;1121}11221123/*1124 * This is to extract the same name that appears on "diff --git"1125 * line. We do not find and return anything if it is a rename1126 * patch, and it is OK because we will find the name elsewhere.1127 * We need to reliably find name only when it is mode-change only,1128 * creation or deletion of an empty file. In any of these cases,1129 * both sides are the same name under a/ and b/ respectively.1130 */1131static char*git_header_name(const char*line,int llen)1132{1133const char*name;1134const char*second = NULL;1135size_t len, line_len;11361137 line +=strlen("diff --git ");1138 llen -=strlen("diff --git ");11391140if(*line =='"') {1141const char*cp;1142struct strbuf first = STRBUF_INIT;1143struct strbuf sp = STRBUF_INIT;11441145if(unquote_c_style(&first, line, &second))1146goto free_and_fail1;11471148/* strip the a/b prefix including trailing slash */1149 cp =skip_tree_prefix(first.buf, first.len);1150if(!cp)1151goto free_and_fail1;1152strbuf_remove(&first,0, cp - first.buf);11531154/*1155 * second points at one past closing dq of name.1156 * find the second name.1157 */1158while((second < line + llen) &&isspace(*second))1159 second++;11601161if(line + llen <= second)1162goto free_and_fail1;1163if(*second =='"') {1164if(unquote_c_style(&sp, second, NULL))1165goto free_and_fail1;1166 cp =skip_tree_prefix(sp.buf, sp.len);1167if(!cp)1168goto free_and_fail1;1169/* They must match, otherwise ignore */1170if(strcmp(cp, first.buf))1171goto free_and_fail1;1172strbuf_release(&sp);1173returnstrbuf_detach(&first, NULL);1174}11751176/* unquoted second */1177 cp =skip_tree_prefix(second, line + llen - second);1178if(!cp)1179goto free_and_fail1;1180if(line + llen - cp != first.len ||1181memcmp(first.buf, cp, first.len))1182goto free_and_fail1;1183returnstrbuf_detach(&first, NULL);11841185 free_and_fail1:1186strbuf_release(&first);1187strbuf_release(&sp);1188return NULL;1189}11901191/* unquoted first name */1192 name =skip_tree_prefix(line, llen);1193if(!name)1194return NULL;11951196/*1197 * since the first name is unquoted, a dq if exists must be1198 * the beginning of the second name.1199 */1200for(second = name; second < line + llen; second++) {1201if(*second =='"') {1202struct strbuf sp = STRBUF_INIT;1203const char*np;12041205if(unquote_c_style(&sp, second, NULL))1206goto free_and_fail2;12071208 np =skip_tree_prefix(sp.buf, sp.len);1209if(!np)1210goto free_and_fail2;12111212 len = sp.buf + sp.len - np;1213if(len < second - name &&1214!strncmp(np, name, len) &&1215isspace(name[len])) {1216/* Good */1217strbuf_remove(&sp,0, np - sp.buf);1218returnstrbuf_detach(&sp, NULL);1219}12201221 free_and_fail2:1222strbuf_release(&sp);1223return NULL;1224}1225}12261227/*1228 * Accept a name only if it shows up twice, exactly the same1229 * form.1230 */1231 second =strchr(name,'\n');1232if(!second)1233return NULL;1234 line_len = second - name;1235for(len =0; ; len++) {1236switch(name[len]) {1237default:1238continue;1239case'\n':1240return NULL;1241case'\t':case' ':1242/*1243 * Is this the separator between the preimage1244 * and the postimage pathname? Again, we are1245 * only interested in the case where there is1246 * no rename, as this is only to set def_name1247 * and a rename patch has the names elsewhere1248 * in an unambiguous form.1249 */1250if(!name[len +1])1251return NULL;/* no postimage name */1252 second =skip_tree_prefix(name + len +1,1253 line_len - (len +1));1254if(!second)1255return NULL;1256/*1257 * Does len bytes starting at "name" and "second"1258 * (that are separated by one HT or SP we just1259 * found) exactly match?1260 */1261if(second[len] =='\n'&& !strncmp(name, second, len))1262returnxmemdupz(name, len);1263}1264}1265}12661267/* Verify that we recognize the lines following a git header */1268static intparse_git_header(const char*line,int len,unsigned int size,struct patch *patch)1269{1270unsigned long offset;12711272/* A git diff has explicit new/delete information, so we don't guess */1273 patch->is_new =0;1274 patch->is_delete =0;12751276/*1277 * Some things may not have the old name in the1278 * rest of the headers anywhere (pure mode changes,1279 * or removing or adding empty files), so we get1280 * the default name from the header.1281 */1282 patch->def_name =git_header_name(line, len);1283if(patch->def_name && root) {1284char*s =xmalloc(root_len +strlen(patch->def_name) +1);1285strcpy(s, root);1286strcpy(s + root_len, patch->def_name);1287free(patch->def_name);1288 patch->def_name = s;1289}12901291 line += len;1292 size -= len;1293 linenr++;1294for(offset = len ; size >0; offset += len, size -= len, line += len, linenr++) {1295static const struct opentry {1296const char*str;1297int(*fn)(const char*,struct patch *);1298} optable[] = {1299{"@@ -", gitdiff_hdrend },1300{"--- ", gitdiff_oldname },1301{"+++ ", gitdiff_newname },1302{"old mode ", gitdiff_oldmode },1303{"new mode ", gitdiff_newmode },1304{"deleted file mode ", gitdiff_delete },1305{"new file mode ", gitdiff_newfile },1306{"copy from ", gitdiff_copysrc },1307{"copy to ", gitdiff_copydst },1308{"rename old ", gitdiff_renamesrc },1309{"rename new ", gitdiff_renamedst },1310{"rename from ", gitdiff_renamesrc },1311{"rename to ", gitdiff_renamedst },1312{"similarity index ", gitdiff_similarity },1313{"dissimilarity index ", gitdiff_dissimilarity },1314{"index ", gitdiff_index },1315{"", gitdiff_unrecognized },1316};1317int i;13181319 len =linelen(line, size);1320if(!len || line[len-1] !='\n')1321break;1322for(i =0; i <ARRAY_SIZE(optable); i++) {1323const struct opentry *p = optable + i;1324int oplen =strlen(p->str);1325if(len < oplen ||memcmp(p->str, line, oplen))1326continue;1327if(p->fn(line + oplen, patch) <0)1328return offset;1329break;1330}1331}13321333return offset;1334}13351336static intparse_num(const char*line,unsigned long*p)1337{1338char*ptr;13391340if(!isdigit(*line))1341return0;1342*p =strtoul(line, &ptr,10);1343return ptr - line;1344}13451346static intparse_range(const char*line,int len,int offset,const char*expect,1347unsigned long*p1,unsigned long*p2)1348{1349int digits, ex;13501351if(offset <0|| offset >= len)1352return-1;1353 line += offset;1354 len -= offset;13551356 digits =parse_num(line, p1);1357if(!digits)1358return-1;13591360 offset += digits;1361 line += digits;1362 len -= digits;13631364*p2 =1;1365if(*line ==',') {1366 digits =parse_num(line+1, p2);1367if(!digits)1368return-1;13691370 offset += digits+1;1371 line += digits+1;1372 len -= digits+1;1373}13741375 ex =strlen(expect);1376if(ex > len)1377return-1;1378if(memcmp(line, expect, ex))1379return-1;13801381return offset + ex;1382}13831384static voidrecount_diff(const char*line,int size,struct fragment *fragment)1385{1386int oldlines =0, newlines =0, ret =0;13871388if(size <1) {1389warning("recount: ignore empty hunk");1390return;1391}13921393for(;;) {1394int len =linelen(line, size);1395 size -= len;1396 line += len;13971398if(size <1)1399break;14001401switch(*line) {1402case' ':case'\n':1403 newlines++;1404/* fall through */1405case'-':1406 oldlines++;1407continue;1408case'+':1409 newlines++;1410continue;1411case'\\':1412continue;1413case'@':1414 ret = size <3|| !starts_with(line,"@@ ");1415break;1416case'd':1417 ret = size <5|| !starts_with(line,"diff ");1418break;1419default:1420 ret = -1;1421break;1422}1423if(ret) {1424warning(_("recount: unexpected line: %.*s"),1425(int)linelen(line, size), line);1426return;1427}1428break;1429}1430 fragment->oldlines = oldlines;1431 fragment->newlines = newlines;1432}14331434/*1435 * Parse a unified diff fragment header of the1436 * form "@@ -a,b +c,d @@"1437 */1438static intparse_fragment_header(const char*line,int len,struct fragment *fragment)1439{1440int offset;14411442if(!len || line[len-1] !='\n')1443return-1;14441445/* Figure out the number of lines in a fragment */1446 offset =parse_range(line, len,4," +", &fragment->oldpos, &fragment->oldlines);1447 offset =parse_range(line, len, offset," @@", &fragment->newpos, &fragment->newlines);14481449return offset;1450}14511452static intfind_header(const char*line,unsigned long size,int*hdrsize,struct patch *patch)1453{1454unsigned long offset, len;14551456 patch->is_toplevel_relative =0;1457 patch->is_rename = patch->is_copy =0;1458 patch->is_new = patch->is_delete = -1;1459 patch->old_mode = patch->new_mode =0;1460 patch->old_name = patch->new_name = NULL;1461for(offset =0; size >0; offset += len, size -= len, line += len, linenr++) {1462unsigned long nextlen;14631464 len =linelen(line, size);1465if(!len)1466break;14671468/* Testing this early allows us to take a few shortcuts.. */1469if(len <6)1470continue;14711472/*1473 * Make sure we don't find any unconnected patch fragments.1474 * That's a sign that we didn't find a header, and that a1475 * patch has become corrupted/broken up.1476 */1477if(!memcmp("@@ -", line,4)) {1478struct fragment dummy;1479if(parse_fragment_header(line, len, &dummy) <0)1480continue;1481die(_("patch fragment without header at line%d: %.*s"),1482 linenr, (int)len-1, line);1483}14841485if(size < len +6)1486break;14871488/*1489 * Git patch? It might not have a real patch, just a rename1490 * or mode change, so we handle that specially1491 */1492if(!memcmp("diff --git ", line,11)) {1493int git_hdr_len =parse_git_header(line, len, size, patch);1494if(git_hdr_len <= len)1495continue;1496if(!patch->old_name && !patch->new_name) {1497if(!patch->def_name)1498die(Q_("git diff header lacks filename information when removing "1499"%dleading pathname component (line%d)",1500"git diff header lacks filename information when removing "1501"%dleading pathname components (line%d)",1502 p_value),1503 p_value, linenr);1504 patch->old_name =xstrdup(patch->def_name);1505 patch->new_name =xstrdup(patch->def_name);1506}1507if(!patch->is_delete && !patch->new_name)1508die("git diff header lacks filename information "1509"(line%d)", linenr);1510 patch->is_toplevel_relative =1;1511*hdrsize = git_hdr_len;1512return offset;1513}15141515/* --- followed by +++ ? */1516if(memcmp("--- ", line,4) ||memcmp("+++ ", line + len,4))1517continue;15181519/*1520 * We only accept unified patches, so we want it to1521 * at least have "@@ -a,b +c,d @@\n", which is 14 chars1522 * minimum ("@@ -0,0 +1 @@\n" is the shortest).1523 */1524 nextlen =linelen(line + len, size - len);1525if(size < nextlen +14||memcmp("@@ -", line + len + nextlen,4))1526continue;15271528/* Ok, we'll consider it a patch */1529parse_traditional_patch(line, line+len, patch);1530*hdrsize = len + nextlen;1531 linenr +=2;1532return offset;1533}1534return-1;1535}15361537static voidrecord_ws_error(unsigned result,const char*line,int len,int linenr)1538{1539char*err;15401541if(!result)1542return;15431544 whitespace_error++;1545if(squelch_whitespace_errors &&1546 squelch_whitespace_errors < whitespace_error)1547return;15481549 err =whitespace_error_string(result);1550fprintf(stderr,"%s:%d:%s.\n%.*s\n",1551 patch_input_file, linenr, err, len, line);1552free(err);1553}15541555static voidcheck_whitespace(const char*line,int len,unsigned ws_rule)1556{1557unsigned result =ws_check(line +1, len -1, ws_rule);15581559record_ws_error(result, line +1, len -2, linenr);1560}15611562/*1563 * Parse a unified diff. Note that this really needs to parse each1564 * fragment separately, since the only way to know the difference1565 * between a "---" that is part of a patch, and a "---" that starts1566 * the next patch is to look at the line counts..1567 */1568static intparse_fragment(const char*line,unsigned long size,1569struct patch *patch,struct fragment *fragment)1570{1571int added, deleted;1572int len =linelen(line, size), offset;1573unsigned long oldlines, newlines;1574unsigned long leading, trailing;15751576 offset =parse_fragment_header(line, len, fragment);1577if(offset <0)1578return-1;1579if(offset >0&& patch->recount)1580recount_diff(line + offset, size - offset, fragment);1581 oldlines = fragment->oldlines;1582 newlines = fragment->newlines;1583 leading =0;1584 trailing =0;15851586/* Parse the thing.. */1587 line += len;1588 size -= len;1589 linenr++;1590 added = deleted =0;1591for(offset = len;15920< size;1593 offset += len, size -= len, line += len, linenr++) {1594if(!oldlines && !newlines)1595break;1596 len =linelen(line, size);1597if(!len || line[len-1] !='\n')1598return-1;1599switch(*line) {1600default:1601return-1;1602case'\n':/* newer GNU diff, an empty context line */1603case' ':1604 oldlines--;1605 newlines--;1606if(!deleted && !added)1607 leading++;1608 trailing++;1609if(!apply_in_reverse &&1610 ws_error_action == correct_ws_error)1611check_whitespace(line, len, patch->ws_rule);1612break;1613case'-':1614if(apply_in_reverse &&1615 ws_error_action != nowarn_ws_error)1616check_whitespace(line, len, patch->ws_rule);1617 deleted++;1618 oldlines--;1619 trailing =0;1620break;1621case'+':1622if(!apply_in_reverse &&1623 ws_error_action != nowarn_ws_error)1624check_whitespace(line, len, patch->ws_rule);1625 added++;1626 newlines--;1627 trailing =0;1628break;16291630/*1631 * We allow "\ No newline at end of file". Depending1632 * on locale settings when the patch was produced we1633 * don't know what this line looks like. The only1634 * thing we do know is that it begins with "\ ".1635 * Checking for 12 is just for sanity check -- any1636 * l10n of "\ No newline..." is at least that long.1637 */1638case'\\':1639if(len <12||memcmp(line,"\\",2))1640return-1;1641break;1642}1643}1644if(oldlines || newlines)1645return-1;1646 fragment->leading = leading;1647 fragment->trailing = trailing;16481649/*1650 * If a fragment ends with an incomplete line, we failed to include1651 * it in the above loop because we hit oldlines == newlines == 01652 * before seeing it.1653 */1654if(12< size && !memcmp(line,"\\",2))1655 offset +=linelen(line, size);16561657 patch->lines_added += added;1658 patch->lines_deleted += deleted;16591660if(0< patch->is_new && oldlines)1661returnerror(_("new file depends on old contents"));1662if(0< patch->is_delete && newlines)1663returnerror(_("deleted file still has contents"));1664return offset;1665}16661667/*1668 * We have seen "diff --git a/... b/..." header (or a traditional patch1669 * header). Read hunks that belong to this patch into fragments and hang1670 * them to the given patch structure.1671 *1672 * The (fragment->patch, fragment->size) pair points into the memory given1673 * by the caller, not a copy, when we return.1674 */1675static intparse_single_patch(const char*line,unsigned long size,struct patch *patch)1676{1677unsigned long offset =0;1678unsigned long oldlines =0, newlines =0, context =0;1679struct fragment **fragp = &patch->fragments;16801681while(size >4&& !memcmp(line,"@@ -",4)) {1682struct fragment *fragment;1683int len;16841685 fragment =xcalloc(1,sizeof(*fragment));1686 fragment->linenr = linenr;1687 len =parse_fragment(line, size, patch, fragment);1688if(len <=0)1689die(_("corrupt patch at line%d"), linenr);1690 fragment->patch = line;1691 fragment->size = len;1692 oldlines += fragment->oldlines;1693 newlines += fragment->newlines;1694 context += fragment->leading + fragment->trailing;16951696*fragp = fragment;1697 fragp = &fragment->next;16981699 offset += len;1700 line += len;1701 size -= len;1702}17031704/*1705 * If something was removed (i.e. we have old-lines) it cannot1706 * be creation, and if something was added it cannot be1707 * deletion. However, the reverse is not true; --unified=01708 * patches that only add are not necessarily creation even1709 * though they do not have any old lines, and ones that only1710 * delete are not necessarily deletion.1711 *1712 * Unfortunately, a real creation/deletion patch do _not_ have1713 * any context line by definition, so we cannot safely tell it1714 * apart with --unified=0 insanity. At least if the patch has1715 * more than one hunk it is not creation or deletion.1716 */1717if(patch->is_new <0&&1718(oldlines || (patch->fragments && patch->fragments->next)))1719 patch->is_new =0;1720if(patch->is_delete <0&&1721(newlines || (patch->fragments && patch->fragments->next)))1722 patch->is_delete =0;17231724if(0< patch->is_new && oldlines)1725die(_("new file%sdepends on old contents"), patch->new_name);1726if(0< patch->is_delete && newlines)1727die(_("deleted file%sstill has contents"), patch->old_name);1728if(!patch->is_delete && !newlines && context)1729fprintf_ln(stderr,1730_("** warning: "1731"file%sbecomes empty but is not deleted"),1732 patch->new_name);17331734return offset;1735}17361737staticinlineintmetadata_changes(struct patch *patch)1738{1739return patch->is_rename >0||1740 patch->is_copy >0||1741 patch->is_new >0||1742 patch->is_delete ||1743(patch->old_mode && patch->new_mode &&1744 patch->old_mode != patch->new_mode);1745}17461747static char*inflate_it(const void*data,unsigned long size,1748unsigned long inflated_size)1749{1750 git_zstream stream;1751void*out;1752int st;17531754memset(&stream,0,sizeof(stream));17551756 stream.next_in = (unsigned char*)data;1757 stream.avail_in = size;1758 stream.next_out = out =xmalloc(inflated_size);1759 stream.avail_out = inflated_size;1760git_inflate_init(&stream);1761 st =git_inflate(&stream, Z_FINISH);1762git_inflate_end(&stream);1763if((st != Z_STREAM_END) || stream.total_out != inflated_size) {1764free(out);1765return NULL;1766}1767return out;1768}17691770/*1771 * Read a binary hunk and return a new fragment; fragment->patch1772 * points at an allocated memory that the caller must free, so1773 * it is marked as "->free_patch = 1".1774 */1775static struct fragment *parse_binary_hunk(char**buf_p,1776unsigned long*sz_p,1777int*status_p,1778int*used_p)1779{1780/*1781 * Expect a line that begins with binary patch method ("literal"1782 * or "delta"), followed by the length of data before deflating.1783 * a sequence of 'length-byte' followed by base-85 encoded data1784 * should follow, terminated by a newline.1785 *1786 * Each 5-byte sequence of base-85 encodes up to 4 bytes,1787 * and we would limit the patch line to 66 characters,1788 * so one line can fit up to 13 groups that would decode1789 * to 52 bytes max. The length byte 'A'-'Z' corresponds1790 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.1791 */1792int llen, used;1793unsigned long size = *sz_p;1794char*buffer = *buf_p;1795int patch_method;1796unsigned long origlen;1797char*data = NULL;1798int hunk_size =0;1799struct fragment *frag;18001801 llen =linelen(buffer, size);1802 used = llen;18031804*status_p =0;18051806if(starts_with(buffer,"delta ")) {1807 patch_method = BINARY_DELTA_DEFLATED;1808 origlen =strtoul(buffer +6, NULL,10);1809}1810else if(starts_with(buffer,"literal ")) {1811 patch_method = BINARY_LITERAL_DEFLATED;1812 origlen =strtoul(buffer +8, NULL,10);1813}1814else1815return NULL;18161817 linenr++;1818 buffer += llen;1819while(1) {1820int byte_length, max_byte_length, newsize;1821 llen =linelen(buffer, size);1822 used += llen;1823 linenr++;1824if(llen ==1) {1825/* consume the blank line */1826 buffer++;1827 size--;1828break;1829}1830/*1831 * Minimum line is "A00000\n" which is 7-byte long,1832 * and the line length must be multiple of 5 plus 2.1833 */1834if((llen <7) || (llen-2) %5)1835goto corrupt;1836 max_byte_length = (llen -2) /5*4;1837 byte_length = *buffer;1838if('A'<= byte_length && byte_length <='Z')1839 byte_length = byte_length -'A'+1;1840else if('a'<= byte_length && byte_length <='z')1841 byte_length = byte_length -'a'+27;1842else1843goto corrupt;1844/* if the input length was not multiple of 4, we would1845 * have filler at the end but the filler should never1846 * exceed 3 bytes1847 */1848if(max_byte_length < byte_length ||1849 byte_length <= max_byte_length -4)1850goto corrupt;1851 newsize = hunk_size + byte_length;1852 data =xrealloc(data, newsize);1853if(decode_85(data + hunk_size, buffer +1, byte_length))1854goto corrupt;1855 hunk_size = newsize;1856 buffer += llen;1857 size -= llen;1858}18591860 frag =xcalloc(1,sizeof(*frag));1861 frag->patch =inflate_it(data, hunk_size, origlen);1862 frag->free_patch =1;1863if(!frag->patch)1864goto corrupt;1865free(data);1866 frag->size = origlen;1867*buf_p = buffer;1868*sz_p = size;1869*used_p = used;1870 frag->binary_patch_method = patch_method;1871return frag;18721873 corrupt:1874free(data);1875*status_p = -1;1876error(_("corrupt binary patch at line%d: %.*s"),1877 linenr-1, llen-1, buffer);1878return NULL;1879}18801881static intparse_binary(char*buffer,unsigned long size,struct patch *patch)1882{1883/*1884 * We have read "GIT binary patch\n"; what follows is a line1885 * that says the patch method (currently, either "literal" or1886 * "delta") and the length of data before deflating; a1887 * sequence of 'length-byte' followed by base-85 encoded data1888 * follows.1889 *1890 * When a binary patch is reversible, there is another binary1891 * hunk in the same format, starting with patch method (either1892 * "literal" or "delta") with the length of data, and a sequence1893 * of length-byte + base-85 encoded data, terminated with another1894 * empty line. This data, when applied to the postimage, produces1895 * the preimage.1896 */1897struct fragment *forward;1898struct fragment *reverse;1899int status;1900int used, used_1;19011902 forward =parse_binary_hunk(&buffer, &size, &status, &used);1903if(!forward && !status)1904/* there has to be one hunk (forward hunk) */1905returnerror(_("unrecognized binary patch at line%d"), linenr-1);1906if(status)1907/* otherwise we already gave an error message */1908return status;19091910 reverse =parse_binary_hunk(&buffer, &size, &status, &used_1);1911if(reverse)1912 used += used_1;1913else if(status) {1914/*1915 * Not having reverse hunk is not an error, but having1916 * a corrupt reverse hunk is.1917 */1918free((void*) forward->patch);1919free(forward);1920return status;1921}1922 forward->next = reverse;1923 patch->fragments = forward;1924 patch->is_binary =1;1925return used;1926}19271928/*1929 * Read the patch text in "buffer" that extends for "size" bytes; stop1930 * reading after seeing a single patch (i.e. changes to a single file).1931 * Create fragments (i.e. patch hunks) and hang them to the given patch.1932 * Return the number of bytes consumed, so that the caller can call us1933 * again for the next patch.1934 */1935static intparse_chunk(char*buffer,unsigned long size,struct patch *patch)1936{1937int hdrsize, patchsize;1938int offset =find_header(buffer, size, &hdrsize, patch);19391940if(offset <0)1941return offset;19421943 patch->ws_rule =whitespace_rule(patch->new_name1944? patch->new_name1945: patch->old_name);19461947 patchsize =parse_single_patch(buffer + offset + hdrsize,1948 size - offset - hdrsize, patch);19491950if(!patchsize) {1951static const char git_binary[] ="GIT binary patch\n";1952int hd = hdrsize + offset;1953unsigned long llen =linelen(buffer + hd, size - hd);19541955if(llen ==sizeof(git_binary) -1&&1956!memcmp(git_binary, buffer + hd, llen)) {1957int used;1958 linenr++;1959 used =parse_binary(buffer + hd + llen,1960 size - hd - llen, patch);1961if(used)1962 patchsize = used + llen;1963else1964 patchsize =0;1965}1966else if(!memcmp(" differ\n", buffer + hd + llen -8,8)) {1967static const char*binhdr[] = {1968"Binary files ",1969"Files ",1970 NULL,1971};1972int i;1973for(i =0; binhdr[i]; i++) {1974int len =strlen(binhdr[i]);1975if(len < size - hd &&1976!memcmp(binhdr[i], buffer + hd, len)) {1977 linenr++;1978 patch->is_binary =1;1979 patchsize = llen;1980break;1981}1982}1983}19841985/* Empty patch cannot be applied if it is a text patch1986 * without metadata change. A binary patch appears1987 * empty to us here.1988 */1989if((apply || check) &&1990(!patch->is_binary && !metadata_changes(patch)))1991die(_("patch with only garbage at line%d"), linenr);1992}19931994return offset + hdrsize + patchsize;1995}19961997#define swap(a,b) myswap((a),(b),sizeof(a))19981999#define myswap(a, b, size) do { \2000 unsigned char mytmp[size]; \2001 memcpy(mytmp, &a, size); \2002 memcpy(&a, &b, size); \2003 memcpy(&b, mytmp, size); \2004} while (0)20052006static voidreverse_patches(struct patch *p)2007{2008for(; p; p = p->next) {2009struct fragment *frag = p->fragments;20102011swap(p->new_name, p->old_name);2012swap(p->new_mode, p->old_mode);2013swap(p->is_new, p->is_delete);2014swap(p->lines_added, p->lines_deleted);2015swap(p->old_sha1_prefix, p->new_sha1_prefix);20162017for(; frag; frag = frag->next) {2018swap(frag->newpos, frag->oldpos);2019swap(frag->newlines, frag->oldlines);2020}2021}2022}20232024static const char pluses[] =2025"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";2026static const char minuses[]=2027"----------------------------------------------------------------------";20282029static voidshow_stats(struct patch *patch)2030{2031struct strbuf qname = STRBUF_INIT;2032char*cp = patch->new_name ? patch->new_name : patch->old_name;2033int max, add, del;20342035quote_c_style(cp, &qname, NULL,0);20362037/*2038 * "scale" the filename2039 */2040 max = max_len;2041if(max >50)2042 max =50;20432044if(qname.len > max) {2045 cp =strchr(qname.buf + qname.len +3- max,'/');2046if(!cp)2047 cp = qname.buf + qname.len +3- max;2048strbuf_splice(&qname,0, cp - qname.buf,"...",3);2049}20502051if(patch->is_binary) {2052printf(" %-*s | Bin\n", max, qname.buf);2053strbuf_release(&qname);2054return;2055}20562057printf(" %-*s |", max, qname.buf);2058strbuf_release(&qname);20592060/*2061 * scale the add/delete2062 */2063 max = max + max_change >70?70- max : max_change;2064 add = patch->lines_added;2065 del = patch->lines_deleted;20662067if(max_change >0) {2068int total = ((add + del) * max + max_change /2) / max_change;2069 add = (add * max + max_change /2) / max_change;2070 del = total - add;2071}2072printf("%5d %.*s%.*s\n", patch->lines_added + patch->lines_deleted,2073 add, pluses, del, minuses);2074}20752076static intread_old_data(struct stat *st,const char*path,struct strbuf *buf)2077{2078switch(st->st_mode & S_IFMT) {2079case S_IFLNK:2080if(strbuf_readlink(buf, path, st->st_size) <0)2081returnerror(_("unable to read symlink%s"), path);2082return0;2083case S_IFREG:2084if(strbuf_read_file(buf, path, st->st_size) != st->st_size)2085returnerror(_("unable to open or read%s"), path);2086convert_to_git(path, buf->buf, buf->len, buf,0);2087return0;2088default:2089return-1;2090}2091}20922093/*2094 * Update the preimage, and the common lines in postimage,2095 * from buffer buf of length len. If postlen is 0 the postimage2096 * is updated in place, otherwise it's updated on a new buffer2097 * of length postlen2098 */20992100static voidupdate_pre_post_images(struct image *preimage,2101struct image *postimage,2102char*buf,2103size_t len,size_t postlen)2104{2105int i, ctx, reduced;2106char*new, *old, *fixed;2107struct image fixed_preimage;21082109/*2110 * Update the preimage with whitespace fixes. Note that we2111 * are not losing preimage->buf -- apply_one_fragment() will2112 * free "oldlines".2113 */2114prepare_image(&fixed_preimage, buf, len,1);2115assert(postlen2116? fixed_preimage.nr == preimage->nr2117: fixed_preimage.nr <= preimage->nr);2118for(i =0; i < fixed_preimage.nr; i++)2119 fixed_preimage.line[i].flag = preimage->line[i].flag;2120free(preimage->line_allocated);2121*preimage = fixed_preimage;21222123/*2124 * Adjust the common context lines in postimage. This can be2125 * done in-place when we are shrinking it with whitespace2126 * fixing, but needs a new buffer when ignoring whitespace or2127 * expanding leading tabs to spaces.2128 *2129 * We trust the caller to tell us if the update can be done2130 * in place (postlen==0) or not.2131 */2132 old = postimage->buf;2133if(postlen)2134new= postimage->buf =xmalloc(postlen);2135else2136new= old;2137 fixed = preimage->buf;21382139for(i = reduced = ctx =0; i < postimage->nr; i++) {2140size_t len = postimage->line[i].len;2141if(!(postimage->line[i].flag & LINE_COMMON)) {2142/* an added line -- no counterparts in preimage */2143memmove(new, old, len);2144 old += len;2145new+= len;2146continue;2147}21482149/* a common context -- skip it in the original postimage */2150 old += len;21512152/* and find the corresponding one in the fixed preimage */2153while(ctx < preimage->nr &&2154!(preimage->line[ctx].flag & LINE_COMMON)) {2155 fixed += preimage->line[ctx].len;2156 ctx++;2157}21582159/*2160 * preimage is expected to run out, if the caller2161 * fixed addition of trailing blank lines.2162 */2163if(preimage->nr <= ctx) {2164 reduced++;2165continue;2166}21672168/* and copy it in, while fixing the line length */2169 len = preimage->line[ctx].len;2170memcpy(new, fixed, len);2171new+= len;2172 fixed += len;2173 postimage->line[i].len = len;2174 ctx++;2175}21762177if(postlen2178? postlen <new- postimage->buf2179: postimage->len <new- postimage->buf)2180die("BUG: caller miscounted postlen: asked%d, orig =%d, used =%d",2181(int)postlen, (int) postimage->len, (int)(new- postimage->buf));21822183/* Fix the length of the whole thing */2184 postimage->len =new- postimage->buf;2185 postimage->nr -= reduced;2186}21872188static intmatch_fragment(struct image *img,2189struct image *preimage,2190struct image *postimage,2191unsigned longtry,2192int try_lno,2193unsigned ws_rule,2194int match_beginning,int match_end)2195{2196int i;2197char*fixed_buf, *buf, *orig, *target;2198struct strbuf fixed;2199size_t fixed_len, postlen;2200int preimage_limit;22012202if(preimage->nr + try_lno <= img->nr) {2203/*2204 * The hunk falls within the boundaries of img.2205 */2206 preimage_limit = preimage->nr;2207if(match_end && (preimage->nr + try_lno != img->nr))2208return0;2209}else if(ws_error_action == correct_ws_error &&2210(ws_rule & WS_BLANK_AT_EOF)) {2211/*2212 * This hunk extends beyond the end of img, and we are2213 * removing blank lines at the end of the file. This2214 * many lines from the beginning of the preimage must2215 * match with img, and the remainder of the preimage2216 * must be blank.2217 */2218 preimage_limit = img->nr - try_lno;2219}else{2220/*2221 * The hunk extends beyond the end of the img and2222 * we are not removing blanks at the end, so we2223 * should reject the hunk at this position.2224 */2225return0;2226}22272228if(match_beginning && try_lno)2229return0;22302231/* Quick hash check */2232for(i =0; i < preimage_limit; i++)2233if((img->line[try_lno + i].flag & LINE_PATCHED) ||2234(preimage->line[i].hash != img->line[try_lno + i].hash))2235return0;22362237if(preimage_limit == preimage->nr) {2238/*2239 * Do we have an exact match? If we were told to match2240 * at the end, size must be exactly at try+fragsize,2241 * otherwise try+fragsize must be still within the preimage,2242 * and either case, the old piece should match the preimage2243 * exactly.2244 */2245if((match_end2246? (try+ preimage->len == img->len)2247: (try+ preimage->len <= img->len)) &&2248!memcmp(img->buf +try, preimage->buf, preimage->len))2249return1;2250}else{2251/*2252 * The preimage extends beyond the end of img, so2253 * there cannot be an exact match.2254 *2255 * There must be one non-blank context line that match2256 * a line before the end of img.2257 */2258char*buf_end;22592260 buf = preimage->buf;2261 buf_end = buf;2262for(i =0; i < preimage_limit; i++)2263 buf_end += preimage->line[i].len;22642265for( ; buf < buf_end; buf++)2266if(!isspace(*buf))2267break;2268if(buf == buf_end)2269return0;2270}22712272/*2273 * No exact match. If we are ignoring whitespace, run a line-by-line2274 * fuzzy matching. We collect all the line length information because2275 * we need it to adjust whitespace if we match.2276 */2277if(ws_ignore_action == ignore_ws_change) {2278size_t imgoff =0;2279size_t preoff =0;2280size_t postlen = postimage->len;2281size_t extra_chars;2282char*preimage_eof;2283char*preimage_end;2284for(i =0; i < preimage_limit; i++) {2285size_t prelen = preimage->line[i].len;2286size_t imglen = img->line[try_lno+i].len;22872288if(!fuzzy_matchlines(img->buf +try+ imgoff, imglen,2289 preimage->buf + preoff, prelen))2290return0;2291if(preimage->line[i].flag & LINE_COMMON)2292 postlen += imglen - prelen;2293 imgoff += imglen;2294 preoff += prelen;2295}22962297/*2298 * Ok, the preimage matches with whitespace fuzz.2299 *2300 * imgoff now holds the true length of the target that2301 * matches the preimage before the end of the file.2302 *2303 * Count the number of characters in the preimage that fall2304 * beyond the end of the file and make sure that all of them2305 * are whitespace characters. (This can only happen if2306 * we are removing blank lines at the end of the file.)2307 */2308 buf = preimage_eof = preimage->buf + preoff;2309for( ; i < preimage->nr; i++)2310 preoff += preimage->line[i].len;2311 preimage_end = preimage->buf + preoff;2312for( ; buf < preimage_end; buf++)2313if(!isspace(*buf))2314return0;23152316/*2317 * Update the preimage and the common postimage context2318 * lines to use the same whitespace as the target.2319 * If whitespace is missing in the target (i.e.2320 * if the preimage extends beyond the end of the file),2321 * use the whitespace from the preimage.2322 */2323 extra_chars = preimage_end - preimage_eof;2324strbuf_init(&fixed, imgoff + extra_chars);2325strbuf_add(&fixed, img->buf +try, imgoff);2326strbuf_add(&fixed, preimage_eof, extra_chars);2327 fixed_buf =strbuf_detach(&fixed, &fixed_len);2328update_pre_post_images(preimage, postimage,2329 fixed_buf, fixed_len, postlen);2330return1;2331}23322333if(ws_error_action != correct_ws_error)2334return0;23352336/*2337 * The hunk does not apply byte-by-byte, but the hash says2338 * it might with whitespace fuzz. We weren't asked to2339 * ignore whitespace, we were asked to correct whitespace2340 * errors, so let's try matching after whitespace correction.2341 *2342 * While checking the preimage against the target, whitespace2343 * errors in both fixed, we count how large the corresponding2344 * postimage needs to be. The postimage prepared by2345 * apply_one_fragment() has whitespace errors fixed on added2346 * lines already, but the common lines were propagated as-is,2347 * which may become longer when their whitespace errors are2348 * fixed.2349 */23502351/* First count added lines in postimage */2352 postlen =0;2353for(i =0; i < postimage->nr; i++) {2354if(!(postimage->line[i].flag & LINE_COMMON))2355 postlen += postimage->line[i].len;2356}23572358/*2359 * The preimage may extend beyond the end of the file,2360 * but in this loop we will only handle the part of the2361 * preimage that falls within the file.2362 */2363strbuf_init(&fixed, preimage->len +1);2364 orig = preimage->buf;2365 target = img->buf +try;2366for(i =0; i < preimage_limit; i++) {2367size_t oldlen = preimage->line[i].len;2368size_t tgtlen = img->line[try_lno + i].len;2369size_t fixstart = fixed.len;2370struct strbuf tgtfix;2371int match;23722373/* Try fixing the line in the preimage */2374ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);23752376/* Try fixing the line in the target */2377strbuf_init(&tgtfix, tgtlen);2378ws_fix_copy(&tgtfix, target, tgtlen, ws_rule, NULL);23792380/*2381 * If they match, either the preimage was based on2382 * a version before our tree fixed whitespace breakage,2383 * or we are lacking a whitespace-fix patch the tree2384 * the preimage was based on already had (i.e. target2385 * has whitespace breakage, the preimage doesn't).2386 * In either case, we are fixing the whitespace breakages2387 * so we might as well take the fix together with their2388 * real change.2389 */2390 match = (tgtfix.len == fixed.len - fixstart &&2391!memcmp(tgtfix.buf, fixed.buf + fixstart,2392 fixed.len - fixstart));23932394/* Add the length if this is common with the postimage */2395if(preimage->line[i].flag & LINE_COMMON)2396 postlen += tgtfix.len;23972398strbuf_release(&tgtfix);2399if(!match)2400goto unmatch_exit;24012402 orig += oldlen;2403 target += tgtlen;2404}240524062407/*2408 * Now handle the lines in the preimage that falls beyond the2409 * end of the file (if any). They will only match if they are2410 * empty or only contain whitespace (if WS_BLANK_AT_EOL is2411 * false).2412 */2413for( ; i < preimage->nr; i++) {2414size_t fixstart = fixed.len;/* start of the fixed preimage */2415size_t oldlen = preimage->line[i].len;2416int j;24172418/* Try fixing the line in the preimage */2419ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);24202421for(j = fixstart; j < fixed.len; j++)2422if(!isspace(fixed.buf[j]))2423goto unmatch_exit;24242425 orig += oldlen;2426}24272428/*2429 * Yes, the preimage is based on an older version that still2430 * has whitespace breakages unfixed, and fixing them makes the2431 * hunk match. Update the context lines in the postimage.2432 */2433 fixed_buf =strbuf_detach(&fixed, &fixed_len);2434if(postlen < postimage->len)2435 postlen =0;2436update_pre_post_images(preimage, postimage,2437 fixed_buf, fixed_len, postlen);2438return1;24392440 unmatch_exit:2441strbuf_release(&fixed);2442return0;2443}24442445static intfind_pos(struct image *img,2446struct image *preimage,2447struct image *postimage,2448int line,2449unsigned ws_rule,2450int match_beginning,int match_end)2451{2452int i;2453unsigned long backwards, forwards,try;2454int backwards_lno, forwards_lno, try_lno;24552456/*2457 * If match_beginning or match_end is specified, there is no2458 * point starting from a wrong line that will never match and2459 * wander around and wait for a match at the specified end.2460 */2461if(match_beginning)2462 line =0;2463else if(match_end)2464 line = img->nr - preimage->nr;24652466/*2467 * Because the comparison is unsigned, the following test2468 * will also take care of a negative line number that can2469 * result when match_end and preimage is larger than the target.2470 */2471if((size_t) line > img->nr)2472 line = img->nr;24732474try=0;2475for(i =0; i < line; i++)2476try+= img->line[i].len;24772478/*2479 * There's probably some smart way to do this, but I'll leave2480 * that to the smart and beautiful people. I'm simple and stupid.2481 */2482 backwards =try;2483 backwards_lno = line;2484 forwards =try;2485 forwards_lno = line;2486 try_lno = line;24872488for(i =0; ; i++) {2489if(match_fragment(img, preimage, postimage,2490try, try_lno, ws_rule,2491 match_beginning, match_end))2492return try_lno;24932494 again:2495if(backwards_lno ==0&& forwards_lno == img->nr)2496break;24972498if(i &1) {2499if(backwards_lno ==0) {2500 i++;2501goto again;2502}2503 backwards_lno--;2504 backwards -= img->line[backwards_lno].len;2505try= backwards;2506 try_lno = backwards_lno;2507}else{2508if(forwards_lno == img->nr) {2509 i++;2510goto again;2511}2512 forwards += img->line[forwards_lno].len;2513 forwards_lno++;2514try= forwards;2515 try_lno = forwards_lno;2516}25172518}2519return-1;2520}25212522static voidremove_first_line(struct image *img)2523{2524 img->buf += img->line[0].len;2525 img->len -= img->line[0].len;2526 img->line++;2527 img->nr--;2528}25292530static voidremove_last_line(struct image *img)2531{2532 img->len -= img->line[--img->nr].len;2533}25342535/*2536 * The change from "preimage" and "postimage" has been found to2537 * apply at applied_pos (counts in line numbers) in "img".2538 * Update "img" to remove "preimage" and replace it with "postimage".2539 */2540static voidupdate_image(struct image *img,2541int applied_pos,2542struct image *preimage,2543struct image *postimage)2544{2545/*2546 * remove the copy of preimage at offset in img2547 * and replace it with postimage2548 */2549int i, nr;2550size_t remove_count, insert_count, applied_at =0;2551char*result;2552int preimage_limit;25532554/*2555 * If we are removing blank lines at the end of img,2556 * the preimage may extend beyond the end.2557 * If that is the case, we must be careful only to2558 * remove the part of the preimage that falls within2559 * the boundaries of img. Initialize preimage_limit2560 * to the number of lines in the preimage that falls2561 * within the boundaries.2562 */2563 preimage_limit = preimage->nr;2564if(preimage_limit > img->nr - applied_pos)2565 preimage_limit = img->nr - applied_pos;25662567for(i =0; i < applied_pos; i++)2568 applied_at += img->line[i].len;25692570 remove_count =0;2571for(i =0; i < preimage_limit; i++)2572 remove_count += img->line[applied_pos + i].len;2573 insert_count = postimage->len;25742575/* Adjust the contents */2576 result =xmalloc(img->len + insert_count - remove_count +1);2577memcpy(result, img->buf, applied_at);2578memcpy(result + applied_at, postimage->buf, postimage->len);2579memcpy(result + applied_at + postimage->len,2580 img->buf + (applied_at + remove_count),2581 img->len - (applied_at + remove_count));2582free(img->buf);2583 img->buf = result;2584 img->len += insert_count - remove_count;2585 result[img->len] ='\0';25862587/* Adjust the line table */2588 nr = img->nr + postimage->nr - preimage_limit;2589if(preimage_limit < postimage->nr) {2590/*2591 * NOTE: this knows that we never call remove_first_line()2592 * on anything other than pre/post image.2593 */2594 img->line =xrealloc(img->line, nr *sizeof(*img->line));2595 img->line_allocated = img->line;2596}2597if(preimage_limit != postimage->nr)2598memmove(img->line + applied_pos + postimage->nr,2599 img->line + applied_pos + preimage_limit,2600(img->nr - (applied_pos + preimage_limit)) *2601sizeof(*img->line));2602memcpy(img->line + applied_pos,2603 postimage->line,2604 postimage->nr *sizeof(*img->line));2605if(!allow_overlap)2606for(i =0; i < postimage->nr; i++)2607 img->line[applied_pos + i].flag |= LINE_PATCHED;2608 img->nr = nr;2609}26102611/*2612 * Use the patch-hunk text in "frag" to prepare two images (preimage and2613 * postimage) for the hunk. Find lines that match "preimage" in "img" and2614 * replace the part of "img" with "postimage" text.2615 */2616static intapply_one_fragment(struct image *img,struct fragment *frag,2617int inaccurate_eof,unsigned ws_rule,2618int nth_fragment)2619{2620int match_beginning, match_end;2621const char*patch = frag->patch;2622int size = frag->size;2623char*old, *oldlines;2624struct strbuf newlines;2625int new_blank_lines_at_end =0;2626int found_new_blank_lines_at_end =0;2627int hunk_linenr = frag->linenr;2628unsigned long leading, trailing;2629int pos, applied_pos;2630struct image preimage;2631struct image postimage;26322633memset(&preimage,0,sizeof(preimage));2634memset(&postimage,0,sizeof(postimage));2635 oldlines =xmalloc(size);2636strbuf_init(&newlines, size);26372638 old = oldlines;2639while(size >0) {2640char first;2641int len =linelen(patch, size);2642int plen;2643int added_blank_line =0;2644int is_blank_context =0;2645size_t start;26462647if(!len)2648break;26492650/*2651 * "plen" is how much of the line we should use for2652 * the actual patch data. Normally we just remove the2653 * first character on the line, but if the line is2654 * followed by "\ No newline", then we also remove the2655 * last one (which is the newline, of course).2656 */2657 plen = len -1;2658if(len < size && patch[len] =='\\')2659 plen--;2660 first = *patch;2661if(apply_in_reverse) {2662if(first =='-')2663 first ='+';2664else if(first =='+')2665 first ='-';2666}26672668switch(first) {2669case'\n':2670/* Newer GNU diff, empty context line */2671if(plen <0)2672/* ... followed by '\No newline'; nothing */2673break;2674*old++ ='\n';2675strbuf_addch(&newlines,'\n');2676add_line_info(&preimage,"\n",1, LINE_COMMON);2677add_line_info(&postimage,"\n",1, LINE_COMMON);2678 is_blank_context =1;2679break;2680case' ':2681if(plen && (ws_rule & WS_BLANK_AT_EOF) &&2682ws_blank_line(patch +1, plen, ws_rule))2683 is_blank_context =1;2684case'-':2685memcpy(old, patch +1, plen);2686add_line_info(&preimage, old, plen,2687(first ==' '? LINE_COMMON :0));2688 old += plen;2689if(first =='-')2690break;2691/* Fall-through for ' ' */2692case'+':2693/* --no-add does not add new lines */2694if(first =='+'&& no_add)2695break;26962697 start = newlines.len;2698if(first !='+'||2699!whitespace_error ||2700 ws_error_action != correct_ws_error) {2701strbuf_add(&newlines, patch +1, plen);2702}2703else{2704ws_fix_copy(&newlines, patch +1, plen, ws_rule, &applied_after_fixing_ws);2705}2706add_line_info(&postimage, newlines.buf + start, newlines.len - start,2707(first =='+'?0: LINE_COMMON));2708if(first =='+'&&2709(ws_rule & WS_BLANK_AT_EOF) &&2710ws_blank_line(patch +1, plen, ws_rule))2711 added_blank_line =1;2712break;2713case'@':case'\\':2714/* Ignore it, we already handled it */2715break;2716default:2717if(apply_verbosely)2718error(_("invalid start of line: '%c'"), first);2719return-1;2720}2721if(added_blank_line) {2722if(!new_blank_lines_at_end)2723 found_new_blank_lines_at_end = hunk_linenr;2724 new_blank_lines_at_end++;2725}2726else if(is_blank_context)2727;2728else2729 new_blank_lines_at_end =0;2730 patch += len;2731 size -= len;2732 hunk_linenr++;2733}2734if(inaccurate_eof &&2735 old > oldlines && old[-1] =='\n'&&2736 newlines.len >0&& newlines.buf[newlines.len -1] =='\n') {2737 old--;2738strbuf_setlen(&newlines, newlines.len -1);2739}27402741 leading = frag->leading;2742 trailing = frag->trailing;27432744/*2745 * A hunk to change lines at the beginning would begin with2746 * @@ -1,L +N,M @@2747 * but we need to be careful. -U0 that inserts before the second2748 * line also has this pattern.2749 *2750 * And a hunk to add to an empty file would begin with2751 * @@ -0,0 +N,M @@2752 *2753 * In other words, a hunk that is (frag->oldpos <= 1) with or2754 * without leading context must match at the beginning.2755 */2756 match_beginning = (!frag->oldpos ||2757(frag->oldpos ==1&& !unidiff_zero));27582759/*2760 * A hunk without trailing lines must match at the end.2761 * However, we simply cannot tell if a hunk must match end2762 * from the lack of trailing lines if the patch was generated2763 * with unidiff without any context.2764 */2765 match_end = !unidiff_zero && !trailing;27662767 pos = frag->newpos ? (frag->newpos -1) :0;2768 preimage.buf = oldlines;2769 preimage.len = old - oldlines;2770 postimage.buf = newlines.buf;2771 postimage.len = newlines.len;2772 preimage.line = preimage.line_allocated;2773 postimage.line = postimage.line_allocated;27742775for(;;) {27762777 applied_pos =find_pos(img, &preimage, &postimage, pos,2778 ws_rule, match_beginning, match_end);27792780if(applied_pos >=0)2781break;27822783/* Am I at my context limits? */2784if((leading <= p_context) && (trailing <= p_context))2785break;2786if(match_beginning || match_end) {2787 match_beginning = match_end =0;2788continue;2789}27902791/*2792 * Reduce the number of context lines; reduce both2793 * leading and trailing if they are equal otherwise2794 * just reduce the larger context.2795 */2796if(leading >= trailing) {2797remove_first_line(&preimage);2798remove_first_line(&postimage);2799 pos--;2800 leading--;2801}2802if(trailing > leading) {2803remove_last_line(&preimage);2804remove_last_line(&postimage);2805 trailing--;2806}2807}28082809if(applied_pos >=0) {2810if(new_blank_lines_at_end &&2811 preimage.nr + applied_pos >= img->nr &&2812(ws_rule & WS_BLANK_AT_EOF) &&2813 ws_error_action != nowarn_ws_error) {2814record_ws_error(WS_BLANK_AT_EOF,"+",1,2815 found_new_blank_lines_at_end);2816if(ws_error_action == correct_ws_error) {2817while(new_blank_lines_at_end--)2818remove_last_line(&postimage);2819}2820/*2821 * We would want to prevent write_out_results()2822 * from taking place in apply_patch() that follows2823 * the callchain led us here, which is:2824 * apply_patch->check_patch_list->check_patch->2825 * apply_data->apply_fragments->apply_one_fragment2826 */2827if(ws_error_action == die_on_ws_error)2828 apply =0;2829}28302831if(apply_verbosely && applied_pos != pos) {2832int offset = applied_pos - pos;2833if(apply_in_reverse)2834 offset =0- offset;2835fprintf_ln(stderr,2836Q_("Hunk #%dsucceeded at%d(offset%dline).",2837"Hunk #%dsucceeded at%d(offset%dlines).",2838 offset),2839 nth_fragment, applied_pos +1, offset);2840}28412842/*2843 * Warn if it was necessary to reduce the number2844 * of context lines.2845 */2846if((leading != frag->leading) ||2847(trailing != frag->trailing))2848fprintf_ln(stderr,_("Context reduced to (%ld/%ld)"2849" to apply fragment at%d"),2850 leading, trailing, applied_pos+1);2851update_image(img, applied_pos, &preimage, &postimage);2852}else{2853if(apply_verbosely)2854error(_("while searching for:\n%.*s"),2855(int)(old - oldlines), oldlines);2856}28572858free(oldlines);2859strbuf_release(&newlines);2860free(preimage.line_allocated);2861free(postimage.line_allocated);28622863return(applied_pos <0);2864}28652866static intapply_binary_fragment(struct image *img,struct patch *patch)2867{2868struct fragment *fragment = patch->fragments;2869unsigned long len;2870void*dst;28712872if(!fragment)2873returnerror(_("missing binary patch data for '%s'"),2874 patch->new_name ?2875 patch->new_name :2876 patch->old_name);28772878/* Binary patch is irreversible without the optional second hunk */2879if(apply_in_reverse) {2880if(!fragment->next)2881returnerror("cannot reverse-apply a binary patch "2882"without the reverse hunk to '%s'",2883 patch->new_name2884? patch->new_name : patch->old_name);2885 fragment = fragment->next;2886}2887switch(fragment->binary_patch_method) {2888case BINARY_DELTA_DEFLATED:2889 dst =patch_delta(img->buf, img->len, fragment->patch,2890 fragment->size, &len);2891if(!dst)2892return-1;2893clear_image(img);2894 img->buf = dst;2895 img->len = len;2896return0;2897case BINARY_LITERAL_DEFLATED:2898clear_image(img);2899 img->len = fragment->size;2900 img->buf =xmemdupz(fragment->patch, img->len);2901return0;2902}2903return-1;2904}29052906/*2907 * Replace "img" with the result of applying the binary patch.2908 * The binary patch data itself in patch->fragment is still kept2909 * but the preimage prepared by the caller in "img" is freed here2910 * or in the helper function apply_binary_fragment() this calls.2911 */2912static intapply_binary(struct image *img,struct patch *patch)2913{2914const char*name = patch->old_name ? patch->old_name : patch->new_name;2915unsigned char sha1[20];29162917/*2918 * For safety, we require patch index line to contain2919 * full 40-byte textual SHA1 for old and new, at least for now.2920 */2921if(strlen(patch->old_sha1_prefix) !=40||2922strlen(patch->new_sha1_prefix) !=40||2923get_sha1_hex(patch->old_sha1_prefix, sha1) ||2924get_sha1_hex(patch->new_sha1_prefix, sha1))2925returnerror("cannot apply binary patch to '%s' "2926"without full index line", name);29272928if(patch->old_name) {2929/*2930 * See if the old one matches what the patch2931 * applies to.2932 */2933hash_sha1_file(img->buf, img->len, blob_type, sha1);2934if(strcmp(sha1_to_hex(sha1), patch->old_sha1_prefix))2935returnerror("the patch applies to '%s' (%s), "2936"which does not match the "2937"current contents.",2938 name,sha1_to_hex(sha1));2939}2940else{2941/* Otherwise, the old one must be empty. */2942if(img->len)2943returnerror("the patch applies to an empty "2944"'%s' but it is not empty", name);2945}29462947get_sha1_hex(patch->new_sha1_prefix, sha1);2948if(is_null_sha1(sha1)) {2949clear_image(img);2950return0;/* deletion patch */2951}29522953if(has_sha1_file(sha1)) {2954/* We already have the postimage */2955enum object_type type;2956unsigned long size;2957char*result;29582959 result =read_sha1_file(sha1, &type, &size);2960if(!result)2961returnerror("the necessary postimage%sfor "2962"'%s' cannot be read",2963 patch->new_sha1_prefix, name);2964clear_image(img);2965 img->buf = result;2966 img->len = size;2967}else{2968/*2969 * We have verified buf matches the preimage;2970 * apply the patch data to it, which is stored2971 * in the patch->fragments->{patch,size}.2972 */2973if(apply_binary_fragment(img, patch))2974returnerror(_("binary patch does not apply to '%s'"),2975 name);29762977/* verify that the result matches */2978hash_sha1_file(img->buf, img->len, blob_type, sha1);2979if(strcmp(sha1_to_hex(sha1), patch->new_sha1_prefix))2980returnerror(_("binary patch to '%s' creates incorrect result (expecting%s, got%s)"),2981 name, patch->new_sha1_prefix,sha1_to_hex(sha1));2982}29832984return0;2985}29862987static intapply_fragments(struct image *img,struct patch *patch)2988{2989struct fragment *frag = patch->fragments;2990const char*name = patch->old_name ? patch->old_name : patch->new_name;2991unsigned ws_rule = patch->ws_rule;2992unsigned inaccurate_eof = patch->inaccurate_eof;2993int nth =0;29942995if(patch->is_binary)2996returnapply_binary(img, patch);29972998while(frag) {2999 nth++;3000if(apply_one_fragment(img, frag, inaccurate_eof, ws_rule, nth)) {3001error(_("patch failed:%s:%ld"), name, frag->oldpos);3002if(!apply_with_reject)3003return-1;3004 frag->rejected =1;3005}3006 frag = frag->next;3007}3008return0;3009}30103011static intread_blob_object(struct strbuf *buf,const unsigned char*sha1,unsigned mode)3012{3013if(S_ISGITLINK(mode)) {3014strbuf_grow(buf,100);3015strbuf_addf(buf,"Subproject commit%s\n",sha1_to_hex(sha1));3016}else{3017enum object_type type;3018unsigned long sz;3019char*result;30203021 result =read_sha1_file(sha1, &type, &sz);3022if(!result)3023return-1;3024/* XXX read_sha1_file NUL-terminates */3025strbuf_attach(buf, result, sz, sz +1);3026}3027return0;3028}30293030static intread_file_or_gitlink(const struct cache_entry *ce,struct strbuf *buf)3031{3032if(!ce)3033return0;3034returnread_blob_object(buf, ce->sha1, ce->ce_mode);3035}30363037static struct patch *in_fn_table(const char*name)3038{3039struct string_list_item *item;30403041if(name == NULL)3042return NULL;30433044 item =string_list_lookup(&fn_table, name);3045if(item != NULL)3046return(struct patch *)item->util;30473048return NULL;3049}30503051/*3052 * item->util in the filename table records the status of the path.3053 * Usually it points at a patch (whose result records the contents3054 * of it after applying it), but it could be PATH_WAS_DELETED for a3055 * path that a previously applied patch has already removed, or3056 * PATH_TO_BE_DELETED for a path that a later patch would remove.3057 *3058 * The latter is needed to deal with a case where two paths A and B3059 * are swapped by first renaming A to B and then renaming B to A;3060 * moving A to B should not be prevented due to presence of B as we3061 * will remove it in a later patch.3062 */3063#define PATH_TO_BE_DELETED ((struct patch *) -2)3064#define PATH_WAS_DELETED ((struct patch *) -1)30653066static intto_be_deleted(struct patch *patch)3067{3068return patch == PATH_TO_BE_DELETED;3069}30703071static intwas_deleted(struct patch *patch)3072{3073return patch == PATH_WAS_DELETED;3074}30753076static voidadd_to_fn_table(struct patch *patch)3077{3078struct string_list_item *item;30793080/*3081 * Always add new_name unless patch is a deletion3082 * This should cover the cases for normal diffs,3083 * file creations and copies3084 */3085if(patch->new_name != NULL) {3086 item =string_list_insert(&fn_table, patch->new_name);3087 item->util = patch;3088}30893090/*3091 * store a failure on rename/deletion cases because3092 * later chunks shouldn't patch old names3093 */3094if((patch->new_name == NULL) || (patch->is_rename)) {3095 item =string_list_insert(&fn_table, patch->old_name);3096 item->util = PATH_WAS_DELETED;3097}3098}30993100static voidprepare_fn_table(struct patch *patch)3101{3102/*3103 * store information about incoming file deletion3104 */3105while(patch) {3106if((patch->new_name == NULL) || (patch->is_rename)) {3107struct string_list_item *item;3108 item =string_list_insert(&fn_table, patch->old_name);3109 item->util = PATH_TO_BE_DELETED;3110}3111 patch = patch->next;3112}3113}31143115static intcheckout_target(struct cache_entry *ce,struct stat *st)3116{3117struct checkout costate;31183119memset(&costate,0,sizeof(costate));3120 costate.base_dir ="";3121 costate.refresh_cache =1;3122if(checkout_entry(ce, &costate, NULL) ||lstat(ce->name, st))3123returnerror(_("cannot checkout%s"), ce->name);3124return0;3125}31263127static struct patch *previous_patch(struct patch *patch,int*gone)3128{3129struct patch *previous;31303131*gone =0;3132if(patch->is_copy || patch->is_rename)3133return NULL;/* "git" patches do not depend on the order */31343135 previous =in_fn_table(patch->old_name);3136if(!previous)3137return NULL;31383139if(to_be_deleted(previous))3140return NULL;/* the deletion hasn't happened yet */31413142if(was_deleted(previous))3143*gone =1;31443145return previous;3146}31473148static intverify_index_match(const struct cache_entry *ce,struct stat *st)3149{3150if(S_ISGITLINK(ce->ce_mode)) {3151if(!S_ISDIR(st->st_mode))3152return-1;3153return0;3154}3155returnce_match_stat(ce, st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);3156}31573158#define SUBMODULE_PATCH_WITHOUT_INDEX 131593160static intload_patch_target(struct strbuf *buf,3161const struct cache_entry *ce,3162struct stat *st,3163const char*name,3164unsigned expected_mode)3165{3166if(cached) {3167if(read_file_or_gitlink(ce, buf))3168returnerror(_("read of%sfailed"), name);3169}else if(name) {3170if(S_ISGITLINK(expected_mode)) {3171if(ce)3172returnread_file_or_gitlink(ce, buf);3173else3174return SUBMODULE_PATCH_WITHOUT_INDEX;3175}else{3176if(read_old_data(st, name, buf))3177returnerror(_("read of%sfailed"), name);3178}3179}3180return0;3181}31823183/*3184 * We are about to apply "patch"; populate the "image" with the3185 * current version we have, from the working tree or from the index,3186 * depending on the situation e.g. --cached/--index. If we are3187 * applying a non-git patch that incrementally updates the tree,3188 * we read from the result of a previous diff.3189 */3190static intload_preimage(struct image *image,3191struct patch *patch,struct stat *st,3192const struct cache_entry *ce)3193{3194struct strbuf buf = STRBUF_INIT;3195size_t len;3196char*img;3197struct patch *previous;3198int status;31993200 previous =previous_patch(patch, &status);3201if(status)3202returnerror(_("path%shas been renamed/deleted"),3203 patch->old_name);3204if(previous) {3205/* We have a patched copy in memory; use that. */3206strbuf_add(&buf, previous->result, previous->resultsize);3207}else{3208 status =load_patch_target(&buf, ce, st,3209 patch->old_name, patch->old_mode);3210if(status <0)3211return status;3212else if(status == SUBMODULE_PATCH_WITHOUT_INDEX) {3213/*3214 * There is no way to apply subproject3215 * patch without looking at the index.3216 * NEEDSWORK: shouldn't this be flagged3217 * as an error???3218 */3219free_fragment_list(patch->fragments);3220 patch->fragments = NULL;3221}else if(status) {3222returnerror(_("read of%sfailed"), patch->old_name);3223}3224}32253226 img =strbuf_detach(&buf, &len);3227prepare_image(image, img, len, !patch->is_binary);3228return0;3229}32303231static intthree_way_merge(struct image *image,3232char*path,3233const unsigned char*base,3234const unsigned char*ours,3235const unsigned char*theirs)3236{3237 mmfile_t base_file, our_file, their_file;3238 mmbuffer_t result = { NULL };3239int status;32403241read_mmblob(&base_file, base);3242read_mmblob(&our_file, ours);3243read_mmblob(&their_file, theirs);3244 status =ll_merge(&result, path,3245&base_file,"base",3246&our_file,"ours",3247&their_file,"theirs", NULL);3248free(base_file.ptr);3249free(our_file.ptr);3250free(their_file.ptr);3251if(status <0|| !result.ptr) {3252free(result.ptr);3253return-1;3254}3255clear_image(image);3256 image->buf = result.ptr;3257 image->len = result.size;32583259return status;3260}32613262/*3263 * When directly falling back to add/add three-way merge, we read from3264 * the current contents of the new_name. In no cases other than that3265 * this function will be called.3266 */3267static intload_current(struct image *image,struct patch *patch)3268{3269struct strbuf buf = STRBUF_INIT;3270int status, pos;3271size_t len;3272char*img;3273struct stat st;3274struct cache_entry *ce;3275char*name = patch->new_name;3276unsigned mode = patch->new_mode;32773278if(!patch->is_new)3279die("BUG: patch to%sis not a creation", patch->old_name);32803281 pos =cache_name_pos(name,strlen(name));3282if(pos <0)3283returnerror(_("%s: does not exist in index"), name);3284 ce = active_cache[pos];3285if(lstat(name, &st)) {3286if(errno != ENOENT)3287returnerror(_("%s:%s"), name,strerror(errno));3288if(checkout_target(ce, &st))3289return-1;3290}3291if(verify_index_match(ce, &st))3292returnerror(_("%s: does not match index"), name);32933294 status =load_patch_target(&buf, ce, &st, name, mode);3295if(status <0)3296return status;3297else if(status)3298return-1;3299 img =strbuf_detach(&buf, &len);3300prepare_image(image, img, len, !patch->is_binary);3301return0;3302}33033304static inttry_threeway(struct image *image,struct patch *patch,3305struct stat *st,const struct cache_entry *ce)3306{3307unsigned char pre_sha1[20], post_sha1[20], our_sha1[20];3308struct strbuf buf = STRBUF_INIT;3309size_t len;3310int status;3311char*img;3312struct image tmp_image;33133314/* No point falling back to 3-way merge in these cases */3315if(patch->is_delete ||3316S_ISGITLINK(patch->old_mode) ||S_ISGITLINK(patch->new_mode))3317return-1;33183319/* Preimage the patch was prepared for */3320if(patch->is_new)3321write_sha1_file("",0, blob_type, pre_sha1);3322else if(get_sha1(patch->old_sha1_prefix, pre_sha1) ||3323read_blob_object(&buf, pre_sha1, patch->old_mode))3324returnerror("repository lacks the necessary blob to fall back on 3-way merge.");33253326fprintf(stderr,"Falling back to three-way merge...\n");33273328 img =strbuf_detach(&buf, &len);3329prepare_image(&tmp_image, img, len,1);3330/* Apply the patch to get the post image */3331if(apply_fragments(&tmp_image, patch) <0) {3332clear_image(&tmp_image);3333return-1;3334}3335/* post_sha1[] is theirs */3336write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, post_sha1);3337clear_image(&tmp_image);33383339/* our_sha1[] is ours */3340if(patch->is_new) {3341if(load_current(&tmp_image, patch))3342returnerror("cannot read the current contents of '%s'",3343 patch->new_name);3344}else{3345if(load_preimage(&tmp_image, patch, st, ce))3346returnerror("cannot read the current contents of '%s'",3347 patch->old_name);3348}3349write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, our_sha1);3350clear_image(&tmp_image);33513352/* in-core three-way merge between post and our using pre as base */3353 status =three_way_merge(image, patch->new_name,3354 pre_sha1, our_sha1, post_sha1);3355if(status <0) {3356fprintf(stderr,"Failed to fall back on three-way merge...\n");3357return status;3358}33593360if(status) {3361 patch->conflicted_threeway =1;3362if(patch->is_new)3363hashclr(patch->threeway_stage[0]);3364else3365hashcpy(patch->threeway_stage[0], pre_sha1);3366hashcpy(patch->threeway_stage[1], our_sha1);3367hashcpy(patch->threeway_stage[2], post_sha1);3368fprintf(stderr,"Applied patch to '%s' with conflicts.\n", patch->new_name);3369}else{3370fprintf(stderr,"Applied patch to '%s' cleanly.\n", patch->new_name);3371}3372return0;3373}33743375static intapply_data(struct patch *patch,struct stat *st,const struct cache_entry *ce)3376{3377struct image image;33783379if(load_preimage(&image, patch, st, ce) <0)3380return-1;33813382if(patch->direct_to_threeway ||3383apply_fragments(&image, patch) <0) {3384/* Note: with --reject, apply_fragments() returns 0 */3385if(!threeway ||try_threeway(&image, patch, st, ce) <0)3386return-1;3387}3388 patch->result = image.buf;3389 patch->resultsize = image.len;3390add_to_fn_table(patch);3391free(image.line_allocated);33923393if(0< patch->is_delete && patch->resultsize)3394returnerror(_("removal patch leaves file contents"));33953396return0;3397}33983399/*3400 * If "patch" that we are looking at modifies or deletes what we have,3401 * we would want it not to lose any local modification we have, either3402 * in the working tree or in the index.3403 *3404 * This also decides if a non-git patch is a creation patch or a3405 * modification to an existing empty file. We do not check the state3406 * of the current tree for a creation patch in this function; the caller3407 * check_patch() separately makes sure (and errors out otherwise) that3408 * the path the patch creates does not exist in the current tree.3409 */3410static intcheck_preimage(struct patch *patch,struct cache_entry **ce,struct stat *st)3411{3412const char*old_name = patch->old_name;3413struct patch *previous = NULL;3414int stat_ret =0, status;3415unsigned st_mode =0;34163417if(!old_name)3418return0;34193420assert(patch->is_new <=0);3421 previous =previous_patch(patch, &status);34223423if(status)3424returnerror(_("path%shas been renamed/deleted"), old_name);3425if(previous) {3426 st_mode = previous->new_mode;3427}else if(!cached) {3428 stat_ret =lstat(old_name, st);3429if(stat_ret && errno != ENOENT)3430returnerror(_("%s:%s"), old_name,strerror(errno));3431}34323433if(check_index && !previous) {3434int pos =cache_name_pos(old_name,strlen(old_name));3435if(pos <0) {3436if(patch->is_new <0)3437goto is_new;3438returnerror(_("%s: does not exist in index"), old_name);3439}3440*ce = active_cache[pos];3441if(stat_ret <0) {3442if(checkout_target(*ce, st))3443return-1;3444}3445if(!cached &&verify_index_match(*ce, st))3446returnerror(_("%s: does not match index"), old_name);3447if(cached)3448 st_mode = (*ce)->ce_mode;3449}else if(stat_ret <0) {3450if(patch->is_new <0)3451goto is_new;3452returnerror(_("%s:%s"), old_name,strerror(errno));3453}34543455if(!cached && !previous)3456 st_mode =ce_mode_from_stat(*ce, st->st_mode);34573458if(patch->is_new <0)3459 patch->is_new =0;3460if(!patch->old_mode)3461 patch->old_mode = st_mode;3462if((st_mode ^ patch->old_mode) & S_IFMT)3463returnerror(_("%s: wrong type"), old_name);3464if(st_mode != patch->old_mode)3465warning(_("%shas type%o, expected%o"),3466 old_name, st_mode, patch->old_mode);3467if(!patch->new_mode && !patch->is_delete)3468 patch->new_mode = st_mode;3469return0;34703471 is_new:3472 patch->is_new =1;3473 patch->is_delete =0;3474free(patch->old_name);3475 patch->old_name = NULL;3476return0;3477}347834793480#define EXISTS_IN_INDEX 13481#define EXISTS_IN_WORKTREE 234823483static intcheck_to_create(const char*new_name,int ok_if_exists)3484{3485struct stat nst;34863487if(check_index &&3488cache_name_pos(new_name,strlen(new_name)) >=0&&3489!ok_if_exists)3490return EXISTS_IN_INDEX;3491if(cached)3492return0;34933494if(!lstat(new_name, &nst)) {3495if(S_ISDIR(nst.st_mode) || ok_if_exists)3496return0;3497/*3498 * A leading component of new_name might be a symlink3499 * that is going to be removed with this patch, but3500 * still pointing at somewhere that has the path.3501 * In such a case, path "new_name" does not exist as3502 * far as git is concerned.3503 */3504if(has_symlink_leading_path(new_name,strlen(new_name)))3505return0;35063507return EXISTS_IN_WORKTREE;3508}else if((errno != ENOENT) && (errno != ENOTDIR)) {3509returnerror("%s:%s", new_name,strerror(errno));3510}3511return0;3512}35133514/*3515 * Check and apply the patch in-core; leave the result in patch->result3516 * for the caller to write it out to the final destination.3517 */3518static intcheck_patch(struct patch *patch)3519{3520struct stat st;3521const char*old_name = patch->old_name;3522const char*new_name = patch->new_name;3523const char*name = old_name ? old_name : new_name;3524struct cache_entry *ce = NULL;3525struct patch *tpatch;3526int ok_if_exists;3527int status;35283529 patch->rejected =1;/* we will drop this after we succeed */35303531 status =check_preimage(patch, &ce, &st);3532if(status)3533return status;3534 old_name = patch->old_name;35353536/*3537 * A type-change diff is always split into a patch to delete3538 * old, immediately followed by a patch to create new (see3539 * diff.c::run_diff()); in such a case it is Ok that the entry3540 * to be deleted by the previous patch is still in the working3541 * tree and in the index.3542 *3543 * A patch to swap-rename between A and B would first rename A3544 * to B and then rename B to A. While applying the first one,3545 * the presence of B should not stop A from getting renamed to3546 * B; ask to_be_deleted() about the later rename. Removal of3547 * B and rename from A to B is handled the same way by asking3548 * was_deleted().3549 */3550if((tpatch =in_fn_table(new_name)) &&3551(was_deleted(tpatch) ||to_be_deleted(tpatch)))3552 ok_if_exists =1;3553else3554 ok_if_exists =0;35553556if(new_name &&3557((0< patch->is_new) || patch->is_rename || patch->is_copy)) {3558int err =check_to_create(new_name, ok_if_exists);35593560if(err && threeway) {3561 patch->direct_to_threeway =1;3562}else switch(err) {3563case0:3564break;/* happy */3565case EXISTS_IN_INDEX:3566returnerror(_("%s: already exists in index"), new_name);3567break;3568case EXISTS_IN_WORKTREE:3569returnerror(_("%s: already exists in working directory"),3570 new_name);3571default:3572return err;3573}35743575if(!patch->new_mode) {3576if(0< patch->is_new)3577 patch->new_mode = S_IFREG |0644;3578else3579 patch->new_mode = patch->old_mode;3580}3581}35823583if(new_name && old_name) {3584int same = !strcmp(old_name, new_name);3585if(!patch->new_mode)3586 patch->new_mode = patch->old_mode;3587if((patch->old_mode ^ patch->new_mode) & S_IFMT) {3588if(same)3589returnerror(_("new mode (%o) of%sdoes not "3590"match old mode (%o)"),3591 patch->new_mode, new_name,3592 patch->old_mode);3593else3594returnerror(_("new mode (%o) of%sdoes not "3595"match old mode (%o) of%s"),3596 patch->new_mode, new_name,3597 patch->old_mode, old_name);3598}3599}36003601if(apply_data(patch, &st, ce) <0)3602returnerror(_("%s: patch does not apply"), name);3603 patch->rejected =0;3604return0;3605}36063607static intcheck_patch_list(struct patch *patch)3608{3609int err =0;36103611prepare_fn_table(patch);3612while(patch) {3613if(apply_verbosely)3614say_patch_name(stderr,3615_("Checking patch%s..."), patch);3616 err |=check_patch(patch);3617 patch = patch->next;3618}3619return err;3620}36213622/* This function tries to read the sha1 from the current index */3623static intget_current_sha1(const char*path,unsigned char*sha1)3624{3625int pos;36263627if(read_cache() <0)3628return-1;3629 pos =cache_name_pos(path,strlen(path));3630if(pos <0)3631return-1;3632hashcpy(sha1, active_cache[pos]->sha1);3633return0;3634}36353636static intpreimage_sha1_in_gitlink_patch(struct patch *p,unsigned char sha1[20])3637{3638/*3639 * A usable gitlink patch has only one fragment (hunk) that looks like:3640 * @@ -1 +1 @@3641 * -Subproject commit <old sha1>3642 * +Subproject commit <new sha1>3643 * or3644 * @@ -1 +0,0 @@3645 * -Subproject commit <old sha1>3646 * for a removal patch.3647 */3648struct fragment *hunk = p->fragments;3649static const char heading[] ="-Subproject commit ";3650char*preimage;36513652if(/* does the patch have only one hunk? */3653 hunk && !hunk->next &&3654/* is its preimage one line? */3655 hunk->oldpos ==1&& hunk->oldlines ==1&&3656/* does preimage begin with the heading? */3657(preimage =memchr(hunk->patch,'\n', hunk->size)) != NULL &&3658starts_with(++preimage, heading) &&3659/* does it record full SHA-1? */3660!get_sha1_hex(preimage +sizeof(heading) -1, sha1) &&3661 preimage[sizeof(heading) +40-1] =='\n'&&3662/* does the abbreviated name on the index line agree with it? */3663starts_with(preimage +sizeof(heading) -1, p->old_sha1_prefix))3664return0;/* it all looks fine */36653666/* we may have full object name on the index line */3667returnget_sha1_hex(p->old_sha1_prefix, sha1);3668}36693670/* Build an index that contains the just the files needed for a 3way merge */3671static voidbuild_fake_ancestor(struct patch *list,const char*filename)3672{3673struct patch *patch;3674struct index_state result = { NULL };3675int fd;36763677/* Once we start supporting the reverse patch, it may be3678 * worth showing the new sha1 prefix, but until then...3679 */3680for(patch = list; patch; patch = patch->next) {3681unsigned char sha1[20];3682struct cache_entry *ce;3683const char*name;36843685 name = patch->old_name ? patch->old_name : patch->new_name;3686if(0< patch->is_new)3687continue;36883689if(S_ISGITLINK(patch->old_mode)) {3690if(!preimage_sha1_in_gitlink_patch(patch, sha1))3691;/* ok, the textual part looks sane */3692else3693die("sha1 information is lacking or useless for submoule%s",3694 name);3695}else if(!get_sha1_blob(patch->old_sha1_prefix, sha1)) {3696;/* ok */3697}else if(!patch->lines_added && !patch->lines_deleted) {3698/* mode-only change: update the current */3699if(get_current_sha1(patch->old_name, sha1))3700die("mode change for%s, which is not "3701"in current HEAD", name);3702}else3703die("sha1 information is lacking or useless "3704"(%s).", name);37053706 ce =make_cache_entry(patch->old_mode, sha1, name,0,0);3707if(!ce)3708die(_("make_cache_entry failed for path '%s'"), name);3709if(add_index_entry(&result, ce, ADD_CACHE_OK_TO_ADD))3710die("Could not add%sto temporary index", name);3711}37123713 fd =open(filename, O_WRONLY | O_CREAT,0666);3714if(fd <0||write_index(&result, fd) ||close(fd))3715die("Could not write temporary index to%s", filename);37163717discard_index(&result);3718}37193720static voidstat_patch_list(struct patch *patch)3721{3722int files, adds, dels;37233724for(files = adds = dels =0; patch ; patch = patch->next) {3725 files++;3726 adds += patch->lines_added;3727 dels += patch->lines_deleted;3728show_stats(patch);3729}37303731print_stat_summary(stdout, files, adds, dels);3732}37333734static voidnumstat_patch_list(struct patch *patch)3735{3736for( ; patch; patch = patch->next) {3737const char*name;3738 name = patch->new_name ? patch->new_name : patch->old_name;3739if(patch->is_binary)3740printf("-\t-\t");3741else3742printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);3743write_name_quoted(name, stdout, line_termination);3744}3745}37463747static voidshow_file_mode_name(const char*newdelete,unsigned int mode,const char*name)3748{3749if(mode)3750printf("%smode%06o%s\n", newdelete, mode, name);3751else3752printf("%s %s\n", newdelete, name);3753}37543755static voidshow_mode_change(struct patch *p,int show_name)3756{3757if(p->old_mode && p->new_mode && p->old_mode != p->new_mode) {3758if(show_name)3759printf(" mode change%06o =>%06o%s\n",3760 p->old_mode, p->new_mode, p->new_name);3761else3762printf(" mode change%06o =>%06o\n",3763 p->old_mode, p->new_mode);3764}3765}37663767static voidshow_rename_copy(struct patch *p)3768{3769const char*renamecopy = p->is_rename ?"rename":"copy";3770const char*old, *new;37713772/* Find common prefix */3773 old = p->old_name;3774new= p->new_name;3775while(1) {3776const char*slash_old, *slash_new;3777 slash_old =strchr(old,'/');3778 slash_new =strchr(new,'/');3779if(!slash_old ||3780!slash_new ||3781 slash_old - old != slash_new -new||3782memcmp(old,new, slash_new -new))3783break;3784 old = slash_old +1;3785new= slash_new +1;3786}3787/* p->old_name thru old is the common prefix, and old and new3788 * through the end of names are renames3789 */3790if(old != p->old_name)3791printf("%s%.*s{%s=>%s} (%d%%)\n", renamecopy,3792(int)(old - p->old_name), p->old_name,3793 old,new, p->score);3794else3795printf("%s %s=>%s(%d%%)\n", renamecopy,3796 p->old_name, p->new_name, p->score);3797show_mode_change(p,0);3798}37993800static voidsummary_patch_list(struct patch *patch)3801{3802struct patch *p;38033804for(p = patch; p; p = p->next) {3805if(p->is_new)3806show_file_mode_name("create", p->new_mode, p->new_name);3807else if(p->is_delete)3808show_file_mode_name("delete", p->old_mode, p->old_name);3809else{3810if(p->is_rename || p->is_copy)3811show_rename_copy(p);3812else{3813if(p->score) {3814printf(" rewrite%s(%d%%)\n",3815 p->new_name, p->score);3816show_mode_change(p,0);3817}3818else3819show_mode_change(p,1);3820}3821}3822}3823}38243825static voidpatch_stats(struct patch *patch)3826{3827int lines = patch->lines_added + patch->lines_deleted;38283829if(lines > max_change)3830 max_change = lines;3831if(patch->old_name) {3832int len =quote_c_style(patch->old_name, NULL, NULL,0);3833if(!len)3834 len =strlen(patch->old_name);3835if(len > max_len)3836 max_len = len;3837}3838if(patch->new_name) {3839int len =quote_c_style(patch->new_name, NULL, NULL,0);3840if(!len)3841 len =strlen(patch->new_name);3842if(len > max_len)3843 max_len = len;3844}3845}38463847static voidremove_file(struct patch *patch,int rmdir_empty)3848{3849if(update_index) {3850if(remove_file_from_cache(patch->old_name) <0)3851die(_("unable to remove%sfrom index"), patch->old_name);3852}3853if(!cached) {3854if(!remove_or_warn(patch->old_mode, patch->old_name) && rmdir_empty) {3855remove_path(patch->old_name);3856}3857}3858}38593860static voidadd_index_file(const char*path,unsigned mode,void*buf,unsigned long size)3861{3862struct stat st;3863struct cache_entry *ce;3864int namelen =strlen(path);3865unsigned ce_size =cache_entry_size(namelen);38663867if(!update_index)3868return;38693870 ce =xcalloc(1, ce_size);3871memcpy(ce->name, path, namelen);3872 ce->ce_mode =create_ce_mode(mode);3873 ce->ce_flags =create_ce_flags(0);3874 ce->ce_namelen = namelen;3875if(S_ISGITLINK(mode)) {3876const char*s = buf;38773878if(get_sha1_hex(s +strlen("Subproject commit "), ce->sha1))3879die(_("corrupt patch for submodule%s"), path);3880}else{3881if(!cached) {3882if(lstat(path, &st) <0)3883die_errno(_("unable to stat newly created file '%s'"),3884 path);3885fill_stat_cache_info(ce, &st);3886}3887if(write_sha1_file(buf, size, blob_type, ce->sha1) <0)3888die(_("unable to create backing store for newly created file%s"), path);3889}3890if(add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) <0)3891die(_("unable to add cache entry for%s"), path);3892}38933894static inttry_create_file(const char*path,unsigned int mode,const char*buf,unsigned long size)3895{3896int fd;3897struct strbuf nbuf = STRBUF_INIT;38983899if(S_ISGITLINK(mode)) {3900struct stat st;3901if(!lstat(path, &st) &&S_ISDIR(st.st_mode))3902return0;3903returnmkdir(path,0777);3904}39053906if(has_symlinks &&S_ISLNK(mode))3907/* Although buf:size is counted string, it also is NUL3908 * terminated.3909 */3910returnsymlink(buf, path);39113912 fd =open(path, O_CREAT | O_EXCL | O_WRONLY, (mode &0100) ?0777:0666);3913if(fd <0)3914return-1;39153916if(convert_to_working_tree(path, buf, size, &nbuf)) {3917 size = nbuf.len;3918 buf = nbuf.buf;3919}3920write_or_die(fd, buf, size);3921strbuf_release(&nbuf);39223923if(close(fd) <0)3924die_errno(_("closing file '%s'"), path);3925return0;3926}39273928/*3929 * We optimistically assume that the directories exist,3930 * which is true 99% of the time anyway. If they don't,3931 * we create them and try again.3932 */3933static voidcreate_one_file(char*path,unsigned mode,const char*buf,unsigned long size)3934{3935if(cached)3936return;3937if(!try_create_file(path, mode, buf, size))3938return;39393940if(errno == ENOENT) {3941if(safe_create_leading_directories(path))3942return;3943if(!try_create_file(path, mode, buf, size))3944return;3945}39463947if(errno == EEXIST || errno == EACCES) {3948/* We may be trying to create a file where a directory3949 * used to be.3950 */3951struct stat st;3952if(!lstat(path, &st) && (!S_ISDIR(st.st_mode) || !rmdir(path)))3953 errno = EEXIST;3954}39553956if(errno == EEXIST) {3957unsigned int nr =getpid();39583959for(;;) {3960char newpath[PATH_MAX];3961mksnpath(newpath,sizeof(newpath),"%s~%u", path, nr);3962if(!try_create_file(newpath, mode, buf, size)) {3963if(!rename(newpath, path))3964return;3965unlink_or_warn(newpath);3966break;3967}3968if(errno != EEXIST)3969break;3970++nr;3971}3972}3973die_errno(_("unable to write file '%s' mode%o"), path, mode);3974}39753976static voidadd_conflicted_stages_file(struct patch *patch)3977{3978int stage, namelen;3979unsigned ce_size, mode;3980struct cache_entry *ce;39813982if(!update_index)3983return;3984 namelen =strlen(patch->new_name);3985 ce_size =cache_entry_size(namelen);3986 mode = patch->new_mode ? patch->new_mode : (S_IFREG |0644);39873988remove_file_from_cache(patch->new_name);3989for(stage =1; stage <4; stage++) {3990if(is_null_sha1(patch->threeway_stage[stage -1]))3991continue;3992 ce =xcalloc(1, ce_size);3993memcpy(ce->name, patch->new_name, namelen);3994 ce->ce_mode =create_ce_mode(mode);3995 ce->ce_flags =create_ce_flags(stage);3996 ce->ce_namelen = namelen;3997hashcpy(ce->sha1, patch->threeway_stage[stage -1]);3998if(add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) <0)3999die(_("unable to add cache entry for%s"), patch->new_name);4000}4001}40024003static voidcreate_file(struct patch *patch)4004{4005char*path = patch->new_name;4006unsigned mode = patch->new_mode;4007unsigned long size = patch->resultsize;4008char*buf = patch->result;40094010if(!mode)4011 mode = S_IFREG |0644;4012create_one_file(path, mode, buf, size);40134014if(patch->conflicted_threeway)4015add_conflicted_stages_file(patch);4016else4017add_index_file(path, mode, buf, size);4018}40194020/* phase zero is to remove, phase one is to create */4021static voidwrite_out_one_result(struct patch *patch,int phase)4022{4023if(patch->is_delete >0) {4024if(phase ==0)4025remove_file(patch,1);4026return;4027}4028if(patch->is_new >0|| patch->is_copy) {4029if(phase ==1)4030create_file(patch);4031return;4032}4033/*4034 * Rename or modification boils down to the same4035 * thing: remove the old, write the new4036 */4037if(phase ==0)4038remove_file(patch, patch->is_rename);4039if(phase ==1)4040create_file(patch);4041}40424043static intwrite_out_one_reject(struct patch *patch)4044{4045FILE*rej;4046char namebuf[PATH_MAX];4047struct fragment *frag;4048int cnt =0;4049struct strbuf sb = STRBUF_INIT;40504051for(cnt =0, frag = patch->fragments; frag; frag = frag->next) {4052if(!frag->rejected)4053continue;4054 cnt++;4055}40564057if(!cnt) {4058if(apply_verbosely)4059say_patch_name(stderr,4060_("Applied patch%scleanly."), patch);4061return0;4062}40634064/* This should not happen, because a removal patch that leaves4065 * contents are marked "rejected" at the patch level.4066 */4067if(!patch->new_name)4068die(_("internal error"));40694070/* Say this even without --verbose */4071strbuf_addf(&sb,Q_("Applying patch %%swith%dreject...",4072"Applying patch %%swith%drejects...",4073 cnt),4074 cnt);4075say_patch_name(stderr, sb.buf, patch);4076strbuf_release(&sb);40774078 cnt =strlen(patch->new_name);4079if(ARRAY_SIZE(namebuf) <= cnt +5) {4080 cnt =ARRAY_SIZE(namebuf) -5;4081warning(_("truncating .rej filename to %.*s.rej"),4082 cnt -1, patch->new_name);4083}4084memcpy(namebuf, patch->new_name, cnt);4085memcpy(namebuf + cnt,".rej",5);40864087 rej =fopen(namebuf,"w");4088if(!rej)4089returnerror(_("cannot open%s:%s"), namebuf,strerror(errno));40904091/* Normal git tools never deal with .rej, so do not pretend4092 * this is a git patch by saying --git or giving extended4093 * headers. While at it, maybe please "kompare" that wants4094 * the trailing TAB and some garbage at the end of line ;-).4095 */4096fprintf(rej,"diff a/%sb/%s\t(rejected hunks)\n",4097 patch->new_name, patch->new_name);4098for(cnt =1, frag = patch->fragments;4099 frag;4100 cnt++, frag = frag->next) {4101if(!frag->rejected) {4102fprintf_ln(stderr,_("Hunk #%dapplied cleanly."), cnt);4103continue;4104}4105fprintf_ln(stderr,_("Rejected hunk #%d."), cnt);4106fprintf(rej,"%.*s", frag->size, frag->patch);4107if(frag->patch[frag->size-1] !='\n')4108fputc('\n', rej);4109}4110fclose(rej);4111return-1;4112}41134114static intwrite_out_results(struct patch *list)4115{4116int phase;4117int errs =0;4118struct patch *l;4119struct string_list cpath = STRING_LIST_INIT_DUP;41204121for(phase =0; phase <2; phase++) {4122 l = list;4123while(l) {4124if(l->rejected)4125 errs =1;4126else{4127write_out_one_result(l, phase);4128if(phase ==1) {4129if(write_out_one_reject(l))4130 errs =1;4131if(l->conflicted_threeway) {4132string_list_append(&cpath, l->new_name);4133 errs =1;4134}4135}4136}4137 l = l->next;4138}4139}41404141if(cpath.nr) {4142struct string_list_item *item;41434144sort_string_list(&cpath);4145for_each_string_list_item(item, &cpath)4146fprintf(stderr,"U%s\n", item->string);4147string_list_clear(&cpath,0);41484149rerere(0);4150}41514152return errs;4153}41544155static struct lock_file lock_file;41564157static struct string_list limit_by_name;4158static int has_include;4159static voidadd_name_limit(const char*name,int exclude)4160{4161struct string_list_item *it;41624163 it =string_list_append(&limit_by_name, name);4164 it->util = exclude ? NULL : (void*)1;4165}41664167static intuse_patch(struct patch *p)4168{4169const char*pathname = p->new_name ? p->new_name : p->old_name;4170int i;41714172/* Paths outside are not touched regardless of "--include" */4173if(0< prefix_length) {4174int pathlen =strlen(pathname);4175if(pathlen <= prefix_length ||4176memcmp(prefix, pathname, prefix_length))4177return0;4178}41794180/* See if it matches any of exclude/include rule */4181for(i =0; i < limit_by_name.nr; i++) {4182struct string_list_item *it = &limit_by_name.items[i];4183if(!wildmatch(it->string, pathname,0, NULL))4184return(it->util != NULL);4185}41864187/*4188 * If we had any include, a path that does not match any rule is4189 * not used. Otherwise, we saw bunch of exclude rules (or none)4190 * and such a path is used.4191 */4192return!has_include;4193}419441954196static voidprefix_one(char**name)4197{4198char*old_name = *name;4199if(!old_name)4200return;4201*name =xstrdup(prefix_filename(prefix, prefix_length, *name));4202free(old_name);4203}42044205static voidprefix_patches(struct patch *p)4206{4207if(!prefix || p->is_toplevel_relative)4208return;4209for( ; p; p = p->next) {4210prefix_one(&p->new_name);4211prefix_one(&p->old_name);4212}4213}42144215#define INACCURATE_EOF (1<<0)4216#define RECOUNT (1<<1)42174218static intapply_patch(int fd,const char*filename,int options)4219{4220size_t offset;4221struct strbuf buf = STRBUF_INIT;/* owns the patch text */4222struct patch *list = NULL, **listp = &list;4223int skipped_patch =0;42244225 patch_input_file = filename;4226read_patch_file(&buf, fd);4227 offset =0;4228while(offset < buf.len) {4229struct patch *patch;4230int nr;42314232 patch =xcalloc(1,sizeof(*patch));4233 patch->inaccurate_eof = !!(options & INACCURATE_EOF);4234 patch->recount = !!(options & RECOUNT);4235 nr =parse_chunk(buf.buf + offset, buf.len - offset, patch);4236if(nr <0)4237break;4238if(apply_in_reverse)4239reverse_patches(patch);4240if(prefix)4241prefix_patches(patch);4242if(use_patch(patch)) {4243patch_stats(patch);4244*listp = patch;4245 listp = &patch->next;4246}4247else{4248free_patch(patch);4249 skipped_patch++;4250}4251 offset += nr;4252}42534254if(!list && !skipped_patch)4255die(_("unrecognized input"));42564257if(whitespace_error && (ws_error_action == die_on_ws_error))4258 apply =0;42594260 update_index = check_index && apply;4261if(update_index && newfd <0)4262 newfd =hold_locked_index(&lock_file,1);42634264if(check_index) {4265if(read_cache() <0)4266die(_("unable to read index file"));4267}42684269if((check || apply) &&4270check_patch_list(list) <0&&4271!apply_with_reject)4272exit(1);42734274if(apply &&write_out_results(list)) {4275if(apply_with_reject)4276exit(1);4277/* with --3way, we still need to write the index out */4278return1;4279}42804281if(fake_ancestor)4282build_fake_ancestor(list, fake_ancestor);42834284if(diffstat)4285stat_patch_list(list);42864287if(numstat)4288numstat_patch_list(list);42894290if(summary)4291summary_patch_list(list);42924293free_patch_list(list);4294strbuf_release(&buf);4295string_list_clear(&fn_table,0);4296return0;4297}42984299static intgit_apply_config(const char*var,const char*value,void*cb)4300{4301if(!strcmp(var,"apply.whitespace"))4302returngit_config_string(&apply_default_whitespace, var, value);4303else if(!strcmp(var,"apply.ignorewhitespace"))4304returngit_config_string(&apply_default_ignorewhitespace, var, value);4305returngit_default_config(var, value, cb);4306}43074308static intoption_parse_exclude(const struct option *opt,4309const char*arg,int unset)4310{4311add_name_limit(arg,1);4312return0;4313}43144315static intoption_parse_include(const struct option *opt,4316const char*arg,int unset)4317{4318add_name_limit(arg,0);4319 has_include =1;4320return0;4321}43224323static intoption_parse_p(const struct option *opt,4324const char*arg,int unset)4325{4326 p_value =atoi(arg);4327 p_value_known =1;4328return0;4329}43304331static intoption_parse_z(const struct option *opt,4332const char*arg,int unset)4333{4334if(unset)4335 line_termination ='\n';4336else4337 line_termination =0;4338return0;4339}43404341static intoption_parse_space_change(const struct option *opt,4342const char*arg,int unset)4343{4344if(unset)4345 ws_ignore_action = ignore_ws_none;4346else4347 ws_ignore_action = ignore_ws_change;4348return0;4349}43504351static intoption_parse_whitespace(const struct option *opt,4352const char*arg,int unset)4353{4354const char**whitespace_option = opt->value;43554356*whitespace_option = arg;4357parse_whitespace_option(arg);4358return0;4359}43604361static intoption_parse_directory(const struct option *opt,4362const char*arg,int unset)4363{4364 root_len =strlen(arg);4365if(root_len && arg[root_len -1] !='/') {4366char*new_root;4367 root = new_root =xmalloc(root_len +2);4368strcpy(new_root, arg);4369strcpy(new_root + root_len++,"/");4370}else4371 root = arg;4372return0;4373}43744375intcmd_apply(int argc,const char**argv,const char*prefix_)4376{4377int i;4378int errs =0;4379int is_not_gitdir = !startup_info->have_repository;4380int force_apply =0;43814382const char*whitespace_option = NULL;43834384struct option builtin_apply_options[] = {4385{ OPTION_CALLBACK,0,"exclude", NULL,N_("path"),4386N_("don't apply changes matching the given path"),43870, option_parse_exclude },4388{ OPTION_CALLBACK,0,"include", NULL,N_("path"),4389N_("apply changes matching the given path"),43900, option_parse_include },4391{ OPTION_CALLBACK,'p', NULL, NULL,N_("num"),4392N_("remove <num> leading slashes from traditional diff paths"),43930, option_parse_p },4394OPT_BOOL(0,"no-add", &no_add,4395N_("ignore additions made by the patch")),4396OPT_BOOL(0,"stat", &diffstat,4397N_("instead of applying the patch, output diffstat for the input")),4398OPT_NOOP_NOARG(0,"allow-binary-replacement"),4399OPT_NOOP_NOARG(0,"binary"),4400OPT_BOOL(0,"numstat", &numstat,4401N_("show number of added and deleted lines in decimal notation")),4402OPT_BOOL(0,"summary", &summary,4403N_("instead of applying the patch, output a summary for the input")),4404OPT_BOOL(0,"check", &check,4405N_("instead of applying the patch, see if the patch is applicable")),4406OPT_BOOL(0,"index", &check_index,4407N_("make sure the patch is applicable to the current index")),4408OPT_BOOL(0,"cached", &cached,4409N_("apply a patch without touching the working tree")),4410OPT_BOOL(0,"apply", &force_apply,4411N_("also apply the patch (use with --stat/--summary/--check)")),4412OPT_BOOL('3',"3way", &threeway,4413N_("attempt three-way merge if a patch does not apply")),4414OPT_FILENAME(0,"build-fake-ancestor", &fake_ancestor,4415N_("build a temporary index based on embedded index information")),4416{ OPTION_CALLBACK,'z', NULL, NULL, NULL,4417N_("paths are separated with NUL character"),4418 PARSE_OPT_NOARG, option_parse_z },4419OPT_INTEGER('C', NULL, &p_context,4420N_("ensure at least <n> lines of context match")),4421{ OPTION_CALLBACK,0,"whitespace", &whitespace_option,N_("action"),4422N_("detect new or modified lines that have whitespace errors"),44230, option_parse_whitespace },4424{ OPTION_CALLBACK,0,"ignore-space-change", NULL, NULL,4425N_("ignore changes in whitespace when finding context"),4426 PARSE_OPT_NOARG, option_parse_space_change },4427{ OPTION_CALLBACK,0,"ignore-whitespace", NULL, NULL,4428N_("ignore changes in whitespace when finding context"),4429 PARSE_OPT_NOARG, option_parse_space_change },4430OPT_BOOL('R',"reverse", &apply_in_reverse,4431N_("apply the patch in reverse")),4432OPT_BOOL(0,"unidiff-zero", &unidiff_zero,4433N_("don't expect at least one line of context")),4434OPT_BOOL(0,"reject", &apply_with_reject,4435N_("leave the rejected hunks in corresponding *.rej files")),4436OPT_BOOL(0,"allow-overlap", &allow_overlap,4437N_("allow overlapping hunks")),4438OPT__VERBOSE(&apply_verbosely,N_("be verbose")),4439OPT_BIT(0,"inaccurate-eof", &options,4440N_("tolerate incorrectly detected missing new-line at the end of file"),4441 INACCURATE_EOF),4442OPT_BIT(0,"recount", &options,4443N_("do not trust the line counts in the hunk headers"),4444 RECOUNT),4445{ OPTION_CALLBACK,0,"directory", NULL,N_("root"),4446N_("prepend <root> to all filenames"),44470, option_parse_directory },4448OPT_END()4449};44504451 prefix = prefix_;4452 prefix_length = prefix ?strlen(prefix) :0;4453git_config(git_apply_config, NULL);4454if(apply_default_whitespace)4455parse_whitespace_option(apply_default_whitespace);4456if(apply_default_ignorewhitespace)4457parse_ignorewhitespace_option(apply_default_ignorewhitespace);44584459 argc =parse_options(argc, argv, prefix, builtin_apply_options,4460 apply_usage,0);44614462if(apply_with_reject && threeway)4463die("--reject and --3way cannot be used together.");4464if(cached && threeway)4465die("--cached and --3way cannot be used together.");4466if(threeway) {4467if(is_not_gitdir)4468die(_("--3way outside a repository"));4469 check_index =1;4470}4471if(apply_with_reject)4472 apply = apply_verbosely =1;4473if(!force_apply && (diffstat || numstat || summary || check || fake_ancestor))4474 apply =0;4475if(check_index && is_not_gitdir)4476die(_("--index outside a repository"));4477if(cached) {4478if(is_not_gitdir)4479die(_("--cached outside a repository"));4480 check_index =1;4481}4482for(i =0; i < argc; i++) {4483const char*arg = argv[i];4484int fd;44854486if(!strcmp(arg,"-")) {4487 errs |=apply_patch(0,"<stdin>", options);4488 read_stdin =0;4489continue;4490}else if(0< prefix_length)4491 arg =prefix_filename(prefix, prefix_length, arg);44924493 fd =open(arg, O_RDONLY);4494if(fd <0)4495die_errno(_("can't open patch '%s'"), arg);4496 read_stdin =0;4497set_default_whitespace_mode(whitespace_option);4498 errs |=apply_patch(fd, arg, options);4499close(fd);4500}4501set_default_whitespace_mode(whitespace_option);4502if(read_stdin)4503 errs |=apply_patch(0,"<stdin>", options);4504if(whitespace_error) {4505if(squelch_whitespace_errors &&4506 squelch_whitespace_errors < whitespace_error) {4507int squelched =4508 whitespace_error - squelch_whitespace_errors;4509warning(Q_("squelched%dwhitespace error",4510"squelched%dwhitespace errors",4511 squelched),4512 squelched);4513}4514if(ws_error_action == die_on_ws_error)4515die(Q_("%dline adds whitespace errors.",4516"%dlines add whitespace errors.",4517 whitespace_error),4518 whitespace_error);4519if(applied_after_fixing_ws && apply)4520warning("%dline%sapplied after"4521" fixing whitespace errors.",4522 applied_after_fixing_ws,4523 applied_after_fixing_ws ==1?"":"s");4524else if(whitespace_error)4525warning(Q_("%dline adds whitespace errors.",4526"%dlines add whitespace errors.",4527 whitespace_error),4528 whitespace_error);4529}45304531if(update_index) {4532if(write_cache(newfd, active_cache, active_nr) ||4533commit_locked_index(&lock_file))4534die(_("Unable to write new index file"));4535}45364537return!!errs;4538}