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 10#include"cache.h" 11#include"config.h" 12#include"blob.h" 13#include"delta.h" 14#include"diff.h" 15#include"dir.h" 16#include"xdiff-interface.h" 17#include"ll-merge.h" 18#include"lockfile.h" 19#include"parse-options.h" 20#include"quote.h" 21#include"rerere.h" 22#include"apply.h" 23 24static voidgit_apply_config(void) 25{ 26git_config_get_string_const("apply.whitespace", &apply_default_whitespace); 27git_config_get_string_const("apply.ignorewhitespace", &apply_default_ignorewhitespace); 28git_config(git_default_config, NULL); 29} 30 31static intparse_whitespace_option(struct apply_state *state,const char*option) 32{ 33if(!option) { 34 state->ws_error_action = warn_on_ws_error; 35return0; 36} 37if(!strcmp(option,"warn")) { 38 state->ws_error_action = warn_on_ws_error; 39return0; 40} 41if(!strcmp(option,"nowarn")) { 42 state->ws_error_action = nowarn_ws_error; 43return0; 44} 45if(!strcmp(option,"error")) { 46 state->ws_error_action = die_on_ws_error; 47return0; 48} 49if(!strcmp(option,"error-all")) { 50 state->ws_error_action = die_on_ws_error; 51 state->squelch_whitespace_errors =0; 52return0; 53} 54if(!strcmp(option,"strip") || !strcmp(option,"fix")) { 55 state->ws_error_action = correct_ws_error; 56return0; 57} 58returnerror(_("unrecognized whitespace option '%s'"), option); 59} 60 61static intparse_ignorewhitespace_option(struct apply_state *state, 62const char*option) 63{ 64if(!option || !strcmp(option,"no") || 65!strcmp(option,"false") || !strcmp(option,"never") || 66!strcmp(option,"none")) { 67 state->ws_ignore_action = ignore_ws_none; 68return0; 69} 70if(!strcmp(option,"change")) { 71 state->ws_ignore_action = ignore_ws_change; 72return0; 73} 74returnerror(_("unrecognized whitespace ignore option '%s'"), option); 75} 76 77intinit_apply_state(struct apply_state *state, 78const char*prefix, 79struct lock_file *lock_file) 80{ 81memset(state,0,sizeof(*state)); 82 state->prefix = prefix; 83 state->prefix_length = state->prefix ?strlen(state->prefix) :0; 84 state->lock_file = lock_file; 85 state->newfd = -1; 86 state->apply =1; 87 state->line_termination ='\n'; 88 state->p_value =1; 89 state->p_context = UINT_MAX; 90 state->squelch_whitespace_errors =5; 91 state->ws_error_action = warn_on_ws_error; 92 state->ws_ignore_action = ignore_ws_none; 93 state->linenr =1; 94string_list_init(&state->fn_table,0); 95string_list_init(&state->limit_by_name,0); 96string_list_init(&state->symlink_changes,0); 97strbuf_init(&state->root,0); 98 99git_apply_config(); 100if(apply_default_whitespace &&parse_whitespace_option(state, apply_default_whitespace)) 101return-1; 102if(apply_default_ignorewhitespace &&parse_ignorewhitespace_option(state, apply_default_ignorewhitespace)) 103return-1; 104return0; 105} 106 107voidclear_apply_state(struct apply_state *state) 108{ 109string_list_clear(&state->limit_by_name,0); 110string_list_clear(&state->symlink_changes,0); 111strbuf_release(&state->root); 112 113/* &state->fn_table is cleared at the end of apply_patch() */ 114} 115 116static voidmute_routine(const char*msg,va_list params) 117{ 118/* do nothing */ 119} 120 121intcheck_apply_state(struct apply_state *state,int force_apply) 122{ 123int is_not_gitdir = !startup_info->have_repository; 124 125if(state->apply_with_reject && state->threeway) 126returnerror(_("--reject and --3way cannot be used together.")); 127if(state->cached && state->threeway) 128returnerror(_("--cached and --3way cannot be used together.")); 129if(state->threeway) { 130if(is_not_gitdir) 131returnerror(_("--3way outside a repository")); 132 state->check_index =1; 133} 134if(state->apply_with_reject) { 135 state->apply =1; 136if(state->apply_verbosity == verbosity_normal) 137 state->apply_verbosity = verbosity_verbose; 138} 139if(!force_apply && (state->diffstat || state->numstat || state->summary || state->check || state->fake_ancestor)) 140 state->apply =0; 141if(state->check_index && is_not_gitdir) 142returnerror(_("--index outside a repository")); 143if(state->cached) { 144if(is_not_gitdir) 145returnerror(_("--cached outside a repository")); 146 state->check_index =1; 147} 148if(state->check_index) 149 state->unsafe_paths =0; 150if(!state->lock_file) 151returnerror("BUG: state->lock_file should not be NULL"); 152 153if(state->apply_verbosity <= verbosity_silent) { 154 state->saved_error_routine =get_error_routine(); 155 state->saved_warn_routine =get_warn_routine(); 156set_error_routine(mute_routine); 157set_warn_routine(mute_routine); 158} 159 160return0; 161} 162 163static voidset_default_whitespace_mode(struct apply_state *state) 164{ 165if(!state->whitespace_option && !apply_default_whitespace) 166 state->ws_error_action = (state->apply ? warn_on_ws_error : nowarn_ws_error); 167} 168 169/* 170 * This represents one "hunk" from a patch, starting with 171 * "@@ -oldpos,oldlines +newpos,newlines @@" marker. The 172 * patch text is pointed at by patch, and its byte length 173 * is stored in size. leading and trailing are the number 174 * of context lines. 175 */ 176struct fragment { 177unsigned long leading, trailing; 178unsigned long oldpos, oldlines; 179unsigned long newpos, newlines; 180/* 181 * 'patch' is usually borrowed from buf in apply_patch(), 182 * but some codepaths store an allocated buffer. 183 */ 184const char*patch; 185unsigned free_patch:1, 186 rejected:1; 187int size; 188int linenr; 189struct fragment *next; 190}; 191 192/* 193 * When dealing with a binary patch, we reuse "leading" field 194 * to store the type of the binary hunk, either deflated "delta" 195 * or deflated "literal". 196 */ 197#define binary_patch_method leading 198#define BINARY_DELTA_DEFLATED 1 199#define BINARY_LITERAL_DEFLATED 2 200 201/* 202 * This represents a "patch" to a file, both metainfo changes 203 * such as creation/deletion, filemode and content changes represented 204 * as a series of fragments. 205 */ 206struct patch { 207char*new_name, *old_name, *def_name; 208unsigned int old_mode, new_mode; 209int is_new, is_delete;/* -1 = unknown, 0 = false, 1 = true */ 210int rejected; 211unsigned ws_rule; 212int lines_added, lines_deleted; 213int score; 214unsigned int is_toplevel_relative:1; 215unsigned int inaccurate_eof:1; 216unsigned int is_binary:1; 217unsigned int is_copy:1; 218unsigned int is_rename:1; 219unsigned int recount:1; 220unsigned int conflicted_threeway:1; 221unsigned int direct_to_threeway:1; 222struct fragment *fragments; 223char*result; 224size_t resultsize; 225char old_sha1_prefix[41]; 226char new_sha1_prefix[41]; 227struct patch *next; 228 229/* three-way fallback result */ 230struct object_id threeway_stage[3]; 231}; 232 233static voidfree_fragment_list(struct fragment *list) 234{ 235while(list) { 236struct fragment *next = list->next; 237if(list->free_patch) 238free((char*)list->patch); 239free(list); 240 list = next; 241} 242} 243 244static voidfree_patch(struct patch *patch) 245{ 246free_fragment_list(patch->fragments); 247free(patch->def_name); 248free(patch->old_name); 249free(patch->new_name); 250free(patch->result); 251free(patch); 252} 253 254static voidfree_patch_list(struct patch *list) 255{ 256while(list) { 257struct patch *next = list->next; 258free_patch(list); 259 list = next; 260} 261} 262 263/* 264 * A line in a file, len-bytes long (includes the terminating LF, 265 * except for an incomplete line at the end if the file ends with 266 * one), and its contents hashes to 'hash'. 267 */ 268struct line { 269size_t len; 270unsigned hash :24; 271unsigned flag :8; 272#define LINE_COMMON 1 273#define LINE_PATCHED 2 274}; 275 276/* 277 * This represents a "file", which is an array of "lines". 278 */ 279struct image { 280char*buf; 281size_t len; 282size_t nr; 283size_t alloc; 284struct line *line_allocated; 285struct line *line; 286}; 287 288static uint32_thash_line(const char*cp,size_t len) 289{ 290size_t i; 291uint32_t h; 292for(i =0, h =0; i < len; i++) { 293if(!isspace(cp[i])) { 294 h = h *3+ (cp[i] &0xff); 295} 296} 297return h; 298} 299 300/* 301 * Compare lines s1 of length n1 and s2 of length n2, ignoring 302 * whitespace difference. Returns 1 if they match, 0 otherwise 303 */ 304static intfuzzy_matchlines(const char*s1,size_t n1, 305const char*s2,size_t n2) 306{ 307const char*last1 = s1 + n1 -1; 308const char*last2 = s2 + n2 -1; 309int result =0; 310 311/* ignore line endings */ 312while((*last1 =='\r') || (*last1 =='\n')) 313 last1--; 314while((*last2 =='\r') || (*last2 =='\n')) 315 last2--; 316 317/* skip leading whitespaces, if both begin with whitespace */ 318if(s1 <= last1 && s2 <= last2 &&isspace(*s1) &&isspace(*s2)) { 319while(isspace(*s1) && (s1 <= last1)) 320 s1++; 321while(isspace(*s2) && (s2 <= last2)) 322 s2++; 323} 324/* early return if both lines are empty */ 325if((s1 > last1) && (s2 > last2)) 326return1; 327while(!result) { 328 result = *s1++ - *s2++; 329/* 330 * Skip whitespace inside. We check for whitespace on 331 * both buffers because we don't want "a b" to match 332 * "ab" 333 */ 334if(isspace(*s1) &&isspace(*s2)) { 335while(isspace(*s1) && s1 <= last1) 336 s1++; 337while(isspace(*s2) && s2 <= last2) 338 s2++; 339} 340/* 341 * If we reached the end on one side only, 342 * lines don't match 343 */ 344if( 345((s2 > last2) && (s1 <= last1)) || 346((s1 > last1) && (s2 <= last2))) 347return0; 348if((s1 > last1) && (s2 > last2)) 349break; 350} 351 352return!result; 353} 354 355static voidadd_line_info(struct image *img,const char*bol,size_t len,unsigned flag) 356{ 357ALLOC_GROW(img->line_allocated, img->nr +1, img->alloc); 358 img->line_allocated[img->nr].len = len; 359 img->line_allocated[img->nr].hash =hash_line(bol, len); 360 img->line_allocated[img->nr].flag = flag; 361 img->nr++; 362} 363 364/* 365 * "buf" has the file contents to be patched (read from various sources). 366 * attach it to "image" and add line-based index to it. 367 * "image" now owns the "buf". 368 */ 369static voidprepare_image(struct image *image,char*buf,size_t len, 370int prepare_linetable) 371{ 372const char*cp, *ep; 373 374memset(image,0,sizeof(*image)); 375 image->buf = buf; 376 image->len = len; 377 378if(!prepare_linetable) 379return; 380 381 ep = image->buf + image->len; 382 cp = image->buf; 383while(cp < ep) { 384const char*next; 385for(next = cp; next < ep && *next !='\n'; next++) 386; 387if(next < ep) 388 next++; 389add_line_info(image, cp, next - cp,0); 390 cp = next; 391} 392 image->line = image->line_allocated; 393} 394 395static voidclear_image(struct image *image) 396{ 397free(image->buf); 398free(image->line_allocated); 399memset(image,0,sizeof(*image)); 400} 401 402/* fmt must contain _one_ %s and no other substitution */ 403static voidsay_patch_name(FILE*output,const char*fmt,struct patch *patch) 404{ 405struct strbuf sb = STRBUF_INIT; 406 407if(patch->old_name && patch->new_name && 408strcmp(patch->old_name, patch->new_name)) { 409quote_c_style(patch->old_name, &sb, NULL,0); 410strbuf_addstr(&sb," => "); 411quote_c_style(patch->new_name, &sb, NULL,0); 412}else{ 413const char*n = patch->new_name; 414if(!n) 415 n = patch->old_name; 416quote_c_style(n, &sb, NULL,0); 417} 418fprintf(output, fmt, sb.buf); 419fputc('\n', output); 420strbuf_release(&sb); 421} 422 423#define SLOP (16) 424 425static intread_patch_file(struct strbuf *sb,int fd) 426{ 427if(strbuf_read(sb, fd,0) <0) 428returnerror_errno("git apply: failed to read"); 429 430/* 431 * Make sure that we have some slop in the buffer 432 * so that we can do speculative "memcmp" etc, and 433 * see to it that it is NUL-filled. 434 */ 435strbuf_grow(sb, SLOP); 436memset(sb->buf + sb->len,0, SLOP); 437return0; 438} 439 440static unsigned longlinelen(const char*buffer,unsigned long size) 441{ 442unsigned long len =0; 443while(size--) { 444 len++; 445if(*buffer++ =='\n') 446break; 447} 448return len; 449} 450 451static intis_dev_null(const char*str) 452{ 453returnskip_prefix(str,"/dev/null", &str) &&isspace(*str); 454} 455 456#define TERM_SPACE 1 457#define TERM_TAB 2 458 459static intname_terminate(int c,int terminate) 460{ 461if(c ==' '&& !(terminate & TERM_SPACE)) 462return0; 463if(c =='\t'&& !(terminate & TERM_TAB)) 464return0; 465 466return1; 467} 468 469/* remove double slashes to make --index work with such filenames */ 470static char*squash_slash(char*name) 471{ 472int i =0, j =0; 473 474if(!name) 475return NULL; 476 477while(name[i]) { 478if((name[j++] = name[i++]) =='/') 479while(name[i] =='/') 480 i++; 481} 482 name[j] ='\0'; 483return name; 484} 485 486static char*find_name_gnu(struct apply_state *state, 487const char*line, 488const char*def, 489int p_value) 490{ 491struct strbuf name = STRBUF_INIT; 492char*cp; 493 494/* 495 * Proposed "new-style" GNU patch/diff format; see 496 * http://marc.info/?l=git&m=112927316408690&w=2 497 */ 498if(unquote_c_style(&name, line, NULL)) { 499strbuf_release(&name); 500return NULL; 501} 502 503for(cp = name.buf; p_value; p_value--) { 504 cp =strchr(cp,'/'); 505if(!cp) { 506strbuf_release(&name); 507return NULL; 508} 509 cp++; 510} 511 512strbuf_remove(&name,0, cp - name.buf); 513if(state->root.len) 514strbuf_insert(&name,0, state->root.buf, state->root.len); 515returnsquash_slash(strbuf_detach(&name, NULL)); 516} 517 518static size_tsane_tz_len(const char*line,size_t len) 519{ 520const char*tz, *p; 521 522if(len <strlen(" +0500") || line[len-strlen(" +0500")] !=' ') 523return0; 524 tz = line + len -strlen(" +0500"); 525 526if(tz[1] !='+'&& tz[1] !='-') 527return0; 528 529for(p = tz +2; p != line + len; p++) 530if(!isdigit(*p)) 531return0; 532 533return line + len - tz; 534} 535 536static size_ttz_with_colon_len(const char*line,size_t len) 537{ 538const char*tz, *p; 539 540if(len <strlen(" +08:00") || line[len -strlen(":00")] !=':') 541return0; 542 tz = line + len -strlen(" +08:00"); 543 544if(tz[0] !=' '|| (tz[1] !='+'&& tz[1] !='-')) 545return0; 546 p = tz +2; 547if(!isdigit(*p++) || !isdigit(*p++) || *p++ !=':'|| 548!isdigit(*p++) || !isdigit(*p++)) 549return0; 550 551return line + len - tz; 552} 553 554static size_tdate_len(const char*line,size_t len) 555{ 556const char*date, *p; 557 558if(len <strlen("72-02-05") || line[len-strlen("-05")] !='-') 559return0; 560 p = date = line + len -strlen("72-02-05"); 561 562if(!isdigit(*p++) || !isdigit(*p++) || *p++ !='-'|| 563!isdigit(*p++) || !isdigit(*p++) || *p++ !='-'|| 564!isdigit(*p++) || !isdigit(*p++))/* Not a date. */ 565return0; 566 567if(date - line >=strlen("19") && 568isdigit(date[-1]) &&isdigit(date[-2]))/* 4-digit year */ 569 date -=strlen("19"); 570 571return line + len - date; 572} 573 574static size_tshort_time_len(const char*line,size_t len) 575{ 576const char*time, *p; 577 578if(len <strlen(" 07:01:32") || line[len-strlen(":32")] !=':') 579return0; 580 p = time = line + len -strlen(" 07:01:32"); 581 582/* Permit 1-digit hours? */ 583if(*p++ !=' '|| 584!isdigit(*p++) || !isdigit(*p++) || *p++ !=':'|| 585!isdigit(*p++) || !isdigit(*p++) || *p++ !=':'|| 586!isdigit(*p++) || !isdigit(*p++))/* Not a time. */ 587return0; 588 589return line + len - time; 590} 591 592static size_tfractional_time_len(const char*line,size_t len) 593{ 594const char*p; 595size_t n; 596 597/* Expected format: 19:41:17.620000023 */ 598if(!len || !isdigit(line[len -1])) 599return0; 600 p = line + len -1; 601 602/* Fractional seconds. */ 603while(p > line &&isdigit(*p)) 604 p--; 605if(*p !='.') 606return0; 607 608/* Hours, minutes, and whole seconds. */ 609 n =short_time_len(line, p - line); 610if(!n) 611return0; 612 613return line + len - p + n; 614} 615 616static size_ttrailing_spaces_len(const char*line,size_t len) 617{ 618const char*p; 619 620/* Expected format: ' ' x (1 or more) */ 621if(!len || line[len -1] !=' ') 622return0; 623 624 p = line + len; 625while(p != line) { 626 p--; 627if(*p !=' ') 628return line + len - (p +1); 629} 630 631/* All spaces! */ 632return len; 633} 634 635static size_tdiff_timestamp_len(const char*line,size_t len) 636{ 637const char*end = line + len; 638size_t n; 639 640/* 641 * Posix: 2010-07-05 19:41:17 642 * GNU: 2010-07-05 19:41:17.620000023 -0500 643 */ 644 645if(!isdigit(end[-1])) 646return0; 647 648 n =sane_tz_len(line, end - line); 649if(!n) 650 n =tz_with_colon_len(line, end - line); 651 end -= n; 652 653 n =short_time_len(line, end - line); 654if(!n) 655 n =fractional_time_len(line, end - line); 656 end -= n; 657 658 n =date_len(line, end - line); 659if(!n)/* No date. Too bad. */ 660return0; 661 end -= n; 662 663if(end == line)/* No space before date. */ 664return0; 665if(end[-1] =='\t') {/* Success! */ 666 end--; 667return line + len - end; 668} 669if(end[-1] !=' ')/* No space before date. */ 670return0; 671 672/* Whitespace damage. */ 673 end -=trailing_spaces_len(line, end - line); 674return line + len - end; 675} 676 677static char*find_name_common(struct apply_state *state, 678const char*line, 679const char*def, 680int p_value, 681const char*end, 682int terminate) 683{ 684int len; 685const char*start = NULL; 686 687if(p_value ==0) 688 start = line; 689while(line != end) { 690char c = *line; 691 692if(!end &&isspace(c)) { 693if(c =='\n') 694break; 695if(name_terminate(c, terminate)) 696break; 697} 698 line++; 699if(c =='/'&& !--p_value) 700 start = line; 701} 702if(!start) 703returnsquash_slash(xstrdup_or_null(def)); 704 len = line - start; 705if(!len) 706returnsquash_slash(xstrdup_or_null(def)); 707 708/* 709 * Generally we prefer the shorter name, especially 710 * if the other one is just a variation of that with 711 * something else tacked on to the end (ie "file.orig" 712 * or "file~"). 713 */ 714if(def) { 715int deflen =strlen(def); 716if(deflen < len && !strncmp(start, def, deflen)) 717returnsquash_slash(xstrdup(def)); 718} 719 720if(state->root.len) { 721char*ret =xstrfmt("%s%.*s", state->root.buf, len, start); 722returnsquash_slash(ret); 723} 724 725returnsquash_slash(xmemdupz(start, len)); 726} 727 728static char*find_name(struct apply_state *state, 729const char*line, 730char*def, 731int p_value, 732int terminate) 733{ 734if(*line =='"') { 735char*name =find_name_gnu(state, line, def, p_value); 736if(name) 737return name; 738} 739 740returnfind_name_common(state, line, def, p_value, NULL, terminate); 741} 742 743static char*find_name_traditional(struct apply_state *state, 744const char*line, 745char*def, 746int p_value) 747{ 748size_t len; 749size_t date_len; 750 751if(*line =='"') { 752char*name =find_name_gnu(state, line, def, p_value); 753if(name) 754return name; 755} 756 757 len =strchrnul(line,'\n') - line; 758 date_len =diff_timestamp_len(line, len); 759if(!date_len) 760returnfind_name_common(state, line, def, p_value, NULL, TERM_TAB); 761 len -= date_len; 762 763returnfind_name_common(state, line, def, p_value, line + len,0); 764} 765 766/* 767 * Given the string after "--- " or "+++ ", guess the appropriate 768 * p_value for the given patch. 769 */ 770static intguess_p_value(struct apply_state *state,const char*nameline) 771{ 772char*name, *cp; 773int val = -1; 774 775if(is_dev_null(nameline)) 776return-1; 777 name =find_name_traditional(state, nameline, NULL,0); 778if(!name) 779return-1; 780 cp =strchr(name,'/'); 781if(!cp) 782 val =0; 783else if(state->prefix) { 784/* 785 * Does it begin with "a/$our-prefix" and such? Then this is 786 * very likely to apply to our directory. 787 */ 788if(!strncmp(name, state->prefix, state->prefix_length)) 789 val =count_slashes(state->prefix); 790else{ 791 cp++; 792if(!strncmp(cp, state->prefix, state->prefix_length)) 793 val =count_slashes(state->prefix) +1; 794} 795} 796free(name); 797return val; 798} 799 800/* 801 * Does the ---/+++ line have the POSIX timestamp after the last HT? 802 * GNU diff puts epoch there to signal a creation/deletion event. Is 803 * this such a timestamp? 804 */ 805static inthas_epoch_timestamp(const char*nameline) 806{ 807/* 808 * We are only interested in epoch timestamp; any non-zero 809 * fraction cannot be one, hence "(\.0+)?" in the regexp below. 810 * For the same reason, the date must be either 1969-12-31 or 811 * 1970-01-01, and the seconds part must be "00". 812 */ 813const char stamp_regexp[] = 814"^(1969-12-31|1970-01-01)" 815" " 816"[0-2][0-9]:[0-5][0-9]:00(\\.0+)?" 817" " 818"([-+][0-2][0-9]:?[0-5][0-9])\n"; 819const char*timestamp = NULL, *cp, *colon; 820static regex_t *stamp; 821 regmatch_t m[10]; 822int zoneoffset; 823int hourminute; 824int status; 825 826for(cp = nameline; *cp !='\n'; cp++) { 827if(*cp =='\t') 828 timestamp = cp +1; 829} 830if(!timestamp) 831return0; 832if(!stamp) { 833 stamp =xmalloc(sizeof(*stamp)); 834if(regcomp(stamp, stamp_regexp, REG_EXTENDED)) { 835warning(_("Cannot prepare timestamp regexp%s"), 836 stamp_regexp); 837return0; 838} 839} 840 841 status =regexec(stamp, timestamp,ARRAY_SIZE(m), m,0); 842if(status) { 843if(status != REG_NOMATCH) 844warning(_("regexec returned%dfor input:%s"), 845 status, timestamp); 846return0; 847} 848 849 zoneoffset =strtol(timestamp + m[3].rm_so +1, (char**) &colon,10); 850if(*colon ==':') 851 zoneoffset = zoneoffset *60+strtol(colon +1, NULL,10); 852else 853 zoneoffset = (zoneoffset /100) *60+ (zoneoffset %100); 854if(timestamp[m[3].rm_so] =='-') 855 zoneoffset = -zoneoffset; 856 857/* 858 * YYYY-MM-DD hh:mm:ss must be from either 1969-12-31 859 * (west of GMT) or 1970-01-01 (east of GMT) 860 */ 861if((zoneoffset <0&&memcmp(timestamp,"1969-12-31",10)) || 862(0<= zoneoffset &&memcmp(timestamp,"1970-01-01",10))) 863return0; 864 865 hourminute = (strtol(timestamp +11, NULL,10) *60+ 866strtol(timestamp +14, NULL,10) - 867 zoneoffset); 868 869return((zoneoffset <0&& hourminute ==1440) || 870(0<= zoneoffset && !hourminute)); 871} 872 873/* 874 * Get the name etc info from the ---/+++ lines of a traditional patch header 875 * 876 * FIXME! The end-of-filename heuristics are kind of screwy. For existing 877 * files, we can happily check the index for a match, but for creating a 878 * new file we should try to match whatever "patch" does. I have no idea. 879 */ 880static intparse_traditional_patch(struct apply_state *state, 881const char*first, 882const char*second, 883struct patch *patch) 884{ 885char*name; 886 887 first +=4;/* skip "--- " */ 888 second +=4;/* skip "+++ " */ 889if(!state->p_value_known) { 890int p, q; 891 p =guess_p_value(state, first); 892 q =guess_p_value(state, second); 893if(p <0) p = q; 894if(0<= p && p == q) { 895 state->p_value = p; 896 state->p_value_known =1; 897} 898} 899if(is_dev_null(first)) { 900 patch->is_new =1; 901 patch->is_delete =0; 902 name =find_name_traditional(state, second, NULL, state->p_value); 903 patch->new_name = name; 904}else if(is_dev_null(second)) { 905 patch->is_new =0; 906 patch->is_delete =1; 907 name =find_name_traditional(state, first, NULL, state->p_value); 908 patch->old_name = name; 909}else{ 910char*first_name; 911 first_name =find_name_traditional(state, first, NULL, state->p_value); 912 name =find_name_traditional(state, second, first_name, state->p_value); 913free(first_name); 914if(has_epoch_timestamp(first)) { 915 patch->is_new =1; 916 patch->is_delete =0; 917 patch->new_name = name; 918}else if(has_epoch_timestamp(second)) { 919 patch->is_new =0; 920 patch->is_delete =1; 921 patch->old_name = name; 922}else{ 923 patch->old_name = name; 924 patch->new_name =xstrdup_or_null(name); 925} 926} 927if(!name) 928returnerror(_("unable to find filename in patch at line%d"), state->linenr); 929 930return0; 931} 932 933static intgitdiff_hdrend(struct apply_state *state, 934const char*line, 935struct patch *patch) 936{ 937return1; 938} 939 940/* 941 * We're anal about diff header consistency, to make 942 * sure that we don't end up having strange ambiguous 943 * patches floating around. 944 * 945 * As a result, gitdiff_{old|new}name() will check 946 * their names against any previous information, just 947 * to make sure.. 948 */ 949#define DIFF_OLD_NAME 0 950#define DIFF_NEW_NAME 1 951 952static intgitdiff_verify_name(struct apply_state *state, 953const char*line, 954int isnull, 955char**name, 956int side) 957{ 958if(!*name && !isnull) { 959*name =find_name(state, line, NULL, state->p_value, TERM_TAB); 960return0; 961} 962 963if(*name) { 964int len =strlen(*name); 965char*another; 966if(isnull) 967returnerror(_("git apply: bad git-diff - expected /dev/null, got%son line%d"), 968*name, state->linenr); 969 another =find_name(state, line, NULL, state->p_value, TERM_TAB); 970if(!another ||memcmp(another, *name, len +1)) { 971free(another); 972returnerror((side == DIFF_NEW_NAME) ? 973_("git apply: bad git-diff - inconsistent new filename on line%d") : 974_("git apply: bad git-diff - inconsistent old filename on line%d"), state->linenr); 975} 976free(another); 977}else{ 978/* expect "/dev/null" */ 979if(memcmp("/dev/null", line,9) || line[9] !='\n') 980returnerror(_("git apply: bad git-diff - expected /dev/null on line%d"), state->linenr); 981} 982 983return0; 984} 985 986static intgitdiff_oldname(struct apply_state *state, 987const char*line, 988struct patch *patch) 989{ 990returngitdiff_verify_name(state, line, 991 patch->is_new, &patch->old_name, 992 DIFF_OLD_NAME); 993} 994 995static intgitdiff_newname(struct apply_state *state, 996const char*line, 997struct patch *patch) 998{ 999returngitdiff_verify_name(state, line,1000 patch->is_delete, &patch->new_name,1001 DIFF_NEW_NAME);1002}10031004static intgitdiff_oldmode(struct apply_state *state,1005const char*line,1006struct patch *patch)1007{1008 patch->old_mode =strtoul(line, NULL,8);1009return0;1010}10111012static intgitdiff_newmode(struct apply_state *state,1013const char*line,1014struct patch *patch)1015{1016 patch->new_mode =strtoul(line, NULL,8);1017return0;1018}10191020static intgitdiff_delete(struct apply_state *state,1021const char*line,1022struct patch *patch)1023{1024 patch->is_delete =1;1025free(patch->old_name);1026 patch->old_name =xstrdup_or_null(patch->def_name);1027returngitdiff_oldmode(state, line, patch);1028}10291030static intgitdiff_newfile(struct apply_state *state,1031const char*line,1032struct patch *patch)1033{1034 patch->is_new =1;1035free(patch->new_name);1036 patch->new_name =xstrdup_or_null(patch->def_name);1037returngitdiff_newmode(state, line, patch);1038}10391040static intgitdiff_copysrc(struct apply_state *state,1041const char*line,1042struct patch *patch)1043{1044 patch->is_copy =1;1045free(patch->old_name);1046 patch->old_name =find_name(state, line, NULL, state->p_value ? state->p_value -1:0,0);1047return0;1048}10491050static intgitdiff_copydst(struct apply_state *state,1051const char*line,1052struct patch *patch)1053{1054 patch->is_copy =1;1055free(patch->new_name);1056 patch->new_name =find_name(state, line, NULL, state->p_value ? state->p_value -1:0,0);1057return0;1058}10591060static intgitdiff_renamesrc(struct apply_state *state,1061const char*line,1062struct patch *patch)1063{1064 patch->is_rename =1;1065free(patch->old_name);1066 patch->old_name =find_name(state, line, NULL, state->p_value ? state->p_value -1:0,0);1067return0;1068}10691070static intgitdiff_renamedst(struct apply_state *state,1071const char*line,1072struct patch *patch)1073{1074 patch->is_rename =1;1075free(patch->new_name);1076 patch->new_name =find_name(state, line, NULL, state->p_value ? state->p_value -1:0,0);1077return0;1078}10791080static intgitdiff_similarity(struct apply_state *state,1081const char*line,1082struct patch *patch)1083{1084unsigned long val =strtoul(line, NULL,10);1085if(val <=100)1086 patch->score = val;1087return0;1088}10891090static intgitdiff_dissimilarity(struct apply_state *state,1091const char*line,1092struct patch *patch)1093{1094unsigned long val =strtoul(line, NULL,10);1095if(val <=100)1096 patch->score = val;1097return0;1098}10991100static intgitdiff_index(struct apply_state *state,1101const char*line,1102struct patch *patch)1103{1104/*1105 * index line is N hexadecimal, "..", N hexadecimal,1106 * and optional space with octal mode.1107 */1108const char*ptr, *eol;1109int len;11101111 ptr =strchr(line,'.');1112if(!ptr || ptr[1] !='.'||40< ptr - line)1113return0;1114 len = ptr - line;1115memcpy(patch->old_sha1_prefix, line, len);1116 patch->old_sha1_prefix[len] =0;11171118 line = ptr +2;1119 ptr =strchr(line,' ');1120 eol =strchrnul(line,'\n');11211122if(!ptr || eol < ptr)1123 ptr = eol;1124 len = ptr - line;11251126if(40< len)1127return0;1128memcpy(patch->new_sha1_prefix, line, len);1129 patch->new_sha1_prefix[len] =0;1130if(*ptr ==' ')1131 patch->old_mode =strtoul(ptr+1, NULL,8);1132return0;1133}11341135/*1136 * This is normal for a diff that doesn't change anything: we'll fall through1137 * into the next diff. Tell the parser to break out.1138 */1139static intgitdiff_unrecognized(struct apply_state *state,1140const char*line,1141struct patch *patch)1142{1143return1;1144}11451146/*1147 * Skip p_value leading components from "line"; as we do not accept1148 * absolute paths, return NULL in that case.1149 */1150static const char*skip_tree_prefix(struct apply_state *state,1151const char*line,1152int llen)1153{1154int nslash;1155int i;11561157if(!state->p_value)1158return(llen && line[0] =='/') ? NULL : line;11591160 nslash = state->p_value;1161for(i =0; i < llen; i++) {1162int ch = line[i];1163if(ch =='/'&& --nslash <=0)1164return(i ==0) ? NULL : &line[i +1];1165}1166return NULL;1167}11681169/*1170 * This is to extract the same name that appears on "diff --git"1171 * line. We do not find and return anything if it is a rename1172 * patch, and it is OK because we will find the name elsewhere.1173 * We need to reliably find name only when it is mode-change only,1174 * creation or deletion of an empty file. In any of these cases,1175 * both sides are the same name under a/ and b/ respectively.1176 */1177static char*git_header_name(struct apply_state *state,1178const char*line,1179int llen)1180{1181const char*name;1182const char*second = NULL;1183size_t len, line_len;11841185 line +=strlen("diff --git ");1186 llen -=strlen("diff --git ");11871188if(*line =='"') {1189const char*cp;1190struct strbuf first = STRBUF_INIT;1191struct strbuf sp = STRBUF_INIT;11921193if(unquote_c_style(&first, line, &second))1194goto free_and_fail1;11951196/* strip the a/b prefix including trailing slash */1197 cp =skip_tree_prefix(state, first.buf, first.len);1198if(!cp)1199goto free_and_fail1;1200strbuf_remove(&first,0, cp - first.buf);12011202/*1203 * second points at one past closing dq of name.1204 * find the second name.1205 */1206while((second < line + llen) &&isspace(*second))1207 second++;12081209if(line + llen <= second)1210goto free_and_fail1;1211if(*second =='"') {1212if(unquote_c_style(&sp, second, NULL))1213goto free_and_fail1;1214 cp =skip_tree_prefix(state, sp.buf, sp.len);1215if(!cp)1216goto free_and_fail1;1217/* They must match, otherwise ignore */1218if(strcmp(cp, first.buf))1219goto free_and_fail1;1220strbuf_release(&sp);1221returnstrbuf_detach(&first, NULL);1222}12231224/* unquoted second */1225 cp =skip_tree_prefix(state, second, line + llen - second);1226if(!cp)1227goto free_and_fail1;1228if(line + llen - cp != first.len ||1229memcmp(first.buf, cp, first.len))1230goto free_and_fail1;1231returnstrbuf_detach(&first, NULL);12321233 free_and_fail1:1234strbuf_release(&first);1235strbuf_release(&sp);1236return NULL;1237}12381239/* unquoted first name */1240 name =skip_tree_prefix(state, line, llen);1241if(!name)1242return NULL;12431244/*1245 * since the first name is unquoted, a dq if exists must be1246 * the beginning of the second name.1247 */1248for(second = name; second < line + llen; second++) {1249if(*second =='"') {1250struct strbuf sp = STRBUF_INIT;1251const char*np;12521253if(unquote_c_style(&sp, second, NULL))1254goto free_and_fail2;12551256 np =skip_tree_prefix(state, sp.buf, sp.len);1257if(!np)1258goto free_and_fail2;12591260 len = sp.buf + sp.len - np;1261if(len < second - name &&1262!strncmp(np, name, len) &&1263isspace(name[len])) {1264/* Good */1265strbuf_remove(&sp,0, np - sp.buf);1266returnstrbuf_detach(&sp, NULL);1267}12681269 free_and_fail2:1270strbuf_release(&sp);1271return NULL;1272}1273}12741275/*1276 * Accept a name only if it shows up twice, exactly the same1277 * form.1278 */1279 second =strchr(name,'\n');1280if(!second)1281return NULL;1282 line_len = second - name;1283for(len =0; ; len++) {1284switch(name[len]) {1285default:1286continue;1287case'\n':1288return NULL;1289case'\t':case' ':1290/*1291 * Is this the separator between the preimage1292 * and the postimage pathname? Again, we are1293 * only interested in the case where there is1294 * no rename, as this is only to set def_name1295 * and a rename patch has the names elsewhere1296 * in an unambiguous form.1297 */1298if(!name[len +1])1299return NULL;/* no postimage name */1300 second =skip_tree_prefix(state, name + len +1,1301 line_len - (len +1));1302if(!second)1303return NULL;1304/*1305 * Does len bytes starting at "name" and "second"1306 * (that are separated by one HT or SP we just1307 * found) exactly match?1308 */1309if(second[len] =='\n'&& !strncmp(name, second, len))1310returnxmemdupz(name, len);1311}1312}1313}13141315/* Verify that we recognize the lines following a git header */1316static intparse_git_header(struct apply_state *state,1317const char*line,1318int len,1319unsigned int size,1320struct patch *patch)1321{1322unsigned long offset;13231324/* A git diff has explicit new/delete information, so we don't guess */1325 patch->is_new =0;1326 patch->is_delete =0;13271328/*1329 * Some things may not have the old name in the1330 * rest of the headers anywhere (pure mode changes,1331 * or removing or adding empty files), so we get1332 * the default name from the header.1333 */1334 patch->def_name =git_header_name(state, line, len);1335if(patch->def_name && state->root.len) {1336char*s =xstrfmt("%s%s", state->root.buf, patch->def_name);1337free(patch->def_name);1338 patch->def_name = s;1339}13401341 line += len;1342 size -= len;1343 state->linenr++;1344for(offset = len ; size >0; offset += len, size -= len, line += len, state->linenr++) {1345static const struct opentry {1346const char*str;1347int(*fn)(struct apply_state *,const char*,struct patch *);1348} optable[] = {1349{"@@ -", gitdiff_hdrend },1350{"--- ", gitdiff_oldname },1351{"+++ ", gitdiff_newname },1352{"old mode ", gitdiff_oldmode },1353{"new mode ", gitdiff_newmode },1354{"deleted file mode ", gitdiff_delete },1355{"new file mode ", gitdiff_newfile },1356{"copy from ", gitdiff_copysrc },1357{"copy to ", gitdiff_copydst },1358{"rename old ", gitdiff_renamesrc },1359{"rename new ", gitdiff_renamedst },1360{"rename from ", gitdiff_renamesrc },1361{"rename to ", gitdiff_renamedst },1362{"similarity index ", gitdiff_similarity },1363{"dissimilarity index ", gitdiff_dissimilarity },1364{"index ", gitdiff_index },1365{"", gitdiff_unrecognized },1366};1367int i;13681369 len =linelen(line, size);1370if(!len || line[len-1] !='\n')1371break;1372for(i =0; i <ARRAY_SIZE(optable); i++) {1373const struct opentry *p = optable + i;1374int oplen =strlen(p->str);1375int res;1376if(len < oplen ||memcmp(p->str, line, oplen))1377continue;1378 res = p->fn(state, line + oplen, patch);1379if(res <0)1380return-1;1381if(res >0)1382return offset;1383break;1384}1385}13861387return offset;1388}13891390static intparse_num(const char*line,unsigned long*p)1391{1392char*ptr;13931394if(!isdigit(*line))1395return0;1396*p =strtoul(line, &ptr,10);1397return ptr - line;1398}13991400static intparse_range(const char*line,int len,int offset,const char*expect,1401unsigned long*p1,unsigned long*p2)1402{1403int digits, ex;14041405if(offset <0|| offset >= len)1406return-1;1407 line += offset;1408 len -= offset;14091410 digits =parse_num(line, p1);1411if(!digits)1412return-1;14131414 offset += digits;1415 line += digits;1416 len -= digits;14171418*p2 =1;1419if(*line ==',') {1420 digits =parse_num(line+1, p2);1421if(!digits)1422return-1;14231424 offset += digits+1;1425 line += digits+1;1426 len -= digits+1;1427}14281429 ex =strlen(expect);1430if(ex > len)1431return-1;1432if(memcmp(line, expect, ex))1433return-1;14341435return offset + ex;1436}14371438static voidrecount_diff(const char*line,int size,struct fragment *fragment)1439{1440int oldlines =0, newlines =0, ret =0;14411442if(size <1) {1443warning("recount: ignore empty hunk");1444return;1445}14461447for(;;) {1448int len =linelen(line, size);1449 size -= len;1450 line += len;14511452if(size <1)1453break;14541455switch(*line) {1456case' ':case'\n':1457 newlines++;1458/* fall through */1459case'-':1460 oldlines++;1461continue;1462case'+':1463 newlines++;1464continue;1465case'\\':1466continue;1467case'@':1468 ret = size <3|| !starts_with(line,"@@ ");1469break;1470case'd':1471 ret = size <5|| !starts_with(line,"diff ");1472break;1473default:1474 ret = -1;1475break;1476}1477if(ret) {1478warning(_("recount: unexpected line: %.*s"),1479(int)linelen(line, size), line);1480return;1481}1482break;1483}1484 fragment->oldlines = oldlines;1485 fragment->newlines = newlines;1486}14871488/*1489 * Parse a unified diff fragment header of the1490 * form "@@ -a,b +c,d @@"1491 */1492static intparse_fragment_header(const char*line,int len,struct fragment *fragment)1493{1494int offset;14951496if(!len || line[len-1] !='\n')1497return-1;14981499/* Figure out the number of lines in a fragment */1500 offset =parse_range(line, len,4," +", &fragment->oldpos, &fragment->oldlines);1501 offset =parse_range(line, len, offset," @@", &fragment->newpos, &fragment->newlines);15021503return offset;1504}15051506/*1507 * Find file diff header1508 *1509 * Returns:1510 * -1 if no header was found1511 * -128 in case of error1512 * the size of the header in bytes (called "offset") otherwise1513 */1514static intfind_header(struct apply_state *state,1515const char*line,1516unsigned long size,1517int*hdrsize,1518struct patch *patch)1519{1520unsigned long offset, len;15211522 patch->is_toplevel_relative =0;1523 patch->is_rename = patch->is_copy =0;1524 patch->is_new = patch->is_delete = -1;1525 patch->old_mode = patch->new_mode =0;1526 patch->old_name = patch->new_name = NULL;1527for(offset =0; size >0; offset += len, size -= len, line += len, state->linenr++) {1528unsigned long nextlen;15291530 len =linelen(line, size);1531if(!len)1532break;15331534/* Testing this early allows us to take a few shortcuts.. */1535if(len <6)1536continue;15371538/*1539 * Make sure we don't find any unconnected patch fragments.1540 * That's a sign that we didn't find a header, and that a1541 * patch has become corrupted/broken up.1542 */1543if(!memcmp("@@ -", line,4)) {1544struct fragment dummy;1545if(parse_fragment_header(line, len, &dummy) <0)1546continue;1547error(_("patch fragment without header at line%d: %.*s"),1548 state->linenr, (int)len-1, line);1549return-128;1550}15511552if(size < len +6)1553break;15541555/*1556 * Git patch? It might not have a real patch, just a rename1557 * or mode change, so we handle that specially1558 */1559if(!memcmp("diff --git ", line,11)) {1560int git_hdr_len =parse_git_header(state, line, len, size, patch);1561if(git_hdr_len <0)1562return-128;1563if(git_hdr_len <= len)1564continue;1565if(!patch->old_name && !patch->new_name) {1566if(!patch->def_name) {1567error(Q_("git diff header lacks filename information when removing "1568"%dleading pathname component (line%d)",1569"git diff header lacks filename information when removing "1570"%dleading pathname components (line%d)",1571 state->p_value),1572 state->p_value, state->linenr);1573return-128;1574}1575 patch->old_name =xstrdup(patch->def_name);1576 patch->new_name =xstrdup(patch->def_name);1577}1578if(!patch->is_delete && !patch->new_name) {1579error(_("git diff header lacks filename information "1580"(line%d)"), state->linenr);1581return-128;1582}1583 patch->is_toplevel_relative =1;1584*hdrsize = git_hdr_len;1585return offset;1586}15871588/* --- followed by +++ ? */1589if(memcmp("--- ", line,4) ||memcmp("+++ ", line + len,4))1590continue;15911592/*1593 * We only accept unified patches, so we want it to1594 * at least have "@@ -a,b +c,d @@\n", which is 14 chars1595 * minimum ("@@ -0,0 +1 @@\n" is the shortest).1596 */1597 nextlen =linelen(line + len, size - len);1598if(size < nextlen +14||memcmp("@@ -", line + len + nextlen,4))1599continue;16001601/* Ok, we'll consider it a patch */1602if(parse_traditional_patch(state, line, line+len, patch))1603return-128;1604*hdrsize = len + nextlen;1605 state->linenr +=2;1606return offset;1607}1608return-1;1609}16101611static voidrecord_ws_error(struct apply_state *state,1612unsigned result,1613const char*line,1614int len,1615int linenr)1616{1617char*err;16181619if(!result)1620return;16211622 state->whitespace_error++;1623if(state->squelch_whitespace_errors &&1624 state->squelch_whitespace_errors < state->whitespace_error)1625return;16261627 err =whitespace_error_string(result);1628if(state->apply_verbosity > verbosity_silent)1629fprintf(stderr,"%s:%d:%s.\n%.*s\n",1630 state->patch_input_file, linenr, err, len, line);1631free(err);1632}16331634static voidcheck_whitespace(struct apply_state *state,1635const char*line,1636int len,1637unsigned ws_rule)1638{1639unsigned result =ws_check(line +1, len -1, ws_rule);16401641record_ws_error(state, result, line +1, len -2, state->linenr);1642}16431644/*1645 * Parse a unified diff. Note that this really needs to parse each1646 * fragment separately, since the only way to know the difference1647 * between a "---" that is part of a patch, and a "---" that starts1648 * the next patch is to look at the line counts..1649 */1650static intparse_fragment(struct apply_state *state,1651const char*line,1652unsigned long size,1653struct patch *patch,1654struct fragment *fragment)1655{1656int added, deleted;1657int len =linelen(line, size), offset;1658unsigned long oldlines, newlines;1659unsigned long leading, trailing;16601661 offset =parse_fragment_header(line, len, fragment);1662if(offset <0)1663return-1;1664if(offset >0&& patch->recount)1665recount_diff(line + offset, size - offset, fragment);1666 oldlines = fragment->oldlines;1667 newlines = fragment->newlines;1668 leading =0;1669 trailing =0;16701671/* Parse the thing.. */1672 line += len;1673 size -= len;1674 state->linenr++;1675 added = deleted =0;1676for(offset = len;16770< size;1678 offset += len, size -= len, line += len, state->linenr++) {1679if(!oldlines && !newlines)1680break;1681 len =linelen(line, size);1682if(!len || line[len-1] !='\n')1683return-1;1684switch(*line) {1685default:1686return-1;1687case'\n':/* newer GNU diff, an empty context line */1688case' ':1689 oldlines--;1690 newlines--;1691if(!deleted && !added)1692 leading++;1693 trailing++;1694if(!state->apply_in_reverse &&1695 state->ws_error_action == correct_ws_error)1696check_whitespace(state, line, len, patch->ws_rule);1697break;1698case'-':1699if(state->apply_in_reverse &&1700 state->ws_error_action != nowarn_ws_error)1701check_whitespace(state, line, len, patch->ws_rule);1702 deleted++;1703 oldlines--;1704 trailing =0;1705break;1706case'+':1707if(!state->apply_in_reverse &&1708 state->ws_error_action != nowarn_ws_error)1709check_whitespace(state, line, len, patch->ws_rule);1710 added++;1711 newlines--;1712 trailing =0;1713break;17141715/*1716 * We allow "\ No newline at end of file". Depending1717 * on locale settings when the patch was produced we1718 * don't know what this line looks like. The only1719 * thing we do know is that it begins with "\ ".1720 * Checking for 12 is just for sanity check -- any1721 * l10n of "\ No newline..." is at least that long.1722 */1723case'\\':1724if(len <12||memcmp(line,"\\",2))1725return-1;1726break;1727}1728}1729if(oldlines || newlines)1730return-1;1731if(!deleted && !added)1732return-1;17331734 fragment->leading = leading;1735 fragment->trailing = trailing;17361737/*1738 * If a fragment ends with an incomplete line, we failed to include1739 * it in the above loop because we hit oldlines == newlines == 01740 * before seeing it.1741 */1742if(12< size && !memcmp(line,"\\",2))1743 offset +=linelen(line, size);17441745 patch->lines_added += added;1746 patch->lines_deleted += deleted;17471748if(0< patch->is_new && oldlines)1749returnerror(_("new file depends on old contents"));1750if(0< patch->is_delete && newlines)1751returnerror(_("deleted file still has contents"));1752return offset;1753}17541755/*1756 * We have seen "diff --git a/... b/..." header (or a traditional patch1757 * header). Read hunks that belong to this patch into fragments and hang1758 * them to the given patch structure.1759 *1760 * The (fragment->patch, fragment->size) pair points into the memory given1761 * by the caller, not a copy, when we return.1762 *1763 * Returns:1764 * -1 in case of error,1765 * the number of bytes in the patch otherwise.1766 */1767static intparse_single_patch(struct apply_state *state,1768const char*line,1769unsigned long size,1770struct patch *patch)1771{1772unsigned long offset =0;1773unsigned long oldlines =0, newlines =0, context =0;1774struct fragment **fragp = &patch->fragments;17751776while(size >4&& !memcmp(line,"@@ -",4)) {1777struct fragment *fragment;1778int len;17791780 fragment =xcalloc(1,sizeof(*fragment));1781 fragment->linenr = state->linenr;1782 len =parse_fragment(state, line, size, patch, fragment);1783if(len <=0) {1784free(fragment);1785returnerror(_("corrupt patch at line%d"), state->linenr);1786}1787 fragment->patch = line;1788 fragment->size = len;1789 oldlines += fragment->oldlines;1790 newlines += fragment->newlines;1791 context += fragment->leading + fragment->trailing;17921793*fragp = fragment;1794 fragp = &fragment->next;17951796 offset += len;1797 line += len;1798 size -= len;1799}18001801/*1802 * If something was removed (i.e. we have old-lines) it cannot1803 * be creation, and if something was added it cannot be1804 * deletion. However, the reverse is not true; --unified=01805 * patches that only add are not necessarily creation even1806 * though they do not have any old lines, and ones that only1807 * delete are not necessarily deletion.1808 *1809 * Unfortunately, a real creation/deletion patch do _not_ have1810 * any context line by definition, so we cannot safely tell it1811 * apart with --unified=0 insanity. At least if the patch has1812 * more than one hunk it is not creation or deletion.1813 */1814if(patch->is_new <0&&1815(oldlines || (patch->fragments && patch->fragments->next)))1816 patch->is_new =0;1817if(patch->is_delete <0&&1818(newlines || (patch->fragments && patch->fragments->next)))1819 patch->is_delete =0;18201821if(0< patch->is_new && oldlines)1822returnerror(_("new file%sdepends on old contents"), patch->new_name);1823if(0< patch->is_delete && newlines)1824returnerror(_("deleted file%sstill has contents"), patch->old_name);1825if(!patch->is_delete && !newlines && context && state->apply_verbosity > verbosity_silent)1826fprintf_ln(stderr,1827_("** warning: "1828"file%sbecomes empty but is not deleted"),1829 patch->new_name);18301831return offset;1832}18331834staticinlineintmetadata_changes(struct patch *patch)1835{1836return patch->is_rename >0||1837 patch->is_copy >0||1838 patch->is_new >0||1839 patch->is_delete ||1840(patch->old_mode && patch->new_mode &&1841 patch->old_mode != patch->new_mode);1842}18431844static char*inflate_it(const void*data,unsigned long size,1845unsigned long inflated_size)1846{1847 git_zstream stream;1848void*out;1849int st;18501851memset(&stream,0,sizeof(stream));18521853 stream.next_in = (unsigned char*)data;1854 stream.avail_in = size;1855 stream.next_out = out =xmalloc(inflated_size);1856 stream.avail_out = inflated_size;1857git_inflate_init(&stream);1858 st =git_inflate(&stream, Z_FINISH);1859git_inflate_end(&stream);1860if((st != Z_STREAM_END) || stream.total_out != inflated_size) {1861free(out);1862return NULL;1863}1864return out;1865}18661867/*1868 * Read a binary hunk and return a new fragment; fragment->patch1869 * points at an allocated memory that the caller must free, so1870 * it is marked as "->free_patch = 1".1871 */1872static struct fragment *parse_binary_hunk(struct apply_state *state,1873char**buf_p,1874unsigned long*sz_p,1875int*status_p,1876int*used_p)1877{1878/*1879 * Expect a line that begins with binary patch method ("literal"1880 * or "delta"), followed by the length of data before deflating.1881 * a sequence of 'length-byte' followed by base-85 encoded data1882 * should follow, terminated by a newline.1883 *1884 * Each 5-byte sequence of base-85 encodes up to 4 bytes,1885 * and we would limit the patch line to 66 characters,1886 * so one line can fit up to 13 groups that would decode1887 * to 52 bytes max. The length byte 'A'-'Z' corresponds1888 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.1889 */1890int llen, used;1891unsigned long size = *sz_p;1892char*buffer = *buf_p;1893int patch_method;1894unsigned long origlen;1895char*data = NULL;1896int hunk_size =0;1897struct fragment *frag;18981899 llen =linelen(buffer, size);1900 used = llen;19011902*status_p =0;19031904if(starts_with(buffer,"delta ")) {1905 patch_method = BINARY_DELTA_DEFLATED;1906 origlen =strtoul(buffer +6, NULL,10);1907}1908else if(starts_with(buffer,"literal ")) {1909 patch_method = BINARY_LITERAL_DEFLATED;1910 origlen =strtoul(buffer +8, NULL,10);1911}1912else1913return NULL;19141915 state->linenr++;1916 buffer += llen;1917while(1) {1918int byte_length, max_byte_length, newsize;1919 llen =linelen(buffer, size);1920 used += llen;1921 state->linenr++;1922if(llen ==1) {1923/* consume the blank line */1924 buffer++;1925 size--;1926break;1927}1928/*1929 * Minimum line is "A00000\n" which is 7-byte long,1930 * and the line length must be multiple of 5 plus 2.1931 */1932if((llen <7) || (llen-2) %5)1933goto corrupt;1934 max_byte_length = (llen -2) /5*4;1935 byte_length = *buffer;1936if('A'<= byte_length && byte_length <='Z')1937 byte_length = byte_length -'A'+1;1938else if('a'<= byte_length && byte_length <='z')1939 byte_length = byte_length -'a'+27;1940else1941goto corrupt;1942/* if the input length was not multiple of 4, we would1943 * have filler at the end but the filler should never1944 * exceed 3 bytes1945 */1946if(max_byte_length < byte_length ||1947 byte_length <= max_byte_length -4)1948goto corrupt;1949 newsize = hunk_size + byte_length;1950 data =xrealloc(data, newsize);1951if(decode_85(data + hunk_size, buffer +1, byte_length))1952goto corrupt;1953 hunk_size = newsize;1954 buffer += llen;1955 size -= llen;1956}19571958 frag =xcalloc(1,sizeof(*frag));1959 frag->patch =inflate_it(data, hunk_size, origlen);1960 frag->free_patch =1;1961if(!frag->patch)1962goto corrupt;1963free(data);1964 frag->size = origlen;1965*buf_p = buffer;1966*sz_p = size;1967*used_p = used;1968 frag->binary_patch_method = patch_method;1969return frag;19701971 corrupt:1972free(data);1973*status_p = -1;1974error(_("corrupt binary patch at line%d: %.*s"),1975 state->linenr-1, llen-1, buffer);1976return NULL;1977}19781979/*1980 * Returns:1981 * -1 in case of error,1982 * the length of the parsed binary patch otherwise1983 */1984static intparse_binary(struct apply_state *state,1985char*buffer,1986unsigned long size,1987struct patch *patch)1988{1989/*1990 * We have read "GIT binary patch\n"; what follows is a line1991 * that says the patch method (currently, either "literal" or1992 * "delta") and the length of data before deflating; a1993 * sequence of 'length-byte' followed by base-85 encoded data1994 * follows.1995 *1996 * When a binary patch is reversible, there is another binary1997 * hunk in the same format, starting with patch method (either1998 * "literal" or "delta") with the length of data, and a sequence1999 * of length-byte + base-85 encoded data, terminated with another2000 * empty line. This data, when applied to the postimage, produces2001 * the preimage.2002 */2003struct fragment *forward;2004struct fragment *reverse;2005int status;2006int used, used_1;20072008 forward =parse_binary_hunk(state, &buffer, &size, &status, &used);2009if(!forward && !status)2010/* there has to be one hunk (forward hunk) */2011returnerror(_("unrecognized binary patch at line%d"), state->linenr-1);2012if(status)2013/* otherwise we already gave an error message */2014return status;20152016 reverse =parse_binary_hunk(state, &buffer, &size, &status, &used_1);2017if(reverse)2018 used += used_1;2019else if(status) {2020/*2021 * Not having reverse hunk is not an error, but having2022 * a corrupt reverse hunk is.2023 */2024free((void*) forward->patch);2025free(forward);2026return status;2027}2028 forward->next = reverse;2029 patch->fragments = forward;2030 patch->is_binary =1;2031return used;2032}20332034static voidprefix_one(struct apply_state *state,char**name)2035{2036char*old_name = *name;2037if(!old_name)2038return;2039*name =prefix_filename(state->prefix, *name);2040free(old_name);2041}20422043static voidprefix_patch(struct apply_state *state,struct patch *p)2044{2045if(!state->prefix || p->is_toplevel_relative)2046return;2047prefix_one(state, &p->new_name);2048prefix_one(state, &p->old_name);2049}20502051/*2052 * include/exclude2053 */20542055static voidadd_name_limit(struct apply_state *state,2056const char*name,2057int exclude)2058{2059struct string_list_item *it;20602061 it =string_list_append(&state->limit_by_name, name);2062 it->util = exclude ? NULL : (void*)1;2063}20642065static intuse_patch(struct apply_state *state,struct patch *p)2066{2067const char*pathname = p->new_name ? p->new_name : p->old_name;2068int i;20692070/* Paths outside are not touched regardless of "--include" */2071if(0< state->prefix_length) {2072int pathlen =strlen(pathname);2073if(pathlen <= state->prefix_length ||2074memcmp(state->prefix, pathname, state->prefix_length))2075return0;2076}20772078/* See if it matches any of exclude/include rule */2079for(i =0; i < state->limit_by_name.nr; i++) {2080struct string_list_item *it = &state->limit_by_name.items[i];2081if(!wildmatch(it->string, pathname,0, NULL))2082return(it->util != NULL);2083}20842085/*2086 * If we had any include, a path that does not match any rule is2087 * not used. Otherwise, we saw bunch of exclude rules (or none)2088 * and such a path is used.2089 */2090return!state->has_include;2091}20922093/*2094 * Read the patch text in "buffer" that extends for "size" bytes; stop2095 * reading after seeing a single patch (i.e. changes to a single file).2096 * Create fragments (i.e. patch hunks) and hang them to the given patch.2097 *2098 * Returns:2099 * -1 if no header was found or parse_binary() failed,2100 * -128 on another error,2101 * the number of bytes consumed otherwise,2102 * so that the caller can call us again for the next patch.2103 */2104static intparse_chunk(struct apply_state *state,char*buffer,unsigned long size,struct patch *patch)2105{2106int hdrsize, patchsize;2107int offset =find_header(state, buffer, size, &hdrsize, patch);21082109if(offset <0)2110return offset;21112112prefix_patch(state, patch);21132114if(!use_patch(state, patch))2115 patch->ws_rule =0;2116else2117 patch->ws_rule =whitespace_rule(patch->new_name2118? patch->new_name2119: patch->old_name);21202121 patchsize =parse_single_patch(state,2122 buffer + offset + hdrsize,2123 size - offset - hdrsize,2124 patch);21252126if(patchsize <0)2127return-128;21282129if(!patchsize) {2130static const char git_binary[] ="GIT binary patch\n";2131int hd = hdrsize + offset;2132unsigned long llen =linelen(buffer + hd, size - hd);21332134if(llen ==sizeof(git_binary) -1&&2135!memcmp(git_binary, buffer + hd, llen)) {2136int used;2137 state->linenr++;2138 used =parse_binary(state, buffer + hd + llen,2139 size - hd - llen, patch);2140if(used <0)2141return-1;2142if(used)2143 patchsize = used + llen;2144else2145 patchsize =0;2146}2147else if(!memcmp(" differ\n", buffer + hd + llen -8,8)) {2148static const char*binhdr[] = {2149"Binary files ",2150"Files ",2151 NULL,2152};2153int i;2154for(i =0; binhdr[i]; i++) {2155int len =strlen(binhdr[i]);2156if(len < size - hd &&2157!memcmp(binhdr[i], buffer + hd, len)) {2158 state->linenr++;2159 patch->is_binary =1;2160 patchsize = llen;2161break;2162}2163}2164}21652166/* Empty patch cannot be applied if it is a text patch2167 * without metadata change. A binary patch appears2168 * empty to us here.2169 */2170if((state->apply || state->check) &&2171(!patch->is_binary && !metadata_changes(patch))) {2172error(_("patch with only garbage at line%d"), state->linenr);2173return-128;2174}2175}21762177return offset + hdrsize + patchsize;2178}21792180static voidreverse_patches(struct patch *p)2181{2182for(; p; p = p->next) {2183struct fragment *frag = p->fragments;21842185SWAP(p->new_name, p->old_name);2186SWAP(p->new_mode, p->old_mode);2187SWAP(p->is_new, p->is_delete);2188SWAP(p->lines_added, p->lines_deleted);2189SWAP(p->old_sha1_prefix, p->new_sha1_prefix);21902191for(; frag; frag = frag->next) {2192SWAP(frag->newpos, frag->oldpos);2193SWAP(frag->newlines, frag->oldlines);2194}2195}2196}21972198static const char pluses[] =2199"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";2200static const char minuses[]=2201"----------------------------------------------------------------------";22022203static voidshow_stats(struct apply_state *state,struct patch *patch)2204{2205struct strbuf qname = STRBUF_INIT;2206char*cp = patch->new_name ? patch->new_name : patch->old_name;2207int max, add, del;22082209quote_c_style(cp, &qname, NULL,0);22102211/*2212 * "scale" the filename2213 */2214 max = state->max_len;2215if(max >50)2216 max =50;22172218if(qname.len > max) {2219 cp =strchr(qname.buf + qname.len +3- max,'/');2220if(!cp)2221 cp = qname.buf + qname.len +3- max;2222strbuf_splice(&qname,0, cp - qname.buf,"...",3);2223}22242225if(patch->is_binary) {2226printf(" %-*s | Bin\n", max, qname.buf);2227strbuf_release(&qname);2228return;2229}22302231printf(" %-*s |", max, qname.buf);2232strbuf_release(&qname);22332234/*2235 * scale the add/delete2236 */2237 max = max + state->max_change >70?70- max : state->max_change;2238 add = patch->lines_added;2239 del = patch->lines_deleted;22402241if(state->max_change >0) {2242int total = ((add + del) * max + state->max_change /2) / state->max_change;2243 add = (add * max + state->max_change /2) / state->max_change;2244 del = total - add;2245}2246printf("%5d %.*s%.*s\n", patch->lines_added + patch->lines_deleted,2247 add, pluses, del, minuses);2248}22492250static intread_old_data(struct stat *st,const char*path,struct strbuf *buf)2251{2252switch(st->st_mode & S_IFMT) {2253case S_IFLNK:2254if(strbuf_readlink(buf, path, st->st_size) <0)2255returnerror(_("unable to read symlink%s"), path);2256return0;2257case S_IFREG:2258if(strbuf_read_file(buf, path, st->st_size) != st->st_size)2259returnerror(_("unable to open or read%s"), path);2260convert_to_git(&the_index, path, buf->buf, buf->len, buf,0);2261return0;2262default:2263return-1;2264}2265}22662267/*2268 * Update the preimage, and the common lines in postimage,2269 * from buffer buf of length len. If postlen is 0 the postimage2270 * is updated in place, otherwise it's updated on a new buffer2271 * of length postlen2272 */22732274static voidupdate_pre_post_images(struct image *preimage,2275struct image *postimage,2276char*buf,2277size_t len,size_t postlen)2278{2279int i, ctx, reduced;2280char*new, *old, *fixed;2281struct image fixed_preimage;22822283/*2284 * Update the preimage with whitespace fixes. Note that we2285 * are not losing preimage->buf -- apply_one_fragment() will2286 * free "oldlines".2287 */2288prepare_image(&fixed_preimage, buf, len,1);2289assert(postlen2290? fixed_preimage.nr == preimage->nr2291: fixed_preimage.nr <= preimage->nr);2292for(i =0; i < fixed_preimage.nr; i++)2293 fixed_preimage.line[i].flag = preimage->line[i].flag;2294free(preimage->line_allocated);2295*preimage = fixed_preimage;22962297/*2298 * Adjust the common context lines in postimage. This can be2299 * done in-place when we are shrinking it with whitespace2300 * fixing, but needs a new buffer when ignoring whitespace or2301 * expanding leading tabs to spaces.2302 *2303 * We trust the caller to tell us if the update can be done2304 * in place (postlen==0) or not.2305 */2306 old = postimage->buf;2307if(postlen)2308new= postimage->buf =xmalloc(postlen);2309else2310new= old;2311 fixed = preimage->buf;23122313for(i = reduced = ctx =0; i < postimage->nr; i++) {2314size_t l_len = postimage->line[i].len;2315if(!(postimage->line[i].flag & LINE_COMMON)) {2316/* an added line -- no counterparts in preimage */2317memmove(new, old, l_len);2318 old += l_len;2319new+= l_len;2320continue;2321}23222323/* a common context -- skip it in the original postimage */2324 old += l_len;23252326/* and find the corresponding one in the fixed preimage */2327while(ctx < preimage->nr &&2328!(preimage->line[ctx].flag & LINE_COMMON)) {2329 fixed += preimage->line[ctx].len;2330 ctx++;2331}23322333/*2334 * preimage is expected to run out, if the caller2335 * fixed addition of trailing blank lines.2336 */2337if(preimage->nr <= ctx) {2338 reduced++;2339continue;2340}23412342/* and copy it in, while fixing the line length */2343 l_len = preimage->line[ctx].len;2344memcpy(new, fixed, l_len);2345new+= l_len;2346 fixed += l_len;2347 postimage->line[i].len = l_len;2348 ctx++;2349}23502351if(postlen2352? postlen <new- postimage->buf2353: postimage->len <new- postimage->buf)2354die("BUG: caller miscounted postlen: asked%d, orig =%d, used =%d",2355(int)postlen, (int) postimage->len, (int)(new- postimage->buf));23562357/* Fix the length of the whole thing */2358 postimage->len =new- postimage->buf;2359 postimage->nr -= reduced;2360}23612362static intline_by_line_fuzzy_match(struct image *img,2363struct image *preimage,2364struct image *postimage,2365unsigned longtry,2366int try_lno,2367int preimage_limit)2368{2369int i;2370size_t imgoff =0;2371size_t preoff =0;2372size_t postlen = postimage->len;2373size_t extra_chars;2374char*buf;2375char*preimage_eof;2376char*preimage_end;2377struct strbuf fixed;2378char*fixed_buf;2379size_t fixed_len;23802381for(i =0; i < preimage_limit; i++) {2382size_t prelen = preimage->line[i].len;2383size_t imglen = img->line[try_lno+i].len;23842385if(!fuzzy_matchlines(img->buf +try+ imgoff, imglen,2386 preimage->buf + preoff, prelen))2387return0;2388if(preimage->line[i].flag & LINE_COMMON)2389 postlen += imglen - prelen;2390 imgoff += imglen;2391 preoff += prelen;2392}23932394/*2395 * Ok, the preimage matches with whitespace fuzz.2396 *2397 * imgoff now holds the true length of the target that2398 * matches the preimage before the end of the file.2399 *2400 * Count the number of characters in the preimage that fall2401 * beyond the end of the file and make sure that all of them2402 * are whitespace characters. (This can only happen if2403 * we are removing blank lines at the end of the file.)2404 */2405 buf = preimage_eof = preimage->buf + preoff;2406for( ; i < preimage->nr; i++)2407 preoff += preimage->line[i].len;2408 preimage_end = preimage->buf + preoff;2409for( ; buf < preimage_end; buf++)2410if(!isspace(*buf))2411return0;24122413/*2414 * Update the preimage and the common postimage context2415 * lines to use the same whitespace as the target.2416 * If whitespace is missing in the target (i.e.2417 * if the preimage extends beyond the end of the file),2418 * use the whitespace from the preimage.2419 */2420 extra_chars = preimage_end - preimage_eof;2421strbuf_init(&fixed, imgoff + extra_chars);2422strbuf_add(&fixed, img->buf +try, imgoff);2423strbuf_add(&fixed, preimage_eof, extra_chars);2424 fixed_buf =strbuf_detach(&fixed, &fixed_len);2425update_pre_post_images(preimage, postimage,2426 fixed_buf, fixed_len, postlen);2427return1;2428}24292430static intmatch_fragment(struct apply_state *state,2431struct image *img,2432struct image *preimage,2433struct image *postimage,2434unsigned longtry,2435int try_lno,2436unsigned ws_rule,2437int match_beginning,int match_end)2438{2439int i;2440char*fixed_buf, *buf, *orig, *target;2441struct strbuf fixed;2442size_t fixed_len, postlen;2443int preimage_limit;24442445if(preimage->nr + try_lno <= img->nr) {2446/*2447 * The hunk falls within the boundaries of img.2448 */2449 preimage_limit = preimage->nr;2450if(match_end && (preimage->nr + try_lno != img->nr))2451return0;2452}else if(state->ws_error_action == correct_ws_error &&2453(ws_rule & WS_BLANK_AT_EOF)) {2454/*2455 * This hunk extends beyond the end of img, and we are2456 * removing blank lines at the end of the file. This2457 * many lines from the beginning of the preimage must2458 * match with img, and the remainder of the preimage2459 * must be blank.2460 */2461 preimage_limit = img->nr - try_lno;2462}else{2463/*2464 * The hunk extends beyond the end of the img and2465 * we are not removing blanks at the end, so we2466 * should reject the hunk at this position.2467 */2468return0;2469}24702471if(match_beginning && try_lno)2472return0;24732474/* Quick hash check */2475for(i =0; i < preimage_limit; i++)2476if((img->line[try_lno + i].flag & LINE_PATCHED) ||2477(preimage->line[i].hash != img->line[try_lno + i].hash))2478return0;24792480if(preimage_limit == preimage->nr) {2481/*2482 * Do we have an exact match? If we were told to match2483 * at the end, size must be exactly at try+fragsize,2484 * otherwise try+fragsize must be still within the preimage,2485 * and either case, the old piece should match the preimage2486 * exactly.2487 */2488if((match_end2489? (try+ preimage->len == img->len)2490: (try+ preimage->len <= img->len)) &&2491!memcmp(img->buf +try, preimage->buf, preimage->len))2492return1;2493}else{2494/*2495 * The preimage extends beyond the end of img, so2496 * there cannot be an exact match.2497 *2498 * There must be one non-blank context line that match2499 * a line before the end of img.2500 */2501char*buf_end;25022503 buf = preimage->buf;2504 buf_end = buf;2505for(i =0; i < preimage_limit; i++)2506 buf_end += preimage->line[i].len;25072508for( ; buf < buf_end; buf++)2509if(!isspace(*buf))2510break;2511if(buf == buf_end)2512return0;2513}25142515/*2516 * No exact match. If we are ignoring whitespace, run a line-by-line2517 * fuzzy matching. We collect all the line length information because2518 * we need it to adjust whitespace if we match.2519 */2520if(state->ws_ignore_action == ignore_ws_change)2521returnline_by_line_fuzzy_match(img, preimage, postimage,2522try, try_lno, preimage_limit);25232524if(state->ws_error_action != correct_ws_error)2525return0;25262527/*2528 * The hunk does not apply byte-by-byte, but the hash says2529 * it might with whitespace fuzz. We weren't asked to2530 * ignore whitespace, we were asked to correct whitespace2531 * errors, so let's try matching after whitespace correction.2532 *2533 * While checking the preimage against the target, whitespace2534 * errors in both fixed, we count how large the corresponding2535 * postimage needs to be. The postimage prepared by2536 * apply_one_fragment() has whitespace errors fixed on added2537 * lines already, but the common lines were propagated as-is,2538 * which may become longer when their whitespace errors are2539 * fixed.2540 */25412542/* First count added lines in postimage */2543 postlen =0;2544for(i =0; i < postimage->nr; i++) {2545if(!(postimage->line[i].flag & LINE_COMMON))2546 postlen += postimage->line[i].len;2547}25482549/*2550 * The preimage may extend beyond the end of the file,2551 * but in this loop we will only handle the part of the2552 * preimage that falls within the file.2553 */2554strbuf_init(&fixed, preimage->len +1);2555 orig = preimage->buf;2556 target = img->buf +try;2557for(i =0; i < preimage_limit; i++) {2558size_t oldlen = preimage->line[i].len;2559size_t tgtlen = img->line[try_lno + i].len;2560size_t fixstart = fixed.len;2561struct strbuf tgtfix;2562int match;25632564/* Try fixing the line in the preimage */2565ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);25662567/* Try fixing the line in the target */2568strbuf_init(&tgtfix, tgtlen);2569ws_fix_copy(&tgtfix, target, tgtlen, ws_rule, NULL);25702571/*2572 * If they match, either the preimage was based on2573 * a version before our tree fixed whitespace breakage,2574 * or we are lacking a whitespace-fix patch the tree2575 * the preimage was based on already had (i.e. target2576 * has whitespace breakage, the preimage doesn't).2577 * In either case, we are fixing the whitespace breakages2578 * so we might as well take the fix together with their2579 * real change.2580 */2581 match = (tgtfix.len == fixed.len - fixstart &&2582!memcmp(tgtfix.buf, fixed.buf + fixstart,2583 fixed.len - fixstart));25842585/* Add the length if this is common with the postimage */2586if(preimage->line[i].flag & LINE_COMMON)2587 postlen += tgtfix.len;25882589strbuf_release(&tgtfix);2590if(!match)2591goto unmatch_exit;25922593 orig += oldlen;2594 target += tgtlen;2595}259625972598/*2599 * Now handle the lines in the preimage that falls beyond the2600 * end of the file (if any). They will only match if they are2601 * empty or only contain whitespace (if WS_BLANK_AT_EOL is2602 * false).2603 */2604for( ; i < preimage->nr; i++) {2605size_t fixstart = fixed.len;/* start of the fixed preimage */2606size_t oldlen = preimage->line[i].len;2607int j;26082609/* Try fixing the line in the preimage */2610ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);26112612for(j = fixstart; j < fixed.len; j++)2613if(!isspace(fixed.buf[j]))2614goto unmatch_exit;26152616 orig += oldlen;2617}26182619/*2620 * Yes, the preimage is based on an older version that still2621 * has whitespace breakages unfixed, and fixing them makes the2622 * hunk match. Update the context lines in the postimage.2623 */2624 fixed_buf =strbuf_detach(&fixed, &fixed_len);2625if(postlen < postimage->len)2626 postlen =0;2627update_pre_post_images(preimage, postimage,2628 fixed_buf, fixed_len, postlen);2629return1;26302631 unmatch_exit:2632strbuf_release(&fixed);2633return0;2634}26352636static intfind_pos(struct apply_state *state,2637struct image *img,2638struct image *preimage,2639struct image *postimage,2640int line,2641unsigned ws_rule,2642int match_beginning,int match_end)2643{2644int i;2645unsigned long backwards, forwards,try;2646int backwards_lno, forwards_lno, try_lno;26472648/*2649 * If match_beginning or match_end is specified, there is no2650 * point starting from a wrong line that will never match and2651 * wander around and wait for a match at the specified end.2652 */2653if(match_beginning)2654 line =0;2655else if(match_end)2656 line = img->nr - preimage->nr;26572658/*2659 * Because the comparison is unsigned, the following test2660 * will also take care of a negative line number that can2661 * result when match_end and preimage is larger than the target.2662 */2663if((size_t) line > img->nr)2664 line = img->nr;26652666try=0;2667for(i =0; i < line; i++)2668try+= img->line[i].len;26692670/*2671 * There's probably some smart way to do this, but I'll leave2672 * that to the smart and beautiful people. I'm simple and stupid.2673 */2674 backwards =try;2675 backwards_lno = line;2676 forwards =try;2677 forwards_lno = line;2678 try_lno = line;26792680for(i =0; ; i++) {2681if(match_fragment(state, img, preimage, postimage,2682try, try_lno, ws_rule,2683 match_beginning, match_end))2684return try_lno;26852686 again:2687if(backwards_lno ==0&& forwards_lno == img->nr)2688break;26892690if(i &1) {2691if(backwards_lno ==0) {2692 i++;2693goto again;2694}2695 backwards_lno--;2696 backwards -= img->line[backwards_lno].len;2697try= backwards;2698 try_lno = backwards_lno;2699}else{2700if(forwards_lno == img->nr) {2701 i++;2702goto again;2703}2704 forwards += img->line[forwards_lno].len;2705 forwards_lno++;2706try= forwards;2707 try_lno = forwards_lno;2708}27092710}2711return-1;2712}27132714static voidremove_first_line(struct image *img)2715{2716 img->buf += img->line[0].len;2717 img->len -= img->line[0].len;2718 img->line++;2719 img->nr--;2720}27212722static voidremove_last_line(struct image *img)2723{2724 img->len -= img->line[--img->nr].len;2725}27262727/*2728 * The change from "preimage" and "postimage" has been found to2729 * apply at applied_pos (counts in line numbers) in "img".2730 * Update "img" to remove "preimage" and replace it with "postimage".2731 */2732static voidupdate_image(struct apply_state *state,2733struct image *img,2734int applied_pos,2735struct image *preimage,2736struct image *postimage)2737{2738/*2739 * remove the copy of preimage at offset in img2740 * and replace it with postimage2741 */2742int i, nr;2743size_t remove_count, insert_count, applied_at =0;2744char*result;2745int preimage_limit;27462747/*2748 * If we are removing blank lines at the end of img,2749 * the preimage may extend beyond the end.2750 * If that is the case, we must be careful only to2751 * remove the part of the preimage that falls within2752 * the boundaries of img. Initialize preimage_limit2753 * to the number of lines in the preimage that falls2754 * within the boundaries.2755 */2756 preimage_limit = preimage->nr;2757if(preimage_limit > img->nr - applied_pos)2758 preimage_limit = img->nr - applied_pos;27592760for(i =0; i < applied_pos; i++)2761 applied_at += img->line[i].len;27622763 remove_count =0;2764for(i =0; i < preimage_limit; i++)2765 remove_count += img->line[applied_pos + i].len;2766 insert_count = postimage->len;27672768/* Adjust the contents */2769 result =xmalloc(st_add3(st_sub(img->len, remove_count), insert_count,1));2770memcpy(result, img->buf, applied_at);2771memcpy(result + applied_at, postimage->buf, postimage->len);2772memcpy(result + applied_at + postimage->len,2773 img->buf + (applied_at + remove_count),2774 img->len - (applied_at + remove_count));2775free(img->buf);2776 img->buf = result;2777 img->len += insert_count - remove_count;2778 result[img->len] ='\0';27792780/* Adjust the line table */2781 nr = img->nr + postimage->nr - preimage_limit;2782if(preimage_limit < postimage->nr) {2783/*2784 * NOTE: this knows that we never call remove_first_line()2785 * on anything other than pre/post image.2786 */2787REALLOC_ARRAY(img->line, nr);2788 img->line_allocated = img->line;2789}2790if(preimage_limit != postimage->nr)2791memmove(img->line + applied_pos + postimage->nr,2792 img->line + applied_pos + preimage_limit,2793(img->nr - (applied_pos + preimage_limit)) *2794sizeof(*img->line));2795memcpy(img->line + applied_pos,2796 postimage->line,2797 postimage->nr *sizeof(*img->line));2798if(!state->allow_overlap)2799for(i =0; i < postimage->nr; i++)2800 img->line[applied_pos + i].flag |= LINE_PATCHED;2801 img->nr = nr;2802}28032804/*2805 * Use the patch-hunk text in "frag" to prepare two images (preimage and2806 * postimage) for the hunk. Find lines that match "preimage" in "img" and2807 * replace the part of "img" with "postimage" text.2808 */2809static intapply_one_fragment(struct apply_state *state,2810struct image *img,struct fragment *frag,2811int inaccurate_eof,unsigned ws_rule,2812int nth_fragment)2813{2814int match_beginning, match_end;2815const char*patch = frag->patch;2816int size = frag->size;2817char*old, *oldlines;2818struct strbuf newlines;2819int new_blank_lines_at_end =0;2820int found_new_blank_lines_at_end =0;2821int hunk_linenr = frag->linenr;2822unsigned long leading, trailing;2823int pos, applied_pos;2824struct image preimage;2825struct image postimage;28262827memset(&preimage,0,sizeof(preimage));2828memset(&postimage,0,sizeof(postimage));2829 oldlines =xmalloc(size);2830strbuf_init(&newlines, size);28312832 old = oldlines;2833while(size >0) {2834char first;2835int len =linelen(patch, size);2836int plen;2837int added_blank_line =0;2838int is_blank_context =0;2839size_t start;28402841if(!len)2842break;28432844/*2845 * "plen" is how much of the line we should use for2846 * the actual patch data. Normally we just remove the2847 * first character on the line, but if the line is2848 * followed by "\ No newline", then we also remove the2849 * last one (which is the newline, of course).2850 */2851 plen = len -1;2852if(len < size && patch[len] =='\\')2853 plen--;2854 first = *patch;2855if(state->apply_in_reverse) {2856if(first =='-')2857 first ='+';2858else if(first =='+')2859 first ='-';2860}28612862switch(first) {2863case'\n':2864/* Newer GNU diff, empty context line */2865if(plen <0)2866/* ... followed by '\No newline'; nothing */2867break;2868*old++ ='\n';2869strbuf_addch(&newlines,'\n');2870add_line_info(&preimage,"\n",1, LINE_COMMON);2871add_line_info(&postimage,"\n",1, LINE_COMMON);2872 is_blank_context =1;2873break;2874case' ':2875if(plen && (ws_rule & WS_BLANK_AT_EOF) &&2876ws_blank_line(patch +1, plen, ws_rule))2877 is_blank_context =1;2878case'-':2879memcpy(old, patch +1, plen);2880add_line_info(&preimage, old, plen,2881(first ==' '? LINE_COMMON :0));2882 old += plen;2883if(first =='-')2884break;2885/* Fall-through for ' ' */2886case'+':2887/* --no-add does not add new lines */2888if(first =='+'&& state->no_add)2889break;28902891 start = newlines.len;2892if(first !='+'||2893!state->whitespace_error ||2894 state->ws_error_action != correct_ws_error) {2895strbuf_add(&newlines, patch +1, plen);2896}2897else{2898ws_fix_copy(&newlines, patch +1, plen, ws_rule, &state->applied_after_fixing_ws);2899}2900add_line_info(&postimage, newlines.buf + start, newlines.len - start,2901(first =='+'?0: LINE_COMMON));2902if(first =='+'&&2903(ws_rule & WS_BLANK_AT_EOF) &&2904ws_blank_line(patch +1, plen, ws_rule))2905 added_blank_line =1;2906break;2907case'@':case'\\':2908/* Ignore it, we already handled it */2909break;2910default:2911if(state->apply_verbosity > verbosity_normal)2912error(_("invalid start of line: '%c'"), first);2913 applied_pos = -1;2914goto out;2915}2916if(added_blank_line) {2917if(!new_blank_lines_at_end)2918 found_new_blank_lines_at_end = hunk_linenr;2919 new_blank_lines_at_end++;2920}2921else if(is_blank_context)2922;2923else2924 new_blank_lines_at_end =0;2925 patch += len;2926 size -= len;2927 hunk_linenr++;2928}2929if(inaccurate_eof &&2930 old > oldlines && old[-1] =='\n'&&2931 newlines.len >0&& newlines.buf[newlines.len -1] =='\n') {2932 old--;2933strbuf_setlen(&newlines, newlines.len -1);2934}29352936 leading = frag->leading;2937 trailing = frag->trailing;29382939/*2940 * A hunk to change lines at the beginning would begin with2941 * @@ -1,L +N,M @@2942 * but we need to be careful. -U0 that inserts before the second2943 * line also has this pattern.2944 *2945 * And a hunk to add to an empty file would begin with2946 * @@ -0,0 +N,M @@2947 *2948 * In other words, a hunk that is (frag->oldpos <= 1) with or2949 * without leading context must match at the beginning.2950 */2951 match_beginning = (!frag->oldpos ||2952(frag->oldpos ==1&& !state->unidiff_zero));29532954/*2955 * A hunk without trailing lines must match at the end.2956 * However, we simply cannot tell if a hunk must match end2957 * from the lack of trailing lines if the patch was generated2958 * with unidiff without any context.2959 */2960 match_end = !state->unidiff_zero && !trailing;29612962 pos = frag->newpos ? (frag->newpos -1) :0;2963 preimage.buf = oldlines;2964 preimage.len = old - oldlines;2965 postimage.buf = newlines.buf;2966 postimage.len = newlines.len;2967 preimage.line = preimage.line_allocated;2968 postimage.line = postimage.line_allocated;29692970for(;;) {29712972 applied_pos =find_pos(state, img, &preimage, &postimage, pos,2973 ws_rule, match_beginning, match_end);29742975if(applied_pos >=0)2976break;29772978/* Am I at my context limits? */2979if((leading <= state->p_context) && (trailing <= state->p_context))2980break;2981if(match_beginning || match_end) {2982 match_beginning = match_end =0;2983continue;2984}29852986/*2987 * Reduce the number of context lines; reduce both2988 * leading and trailing if they are equal otherwise2989 * just reduce the larger context.2990 */2991if(leading >= trailing) {2992remove_first_line(&preimage);2993remove_first_line(&postimage);2994 pos--;2995 leading--;2996}2997if(trailing > leading) {2998remove_last_line(&preimage);2999remove_last_line(&postimage);3000 trailing--;3001}3002}30033004if(applied_pos >=0) {3005if(new_blank_lines_at_end &&3006 preimage.nr + applied_pos >= img->nr &&3007(ws_rule & WS_BLANK_AT_EOF) &&3008 state->ws_error_action != nowarn_ws_error) {3009record_ws_error(state, WS_BLANK_AT_EOF,"+",1,3010 found_new_blank_lines_at_end);3011if(state->ws_error_action == correct_ws_error) {3012while(new_blank_lines_at_end--)3013remove_last_line(&postimage);3014}3015/*3016 * We would want to prevent write_out_results()3017 * from taking place in apply_patch() that follows3018 * the callchain led us here, which is:3019 * apply_patch->check_patch_list->check_patch->3020 * apply_data->apply_fragments->apply_one_fragment3021 */3022if(state->ws_error_action == die_on_ws_error)3023 state->apply =0;3024}30253026if(state->apply_verbosity > verbosity_normal && applied_pos != pos) {3027int offset = applied_pos - pos;3028if(state->apply_in_reverse)3029 offset =0- offset;3030fprintf_ln(stderr,3031Q_("Hunk #%dsucceeded at%d(offset%dline).",3032"Hunk #%dsucceeded at%d(offset%dlines).",3033 offset),3034 nth_fragment, applied_pos +1, offset);3035}30363037/*3038 * Warn if it was necessary to reduce the number3039 * of context lines.3040 */3041if((leading != frag->leading ||3042 trailing != frag->trailing) && state->apply_verbosity > verbosity_silent)3043fprintf_ln(stderr,_("Context reduced to (%ld/%ld)"3044" to apply fragment at%d"),3045 leading, trailing, applied_pos+1);3046update_image(state, img, applied_pos, &preimage, &postimage);3047}else{3048if(state->apply_verbosity > verbosity_normal)3049error(_("while searching for:\n%.*s"),3050(int)(old - oldlines), oldlines);3051}30523053out:3054free(oldlines);3055strbuf_release(&newlines);3056free(preimage.line_allocated);3057free(postimage.line_allocated);30583059return(applied_pos <0);3060}30613062static intapply_binary_fragment(struct apply_state *state,3063struct image *img,3064struct patch *patch)3065{3066struct fragment *fragment = patch->fragments;3067unsigned long len;3068void*dst;30693070if(!fragment)3071returnerror(_("missing binary patch data for '%s'"),3072 patch->new_name ?3073 patch->new_name :3074 patch->old_name);30753076/* Binary patch is irreversible without the optional second hunk */3077if(state->apply_in_reverse) {3078if(!fragment->next)3079returnerror(_("cannot reverse-apply a binary patch "3080"without the reverse hunk to '%s'"),3081 patch->new_name3082? patch->new_name : patch->old_name);3083 fragment = fragment->next;3084}3085switch(fragment->binary_patch_method) {3086case BINARY_DELTA_DEFLATED:3087 dst =patch_delta(img->buf, img->len, fragment->patch,3088 fragment->size, &len);3089if(!dst)3090return-1;3091clear_image(img);3092 img->buf = dst;3093 img->len = len;3094return0;3095case BINARY_LITERAL_DEFLATED:3096clear_image(img);3097 img->len = fragment->size;3098 img->buf =xmemdupz(fragment->patch, img->len);3099return0;3100}3101return-1;3102}31033104/*3105 * Replace "img" with the result of applying the binary patch.3106 * The binary patch data itself in patch->fragment is still kept3107 * but the preimage prepared by the caller in "img" is freed here3108 * or in the helper function apply_binary_fragment() this calls.3109 */3110static intapply_binary(struct apply_state *state,3111struct image *img,3112struct patch *patch)3113{3114const char*name = patch->old_name ? patch->old_name : patch->new_name;3115struct object_id oid;31163117/*3118 * For safety, we require patch index line to contain3119 * full 40-byte textual SHA1 for old and new, at least for now.3120 */3121if(strlen(patch->old_sha1_prefix) !=40||3122strlen(patch->new_sha1_prefix) !=40||3123get_oid_hex(patch->old_sha1_prefix, &oid) ||3124get_oid_hex(patch->new_sha1_prefix, &oid))3125returnerror(_("cannot apply binary patch to '%s' "3126"without full index line"), name);31273128if(patch->old_name) {3129/*3130 * See if the old one matches what the patch3131 * applies to.3132 */3133hash_sha1_file(img->buf, img->len, blob_type, oid.hash);3134if(strcmp(oid_to_hex(&oid), patch->old_sha1_prefix))3135returnerror(_("the patch applies to '%s' (%s), "3136"which does not match the "3137"current contents."),3138 name,oid_to_hex(&oid));3139}3140else{3141/* Otherwise, the old one must be empty. */3142if(img->len)3143returnerror(_("the patch applies to an empty "3144"'%s' but it is not empty"), name);3145}31463147get_oid_hex(patch->new_sha1_prefix, &oid);3148if(is_null_oid(&oid)) {3149clear_image(img);3150return0;/* deletion patch */3151}31523153if(has_sha1_file(oid.hash)) {3154/* We already have the postimage */3155enum object_type type;3156unsigned long size;3157char*result;31583159 result =read_sha1_file(oid.hash, &type, &size);3160if(!result)3161returnerror(_("the necessary postimage%sfor "3162"'%s' cannot be read"),3163 patch->new_sha1_prefix, name);3164clear_image(img);3165 img->buf = result;3166 img->len = size;3167}else{3168/*3169 * We have verified buf matches the preimage;3170 * apply the patch data to it, which is stored3171 * in the patch->fragments->{patch,size}.3172 */3173if(apply_binary_fragment(state, img, patch))3174returnerror(_("binary patch does not apply to '%s'"),3175 name);31763177/* verify that the result matches */3178hash_sha1_file(img->buf, img->len, blob_type, oid.hash);3179if(strcmp(oid_to_hex(&oid), patch->new_sha1_prefix))3180returnerror(_("binary patch to '%s' creates incorrect result (expecting%s, got%s)"),3181 name, patch->new_sha1_prefix,oid_to_hex(&oid));3182}31833184return0;3185}31863187static intapply_fragments(struct apply_state *state,struct image *img,struct patch *patch)3188{3189struct fragment *frag = patch->fragments;3190const char*name = patch->old_name ? patch->old_name : patch->new_name;3191unsigned ws_rule = patch->ws_rule;3192unsigned inaccurate_eof = patch->inaccurate_eof;3193int nth =0;31943195if(patch->is_binary)3196returnapply_binary(state, img, patch);31973198while(frag) {3199 nth++;3200if(apply_one_fragment(state, img, frag, inaccurate_eof, ws_rule, nth)) {3201error(_("patch failed:%s:%ld"), name, frag->oldpos);3202if(!state->apply_with_reject)3203return-1;3204 frag->rejected =1;3205}3206 frag = frag->next;3207}3208return0;3209}32103211static intread_blob_object(struct strbuf *buf,const struct object_id *oid,unsigned mode)3212{3213if(S_ISGITLINK(mode)) {3214strbuf_grow(buf,100);3215strbuf_addf(buf,"Subproject commit%s\n",oid_to_hex(oid));3216}else{3217enum object_type type;3218unsigned long sz;3219char*result;32203221 result =read_sha1_file(oid->hash, &type, &sz);3222if(!result)3223return-1;3224/* XXX read_sha1_file NUL-terminates */3225strbuf_attach(buf, result, sz, sz +1);3226}3227return0;3228}32293230static intread_file_or_gitlink(const struct cache_entry *ce,struct strbuf *buf)3231{3232if(!ce)3233return0;3234returnread_blob_object(buf, &ce->oid, ce->ce_mode);3235}32363237static struct patch *in_fn_table(struct apply_state *state,const char*name)3238{3239struct string_list_item *item;32403241if(name == NULL)3242return NULL;32433244 item =string_list_lookup(&state->fn_table, name);3245if(item != NULL)3246return(struct patch *)item->util;32473248return NULL;3249}32503251/*3252 * item->util in the filename table records the status of the path.3253 * Usually it points at a patch (whose result records the contents3254 * of it after applying it), but it could be PATH_WAS_DELETED for a3255 * path that a previously applied patch has already removed, or3256 * PATH_TO_BE_DELETED for a path that a later patch would remove.3257 *3258 * The latter is needed to deal with a case where two paths A and B3259 * are swapped by first renaming A to B and then renaming B to A;3260 * moving A to B should not be prevented due to presence of B as we3261 * will remove it in a later patch.3262 */3263#define PATH_TO_BE_DELETED ((struct patch *) -2)3264#define PATH_WAS_DELETED ((struct patch *) -1)32653266static intto_be_deleted(struct patch *patch)3267{3268return patch == PATH_TO_BE_DELETED;3269}32703271static intwas_deleted(struct patch *patch)3272{3273return patch == PATH_WAS_DELETED;3274}32753276static voidadd_to_fn_table(struct apply_state *state,struct patch *patch)3277{3278struct string_list_item *item;32793280/*3281 * Always add new_name unless patch is a deletion3282 * This should cover the cases for normal diffs,3283 * file creations and copies3284 */3285if(patch->new_name != NULL) {3286 item =string_list_insert(&state->fn_table, patch->new_name);3287 item->util = patch;3288}32893290/*3291 * store a failure on rename/deletion cases because3292 * later chunks shouldn't patch old names3293 */3294if((patch->new_name == NULL) || (patch->is_rename)) {3295 item =string_list_insert(&state->fn_table, patch->old_name);3296 item->util = PATH_WAS_DELETED;3297}3298}32993300static voidprepare_fn_table(struct apply_state *state,struct patch *patch)3301{3302/*3303 * store information about incoming file deletion3304 */3305while(patch) {3306if((patch->new_name == NULL) || (patch->is_rename)) {3307struct string_list_item *item;3308 item =string_list_insert(&state->fn_table, patch->old_name);3309 item->util = PATH_TO_BE_DELETED;3310}3311 patch = patch->next;3312}3313}33143315static intcheckout_target(struct index_state *istate,3316struct cache_entry *ce,struct stat *st)3317{3318struct checkout costate = CHECKOUT_INIT;33193320 costate.refresh_cache =1;3321 costate.istate = istate;3322if(checkout_entry(ce, &costate, NULL) ||lstat(ce->name, st))3323returnerror(_("cannot checkout%s"), ce->name);3324return0;3325}33263327static struct patch *previous_patch(struct apply_state *state,3328struct patch *patch,3329int*gone)3330{3331struct patch *previous;33323333*gone =0;3334if(patch->is_copy || patch->is_rename)3335return NULL;/* "git" patches do not depend on the order */33363337 previous =in_fn_table(state, patch->old_name);3338if(!previous)3339return NULL;33403341if(to_be_deleted(previous))3342return NULL;/* the deletion hasn't happened yet */33433344if(was_deleted(previous))3345*gone =1;33463347return previous;3348}33493350static intverify_index_match(const struct cache_entry *ce,struct stat *st)3351{3352if(S_ISGITLINK(ce->ce_mode)) {3353if(!S_ISDIR(st->st_mode))3354return-1;3355return0;3356}3357returnce_match_stat(ce, st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);3358}33593360#define SUBMODULE_PATCH_WITHOUT_INDEX 133613362static intload_patch_target(struct apply_state *state,3363struct strbuf *buf,3364const struct cache_entry *ce,3365struct stat *st,3366const char*name,3367unsigned expected_mode)3368{3369if(state->cached || state->check_index) {3370if(read_file_or_gitlink(ce, buf))3371returnerror(_("failed to read%s"), name);3372}else if(name) {3373if(S_ISGITLINK(expected_mode)) {3374if(ce)3375returnread_file_or_gitlink(ce, buf);3376else3377return SUBMODULE_PATCH_WITHOUT_INDEX;3378}else if(has_symlink_leading_path(name,strlen(name))) {3379returnerror(_("reading from '%s' beyond a symbolic link"), name);3380}else{3381if(read_old_data(st, name, buf))3382returnerror(_("failed to read%s"), name);3383}3384}3385return0;3386}33873388/*3389 * We are about to apply "patch"; populate the "image" with the3390 * current version we have, from the working tree or from the index,3391 * depending on the situation e.g. --cached/--index. If we are3392 * applying a non-git patch that incrementally updates the tree,3393 * we read from the result of a previous diff.3394 */3395static intload_preimage(struct apply_state *state,3396struct image *image,3397struct patch *patch,struct stat *st,3398const struct cache_entry *ce)3399{3400struct strbuf buf = STRBUF_INIT;3401size_t len;3402char*img;3403struct patch *previous;3404int status;34053406 previous =previous_patch(state, patch, &status);3407if(status)3408returnerror(_("path%shas been renamed/deleted"),3409 patch->old_name);3410if(previous) {3411/* We have a patched copy in memory; use that. */3412strbuf_add(&buf, previous->result, previous->resultsize);3413}else{3414 status =load_patch_target(state, &buf, ce, st,3415 patch->old_name, patch->old_mode);3416if(status <0)3417return status;3418else if(status == SUBMODULE_PATCH_WITHOUT_INDEX) {3419/*3420 * There is no way to apply subproject3421 * patch without looking at the index.3422 * NEEDSWORK: shouldn't this be flagged3423 * as an error???3424 */3425free_fragment_list(patch->fragments);3426 patch->fragments = NULL;3427}else if(status) {3428returnerror(_("failed to read%s"), patch->old_name);3429}3430}34313432 img =strbuf_detach(&buf, &len);3433prepare_image(image, img, len, !patch->is_binary);3434return0;3435}34363437static intthree_way_merge(struct image *image,3438char*path,3439const struct object_id *base,3440const struct object_id *ours,3441const struct object_id *theirs)3442{3443 mmfile_t base_file, our_file, their_file;3444 mmbuffer_t result = { NULL };3445int status;34463447read_mmblob(&base_file, base);3448read_mmblob(&our_file, ours);3449read_mmblob(&their_file, theirs);3450 status =ll_merge(&result, path,3451&base_file,"base",3452&our_file,"ours",3453&their_file,"theirs", NULL);3454free(base_file.ptr);3455free(our_file.ptr);3456free(their_file.ptr);3457if(status <0|| !result.ptr) {3458free(result.ptr);3459return-1;3460}3461clear_image(image);3462 image->buf = result.ptr;3463 image->len = result.size;34643465return status;3466}34673468/*3469 * When directly falling back to add/add three-way merge, we read from3470 * the current contents of the new_name. In no cases other than that3471 * this function will be called.3472 */3473static intload_current(struct apply_state *state,3474struct image *image,3475struct patch *patch)3476{3477struct strbuf buf = STRBUF_INIT;3478int status, pos;3479size_t len;3480char*img;3481struct stat st;3482struct cache_entry *ce;3483char*name = patch->new_name;3484unsigned mode = patch->new_mode;34853486if(!patch->is_new)3487die("BUG: patch to%sis not a creation", patch->old_name);34883489 pos =cache_name_pos(name,strlen(name));3490if(pos <0)3491returnerror(_("%s: does not exist in index"), name);3492 ce = active_cache[pos];3493if(lstat(name, &st)) {3494if(errno != ENOENT)3495returnerror_errno("%s", name);3496if(checkout_target(&the_index, ce, &st))3497return-1;3498}3499if(verify_index_match(ce, &st))3500returnerror(_("%s: does not match index"), name);35013502 status =load_patch_target(state, &buf, ce, &st, name, mode);3503if(status <0)3504return status;3505else if(status)3506return-1;3507 img =strbuf_detach(&buf, &len);3508prepare_image(image, img, len, !patch->is_binary);3509return0;3510}35113512static inttry_threeway(struct apply_state *state,3513struct image *image,3514struct patch *patch,3515struct stat *st,3516const struct cache_entry *ce)3517{3518struct object_id pre_oid, post_oid, our_oid;3519struct strbuf buf = STRBUF_INIT;3520size_t len;3521int status;3522char*img;3523struct image tmp_image;35243525/* No point falling back to 3-way merge in these cases */3526if(patch->is_delete ||3527S_ISGITLINK(patch->old_mode) ||S_ISGITLINK(patch->new_mode))3528return-1;35293530/* Preimage the patch was prepared for */3531if(patch->is_new)3532write_sha1_file("",0, blob_type, pre_oid.hash);3533else if(get_sha1(patch->old_sha1_prefix, pre_oid.hash) ||3534read_blob_object(&buf, &pre_oid, patch->old_mode))3535returnerror(_("repository lacks the necessary blob to fall back on 3-way merge."));35363537if(state->apply_verbosity > verbosity_silent)3538fprintf(stderr,_("Falling back to three-way merge...\n"));35393540 img =strbuf_detach(&buf, &len);3541prepare_image(&tmp_image, img, len,1);3542/* Apply the patch to get the post image */3543if(apply_fragments(state, &tmp_image, patch) <0) {3544clear_image(&tmp_image);3545return-1;3546}3547/* post_oid is theirs */3548write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, post_oid.hash);3549clear_image(&tmp_image);35503551/* our_oid is ours */3552if(patch->is_new) {3553if(load_current(state, &tmp_image, patch))3554returnerror(_("cannot read the current contents of '%s'"),3555 patch->new_name);3556}else{3557if(load_preimage(state, &tmp_image, patch, st, ce))3558returnerror(_("cannot read the current contents of '%s'"),3559 patch->old_name);3560}3561write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, our_oid.hash);3562clear_image(&tmp_image);35633564/* in-core three-way merge between post and our using pre as base */3565 status =three_way_merge(image, patch->new_name,3566&pre_oid, &our_oid, &post_oid);3567if(status <0) {3568if(state->apply_verbosity > verbosity_silent)3569fprintf(stderr,3570_("Failed to fall back on three-way merge...\n"));3571return status;3572}35733574if(status) {3575 patch->conflicted_threeway =1;3576if(patch->is_new)3577oidclr(&patch->threeway_stage[0]);3578else3579oidcpy(&patch->threeway_stage[0], &pre_oid);3580oidcpy(&patch->threeway_stage[1], &our_oid);3581oidcpy(&patch->threeway_stage[2], &post_oid);3582if(state->apply_verbosity > verbosity_silent)3583fprintf(stderr,3584_("Applied patch to '%s' with conflicts.\n"),3585 patch->new_name);3586}else{3587if(state->apply_verbosity > verbosity_silent)3588fprintf(stderr,3589_("Applied patch to '%s' cleanly.\n"),3590 patch->new_name);3591}3592return0;3593}35943595static intapply_data(struct apply_state *state,struct patch *patch,3596struct stat *st,const struct cache_entry *ce)3597{3598struct image image;35993600if(load_preimage(state, &image, patch, st, ce) <0)3601return-1;36023603if(patch->direct_to_threeway ||3604apply_fragments(state, &image, patch) <0) {3605/* Note: with --reject, apply_fragments() returns 0 */3606if(!state->threeway ||try_threeway(state, &image, patch, st, ce) <0)3607return-1;3608}3609 patch->result = image.buf;3610 patch->resultsize = image.len;3611add_to_fn_table(state, patch);3612free(image.line_allocated);36133614if(0< patch->is_delete && patch->resultsize)3615returnerror(_("removal patch leaves file contents"));36163617return0;3618}36193620/*3621 * If "patch" that we are looking at modifies or deletes what we have,3622 * we would want it not to lose any local modification we have, either3623 * in the working tree or in the index.3624 *3625 * This also decides if a non-git patch is a creation patch or a3626 * modification to an existing empty file. We do not check the state3627 * of the current tree for a creation patch in this function; the caller3628 * check_patch() separately makes sure (and errors out otherwise) that3629 * the path the patch creates does not exist in the current tree.3630 */3631static intcheck_preimage(struct apply_state *state,3632struct patch *patch,3633struct cache_entry **ce,3634struct stat *st)3635{3636const char*old_name = patch->old_name;3637struct patch *previous = NULL;3638int stat_ret =0, status;3639unsigned st_mode =0;36403641if(!old_name)3642return0;36433644assert(patch->is_new <=0);3645 previous =previous_patch(state, patch, &status);36463647if(status)3648returnerror(_("path%shas been renamed/deleted"), old_name);3649if(previous) {3650 st_mode = previous->new_mode;3651}else if(!state->cached) {3652 stat_ret =lstat(old_name, st);3653if(stat_ret && errno != ENOENT)3654returnerror_errno("%s", old_name);3655}36563657if(state->check_index && !previous) {3658int pos =cache_name_pos(old_name,strlen(old_name));3659if(pos <0) {3660if(patch->is_new <0)3661goto is_new;3662returnerror(_("%s: does not exist in index"), old_name);3663}3664*ce = active_cache[pos];3665if(stat_ret <0) {3666if(checkout_target(&the_index, *ce, st))3667return-1;3668}3669if(!state->cached &&verify_index_match(*ce, st))3670returnerror(_("%s: does not match index"), old_name);3671if(state->cached)3672 st_mode = (*ce)->ce_mode;3673}else if(stat_ret <0) {3674if(patch->is_new <0)3675goto is_new;3676returnerror_errno("%s", old_name);3677}36783679if(!state->cached && !previous)3680 st_mode =ce_mode_from_stat(*ce, st->st_mode);36813682if(patch->is_new <0)3683 patch->is_new =0;3684if(!patch->old_mode)3685 patch->old_mode = st_mode;3686if((st_mode ^ patch->old_mode) & S_IFMT)3687returnerror(_("%s: wrong type"), old_name);3688if(st_mode != patch->old_mode)3689warning(_("%shas type%o, expected%o"),3690 old_name, st_mode, patch->old_mode);3691if(!patch->new_mode && !patch->is_delete)3692 patch->new_mode = st_mode;3693return0;36943695 is_new:3696 patch->is_new =1;3697 patch->is_delete =0;3698FREE_AND_NULL(patch->old_name);3699return0;3700}370137023703#define EXISTS_IN_INDEX 13704#define EXISTS_IN_WORKTREE 237053706static intcheck_to_create(struct apply_state *state,3707const char*new_name,3708int ok_if_exists)3709{3710struct stat nst;37113712if(state->check_index &&3713cache_name_pos(new_name,strlen(new_name)) >=0&&3714!ok_if_exists)3715return EXISTS_IN_INDEX;3716if(state->cached)3717return0;37183719if(!lstat(new_name, &nst)) {3720if(S_ISDIR(nst.st_mode) || ok_if_exists)3721return0;3722/*3723 * A leading component of new_name might be a symlink3724 * that is going to be removed with this patch, but3725 * still pointing at somewhere that has the path.3726 * In such a case, path "new_name" does not exist as3727 * far as git is concerned.3728 */3729if(has_symlink_leading_path(new_name,strlen(new_name)))3730return0;37313732return EXISTS_IN_WORKTREE;3733}else if(!is_missing_file_error(errno)) {3734returnerror_errno("%s", new_name);3735}3736return0;3737}37383739static uintptr_tregister_symlink_changes(struct apply_state *state,3740const char*path,3741uintptr_t what)3742{3743struct string_list_item *ent;37443745 ent =string_list_lookup(&state->symlink_changes, path);3746if(!ent) {3747 ent =string_list_insert(&state->symlink_changes, path);3748 ent->util = (void*)0;3749}3750 ent->util = (void*)(what | ((uintptr_t)ent->util));3751return(uintptr_t)ent->util;3752}37533754static uintptr_tcheck_symlink_changes(struct apply_state *state,const char*path)3755{3756struct string_list_item *ent;37573758 ent =string_list_lookup(&state->symlink_changes, path);3759if(!ent)3760return0;3761return(uintptr_t)ent->util;3762}37633764static voidprepare_symlink_changes(struct apply_state *state,struct patch *patch)3765{3766for( ; patch; patch = patch->next) {3767if((patch->old_name &&S_ISLNK(patch->old_mode)) &&3768(patch->is_rename || patch->is_delete))3769/* the symlink at patch->old_name is removed */3770register_symlink_changes(state, patch->old_name, APPLY_SYMLINK_GOES_AWAY);37713772if(patch->new_name &&S_ISLNK(patch->new_mode))3773/* the symlink at patch->new_name is created or remains */3774register_symlink_changes(state, patch->new_name, APPLY_SYMLINK_IN_RESULT);3775}3776}37773778static intpath_is_beyond_symlink_1(struct apply_state *state,struct strbuf *name)3779{3780do{3781unsigned int change;37823783while(--name->len && name->buf[name->len] !='/')3784;/* scan backwards */3785if(!name->len)3786break;3787 name->buf[name->len] ='\0';3788 change =check_symlink_changes(state, name->buf);3789if(change & APPLY_SYMLINK_IN_RESULT)3790return1;3791if(change & APPLY_SYMLINK_GOES_AWAY)3792/*3793 * This cannot be "return 0", because we may3794 * see a new one created at a higher level.3795 */3796continue;37973798/* otherwise, check the preimage */3799if(state->check_index) {3800struct cache_entry *ce;38013802 ce =cache_file_exists(name->buf, name->len, ignore_case);3803if(ce &&S_ISLNK(ce->ce_mode))3804return1;3805}else{3806struct stat st;3807if(!lstat(name->buf, &st) &&S_ISLNK(st.st_mode))3808return1;3809}3810}while(1);3811return0;3812}38133814static intpath_is_beyond_symlink(struct apply_state *state,const char*name_)3815{3816int ret;3817struct strbuf name = STRBUF_INIT;38183819assert(*name_ !='\0');3820strbuf_addstr(&name, name_);3821 ret =path_is_beyond_symlink_1(state, &name);3822strbuf_release(&name);38233824return ret;3825}38263827static intcheck_unsafe_path(struct patch *patch)3828{3829const char*old_name = NULL;3830const char*new_name = NULL;3831if(patch->is_delete)3832 old_name = patch->old_name;3833else if(!patch->is_new && !patch->is_copy)3834 old_name = patch->old_name;3835if(!patch->is_delete)3836 new_name = patch->new_name;38373838if(old_name && !verify_path(old_name))3839returnerror(_("invalid path '%s'"), old_name);3840if(new_name && !verify_path(new_name))3841returnerror(_("invalid path '%s'"), new_name);3842return0;3843}38443845/*3846 * Check and apply the patch in-core; leave the result in patch->result3847 * for the caller to write it out to the final destination.3848 */3849static intcheck_patch(struct apply_state *state,struct patch *patch)3850{3851struct stat st;3852const char*old_name = patch->old_name;3853const char*new_name = patch->new_name;3854const char*name = old_name ? old_name : new_name;3855struct cache_entry *ce = NULL;3856struct patch *tpatch;3857int ok_if_exists;3858int status;38593860 patch->rejected =1;/* we will drop this after we succeed */38613862 status =check_preimage(state, patch, &ce, &st);3863if(status)3864return status;3865 old_name = patch->old_name;38663867/*3868 * A type-change diff is always split into a patch to delete3869 * old, immediately followed by a patch to create new (see3870 * diff.c::run_diff()); in such a case it is Ok that the entry3871 * to be deleted by the previous patch is still in the working3872 * tree and in the index.3873 *3874 * A patch to swap-rename between A and B would first rename A3875 * to B and then rename B to A. While applying the first one,3876 * the presence of B should not stop A from getting renamed to3877 * B; ask to_be_deleted() about the later rename. Removal of3878 * B and rename from A to B is handled the same way by asking3879 * was_deleted().3880 */3881if((tpatch =in_fn_table(state, new_name)) &&3882(was_deleted(tpatch) ||to_be_deleted(tpatch)))3883 ok_if_exists =1;3884else3885 ok_if_exists =0;38863887if(new_name &&3888((0< patch->is_new) || patch->is_rename || patch->is_copy)) {3889int err =check_to_create(state, new_name, ok_if_exists);38903891if(err && state->threeway) {3892 patch->direct_to_threeway =1;3893}else switch(err) {3894case0:3895break;/* happy */3896case EXISTS_IN_INDEX:3897returnerror(_("%s: already exists in index"), new_name);3898break;3899case EXISTS_IN_WORKTREE:3900returnerror(_("%s: already exists in working directory"),3901 new_name);3902default:3903return err;3904}39053906if(!patch->new_mode) {3907if(0< patch->is_new)3908 patch->new_mode = S_IFREG |0644;3909else3910 patch->new_mode = patch->old_mode;3911}3912}39133914if(new_name && old_name) {3915int same = !strcmp(old_name, new_name);3916if(!patch->new_mode)3917 patch->new_mode = patch->old_mode;3918if((patch->old_mode ^ patch->new_mode) & S_IFMT) {3919if(same)3920returnerror(_("new mode (%o) of%sdoes not "3921"match old mode (%o)"),3922 patch->new_mode, new_name,3923 patch->old_mode);3924else3925returnerror(_("new mode (%o) of%sdoes not "3926"match old mode (%o) of%s"),3927 patch->new_mode, new_name,3928 patch->old_mode, old_name);3929}3930}39313932if(!state->unsafe_paths &&check_unsafe_path(patch))3933return-128;39343935/*3936 * An attempt to read from or delete a path that is beyond a3937 * symbolic link will be prevented by load_patch_target() that3938 * is called at the beginning of apply_data() so we do not3939 * have to worry about a patch marked with "is_delete" bit3940 * here. We however need to make sure that the patch result3941 * is not deposited to a path that is beyond a symbolic link3942 * here.3943 */3944if(!patch->is_delete &&path_is_beyond_symlink(state, patch->new_name))3945returnerror(_("affected file '%s' is beyond a symbolic link"),3946 patch->new_name);39473948if(apply_data(state, patch, &st, ce) <0)3949returnerror(_("%s: patch does not apply"), name);3950 patch->rejected =0;3951return0;3952}39533954static intcheck_patch_list(struct apply_state *state,struct patch *patch)3955{3956int err =0;39573958prepare_symlink_changes(state, patch);3959prepare_fn_table(state, patch);3960while(patch) {3961int res;3962if(state->apply_verbosity > verbosity_normal)3963say_patch_name(stderr,3964_("Checking patch%s..."), patch);3965 res =check_patch(state, patch);3966if(res == -128)3967return-128;3968 err |= res;3969 patch = patch->next;3970}3971return err;3972}39733974static intread_apply_cache(struct apply_state *state)3975{3976if(state->index_file)3977returnread_cache_from(state->index_file);3978else3979returnread_cache();3980}39813982/* This function tries to read the object name from the current index */3983static intget_current_oid(struct apply_state *state,const char*path,3984struct object_id *oid)3985{3986int pos;39873988if(read_apply_cache(state) <0)3989return-1;3990 pos =cache_name_pos(path,strlen(path));3991if(pos <0)3992return-1;3993oidcpy(oid, &active_cache[pos]->oid);3994return0;3995}39963997static intpreimage_oid_in_gitlink_patch(struct patch *p,struct object_id *oid)3998{3999/*4000 * A usable gitlink patch has only one fragment (hunk) that looks like:4001 * @@ -1 +1 @@4002 * -Subproject commit <old sha1>4003 * +Subproject commit <new sha1>4004 * or4005 * @@ -1 +0,0 @@4006 * -Subproject commit <old sha1>4007 * for a removal patch.4008 */4009struct fragment *hunk = p->fragments;4010static const char heading[] ="-Subproject commit ";4011char*preimage;40124013if(/* does the patch have only one hunk? */4014 hunk && !hunk->next &&4015/* is its preimage one line? */4016 hunk->oldpos ==1&& hunk->oldlines ==1&&4017/* does preimage begin with the heading? */4018(preimage =memchr(hunk->patch,'\n', hunk->size)) != NULL &&4019starts_with(++preimage, heading) &&4020/* does it record full SHA-1? */4021!get_oid_hex(preimage +sizeof(heading) -1, oid) &&4022 preimage[sizeof(heading) + GIT_SHA1_HEXSZ -1] =='\n'&&4023/* does the abbreviated name on the index line agree with it? */4024starts_with(preimage +sizeof(heading) -1, p->old_sha1_prefix))4025return0;/* it all looks fine */40264027/* we may have full object name on the index line */4028returnget_oid_hex(p->old_sha1_prefix, oid);4029}40304031/* Build an index that contains the just the files needed for a 3way merge */4032static intbuild_fake_ancestor(struct apply_state *state,struct patch *list)4033{4034struct patch *patch;4035struct index_state result = { NULL };4036static struct lock_file lock;4037int res;40384039/* Once we start supporting the reverse patch, it may be4040 * worth showing the new sha1 prefix, but until then...4041 */4042for(patch = list; patch; patch = patch->next) {4043struct object_id oid;4044struct cache_entry *ce;4045const char*name;40464047 name = patch->old_name ? patch->old_name : patch->new_name;4048if(0< patch->is_new)4049continue;40504051if(S_ISGITLINK(patch->old_mode)) {4052if(!preimage_oid_in_gitlink_patch(patch, &oid))4053;/* ok, the textual part looks sane */4054else4055returnerror(_("sha1 information is lacking or "4056"useless for submodule%s"), name);4057}else if(!get_sha1_blob(patch->old_sha1_prefix, oid.hash)) {4058;/* ok */4059}else if(!patch->lines_added && !patch->lines_deleted) {4060/* mode-only change: update the current */4061if(get_current_oid(state, patch->old_name, &oid))4062returnerror(_("mode change for%s, which is not "4063"in current HEAD"), name);4064}else4065returnerror(_("sha1 information is lacking or useless "4066"(%s)."), name);40674068 ce =make_cache_entry(patch->old_mode, oid.hash, name,0,0);4069if(!ce)4070returnerror(_("make_cache_entry failed for path '%s'"),4071 name);4072if(add_index_entry(&result, ce, ADD_CACHE_OK_TO_ADD)) {4073free(ce);4074returnerror(_("could not add%sto temporary index"),4075 name);4076}4077}40784079hold_lock_file_for_update(&lock, state->fake_ancestor, LOCK_DIE_ON_ERROR);4080 res =write_locked_index(&result, &lock, COMMIT_LOCK);4081discard_index(&result);40824083if(res)4084returnerror(_("could not write temporary index to%s"),4085 state->fake_ancestor);40864087return0;4088}40894090static voidstat_patch_list(struct apply_state *state,struct patch *patch)4091{4092int files, adds, dels;40934094for(files = adds = dels =0; patch ; patch = patch->next) {4095 files++;4096 adds += patch->lines_added;4097 dels += patch->lines_deleted;4098show_stats(state, patch);4099}41004101print_stat_summary(stdout, files, adds, dels);4102}41034104static voidnumstat_patch_list(struct apply_state *state,4105struct patch *patch)4106{4107for( ; patch; patch = patch->next) {4108const char*name;4109 name = patch->new_name ? patch->new_name : patch->old_name;4110if(patch->is_binary)4111printf("-\t-\t");4112else4113printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);4114write_name_quoted(name, stdout, state->line_termination);4115}4116}41174118static voidshow_file_mode_name(const char*newdelete,unsigned int mode,const char*name)4119{4120if(mode)4121printf("%smode%06o%s\n", newdelete, mode, name);4122else4123printf("%s %s\n", newdelete, name);4124}41254126static voidshow_mode_change(struct patch *p,int show_name)4127{4128if(p->old_mode && p->new_mode && p->old_mode != p->new_mode) {4129if(show_name)4130printf(" mode change%06o =>%06o%s\n",4131 p->old_mode, p->new_mode, p->new_name);4132else4133printf(" mode change%06o =>%06o\n",4134 p->old_mode, p->new_mode);4135}4136}41374138static voidshow_rename_copy(struct patch *p)4139{4140const char*renamecopy = p->is_rename ?"rename":"copy";4141const char*old, *new;41424143/* Find common prefix */4144 old = p->old_name;4145new= p->new_name;4146while(1) {4147const char*slash_old, *slash_new;4148 slash_old =strchr(old,'/');4149 slash_new =strchr(new,'/');4150if(!slash_old ||4151!slash_new ||4152 slash_old - old != slash_new -new||4153memcmp(old,new, slash_new -new))4154break;4155 old = slash_old +1;4156new= slash_new +1;4157}4158/* p->old_name thru old is the common prefix, and old and new4159 * through the end of names are renames4160 */4161if(old != p->old_name)4162printf("%s%.*s{%s=>%s} (%d%%)\n", renamecopy,4163(int)(old - p->old_name), p->old_name,4164 old,new, p->score);4165else4166printf("%s %s=>%s(%d%%)\n", renamecopy,4167 p->old_name, p->new_name, p->score);4168show_mode_change(p,0);4169}41704171static voidsummary_patch_list(struct patch *patch)4172{4173struct patch *p;41744175for(p = patch; p; p = p->next) {4176if(p->is_new)4177show_file_mode_name("create", p->new_mode, p->new_name);4178else if(p->is_delete)4179show_file_mode_name("delete", p->old_mode, p->old_name);4180else{4181if(p->is_rename || p->is_copy)4182show_rename_copy(p);4183else{4184if(p->score) {4185printf(" rewrite%s(%d%%)\n",4186 p->new_name, p->score);4187show_mode_change(p,0);4188}4189else4190show_mode_change(p,1);4191}4192}4193}4194}41954196static voidpatch_stats(struct apply_state *state,struct patch *patch)4197{4198int lines = patch->lines_added + patch->lines_deleted;41994200if(lines > state->max_change)4201 state->max_change = lines;4202if(patch->old_name) {4203int len =quote_c_style(patch->old_name, NULL, NULL,0);4204if(!len)4205 len =strlen(patch->old_name);4206if(len > state->max_len)4207 state->max_len = len;4208}4209if(patch->new_name) {4210int len =quote_c_style(patch->new_name, NULL, NULL,0);4211if(!len)4212 len =strlen(patch->new_name);4213if(len > state->max_len)4214 state->max_len = len;4215}4216}42174218static intremove_file(struct apply_state *state,struct patch *patch,int rmdir_empty)4219{4220if(state->update_index) {4221if(remove_file_from_cache(patch->old_name) <0)4222returnerror(_("unable to remove%sfrom index"), patch->old_name);4223}4224if(!state->cached) {4225if(!remove_or_warn(patch->old_mode, patch->old_name) && rmdir_empty) {4226remove_path(patch->old_name);4227}4228}4229return0;4230}42314232static intadd_index_file(struct apply_state *state,4233const char*path,4234unsigned mode,4235void*buf,4236unsigned long size)4237{4238struct stat st;4239struct cache_entry *ce;4240int namelen =strlen(path);4241unsigned ce_size =cache_entry_size(namelen);42424243if(!state->update_index)4244return0;42454246 ce =xcalloc(1, ce_size);4247memcpy(ce->name, path, namelen);4248 ce->ce_mode =create_ce_mode(mode);4249 ce->ce_flags =create_ce_flags(0);4250 ce->ce_namelen = namelen;4251if(S_ISGITLINK(mode)) {4252const char*s;42534254if(!skip_prefix(buf,"Subproject commit ", &s) ||4255get_oid_hex(s, &ce->oid)) {4256free(ce);4257returnerror(_("corrupt patch for submodule%s"), path);4258}4259}else{4260if(!state->cached) {4261if(lstat(path, &st) <0) {4262free(ce);4263returnerror_errno(_("unable to stat newly "4264"created file '%s'"),4265 path);4266}4267fill_stat_cache_info(ce, &st);4268}4269if(write_sha1_file(buf, size, blob_type, ce->oid.hash) <0) {4270free(ce);4271returnerror(_("unable to create backing store "4272"for newly created file%s"), path);4273}4274}4275if(add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) <0) {4276free(ce);4277returnerror(_("unable to add cache entry for%s"), path);4278}42794280return0;4281}42824283/*4284 * Returns:4285 * -1 if an unrecoverable error happened4286 * 0 if everything went well4287 * 1 if a recoverable error happened4288 */4289static inttry_create_file(const char*path,unsigned int mode,const char*buf,unsigned long size)4290{4291int fd, res;4292struct strbuf nbuf = STRBUF_INIT;42934294if(S_ISGITLINK(mode)) {4295struct stat st;4296if(!lstat(path, &st) &&S_ISDIR(st.st_mode))4297return0;4298return!!mkdir(path,0777);4299}43004301if(has_symlinks &&S_ISLNK(mode))4302/* Although buf:size is counted string, it also is NUL4303 * terminated.4304 */4305return!!symlink(buf, path);43064307 fd =open(path, O_CREAT | O_EXCL | O_WRONLY, (mode &0100) ?0777:0666);4308if(fd <0)4309return1;43104311if(convert_to_working_tree(path, buf, size, &nbuf)) {4312 size = nbuf.len;4313 buf = nbuf.buf;4314}43154316 res =write_in_full(fd, buf, size) <0;4317if(res)4318error_errno(_("failed to write to '%s'"), path);4319strbuf_release(&nbuf);43204321if(close(fd) <0&& !res)4322returnerror_errno(_("closing file '%s'"), path);43234324return res ? -1:0;4325}43264327/*4328 * We optimistically assume that the directories exist,4329 * which is true 99% of the time anyway. If they don't,4330 * we create them and try again.4331 *4332 * Returns:4333 * -1 on error4334 * 0 otherwise4335 */4336static intcreate_one_file(struct apply_state *state,4337char*path,4338unsigned mode,4339const char*buf,4340unsigned long size)4341{4342int res;43434344if(state->cached)4345return0;43464347 res =try_create_file(path, mode, buf, size);4348if(res <0)4349return-1;4350if(!res)4351return0;43524353if(errno == ENOENT) {4354if(safe_create_leading_directories(path))4355return0;4356 res =try_create_file(path, mode, buf, size);4357if(res <0)4358return-1;4359if(!res)4360return0;4361}43624363if(errno == EEXIST || errno == EACCES) {4364/* We may be trying to create a file where a directory4365 * used to be.4366 */4367struct stat st;4368if(!lstat(path, &st) && (!S_ISDIR(st.st_mode) || !rmdir(path)))4369 errno = EEXIST;4370}43714372if(errno == EEXIST) {4373unsigned int nr =getpid();43744375for(;;) {4376char newpath[PATH_MAX];4377mksnpath(newpath,sizeof(newpath),"%s~%u", path, nr);4378 res =try_create_file(newpath, mode, buf, size);4379if(res <0)4380return-1;4381if(!res) {4382if(!rename(newpath, path))4383return0;4384unlink_or_warn(newpath);4385break;4386}4387if(errno != EEXIST)4388break;4389++nr;4390}4391}4392returnerror_errno(_("unable to write file '%s' mode%o"),4393 path, mode);4394}43954396static intadd_conflicted_stages_file(struct apply_state *state,4397struct patch *patch)4398{4399int stage, namelen;4400unsigned ce_size, mode;4401struct cache_entry *ce;44024403if(!state->update_index)4404return0;4405 namelen =strlen(patch->new_name);4406 ce_size =cache_entry_size(namelen);4407 mode = patch->new_mode ? patch->new_mode : (S_IFREG |0644);44084409remove_file_from_cache(patch->new_name);4410for(stage =1; stage <4; stage++) {4411if(is_null_oid(&patch->threeway_stage[stage -1]))4412continue;4413 ce =xcalloc(1, ce_size);4414memcpy(ce->name, patch->new_name, namelen);4415 ce->ce_mode =create_ce_mode(mode);4416 ce->ce_flags =create_ce_flags(stage);4417 ce->ce_namelen = namelen;4418oidcpy(&ce->oid, &patch->threeway_stage[stage -1]);4419if(add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) <0) {4420free(ce);4421returnerror(_("unable to add cache entry for%s"),4422 patch->new_name);4423}4424}44254426return0;4427}44284429static intcreate_file(struct apply_state *state,struct patch *patch)4430{4431char*path = patch->new_name;4432unsigned mode = patch->new_mode;4433unsigned long size = patch->resultsize;4434char*buf = patch->result;44354436if(!mode)4437 mode = S_IFREG |0644;4438if(create_one_file(state, path, mode, buf, size))4439return-1;44404441if(patch->conflicted_threeway)4442returnadd_conflicted_stages_file(state, patch);4443else4444returnadd_index_file(state, path, mode, buf, size);4445}44464447/* phase zero is to remove, phase one is to create */4448static intwrite_out_one_result(struct apply_state *state,4449struct patch *patch,4450int phase)4451{4452if(patch->is_delete >0) {4453if(phase ==0)4454returnremove_file(state, patch,1);4455return0;4456}4457if(patch->is_new >0|| patch->is_copy) {4458if(phase ==1)4459returncreate_file(state, patch);4460return0;4461}4462/*4463 * Rename or modification boils down to the same4464 * thing: remove the old, write the new4465 */4466if(phase ==0)4467returnremove_file(state, patch, patch->is_rename);4468if(phase ==1)4469returncreate_file(state, patch);4470return0;4471}44724473static intwrite_out_one_reject(struct apply_state *state,struct patch *patch)4474{4475FILE*rej;4476char namebuf[PATH_MAX];4477struct fragment *frag;4478int cnt =0;4479struct strbuf sb = STRBUF_INIT;44804481for(cnt =0, frag = patch->fragments; frag; frag = frag->next) {4482if(!frag->rejected)4483continue;4484 cnt++;4485}44864487if(!cnt) {4488if(state->apply_verbosity > verbosity_normal)4489say_patch_name(stderr,4490_("Applied patch%scleanly."), patch);4491return0;4492}44934494/* This should not happen, because a removal patch that leaves4495 * contents are marked "rejected" at the patch level.4496 */4497if(!patch->new_name)4498die(_("internal error"));44994500/* Say this even without --verbose */4501strbuf_addf(&sb,Q_("Applying patch %%swith%dreject...",4502"Applying patch %%swith%drejects...",4503 cnt),4504 cnt);4505if(state->apply_verbosity > verbosity_silent)4506say_patch_name(stderr, sb.buf, patch);4507strbuf_release(&sb);45084509 cnt =strlen(patch->new_name);4510if(ARRAY_SIZE(namebuf) <= cnt +5) {4511 cnt =ARRAY_SIZE(namebuf) -5;4512warning(_("truncating .rej filename to %.*s.rej"),4513 cnt -1, patch->new_name);4514}4515memcpy(namebuf, patch->new_name, cnt);4516memcpy(namebuf + cnt,".rej",5);45174518 rej =fopen(namebuf,"w");4519if(!rej)4520returnerror_errno(_("cannot open%s"), namebuf);45214522/* Normal git tools never deal with .rej, so do not pretend4523 * this is a git patch by saying --git or giving extended4524 * headers. While at it, maybe please "kompare" that wants4525 * the trailing TAB and some garbage at the end of line ;-).4526 */4527fprintf(rej,"diff a/%sb/%s\t(rejected hunks)\n",4528 patch->new_name, patch->new_name);4529for(cnt =1, frag = patch->fragments;4530 frag;4531 cnt++, frag = frag->next) {4532if(!frag->rejected) {4533if(state->apply_verbosity > verbosity_silent)4534fprintf_ln(stderr,_("Hunk #%dapplied cleanly."), cnt);4535continue;4536}4537if(state->apply_verbosity > verbosity_silent)4538fprintf_ln(stderr,_("Rejected hunk #%d."), cnt);4539fprintf(rej,"%.*s", frag->size, frag->patch);4540if(frag->patch[frag->size-1] !='\n')4541fputc('\n', rej);4542}4543fclose(rej);4544return-1;4545}45464547/*4548 * Returns:4549 * -1 if an error happened4550 * 0 if the patch applied cleanly4551 * 1 if the patch did not apply cleanly4552 */4553static intwrite_out_results(struct apply_state *state,struct patch *list)4554{4555int phase;4556int errs =0;4557struct patch *l;4558struct string_list cpath = STRING_LIST_INIT_DUP;45594560for(phase =0; phase <2; phase++) {4561 l = list;4562while(l) {4563if(l->rejected)4564 errs =1;4565else{4566if(write_out_one_result(state, l, phase)) {4567string_list_clear(&cpath,0);4568return-1;4569}4570if(phase ==1) {4571if(write_out_one_reject(state, l))4572 errs =1;4573if(l->conflicted_threeway) {4574string_list_append(&cpath, l->new_name);4575 errs =1;4576}4577}4578}4579 l = l->next;4580}4581}45824583if(cpath.nr) {4584struct string_list_item *item;45854586string_list_sort(&cpath);4587if(state->apply_verbosity > verbosity_silent) {4588for_each_string_list_item(item, &cpath)4589fprintf(stderr,"U%s\n", item->string);4590}4591string_list_clear(&cpath,0);45924593rerere(0);4594}45954596return errs;4597}45984599/*4600 * Try to apply a patch.4601 *4602 * Returns:4603 * -128 if a bad error happened (like patch unreadable)4604 * -1 if patch did not apply and user cannot deal with it4605 * 0 if the patch applied4606 * 1 if the patch did not apply but user might fix it4607 */4608static intapply_patch(struct apply_state *state,4609int fd,4610const char*filename,4611int options)4612{4613size_t offset;4614struct strbuf buf = STRBUF_INIT;/* owns the patch text */4615struct patch *list = NULL, **listp = &list;4616int skipped_patch =0;4617int res =0;46184619 state->patch_input_file = filename;4620if(read_patch_file(&buf, fd) <0)4621return-128;4622 offset =0;4623while(offset < buf.len) {4624struct patch *patch;4625int nr;46264627 patch =xcalloc(1,sizeof(*patch));4628 patch->inaccurate_eof = !!(options & APPLY_OPT_INACCURATE_EOF);4629 patch->recount = !!(options & APPLY_OPT_RECOUNT);4630 nr =parse_chunk(state, buf.buf + offset, buf.len - offset, patch);4631if(nr <0) {4632free_patch(patch);4633if(nr == -128) {4634 res = -128;4635goto end;4636}4637break;4638}4639if(state->apply_in_reverse)4640reverse_patches(patch);4641if(use_patch(state, patch)) {4642patch_stats(state, patch);4643*listp = patch;4644 listp = &patch->next;4645}4646else{4647if(state->apply_verbosity > verbosity_normal)4648say_patch_name(stderr,_("Skipped patch '%s'."), patch);4649free_patch(patch);4650 skipped_patch++;4651}4652 offset += nr;4653}46544655if(!list && !skipped_patch) {4656error(_("unrecognized input"));4657 res = -128;4658goto end;4659}46604661if(state->whitespace_error && (state->ws_error_action == die_on_ws_error))4662 state->apply =0;46634664 state->update_index = state->check_index && state->apply;4665if(state->update_index && state->newfd <0) {4666if(state->index_file)4667 state->newfd =hold_lock_file_for_update(state->lock_file,4668 state->index_file,4669 LOCK_DIE_ON_ERROR);4670else4671 state->newfd =hold_locked_index(state->lock_file, LOCK_DIE_ON_ERROR);4672}46734674if(state->check_index &&read_apply_cache(state) <0) {4675error(_("unable to read index file"));4676 res = -128;4677goto end;4678}46794680if(state->check || state->apply) {4681int r =check_patch_list(state, list);4682if(r == -128) {4683 res = -128;4684goto end;4685}4686if(r <0&& !state->apply_with_reject) {4687 res = -1;4688goto end;4689}4690}46914692if(state->apply) {4693int write_res =write_out_results(state, list);4694if(write_res <0) {4695 res = -128;4696goto end;4697}4698if(write_res >0) {4699/* with --3way, we still need to write the index out */4700 res = state->apply_with_reject ? -1:1;4701goto end;4702}4703}47044705if(state->fake_ancestor &&4706build_fake_ancestor(state, list)) {4707 res = -128;4708goto end;4709}47104711if(state->diffstat && state->apply_verbosity > verbosity_silent)4712stat_patch_list(state, list);47134714if(state->numstat && state->apply_verbosity > verbosity_silent)4715numstat_patch_list(state, list);47164717if(state->summary && state->apply_verbosity > verbosity_silent)4718summary_patch_list(list);47194720end:4721free_patch_list(list);4722strbuf_release(&buf);4723string_list_clear(&state->fn_table,0);4724return res;4725}47264727static intapply_option_parse_exclude(const struct option *opt,4728const char*arg,int unset)4729{4730struct apply_state *state = opt->value;4731add_name_limit(state, arg,1);4732return0;4733}47344735static intapply_option_parse_include(const struct option *opt,4736const char*arg,int unset)4737{4738struct apply_state *state = opt->value;4739add_name_limit(state, arg,0);4740 state->has_include =1;4741return0;4742}47434744static intapply_option_parse_p(const struct option *opt,4745const char*arg,4746int unset)4747{4748struct apply_state *state = opt->value;4749 state->p_value =atoi(arg);4750 state->p_value_known =1;4751return0;4752}47534754static intapply_option_parse_space_change(const struct option *opt,4755const char*arg,int unset)4756{4757struct apply_state *state = opt->value;4758if(unset)4759 state->ws_ignore_action = ignore_ws_none;4760else4761 state->ws_ignore_action = ignore_ws_change;4762return0;4763}47644765static intapply_option_parse_whitespace(const struct option *opt,4766const char*arg,int unset)4767{4768struct apply_state *state = opt->value;4769 state->whitespace_option = arg;4770if(parse_whitespace_option(state, arg))4771exit(1);4772return0;4773}47744775static intapply_option_parse_directory(const struct option *opt,4776const char*arg,int unset)4777{4778struct apply_state *state = opt->value;4779strbuf_reset(&state->root);4780strbuf_addstr(&state->root, arg);4781strbuf_complete(&state->root,'/');4782return0;4783}47844785intapply_all_patches(struct apply_state *state,4786int argc,4787const char**argv,4788int options)4789{4790int i;4791int res;4792int errs =0;4793int read_stdin =1;47944795for(i =0; i < argc; i++) {4796const char*arg = argv[i];4797char*to_free = NULL;4798int fd;47994800if(!strcmp(arg,"-")) {4801 res =apply_patch(state,0,"<stdin>", options);4802if(res <0)4803goto end;4804 errs |= res;4805 read_stdin =0;4806continue;4807}else4808 arg = to_free =prefix_filename(state->prefix, arg);48094810 fd =open(arg, O_RDONLY);4811if(fd <0) {4812error(_("can't open patch '%s':%s"), arg,strerror(errno));4813 res = -128;4814free(to_free);4815goto end;4816}4817 read_stdin =0;4818set_default_whitespace_mode(state);4819 res =apply_patch(state, fd, arg, options);4820close(fd);4821free(to_free);4822if(res <0)4823goto end;4824 errs |= res;4825}4826set_default_whitespace_mode(state);4827if(read_stdin) {4828 res =apply_patch(state,0,"<stdin>", options);4829if(res <0)4830goto end;4831 errs |= res;4832}48334834if(state->whitespace_error) {4835if(state->squelch_whitespace_errors &&4836 state->squelch_whitespace_errors < state->whitespace_error) {4837int squelched =4838 state->whitespace_error - state->squelch_whitespace_errors;4839warning(Q_("squelched%dwhitespace error",4840"squelched%dwhitespace errors",4841 squelched),4842 squelched);4843}4844if(state->ws_error_action == die_on_ws_error) {4845error(Q_("%dline adds whitespace errors.",4846"%dlines add whitespace errors.",4847 state->whitespace_error),4848 state->whitespace_error);4849 res = -128;4850goto end;4851}4852if(state->applied_after_fixing_ws && state->apply)4853warning(Q_("%dline applied after"4854" fixing whitespace errors.",4855"%dlines applied after"4856" fixing whitespace errors.",4857 state->applied_after_fixing_ws),4858 state->applied_after_fixing_ws);4859else if(state->whitespace_error)4860warning(Q_("%dline adds whitespace errors.",4861"%dlines add whitespace errors.",4862 state->whitespace_error),4863 state->whitespace_error);4864}48654866if(state->update_index) {4867 res =write_locked_index(&the_index, state->lock_file, COMMIT_LOCK);4868if(res) {4869error(_("Unable to write new index file"));4870 res = -128;4871goto end;4872}4873 state->newfd = -1;4874}48754876 res = !!errs;48774878end:4879if(state->newfd >=0) {4880rollback_lock_file(state->lock_file);4881 state->newfd = -1;4882}48834884if(state->apply_verbosity <= verbosity_silent) {4885set_error_routine(state->saved_error_routine);4886set_warn_routine(state->saved_warn_routine);4887}48884889if(res > -1)4890return res;4891return(res == -1?1:128);4892}48934894intapply_parse_options(int argc,const char**argv,4895struct apply_state *state,4896int*force_apply,int*options,4897const char*const*apply_usage)4898{4899struct option builtin_apply_options[] = {4900{ OPTION_CALLBACK,0,"exclude", state,N_("path"),4901N_("don't apply changes matching the given path"),49020, apply_option_parse_exclude },4903{ OPTION_CALLBACK,0,"include", state,N_("path"),4904N_("apply changes matching the given path"),49050, apply_option_parse_include },4906{ OPTION_CALLBACK,'p', NULL, state,N_("num"),4907N_("remove <num> leading slashes from traditional diff paths"),49080, apply_option_parse_p },4909OPT_BOOL(0,"no-add", &state->no_add,4910N_("ignore additions made by the patch")),4911OPT_BOOL(0,"stat", &state->diffstat,4912N_("instead of applying the patch, output diffstat for the input")),4913OPT_NOOP_NOARG(0,"allow-binary-replacement"),4914OPT_NOOP_NOARG(0,"binary"),4915OPT_BOOL(0,"numstat", &state->numstat,4916N_("show number of added and deleted lines in decimal notation")),4917OPT_BOOL(0,"summary", &state->summary,4918N_("instead of applying the patch, output a summary for the input")),4919OPT_BOOL(0,"check", &state->check,4920N_("instead of applying the patch, see if the patch is applicable")),4921OPT_BOOL(0,"index", &state->check_index,4922N_("make sure the patch is applicable to the current index")),4923OPT_BOOL(0,"cached", &state->cached,4924N_("apply a patch without touching the working tree")),4925OPT_BOOL(0,"unsafe-paths", &state->unsafe_paths,4926N_("accept a patch that touches outside the working area")),4927OPT_BOOL(0,"apply", force_apply,4928N_("also apply the patch (use with --stat/--summary/--check)")),4929OPT_BOOL('3',"3way", &state->threeway,4930N_("attempt three-way merge if a patch does not apply")),4931OPT_FILENAME(0,"build-fake-ancestor", &state->fake_ancestor,4932N_("build a temporary index based on embedded index information")),4933/* Think twice before adding "--nul" synonym to this */4934OPT_SET_INT('z', NULL, &state->line_termination,4935N_("paths are separated with NUL character"),'\0'),4936OPT_INTEGER('C', NULL, &state->p_context,4937N_("ensure at least <n> lines of context match")),4938{ OPTION_CALLBACK,0,"whitespace", state,N_("action"),4939N_("detect new or modified lines that have whitespace errors"),49400, apply_option_parse_whitespace },4941{ OPTION_CALLBACK,0,"ignore-space-change", state, NULL,4942N_("ignore changes in whitespace when finding context"),4943 PARSE_OPT_NOARG, apply_option_parse_space_change },4944{ OPTION_CALLBACK,0,"ignore-whitespace", state, NULL,4945N_("ignore changes in whitespace when finding context"),4946 PARSE_OPT_NOARG, apply_option_parse_space_change },4947OPT_BOOL('R',"reverse", &state->apply_in_reverse,4948N_("apply the patch in reverse")),4949OPT_BOOL(0,"unidiff-zero", &state->unidiff_zero,4950N_("don't expect at least one line of context")),4951OPT_BOOL(0,"reject", &state->apply_with_reject,4952N_("leave the rejected hunks in corresponding *.rej files")),4953OPT_BOOL(0,"allow-overlap", &state->allow_overlap,4954N_("allow overlapping hunks")),4955OPT__VERBOSE(&state->apply_verbosity,N_("be verbose")),4956OPT_BIT(0,"inaccurate-eof", options,4957N_("tolerate incorrectly detected missing new-line at the end of file"),4958 APPLY_OPT_INACCURATE_EOF),4959OPT_BIT(0,"recount", options,4960N_("do not trust the line counts in the hunk headers"),4961 APPLY_OPT_RECOUNT),4962{ OPTION_CALLBACK,0,"directory", state,N_("root"),4963N_("prepend <root> to all filenames"),49640, apply_option_parse_directory },4965OPT_END()4966};49674968returnparse_options(argc, argv, state->prefix, builtin_apply_options, apply_usage,0);4969}