1/* 2 * apply.c 3 * 4 * Copyright (C) Linus Torvalds, 2005 5 * 6 * This applies patches on top of some (arbitrary) version of the SCM. 7 * 8 */ 9#include"cache.h" 10#include"lockfile.h" 11#include"cache-tree.h" 12#include"quote.h" 13#include"blob.h" 14#include"delta.h" 15#include"builtin.h" 16#include"string-list.h" 17#include"dir.h" 18#include"diff.h" 19#include"parse-options.h" 20#include"xdiff-interface.h" 21#include"ll-merge.h" 22#include"rerere.h" 23 24struct apply_state { 25const char*prefix; 26int prefix_length; 27 28/* These control what gets looked at and modified */ 29int apply;/* this is not a dry-run */ 30int cached;/* apply to the index only */ 31int check;/* preimage must match working tree, don't actually apply */ 32int check_index;/* preimage must match the indexed version */ 33int update_index;/* check_index && apply */ 34 35/* These control cosmetic aspect of the output */ 36int diffstat;/* just show a diffstat, and don't actually apply */ 37int numstat;/* just show a numeric diffstat, and don't actually apply */ 38int summary;/* just report creation, deletion, etc, and don't actually apply */ 39 40/* These boolean parameters control how the apply is done */ 41int allow_overlap; 42int apply_in_reverse; 43int apply_with_reject; 44int apply_verbosely; 45int no_add; 46int threeway; 47int unidiff_zero; 48int unsafe_paths; 49 50/* Other non boolean parameters */ 51const char*fake_ancestor; 52const char*patch_input_file; 53int line_termination; 54int p_value; 55unsigned int p_context; 56 57/* Exclude and include path parameters */ 58struct string_list limit_by_name; 59int has_include; 60}; 61 62static int newfd = -1; 63 64static int p_value_known; 65 66static const char*const apply_usage[] = { 67N_("git apply [<options>] [<patch>...]"), 68 NULL 69}; 70 71static enum ws_error_action { 72 nowarn_ws_error, 73 warn_on_ws_error, 74 die_on_ws_error, 75 correct_ws_error 76} ws_error_action = warn_on_ws_error; 77static int whitespace_error; 78static int squelch_whitespace_errors =5; 79static int applied_after_fixing_ws; 80 81static enum ws_ignore { 82 ignore_ws_none, 83 ignore_ws_change 84} ws_ignore_action = ignore_ws_none; 85 86 87static struct strbuf root = STRBUF_INIT; 88 89static voidparse_whitespace_option(const char*option) 90{ 91if(!option) { 92 ws_error_action = warn_on_ws_error; 93return; 94} 95if(!strcmp(option,"warn")) { 96 ws_error_action = warn_on_ws_error; 97return; 98} 99if(!strcmp(option,"nowarn")) { 100 ws_error_action = nowarn_ws_error; 101return; 102} 103if(!strcmp(option,"error")) { 104 ws_error_action = die_on_ws_error; 105return; 106} 107if(!strcmp(option,"error-all")) { 108 ws_error_action = die_on_ws_error; 109 squelch_whitespace_errors =0; 110return; 111} 112if(!strcmp(option,"strip") || !strcmp(option,"fix")) { 113 ws_error_action = correct_ws_error; 114return; 115} 116die(_("unrecognized whitespace option '%s'"), option); 117} 118 119static voidparse_ignorewhitespace_option(const char*option) 120{ 121if(!option || !strcmp(option,"no") || 122!strcmp(option,"false") || !strcmp(option,"never") || 123!strcmp(option,"none")) { 124 ws_ignore_action = ignore_ws_none; 125return; 126} 127if(!strcmp(option,"change")) { 128 ws_ignore_action = ignore_ws_change; 129return; 130} 131die(_("unrecognized whitespace ignore option '%s'"), option); 132} 133 134static voidset_default_whitespace_mode(struct apply_state *state, 135const char*whitespace_option) 136{ 137if(!whitespace_option && !apply_default_whitespace) 138 ws_error_action = (state->apply ? warn_on_ws_error : nowarn_ws_error); 139} 140 141/* 142 * For "diff-stat" like behaviour, we keep track of the biggest change 143 * we've seen, and the longest filename. That allows us to do simple 144 * scaling. 145 */ 146static int max_change, max_len; 147 148/* 149 * Various "current state", notably line numbers and what 150 * file (and how) we're patching right now.. The "is_xxxx" 151 * things are flags, where -1 means "don't know yet". 152 */ 153static int state_linenr =1; 154 155/* 156 * This represents one "hunk" from a patch, starting with 157 * "@@ -oldpos,oldlines +newpos,newlines @@" marker. The 158 * patch text is pointed at by patch, and its byte length 159 * is stored in size. leading and trailing are the number 160 * of context lines. 161 */ 162struct fragment { 163unsigned long leading, trailing; 164unsigned long oldpos, oldlines; 165unsigned long newpos, newlines; 166/* 167 * 'patch' is usually borrowed from buf in apply_patch(), 168 * but some codepaths store an allocated buffer. 169 */ 170const char*patch; 171unsigned free_patch:1, 172 rejected:1; 173int size; 174int linenr; 175struct fragment *next; 176}; 177 178/* 179 * When dealing with a binary patch, we reuse "leading" field 180 * to store the type of the binary hunk, either deflated "delta" 181 * or deflated "literal". 182 */ 183#define binary_patch_method leading 184#define BINARY_DELTA_DEFLATED 1 185#define BINARY_LITERAL_DEFLATED 2 186 187/* 188 * This represents a "patch" to a file, both metainfo changes 189 * such as creation/deletion, filemode and content changes represented 190 * as a series of fragments. 191 */ 192struct patch { 193char*new_name, *old_name, *def_name; 194unsigned int old_mode, new_mode; 195int is_new, is_delete;/* -1 = unknown, 0 = false, 1 = true */ 196int rejected; 197unsigned ws_rule; 198int lines_added, lines_deleted; 199int score; 200unsigned int is_toplevel_relative:1; 201unsigned int inaccurate_eof:1; 202unsigned int is_binary:1; 203unsigned int is_copy:1; 204unsigned int is_rename:1; 205unsigned int recount:1; 206unsigned int conflicted_threeway:1; 207unsigned int direct_to_threeway:1; 208struct fragment *fragments; 209char*result; 210size_t resultsize; 211char old_sha1_prefix[41]; 212char new_sha1_prefix[41]; 213struct patch *next; 214 215/* three-way fallback result */ 216struct object_id threeway_stage[3]; 217}; 218 219static voidfree_fragment_list(struct fragment *list) 220{ 221while(list) { 222struct fragment *next = list->next; 223if(list->free_patch) 224free((char*)list->patch); 225free(list); 226 list = next; 227} 228} 229 230static voidfree_patch(struct patch *patch) 231{ 232free_fragment_list(patch->fragments); 233free(patch->def_name); 234free(patch->old_name); 235free(patch->new_name); 236free(patch->result); 237free(patch); 238} 239 240static voidfree_patch_list(struct patch *list) 241{ 242while(list) { 243struct patch *next = list->next; 244free_patch(list); 245 list = next; 246} 247} 248 249/* 250 * A line in a file, len-bytes long (includes the terminating LF, 251 * except for an incomplete line at the end if the file ends with 252 * one), and its contents hashes to 'hash'. 253 */ 254struct line { 255size_t len; 256unsigned hash :24; 257unsigned flag :8; 258#define LINE_COMMON 1 259#define LINE_PATCHED 2 260}; 261 262/* 263 * This represents a "file", which is an array of "lines". 264 */ 265struct image { 266char*buf; 267size_t len; 268size_t nr; 269size_t alloc; 270struct line *line_allocated; 271struct line *line; 272}; 273 274/* 275 * Records filenames that have been touched, in order to handle 276 * the case where more than one patches touch the same file. 277 */ 278 279static struct string_list fn_table; 280 281static uint32_thash_line(const char*cp,size_t len) 282{ 283size_t i; 284uint32_t h; 285for(i =0, h =0; i < len; i++) { 286if(!isspace(cp[i])) { 287 h = h *3+ (cp[i] &0xff); 288} 289} 290return h; 291} 292 293/* 294 * Compare lines s1 of length n1 and s2 of length n2, ignoring 295 * whitespace difference. Returns 1 if they match, 0 otherwise 296 */ 297static intfuzzy_matchlines(const char*s1,size_t n1, 298const char*s2,size_t n2) 299{ 300const char*last1 = s1 + n1 -1; 301const char*last2 = s2 + n2 -1; 302int result =0; 303 304/* ignore line endings */ 305while((*last1 =='\r') || (*last1 =='\n')) 306 last1--; 307while((*last2 =='\r') || (*last2 =='\n')) 308 last2--; 309 310/* skip leading whitespaces, if both begin with whitespace */ 311if(s1 <= last1 && s2 <= last2 &&isspace(*s1) &&isspace(*s2)) { 312while(isspace(*s1) && (s1 <= last1)) 313 s1++; 314while(isspace(*s2) && (s2 <= last2)) 315 s2++; 316} 317/* early return if both lines are empty */ 318if((s1 > last1) && (s2 > last2)) 319return1; 320while(!result) { 321 result = *s1++ - *s2++; 322/* 323 * Skip whitespace inside. We check for whitespace on 324 * both buffers because we don't want "a b" to match 325 * "ab" 326 */ 327if(isspace(*s1) &&isspace(*s2)) { 328while(isspace(*s1) && s1 <= last1) 329 s1++; 330while(isspace(*s2) && s2 <= last2) 331 s2++; 332} 333/* 334 * If we reached the end on one side only, 335 * lines don't match 336 */ 337if( 338((s2 > last2) && (s1 <= last1)) || 339((s1 > last1) && (s2 <= last2))) 340return0; 341if((s1 > last1) && (s2 > last2)) 342break; 343} 344 345return!result; 346} 347 348static voidadd_line_info(struct image *img,const char*bol,size_t len,unsigned flag) 349{ 350ALLOC_GROW(img->line_allocated, img->nr +1, img->alloc); 351 img->line_allocated[img->nr].len = len; 352 img->line_allocated[img->nr].hash =hash_line(bol, len); 353 img->line_allocated[img->nr].flag = flag; 354 img->nr++; 355} 356 357/* 358 * "buf" has the file contents to be patched (read from various sources). 359 * attach it to "image" and add line-based index to it. 360 * "image" now owns the "buf". 361 */ 362static voidprepare_image(struct image *image,char*buf,size_t len, 363int prepare_linetable) 364{ 365const char*cp, *ep; 366 367memset(image,0,sizeof(*image)); 368 image->buf = buf; 369 image->len = len; 370 371if(!prepare_linetable) 372return; 373 374 ep = image->buf + image->len; 375 cp = image->buf; 376while(cp < ep) { 377const char*next; 378for(next = cp; next < ep && *next !='\n'; next++) 379; 380if(next < ep) 381 next++; 382add_line_info(image, cp, next - cp,0); 383 cp = next; 384} 385 image->line = image->line_allocated; 386} 387 388static voidclear_image(struct image *image) 389{ 390free(image->buf); 391free(image->line_allocated); 392memset(image,0,sizeof(*image)); 393} 394 395/* fmt must contain _one_ %s and no other substitution */ 396static voidsay_patch_name(FILE*output,const char*fmt,struct patch *patch) 397{ 398struct strbuf sb = STRBUF_INIT; 399 400if(patch->old_name && patch->new_name && 401strcmp(patch->old_name, patch->new_name)) { 402quote_c_style(patch->old_name, &sb, NULL,0); 403strbuf_addstr(&sb," => "); 404quote_c_style(patch->new_name, &sb, NULL,0); 405}else{ 406const char*n = patch->new_name; 407if(!n) 408 n = patch->old_name; 409quote_c_style(n, &sb, NULL,0); 410} 411fprintf(output, fmt, sb.buf); 412fputc('\n', output); 413strbuf_release(&sb); 414} 415 416#define SLOP (16) 417 418static voidread_patch_file(struct strbuf *sb,int fd) 419{ 420if(strbuf_read(sb, fd,0) <0) 421die_errno("git apply: failed to read"); 422 423/* 424 * Make sure that we have some slop in the buffer 425 * so that we can do speculative "memcmp" etc, and 426 * see to it that it is NUL-filled. 427 */ 428strbuf_grow(sb, SLOP); 429memset(sb->buf + sb->len,0, SLOP); 430} 431 432static unsigned longlinelen(const char*buffer,unsigned long size) 433{ 434unsigned long len =0; 435while(size--) { 436 len++; 437if(*buffer++ =='\n') 438break; 439} 440return len; 441} 442 443static intis_dev_null(const char*str) 444{ 445returnskip_prefix(str,"/dev/null", &str) &&isspace(*str); 446} 447 448#define TERM_SPACE 1 449#define TERM_TAB 2 450 451static intname_terminate(const char*name,int namelen,int c,int terminate) 452{ 453if(c ==' '&& !(terminate & TERM_SPACE)) 454return0; 455if(c =='\t'&& !(terminate & TERM_TAB)) 456return0; 457 458return1; 459} 460 461/* remove double slashes to make --index work with such filenames */ 462static char*squash_slash(char*name) 463{ 464int i =0, j =0; 465 466if(!name) 467return NULL; 468 469while(name[i]) { 470if((name[j++] = name[i++]) =='/') 471while(name[i] =='/') 472 i++; 473} 474 name[j] ='\0'; 475return name; 476} 477 478static char*find_name_gnu(const char*line,const char*def,int p_value) 479{ 480struct strbuf name = STRBUF_INIT; 481char*cp; 482 483/* 484 * Proposed "new-style" GNU patch/diff format; see 485 * http://marc.info/?l=git&m=112927316408690&w=2 486 */ 487if(unquote_c_style(&name, line, NULL)) { 488strbuf_release(&name); 489return NULL; 490} 491 492for(cp = name.buf; p_value; p_value--) { 493 cp =strchr(cp,'/'); 494if(!cp) { 495strbuf_release(&name); 496return NULL; 497} 498 cp++; 499} 500 501strbuf_remove(&name,0, cp - name.buf); 502if(root.len) 503strbuf_insert(&name,0, root.buf, root.len); 504returnsquash_slash(strbuf_detach(&name, NULL)); 505} 506 507static size_tsane_tz_len(const char*line,size_t len) 508{ 509const char*tz, *p; 510 511if(len <strlen(" +0500") || line[len-strlen(" +0500")] !=' ') 512return0; 513 tz = line + len -strlen(" +0500"); 514 515if(tz[1] !='+'&& tz[1] !='-') 516return0; 517 518for(p = tz +2; p != line + len; p++) 519if(!isdigit(*p)) 520return0; 521 522return line + len - tz; 523} 524 525static size_ttz_with_colon_len(const char*line,size_t len) 526{ 527const char*tz, *p; 528 529if(len <strlen(" +08:00") || line[len -strlen(":00")] !=':') 530return0; 531 tz = line + len -strlen(" +08:00"); 532 533if(tz[0] !=' '|| (tz[1] !='+'&& tz[1] !='-')) 534return0; 535 p = tz +2; 536if(!isdigit(*p++) || !isdigit(*p++) || *p++ !=':'|| 537!isdigit(*p++) || !isdigit(*p++)) 538return0; 539 540return line + len - tz; 541} 542 543static size_tdate_len(const char*line,size_t len) 544{ 545const char*date, *p; 546 547if(len <strlen("72-02-05") || line[len-strlen("-05")] !='-') 548return0; 549 p = date = line + len -strlen("72-02-05"); 550 551if(!isdigit(*p++) || !isdigit(*p++) || *p++ !='-'|| 552!isdigit(*p++) || !isdigit(*p++) || *p++ !='-'|| 553!isdigit(*p++) || !isdigit(*p++))/* Not a date. */ 554return0; 555 556if(date - line >=strlen("19") && 557isdigit(date[-1]) &&isdigit(date[-2]))/* 4-digit year */ 558 date -=strlen("19"); 559 560return line + len - date; 561} 562 563static size_tshort_time_len(const char*line,size_t len) 564{ 565const char*time, *p; 566 567if(len <strlen(" 07:01:32") || line[len-strlen(":32")] !=':') 568return0; 569 p = time = line + len -strlen(" 07:01:32"); 570 571/* Permit 1-digit hours? */ 572if(*p++ !=' '|| 573!isdigit(*p++) || !isdigit(*p++) || *p++ !=':'|| 574!isdigit(*p++) || !isdigit(*p++) || *p++ !=':'|| 575!isdigit(*p++) || !isdigit(*p++))/* Not a time. */ 576return0; 577 578return line + len - time; 579} 580 581static size_tfractional_time_len(const char*line,size_t len) 582{ 583const char*p; 584size_t n; 585 586/* Expected format: 19:41:17.620000023 */ 587if(!len || !isdigit(line[len -1])) 588return0; 589 p = line + len -1; 590 591/* Fractional seconds. */ 592while(p > line &&isdigit(*p)) 593 p--; 594if(*p !='.') 595return0; 596 597/* Hours, minutes, and whole seconds. */ 598 n =short_time_len(line, p - line); 599if(!n) 600return0; 601 602return line + len - p + n; 603} 604 605static size_ttrailing_spaces_len(const char*line,size_t len) 606{ 607const char*p; 608 609/* Expected format: ' ' x (1 or more) */ 610if(!len || line[len -1] !=' ') 611return0; 612 613 p = line + len; 614while(p != line) { 615 p--; 616if(*p !=' ') 617return line + len - (p +1); 618} 619 620/* All spaces! */ 621return len; 622} 623 624static size_tdiff_timestamp_len(const char*line,size_t len) 625{ 626const char*end = line + len; 627size_t n; 628 629/* 630 * Posix: 2010-07-05 19:41:17 631 * GNU: 2010-07-05 19:41:17.620000023 -0500 632 */ 633 634if(!isdigit(end[-1])) 635return0; 636 637 n =sane_tz_len(line, end - line); 638if(!n) 639 n =tz_with_colon_len(line, end - line); 640 end -= n; 641 642 n =short_time_len(line, end - line); 643if(!n) 644 n =fractional_time_len(line, end - line); 645 end -= n; 646 647 n =date_len(line, end - line); 648if(!n)/* No date. Too bad. */ 649return0; 650 end -= n; 651 652if(end == line)/* No space before date. */ 653return0; 654if(end[-1] =='\t') {/* Success! */ 655 end--; 656return line + len - end; 657} 658if(end[-1] !=' ')/* No space before date. */ 659return0; 660 661/* Whitespace damage. */ 662 end -=trailing_spaces_len(line, end - line); 663return line + len - end; 664} 665 666static char*find_name_common(const char*line,const char*def, 667int p_value,const char*end,int terminate) 668{ 669int len; 670const char*start = NULL; 671 672if(p_value ==0) 673 start = line; 674while(line != end) { 675char c = *line; 676 677if(!end &&isspace(c)) { 678if(c =='\n') 679break; 680if(name_terminate(start, line-start, c, terminate)) 681break; 682} 683 line++; 684if(c =='/'&& !--p_value) 685 start = line; 686} 687if(!start) 688returnsquash_slash(xstrdup_or_null(def)); 689 len = line - start; 690if(!len) 691returnsquash_slash(xstrdup_or_null(def)); 692 693/* 694 * Generally we prefer the shorter name, especially 695 * if the other one is just a variation of that with 696 * something else tacked on to the end (ie "file.orig" 697 * or "file~"). 698 */ 699if(def) { 700int deflen =strlen(def); 701if(deflen < len && !strncmp(start, def, deflen)) 702returnsquash_slash(xstrdup(def)); 703} 704 705if(root.len) { 706char*ret =xstrfmt("%s%.*s", root.buf, len, start); 707returnsquash_slash(ret); 708} 709 710returnsquash_slash(xmemdupz(start, len)); 711} 712 713static char*find_name(const char*line,char*def,int p_value,int terminate) 714{ 715if(*line =='"') { 716char*name =find_name_gnu(line, def, p_value); 717if(name) 718return name; 719} 720 721returnfind_name_common(line, def, p_value, NULL, terminate); 722} 723 724static char*find_name_traditional(const char*line,char*def,int p_value) 725{ 726size_t len; 727size_t date_len; 728 729if(*line =='"') { 730char*name =find_name_gnu(line, def, p_value); 731if(name) 732return name; 733} 734 735 len =strchrnul(line,'\n') - line; 736 date_len =diff_timestamp_len(line, len); 737if(!date_len) 738returnfind_name_common(line, def, p_value, NULL, TERM_TAB); 739 len -= date_len; 740 741returnfind_name_common(line, def, p_value, line + len,0); 742} 743 744static intcount_slashes(const char*cp) 745{ 746int cnt =0; 747char ch; 748 749while((ch = *cp++)) 750if(ch =='/') 751 cnt++; 752return cnt; 753} 754 755/* 756 * Given the string after "--- " or "+++ ", guess the appropriate 757 * p_value for the given patch. 758 */ 759static intguess_p_value(struct apply_state *state,const char*nameline) 760{ 761char*name, *cp; 762int val = -1; 763 764if(is_dev_null(nameline)) 765return-1; 766 name =find_name_traditional(nameline, NULL,0); 767if(!name) 768return-1; 769 cp =strchr(name,'/'); 770if(!cp) 771 val =0; 772else if(state->prefix) { 773/* 774 * Does it begin with "a/$our-prefix" and such? Then this is 775 * very likely to apply to our directory. 776 */ 777if(!strncmp(name, state->prefix, state->prefix_length)) 778 val =count_slashes(state->prefix); 779else{ 780 cp++; 781if(!strncmp(cp, state->prefix, state->prefix_length)) 782 val =count_slashes(state->prefix) +1; 783} 784} 785free(name); 786return val; 787} 788 789/* 790 * Does the ---/+++ line have the POSIX timestamp after the last HT? 791 * GNU diff puts epoch there to signal a creation/deletion event. Is 792 * this such a timestamp? 793 */ 794static inthas_epoch_timestamp(const char*nameline) 795{ 796/* 797 * We are only interested in epoch timestamp; any non-zero 798 * fraction cannot be one, hence "(\.0+)?" in the regexp below. 799 * For the same reason, the date must be either 1969-12-31 or 800 * 1970-01-01, and the seconds part must be "00". 801 */ 802const char stamp_regexp[] = 803"^(1969-12-31|1970-01-01)" 804" " 805"[0-2][0-9]:[0-5][0-9]:00(\\.0+)?" 806" " 807"([-+][0-2][0-9]:?[0-5][0-9])\n"; 808const char*timestamp = NULL, *cp, *colon; 809static regex_t *stamp; 810 regmatch_t m[10]; 811int zoneoffset; 812int hourminute; 813int status; 814 815for(cp = nameline; *cp !='\n'; cp++) { 816if(*cp =='\t') 817 timestamp = cp +1; 818} 819if(!timestamp) 820return0; 821if(!stamp) { 822 stamp =xmalloc(sizeof(*stamp)); 823if(regcomp(stamp, stamp_regexp, REG_EXTENDED)) { 824warning(_("Cannot prepare timestamp regexp%s"), 825 stamp_regexp); 826return0; 827} 828} 829 830 status =regexec(stamp, timestamp,ARRAY_SIZE(m), m,0); 831if(status) { 832if(status != REG_NOMATCH) 833warning(_("regexec returned%dfor input:%s"), 834 status, timestamp); 835return0; 836} 837 838 zoneoffset =strtol(timestamp + m[3].rm_so +1, (char**) &colon,10); 839if(*colon ==':') 840 zoneoffset = zoneoffset *60+strtol(colon +1, NULL,10); 841else 842 zoneoffset = (zoneoffset /100) *60+ (zoneoffset %100); 843if(timestamp[m[3].rm_so] =='-') 844 zoneoffset = -zoneoffset; 845 846/* 847 * YYYY-MM-DD hh:mm:ss must be from either 1969-12-31 848 * (west of GMT) or 1970-01-01 (east of GMT) 849 */ 850if((zoneoffset <0&&memcmp(timestamp,"1969-12-31",10)) || 851(0<= zoneoffset &&memcmp(timestamp,"1970-01-01",10))) 852return0; 853 854 hourminute = (strtol(timestamp +11, NULL,10) *60+ 855strtol(timestamp +14, NULL,10) - 856 zoneoffset); 857 858return((zoneoffset <0&& hourminute ==1440) || 859(0<= zoneoffset && !hourminute)); 860} 861 862/* 863 * Get the name etc info from the ---/+++ lines of a traditional patch header 864 * 865 * FIXME! The end-of-filename heuristics are kind of screwy. For existing 866 * files, we can happily check the index for a match, but for creating a 867 * new file we should try to match whatever "patch" does. I have no idea. 868 */ 869static voidparse_traditional_patch(struct apply_state *state, 870const char*first, 871const char*second, 872struct patch *patch) 873{ 874char*name; 875 876 first +=4;/* skip "--- " */ 877 second +=4;/* skip "+++ " */ 878if(!p_value_known) { 879int p, q; 880 p =guess_p_value(state, first); 881 q =guess_p_value(state, second); 882if(p <0) p = q; 883if(0<= p && p == q) { 884 state->p_value = p; 885 p_value_known =1; 886} 887} 888if(is_dev_null(first)) { 889 patch->is_new =1; 890 patch->is_delete =0; 891 name =find_name_traditional(second, NULL, state->p_value); 892 patch->new_name = name; 893}else if(is_dev_null(second)) { 894 patch->is_new =0; 895 patch->is_delete =1; 896 name =find_name_traditional(first, NULL, state->p_value); 897 patch->old_name = name; 898}else{ 899char*first_name; 900 first_name =find_name_traditional(first, NULL, state->p_value); 901 name =find_name_traditional(second, first_name, state->p_value); 902free(first_name); 903if(has_epoch_timestamp(first)) { 904 patch->is_new =1; 905 patch->is_delete =0; 906 patch->new_name = name; 907}else if(has_epoch_timestamp(second)) { 908 patch->is_new =0; 909 patch->is_delete =1; 910 patch->old_name = name; 911}else{ 912 patch->old_name = name; 913 patch->new_name =xstrdup_or_null(name); 914} 915} 916if(!name) 917die(_("unable to find filename in patch at line%d"), state_linenr); 918} 919 920static intgitdiff_hdrend(struct apply_state *state, 921const char*line, 922struct patch *patch) 923{ 924return-1; 925} 926 927/* 928 * We're anal about diff header consistency, to make 929 * sure that we don't end up having strange ambiguous 930 * patches floating around. 931 * 932 * As a result, gitdiff_{old|new}name() will check 933 * their names against any previous information, just 934 * to make sure.. 935 */ 936#define DIFF_OLD_NAME 0 937#define DIFF_NEW_NAME 1 938 939static voidgitdiff_verify_name(struct apply_state *state, 940const char*line, 941int isnull, 942char**name, 943int side) 944{ 945if(!*name && !isnull) { 946*name =find_name(line, NULL, state->p_value, TERM_TAB); 947return; 948} 949 950if(*name) { 951int len =strlen(*name); 952char*another; 953if(isnull) 954die(_("git apply: bad git-diff - expected /dev/null, got%son line%d"), 955*name, state_linenr); 956 another =find_name(line, NULL, state->p_value, TERM_TAB); 957if(!another ||memcmp(another, *name, len +1)) 958die((side == DIFF_NEW_NAME) ? 959_("git apply: bad git-diff - inconsistent new filename on line%d") : 960_("git apply: bad git-diff - inconsistent old filename on line%d"), state_linenr); 961free(another); 962}else{ 963/* expect "/dev/null" */ 964if(memcmp("/dev/null", line,9) || line[9] !='\n') 965die(_("git apply: bad git-diff - expected /dev/null on line%d"), state_linenr); 966} 967} 968 969static intgitdiff_oldname(struct apply_state *state, 970const char*line, 971struct patch *patch) 972{ 973gitdiff_verify_name(state, line, 974 patch->is_new, &patch->old_name, 975 DIFF_OLD_NAME); 976return0; 977} 978 979static intgitdiff_newname(struct apply_state *state, 980const char*line, 981struct patch *patch) 982{ 983gitdiff_verify_name(state, line, 984 patch->is_delete, &patch->new_name, 985 DIFF_NEW_NAME); 986return0; 987} 988 989static intgitdiff_oldmode(struct apply_state *state, 990const char*line, 991struct patch *patch) 992{ 993 patch->old_mode =strtoul(line, NULL,8); 994return0; 995} 996 997static intgitdiff_newmode(struct apply_state *state, 998const char*line, 999struct patch *patch)1000{1001 patch->new_mode =strtoul(line, NULL,8);1002return0;1003}10041005static intgitdiff_delete(struct apply_state *state,1006const char*line,1007struct patch *patch)1008{1009 patch->is_delete =1;1010free(patch->old_name);1011 patch->old_name =xstrdup_or_null(patch->def_name);1012returngitdiff_oldmode(state, line, patch);1013}10141015static intgitdiff_newfile(struct apply_state *state,1016const char*line,1017struct patch *patch)1018{1019 patch->is_new =1;1020free(patch->new_name);1021 patch->new_name =xstrdup_or_null(patch->def_name);1022returngitdiff_newmode(state, line, patch);1023}10241025static intgitdiff_copysrc(struct apply_state *state,1026const char*line,1027struct patch *patch)1028{1029 patch->is_copy =1;1030free(patch->old_name);1031 patch->old_name =find_name(line, NULL, state->p_value ? state->p_value -1:0,0);1032return0;1033}10341035static intgitdiff_copydst(struct apply_state *state,1036const char*line,1037struct patch *patch)1038{1039 patch->is_copy =1;1040free(patch->new_name);1041 patch->new_name =find_name(line, NULL, state->p_value ? state->p_value -1:0,0);1042return0;1043}10441045static intgitdiff_renamesrc(struct apply_state *state,1046const char*line,1047struct patch *patch)1048{1049 patch->is_rename =1;1050free(patch->old_name);1051 patch->old_name =find_name(line, NULL, state->p_value ? state->p_value -1:0,0);1052return0;1053}10541055static intgitdiff_renamedst(struct apply_state *state,1056const char*line,1057struct patch *patch)1058{1059 patch->is_rename =1;1060free(patch->new_name);1061 patch->new_name =find_name(line, NULL, state->p_value ? state->p_value -1:0,0);1062return0;1063}10641065static intgitdiff_similarity(struct apply_state *state,1066const char*line,1067struct patch *patch)1068{1069unsigned long val =strtoul(line, NULL,10);1070if(val <=100)1071 patch->score = val;1072return0;1073}10741075static intgitdiff_dissimilarity(struct apply_state *state,1076const char*line,1077struct patch *patch)1078{1079unsigned long val =strtoul(line, NULL,10);1080if(val <=100)1081 patch->score = val;1082return0;1083}10841085static intgitdiff_index(struct apply_state *state,1086const char*line,1087struct patch *patch)1088{1089/*1090 * index line is N hexadecimal, "..", N hexadecimal,1091 * and optional space with octal mode.1092 */1093const char*ptr, *eol;1094int len;10951096 ptr =strchr(line,'.');1097if(!ptr || ptr[1] !='.'||40< ptr - line)1098return0;1099 len = ptr - line;1100memcpy(patch->old_sha1_prefix, line, len);1101 patch->old_sha1_prefix[len] =0;11021103 line = ptr +2;1104 ptr =strchr(line,' ');1105 eol =strchrnul(line,'\n');11061107if(!ptr || eol < ptr)1108 ptr = eol;1109 len = ptr - line;11101111if(40< len)1112return0;1113memcpy(patch->new_sha1_prefix, line, len);1114 patch->new_sha1_prefix[len] =0;1115if(*ptr ==' ')1116 patch->old_mode =strtoul(ptr+1, NULL,8);1117return0;1118}11191120/*1121 * This is normal for a diff that doesn't change anything: we'll fall through1122 * into the next diff. Tell the parser to break out.1123 */1124static intgitdiff_unrecognized(struct apply_state *state,1125const char*line,1126struct patch *patch)1127{1128return-1;1129}11301131/*1132 * Skip p_value leading components from "line"; as we do not accept1133 * absolute paths, return NULL in that case.1134 */1135static const char*skip_tree_prefix(struct apply_state *state,1136const char*line,1137int llen)1138{1139int nslash;1140int i;11411142if(!state->p_value)1143return(llen && line[0] =='/') ? NULL : line;11441145 nslash = state->p_value;1146for(i =0; i < llen; i++) {1147int ch = line[i];1148if(ch =='/'&& --nslash <=0)1149return(i ==0) ? NULL : &line[i +1];1150}1151return NULL;1152}11531154/*1155 * This is to extract the same name that appears on "diff --git"1156 * line. We do not find and return anything if it is a rename1157 * patch, and it is OK because we will find the name elsewhere.1158 * We need to reliably find name only when it is mode-change only,1159 * creation or deletion of an empty file. In any of these cases,1160 * both sides are the same name under a/ and b/ respectively.1161 */1162static char*git_header_name(struct apply_state *state,1163const char*line,1164int llen)1165{1166const char*name;1167const char*second = NULL;1168size_t len, line_len;11691170 line +=strlen("diff --git ");1171 llen -=strlen("diff --git ");11721173if(*line =='"') {1174const char*cp;1175struct strbuf first = STRBUF_INIT;1176struct strbuf sp = STRBUF_INIT;11771178if(unquote_c_style(&first, line, &second))1179goto free_and_fail1;11801181/* strip the a/b prefix including trailing slash */1182 cp =skip_tree_prefix(state, first.buf, first.len);1183if(!cp)1184goto free_and_fail1;1185strbuf_remove(&first,0, cp - first.buf);11861187/*1188 * second points at one past closing dq of name.1189 * find the second name.1190 */1191while((second < line + llen) &&isspace(*second))1192 second++;11931194if(line + llen <= second)1195goto free_and_fail1;1196if(*second =='"') {1197if(unquote_c_style(&sp, second, NULL))1198goto free_and_fail1;1199 cp =skip_tree_prefix(state, sp.buf, sp.len);1200if(!cp)1201goto free_and_fail1;1202/* They must match, otherwise ignore */1203if(strcmp(cp, first.buf))1204goto free_and_fail1;1205strbuf_release(&sp);1206returnstrbuf_detach(&first, NULL);1207}12081209/* unquoted second */1210 cp =skip_tree_prefix(state, second, line + llen - second);1211if(!cp)1212goto free_and_fail1;1213if(line + llen - cp != first.len ||1214memcmp(first.buf, cp, first.len))1215goto free_and_fail1;1216returnstrbuf_detach(&first, NULL);12171218 free_and_fail1:1219strbuf_release(&first);1220strbuf_release(&sp);1221return NULL;1222}12231224/* unquoted first name */1225 name =skip_tree_prefix(state, line, llen);1226if(!name)1227return NULL;12281229/*1230 * since the first name is unquoted, a dq if exists must be1231 * the beginning of the second name.1232 */1233for(second = name; second < line + llen; second++) {1234if(*second =='"') {1235struct strbuf sp = STRBUF_INIT;1236const char*np;12371238if(unquote_c_style(&sp, second, NULL))1239goto free_and_fail2;12401241 np =skip_tree_prefix(state, sp.buf, sp.len);1242if(!np)1243goto free_and_fail2;12441245 len = sp.buf + sp.len - np;1246if(len < second - name &&1247!strncmp(np, name, len) &&1248isspace(name[len])) {1249/* Good */1250strbuf_remove(&sp,0, np - sp.buf);1251returnstrbuf_detach(&sp, NULL);1252}12531254 free_and_fail2:1255strbuf_release(&sp);1256return NULL;1257}1258}12591260/*1261 * Accept a name only if it shows up twice, exactly the same1262 * form.1263 */1264 second =strchr(name,'\n');1265if(!second)1266return NULL;1267 line_len = second - name;1268for(len =0; ; len++) {1269switch(name[len]) {1270default:1271continue;1272case'\n':1273return NULL;1274case'\t':case' ':1275/*1276 * Is this the separator between the preimage1277 * and the postimage pathname? Again, we are1278 * only interested in the case where there is1279 * no rename, as this is only to set def_name1280 * and a rename patch has the names elsewhere1281 * in an unambiguous form.1282 */1283if(!name[len +1])1284return NULL;/* no postimage name */1285 second =skip_tree_prefix(state, name + len +1,1286 line_len - (len +1));1287if(!second)1288return NULL;1289/*1290 * Does len bytes starting at "name" and "second"1291 * (that are separated by one HT or SP we just1292 * found) exactly match?1293 */1294if(second[len] =='\n'&& !strncmp(name, second, len))1295returnxmemdupz(name, len);1296}1297}1298}12991300/* Verify that we recognize the lines following a git header */1301static intparse_git_header(struct apply_state *state,1302const char*line,1303int len,1304unsigned int size,1305struct patch *patch)1306{1307unsigned long offset;13081309/* A git diff has explicit new/delete information, so we don't guess */1310 patch->is_new =0;1311 patch->is_delete =0;13121313/*1314 * Some things may not have the old name in the1315 * rest of the headers anywhere (pure mode changes,1316 * or removing or adding empty files), so we get1317 * the default name from the header.1318 */1319 patch->def_name =git_header_name(state, line, len);1320if(patch->def_name && root.len) {1321char*s =xstrfmt("%s%s", root.buf, patch->def_name);1322free(patch->def_name);1323 patch->def_name = s;1324}13251326 line += len;1327 size -= len;1328 state_linenr++;1329for(offset = len ; size >0; offset += len, size -= len, line += len, state_linenr++) {1330static const struct opentry {1331const char*str;1332int(*fn)(struct apply_state *,const char*,struct patch *);1333} optable[] = {1334{"@@ -", gitdiff_hdrend },1335{"--- ", gitdiff_oldname },1336{"+++ ", gitdiff_newname },1337{"old mode ", gitdiff_oldmode },1338{"new mode ", gitdiff_newmode },1339{"deleted file mode ", gitdiff_delete },1340{"new file mode ", gitdiff_newfile },1341{"copy from ", gitdiff_copysrc },1342{"copy to ", gitdiff_copydst },1343{"rename old ", gitdiff_renamesrc },1344{"rename new ", gitdiff_renamedst },1345{"rename from ", gitdiff_renamesrc },1346{"rename to ", gitdiff_renamedst },1347{"similarity index ", gitdiff_similarity },1348{"dissimilarity index ", gitdiff_dissimilarity },1349{"index ", gitdiff_index },1350{"", gitdiff_unrecognized },1351};1352int i;13531354 len =linelen(line, size);1355if(!len || line[len-1] !='\n')1356break;1357for(i =0; i <ARRAY_SIZE(optable); i++) {1358const struct opentry *p = optable + i;1359int oplen =strlen(p->str);1360if(len < oplen ||memcmp(p->str, line, oplen))1361continue;1362if(p->fn(state, line + oplen, patch) <0)1363return offset;1364break;1365}1366}13671368return offset;1369}13701371static intparse_num(const char*line,unsigned long*p)1372{1373char*ptr;13741375if(!isdigit(*line))1376return0;1377*p =strtoul(line, &ptr,10);1378return ptr - line;1379}13801381static intparse_range(const char*line,int len,int offset,const char*expect,1382unsigned long*p1,unsigned long*p2)1383{1384int digits, ex;13851386if(offset <0|| offset >= len)1387return-1;1388 line += offset;1389 len -= offset;13901391 digits =parse_num(line, p1);1392if(!digits)1393return-1;13941395 offset += digits;1396 line += digits;1397 len -= digits;13981399*p2 =1;1400if(*line ==',') {1401 digits =parse_num(line+1, p2);1402if(!digits)1403return-1;14041405 offset += digits+1;1406 line += digits+1;1407 len -= digits+1;1408}14091410 ex =strlen(expect);1411if(ex > len)1412return-1;1413if(memcmp(line, expect, ex))1414return-1;14151416return offset + ex;1417}14181419static voidrecount_diff(const char*line,int size,struct fragment *fragment)1420{1421int oldlines =0, newlines =0, ret =0;14221423if(size <1) {1424warning("recount: ignore empty hunk");1425return;1426}14271428for(;;) {1429int len =linelen(line, size);1430 size -= len;1431 line += len;14321433if(size <1)1434break;14351436switch(*line) {1437case' ':case'\n':1438 newlines++;1439/* fall through */1440case'-':1441 oldlines++;1442continue;1443case'+':1444 newlines++;1445continue;1446case'\\':1447continue;1448case'@':1449 ret = size <3|| !starts_with(line,"@@ ");1450break;1451case'd':1452 ret = size <5|| !starts_with(line,"diff ");1453break;1454default:1455 ret = -1;1456break;1457}1458if(ret) {1459warning(_("recount: unexpected line: %.*s"),1460(int)linelen(line, size), line);1461return;1462}1463break;1464}1465 fragment->oldlines = oldlines;1466 fragment->newlines = newlines;1467}14681469/*1470 * Parse a unified diff fragment header of the1471 * form "@@ -a,b +c,d @@"1472 */1473static intparse_fragment_header(const char*line,int len,struct fragment *fragment)1474{1475int offset;14761477if(!len || line[len-1] !='\n')1478return-1;14791480/* Figure out the number of lines in a fragment */1481 offset =parse_range(line, len,4," +", &fragment->oldpos, &fragment->oldlines);1482 offset =parse_range(line, len, offset," @@", &fragment->newpos, &fragment->newlines);14831484return offset;1485}14861487static intfind_header(struct apply_state *state,1488const char*line,1489unsigned long size,1490int*hdrsize,1491struct patch *patch)1492{1493unsigned long offset, len;14941495 patch->is_toplevel_relative =0;1496 patch->is_rename = patch->is_copy =0;1497 patch->is_new = patch->is_delete = -1;1498 patch->old_mode = patch->new_mode =0;1499 patch->old_name = patch->new_name = NULL;1500for(offset =0; size >0; offset += len, size -= len, line += len, state_linenr++) {1501unsigned long nextlen;15021503 len =linelen(line, size);1504if(!len)1505break;15061507/* Testing this early allows us to take a few shortcuts.. */1508if(len <6)1509continue;15101511/*1512 * Make sure we don't find any unconnected patch fragments.1513 * That's a sign that we didn't find a header, and that a1514 * patch has become corrupted/broken up.1515 */1516if(!memcmp("@@ -", line,4)) {1517struct fragment dummy;1518if(parse_fragment_header(line, len, &dummy) <0)1519continue;1520die(_("patch fragment without header at line%d: %.*s"),1521 state_linenr, (int)len-1, line);1522}15231524if(size < len +6)1525break;15261527/*1528 * Git patch? It might not have a real patch, just a rename1529 * or mode change, so we handle that specially1530 */1531if(!memcmp("diff --git ", line,11)) {1532int git_hdr_len =parse_git_header(state, line, len, size, patch);1533if(git_hdr_len <= len)1534continue;1535if(!patch->old_name && !patch->new_name) {1536if(!patch->def_name)1537die(Q_("git diff header lacks filename information when removing "1538"%dleading pathname component (line%d)",1539"git diff header lacks filename information when removing "1540"%dleading pathname components (line%d)",1541 state->p_value),1542 state->p_value, state_linenr);1543 patch->old_name =xstrdup(patch->def_name);1544 patch->new_name =xstrdup(patch->def_name);1545}1546if(!patch->is_delete && !patch->new_name)1547die("git diff header lacks filename information "1548"(line%d)", state_linenr);1549 patch->is_toplevel_relative =1;1550*hdrsize = git_hdr_len;1551return offset;1552}15531554/* --- followed by +++ ? */1555if(memcmp("--- ", line,4) ||memcmp("+++ ", line + len,4))1556continue;15571558/*1559 * We only accept unified patches, so we want it to1560 * at least have "@@ -a,b +c,d @@\n", which is 14 chars1561 * minimum ("@@ -0,0 +1 @@\n" is the shortest).1562 */1563 nextlen =linelen(line + len, size - len);1564if(size < nextlen +14||memcmp("@@ -", line + len + nextlen,4))1565continue;15661567/* Ok, we'll consider it a patch */1568parse_traditional_patch(state, line, line+len, patch);1569*hdrsize = len + nextlen;1570 state_linenr +=2;1571return offset;1572}1573return-1;1574}15751576static voidrecord_ws_error(struct apply_state *state,1577unsigned result,1578const char*line,1579int len,1580int linenr)1581{1582char*err;15831584if(!result)1585return;15861587 whitespace_error++;1588if(squelch_whitespace_errors &&1589 squelch_whitespace_errors < whitespace_error)1590return;15911592 err =whitespace_error_string(result);1593fprintf(stderr,"%s:%d:%s.\n%.*s\n",1594 state->patch_input_file, linenr, err, len, line);1595free(err);1596}15971598static voidcheck_whitespace(struct apply_state *state,1599const char*line,1600int len,1601unsigned ws_rule)1602{1603unsigned result =ws_check(line +1, len -1, ws_rule);16041605record_ws_error(state, result, line +1, len -2, state_linenr);1606}16071608/*1609 * Parse a unified diff. Note that this really needs to parse each1610 * fragment separately, since the only way to know the difference1611 * between a "---" that is part of a patch, and a "---" that starts1612 * the next patch is to look at the line counts..1613 */1614static intparse_fragment(struct apply_state *state,1615const char*line,1616unsigned long size,1617struct patch *patch,1618struct fragment *fragment)1619{1620int added, deleted;1621int len =linelen(line, size), offset;1622unsigned long oldlines, newlines;1623unsigned long leading, trailing;16241625 offset =parse_fragment_header(line, len, fragment);1626if(offset <0)1627return-1;1628if(offset >0&& patch->recount)1629recount_diff(line + offset, size - offset, fragment);1630 oldlines = fragment->oldlines;1631 newlines = fragment->newlines;1632 leading =0;1633 trailing =0;16341635/* Parse the thing.. */1636 line += len;1637 size -= len;1638 state_linenr++;1639 added = deleted =0;1640for(offset = len;16410< size;1642 offset += len, size -= len, line += len, state_linenr++) {1643if(!oldlines && !newlines)1644break;1645 len =linelen(line, size);1646if(!len || line[len-1] !='\n')1647return-1;1648switch(*line) {1649default:1650return-1;1651case'\n':/* newer GNU diff, an empty context line */1652case' ':1653 oldlines--;1654 newlines--;1655if(!deleted && !added)1656 leading++;1657 trailing++;1658if(!state->apply_in_reverse &&1659 ws_error_action == correct_ws_error)1660check_whitespace(state, line, len, patch->ws_rule);1661break;1662case'-':1663if(state->apply_in_reverse &&1664 ws_error_action != nowarn_ws_error)1665check_whitespace(state, line, len, patch->ws_rule);1666 deleted++;1667 oldlines--;1668 trailing =0;1669break;1670case'+':1671if(!state->apply_in_reverse &&1672 ws_error_action != nowarn_ws_error)1673check_whitespace(state, line, len, patch->ws_rule);1674 added++;1675 newlines--;1676 trailing =0;1677break;16781679/*1680 * We allow "\ No newline at end of file". Depending1681 * on locale settings when the patch was produced we1682 * don't know what this line looks like. The only1683 * thing we do know is that it begins with "\ ".1684 * Checking for 12 is just for sanity check -- any1685 * l10n of "\ No newline..." is at least that long.1686 */1687case'\\':1688if(len <12||memcmp(line,"\\",2))1689return-1;1690break;1691}1692}1693if(oldlines || newlines)1694return-1;1695if(!deleted && !added)1696return-1;16971698 fragment->leading = leading;1699 fragment->trailing = trailing;17001701/*1702 * If a fragment ends with an incomplete line, we failed to include1703 * it in the above loop because we hit oldlines == newlines == 01704 * before seeing it.1705 */1706if(12< size && !memcmp(line,"\\",2))1707 offset +=linelen(line, size);17081709 patch->lines_added += added;1710 patch->lines_deleted += deleted;17111712if(0< patch->is_new && oldlines)1713returnerror(_("new file depends on old contents"));1714if(0< patch->is_delete && newlines)1715returnerror(_("deleted file still has contents"));1716return offset;1717}17181719/*1720 * We have seen "diff --git a/... b/..." header (or a traditional patch1721 * header). Read hunks that belong to this patch into fragments and hang1722 * them to the given patch structure.1723 *1724 * The (fragment->patch, fragment->size) pair points into the memory given1725 * by the caller, not a copy, when we return.1726 */1727static intparse_single_patch(struct apply_state *state,1728const char*line,1729unsigned long size,1730struct patch *patch)1731{1732unsigned long offset =0;1733unsigned long oldlines =0, newlines =0, context =0;1734struct fragment **fragp = &patch->fragments;17351736while(size >4&& !memcmp(line,"@@ -",4)) {1737struct fragment *fragment;1738int len;17391740 fragment =xcalloc(1,sizeof(*fragment));1741 fragment->linenr = state_linenr;1742 len =parse_fragment(state, line, size, patch, fragment);1743if(len <=0)1744die(_("corrupt patch at line%d"), state_linenr);1745 fragment->patch = line;1746 fragment->size = len;1747 oldlines += fragment->oldlines;1748 newlines += fragment->newlines;1749 context += fragment->leading + fragment->trailing;17501751*fragp = fragment;1752 fragp = &fragment->next;17531754 offset += len;1755 line += len;1756 size -= len;1757}17581759/*1760 * If something was removed (i.e. we have old-lines) it cannot1761 * be creation, and if something was added it cannot be1762 * deletion. However, the reverse is not true; --unified=01763 * patches that only add are not necessarily creation even1764 * though they do not have any old lines, and ones that only1765 * delete are not necessarily deletion.1766 *1767 * Unfortunately, a real creation/deletion patch do _not_ have1768 * any context line by definition, so we cannot safely tell it1769 * apart with --unified=0 insanity. At least if the patch has1770 * more than one hunk it is not creation or deletion.1771 */1772if(patch->is_new <0&&1773(oldlines || (patch->fragments && patch->fragments->next)))1774 patch->is_new =0;1775if(patch->is_delete <0&&1776(newlines || (patch->fragments && patch->fragments->next)))1777 patch->is_delete =0;17781779if(0< patch->is_new && oldlines)1780die(_("new file%sdepends on old contents"), patch->new_name);1781if(0< patch->is_delete && newlines)1782die(_("deleted file%sstill has contents"), patch->old_name);1783if(!patch->is_delete && !newlines && context)1784fprintf_ln(stderr,1785_("** warning: "1786"file%sbecomes empty but is not deleted"),1787 patch->new_name);17881789return offset;1790}17911792staticinlineintmetadata_changes(struct patch *patch)1793{1794return patch->is_rename >0||1795 patch->is_copy >0||1796 patch->is_new >0||1797 patch->is_delete ||1798(patch->old_mode && patch->new_mode &&1799 patch->old_mode != patch->new_mode);1800}18011802static char*inflate_it(const void*data,unsigned long size,1803unsigned long inflated_size)1804{1805 git_zstream stream;1806void*out;1807int st;18081809memset(&stream,0,sizeof(stream));18101811 stream.next_in = (unsigned char*)data;1812 stream.avail_in = size;1813 stream.next_out = out =xmalloc(inflated_size);1814 stream.avail_out = inflated_size;1815git_inflate_init(&stream);1816 st =git_inflate(&stream, Z_FINISH);1817git_inflate_end(&stream);1818if((st != Z_STREAM_END) || stream.total_out != inflated_size) {1819free(out);1820return NULL;1821}1822return out;1823}18241825/*1826 * Read a binary hunk and return a new fragment; fragment->patch1827 * points at an allocated memory that the caller must free, so1828 * it is marked as "->free_patch = 1".1829 */1830static struct fragment *parse_binary_hunk(char**buf_p,1831unsigned long*sz_p,1832int*status_p,1833int*used_p)1834{1835/*1836 * Expect a line that begins with binary patch method ("literal"1837 * or "delta"), followed by the length of data before deflating.1838 * a sequence of 'length-byte' followed by base-85 encoded data1839 * should follow, terminated by a newline.1840 *1841 * Each 5-byte sequence of base-85 encodes up to 4 bytes,1842 * and we would limit the patch line to 66 characters,1843 * so one line can fit up to 13 groups that would decode1844 * to 52 bytes max. The length byte 'A'-'Z' corresponds1845 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.1846 */1847int llen, used;1848unsigned long size = *sz_p;1849char*buffer = *buf_p;1850int patch_method;1851unsigned long origlen;1852char*data = NULL;1853int hunk_size =0;1854struct fragment *frag;18551856 llen =linelen(buffer, size);1857 used = llen;18581859*status_p =0;18601861if(starts_with(buffer,"delta ")) {1862 patch_method = BINARY_DELTA_DEFLATED;1863 origlen =strtoul(buffer +6, NULL,10);1864}1865else if(starts_with(buffer,"literal ")) {1866 patch_method = BINARY_LITERAL_DEFLATED;1867 origlen =strtoul(buffer +8, NULL,10);1868}1869else1870return NULL;18711872 state_linenr++;1873 buffer += llen;1874while(1) {1875int byte_length, max_byte_length, newsize;1876 llen =linelen(buffer, size);1877 used += llen;1878 state_linenr++;1879if(llen ==1) {1880/* consume the blank line */1881 buffer++;1882 size--;1883break;1884}1885/*1886 * Minimum line is "A00000\n" which is 7-byte long,1887 * and the line length must be multiple of 5 plus 2.1888 */1889if((llen <7) || (llen-2) %5)1890goto corrupt;1891 max_byte_length = (llen -2) /5*4;1892 byte_length = *buffer;1893if('A'<= byte_length && byte_length <='Z')1894 byte_length = byte_length -'A'+1;1895else if('a'<= byte_length && byte_length <='z')1896 byte_length = byte_length -'a'+27;1897else1898goto corrupt;1899/* if the input length was not multiple of 4, we would1900 * have filler at the end but the filler should never1901 * exceed 3 bytes1902 */1903if(max_byte_length < byte_length ||1904 byte_length <= max_byte_length -4)1905goto corrupt;1906 newsize = hunk_size + byte_length;1907 data =xrealloc(data, newsize);1908if(decode_85(data + hunk_size, buffer +1, byte_length))1909goto corrupt;1910 hunk_size = newsize;1911 buffer += llen;1912 size -= llen;1913}19141915 frag =xcalloc(1,sizeof(*frag));1916 frag->patch =inflate_it(data, hunk_size, origlen);1917 frag->free_patch =1;1918if(!frag->patch)1919goto corrupt;1920free(data);1921 frag->size = origlen;1922*buf_p = buffer;1923*sz_p = size;1924*used_p = used;1925 frag->binary_patch_method = patch_method;1926return frag;19271928 corrupt:1929free(data);1930*status_p = -1;1931error(_("corrupt binary patch at line%d: %.*s"),1932 state_linenr-1, llen-1, buffer);1933return NULL;1934}19351936/*1937 * Returns:1938 * -1 in case of error,1939 * the length of the parsed binary patch otherwise1940 */1941static intparse_binary(char*buffer,unsigned long size,struct patch *patch)1942{1943/*1944 * We have read "GIT binary patch\n"; what follows is a line1945 * that says the patch method (currently, either "literal" or1946 * "delta") and the length of data before deflating; a1947 * sequence of 'length-byte' followed by base-85 encoded data1948 * follows.1949 *1950 * When a binary patch is reversible, there is another binary1951 * hunk in the same format, starting with patch method (either1952 * "literal" or "delta") with the length of data, and a sequence1953 * of length-byte + base-85 encoded data, terminated with another1954 * empty line. This data, when applied to the postimage, produces1955 * the preimage.1956 */1957struct fragment *forward;1958struct fragment *reverse;1959int status;1960int used, used_1;19611962 forward =parse_binary_hunk(&buffer, &size, &status, &used);1963if(!forward && !status)1964/* there has to be one hunk (forward hunk) */1965returnerror(_("unrecognized binary patch at line%d"), state_linenr-1);1966if(status)1967/* otherwise we already gave an error message */1968return status;19691970 reverse =parse_binary_hunk(&buffer, &size, &status, &used_1);1971if(reverse)1972 used += used_1;1973else if(status) {1974/*1975 * Not having reverse hunk is not an error, but having1976 * a corrupt reverse hunk is.1977 */1978free((void*) forward->patch);1979free(forward);1980return status;1981}1982 forward->next = reverse;1983 patch->fragments = forward;1984 patch->is_binary =1;1985return used;1986}19871988static voidprefix_one(struct apply_state *state,char**name)1989{1990char*old_name = *name;1991if(!old_name)1992return;1993*name =xstrdup(prefix_filename(state->prefix, state->prefix_length, *name));1994free(old_name);1995}19961997static voidprefix_patch(struct apply_state *state,struct patch *p)1998{1999if(!state->prefix || p->is_toplevel_relative)2000return;2001prefix_one(state, &p->new_name);2002prefix_one(state, &p->old_name);2003}20042005/*2006 * include/exclude2007 */20082009static voidadd_name_limit(struct apply_state *state,2010const char*name,2011int exclude)2012{2013struct string_list_item *it;20142015 it =string_list_append(&state->limit_by_name, name);2016 it->util = exclude ? NULL : (void*)1;2017}20182019static intuse_patch(struct apply_state *state,struct patch *p)2020{2021const char*pathname = p->new_name ? p->new_name : p->old_name;2022int i;20232024/* Paths outside are not touched regardless of "--include" */2025if(0< state->prefix_length) {2026int pathlen =strlen(pathname);2027if(pathlen <= state->prefix_length ||2028memcmp(state->prefix, pathname, state->prefix_length))2029return0;2030}20312032/* See if it matches any of exclude/include rule */2033for(i =0; i < state->limit_by_name.nr; i++) {2034struct string_list_item *it = &state->limit_by_name.items[i];2035if(!wildmatch(it->string, pathname,0, NULL))2036return(it->util != NULL);2037}20382039/*2040 * If we had any include, a path that does not match any rule is2041 * not used. Otherwise, we saw bunch of exclude rules (or none)2042 * and such a path is used.2043 */2044return!state->has_include;2045}204620472048/*2049 * Read the patch text in "buffer" that extends for "size" bytes; stop2050 * reading after seeing a single patch (i.e. changes to a single file).2051 * Create fragments (i.e. patch hunks) and hang them to the given patch.2052 * Return the number of bytes consumed, so that the caller can call us2053 * again for the next patch.2054 */2055static intparse_chunk(struct apply_state *state,char*buffer,unsigned long size,struct patch *patch)2056{2057int hdrsize, patchsize;2058int offset =find_header(state, buffer, size, &hdrsize, patch);20592060if(offset <0)2061return offset;20622063prefix_patch(state, patch);20642065if(!use_patch(state, patch))2066 patch->ws_rule =0;2067else2068 patch->ws_rule =whitespace_rule(patch->new_name2069? patch->new_name2070: patch->old_name);20712072 patchsize =parse_single_patch(state,2073 buffer + offset + hdrsize,2074 size - offset - hdrsize,2075 patch);20762077if(!patchsize) {2078static const char git_binary[] ="GIT binary patch\n";2079int hd = hdrsize + offset;2080unsigned long llen =linelen(buffer + hd, size - hd);20812082if(llen ==sizeof(git_binary) -1&&2083!memcmp(git_binary, buffer + hd, llen)) {2084int used;2085 state_linenr++;2086 used =parse_binary(buffer + hd + llen,2087 size - hd - llen, patch);2088if(used <0)2089return-1;2090if(used)2091 patchsize = used + llen;2092else2093 patchsize =0;2094}2095else if(!memcmp(" differ\n", buffer + hd + llen -8,8)) {2096static const char*binhdr[] = {2097"Binary files ",2098"Files ",2099 NULL,2100};2101int i;2102for(i =0; binhdr[i]; i++) {2103int len =strlen(binhdr[i]);2104if(len < size - hd &&2105!memcmp(binhdr[i], buffer + hd, len)) {2106 state_linenr++;2107 patch->is_binary =1;2108 patchsize = llen;2109break;2110}2111}2112}21132114/* Empty patch cannot be applied if it is a text patch2115 * without metadata change. A binary patch appears2116 * empty to us here.2117 */2118if((state->apply || state->check) &&2119(!patch->is_binary && !metadata_changes(patch)))2120die(_("patch with only garbage at line%d"), state_linenr);2121}21222123return offset + hdrsize + patchsize;2124}21252126#define swap(a,b) myswap((a),(b),sizeof(a))21272128#define myswap(a, b, size) do { \2129 unsigned char mytmp[size]; \2130 memcpy(mytmp, &a, size); \2131 memcpy(&a, &b, size); \2132 memcpy(&b, mytmp, size); \2133} while (0)21342135static voidreverse_patches(struct patch *p)2136{2137for(; p; p = p->next) {2138struct fragment *frag = p->fragments;21392140swap(p->new_name, p->old_name);2141swap(p->new_mode, p->old_mode);2142swap(p->is_new, p->is_delete);2143swap(p->lines_added, p->lines_deleted);2144swap(p->old_sha1_prefix, p->new_sha1_prefix);21452146for(; frag; frag = frag->next) {2147swap(frag->newpos, frag->oldpos);2148swap(frag->newlines, frag->oldlines);2149}2150}2151}21522153static const char pluses[] =2154"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";2155static const char minuses[]=2156"----------------------------------------------------------------------";21572158static voidshow_stats(struct patch *patch)2159{2160struct strbuf qname = STRBUF_INIT;2161char*cp = patch->new_name ? patch->new_name : patch->old_name;2162int max, add, del;21632164quote_c_style(cp, &qname, NULL,0);21652166/*2167 * "scale" the filename2168 */2169 max = max_len;2170if(max >50)2171 max =50;21722173if(qname.len > max) {2174 cp =strchr(qname.buf + qname.len +3- max,'/');2175if(!cp)2176 cp = qname.buf + qname.len +3- max;2177strbuf_splice(&qname,0, cp - qname.buf,"...",3);2178}21792180if(patch->is_binary) {2181printf(" %-*s | Bin\n", max, qname.buf);2182strbuf_release(&qname);2183return;2184}21852186printf(" %-*s |", max, qname.buf);2187strbuf_release(&qname);21882189/*2190 * scale the add/delete2191 */2192 max = max + max_change >70?70- max : max_change;2193 add = patch->lines_added;2194 del = patch->lines_deleted;21952196if(max_change >0) {2197int total = ((add + del) * max + max_change /2) / max_change;2198 add = (add * max + max_change /2) / max_change;2199 del = total - add;2200}2201printf("%5d %.*s%.*s\n", patch->lines_added + patch->lines_deleted,2202 add, pluses, del, minuses);2203}22042205static intread_old_data(struct stat *st,const char*path,struct strbuf *buf)2206{2207switch(st->st_mode & S_IFMT) {2208case S_IFLNK:2209if(strbuf_readlink(buf, path, st->st_size) <0)2210returnerror(_("unable to read symlink%s"), path);2211return0;2212case S_IFREG:2213if(strbuf_read_file(buf, path, st->st_size) != st->st_size)2214returnerror(_("unable to open or read%s"), path);2215convert_to_git(path, buf->buf, buf->len, buf,0);2216return0;2217default:2218return-1;2219}2220}22212222/*2223 * Update the preimage, and the common lines in postimage,2224 * from buffer buf of length len. If postlen is 0 the postimage2225 * is updated in place, otherwise it's updated on a new buffer2226 * of length postlen2227 */22282229static voidupdate_pre_post_images(struct image *preimage,2230struct image *postimage,2231char*buf,2232size_t len,size_t postlen)2233{2234int i, ctx, reduced;2235char*new, *old, *fixed;2236struct image fixed_preimage;22372238/*2239 * Update the preimage with whitespace fixes. Note that we2240 * are not losing preimage->buf -- apply_one_fragment() will2241 * free "oldlines".2242 */2243prepare_image(&fixed_preimage, buf, len,1);2244assert(postlen2245? fixed_preimage.nr == preimage->nr2246: fixed_preimage.nr <= preimage->nr);2247for(i =0; i < fixed_preimage.nr; i++)2248 fixed_preimage.line[i].flag = preimage->line[i].flag;2249free(preimage->line_allocated);2250*preimage = fixed_preimage;22512252/*2253 * Adjust the common context lines in postimage. This can be2254 * done in-place when we are shrinking it with whitespace2255 * fixing, but needs a new buffer when ignoring whitespace or2256 * expanding leading tabs to spaces.2257 *2258 * We trust the caller to tell us if the update can be done2259 * in place (postlen==0) or not.2260 */2261 old = postimage->buf;2262if(postlen)2263new= postimage->buf =xmalloc(postlen);2264else2265new= old;2266 fixed = preimage->buf;22672268for(i = reduced = ctx =0; i < postimage->nr; i++) {2269size_t l_len = postimage->line[i].len;2270if(!(postimage->line[i].flag & LINE_COMMON)) {2271/* an added line -- no counterparts in preimage */2272memmove(new, old, l_len);2273 old += l_len;2274new+= l_len;2275continue;2276}22772278/* a common context -- skip it in the original postimage */2279 old += l_len;22802281/* and find the corresponding one in the fixed preimage */2282while(ctx < preimage->nr &&2283!(preimage->line[ctx].flag & LINE_COMMON)) {2284 fixed += preimage->line[ctx].len;2285 ctx++;2286}22872288/*2289 * preimage is expected to run out, if the caller2290 * fixed addition of trailing blank lines.2291 */2292if(preimage->nr <= ctx) {2293 reduced++;2294continue;2295}22962297/* and copy it in, while fixing the line length */2298 l_len = preimage->line[ctx].len;2299memcpy(new, fixed, l_len);2300new+= l_len;2301 fixed += l_len;2302 postimage->line[i].len = l_len;2303 ctx++;2304}23052306if(postlen2307? postlen <new- postimage->buf2308: postimage->len <new- postimage->buf)2309die("BUG: caller miscounted postlen: asked%d, orig =%d, used =%d",2310(int)postlen, (int) postimage->len, (int)(new- postimage->buf));23112312/* Fix the length of the whole thing */2313 postimage->len =new- postimage->buf;2314 postimage->nr -= reduced;2315}23162317static intline_by_line_fuzzy_match(struct image *img,2318struct image *preimage,2319struct image *postimage,2320unsigned longtry,2321int try_lno,2322int preimage_limit)2323{2324int i;2325size_t imgoff =0;2326size_t preoff =0;2327size_t postlen = postimage->len;2328size_t extra_chars;2329char*buf;2330char*preimage_eof;2331char*preimage_end;2332struct strbuf fixed;2333char*fixed_buf;2334size_t fixed_len;23352336for(i =0; i < preimage_limit; i++) {2337size_t prelen = preimage->line[i].len;2338size_t imglen = img->line[try_lno+i].len;23392340if(!fuzzy_matchlines(img->buf +try+ imgoff, imglen,2341 preimage->buf + preoff, prelen))2342return0;2343if(preimage->line[i].flag & LINE_COMMON)2344 postlen += imglen - prelen;2345 imgoff += imglen;2346 preoff += prelen;2347}23482349/*2350 * Ok, the preimage matches with whitespace fuzz.2351 *2352 * imgoff now holds the true length of the target that2353 * matches the preimage before the end of the file.2354 *2355 * Count the number of characters in the preimage that fall2356 * beyond the end of the file and make sure that all of them2357 * are whitespace characters. (This can only happen if2358 * we are removing blank lines at the end of the file.)2359 */2360 buf = preimage_eof = preimage->buf + preoff;2361for( ; i < preimage->nr; i++)2362 preoff += preimage->line[i].len;2363 preimage_end = preimage->buf + preoff;2364for( ; buf < preimage_end; buf++)2365if(!isspace(*buf))2366return0;23672368/*2369 * Update the preimage and the common postimage context2370 * lines to use the same whitespace as the target.2371 * If whitespace is missing in the target (i.e.2372 * if the preimage extends beyond the end of the file),2373 * use the whitespace from the preimage.2374 */2375 extra_chars = preimage_end - preimage_eof;2376strbuf_init(&fixed, imgoff + extra_chars);2377strbuf_add(&fixed, img->buf +try, imgoff);2378strbuf_add(&fixed, preimage_eof, extra_chars);2379 fixed_buf =strbuf_detach(&fixed, &fixed_len);2380update_pre_post_images(preimage, postimage,2381 fixed_buf, fixed_len, postlen);2382return1;2383}23842385static intmatch_fragment(struct image *img,2386struct image *preimage,2387struct image *postimage,2388unsigned longtry,2389int try_lno,2390unsigned ws_rule,2391int match_beginning,int match_end)2392{2393int i;2394char*fixed_buf, *buf, *orig, *target;2395struct strbuf fixed;2396size_t fixed_len, postlen;2397int preimage_limit;23982399if(preimage->nr + try_lno <= img->nr) {2400/*2401 * The hunk falls within the boundaries of img.2402 */2403 preimage_limit = preimage->nr;2404if(match_end && (preimage->nr + try_lno != img->nr))2405return0;2406}else if(ws_error_action == correct_ws_error &&2407(ws_rule & WS_BLANK_AT_EOF)) {2408/*2409 * This hunk extends beyond the end of img, and we are2410 * removing blank lines at the end of the file. This2411 * many lines from the beginning of the preimage must2412 * match with img, and the remainder of the preimage2413 * must be blank.2414 */2415 preimage_limit = img->nr - try_lno;2416}else{2417/*2418 * The hunk extends beyond the end of the img and2419 * we are not removing blanks at the end, so we2420 * should reject the hunk at this position.2421 */2422return0;2423}24242425if(match_beginning && try_lno)2426return0;24272428/* Quick hash check */2429for(i =0; i < preimage_limit; i++)2430if((img->line[try_lno + i].flag & LINE_PATCHED) ||2431(preimage->line[i].hash != img->line[try_lno + i].hash))2432return0;24332434if(preimage_limit == preimage->nr) {2435/*2436 * Do we have an exact match? If we were told to match2437 * at the end, size must be exactly at try+fragsize,2438 * otherwise try+fragsize must be still within the preimage,2439 * and either case, the old piece should match the preimage2440 * exactly.2441 */2442if((match_end2443? (try+ preimage->len == img->len)2444: (try+ preimage->len <= img->len)) &&2445!memcmp(img->buf +try, preimage->buf, preimage->len))2446return1;2447}else{2448/*2449 * The preimage extends beyond the end of img, so2450 * there cannot be an exact match.2451 *2452 * There must be one non-blank context line that match2453 * a line before the end of img.2454 */2455char*buf_end;24562457 buf = preimage->buf;2458 buf_end = buf;2459for(i =0; i < preimage_limit; i++)2460 buf_end += preimage->line[i].len;24612462for( ; buf < buf_end; buf++)2463if(!isspace(*buf))2464break;2465if(buf == buf_end)2466return0;2467}24682469/*2470 * No exact match. If we are ignoring whitespace, run a line-by-line2471 * fuzzy matching. We collect all the line length information because2472 * we need it to adjust whitespace if we match.2473 */2474if(ws_ignore_action == ignore_ws_change)2475returnline_by_line_fuzzy_match(img, preimage, postimage,2476try, try_lno, preimage_limit);24772478if(ws_error_action != correct_ws_error)2479return0;24802481/*2482 * The hunk does not apply byte-by-byte, but the hash says2483 * it might with whitespace fuzz. We weren't asked to2484 * ignore whitespace, we were asked to correct whitespace2485 * errors, so let's try matching after whitespace correction.2486 *2487 * While checking the preimage against the target, whitespace2488 * errors in both fixed, we count how large the corresponding2489 * postimage needs to be. The postimage prepared by2490 * apply_one_fragment() has whitespace errors fixed on added2491 * lines already, but the common lines were propagated as-is,2492 * which may become longer when their whitespace errors are2493 * fixed.2494 */24952496/* First count added lines in postimage */2497 postlen =0;2498for(i =0; i < postimage->nr; i++) {2499if(!(postimage->line[i].flag & LINE_COMMON))2500 postlen += postimage->line[i].len;2501}25022503/*2504 * The preimage may extend beyond the end of the file,2505 * but in this loop we will only handle the part of the2506 * preimage that falls within the file.2507 */2508strbuf_init(&fixed, preimage->len +1);2509 orig = preimage->buf;2510 target = img->buf +try;2511for(i =0; i < preimage_limit; i++) {2512size_t oldlen = preimage->line[i].len;2513size_t tgtlen = img->line[try_lno + i].len;2514size_t fixstart = fixed.len;2515struct strbuf tgtfix;2516int match;25172518/* Try fixing the line in the preimage */2519ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);25202521/* Try fixing the line in the target */2522strbuf_init(&tgtfix, tgtlen);2523ws_fix_copy(&tgtfix, target, tgtlen, ws_rule, NULL);25242525/*2526 * If they match, either the preimage was based on2527 * a version before our tree fixed whitespace breakage,2528 * or we are lacking a whitespace-fix patch the tree2529 * the preimage was based on already had (i.e. target2530 * has whitespace breakage, the preimage doesn't).2531 * In either case, we are fixing the whitespace breakages2532 * so we might as well take the fix together with their2533 * real change.2534 */2535 match = (tgtfix.len == fixed.len - fixstart &&2536!memcmp(tgtfix.buf, fixed.buf + fixstart,2537 fixed.len - fixstart));25382539/* Add the length if this is common with the postimage */2540if(preimage->line[i].flag & LINE_COMMON)2541 postlen += tgtfix.len;25422543strbuf_release(&tgtfix);2544if(!match)2545goto unmatch_exit;25462547 orig += oldlen;2548 target += tgtlen;2549}255025512552/*2553 * Now handle the lines in the preimage that falls beyond the2554 * end of the file (if any). They will only match if they are2555 * empty or only contain whitespace (if WS_BLANK_AT_EOL is2556 * false).2557 */2558for( ; i < preimage->nr; i++) {2559size_t fixstart = fixed.len;/* start of the fixed preimage */2560size_t oldlen = preimage->line[i].len;2561int j;25622563/* Try fixing the line in the preimage */2564ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);25652566for(j = fixstart; j < fixed.len; j++)2567if(!isspace(fixed.buf[j]))2568goto unmatch_exit;25692570 orig += oldlen;2571}25722573/*2574 * Yes, the preimage is based on an older version that still2575 * has whitespace breakages unfixed, and fixing them makes the2576 * hunk match. Update the context lines in the postimage.2577 */2578 fixed_buf =strbuf_detach(&fixed, &fixed_len);2579if(postlen < postimage->len)2580 postlen =0;2581update_pre_post_images(preimage, postimage,2582 fixed_buf, fixed_len, postlen);2583return1;25842585 unmatch_exit:2586strbuf_release(&fixed);2587return0;2588}25892590static intfind_pos(struct image *img,2591struct image *preimage,2592struct image *postimage,2593int line,2594unsigned ws_rule,2595int match_beginning,int match_end)2596{2597int i;2598unsigned long backwards, forwards,try;2599int backwards_lno, forwards_lno, try_lno;26002601/*2602 * If match_beginning or match_end is specified, there is no2603 * point starting from a wrong line that will never match and2604 * wander around and wait for a match at the specified end.2605 */2606if(match_beginning)2607 line =0;2608else if(match_end)2609 line = img->nr - preimage->nr;26102611/*2612 * Because the comparison is unsigned, the following test2613 * will also take care of a negative line number that can2614 * result when match_end and preimage is larger than the target.2615 */2616if((size_t) line > img->nr)2617 line = img->nr;26182619try=0;2620for(i =0; i < line; i++)2621try+= img->line[i].len;26222623/*2624 * There's probably some smart way to do this, but I'll leave2625 * that to the smart and beautiful people. I'm simple and stupid.2626 */2627 backwards =try;2628 backwards_lno = line;2629 forwards =try;2630 forwards_lno = line;2631 try_lno = line;26322633for(i =0; ; i++) {2634if(match_fragment(img, preimage, postimage,2635try, try_lno, ws_rule,2636 match_beginning, match_end))2637return try_lno;26382639 again:2640if(backwards_lno ==0&& forwards_lno == img->nr)2641break;26422643if(i &1) {2644if(backwards_lno ==0) {2645 i++;2646goto again;2647}2648 backwards_lno--;2649 backwards -= img->line[backwards_lno].len;2650try= backwards;2651 try_lno = backwards_lno;2652}else{2653if(forwards_lno == img->nr) {2654 i++;2655goto again;2656}2657 forwards += img->line[forwards_lno].len;2658 forwards_lno++;2659try= forwards;2660 try_lno = forwards_lno;2661}26622663}2664return-1;2665}26662667static voidremove_first_line(struct image *img)2668{2669 img->buf += img->line[0].len;2670 img->len -= img->line[0].len;2671 img->line++;2672 img->nr--;2673}26742675static voidremove_last_line(struct image *img)2676{2677 img->len -= img->line[--img->nr].len;2678}26792680/*2681 * The change from "preimage" and "postimage" has been found to2682 * apply at applied_pos (counts in line numbers) in "img".2683 * Update "img" to remove "preimage" and replace it with "postimage".2684 */2685static voidupdate_image(struct apply_state *state,2686struct image *img,2687int applied_pos,2688struct image *preimage,2689struct image *postimage)2690{2691/*2692 * remove the copy of preimage at offset in img2693 * and replace it with postimage2694 */2695int i, nr;2696size_t remove_count, insert_count, applied_at =0;2697char*result;2698int preimage_limit;26992700/*2701 * If we are removing blank lines at the end of img,2702 * the preimage may extend beyond the end.2703 * If that is the case, we must be careful only to2704 * remove the part of the preimage that falls within2705 * the boundaries of img. Initialize preimage_limit2706 * to the number of lines in the preimage that falls2707 * within the boundaries.2708 */2709 preimage_limit = preimage->nr;2710if(preimage_limit > img->nr - applied_pos)2711 preimage_limit = img->nr - applied_pos;27122713for(i =0; i < applied_pos; i++)2714 applied_at += img->line[i].len;27152716 remove_count =0;2717for(i =0; i < preimage_limit; i++)2718 remove_count += img->line[applied_pos + i].len;2719 insert_count = postimage->len;27202721/* Adjust the contents */2722 result =xmalloc(st_add3(st_sub(img->len, remove_count), insert_count,1));2723memcpy(result, img->buf, applied_at);2724memcpy(result + applied_at, postimage->buf, postimage->len);2725memcpy(result + applied_at + postimage->len,2726 img->buf + (applied_at + remove_count),2727 img->len - (applied_at + remove_count));2728free(img->buf);2729 img->buf = result;2730 img->len += insert_count - remove_count;2731 result[img->len] ='\0';27322733/* Adjust the line table */2734 nr = img->nr + postimage->nr - preimage_limit;2735if(preimage_limit < postimage->nr) {2736/*2737 * NOTE: this knows that we never call remove_first_line()2738 * on anything other than pre/post image.2739 */2740REALLOC_ARRAY(img->line, nr);2741 img->line_allocated = img->line;2742}2743if(preimage_limit != postimage->nr)2744memmove(img->line + applied_pos + postimage->nr,2745 img->line + applied_pos + preimage_limit,2746(img->nr - (applied_pos + preimage_limit)) *2747sizeof(*img->line));2748memcpy(img->line + applied_pos,2749 postimage->line,2750 postimage->nr *sizeof(*img->line));2751if(!state->allow_overlap)2752for(i =0; i < postimage->nr; i++)2753 img->line[applied_pos + i].flag |= LINE_PATCHED;2754 img->nr = nr;2755}27562757/*2758 * Use the patch-hunk text in "frag" to prepare two images (preimage and2759 * postimage) for the hunk. Find lines that match "preimage" in "img" and2760 * replace the part of "img" with "postimage" text.2761 */2762static intapply_one_fragment(struct apply_state *state,2763struct image *img,struct fragment *frag,2764int inaccurate_eof,unsigned ws_rule,2765int nth_fragment)2766{2767int match_beginning, match_end;2768const char*patch = frag->patch;2769int size = frag->size;2770char*old, *oldlines;2771struct strbuf newlines;2772int new_blank_lines_at_end =0;2773int found_new_blank_lines_at_end =0;2774int hunk_linenr = frag->linenr;2775unsigned long leading, trailing;2776int pos, applied_pos;2777struct image preimage;2778struct image postimage;27792780memset(&preimage,0,sizeof(preimage));2781memset(&postimage,0,sizeof(postimage));2782 oldlines =xmalloc(size);2783strbuf_init(&newlines, size);27842785 old = oldlines;2786while(size >0) {2787char first;2788int len =linelen(patch, size);2789int plen;2790int added_blank_line =0;2791int is_blank_context =0;2792size_t start;27932794if(!len)2795break;27962797/*2798 * "plen" is how much of the line we should use for2799 * the actual patch data. Normally we just remove the2800 * first character on the line, but if the line is2801 * followed by "\ No newline", then we also remove the2802 * last one (which is the newline, of course).2803 */2804 plen = len -1;2805if(len < size && patch[len] =='\\')2806 plen--;2807 first = *patch;2808if(state->apply_in_reverse) {2809if(first =='-')2810 first ='+';2811else if(first =='+')2812 first ='-';2813}28142815switch(first) {2816case'\n':2817/* Newer GNU diff, empty context line */2818if(plen <0)2819/* ... followed by '\No newline'; nothing */2820break;2821*old++ ='\n';2822strbuf_addch(&newlines,'\n');2823add_line_info(&preimage,"\n",1, LINE_COMMON);2824add_line_info(&postimage,"\n",1, LINE_COMMON);2825 is_blank_context =1;2826break;2827case' ':2828if(plen && (ws_rule & WS_BLANK_AT_EOF) &&2829ws_blank_line(patch +1, plen, ws_rule))2830 is_blank_context =1;2831case'-':2832memcpy(old, patch +1, plen);2833add_line_info(&preimage, old, plen,2834(first ==' '? LINE_COMMON :0));2835 old += plen;2836if(first =='-')2837break;2838/* Fall-through for ' ' */2839case'+':2840/* --no-add does not add new lines */2841if(first =='+'&& state->no_add)2842break;28432844 start = newlines.len;2845if(first !='+'||2846!whitespace_error ||2847 ws_error_action != correct_ws_error) {2848strbuf_add(&newlines, patch +1, plen);2849}2850else{2851ws_fix_copy(&newlines, patch +1, plen, ws_rule, &applied_after_fixing_ws);2852}2853add_line_info(&postimage, newlines.buf + start, newlines.len - start,2854(first =='+'?0: LINE_COMMON));2855if(first =='+'&&2856(ws_rule & WS_BLANK_AT_EOF) &&2857ws_blank_line(patch +1, plen, ws_rule))2858 added_blank_line =1;2859break;2860case'@':case'\\':2861/* Ignore it, we already handled it */2862break;2863default:2864if(state->apply_verbosely)2865error(_("invalid start of line: '%c'"), first);2866 applied_pos = -1;2867goto out;2868}2869if(added_blank_line) {2870if(!new_blank_lines_at_end)2871 found_new_blank_lines_at_end = hunk_linenr;2872 new_blank_lines_at_end++;2873}2874else if(is_blank_context)2875;2876else2877 new_blank_lines_at_end =0;2878 patch += len;2879 size -= len;2880 hunk_linenr++;2881}2882if(inaccurate_eof &&2883 old > oldlines && old[-1] =='\n'&&2884 newlines.len >0&& newlines.buf[newlines.len -1] =='\n') {2885 old--;2886strbuf_setlen(&newlines, newlines.len -1);2887}28882889 leading = frag->leading;2890 trailing = frag->trailing;28912892/*2893 * A hunk to change lines at the beginning would begin with2894 * @@ -1,L +N,M @@2895 * but we need to be careful. -U0 that inserts before the second2896 * line also has this pattern.2897 *2898 * And a hunk to add to an empty file would begin with2899 * @@ -0,0 +N,M @@2900 *2901 * In other words, a hunk that is (frag->oldpos <= 1) with or2902 * without leading context must match at the beginning.2903 */2904 match_beginning = (!frag->oldpos ||2905(frag->oldpos ==1&& !state->unidiff_zero));29062907/*2908 * A hunk without trailing lines must match at the end.2909 * However, we simply cannot tell if a hunk must match end2910 * from the lack of trailing lines if the patch was generated2911 * with unidiff without any context.2912 */2913 match_end = !state->unidiff_zero && !trailing;29142915 pos = frag->newpos ? (frag->newpos -1) :0;2916 preimage.buf = oldlines;2917 preimage.len = old - oldlines;2918 postimage.buf = newlines.buf;2919 postimage.len = newlines.len;2920 preimage.line = preimage.line_allocated;2921 postimage.line = postimage.line_allocated;29222923for(;;) {29242925 applied_pos =find_pos(img, &preimage, &postimage, pos,2926 ws_rule, match_beginning, match_end);29272928if(applied_pos >=0)2929break;29302931/* Am I at my context limits? */2932if((leading <= state->p_context) && (trailing <= state->p_context))2933break;2934if(match_beginning || match_end) {2935 match_beginning = match_end =0;2936continue;2937}29382939/*2940 * Reduce the number of context lines; reduce both2941 * leading and trailing if they are equal otherwise2942 * just reduce the larger context.2943 */2944if(leading >= trailing) {2945remove_first_line(&preimage);2946remove_first_line(&postimage);2947 pos--;2948 leading--;2949}2950if(trailing > leading) {2951remove_last_line(&preimage);2952remove_last_line(&postimage);2953 trailing--;2954}2955}29562957if(applied_pos >=0) {2958if(new_blank_lines_at_end &&2959 preimage.nr + applied_pos >= img->nr &&2960(ws_rule & WS_BLANK_AT_EOF) &&2961 ws_error_action != nowarn_ws_error) {2962record_ws_error(state, WS_BLANK_AT_EOF,"+",1,2963 found_new_blank_lines_at_end);2964if(ws_error_action == correct_ws_error) {2965while(new_blank_lines_at_end--)2966remove_last_line(&postimage);2967}2968/*2969 * We would want to prevent write_out_results()2970 * from taking place in apply_patch() that follows2971 * the callchain led us here, which is:2972 * apply_patch->check_patch_list->check_patch->2973 * apply_data->apply_fragments->apply_one_fragment2974 */2975if(ws_error_action == die_on_ws_error)2976 state->apply =0;2977}29782979if(state->apply_verbosely && applied_pos != pos) {2980int offset = applied_pos - pos;2981if(state->apply_in_reverse)2982 offset =0- offset;2983fprintf_ln(stderr,2984Q_("Hunk #%dsucceeded at%d(offset%dline).",2985"Hunk #%dsucceeded at%d(offset%dlines).",2986 offset),2987 nth_fragment, applied_pos +1, offset);2988}29892990/*2991 * Warn if it was necessary to reduce the number2992 * of context lines.2993 */2994if((leading != frag->leading) ||2995(trailing != frag->trailing))2996fprintf_ln(stderr,_("Context reduced to (%ld/%ld)"2997" to apply fragment at%d"),2998 leading, trailing, applied_pos+1);2999update_image(state, img, applied_pos, &preimage, &postimage);3000}else{3001if(state->apply_verbosely)3002error(_("while searching for:\n%.*s"),3003(int)(old - oldlines), oldlines);3004}30053006out:3007free(oldlines);3008strbuf_release(&newlines);3009free(preimage.line_allocated);3010free(postimage.line_allocated);30113012return(applied_pos <0);3013}30143015static intapply_binary_fragment(struct apply_state *state,3016struct image *img,3017struct patch *patch)3018{3019struct fragment *fragment = patch->fragments;3020unsigned long len;3021void*dst;30223023if(!fragment)3024returnerror(_("missing binary patch data for '%s'"),3025 patch->new_name ?3026 patch->new_name :3027 patch->old_name);30283029/* Binary patch is irreversible without the optional second hunk */3030if(state->apply_in_reverse) {3031if(!fragment->next)3032returnerror("cannot reverse-apply a binary patch "3033"without the reverse hunk to '%s'",3034 patch->new_name3035? patch->new_name : patch->old_name);3036 fragment = fragment->next;3037}3038switch(fragment->binary_patch_method) {3039case BINARY_DELTA_DEFLATED:3040 dst =patch_delta(img->buf, img->len, fragment->patch,3041 fragment->size, &len);3042if(!dst)3043return-1;3044clear_image(img);3045 img->buf = dst;3046 img->len = len;3047return0;3048case BINARY_LITERAL_DEFLATED:3049clear_image(img);3050 img->len = fragment->size;3051 img->buf =xmemdupz(fragment->patch, img->len);3052return0;3053}3054return-1;3055}30563057/*3058 * Replace "img" with the result of applying the binary patch.3059 * The binary patch data itself in patch->fragment is still kept3060 * but the preimage prepared by the caller in "img" is freed here3061 * or in the helper function apply_binary_fragment() this calls.3062 */3063static intapply_binary(struct apply_state *state,3064struct image *img,3065struct patch *patch)3066{3067const char*name = patch->old_name ? patch->old_name : patch->new_name;3068unsigned char sha1[20];30693070/*3071 * For safety, we require patch index line to contain3072 * full 40-byte textual SHA1 for old and new, at least for now.3073 */3074if(strlen(patch->old_sha1_prefix) !=40||3075strlen(patch->new_sha1_prefix) !=40||3076get_sha1_hex(patch->old_sha1_prefix, sha1) ||3077get_sha1_hex(patch->new_sha1_prefix, sha1))3078returnerror("cannot apply binary patch to '%s' "3079"without full index line", name);30803081if(patch->old_name) {3082/*3083 * See if the old one matches what the patch3084 * applies to.3085 */3086hash_sha1_file(img->buf, img->len, blob_type, sha1);3087if(strcmp(sha1_to_hex(sha1), patch->old_sha1_prefix))3088returnerror("the patch applies to '%s' (%s), "3089"which does not match the "3090"current contents.",3091 name,sha1_to_hex(sha1));3092}3093else{3094/* Otherwise, the old one must be empty. */3095if(img->len)3096returnerror("the patch applies to an empty "3097"'%s' but it is not empty", name);3098}30993100get_sha1_hex(patch->new_sha1_prefix, sha1);3101if(is_null_sha1(sha1)) {3102clear_image(img);3103return0;/* deletion patch */3104}31053106if(has_sha1_file(sha1)) {3107/* We already have the postimage */3108enum object_type type;3109unsigned long size;3110char*result;31113112 result =read_sha1_file(sha1, &type, &size);3113if(!result)3114returnerror("the necessary postimage%sfor "3115"'%s' cannot be read",3116 patch->new_sha1_prefix, name);3117clear_image(img);3118 img->buf = result;3119 img->len = size;3120}else{3121/*3122 * We have verified buf matches the preimage;3123 * apply the patch data to it, which is stored3124 * in the patch->fragments->{patch,size}.3125 */3126if(apply_binary_fragment(state, img, patch))3127returnerror(_("binary patch does not apply to '%s'"),3128 name);31293130/* verify that the result matches */3131hash_sha1_file(img->buf, img->len, blob_type, sha1);3132if(strcmp(sha1_to_hex(sha1), patch->new_sha1_prefix))3133returnerror(_("binary patch to '%s' creates incorrect result (expecting%s, got%s)"),3134 name, patch->new_sha1_prefix,sha1_to_hex(sha1));3135}31363137return0;3138}31393140static intapply_fragments(struct apply_state *state,struct image *img,struct patch *patch)3141{3142struct fragment *frag = patch->fragments;3143const char*name = patch->old_name ? patch->old_name : patch->new_name;3144unsigned ws_rule = patch->ws_rule;3145unsigned inaccurate_eof = patch->inaccurate_eof;3146int nth =0;31473148if(patch->is_binary)3149returnapply_binary(state, img, patch);31503151while(frag) {3152 nth++;3153if(apply_one_fragment(state, img, frag, inaccurate_eof, ws_rule, nth)) {3154error(_("patch failed:%s:%ld"), name, frag->oldpos);3155if(!state->apply_with_reject)3156return-1;3157 frag->rejected =1;3158}3159 frag = frag->next;3160}3161return0;3162}31633164static intread_blob_object(struct strbuf *buf,const unsigned char*sha1,unsigned mode)3165{3166if(S_ISGITLINK(mode)) {3167strbuf_grow(buf,100);3168strbuf_addf(buf,"Subproject commit%s\n",sha1_to_hex(sha1));3169}else{3170enum object_type type;3171unsigned long sz;3172char*result;31733174 result =read_sha1_file(sha1, &type, &sz);3175if(!result)3176return-1;3177/* XXX read_sha1_file NUL-terminates */3178strbuf_attach(buf, result, sz, sz +1);3179}3180return0;3181}31823183static intread_file_or_gitlink(const struct cache_entry *ce,struct strbuf *buf)3184{3185if(!ce)3186return0;3187returnread_blob_object(buf, ce->sha1, ce->ce_mode);3188}31893190static struct patch *in_fn_table(const char*name)3191{3192struct string_list_item *item;31933194if(name == NULL)3195return NULL;31963197 item =string_list_lookup(&fn_table, name);3198if(item != NULL)3199return(struct patch *)item->util;32003201return NULL;3202}32033204/*3205 * item->util in the filename table records the status of the path.3206 * Usually it points at a patch (whose result records the contents3207 * of it after applying it), but it could be PATH_WAS_DELETED for a3208 * path that a previously applied patch has already removed, or3209 * PATH_TO_BE_DELETED for a path that a later patch would remove.3210 *3211 * The latter is needed to deal with a case where two paths A and B3212 * are swapped by first renaming A to B and then renaming B to A;3213 * moving A to B should not be prevented due to presence of B as we3214 * will remove it in a later patch.3215 */3216#define PATH_TO_BE_DELETED ((struct patch *) -2)3217#define PATH_WAS_DELETED ((struct patch *) -1)32183219static intto_be_deleted(struct patch *patch)3220{3221return patch == PATH_TO_BE_DELETED;3222}32233224static intwas_deleted(struct patch *patch)3225{3226return patch == PATH_WAS_DELETED;3227}32283229static voidadd_to_fn_table(struct patch *patch)3230{3231struct string_list_item *item;32323233/*3234 * Always add new_name unless patch is a deletion3235 * This should cover the cases for normal diffs,3236 * file creations and copies3237 */3238if(patch->new_name != NULL) {3239 item =string_list_insert(&fn_table, patch->new_name);3240 item->util = patch;3241}32423243/*3244 * store a failure on rename/deletion cases because3245 * later chunks shouldn't patch old names3246 */3247if((patch->new_name == NULL) || (patch->is_rename)) {3248 item =string_list_insert(&fn_table, patch->old_name);3249 item->util = PATH_WAS_DELETED;3250}3251}32523253static voidprepare_fn_table(struct patch *patch)3254{3255/*3256 * store information about incoming file deletion3257 */3258while(patch) {3259if((patch->new_name == NULL) || (patch->is_rename)) {3260struct string_list_item *item;3261 item =string_list_insert(&fn_table, patch->old_name);3262 item->util = PATH_TO_BE_DELETED;3263}3264 patch = patch->next;3265}3266}32673268static intcheckout_target(struct index_state *istate,3269struct cache_entry *ce,struct stat *st)3270{3271struct checkout costate;32723273memset(&costate,0,sizeof(costate));3274 costate.base_dir ="";3275 costate.refresh_cache =1;3276 costate.istate = istate;3277if(checkout_entry(ce, &costate, NULL) ||lstat(ce->name, st))3278returnerror(_("cannot checkout%s"), ce->name);3279return0;3280}32813282static struct patch *previous_patch(struct patch *patch,int*gone)3283{3284struct patch *previous;32853286*gone =0;3287if(patch->is_copy || patch->is_rename)3288return NULL;/* "git" patches do not depend on the order */32893290 previous =in_fn_table(patch->old_name);3291if(!previous)3292return NULL;32933294if(to_be_deleted(previous))3295return NULL;/* the deletion hasn't happened yet */32963297if(was_deleted(previous))3298*gone =1;32993300return previous;3301}33023303static intverify_index_match(const struct cache_entry *ce,struct stat *st)3304{3305if(S_ISGITLINK(ce->ce_mode)) {3306if(!S_ISDIR(st->st_mode))3307return-1;3308return0;3309}3310returnce_match_stat(ce, st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);3311}33123313#define SUBMODULE_PATCH_WITHOUT_INDEX 133143315static intload_patch_target(struct apply_state *state,3316struct strbuf *buf,3317const struct cache_entry *ce,3318struct stat *st,3319const char*name,3320unsigned expected_mode)3321{3322if(state->cached || state->check_index) {3323if(read_file_or_gitlink(ce, buf))3324returnerror(_("read of%sfailed"), name);3325}else if(name) {3326if(S_ISGITLINK(expected_mode)) {3327if(ce)3328returnread_file_or_gitlink(ce, buf);3329else3330return SUBMODULE_PATCH_WITHOUT_INDEX;3331}else if(has_symlink_leading_path(name,strlen(name))) {3332returnerror(_("reading from '%s' beyond a symbolic link"), name);3333}else{3334if(read_old_data(st, name, buf))3335returnerror(_("read of%sfailed"), name);3336}3337}3338return0;3339}33403341/*3342 * We are about to apply "patch"; populate the "image" with the3343 * current version we have, from the working tree or from the index,3344 * depending on the situation e.g. --cached/--index. If we are3345 * applying a non-git patch that incrementally updates the tree,3346 * we read from the result of a previous diff.3347 */3348static intload_preimage(struct apply_state *state,3349struct image *image,3350struct patch *patch,struct stat *st,3351const struct cache_entry *ce)3352{3353struct strbuf buf = STRBUF_INIT;3354size_t len;3355char*img;3356struct patch *previous;3357int status;33583359 previous =previous_patch(patch, &status);3360if(status)3361returnerror(_("path%shas been renamed/deleted"),3362 patch->old_name);3363if(previous) {3364/* We have a patched copy in memory; use that. */3365strbuf_add(&buf, previous->result, previous->resultsize);3366}else{3367 status =load_patch_target(state, &buf, ce, st,3368 patch->old_name, patch->old_mode);3369if(status <0)3370return status;3371else if(status == SUBMODULE_PATCH_WITHOUT_INDEX) {3372/*3373 * There is no way to apply subproject3374 * patch without looking at the index.3375 * NEEDSWORK: shouldn't this be flagged3376 * as an error???3377 */3378free_fragment_list(patch->fragments);3379 patch->fragments = NULL;3380}else if(status) {3381returnerror(_("read of%sfailed"), patch->old_name);3382}3383}33843385 img =strbuf_detach(&buf, &len);3386prepare_image(image, img, len, !patch->is_binary);3387return0;3388}33893390static intthree_way_merge(struct image *image,3391char*path,3392const unsigned char*base,3393const unsigned char*ours,3394const unsigned char*theirs)3395{3396 mmfile_t base_file, our_file, their_file;3397 mmbuffer_t result = { NULL };3398int status;33993400read_mmblob(&base_file, base);3401read_mmblob(&our_file, ours);3402read_mmblob(&their_file, theirs);3403 status =ll_merge(&result, path,3404&base_file,"base",3405&our_file,"ours",3406&their_file,"theirs", NULL);3407free(base_file.ptr);3408free(our_file.ptr);3409free(their_file.ptr);3410if(status <0|| !result.ptr) {3411free(result.ptr);3412return-1;3413}3414clear_image(image);3415 image->buf = result.ptr;3416 image->len = result.size;34173418return status;3419}34203421/*3422 * When directly falling back to add/add three-way merge, we read from3423 * the current contents of the new_name. In no cases other than that3424 * this function will be called.3425 */3426static intload_current(struct apply_state *state,3427struct image *image,3428struct patch *patch)3429{3430struct strbuf buf = STRBUF_INIT;3431int status, pos;3432size_t len;3433char*img;3434struct stat st;3435struct cache_entry *ce;3436char*name = patch->new_name;3437unsigned mode = patch->new_mode;34383439if(!patch->is_new)3440die("BUG: patch to%sis not a creation", patch->old_name);34413442 pos =cache_name_pos(name,strlen(name));3443if(pos <0)3444returnerror(_("%s: does not exist in index"), name);3445 ce = active_cache[pos];3446if(lstat(name, &st)) {3447if(errno != ENOENT)3448returnerror(_("%s:%s"), name,strerror(errno));3449if(checkout_target(&the_index, ce, &st))3450return-1;3451}3452if(verify_index_match(ce, &st))3453returnerror(_("%s: does not match index"), name);34543455 status =load_patch_target(state, &buf, ce, &st, name, mode);3456if(status <0)3457return status;3458else if(status)3459return-1;3460 img =strbuf_detach(&buf, &len);3461prepare_image(image, img, len, !patch->is_binary);3462return0;3463}34643465static inttry_threeway(struct apply_state *state,3466struct image *image,3467struct patch *patch,3468struct stat *st,3469const struct cache_entry *ce)3470{3471unsigned char pre_sha1[20], post_sha1[20], our_sha1[20];3472struct strbuf buf = STRBUF_INIT;3473size_t len;3474int status;3475char*img;3476struct image tmp_image;34773478/* No point falling back to 3-way merge in these cases */3479if(patch->is_delete ||3480S_ISGITLINK(patch->old_mode) ||S_ISGITLINK(patch->new_mode))3481return-1;34823483/* Preimage the patch was prepared for */3484if(patch->is_new)3485write_sha1_file("",0, blob_type, pre_sha1);3486else if(get_sha1(patch->old_sha1_prefix, pre_sha1) ||3487read_blob_object(&buf, pre_sha1, patch->old_mode))3488returnerror("repository lacks the necessary blob to fall back on 3-way merge.");34893490fprintf(stderr,"Falling back to three-way merge...\n");34913492 img =strbuf_detach(&buf, &len);3493prepare_image(&tmp_image, img, len,1);3494/* Apply the patch to get the post image */3495if(apply_fragments(state, &tmp_image, patch) <0) {3496clear_image(&tmp_image);3497return-1;3498}3499/* post_sha1[] is theirs */3500write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, post_sha1);3501clear_image(&tmp_image);35023503/* our_sha1[] is ours */3504if(patch->is_new) {3505if(load_current(state, &tmp_image, patch))3506returnerror("cannot read the current contents of '%s'",3507 patch->new_name);3508}else{3509if(load_preimage(state, &tmp_image, patch, st, ce))3510returnerror("cannot read the current contents of '%s'",3511 patch->old_name);3512}3513write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, our_sha1);3514clear_image(&tmp_image);35153516/* in-core three-way merge between post and our using pre as base */3517 status =three_way_merge(image, patch->new_name,3518 pre_sha1, our_sha1, post_sha1);3519if(status <0) {3520fprintf(stderr,"Failed to fall back on three-way merge...\n");3521return status;3522}35233524if(status) {3525 patch->conflicted_threeway =1;3526if(patch->is_new)3527oidclr(&patch->threeway_stage[0]);3528else3529hashcpy(patch->threeway_stage[0].hash, pre_sha1);3530hashcpy(patch->threeway_stage[1].hash, our_sha1);3531hashcpy(patch->threeway_stage[2].hash, post_sha1);3532fprintf(stderr,"Applied patch to '%s' with conflicts.\n", patch->new_name);3533}else{3534fprintf(stderr,"Applied patch to '%s' cleanly.\n", patch->new_name);3535}3536return0;3537}35383539static intapply_data(struct apply_state *state,struct patch *patch,3540struct stat *st,const struct cache_entry *ce)3541{3542struct image image;35433544if(load_preimage(state, &image, patch, st, ce) <0)3545return-1;35463547if(patch->direct_to_threeway ||3548apply_fragments(state, &image, patch) <0) {3549/* Note: with --reject, apply_fragments() returns 0 */3550if(!state->threeway ||try_threeway(state, &image, patch, st, ce) <0)3551return-1;3552}3553 patch->result = image.buf;3554 patch->resultsize = image.len;3555add_to_fn_table(patch);3556free(image.line_allocated);35573558if(0< patch->is_delete && patch->resultsize)3559returnerror(_("removal patch leaves file contents"));35603561return0;3562}35633564/*3565 * If "patch" that we are looking at modifies or deletes what we have,3566 * we would want it not to lose any local modification we have, either3567 * in the working tree or in the index.3568 *3569 * This also decides if a non-git patch is a creation patch or a3570 * modification to an existing empty file. We do not check the state3571 * of the current tree for a creation patch in this function; the caller3572 * check_patch() separately makes sure (and errors out otherwise) that3573 * the path the patch creates does not exist in the current tree.3574 */3575static intcheck_preimage(struct apply_state *state,3576struct patch *patch,3577struct cache_entry **ce,3578struct stat *st)3579{3580const char*old_name = patch->old_name;3581struct patch *previous = NULL;3582int stat_ret =0, status;3583unsigned st_mode =0;35843585if(!old_name)3586return0;35873588assert(patch->is_new <=0);3589 previous =previous_patch(patch, &status);35903591if(status)3592returnerror(_("path%shas been renamed/deleted"), old_name);3593if(previous) {3594 st_mode = previous->new_mode;3595}else if(!state->cached) {3596 stat_ret =lstat(old_name, st);3597if(stat_ret && errno != ENOENT)3598returnerror(_("%s:%s"), old_name,strerror(errno));3599}36003601if(state->check_index && !previous) {3602int pos =cache_name_pos(old_name,strlen(old_name));3603if(pos <0) {3604if(patch->is_new <0)3605goto is_new;3606returnerror(_("%s: does not exist in index"), old_name);3607}3608*ce = active_cache[pos];3609if(stat_ret <0) {3610if(checkout_target(&the_index, *ce, st))3611return-1;3612}3613if(!state->cached &&verify_index_match(*ce, st))3614returnerror(_("%s: does not match index"), old_name);3615if(state->cached)3616 st_mode = (*ce)->ce_mode;3617}else if(stat_ret <0) {3618if(patch->is_new <0)3619goto is_new;3620returnerror(_("%s:%s"), old_name,strerror(errno));3621}36223623if(!state->cached && !previous)3624 st_mode =ce_mode_from_stat(*ce, st->st_mode);36253626if(patch->is_new <0)3627 patch->is_new =0;3628if(!patch->old_mode)3629 patch->old_mode = st_mode;3630if((st_mode ^ patch->old_mode) & S_IFMT)3631returnerror(_("%s: wrong type"), old_name);3632if(st_mode != patch->old_mode)3633warning(_("%shas type%o, expected%o"),3634 old_name, st_mode, patch->old_mode);3635if(!patch->new_mode && !patch->is_delete)3636 patch->new_mode = st_mode;3637return0;36383639 is_new:3640 patch->is_new =1;3641 patch->is_delete =0;3642free(patch->old_name);3643 patch->old_name = NULL;3644return0;3645}364636473648#define EXISTS_IN_INDEX 13649#define EXISTS_IN_WORKTREE 236503651static intcheck_to_create(struct apply_state *state,3652const char*new_name,3653int ok_if_exists)3654{3655struct stat nst;36563657if(state->check_index &&3658cache_name_pos(new_name,strlen(new_name)) >=0&&3659!ok_if_exists)3660return EXISTS_IN_INDEX;3661if(state->cached)3662return0;36633664if(!lstat(new_name, &nst)) {3665if(S_ISDIR(nst.st_mode) || ok_if_exists)3666return0;3667/*3668 * A leading component of new_name might be a symlink3669 * that is going to be removed with this patch, but3670 * still pointing at somewhere that has the path.3671 * In such a case, path "new_name" does not exist as3672 * far as git is concerned.3673 */3674if(has_symlink_leading_path(new_name,strlen(new_name)))3675return0;36763677return EXISTS_IN_WORKTREE;3678}else if((errno != ENOENT) && (errno != ENOTDIR)) {3679returnerror("%s:%s", new_name,strerror(errno));3680}3681return0;3682}36833684/*3685 * We need to keep track of how symlinks in the preimage are3686 * manipulated by the patches. A patch to add a/b/c where a/b3687 * is a symlink should not be allowed to affect the directory3688 * the symlink points at, but if the same patch removes a/b,3689 * it is perfectly fine, as the patch removes a/b to make room3690 * to create a directory a/b so that a/b/c can be created.3691 */3692static struct string_list symlink_changes;3693#define SYMLINK_GOES_AWAY 013694#define SYMLINK_IN_RESULT 0236953696static uintptr_tregister_symlink_changes(const char*path,uintptr_t what)3697{3698struct string_list_item *ent;36993700 ent =string_list_lookup(&symlink_changes, path);3701if(!ent) {3702 ent =string_list_insert(&symlink_changes, path);3703 ent->util = (void*)0;3704}3705 ent->util = (void*)(what | ((uintptr_t)ent->util));3706return(uintptr_t)ent->util;3707}37083709static uintptr_tcheck_symlink_changes(const char*path)3710{3711struct string_list_item *ent;37123713 ent =string_list_lookup(&symlink_changes, path);3714if(!ent)3715return0;3716return(uintptr_t)ent->util;3717}37183719static voidprepare_symlink_changes(struct patch *patch)3720{3721for( ; patch; patch = patch->next) {3722if((patch->old_name &&S_ISLNK(patch->old_mode)) &&3723(patch->is_rename || patch->is_delete))3724/* the symlink at patch->old_name is removed */3725register_symlink_changes(patch->old_name, SYMLINK_GOES_AWAY);37263727if(patch->new_name &&S_ISLNK(patch->new_mode))3728/* the symlink at patch->new_name is created or remains */3729register_symlink_changes(patch->new_name, SYMLINK_IN_RESULT);3730}3731}37323733static intpath_is_beyond_symlink_1(struct apply_state *state,struct strbuf *name)3734{3735do{3736unsigned int change;37373738while(--name->len && name->buf[name->len] !='/')3739;/* scan backwards */3740if(!name->len)3741break;3742 name->buf[name->len] ='\0';3743 change =check_symlink_changes(name->buf);3744if(change & SYMLINK_IN_RESULT)3745return1;3746if(change & SYMLINK_GOES_AWAY)3747/*3748 * This cannot be "return 0", because we may3749 * see a new one created at a higher level.3750 */3751continue;37523753/* otherwise, check the preimage */3754if(state->check_index) {3755struct cache_entry *ce;37563757 ce =cache_file_exists(name->buf, name->len, ignore_case);3758if(ce &&S_ISLNK(ce->ce_mode))3759return1;3760}else{3761struct stat st;3762if(!lstat(name->buf, &st) &&S_ISLNK(st.st_mode))3763return1;3764}3765}while(1);3766return0;3767}37683769static intpath_is_beyond_symlink(struct apply_state *state,const char*name_)3770{3771int ret;3772struct strbuf name = STRBUF_INIT;37733774assert(*name_ !='\0');3775strbuf_addstr(&name, name_);3776 ret =path_is_beyond_symlink_1(state, &name);3777strbuf_release(&name);37783779return ret;3780}37813782static voiddie_on_unsafe_path(struct patch *patch)3783{3784const char*old_name = NULL;3785const char*new_name = NULL;3786if(patch->is_delete)3787 old_name = patch->old_name;3788else if(!patch->is_new && !patch->is_copy)3789 old_name = patch->old_name;3790if(!patch->is_delete)3791 new_name = patch->new_name;37923793if(old_name && !verify_path(old_name))3794die(_("invalid path '%s'"), old_name);3795if(new_name && !verify_path(new_name))3796die(_("invalid path '%s'"), new_name);3797}37983799/*3800 * Check and apply the patch in-core; leave the result in patch->result3801 * for the caller to write it out to the final destination.3802 */3803static intcheck_patch(struct apply_state *state,struct patch *patch)3804{3805struct stat st;3806const char*old_name = patch->old_name;3807const char*new_name = patch->new_name;3808const char*name = old_name ? old_name : new_name;3809struct cache_entry *ce = NULL;3810struct patch *tpatch;3811int ok_if_exists;3812int status;38133814 patch->rejected =1;/* we will drop this after we succeed */38153816 status =check_preimage(state, patch, &ce, &st);3817if(status)3818return status;3819 old_name = patch->old_name;38203821/*3822 * A type-change diff is always split into a patch to delete3823 * old, immediately followed by a patch to create new (see3824 * diff.c::run_diff()); in such a case it is Ok that the entry3825 * to be deleted by the previous patch is still in the working3826 * tree and in the index.3827 *3828 * A patch to swap-rename between A and B would first rename A3829 * to B and then rename B to A. While applying the first one,3830 * the presence of B should not stop A from getting renamed to3831 * B; ask to_be_deleted() about the later rename. Removal of3832 * B and rename from A to B is handled the same way by asking3833 * was_deleted().3834 */3835if((tpatch =in_fn_table(new_name)) &&3836(was_deleted(tpatch) ||to_be_deleted(tpatch)))3837 ok_if_exists =1;3838else3839 ok_if_exists =0;38403841if(new_name &&3842((0< patch->is_new) || patch->is_rename || patch->is_copy)) {3843int err =check_to_create(state, new_name, ok_if_exists);38443845if(err && state->threeway) {3846 patch->direct_to_threeway =1;3847}else switch(err) {3848case0:3849break;/* happy */3850case EXISTS_IN_INDEX:3851returnerror(_("%s: already exists in index"), new_name);3852break;3853case EXISTS_IN_WORKTREE:3854returnerror(_("%s: already exists in working directory"),3855 new_name);3856default:3857return err;3858}38593860if(!patch->new_mode) {3861if(0< patch->is_new)3862 patch->new_mode = S_IFREG |0644;3863else3864 patch->new_mode = patch->old_mode;3865}3866}38673868if(new_name && old_name) {3869int same = !strcmp(old_name, new_name);3870if(!patch->new_mode)3871 patch->new_mode = patch->old_mode;3872if((patch->old_mode ^ patch->new_mode) & S_IFMT) {3873if(same)3874returnerror(_("new mode (%o) of%sdoes not "3875"match old mode (%o)"),3876 patch->new_mode, new_name,3877 patch->old_mode);3878else3879returnerror(_("new mode (%o) of%sdoes not "3880"match old mode (%o) of%s"),3881 patch->new_mode, new_name,3882 patch->old_mode, old_name);3883}3884}38853886if(!state->unsafe_paths)3887die_on_unsafe_path(patch);38883889/*3890 * An attempt to read from or delete a path that is beyond a3891 * symbolic link will be prevented by load_patch_target() that3892 * is called at the beginning of apply_data() so we do not3893 * have to worry about a patch marked with "is_delete" bit3894 * here. We however need to make sure that the patch result3895 * is not deposited to a path that is beyond a symbolic link3896 * here.3897 */3898if(!patch->is_delete &&path_is_beyond_symlink(state, patch->new_name))3899returnerror(_("affected file '%s' is beyond a symbolic link"),3900 patch->new_name);39013902if(apply_data(state, patch, &st, ce) <0)3903returnerror(_("%s: patch does not apply"), name);3904 patch->rejected =0;3905return0;3906}39073908static intcheck_patch_list(struct apply_state *state,struct patch *patch)3909{3910int err =0;39113912prepare_symlink_changes(patch);3913prepare_fn_table(patch);3914while(patch) {3915if(state->apply_verbosely)3916say_patch_name(stderr,3917_("Checking patch%s..."), patch);3918 err |=check_patch(state, patch);3919 patch = patch->next;3920}3921return err;3922}39233924/* This function tries to read the sha1 from the current index */3925static intget_current_sha1(const char*path,unsigned char*sha1)3926{3927int pos;39283929if(read_cache() <0)3930return-1;3931 pos =cache_name_pos(path,strlen(path));3932if(pos <0)3933return-1;3934hashcpy(sha1, active_cache[pos]->sha1);3935return0;3936}39373938static intpreimage_sha1_in_gitlink_patch(struct patch *p,unsigned char sha1[20])3939{3940/*3941 * A usable gitlink patch has only one fragment (hunk) that looks like:3942 * @@ -1 +1 @@3943 * -Subproject commit <old sha1>3944 * +Subproject commit <new sha1>3945 * or3946 * @@ -1 +0,0 @@3947 * -Subproject commit <old sha1>3948 * for a removal patch.3949 */3950struct fragment *hunk = p->fragments;3951static const char heading[] ="-Subproject commit ";3952char*preimage;39533954if(/* does the patch have only one hunk? */3955 hunk && !hunk->next &&3956/* is its preimage one line? */3957 hunk->oldpos ==1&& hunk->oldlines ==1&&3958/* does preimage begin with the heading? */3959(preimage =memchr(hunk->patch,'\n', hunk->size)) != NULL &&3960starts_with(++preimage, heading) &&3961/* does it record full SHA-1? */3962!get_sha1_hex(preimage +sizeof(heading) -1, sha1) &&3963 preimage[sizeof(heading) +40-1] =='\n'&&3964/* does the abbreviated name on the index line agree with it? */3965starts_with(preimage +sizeof(heading) -1, p->old_sha1_prefix))3966return0;/* it all looks fine */39673968/* we may have full object name on the index line */3969returnget_sha1_hex(p->old_sha1_prefix, sha1);3970}39713972/* Build an index that contains the just the files needed for a 3way merge */3973static voidbuild_fake_ancestor(struct patch *list,const char*filename)3974{3975struct patch *patch;3976struct index_state result = { NULL };3977static struct lock_file lock;39783979/* Once we start supporting the reverse patch, it may be3980 * worth showing the new sha1 prefix, but until then...3981 */3982for(patch = list; patch; patch = patch->next) {3983unsigned char sha1[20];3984struct cache_entry *ce;3985const char*name;39863987 name = patch->old_name ? patch->old_name : patch->new_name;3988if(0< patch->is_new)3989continue;39903991if(S_ISGITLINK(patch->old_mode)) {3992if(!preimage_sha1_in_gitlink_patch(patch, sha1))3993;/* ok, the textual part looks sane */3994else3995die("sha1 information is lacking or useless for submodule%s",3996 name);3997}else if(!get_sha1_blob(patch->old_sha1_prefix, sha1)) {3998;/* ok */3999}else if(!patch->lines_added && !patch->lines_deleted) {4000/* mode-only change: update the current */4001if(get_current_sha1(patch->old_name, sha1))4002die("mode change for%s, which is not "4003"in current HEAD", name);4004}else4005die("sha1 information is lacking or useless "4006"(%s).", name);40074008 ce =make_cache_entry(patch->old_mode, sha1, name,0,0);4009if(!ce)4010die(_("make_cache_entry failed for path '%s'"), name);4011if(add_index_entry(&result, ce, ADD_CACHE_OK_TO_ADD))4012die("Could not add%sto temporary index", name);4013}40144015hold_lock_file_for_update(&lock, filename, LOCK_DIE_ON_ERROR);4016if(write_locked_index(&result, &lock, COMMIT_LOCK))4017die("Could not write temporary index to%s", filename);40184019discard_index(&result);4020}40214022static voidstat_patch_list(struct patch *patch)4023{4024int files, adds, dels;40254026for(files = adds = dels =0; patch ; patch = patch->next) {4027 files++;4028 adds += patch->lines_added;4029 dels += patch->lines_deleted;4030show_stats(patch);4031}40324033print_stat_summary(stdout, files, adds, dels);4034}40354036static voidnumstat_patch_list(struct apply_state *state,4037struct patch *patch)4038{4039for( ; patch; patch = patch->next) {4040const char*name;4041 name = patch->new_name ? patch->new_name : patch->old_name;4042if(patch->is_binary)4043printf("-\t-\t");4044else4045printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);4046write_name_quoted(name, stdout, state->line_termination);4047}4048}40494050static voidshow_file_mode_name(const char*newdelete,unsigned int mode,const char*name)4051{4052if(mode)4053printf("%smode%06o%s\n", newdelete, mode, name);4054else4055printf("%s %s\n", newdelete, name);4056}40574058static voidshow_mode_change(struct patch *p,int show_name)4059{4060if(p->old_mode && p->new_mode && p->old_mode != p->new_mode) {4061if(show_name)4062printf(" mode change%06o =>%06o%s\n",4063 p->old_mode, p->new_mode, p->new_name);4064else4065printf(" mode change%06o =>%06o\n",4066 p->old_mode, p->new_mode);4067}4068}40694070static voidshow_rename_copy(struct patch *p)4071{4072const char*renamecopy = p->is_rename ?"rename":"copy";4073const char*old, *new;40744075/* Find common prefix */4076 old = p->old_name;4077new= p->new_name;4078while(1) {4079const char*slash_old, *slash_new;4080 slash_old =strchr(old,'/');4081 slash_new =strchr(new,'/');4082if(!slash_old ||4083!slash_new ||4084 slash_old - old != slash_new -new||4085memcmp(old,new, slash_new -new))4086break;4087 old = slash_old +1;4088new= slash_new +1;4089}4090/* p->old_name thru old is the common prefix, and old and new4091 * through the end of names are renames4092 */4093if(old != p->old_name)4094printf("%s%.*s{%s=>%s} (%d%%)\n", renamecopy,4095(int)(old - p->old_name), p->old_name,4096 old,new, p->score);4097else4098printf("%s %s=>%s(%d%%)\n", renamecopy,4099 p->old_name, p->new_name, p->score);4100show_mode_change(p,0);4101}41024103static voidsummary_patch_list(struct patch *patch)4104{4105struct patch *p;41064107for(p = patch; p; p = p->next) {4108if(p->is_new)4109show_file_mode_name("create", p->new_mode, p->new_name);4110else if(p->is_delete)4111show_file_mode_name("delete", p->old_mode, p->old_name);4112else{4113if(p->is_rename || p->is_copy)4114show_rename_copy(p);4115else{4116if(p->score) {4117printf(" rewrite%s(%d%%)\n",4118 p->new_name, p->score);4119show_mode_change(p,0);4120}4121else4122show_mode_change(p,1);4123}4124}4125}4126}41274128static voidpatch_stats(struct patch *patch)4129{4130int lines = patch->lines_added + patch->lines_deleted;41314132if(lines > max_change)4133 max_change = lines;4134if(patch->old_name) {4135int len =quote_c_style(patch->old_name, NULL, NULL,0);4136if(!len)4137 len =strlen(patch->old_name);4138if(len > max_len)4139 max_len = len;4140}4141if(patch->new_name) {4142int len =quote_c_style(patch->new_name, NULL, NULL,0);4143if(!len)4144 len =strlen(patch->new_name);4145if(len > max_len)4146 max_len = len;4147}4148}41494150static voidremove_file(struct apply_state *state,struct patch *patch,int rmdir_empty)4151{4152if(state->update_index) {4153if(remove_file_from_cache(patch->old_name) <0)4154die(_("unable to remove%sfrom index"), patch->old_name);4155}4156if(!state->cached) {4157if(!remove_or_warn(patch->old_mode, patch->old_name) && rmdir_empty) {4158remove_path(patch->old_name);4159}4160}4161}41624163static voidadd_index_file(struct apply_state *state,4164const char*path,4165unsigned mode,4166void*buf,4167unsigned long size)4168{4169struct stat st;4170struct cache_entry *ce;4171int namelen =strlen(path);4172unsigned ce_size =cache_entry_size(namelen);41734174if(!state->update_index)4175return;41764177 ce =xcalloc(1, ce_size);4178memcpy(ce->name, path, namelen);4179 ce->ce_mode =create_ce_mode(mode);4180 ce->ce_flags =create_ce_flags(0);4181 ce->ce_namelen = namelen;4182if(S_ISGITLINK(mode)) {4183const char*s;41844185if(!skip_prefix(buf,"Subproject commit ", &s) ||4186get_sha1_hex(s, ce->sha1))4187die(_("corrupt patch for submodule%s"), path);4188}else{4189if(!state->cached) {4190if(lstat(path, &st) <0)4191die_errno(_("unable to stat newly created file '%s'"),4192 path);4193fill_stat_cache_info(ce, &st);4194}4195if(write_sha1_file(buf, size, blob_type, ce->sha1) <0)4196die(_("unable to create backing store for newly created file%s"), path);4197}4198if(add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) <0)4199die(_("unable to add cache entry for%s"), path);4200}42014202static inttry_create_file(const char*path,unsigned int mode,const char*buf,unsigned long size)4203{4204int fd;4205struct strbuf nbuf = STRBUF_INIT;42064207if(S_ISGITLINK(mode)) {4208struct stat st;4209if(!lstat(path, &st) &&S_ISDIR(st.st_mode))4210return0;4211returnmkdir(path,0777);4212}42134214if(has_symlinks &&S_ISLNK(mode))4215/* Although buf:size is counted string, it also is NUL4216 * terminated.4217 */4218returnsymlink(buf, path);42194220 fd =open(path, O_CREAT | O_EXCL | O_WRONLY, (mode &0100) ?0777:0666);4221if(fd <0)4222return-1;42234224if(convert_to_working_tree(path, buf, size, &nbuf)) {4225 size = nbuf.len;4226 buf = nbuf.buf;4227}4228write_or_die(fd, buf, size);4229strbuf_release(&nbuf);42304231if(close(fd) <0)4232die_errno(_("closing file '%s'"), path);4233return0;4234}42354236/*4237 * We optimistically assume that the directories exist,4238 * which is true 99% of the time anyway. If they don't,4239 * we create them and try again.4240 */4241static voidcreate_one_file(struct apply_state *state,4242char*path,4243unsigned mode,4244const char*buf,4245unsigned long size)4246{4247if(state->cached)4248return;4249if(!try_create_file(path, mode, buf, size))4250return;42514252if(errno == ENOENT) {4253if(safe_create_leading_directories(path))4254return;4255if(!try_create_file(path, mode, buf, size))4256return;4257}42584259if(errno == EEXIST || errno == EACCES) {4260/* We may be trying to create a file where a directory4261 * used to be.4262 */4263struct stat st;4264if(!lstat(path, &st) && (!S_ISDIR(st.st_mode) || !rmdir(path)))4265 errno = EEXIST;4266}42674268if(errno == EEXIST) {4269unsigned int nr =getpid();42704271for(;;) {4272char newpath[PATH_MAX];4273mksnpath(newpath,sizeof(newpath),"%s~%u", path, nr);4274if(!try_create_file(newpath, mode, buf, size)) {4275if(!rename(newpath, path))4276return;4277unlink_or_warn(newpath);4278break;4279}4280if(errno != EEXIST)4281break;4282++nr;4283}4284}4285die_errno(_("unable to write file '%s' mode%o"), path, mode);4286}42874288static voidadd_conflicted_stages_file(struct apply_state *state,4289struct patch *patch)4290{4291int stage, namelen;4292unsigned ce_size, mode;4293struct cache_entry *ce;42944295if(!state->update_index)4296return;4297 namelen =strlen(patch->new_name);4298 ce_size =cache_entry_size(namelen);4299 mode = patch->new_mode ? patch->new_mode : (S_IFREG |0644);43004301remove_file_from_cache(patch->new_name);4302for(stage =1; stage <4; stage++) {4303if(is_null_oid(&patch->threeway_stage[stage -1]))4304continue;4305 ce =xcalloc(1, ce_size);4306memcpy(ce->name, patch->new_name, namelen);4307 ce->ce_mode =create_ce_mode(mode);4308 ce->ce_flags =create_ce_flags(stage);4309 ce->ce_namelen = namelen;4310hashcpy(ce->sha1, patch->threeway_stage[stage -1].hash);4311if(add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) <0)4312die(_("unable to add cache entry for%s"), patch->new_name);4313}4314}43154316static voidcreate_file(struct apply_state *state,struct patch *patch)4317{4318char*path = patch->new_name;4319unsigned mode = patch->new_mode;4320unsigned long size = patch->resultsize;4321char*buf = patch->result;43224323if(!mode)4324 mode = S_IFREG |0644;4325create_one_file(state, path, mode, buf, size);43264327if(patch->conflicted_threeway)4328add_conflicted_stages_file(state, patch);4329else4330add_index_file(state, path, mode, buf, size);4331}43324333/* phase zero is to remove, phase one is to create */4334static voidwrite_out_one_result(struct apply_state *state,4335struct patch *patch,4336int phase)4337{4338if(patch->is_delete >0) {4339if(phase ==0)4340remove_file(state, patch,1);4341return;4342}4343if(patch->is_new >0|| patch->is_copy) {4344if(phase ==1)4345create_file(state, patch);4346return;4347}4348/*4349 * Rename or modification boils down to the same4350 * thing: remove the old, write the new4351 */4352if(phase ==0)4353remove_file(state, patch, patch->is_rename);4354if(phase ==1)4355create_file(state, patch);4356}43574358static intwrite_out_one_reject(struct apply_state *state,struct patch *patch)4359{4360FILE*rej;4361char namebuf[PATH_MAX];4362struct fragment *frag;4363int cnt =0;4364struct strbuf sb = STRBUF_INIT;43654366for(cnt =0, frag = patch->fragments; frag; frag = frag->next) {4367if(!frag->rejected)4368continue;4369 cnt++;4370}43714372if(!cnt) {4373if(state->apply_verbosely)4374say_patch_name(stderr,4375_("Applied patch%scleanly."), patch);4376return0;4377}43784379/* This should not happen, because a removal patch that leaves4380 * contents are marked "rejected" at the patch level.4381 */4382if(!patch->new_name)4383die(_("internal error"));43844385/* Say this even without --verbose */4386strbuf_addf(&sb,Q_("Applying patch %%swith%dreject...",4387"Applying patch %%swith%drejects...",4388 cnt),4389 cnt);4390say_patch_name(stderr, sb.buf, patch);4391strbuf_release(&sb);43924393 cnt =strlen(patch->new_name);4394if(ARRAY_SIZE(namebuf) <= cnt +5) {4395 cnt =ARRAY_SIZE(namebuf) -5;4396warning(_("truncating .rej filename to %.*s.rej"),4397 cnt -1, patch->new_name);4398}4399memcpy(namebuf, patch->new_name, cnt);4400memcpy(namebuf + cnt,".rej",5);44014402 rej =fopen(namebuf,"w");4403if(!rej)4404returnerror(_("cannot open%s:%s"), namebuf,strerror(errno));44054406/* Normal git tools never deal with .rej, so do not pretend4407 * this is a git patch by saying --git or giving extended4408 * headers. While at it, maybe please "kompare" that wants4409 * the trailing TAB and some garbage at the end of line ;-).4410 */4411fprintf(rej,"diff a/%sb/%s\t(rejected hunks)\n",4412 patch->new_name, patch->new_name);4413for(cnt =1, frag = patch->fragments;4414 frag;4415 cnt++, frag = frag->next) {4416if(!frag->rejected) {4417fprintf_ln(stderr,_("Hunk #%dapplied cleanly."), cnt);4418continue;4419}4420fprintf_ln(stderr,_("Rejected hunk #%d."), cnt);4421fprintf(rej,"%.*s", frag->size, frag->patch);4422if(frag->patch[frag->size-1] !='\n')4423fputc('\n', rej);4424}4425fclose(rej);4426return-1;4427}44284429static intwrite_out_results(struct apply_state *state,struct patch *list)4430{4431int phase;4432int errs =0;4433struct patch *l;4434struct string_list cpath = STRING_LIST_INIT_DUP;44354436for(phase =0; phase <2; phase++) {4437 l = list;4438while(l) {4439if(l->rejected)4440 errs =1;4441else{4442write_out_one_result(state, l, phase);4443if(phase ==1) {4444if(write_out_one_reject(state, l))4445 errs =1;4446if(l->conflicted_threeway) {4447string_list_append(&cpath, l->new_name);4448 errs =1;4449}4450}4451}4452 l = l->next;4453}4454}44554456if(cpath.nr) {4457struct string_list_item *item;44584459string_list_sort(&cpath);4460for_each_string_list_item(item, &cpath)4461fprintf(stderr,"U%s\n", item->string);4462string_list_clear(&cpath,0);44634464rerere(0);4465}44664467return errs;4468}44694470static struct lock_file lock_file;44714472#define INACCURATE_EOF (1<<0)4473#define RECOUNT (1<<1)44744475static intapply_patch(struct apply_state *state,4476int fd,4477const char*filename,4478int options)4479{4480size_t offset;4481struct strbuf buf = STRBUF_INIT;/* owns the patch text */4482struct patch *list = NULL, **listp = &list;4483int skipped_patch =0;44844485 state->patch_input_file = filename;4486read_patch_file(&buf, fd);4487 offset =0;4488while(offset < buf.len) {4489struct patch *patch;4490int nr;44914492 patch =xcalloc(1,sizeof(*patch));4493 patch->inaccurate_eof = !!(options & INACCURATE_EOF);4494 patch->recount = !!(options & RECOUNT);4495 nr =parse_chunk(state, buf.buf + offset, buf.len - offset, patch);4496if(nr <0) {4497free_patch(patch);4498break;4499}4500if(state->apply_in_reverse)4501reverse_patches(patch);4502if(use_patch(state, patch)) {4503patch_stats(patch);4504*listp = patch;4505 listp = &patch->next;4506}4507else{4508if(state->apply_verbosely)4509say_patch_name(stderr,_("Skipped patch '%s'."), patch);4510free_patch(patch);4511 skipped_patch++;4512}4513 offset += nr;4514}45154516if(!list && !skipped_patch)4517die(_("unrecognized input"));45184519if(whitespace_error && (ws_error_action == die_on_ws_error))4520 state->apply =0;45214522 state->update_index = state->check_index && state->apply;4523if(state->update_index && newfd <0)4524 newfd =hold_locked_index(&lock_file,1);45254526if(state->check_index) {4527if(read_cache() <0)4528die(_("unable to read index file"));4529}45304531if((state->check || state->apply) &&4532check_patch_list(state, list) <0&&4533!state->apply_with_reject)4534exit(1);45354536if(state->apply &&write_out_results(state, list)) {4537if(state->apply_with_reject)4538exit(1);4539/* with --3way, we still need to write the index out */4540return1;4541}45424543if(state->fake_ancestor)4544build_fake_ancestor(list, state->fake_ancestor);45454546if(state->diffstat)4547stat_patch_list(list);45484549if(state->numstat)4550numstat_patch_list(state, list);45514552if(state->summary)4553summary_patch_list(list);45544555free_patch_list(list);4556strbuf_release(&buf);4557string_list_clear(&fn_table,0);4558return0;4559}45604561static voidgit_apply_config(void)4562{4563git_config_get_string_const("apply.whitespace", &apply_default_whitespace);4564git_config_get_string_const("apply.ignorewhitespace", &apply_default_ignorewhitespace);4565git_config(git_default_config, NULL);4566}45674568static intoption_parse_exclude(const struct option *opt,4569const char*arg,int unset)4570{4571struct apply_state *state = opt->value;4572add_name_limit(state, arg,1);4573return0;4574}45754576static intoption_parse_include(const struct option *opt,4577const char*arg,int unset)4578{4579struct apply_state *state = opt->value;4580add_name_limit(state, arg,0);4581 state->has_include =1;4582return0;4583}45844585static intoption_parse_p(const struct option *opt,4586const char*arg,4587int unset)4588{4589struct apply_state *state = opt->value;4590 state->p_value =atoi(arg);4591 p_value_known =1;4592return0;4593}45944595static intoption_parse_space_change(const struct option *opt,4596const char*arg,int unset)4597{4598if(unset)4599 ws_ignore_action = ignore_ws_none;4600else4601 ws_ignore_action = ignore_ws_change;4602return0;4603}46044605static intoption_parse_whitespace(const struct option *opt,4606const char*arg,int unset)4607{4608const char**whitespace_option = opt->value;46094610*whitespace_option = arg;4611parse_whitespace_option(arg);4612return0;4613}46144615static intoption_parse_directory(const struct option *opt,4616const char*arg,int unset)4617{4618strbuf_reset(&root);4619strbuf_addstr(&root, arg);4620strbuf_complete(&root,'/');4621return0;4622}46234624static voidinit_apply_state(struct apply_state *state,const char*prefix)4625{4626memset(state,0,sizeof(*state));4627 state->prefix = prefix;4628 state->prefix_length = state->prefix ?strlen(state->prefix) :0;4629 state->apply =1;4630 state->line_termination ='\n';4631 state->p_value =1;4632 state->p_context = UINT_MAX;46334634git_apply_config();4635if(apply_default_whitespace)4636parse_whitespace_option(apply_default_whitespace);4637if(apply_default_ignorewhitespace)4638parse_ignorewhitespace_option(apply_default_ignorewhitespace);4639}46404641static voidclear_apply_state(struct apply_state *state)4642{4643string_list_clear(&state->limit_by_name,0);4644}46454646intcmd_apply(int argc,const char**argv,const char*prefix)4647{4648int i;4649int errs =0;4650int is_not_gitdir = !startup_info->have_repository;4651int force_apply =0;4652int options =0;4653int read_stdin =1;4654struct apply_state state;46554656const char*whitespace_option = NULL;46574658struct option builtin_apply_options[] = {4659{ OPTION_CALLBACK,0,"exclude", &state,N_("path"),4660N_("don't apply changes matching the given path"),46610, option_parse_exclude },4662{ OPTION_CALLBACK,0,"include", &state,N_("path"),4663N_("apply changes matching the given path"),46640, option_parse_include },4665{ OPTION_CALLBACK,'p', NULL, &state,N_("num"),4666N_("remove <num> leading slashes from traditional diff paths"),46670, option_parse_p },4668OPT_BOOL(0,"no-add", &state.no_add,4669N_("ignore additions made by the patch")),4670OPT_BOOL(0,"stat", &state.diffstat,4671N_("instead of applying the patch, output diffstat for the input")),4672OPT_NOOP_NOARG(0,"allow-binary-replacement"),4673OPT_NOOP_NOARG(0,"binary"),4674OPT_BOOL(0,"numstat", &state.numstat,4675N_("show number of added and deleted lines in decimal notation")),4676OPT_BOOL(0,"summary", &state.summary,4677N_("instead of applying the patch, output a summary for the input")),4678OPT_BOOL(0,"check", &state.check,4679N_("instead of applying the patch, see if the patch is applicable")),4680OPT_BOOL(0,"index", &state.check_index,4681N_("make sure the patch is applicable to the current index")),4682OPT_BOOL(0,"cached", &state.cached,4683N_("apply a patch without touching the working tree")),4684OPT_BOOL(0,"unsafe-paths", &state.unsafe_paths,4685N_("accept a patch that touches outside the working area")),4686OPT_BOOL(0,"apply", &force_apply,4687N_("also apply the patch (use with --stat/--summary/--check)")),4688OPT_BOOL('3',"3way", &state.threeway,4689N_("attempt three-way merge if a patch does not apply")),4690OPT_FILENAME(0,"build-fake-ancestor", &state.fake_ancestor,4691N_("build a temporary index based on embedded index information")),4692/* Think twice before adding "--nul" synonym to this */4693OPT_SET_INT('z', NULL, &state.line_termination,4694N_("paths are separated with NUL character"),'\0'),4695OPT_INTEGER('C', NULL, &state.p_context,4696N_("ensure at least <n> lines of context match")),4697{ OPTION_CALLBACK,0,"whitespace", &whitespace_option,N_("action"),4698N_("detect new or modified lines that have whitespace errors"),46990, option_parse_whitespace },4700{ OPTION_CALLBACK,0,"ignore-space-change", NULL, NULL,4701N_("ignore changes in whitespace when finding context"),4702 PARSE_OPT_NOARG, option_parse_space_change },4703{ OPTION_CALLBACK,0,"ignore-whitespace", NULL, NULL,4704N_("ignore changes in whitespace when finding context"),4705 PARSE_OPT_NOARG, option_parse_space_change },4706OPT_BOOL('R',"reverse", &state.apply_in_reverse,4707N_("apply the patch in reverse")),4708OPT_BOOL(0,"unidiff-zero", &state.unidiff_zero,4709N_("don't expect at least one line of context")),4710OPT_BOOL(0,"reject", &state.apply_with_reject,4711N_("leave the rejected hunks in corresponding *.rej files")),4712OPT_BOOL(0,"allow-overlap", &state.allow_overlap,4713N_("allow overlapping hunks")),4714OPT__VERBOSE(&state.apply_verbosely,N_("be verbose")),4715OPT_BIT(0,"inaccurate-eof", &options,4716N_("tolerate incorrectly detected missing new-line at the end of file"),4717 INACCURATE_EOF),4718OPT_BIT(0,"recount", &options,4719N_("do not trust the line counts in the hunk headers"),4720 RECOUNT),4721{ OPTION_CALLBACK,0,"directory", NULL,N_("root"),4722N_("prepend <root> to all filenames"),47230, option_parse_directory },4724OPT_END()4725};47264727init_apply_state(&state, prefix);47284729 argc =parse_options(argc, argv, state.prefix, builtin_apply_options,4730 apply_usage,0);47314732if(state.apply_with_reject && state.threeway)4733die("--reject and --3way cannot be used together.");4734if(state.cached && state.threeway)4735die("--cached and --3way cannot be used together.");4736if(state.threeway) {4737if(is_not_gitdir)4738die(_("--3way outside a repository"));4739 state.check_index =1;4740}4741if(state.apply_with_reject)4742 state.apply = state.apply_verbosely =1;4743if(!force_apply && (state.diffstat || state.numstat || state.summary || state.check || state.fake_ancestor))4744 state.apply =0;4745if(state.check_index && is_not_gitdir)4746die(_("--index outside a repository"));4747if(state.cached) {4748if(is_not_gitdir)4749die(_("--cached outside a repository"));4750 state.check_index =1;4751}4752if(state.check_index)4753 state.unsafe_paths =0;47544755for(i =0; i < argc; i++) {4756const char*arg = argv[i];4757int fd;47584759if(!strcmp(arg,"-")) {4760 errs |=apply_patch(&state,0,"<stdin>", options);4761 read_stdin =0;4762continue;4763}else if(0< state.prefix_length)4764 arg =prefix_filename(state.prefix,4765 state.prefix_length,4766 arg);47674768 fd =open(arg, O_RDONLY);4769if(fd <0)4770die_errno(_("can't open patch '%s'"), arg);4771 read_stdin =0;4772set_default_whitespace_mode(&state, whitespace_option);4773 errs |=apply_patch(&state, fd, arg, options);4774close(fd);4775}4776set_default_whitespace_mode(&state, whitespace_option);4777if(read_stdin)4778 errs |=apply_patch(&state,0,"<stdin>", options);4779if(whitespace_error) {4780if(squelch_whitespace_errors &&4781 squelch_whitespace_errors < whitespace_error) {4782int squelched =4783 whitespace_error - squelch_whitespace_errors;4784warning(Q_("squelched%dwhitespace error",4785"squelched%dwhitespace errors",4786 squelched),4787 squelched);4788}4789if(ws_error_action == die_on_ws_error)4790die(Q_("%dline adds whitespace errors.",4791"%dlines add whitespace errors.",4792 whitespace_error),4793 whitespace_error);4794if(applied_after_fixing_ws && state.apply)4795warning("%dline%sapplied after"4796" fixing whitespace errors.",4797 applied_after_fixing_ws,4798 applied_after_fixing_ws ==1?"":"s");4799else if(whitespace_error)4800warning(Q_("%dline adds whitespace errors.",4801"%dlines add whitespace errors.",4802 whitespace_error),4803 whitespace_error);4804}48054806if(state.update_index) {4807if(write_locked_index(&the_index, &lock_file, COMMIT_LOCK))4808die(_("Unable to write new index file"));4809}48104811clear_apply_state(&state);48124813return!!errs;4814}