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->lock_file = lock_file; 84 state->newfd = -1; 85 state->apply =1; 86 state->line_termination ='\n'; 87 state->p_value =1; 88 state->p_context = UINT_MAX; 89 state->squelch_whitespace_errors =5; 90 state->ws_error_action = warn_on_ws_error; 91 state->ws_ignore_action = ignore_ws_none; 92 state->linenr =1; 93string_list_init(&state->fn_table,0); 94string_list_init(&state->limit_by_name,0); 95string_list_init(&state->symlink_changes,0); 96strbuf_init(&state->root,0); 97 98git_apply_config(); 99if(apply_default_whitespace &&parse_whitespace_option(state, apply_default_whitespace)) 100return-1; 101if(apply_default_ignorewhitespace &&parse_ignorewhitespace_option(state, apply_default_ignorewhitespace)) 102return-1; 103return0; 104} 105 106voidclear_apply_state(struct apply_state *state) 107{ 108string_list_clear(&state->limit_by_name,0); 109string_list_clear(&state->symlink_changes,0); 110strbuf_release(&state->root); 111 112/* &state->fn_table is cleared at the end of apply_patch() */ 113} 114 115static voidmute_routine(const char*msg,va_list params) 116{ 117/* do nothing */ 118} 119 120intcheck_apply_state(struct apply_state *state,int force_apply) 121{ 122int is_not_gitdir = !startup_info->have_repository; 123 124if(state->apply_with_reject && state->threeway) 125returnerror(_("--reject and --3way cannot be used together.")); 126if(state->cached && state->threeway) 127returnerror(_("--cached and --3way cannot be used together.")); 128if(state->threeway) { 129if(is_not_gitdir) 130returnerror(_("--3way outside a repository")); 131 state->check_index =1; 132} 133if(state->apply_with_reject) { 134 state->apply =1; 135if(state->apply_verbosity == verbosity_normal) 136 state->apply_verbosity = verbosity_verbose; 137} 138if(!force_apply && (state->diffstat || state->numstat || state->summary || state->check || state->fake_ancestor)) 139 state->apply =0; 140if(state->check_index && is_not_gitdir) 141returnerror(_("--index outside a repository")); 142if(state->cached) { 143if(is_not_gitdir) 144returnerror(_("--cached outside a repository")); 145 state->check_index =1; 146} 147if(state->check_index) 148 state->unsafe_paths =0; 149if(!state->lock_file) 150returnerror("BUG: state->lock_file should not be NULL"); 151 152if(state->apply_verbosity <= verbosity_silent) { 153 state->saved_error_routine =get_error_routine(); 154 state->saved_warn_routine =get_warn_routine(); 155set_error_routine(mute_routine); 156set_warn_routine(mute_routine); 157} 158 159return0; 160} 161 162static voidset_default_whitespace_mode(struct apply_state *state) 163{ 164if(!state->whitespace_option && !apply_default_whitespace) 165 state->ws_error_action = (state->apply ? warn_on_ws_error : nowarn_ws_error); 166} 167 168/* 169 * This represents one "hunk" from a patch, starting with 170 * "@@ -oldpos,oldlines +newpos,newlines @@" marker. The 171 * patch text is pointed at by patch, and its byte length 172 * is stored in size. leading and trailing are the number 173 * of context lines. 174 */ 175struct fragment { 176unsigned long leading, trailing; 177unsigned long oldpos, oldlines; 178unsigned long newpos, newlines; 179/* 180 * 'patch' is usually borrowed from buf in apply_patch(), 181 * but some codepaths store an allocated buffer. 182 */ 183const char*patch; 184unsigned free_patch:1, 185 rejected:1; 186int size; 187int linenr; 188struct fragment *next; 189}; 190 191/* 192 * When dealing with a binary patch, we reuse "leading" field 193 * to store the type of the binary hunk, either deflated "delta" 194 * or deflated "literal". 195 */ 196#define binary_patch_method leading 197#define BINARY_DELTA_DEFLATED 1 198#define BINARY_LITERAL_DEFLATED 2 199 200/* 201 * This represents a "patch" to a file, both metainfo changes 202 * such as creation/deletion, filemode and content changes represented 203 * as a series of fragments. 204 */ 205struct patch { 206char*new_name, *old_name, *def_name; 207unsigned int old_mode, new_mode; 208int is_new, is_delete;/* -1 = unknown, 0 = false, 1 = true */ 209int rejected; 210unsigned ws_rule; 211int lines_added, lines_deleted; 212int score; 213int extension_linenr;/* first line specifying delete/new/rename/copy */ 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(starts_with(name, state->prefix)) 789 val =count_slashes(state->prefix); 790else{ 791 cp++; 792if(starts_with(cp, state->prefix)) 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) { 964char*another; 965if(isnull) 966returnerror(_("git apply: bad git-diff - expected /dev/null, got%son line%d"), 967*name, state->linenr); 968 another =find_name(state, line, NULL, state->p_value, TERM_TAB); 969if(!another ||strcmp(another, *name)) { 970free(another); 971returnerror((side == DIFF_NEW_NAME) ? 972_("git apply: bad git-diff - inconsistent new filename on line%d") : 973_("git apply: bad git-diff - inconsistent old filename on line%d"), state->linenr); 974} 975free(another); 976}else{ 977if(!starts_with(line,"/dev/null\n")) 978returnerror(_("git apply: bad git-diff - expected /dev/null on line%d"), state->linenr); 979} 980 981return0; 982} 983 984static intgitdiff_oldname(struct apply_state *state, 985const char*line, 986struct patch *patch) 987{ 988returngitdiff_verify_name(state, line, 989 patch->is_new, &patch->old_name, 990 DIFF_OLD_NAME); 991} 992 993static intgitdiff_newname(struct apply_state *state, 994const char*line, 995struct patch *patch) 996{ 997returngitdiff_verify_name(state, line, 998 patch->is_delete, &patch->new_name, 999 DIFF_NEW_NAME);1000}10011002static intparse_mode_line(const char*line,int linenr,unsigned int*mode)1003{1004char*end;1005*mode =strtoul(line, &end,8);1006if(end == line || !isspace(*end))1007returnerror(_("invalid mode on line%d:%s"), linenr, line);1008return0;1009}10101011static intgitdiff_oldmode(struct apply_state *state,1012const char*line,1013struct patch *patch)1014{1015returnparse_mode_line(line, state->linenr, &patch->old_mode);1016}10171018static intgitdiff_newmode(struct apply_state *state,1019const char*line,1020struct patch *patch)1021{1022returnparse_mode_line(line, state->linenr, &patch->new_mode);1023}10241025static intgitdiff_delete(struct apply_state *state,1026const char*line,1027struct patch *patch)1028{1029 patch->is_delete =1;1030free(patch->old_name);1031 patch->old_name =xstrdup_or_null(patch->def_name);1032returngitdiff_oldmode(state, line, patch);1033}10341035static intgitdiff_newfile(struct apply_state *state,1036const char*line,1037struct patch *patch)1038{1039 patch->is_new =1;1040free(patch->new_name);1041 patch->new_name =xstrdup_or_null(patch->def_name);1042returngitdiff_newmode(state, line, patch);1043}10441045static intgitdiff_copysrc(struct apply_state *state,1046const char*line,1047struct patch *patch)1048{1049 patch->is_copy =1;1050free(patch->old_name);1051 patch->old_name =find_name(state, line, NULL, state->p_value ? state->p_value -1:0,0);1052return0;1053}10541055static intgitdiff_copydst(struct apply_state *state,1056const char*line,1057struct patch *patch)1058{1059 patch->is_copy =1;1060free(patch->new_name);1061 patch->new_name =find_name(state, line, NULL, state->p_value ? state->p_value -1:0,0);1062return0;1063}10641065static intgitdiff_renamesrc(struct apply_state *state,1066const char*line,1067struct patch *patch)1068{1069 patch->is_rename =1;1070free(patch->old_name);1071 patch->old_name =find_name(state, line, NULL, state->p_value ? state->p_value -1:0,0);1072return0;1073}10741075static intgitdiff_renamedst(struct apply_state *state,1076const char*line,1077struct patch *patch)1078{1079 patch->is_rename =1;1080free(patch->new_name);1081 patch->new_name =find_name(state, line, NULL, state->p_value ? state->p_value -1:0,0);1082return0;1083}10841085static intgitdiff_similarity(struct apply_state *state,1086const char*line,1087struct patch *patch)1088{1089unsigned long val =strtoul(line, NULL,10);1090if(val <=100)1091 patch->score = val;1092return0;1093}10941095static intgitdiff_dissimilarity(struct apply_state *state,1096const char*line,1097struct patch *patch)1098{1099unsigned long val =strtoul(line, NULL,10);1100if(val <=100)1101 patch->score = val;1102return0;1103}11041105static intgitdiff_index(struct apply_state *state,1106const char*line,1107struct patch *patch)1108{1109/*1110 * index line is N hexadecimal, "..", N hexadecimal,1111 * and optional space with octal mode.1112 */1113const char*ptr, *eol;1114int len;11151116 ptr =strchr(line,'.');1117if(!ptr || ptr[1] !='.'||40< ptr - line)1118return0;1119 len = ptr - line;1120memcpy(patch->old_sha1_prefix, line, len);1121 patch->old_sha1_prefix[len] =0;11221123 line = ptr +2;1124 ptr =strchr(line,' ');1125 eol =strchrnul(line,'\n');11261127if(!ptr || eol < ptr)1128 ptr = eol;1129 len = ptr - line;11301131if(40< len)1132return0;1133memcpy(patch->new_sha1_prefix, line, len);1134 patch->new_sha1_prefix[len] =0;1135if(*ptr ==' ')1136returngitdiff_oldmode(state, ptr +1, patch);1137return0;1138}11391140/*1141 * This is normal for a diff that doesn't change anything: we'll fall through1142 * into the next diff. Tell the parser to break out.1143 */1144static intgitdiff_unrecognized(struct apply_state *state,1145const char*line,1146struct patch *patch)1147{1148return1;1149}11501151/*1152 * Skip p_value leading components from "line"; as we do not accept1153 * absolute paths, return NULL in that case.1154 */1155static const char*skip_tree_prefix(struct apply_state *state,1156const char*line,1157int llen)1158{1159int nslash;1160int i;11611162if(!state->p_value)1163return(llen && line[0] =='/') ? NULL : line;11641165 nslash = state->p_value;1166for(i =0; i < llen; i++) {1167int ch = line[i];1168if(ch =='/'&& --nslash <=0)1169return(i ==0) ? NULL : &line[i +1];1170}1171return NULL;1172}11731174/*1175 * This is to extract the same name that appears on "diff --git"1176 * line. We do not find and return anything if it is a rename1177 * patch, and it is OK because we will find the name elsewhere.1178 * We need to reliably find name only when it is mode-change only,1179 * creation or deletion of an empty file. In any of these cases,1180 * both sides are the same name under a/ and b/ respectively.1181 */1182static char*git_header_name(struct apply_state *state,1183const char*line,1184int llen)1185{1186const char*name;1187const char*second = NULL;1188size_t len, line_len;11891190 line +=strlen("diff --git ");1191 llen -=strlen("diff --git ");11921193if(*line =='"') {1194const char*cp;1195struct strbuf first = STRBUF_INIT;1196struct strbuf sp = STRBUF_INIT;11971198if(unquote_c_style(&first, line, &second))1199goto free_and_fail1;12001201/* strip the a/b prefix including trailing slash */1202 cp =skip_tree_prefix(state, first.buf, first.len);1203if(!cp)1204goto free_and_fail1;1205strbuf_remove(&first,0, cp - first.buf);12061207/*1208 * second points at one past closing dq of name.1209 * find the second name.1210 */1211while((second < line + llen) &&isspace(*second))1212 second++;12131214if(line + llen <= second)1215goto free_and_fail1;1216if(*second =='"') {1217if(unquote_c_style(&sp, second, NULL))1218goto free_and_fail1;1219 cp =skip_tree_prefix(state, sp.buf, sp.len);1220if(!cp)1221goto free_and_fail1;1222/* They must match, otherwise ignore */1223if(strcmp(cp, first.buf))1224goto free_and_fail1;1225strbuf_release(&sp);1226returnstrbuf_detach(&first, NULL);1227}12281229/* unquoted second */1230 cp =skip_tree_prefix(state, second, line + llen - second);1231if(!cp)1232goto free_and_fail1;1233if(line + llen - cp != first.len ||1234memcmp(first.buf, cp, first.len))1235goto free_and_fail1;1236returnstrbuf_detach(&first, NULL);12371238 free_and_fail1:1239strbuf_release(&first);1240strbuf_release(&sp);1241return NULL;1242}12431244/* unquoted first name */1245 name =skip_tree_prefix(state, line, llen);1246if(!name)1247return NULL;12481249/*1250 * since the first name is unquoted, a dq if exists must be1251 * the beginning of the second name.1252 */1253for(second = name; second < line + llen; second++) {1254if(*second =='"') {1255struct strbuf sp = STRBUF_INIT;1256const char*np;12571258if(unquote_c_style(&sp, second, NULL))1259goto free_and_fail2;12601261 np =skip_tree_prefix(state, sp.buf, sp.len);1262if(!np)1263goto free_and_fail2;12641265 len = sp.buf + sp.len - np;1266if(len < second - name &&1267!strncmp(np, name, len) &&1268isspace(name[len])) {1269/* Good */1270strbuf_remove(&sp,0, np - sp.buf);1271returnstrbuf_detach(&sp, NULL);1272}12731274 free_and_fail2:1275strbuf_release(&sp);1276return NULL;1277}1278}12791280/*1281 * Accept a name only if it shows up twice, exactly the same1282 * form.1283 */1284 second =strchr(name,'\n');1285if(!second)1286return NULL;1287 line_len = second - name;1288for(len =0; ; len++) {1289switch(name[len]) {1290default:1291continue;1292case'\n':1293return NULL;1294case'\t':case' ':1295/*1296 * Is this the separator between the preimage1297 * and the postimage pathname? Again, we are1298 * only interested in the case where there is1299 * no rename, as this is only to set def_name1300 * and a rename patch has the names elsewhere1301 * in an unambiguous form.1302 */1303if(!name[len +1])1304return NULL;/* no postimage name */1305 second =skip_tree_prefix(state, name + len +1,1306 line_len - (len +1));1307if(!second)1308return NULL;1309/*1310 * Does len bytes starting at "name" and "second"1311 * (that are separated by one HT or SP we just1312 * found) exactly match?1313 */1314if(second[len] =='\n'&& !strncmp(name, second, len))1315returnxmemdupz(name, len);1316}1317}1318}13191320static intcheck_header_line(struct apply_state *state,struct patch *patch)1321{1322int extensions = (patch->is_delete ==1) + (patch->is_new ==1) +1323(patch->is_rename ==1) + (patch->is_copy ==1);1324if(extensions >1)1325returnerror(_("inconsistent header lines%dand%d"),1326 patch->extension_linenr, state->linenr);1327if(extensions && !patch->extension_linenr)1328 patch->extension_linenr = state->linenr;1329return0;1330}13311332/* Verify that we recognize the lines following a git header */1333static intparse_git_header(struct apply_state *state,1334const char*line,1335int len,1336unsigned int size,1337struct patch *patch)1338{1339unsigned long offset;13401341/* A git diff has explicit new/delete information, so we don't guess */1342 patch->is_new =0;1343 patch->is_delete =0;13441345/*1346 * Some things may not have the old name in the1347 * rest of the headers anywhere (pure mode changes,1348 * or removing or adding empty files), so we get1349 * the default name from the header.1350 */1351 patch->def_name =git_header_name(state, line, len);1352if(patch->def_name && state->root.len) {1353char*s =xstrfmt("%s%s", state->root.buf, patch->def_name);1354free(patch->def_name);1355 patch->def_name = s;1356}13571358 line += len;1359 size -= len;1360 state->linenr++;1361for(offset = len ; size >0; offset += len, size -= len, line += len, state->linenr++) {1362static const struct opentry {1363const char*str;1364int(*fn)(struct apply_state *,const char*,struct patch *);1365} optable[] = {1366{"@@ -", gitdiff_hdrend },1367{"--- ", gitdiff_oldname },1368{"+++ ", gitdiff_newname },1369{"old mode ", gitdiff_oldmode },1370{"new mode ", gitdiff_newmode },1371{"deleted file mode ", gitdiff_delete },1372{"new file mode ", gitdiff_newfile },1373{"copy from ", gitdiff_copysrc },1374{"copy to ", gitdiff_copydst },1375{"rename old ", gitdiff_renamesrc },1376{"rename new ", gitdiff_renamedst },1377{"rename from ", gitdiff_renamesrc },1378{"rename to ", gitdiff_renamedst },1379{"similarity index ", gitdiff_similarity },1380{"dissimilarity index ", gitdiff_dissimilarity },1381{"index ", gitdiff_index },1382{"", gitdiff_unrecognized },1383};1384int i;13851386 len =linelen(line, size);1387if(!len || line[len-1] !='\n')1388break;1389for(i =0; i <ARRAY_SIZE(optable); i++) {1390const struct opentry *p = optable + i;1391int oplen =strlen(p->str);1392int res;1393if(len < oplen ||memcmp(p->str, line, oplen))1394continue;1395 res = p->fn(state, line + oplen, patch);1396if(res <0)1397return-1;1398if(check_header_line(state, patch))1399return-1;1400if(res >0)1401return offset;1402break;1403}1404}14051406return offset;1407}14081409static intparse_num(const char*line,unsigned long*p)1410{1411char*ptr;14121413if(!isdigit(*line))1414return0;1415*p =strtoul(line, &ptr,10);1416return ptr - line;1417}14181419static intparse_range(const char*line,int len,int offset,const char*expect,1420unsigned long*p1,unsigned long*p2)1421{1422int digits, ex;14231424if(offset <0|| offset >= len)1425return-1;1426 line += offset;1427 len -= offset;14281429 digits =parse_num(line, p1);1430if(!digits)1431return-1;14321433 offset += digits;1434 line += digits;1435 len -= digits;14361437*p2 =1;1438if(*line ==',') {1439 digits =parse_num(line+1, p2);1440if(!digits)1441return-1;14421443 offset += digits+1;1444 line += digits+1;1445 len -= digits+1;1446}14471448 ex =strlen(expect);1449if(ex > len)1450return-1;1451if(memcmp(line, expect, ex))1452return-1;14531454return offset + ex;1455}14561457static voidrecount_diff(const char*line,int size,struct fragment *fragment)1458{1459int oldlines =0, newlines =0, ret =0;14601461if(size <1) {1462warning("recount: ignore empty hunk");1463return;1464}14651466for(;;) {1467int len =linelen(line, size);1468 size -= len;1469 line += len;14701471if(size <1)1472break;14731474switch(*line) {1475case' ':case'\n':1476 newlines++;1477/* fall through */1478case'-':1479 oldlines++;1480continue;1481case'+':1482 newlines++;1483continue;1484case'\\':1485continue;1486case'@':1487 ret = size <3|| !starts_with(line,"@@ ");1488break;1489case'd':1490 ret = size <5|| !starts_with(line,"diff ");1491break;1492default:1493 ret = -1;1494break;1495}1496if(ret) {1497warning(_("recount: unexpected line: %.*s"),1498(int)linelen(line, size), line);1499return;1500}1501break;1502}1503 fragment->oldlines = oldlines;1504 fragment->newlines = newlines;1505}15061507/*1508 * Parse a unified diff fragment header of the1509 * form "@@ -a,b +c,d @@"1510 */1511static intparse_fragment_header(const char*line,int len,struct fragment *fragment)1512{1513int offset;15141515if(!len || line[len-1] !='\n')1516return-1;15171518/* Figure out the number of lines in a fragment */1519 offset =parse_range(line, len,4," +", &fragment->oldpos, &fragment->oldlines);1520 offset =parse_range(line, len, offset," @@", &fragment->newpos, &fragment->newlines);15211522return offset;1523}15241525/*1526 * Find file diff header1527 *1528 * Returns:1529 * -1 if no header was found1530 * -128 in case of error1531 * the size of the header in bytes (called "offset") otherwise1532 */1533static intfind_header(struct apply_state *state,1534const char*line,1535unsigned long size,1536int*hdrsize,1537struct patch *patch)1538{1539unsigned long offset, len;15401541 patch->is_toplevel_relative =0;1542 patch->is_rename = patch->is_copy =0;1543 patch->is_new = patch->is_delete = -1;1544 patch->old_mode = patch->new_mode =0;1545 patch->old_name = patch->new_name = NULL;1546for(offset =0; size >0; offset += len, size -= len, line += len, state->linenr++) {1547unsigned long nextlen;15481549 len =linelen(line, size);1550if(!len)1551break;15521553/* Testing this early allows us to take a few shortcuts.. */1554if(len <6)1555continue;15561557/*1558 * Make sure we don't find any unconnected patch fragments.1559 * That's a sign that we didn't find a header, and that a1560 * patch has become corrupted/broken up.1561 */1562if(!memcmp("@@ -", line,4)) {1563struct fragment dummy;1564if(parse_fragment_header(line, len, &dummy) <0)1565continue;1566error(_("patch fragment without header at line%d: %.*s"),1567 state->linenr, (int)len-1, line);1568return-128;1569}15701571if(size < len +6)1572break;15731574/*1575 * Git patch? It might not have a real patch, just a rename1576 * or mode change, so we handle that specially1577 */1578if(!memcmp("diff --git ", line,11)) {1579int git_hdr_len =parse_git_header(state, line, len, size, patch);1580if(git_hdr_len <0)1581return-128;1582if(git_hdr_len <= len)1583continue;1584if(!patch->old_name && !patch->new_name) {1585if(!patch->def_name) {1586error(Q_("git diff header lacks filename information when removing "1587"%dleading pathname component (line%d)",1588"git diff header lacks filename information when removing "1589"%dleading pathname components (line%d)",1590 state->p_value),1591 state->p_value, state->linenr);1592return-128;1593}1594 patch->old_name =xstrdup(patch->def_name);1595 patch->new_name =xstrdup(patch->def_name);1596}1597if((!patch->new_name && !patch->is_delete) ||1598(!patch->old_name && !patch->is_new)) {1599error(_("git diff header lacks filename information "1600"(line%d)"), state->linenr);1601return-128;1602}1603 patch->is_toplevel_relative =1;1604*hdrsize = git_hdr_len;1605return offset;1606}16071608/* --- followed by +++ ? */1609if(memcmp("--- ", line,4) ||memcmp("+++ ", line + len,4))1610continue;16111612/*1613 * We only accept unified patches, so we want it to1614 * at least have "@@ -a,b +c,d @@\n", which is 14 chars1615 * minimum ("@@ -0,0 +1 @@\n" is the shortest).1616 */1617 nextlen =linelen(line + len, size - len);1618if(size < nextlen +14||memcmp("@@ -", line + len + nextlen,4))1619continue;16201621/* Ok, we'll consider it a patch */1622if(parse_traditional_patch(state, line, line+len, patch))1623return-128;1624*hdrsize = len + nextlen;1625 state->linenr +=2;1626return offset;1627}1628return-1;1629}16301631static voidrecord_ws_error(struct apply_state *state,1632unsigned result,1633const char*line,1634int len,1635int linenr)1636{1637char*err;16381639if(!result)1640return;16411642 state->whitespace_error++;1643if(state->squelch_whitespace_errors &&1644 state->squelch_whitespace_errors < state->whitespace_error)1645return;16461647 err =whitespace_error_string(result);1648if(state->apply_verbosity > verbosity_silent)1649fprintf(stderr,"%s:%d:%s.\n%.*s\n",1650 state->patch_input_file, linenr, err, len, line);1651free(err);1652}16531654static voidcheck_whitespace(struct apply_state *state,1655const char*line,1656int len,1657unsigned ws_rule)1658{1659unsigned result =ws_check(line +1, len -1, ws_rule);16601661record_ws_error(state, result, line +1, len -2, state->linenr);1662}16631664/*1665 * Parse a unified diff. Note that this really needs to parse each1666 * fragment separately, since the only way to know the difference1667 * between a "---" that is part of a patch, and a "---" that starts1668 * the next patch is to look at the line counts..1669 */1670static intparse_fragment(struct apply_state *state,1671const char*line,1672unsigned long size,1673struct patch *patch,1674struct fragment *fragment)1675{1676int added, deleted;1677int len =linelen(line, size), offset;1678unsigned long oldlines, newlines;1679unsigned long leading, trailing;16801681 offset =parse_fragment_header(line, len, fragment);1682if(offset <0)1683return-1;1684if(offset >0&& patch->recount)1685recount_diff(line + offset, size - offset, fragment);1686 oldlines = fragment->oldlines;1687 newlines = fragment->newlines;1688 leading =0;1689 trailing =0;16901691/* Parse the thing.. */1692 line += len;1693 size -= len;1694 state->linenr++;1695 added = deleted =0;1696for(offset = len;16970< size;1698 offset += len, size -= len, line += len, state->linenr++) {1699if(!oldlines && !newlines)1700break;1701 len =linelen(line, size);1702if(!len || line[len-1] !='\n')1703return-1;1704switch(*line) {1705default:1706return-1;1707case'\n':/* newer GNU diff, an empty context line */1708case' ':1709 oldlines--;1710 newlines--;1711if(!deleted && !added)1712 leading++;1713 trailing++;1714if(!state->apply_in_reverse &&1715 state->ws_error_action == correct_ws_error)1716check_whitespace(state, line, len, patch->ws_rule);1717break;1718case'-':1719if(state->apply_in_reverse &&1720 state->ws_error_action != nowarn_ws_error)1721check_whitespace(state, line, len, patch->ws_rule);1722 deleted++;1723 oldlines--;1724 trailing =0;1725break;1726case'+':1727if(!state->apply_in_reverse &&1728 state->ws_error_action != nowarn_ws_error)1729check_whitespace(state, line, len, patch->ws_rule);1730 added++;1731 newlines--;1732 trailing =0;1733break;17341735/*1736 * We allow "\ No newline at end of file". Depending1737 * on locale settings when the patch was produced we1738 * don't know what this line looks like. The only1739 * thing we do know is that it begins with "\ ".1740 * Checking for 12 is just for sanity check -- any1741 * l10n of "\ No newline..." is at least that long.1742 */1743case'\\':1744if(len <12||memcmp(line,"\\",2))1745return-1;1746break;1747}1748}1749if(oldlines || newlines)1750return-1;1751if(!deleted && !added)1752return-1;17531754 fragment->leading = leading;1755 fragment->trailing = trailing;17561757/*1758 * If a fragment ends with an incomplete line, we failed to include1759 * it in the above loop because we hit oldlines == newlines == 01760 * before seeing it.1761 */1762if(12< size && !memcmp(line,"\\",2))1763 offset +=linelen(line, size);17641765 patch->lines_added += added;1766 patch->lines_deleted += deleted;17671768if(0< patch->is_new && oldlines)1769returnerror(_("new file depends on old contents"));1770if(0< patch->is_delete && newlines)1771returnerror(_("deleted file still has contents"));1772return offset;1773}17741775/*1776 * We have seen "diff --git a/... b/..." header (or a traditional patch1777 * header). Read hunks that belong to this patch into fragments and hang1778 * them to the given patch structure.1779 *1780 * The (fragment->patch, fragment->size) pair points into the memory given1781 * by the caller, not a copy, when we return.1782 *1783 * Returns:1784 * -1 in case of error,1785 * the number of bytes in the patch otherwise.1786 */1787static intparse_single_patch(struct apply_state *state,1788const char*line,1789unsigned long size,1790struct patch *patch)1791{1792unsigned long offset =0;1793unsigned long oldlines =0, newlines =0, context =0;1794struct fragment **fragp = &patch->fragments;17951796while(size >4&& !memcmp(line,"@@ -",4)) {1797struct fragment *fragment;1798int len;17991800 fragment =xcalloc(1,sizeof(*fragment));1801 fragment->linenr = state->linenr;1802 len =parse_fragment(state, line, size, patch, fragment);1803if(len <=0) {1804free(fragment);1805returnerror(_("corrupt patch at line%d"), state->linenr);1806}1807 fragment->patch = line;1808 fragment->size = len;1809 oldlines += fragment->oldlines;1810 newlines += fragment->newlines;1811 context += fragment->leading + fragment->trailing;18121813*fragp = fragment;1814 fragp = &fragment->next;18151816 offset += len;1817 line += len;1818 size -= len;1819}18201821/*1822 * If something was removed (i.e. we have old-lines) it cannot1823 * be creation, and if something was added it cannot be1824 * deletion. However, the reverse is not true; --unified=01825 * patches that only add are not necessarily creation even1826 * though they do not have any old lines, and ones that only1827 * delete are not necessarily deletion.1828 *1829 * Unfortunately, a real creation/deletion patch do _not_ have1830 * any context line by definition, so we cannot safely tell it1831 * apart with --unified=0 insanity. At least if the patch has1832 * more than one hunk it is not creation or deletion.1833 */1834if(patch->is_new <0&&1835(oldlines || (patch->fragments && patch->fragments->next)))1836 patch->is_new =0;1837if(patch->is_delete <0&&1838(newlines || (patch->fragments && patch->fragments->next)))1839 patch->is_delete =0;18401841if(0< patch->is_new && oldlines)1842returnerror(_("new file%sdepends on old contents"), patch->new_name);1843if(0< patch->is_delete && newlines)1844returnerror(_("deleted file%sstill has contents"), patch->old_name);1845if(!patch->is_delete && !newlines && context && state->apply_verbosity > verbosity_silent)1846fprintf_ln(stderr,1847_("** warning: "1848"file%sbecomes empty but is not deleted"),1849 patch->new_name);18501851return offset;1852}18531854staticinlineintmetadata_changes(struct patch *patch)1855{1856return patch->is_rename >0||1857 patch->is_copy >0||1858 patch->is_new >0||1859 patch->is_delete ||1860(patch->old_mode && patch->new_mode &&1861 patch->old_mode != patch->new_mode);1862}18631864static char*inflate_it(const void*data,unsigned long size,1865unsigned long inflated_size)1866{1867 git_zstream stream;1868void*out;1869int st;18701871memset(&stream,0,sizeof(stream));18721873 stream.next_in = (unsigned char*)data;1874 stream.avail_in = size;1875 stream.next_out = out =xmalloc(inflated_size);1876 stream.avail_out = inflated_size;1877git_inflate_init(&stream);1878 st =git_inflate(&stream, Z_FINISH);1879git_inflate_end(&stream);1880if((st != Z_STREAM_END) || stream.total_out != inflated_size) {1881free(out);1882return NULL;1883}1884return out;1885}18861887/*1888 * Read a binary hunk and return a new fragment; fragment->patch1889 * points at an allocated memory that the caller must free, so1890 * it is marked as "->free_patch = 1".1891 */1892static struct fragment *parse_binary_hunk(struct apply_state *state,1893char**buf_p,1894unsigned long*sz_p,1895int*status_p,1896int*used_p)1897{1898/*1899 * Expect a line that begins with binary patch method ("literal"1900 * or "delta"), followed by the length of data before deflating.1901 * a sequence of 'length-byte' followed by base-85 encoded data1902 * should follow, terminated by a newline.1903 *1904 * Each 5-byte sequence of base-85 encodes up to 4 bytes,1905 * and we would limit the patch line to 66 characters,1906 * so one line can fit up to 13 groups that would decode1907 * to 52 bytes max. The length byte 'A'-'Z' corresponds1908 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.1909 */1910int llen, used;1911unsigned long size = *sz_p;1912char*buffer = *buf_p;1913int patch_method;1914unsigned long origlen;1915char*data = NULL;1916int hunk_size =0;1917struct fragment *frag;19181919 llen =linelen(buffer, size);1920 used = llen;19211922*status_p =0;19231924if(starts_with(buffer,"delta ")) {1925 patch_method = BINARY_DELTA_DEFLATED;1926 origlen =strtoul(buffer +6, NULL,10);1927}1928else if(starts_with(buffer,"literal ")) {1929 patch_method = BINARY_LITERAL_DEFLATED;1930 origlen =strtoul(buffer +8, NULL,10);1931}1932else1933return NULL;19341935 state->linenr++;1936 buffer += llen;1937while(1) {1938int byte_length, max_byte_length, newsize;1939 llen =linelen(buffer, size);1940 used += llen;1941 state->linenr++;1942if(llen ==1) {1943/* consume the blank line */1944 buffer++;1945 size--;1946break;1947}1948/*1949 * Minimum line is "A00000\n" which is 7-byte long,1950 * and the line length must be multiple of 5 plus 2.1951 */1952if((llen <7) || (llen-2) %5)1953goto corrupt;1954 max_byte_length = (llen -2) /5*4;1955 byte_length = *buffer;1956if('A'<= byte_length && byte_length <='Z')1957 byte_length = byte_length -'A'+1;1958else if('a'<= byte_length && byte_length <='z')1959 byte_length = byte_length -'a'+27;1960else1961goto corrupt;1962/* if the input length was not multiple of 4, we would1963 * have filler at the end but the filler should never1964 * exceed 3 bytes1965 */1966if(max_byte_length < byte_length ||1967 byte_length <= max_byte_length -4)1968goto corrupt;1969 newsize = hunk_size + byte_length;1970 data =xrealloc(data, newsize);1971if(decode_85(data + hunk_size, buffer +1, byte_length))1972goto corrupt;1973 hunk_size = newsize;1974 buffer += llen;1975 size -= llen;1976}19771978 frag =xcalloc(1,sizeof(*frag));1979 frag->patch =inflate_it(data, hunk_size, origlen);1980 frag->free_patch =1;1981if(!frag->patch)1982goto corrupt;1983free(data);1984 frag->size = origlen;1985*buf_p = buffer;1986*sz_p = size;1987*used_p = used;1988 frag->binary_patch_method = patch_method;1989return frag;19901991 corrupt:1992free(data);1993*status_p = -1;1994error(_("corrupt binary patch at line%d: %.*s"),1995 state->linenr-1, llen-1, buffer);1996return NULL;1997}19981999/*2000 * Returns:2001 * -1 in case of error,2002 * the length of the parsed binary patch otherwise2003 */2004static intparse_binary(struct apply_state *state,2005char*buffer,2006unsigned long size,2007struct patch *patch)2008{2009/*2010 * We have read "GIT binary patch\n"; what follows is a line2011 * that says the patch method (currently, either "literal" or2012 * "delta") and the length of data before deflating; a2013 * sequence of 'length-byte' followed by base-85 encoded data2014 * follows.2015 *2016 * When a binary patch is reversible, there is another binary2017 * hunk in the same format, starting with patch method (either2018 * "literal" or "delta") with the length of data, and a sequence2019 * of length-byte + base-85 encoded data, terminated with another2020 * empty line. This data, when applied to the postimage, produces2021 * the preimage.2022 */2023struct fragment *forward;2024struct fragment *reverse;2025int status;2026int used, used_1;20272028 forward =parse_binary_hunk(state, &buffer, &size, &status, &used);2029if(!forward && !status)2030/* there has to be one hunk (forward hunk) */2031returnerror(_("unrecognized binary patch at line%d"), state->linenr-1);2032if(status)2033/* otherwise we already gave an error message */2034return status;20352036 reverse =parse_binary_hunk(state, &buffer, &size, &status, &used_1);2037if(reverse)2038 used += used_1;2039else if(status) {2040/*2041 * Not having reverse hunk is not an error, but having2042 * a corrupt reverse hunk is.2043 */2044free((void*) forward->patch);2045free(forward);2046return status;2047}2048 forward->next = reverse;2049 patch->fragments = forward;2050 patch->is_binary =1;2051return used;2052}20532054static voidprefix_one(struct apply_state *state,char**name)2055{2056char*old_name = *name;2057if(!old_name)2058return;2059*name =prefix_filename(state->prefix, *name);2060free(old_name);2061}20622063static voidprefix_patch(struct apply_state *state,struct patch *p)2064{2065if(!state->prefix || p->is_toplevel_relative)2066return;2067prefix_one(state, &p->new_name);2068prefix_one(state, &p->old_name);2069}20702071/*2072 * include/exclude2073 */20742075static voidadd_name_limit(struct apply_state *state,2076const char*name,2077int exclude)2078{2079struct string_list_item *it;20802081 it =string_list_append(&state->limit_by_name, name);2082 it->util = exclude ? NULL : (void*)1;2083}20842085static intuse_patch(struct apply_state *state,struct patch *p)2086{2087const char*pathname = p->new_name ? p->new_name : p->old_name;2088int i;20892090/* Paths outside are not touched regardless of "--include" */2091if(state->prefix && *state->prefix) {2092const char*rest;2093if(!skip_prefix(pathname, state->prefix, &rest) || !*rest)2094return0;2095}20962097/* See if it matches any of exclude/include rule */2098for(i =0; i < state->limit_by_name.nr; i++) {2099struct string_list_item *it = &state->limit_by_name.items[i];2100if(!wildmatch(it->string, pathname,0))2101return(it->util != NULL);2102}21032104/*2105 * If we had any include, a path that does not match any rule is2106 * not used. Otherwise, we saw bunch of exclude rules (or none)2107 * and such a path is used.2108 */2109return!state->has_include;2110}21112112/*2113 * Read the patch text in "buffer" that extends for "size" bytes; stop2114 * reading after seeing a single patch (i.e. changes to a single file).2115 * Create fragments (i.e. patch hunks) and hang them to the given patch.2116 *2117 * Returns:2118 * -1 if no header was found or parse_binary() failed,2119 * -128 on another error,2120 * the number of bytes consumed otherwise,2121 * so that the caller can call us again for the next patch.2122 */2123static intparse_chunk(struct apply_state *state,char*buffer,unsigned long size,struct patch *patch)2124{2125int hdrsize, patchsize;2126int offset =find_header(state, buffer, size, &hdrsize, patch);21272128if(offset <0)2129return offset;21302131prefix_patch(state, patch);21322133if(!use_patch(state, patch))2134 patch->ws_rule =0;2135else2136 patch->ws_rule =whitespace_rule(patch->new_name2137? patch->new_name2138: patch->old_name);21392140 patchsize =parse_single_patch(state,2141 buffer + offset + hdrsize,2142 size - offset - hdrsize,2143 patch);21442145if(patchsize <0)2146return-128;21472148if(!patchsize) {2149static const char git_binary[] ="GIT binary patch\n";2150int hd = hdrsize + offset;2151unsigned long llen =linelen(buffer + hd, size - hd);21522153if(llen ==sizeof(git_binary) -1&&2154!memcmp(git_binary, buffer + hd, llen)) {2155int used;2156 state->linenr++;2157 used =parse_binary(state, buffer + hd + llen,2158 size - hd - llen, patch);2159if(used <0)2160return-1;2161if(used)2162 patchsize = used + llen;2163else2164 patchsize =0;2165}2166else if(!memcmp(" differ\n", buffer + hd + llen -8,8)) {2167static const char*binhdr[] = {2168"Binary files ",2169"Files ",2170 NULL,2171};2172int i;2173for(i =0; binhdr[i]; i++) {2174int len =strlen(binhdr[i]);2175if(len < size - hd &&2176!memcmp(binhdr[i], buffer + hd, len)) {2177 state->linenr++;2178 patch->is_binary =1;2179 patchsize = llen;2180break;2181}2182}2183}21842185/* Empty patch cannot be applied if it is a text patch2186 * without metadata change. A binary patch appears2187 * empty to us here.2188 */2189if((state->apply || state->check) &&2190(!patch->is_binary && !metadata_changes(patch))) {2191error(_("patch with only garbage at line%d"), state->linenr);2192return-128;2193}2194}21952196return offset + hdrsize + patchsize;2197}21982199static voidreverse_patches(struct patch *p)2200{2201for(; p; p = p->next) {2202struct fragment *frag = p->fragments;22032204SWAP(p->new_name, p->old_name);2205SWAP(p->new_mode, p->old_mode);2206SWAP(p->is_new, p->is_delete);2207SWAP(p->lines_added, p->lines_deleted);2208SWAP(p->old_sha1_prefix, p->new_sha1_prefix);22092210for(; frag; frag = frag->next) {2211SWAP(frag->newpos, frag->oldpos);2212SWAP(frag->newlines, frag->oldlines);2213}2214}2215}22162217static const char pluses[] =2218"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";2219static const char minuses[]=2220"----------------------------------------------------------------------";22212222static voidshow_stats(struct apply_state *state,struct patch *patch)2223{2224struct strbuf qname = STRBUF_INIT;2225char*cp = patch->new_name ? patch->new_name : patch->old_name;2226int max, add, del;22272228quote_c_style(cp, &qname, NULL,0);22292230/*2231 * "scale" the filename2232 */2233 max = state->max_len;2234if(max >50)2235 max =50;22362237if(qname.len > max) {2238 cp =strchr(qname.buf + qname.len +3- max,'/');2239if(!cp)2240 cp = qname.buf + qname.len +3- max;2241strbuf_splice(&qname,0, cp - qname.buf,"...",3);2242}22432244if(patch->is_binary) {2245printf(" %-*s | Bin\n", max, qname.buf);2246strbuf_release(&qname);2247return;2248}22492250printf(" %-*s |", max, qname.buf);2251strbuf_release(&qname);22522253/*2254 * scale the add/delete2255 */2256 max = max + state->max_change >70?70- max : state->max_change;2257 add = patch->lines_added;2258 del = patch->lines_deleted;22592260if(state->max_change >0) {2261int total = ((add + del) * max + state->max_change /2) / state->max_change;2262 add = (add * max + state->max_change /2) / state->max_change;2263 del = total - add;2264}2265printf("%5d %.*s%.*s\n", patch->lines_added + patch->lines_deleted,2266 add, pluses, del, minuses);2267}22682269static intread_old_data(struct stat *st,const char*path,struct strbuf *buf)2270{2271switch(st->st_mode & S_IFMT) {2272case S_IFLNK:2273if(strbuf_readlink(buf, path, st->st_size) <0)2274returnerror(_("unable to read symlink%s"), path);2275return0;2276case S_IFREG:2277if(strbuf_read_file(buf, path, st->st_size) != st->st_size)2278returnerror(_("unable to open or read%s"), path);2279convert_to_git(&the_index, path, buf->buf, buf->len, buf,0);2280return0;2281default:2282return-1;2283}2284}22852286/*2287 * Update the preimage, and the common lines in postimage,2288 * from buffer buf of length len. If postlen is 0 the postimage2289 * is updated in place, otherwise it's updated on a new buffer2290 * of length postlen2291 */22922293static voidupdate_pre_post_images(struct image *preimage,2294struct image *postimage,2295char*buf,2296size_t len,size_t postlen)2297{2298int i, ctx, reduced;2299char*new, *old, *fixed;2300struct image fixed_preimage;23012302/*2303 * Update the preimage with whitespace fixes. Note that we2304 * are not losing preimage->buf -- apply_one_fragment() will2305 * free "oldlines".2306 */2307prepare_image(&fixed_preimage, buf, len,1);2308assert(postlen2309? fixed_preimage.nr == preimage->nr2310: fixed_preimage.nr <= preimage->nr);2311for(i =0; i < fixed_preimage.nr; i++)2312 fixed_preimage.line[i].flag = preimage->line[i].flag;2313free(preimage->line_allocated);2314*preimage = fixed_preimage;23152316/*2317 * Adjust the common context lines in postimage. This can be2318 * done in-place when we are shrinking it with whitespace2319 * fixing, but needs a new buffer when ignoring whitespace or2320 * expanding leading tabs to spaces.2321 *2322 * We trust the caller to tell us if the update can be done2323 * in place (postlen==0) or not.2324 */2325 old = postimage->buf;2326if(postlen)2327new= postimage->buf =xmalloc(postlen);2328else2329new= old;2330 fixed = preimage->buf;23312332for(i = reduced = ctx =0; i < postimage->nr; i++) {2333size_t l_len = postimage->line[i].len;2334if(!(postimage->line[i].flag & LINE_COMMON)) {2335/* an added line -- no counterparts in preimage */2336memmove(new, old, l_len);2337 old += l_len;2338new+= l_len;2339continue;2340}23412342/* a common context -- skip it in the original postimage */2343 old += l_len;23442345/* and find the corresponding one in the fixed preimage */2346while(ctx < preimage->nr &&2347!(preimage->line[ctx].flag & LINE_COMMON)) {2348 fixed += preimage->line[ctx].len;2349 ctx++;2350}23512352/*2353 * preimage is expected to run out, if the caller2354 * fixed addition of trailing blank lines.2355 */2356if(preimage->nr <= ctx) {2357 reduced++;2358continue;2359}23602361/* and copy it in, while fixing the line length */2362 l_len = preimage->line[ctx].len;2363memcpy(new, fixed, l_len);2364new+= l_len;2365 fixed += l_len;2366 postimage->line[i].len = l_len;2367 ctx++;2368}23692370if(postlen2371? postlen <new- postimage->buf2372: postimage->len <new- postimage->buf)2373die("BUG: caller miscounted postlen: asked%d, orig =%d, used =%d",2374(int)postlen, (int) postimage->len, (int)(new- postimage->buf));23752376/* Fix the length of the whole thing */2377 postimage->len =new- postimage->buf;2378 postimage->nr -= reduced;2379}23802381static intline_by_line_fuzzy_match(struct image *img,2382struct image *preimage,2383struct image *postimage,2384unsigned longtry,2385int try_lno,2386int preimage_limit)2387{2388int i;2389size_t imgoff =0;2390size_t preoff =0;2391size_t postlen = postimage->len;2392size_t extra_chars;2393char*buf;2394char*preimage_eof;2395char*preimage_end;2396struct strbuf fixed;2397char*fixed_buf;2398size_t fixed_len;23992400for(i =0; i < preimage_limit; i++) {2401size_t prelen = preimage->line[i].len;2402size_t imglen = img->line[try_lno+i].len;24032404if(!fuzzy_matchlines(img->buf +try+ imgoff, imglen,2405 preimage->buf + preoff, prelen))2406return0;2407if(preimage->line[i].flag & LINE_COMMON)2408 postlen += imglen - prelen;2409 imgoff += imglen;2410 preoff += prelen;2411}24122413/*2414 * Ok, the preimage matches with whitespace fuzz.2415 *2416 * imgoff now holds the true length of the target that2417 * matches the preimage before the end of the file.2418 *2419 * Count the number of characters in the preimage that fall2420 * beyond the end of the file and make sure that all of them2421 * are whitespace characters. (This can only happen if2422 * we are removing blank lines at the end of the file.)2423 */2424 buf = preimage_eof = preimage->buf + preoff;2425for( ; i < preimage->nr; i++)2426 preoff += preimage->line[i].len;2427 preimage_end = preimage->buf + preoff;2428for( ; buf < preimage_end; buf++)2429if(!isspace(*buf))2430return0;24312432/*2433 * Update the preimage and the common postimage context2434 * lines to use the same whitespace as the target.2435 * If whitespace is missing in the target (i.e.2436 * if the preimage extends beyond the end of the file),2437 * use the whitespace from the preimage.2438 */2439 extra_chars = preimage_end - preimage_eof;2440strbuf_init(&fixed, imgoff + extra_chars);2441strbuf_add(&fixed, img->buf +try, imgoff);2442strbuf_add(&fixed, preimage_eof, extra_chars);2443 fixed_buf =strbuf_detach(&fixed, &fixed_len);2444update_pre_post_images(preimage, postimage,2445 fixed_buf, fixed_len, postlen);2446return1;2447}24482449static intmatch_fragment(struct apply_state *state,2450struct image *img,2451struct image *preimage,2452struct image *postimage,2453unsigned longtry,2454int try_lno,2455unsigned ws_rule,2456int match_beginning,int match_end)2457{2458int i;2459char*fixed_buf, *buf, *orig, *target;2460struct strbuf fixed;2461size_t fixed_len, postlen;2462int preimage_limit;24632464if(preimage->nr + try_lno <= img->nr) {2465/*2466 * The hunk falls within the boundaries of img.2467 */2468 preimage_limit = preimage->nr;2469if(match_end && (preimage->nr + try_lno != img->nr))2470return0;2471}else if(state->ws_error_action == correct_ws_error &&2472(ws_rule & WS_BLANK_AT_EOF)) {2473/*2474 * This hunk extends beyond the end of img, and we are2475 * removing blank lines at the end of the file. This2476 * many lines from the beginning of the preimage must2477 * match with img, and the remainder of the preimage2478 * must be blank.2479 */2480 preimage_limit = img->nr - try_lno;2481}else{2482/*2483 * The hunk extends beyond the end of the img and2484 * we are not removing blanks at the end, so we2485 * should reject the hunk at this position.2486 */2487return0;2488}24892490if(match_beginning && try_lno)2491return0;24922493/* Quick hash check */2494for(i =0; i < preimage_limit; i++)2495if((img->line[try_lno + i].flag & LINE_PATCHED) ||2496(preimage->line[i].hash != img->line[try_lno + i].hash))2497return0;24982499if(preimage_limit == preimage->nr) {2500/*2501 * Do we have an exact match? If we were told to match2502 * at the end, size must be exactly at try+fragsize,2503 * otherwise try+fragsize must be still within the preimage,2504 * and either case, the old piece should match the preimage2505 * exactly.2506 */2507if((match_end2508? (try+ preimage->len == img->len)2509: (try+ preimage->len <= img->len)) &&2510!memcmp(img->buf +try, preimage->buf, preimage->len))2511return1;2512}else{2513/*2514 * The preimage extends beyond the end of img, so2515 * there cannot be an exact match.2516 *2517 * There must be one non-blank context line that match2518 * a line before the end of img.2519 */2520char*buf_end;25212522 buf = preimage->buf;2523 buf_end = buf;2524for(i =0; i < preimage_limit; i++)2525 buf_end += preimage->line[i].len;25262527for( ; buf < buf_end; buf++)2528if(!isspace(*buf))2529break;2530if(buf == buf_end)2531return0;2532}25332534/*2535 * No exact match. If we are ignoring whitespace, run a line-by-line2536 * fuzzy matching. We collect all the line length information because2537 * we need it to adjust whitespace if we match.2538 */2539if(state->ws_ignore_action == ignore_ws_change)2540returnline_by_line_fuzzy_match(img, preimage, postimage,2541try, try_lno, preimage_limit);25422543if(state->ws_error_action != correct_ws_error)2544return0;25452546/*2547 * The hunk does not apply byte-by-byte, but the hash says2548 * it might with whitespace fuzz. We weren't asked to2549 * ignore whitespace, we were asked to correct whitespace2550 * errors, so let's try matching after whitespace correction.2551 *2552 * While checking the preimage against the target, whitespace2553 * errors in both fixed, we count how large the corresponding2554 * postimage needs to be. The postimage prepared by2555 * apply_one_fragment() has whitespace errors fixed on added2556 * lines already, but the common lines were propagated as-is,2557 * which may become longer when their whitespace errors are2558 * fixed.2559 */25602561/* First count added lines in postimage */2562 postlen =0;2563for(i =0; i < postimage->nr; i++) {2564if(!(postimage->line[i].flag & LINE_COMMON))2565 postlen += postimage->line[i].len;2566}25672568/*2569 * The preimage may extend beyond the end of the file,2570 * but in this loop we will only handle the part of the2571 * preimage that falls within the file.2572 */2573strbuf_init(&fixed, preimage->len +1);2574 orig = preimage->buf;2575 target = img->buf +try;2576for(i =0; i < preimage_limit; i++) {2577size_t oldlen = preimage->line[i].len;2578size_t tgtlen = img->line[try_lno + i].len;2579size_t fixstart = fixed.len;2580struct strbuf tgtfix;2581int match;25822583/* Try fixing the line in the preimage */2584ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);25852586/* Try fixing the line in the target */2587strbuf_init(&tgtfix, tgtlen);2588ws_fix_copy(&tgtfix, target, tgtlen, ws_rule, NULL);25892590/*2591 * If they match, either the preimage was based on2592 * a version before our tree fixed whitespace breakage,2593 * or we are lacking a whitespace-fix patch the tree2594 * the preimage was based on already had (i.e. target2595 * has whitespace breakage, the preimage doesn't).2596 * In either case, we are fixing the whitespace breakages2597 * so we might as well take the fix together with their2598 * real change.2599 */2600 match = (tgtfix.len == fixed.len - fixstart &&2601!memcmp(tgtfix.buf, fixed.buf + fixstart,2602 fixed.len - fixstart));26032604/* Add the length if this is common with the postimage */2605if(preimage->line[i].flag & LINE_COMMON)2606 postlen += tgtfix.len;26072608strbuf_release(&tgtfix);2609if(!match)2610goto unmatch_exit;26112612 orig += oldlen;2613 target += tgtlen;2614}261526162617/*2618 * Now handle the lines in the preimage that falls beyond the2619 * end of the file (if any). They will only match if they are2620 * empty or only contain whitespace (if WS_BLANK_AT_EOL is2621 * false).2622 */2623for( ; i < preimage->nr; i++) {2624size_t fixstart = fixed.len;/* start of the fixed preimage */2625size_t oldlen = preimage->line[i].len;2626int j;26272628/* Try fixing the line in the preimage */2629ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);26302631for(j = fixstart; j < fixed.len; j++)2632if(!isspace(fixed.buf[j]))2633goto unmatch_exit;26342635 orig += oldlen;2636}26372638/*2639 * Yes, the preimage is based on an older version that still2640 * has whitespace breakages unfixed, and fixing them makes the2641 * hunk match. Update the context lines in the postimage.2642 */2643 fixed_buf =strbuf_detach(&fixed, &fixed_len);2644if(postlen < postimage->len)2645 postlen =0;2646update_pre_post_images(preimage, postimage,2647 fixed_buf, fixed_len, postlen);2648return1;26492650 unmatch_exit:2651strbuf_release(&fixed);2652return0;2653}26542655static intfind_pos(struct apply_state *state,2656struct image *img,2657struct image *preimage,2658struct image *postimage,2659int line,2660unsigned ws_rule,2661int match_beginning,int match_end)2662{2663int i;2664unsigned long backwards, forwards,try;2665int backwards_lno, forwards_lno, try_lno;26662667/*2668 * If match_beginning or match_end is specified, there is no2669 * point starting from a wrong line that will never match and2670 * wander around and wait for a match at the specified end.2671 */2672if(match_beginning)2673 line =0;2674else if(match_end)2675 line = img->nr - preimage->nr;26762677/*2678 * Because the comparison is unsigned, the following test2679 * will also take care of a negative line number that can2680 * result when match_end and preimage is larger than the target.2681 */2682if((size_t) line > img->nr)2683 line = img->nr;26842685try=0;2686for(i =0; i < line; i++)2687try+= img->line[i].len;26882689/*2690 * There's probably some smart way to do this, but I'll leave2691 * that to the smart and beautiful people. I'm simple and stupid.2692 */2693 backwards =try;2694 backwards_lno = line;2695 forwards =try;2696 forwards_lno = line;2697 try_lno = line;26982699for(i =0; ; i++) {2700if(match_fragment(state, img, preimage, postimage,2701try, try_lno, ws_rule,2702 match_beginning, match_end))2703return try_lno;27042705 again:2706if(backwards_lno ==0&& forwards_lno == img->nr)2707break;27082709if(i &1) {2710if(backwards_lno ==0) {2711 i++;2712goto again;2713}2714 backwards_lno--;2715 backwards -= img->line[backwards_lno].len;2716try= backwards;2717 try_lno = backwards_lno;2718}else{2719if(forwards_lno == img->nr) {2720 i++;2721goto again;2722}2723 forwards += img->line[forwards_lno].len;2724 forwards_lno++;2725try= forwards;2726 try_lno = forwards_lno;2727}27282729}2730return-1;2731}27322733static voidremove_first_line(struct image *img)2734{2735 img->buf += img->line[0].len;2736 img->len -= img->line[0].len;2737 img->line++;2738 img->nr--;2739}27402741static voidremove_last_line(struct image *img)2742{2743 img->len -= img->line[--img->nr].len;2744}27452746/*2747 * The change from "preimage" and "postimage" has been found to2748 * apply at applied_pos (counts in line numbers) in "img".2749 * Update "img" to remove "preimage" and replace it with "postimage".2750 */2751static voidupdate_image(struct apply_state *state,2752struct image *img,2753int applied_pos,2754struct image *preimage,2755struct image *postimage)2756{2757/*2758 * remove the copy of preimage at offset in img2759 * and replace it with postimage2760 */2761int i, nr;2762size_t remove_count, insert_count, applied_at =0;2763char*result;2764int preimage_limit;27652766/*2767 * If we are removing blank lines at the end of img,2768 * the preimage may extend beyond the end.2769 * If that is the case, we must be careful only to2770 * remove the part of the preimage that falls within2771 * the boundaries of img. Initialize preimage_limit2772 * to the number of lines in the preimage that falls2773 * within the boundaries.2774 */2775 preimage_limit = preimage->nr;2776if(preimage_limit > img->nr - applied_pos)2777 preimage_limit = img->nr - applied_pos;27782779for(i =0; i < applied_pos; i++)2780 applied_at += img->line[i].len;27812782 remove_count =0;2783for(i =0; i < preimage_limit; i++)2784 remove_count += img->line[applied_pos + i].len;2785 insert_count = postimage->len;27862787/* Adjust the contents */2788 result =xmalloc(st_add3(st_sub(img->len, remove_count), insert_count,1));2789memcpy(result, img->buf, applied_at);2790memcpy(result + applied_at, postimage->buf, postimage->len);2791memcpy(result + applied_at + postimage->len,2792 img->buf + (applied_at + remove_count),2793 img->len - (applied_at + remove_count));2794free(img->buf);2795 img->buf = result;2796 img->len += insert_count - remove_count;2797 result[img->len] ='\0';27982799/* Adjust the line table */2800 nr = img->nr + postimage->nr - preimage_limit;2801if(preimage_limit < postimage->nr) {2802/*2803 * NOTE: this knows that we never call remove_first_line()2804 * on anything other than pre/post image.2805 */2806REALLOC_ARRAY(img->line, nr);2807 img->line_allocated = img->line;2808}2809if(preimage_limit != postimage->nr)2810MOVE_ARRAY(img->line + applied_pos + postimage->nr,2811 img->line + applied_pos + preimage_limit,2812 img->nr - (applied_pos + preimage_limit));2813COPY_ARRAY(img->line + applied_pos, postimage->line, postimage->nr);2814if(!state->allow_overlap)2815for(i =0; i < postimage->nr; i++)2816 img->line[applied_pos + i].flag |= LINE_PATCHED;2817 img->nr = nr;2818}28192820/*2821 * Use the patch-hunk text in "frag" to prepare two images (preimage and2822 * postimage) for the hunk. Find lines that match "preimage" in "img" and2823 * replace the part of "img" with "postimage" text.2824 */2825static intapply_one_fragment(struct apply_state *state,2826struct image *img,struct fragment *frag,2827int inaccurate_eof,unsigned ws_rule,2828int nth_fragment)2829{2830int match_beginning, match_end;2831const char*patch = frag->patch;2832int size = frag->size;2833char*old, *oldlines;2834struct strbuf newlines;2835int new_blank_lines_at_end =0;2836int found_new_blank_lines_at_end =0;2837int hunk_linenr = frag->linenr;2838unsigned long leading, trailing;2839int pos, applied_pos;2840struct image preimage;2841struct image postimage;28422843memset(&preimage,0,sizeof(preimage));2844memset(&postimage,0,sizeof(postimage));2845 oldlines =xmalloc(size);2846strbuf_init(&newlines, size);28472848 old = oldlines;2849while(size >0) {2850char first;2851int len =linelen(patch, size);2852int plen;2853int added_blank_line =0;2854int is_blank_context =0;2855size_t start;28562857if(!len)2858break;28592860/*2861 * "plen" is how much of the line we should use for2862 * the actual patch data. Normally we just remove the2863 * first character on the line, but if the line is2864 * followed by "\ No newline", then we also remove the2865 * last one (which is the newline, of course).2866 */2867 plen = len -1;2868if(len < size && patch[len] =='\\')2869 plen--;2870 first = *patch;2871if(state->apply_in_reverse) {2872if(first =='-')2873 first ='+';2874else if(first =='+')2875 first ='-';2876}28772878switch(first) {2879case'\n':2880/* Newer GNU diff, empty context line */2881if(plen <0)2882/* ... followed by '\No newline'; nothing */2883break;2884*old++ ='\n';2885strbuf_addch(&newlines,'\n');2886add_line_info(&preimage,"\n",1, LINE_COMMON);2887add_line_info(&postimage,"\n",1, LINE_COMMON);2888 is_blank_context =1;2889break;2890case' ':2891if(plen && (ws_rule & WS_BLANK_AT_EOF) &&2892ws_blank_line(patch +1, plen, ws_rule))2893 is_blank_context =1;2894case'-':2895memcpy(old, patch +1, plen);2896add_line_info(&preimage, old, plen,2897(first ==' '? LINE_COMMON :0));2898 old += plen;2899if(first =='-')2900break;2901/* Fall-through for ' ' */2902case'+':2903/* --no-add does not add new lines */2904if(first =='+'&& state->no_add)2905break;29062907 start = newlines.len;2908if(first !='+'||2909!state->whitespace_error ||2910 state->ws_error_action != correct_ws_error) {2911strbuf_add(&newlines, patch +1, plen);2912}2913else{2914ws_fix_copy(&newlines, patch +1, plen, ws_rule, &state->applied_after_fixing_ws);2915}2916add_line_info(&postimage, newlines.buf + start, newlines.len - start,2917(first =='+'?0: LINE_COMMON));2918if(first =='+'&&2919(ws_rule & WS_BLANK_AT_EOF) &&2920ws_blank_line(patch +1, plen, ws_rule))2921 added_blank_line =1;2922break;2923case'@':case'\\':2924/* Ignore it, we already handled it */2925break;2926default:2927if(state->apply_verbosity > verbosity_normal)2928error(_("invalid start of line: '%c'"), first);2929 applied_pos = -1;2930goto out;2931}2932if(added_blank_line) {2933if(!new_blank_lines_at_end)2934 found_new_blank_lines_at_end = hunk_linenr;2935 new_blank_lines_at_end++;2936}2937else if(is_blank_context)2938;2939else2940 new_blank_lines_at_end =0;2941 patch += len;2942 size -= len;2943 hunk_linenr++;2944}2945if(inaccurate_eof &&2946 old > oldlines && old[-1] =='\n'&&2947 newlines.len >0&& newlines.buf[newlines.len -1] =='\n') {2948 old--;2949strbuf_setlen(&newlines, newlines.len -1);2950}29512952 leading = frag->leading;2953 trailing = frag->trailing;29542955/*2956 * A hunk to change lines at the beginning would begin with2957 * @@ -1,L +N,M @@2958 * but we need to be careful. -U0 that inserts before the second2959 * line also has this pattern.2960 *2961 * And a hunk to add to an empty file would begin with2962 * @@ -0,0 +N,M @@2963 *2964 * In other words, a hunk that is (frag->oldpos <= 1) with or2965 * without leading context must match at the beginning.2966 */2967 match_beginning = (!frag->oldpos ||2968(frag->oldpos ==1&& !state->unidiff_zero));29692970/*2971 * A hunk without trailing lines must match at the end.2972 * However, we simply cannot tell if a hunk must match end2973 * from the lack of trailing lines if the patch was generated2974 * with unidiff without any context.2975 */2976 match_end = !state->unidiff_zero && !trailing;29772978 pos = frag->newpos ? (frag->newpos -1) :0;2979 preimage.buf = oldlines;2980 preimage.len = old - oldlines;2981 postimage.buf = newlines.buf;2982 postimage.len = newlines.len;2983 preimage.line = preimage.line_allocated;2984 postimage.line = postimage.line_allocated;29852986for(;;) {29872988 applied_pos =find_pos(state, img, &preimage, &postimage, pos,2989 ws_rule, match_beginning, match_end);29902991if(applied_pos >=0)2992break;29932994/* Am I at my context limits? */2995if((leading <= state->p_context) && (trailing <= state->p_context))2996break;2997if(match_beginning || match_end) {2998 match_beginning = match_end =0;2999continue;3000}30013002/*3003 * Reduce the number of context lines; reduce both3004 * leading and trailing if they are equal otherwise3005 * just reduce the larger context.3006 */3007if(leading >= trailing) {3008remove_first_line(&preimage);3009remove_first_line(&postimage);3010 pos--;3011 leading--;3012}3013if(trailing > leading) {3014remove_last_line(&preimage);3015remove_last_line(&postimage);3016 trailing--;3017}3018}30193020if(applied_pos >=0) {3021if(new_blank_lines_at_end &&3022 preimage.nr + applied_pos >= img->nr &&3023(ws_rule & WS_BLANK_AT_EOF) &&3024 state->ws_error_action != nowarn_ws_error) {3025record_ws_error(state, WS_BLANK_AT_EOF,"+",1,3026 found_new_blank_lines_at_end);3027if(state->ws_error_action == correct_ws_error) {3028while(new_blank_lines_at_end--)3029remove_last_line(&postimage);3030}3031/*3032 * We would want to prevent write_out_results()3033 * from taking place in apply_patch() that follows3034 * the callchain led us here, which is:3035 * apply_patch->check_patch_list->check_patch->3036 * apply_data->apply_fragments->apply_one_fragment3037 */3038if(state->ws_error_action == die_on_ws_error)3039 state->apply =0;3040}30413042if(state->apply_verbosity > verbosity_normal && applied_pos != pos) {3043int offset = applied_pos - pos;3044if(state->apply_in_reverse)3045 offset =0- offset;3046fprintf_ln(stderr,3047Q_("Hunk #%dsucceeded at%d(offset%dline).",3048"Hunk #%dsucceeded at%d(offset%dlines).",3049 offset),3050 nth_fragment, applied_pos +1, offset);3051}30523053/*3054 * Warn if it was necessary to reduce the number3055 * of context lines.3056 */3057if((leading != frag->leading ||3058 trailing != frag->trailing) && state->apply_verbosity > verbosity_silent)3059fprintf_ln(stderr,_("Context reduced to (%ld/%ld)"3060" to apply fragment at%d"),3061 leading, trailing, applied_pos+1);3062update_image(state, img, applied_pos, &preimage, &postimage);3063}else{3064if(state->apply_verbosity > verbosity_normal)3065error(_("while searching for:\n%.*s"),3066(int)(old - oldlines), oldlines);3067}30683069out:3070free(oldlines);3071strbuf_release(&newlines);3072free(preimage.line_allocated);3073free(postimage.line_allocated);30743075return(applied_pos <0);3076}30773078static intapply_binary_fragment(struct apply_state *state,3079struct image *img,3080struct patch *patch)3081{3082struct fragment *fragment = patch->fragments;3083unsigned long len;3084void*dst;30853086if(!fragment)3087returnerror(_("missing binary patch data for '%s'"),3088 patch->new_name ?3089 patch->new_name :3090 patch->old_name);30913092/* Binary patch is irreversible without the optional second hunk */3093if(state->apply_in_reverse) {3094if(!fragment->next)3095returnerror(_("cannot reverse-apply a binary patch "3096"without the reverse hunk to '%s'"),3097 patch->new_name3098? patch->new_name : patch->old_name);3099 fragment = fragment->next;3100}3101switch(fragment->binary_patch_method) {3102case BINARY_DELTA_DEFLATED:3103 dst =patch_delta(img->buf, img->len, fragment->patch,3104 fragment->size, &len);3105if(!dst)3106return-1;3107clear_image(img);3108 img->buf = dst;3109 img->len = len;3110return0;3111case BINARY_LITERAL_DEFLATED:3112clear_image(img);3113 img->len = fragment->size;3114 img->buf =xmemdupz(fragment->patch, img->len);3115return0;3116}3117return-1;3118}31193120/*3121 * Replace "img" with the result of applying the binary patch.3122 * The binary patch data itself in patch->fragment is still kept3123 * but the preimage prepared by the caller in "img" is freed here3124 * or in the helper function apply_binary_fragment() this calls.3125 */3126static intapply_binary(struct apply_state *state,3127struct image *img,3128struct patch *patch)3129{3130const char*name = patch->old_name ? patch->old_name : patch->new_name;3131struct object_id oid;31323133/*3134 * For safety, we require patch index line to contain3135 * full 40-byte textual SHA1 for old and new, at least for now.3136 */3137if(strlen(patch->old_sha1_prefix) !=40||3138strlen(patch->new_sha1_prefix) !=40||3139get_oid_hex(patch->old_sha1_prefix, &oid) ||3140get_oid_hex(patch->new_sha1_prefix, &oid))3141returnerror(_("cannot apply binary patch to '%s' "3142"without full index line"), name);31433144if(patch->old_name) {3145/*3146 * See if the old one matches what the patch3147 * applies to.3148 */3149hash_sha1_file(img->buf, img->len, blob_type, oid.hash);3150if(strcmp(oid_to_hex(&oid), patch->old_sha1_prefix))3151returnerror(_("the patch applies to '%s' (%s), "3152"which does not match the "3153"current contents."),3154 name,oid_to_hex(&oid));3155}3156else{3157/* Otherwise, the old one must be empty. */3158if(img->len)3159returnerror(_("the patch applies to an empty "3160"'%s' but it is not empty"), name);3161}31623163get_oid_hex(patch->new_sha1_prefix, &oid);3164if(is_null_oid(&oid)) {3165clear_image(img);3166return0;/* deletion patch */3167}31683169if(has_sha1_file(oid.hash)) {3170/* We already have the postimage */3171enum object_type type;3172unsigned long size;3173char*result;31743175 result =read_sha1_file(oid.hash, &type, &size);3176if(!result)3177returnerror(_("the necessary postimage%sfor "3178"'%s' cannot be read"),3179 patch->new_sha1_prefix, name);3180clear_image(img);3181 img->buf = result;3182 img->len = size;3183}else{3184/*3185 * We have verified buf matches the preimage;3186 * apply the patch data to it, which is stored3187 * in the patch->fragments->{patch,size}.3188 */3189if(apply_binary_fragment(state, img, patch))3190returnerror(_("binary patch does not apply to '%s'"),3191 name);31923193/* verify that the result matches */3194hash_sha1_file(img->buf, img->len, blob_type, oid.hash);3195if(strcmp(oid_to_hex(&oid), patch->new_sha1_prefix))3196returnerror(_("binary patch to '%s' creates incorrect result (expecting%s, got%s)"),3197 name, patch->new_sha1_prefix,oid_to_hex(&oid));3198}31993200return0;3201}32023203static intapply_fragments(struct apply_state *state,struct image *img,struct patch *patch)3204{3205struct fragment *frag = patch->fragments;3206const char*name = patch->old_name ? patch->old_name : patch->new_name;3207unsigned ws_rule = patch->ws_rule;3208unsigned inaccurate_eof = patch->inaccurate_eof;3209int nth =0;32103211if(patch->is_binary)3212returnapply_binary(state, img, patch);32133214while(frag) {3215 nth++;3216if(apply_one_fragment(state, img, frag, inaccurate_eof, ws_rule, nth)) {3217error(_("patch failed:%s:%ld"), name, frag->oldpos);3218if(!state->apply_with_reject)3219return-1;3220 frag->rejected =1;3221}3222 frag = frag->next;3223}3224return0;3225}32263227static intread_blob_object(struct strbuf *buf,const struct object_id *oid,unsigned mode)3228{3229if(S_ISGITLINK(mode)) {3230strbuf_grow(buf,100);3231strbuf_addf(buf,"Subproject commit%s\n",oid_to_hex(oid));3232}else{3233enum object_type type;3234unsigned long sz;3235char*result;32363237 result =read_sha1_file(oid->hash, &type, &sz);3238if(!result)3239return-1;3240/* XXX read_sha1_file NUL-terminates */3241strbuf_attach(buf, result, sz, sz +1);3242}3243return0;3244}32453246static intread_file_or_gitlink(const struct cache_entry *ce,struct strbuf *buf)3247{3248if(!ce)3249return0;3250returnread_blob_object(buf, &ce->oid, ce->ce_mode);3251}32523253static struct patch *in_fn_table(struct apply_state *state,const char*name)3254{3255struct string_list_item *item;32563257if(name == NULL)3258return NULL;32593260 item =string_list_lookup(&state->fn_table, name);3261if(item != NULL)3262return(struct patch *)item->util;32633264return NULL;3265}32663267/*3268 * item->util in the filename table records the status of the path.3269 * Usually it points at a patch (whose result records the contents3270 * of it after applying it), but it could be PATH_WAS_DELETED for a3271 * path that a previously applied patch has already removed, or3272 * PATH_TO_BE_DELETED for a path that a later patch would remove.3273 *3274 * The latter is needed to deal with a case where two paths A and B3275 * are swapped by first renaming A to B and then renaming B to A;3276 * moving A to B should not be prevented due to presence of B as we3277 * will remove it in a later patch.3278 */3279#define PATH_TO_BE_DELETED ((struct patch *) -2)3280#define PATH_WAS_DELETED ((struct patch *) -1)32813282static intto_be_deleted(struct patch *patch)3283{3284return patch == PATH_TO_BE_DELETED;3285}32863287static intwas_deleted(struct patch *patch)3288{3289return patch == PATH_WAS_DELETED;3290}32913292static voidadd_to_fn_table(struct apply_state *state,struct patch *patch)3293{3294struct string_list_item *item;32953296/*3297 * Always add new_name unless patch is a deletion3298 * This should cover the cases for normal diffs,3299 * file creations and copies3300 */3301if(patch->new_name != NULL) {3302 item =string_list_insert(&state->fn_table, patch->new_name);3303 item->util = patch;3304}33053306/*3307 * store a failure on rename/deletion cases because3308 * later chunks shouldn't patch old names3309 */3310if((patch->new_name == NULL) || (patch->is_rename)) {3311 item =string_list_insert(&state->fn_table, patch->old_name);3312 item->util = PATH_WAS_DELETED;3313}3314}33153316static voidprepare_fn_table(struct apply_state *state,struct patch *patch)3317{3318/*3319 * store information about incoming file deletion3320 */3321while(patch) {3322if((patch->new_name == NULL) || (patch->is_rename)) {3323struct string_list_item *item;3324 item =string_list_insert(&state->fn_table, patch->old_name);3325 item->util = PATH_TO_BE_DELETED;3326}3327 patch = patch->next;3328}3329}33303331static intcheckout_target(struct index_state *istate,3332struct cache_entry *ce,struct stat *st)3333{3334struct checkout costate = CHECKOUT_INIT;33353336 costate.refresh_cache =1;3337 costate.istate = istate;3338if(checkout_entry(ce, &costate, NULL) ||lstat(ce->name, st))3339returnerror(_("cannot checkout%s"), ce->name);3340return0;3341}33423343static struct patch *previous_patch(struct apply_state *state,3344struct patch *patch,3345int*gone)3346{3347struct patch *previous;33483349*gone =0;3350if(patch->is_copy || patch->is_rename)3351return NULL;/* "git" patches do not depend on the order */33523353 previous =in_fn_table(state, patch->old_name);3354if(!previous)3355return NULL;33563357if(to_be_deleted(previous))3358return NULL;/* the deletion hasn't happened yet */33593360if(was_deleted(previous))3361*gone =1;33623363return previous;3364}33653366static intverify_index_match(const struct cache_entry *ce,struct stat *st)3367{3368if(S_ISGITLINK(ce->ce_mode)) {3369if(!S_ISDIR(st->st_mode))3370return-1;3371return0;3372}3373returnce_match_stat(ce, st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);3374}33753376#define SUBMODULE_PATCH_WITHOUT_INDEX 133773378static intload_patch_target(struct apply_state *state,3379struct strbuf *buf,3380const struct cache_entry *ce,3381struct stat *st,3382const char*name,3383unsigned expected_mode)3384{3385if(state->cached || state->check_index) {3386if(read_file_or_gitlink(ce, buf))3387returnerror(_("failed to read%s"), name);3388}else if(name) {3389if(S_ISGITLINK(expected_mode)) {3390if(ce)3391returnread_file_or_gitlink(ce, buf);3392else3393return SUBMODULE_PATCH_WITHOUT_INDEX;3394}else if(has_symlink_leading_path(name,strlen(name))) {3395returnerror(_("reading from '%s' beyond a symbolic link"), name);3396}else{3397if(read_old_data(st, name, buf))3398returnerror(_("failed to read%s"), name);3399}3400}3401return0;3402}34033404/*3405 * We are about to apply "patch"; populate the "image" with the3406 * current version we have, from the working tree or from the index,3407 * depending on the situation e.g. --cached/--index. If we are3408 * applying a non-git patch that incrementally updates the tree,3409 * we read from the result of a previous diff.3410 */3411static intload_preimage(struct apply_state *state,3412struct image *image,3413struct patch *patch,struct stat *st,3414const struct cache_entry *ce)3415{3416struct strbuf buf = STRBUF_INIT;3417size_t len;3418char*img;3419struct patch *previous;3420int status;34213422 previous =previous_patch(state, patch, &status);3423if(status)3424returnerror(_("path%shas been renamed/deleted"),3425 patch->old_name);3426if(previous) {3427/* We have a patched copy in memory; use that. */3428strbuf_add(&buf, previous->result, previous->resultsize);3429}else{3430 status =load_patch_target(state, &buf, ce, st,3431 patch->old_name, patch->old_mode);3432if(status <0)3433return status;3434else if(status == SUBMODULE_PATCH_WITHOUT_INDEX) {3435/*3436 * There is no way to apply subproject3437 * patch without looking at the index.3438 * NEEDSWORK: shouldn't this be flagged3439 * as an error???3440 */3441free_fragment_list(patch->fragments);3442 patch->fragments = NULL;3443}else if(status) {3444returnerror(_("failed to read%s"), patch->old_name);3445}3446}34473448 img =strbuf_detach(&buf, &len);3449prepare_image(image, img, len, !patch->is_binary);3450return0;3451}34523453static intthree_way_merge(struct image *image,3454char*path,3455const struct object_id *base,3456const struct object_id *ours,3457const struct object_id *theirs)3458{3459 mmfile_t base_file, our_file, their_file;3460 mmbuffer_t result = { NULL };3461int status;34623463read_mmblob(&base_file, base);3464read_mmblob(&our_file, ours);3465read_mmblob(&their_file, theirs);3466 status =ll_merge(&result, path,3467&base_file,"base",3468&our_file,"ours",3469&their_file,"theirs", NULL);3470free(base_file.ptr);3471free(our_file.ptr);3472free(their_file.ptr);3473if(status <0|| !result.ptr) {3474free(result.ptr);3475return-1;3476}3477clear_image(image);3478 image->buf = result.ptr;3479 image->len = result.size;34803481return status;3482}34833484/*3485 * When directly falling back to add/add three-way merge, we read from3486 * the current contents of the new_name. In no cases other than that3487 * this function will be called.3488 */3489static intload_current(struct apply_state *state,3490struct image *image,3491struct patch *patch)3492{3493struct strbuf buf = STRBUF_INIT;3494int status, pos;3495size_t len;3496char*img;3497struct stat st;3498struct cache_entry *ce;3499char*name = patch->new_name;3500unsigned mode = patch->new_mode;35013502if(!patch->is_new)3503die("BUG: patch to%sis not a creation", patch->old_name);35043505 pos =cache_name_pos(name,strlen(name));3506if(pos <0)3507returnerror(_("%s: does not exist in index"), name);3508 ce = active_cache[pos];3509if(lstat(name, &st)) {3510if(errno != ENOENT)3511returnerror_errno("%s", name);3512if(checkout_target(&the_index, ce, &st))3513return-1;3514}3515if(verify_index_match(ce, &st))3516returnerror(_("%s: does not match index"), name);35173518 status =load_patch_target(state, &buf, ce, &st, name, mode);3519if(status <0)3520return status;3521else if(status)3522return-1;3523 img =strbuf_detach(&buf, &len);3524prepare_image(image, img, len, !patch->is_binary);3525return0;3526}35273528static inttry_threeway(struct apply_state *state,3529struct image *image,3530struct patch *patch,3531struct stat *st,3532const struct cache_entry *ce)3533{3534struct object_id pre_oid, post_oid, our_oid;3535struct strbuf buf = STRBUF_INIT;3536size_t len;3537int status;3538char*img;3539struct image tmp_image;35403541/* No point falling back to 3-way merge in these cases */3542if(patch->is_delete ||3543S_ISGITLINK(patch->old_mode) ||S_ISGITLINK(patch->new_mode))3544return-1;35453546/* Preimage the patch was prepared for */3547if(patch->is_new)3548write_sha1_file("",0, blob_type, pre_oid.hash);3549else if(get_oid(patch->old_sha1_prefix, &pre_oid) ||3550read_blob_object(&buf, &pre_oid, patch->old_mode))3551returnerror(_("repository lacks the necessary blob to fall back on 3-way merge."));35523553if(state->apply_verbosity > verbosity_silent)3554fprintf(stderr,_("Falling back to three-way merge...\n"));35553556 img =strbuf_detach(&buf, &len);3557prepare_image(&tmp_image, img, len,1);3558/* Apply the patch to get the post image */3559if(apply_fragments(state, &tmp_image, patch) <0) {3560clear_image(&tmp_image);3561return-1;3562}3563/* post_oid is theirs */3564write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, post_oid.hash);3565clear_image(&tmp_image);35663567/* our_oid is ours */3568if(patch->is_new) {3569if(load_current(state, &tmp_image, patch))3570returnerror(_("cannot read the current contents of '%s'"),3571 patch->new_name);3572}else{3573if(load_preimage(state, &tmp_image, patch, st, ce))3574returnerror(_("cannot read the current contents of '%s'"),3575 patch->old_name);3576}3577write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, our_oid.hash);3578clear_image(&tmp_image);35793580/* in-core three-way merge between post and our using pre as base */3581 status =three_way_merge(image, patch->new_name,3582&pre_oid, &our_oid, &post_oid);3583if(status <0) {3584if(state->apply_verbosity > verbosity_silent)3585fprintf(stderr,3586_("Failed to fall back on three-way merge...\n"));3587return status;3588}35893590if(status) {3591 patch->conflicted_threeway =1;3592if(patch->is_new)3593oidclr(&patch->threeway_stage[0]);3594else3595oidcpy(&patch->threeway_stage[0], &pre_oid);3596oidcpy(&patch->threeway_stage[1], &our_oid);3597oidcpy(&patch->threeway_stage[2], &post_oid);3598if(state->apply_verbosity > verbosity_silent)3599fprintf(stderr,3600_("Applied patch to '%s' with conflicts.\n"),3601 patch->new_name);3602}else{3603if(state->apply_verbosity > verbosity_silent)3604fprintf(stderr,3605_("Applied patch to '%s' cleanly.\n"),3606 patch->new_name);3607}3608return0;3609}36103611static intapply_data(struct apply_state *state,struct patch *patch,3612struct stat *st,const struct cache_entry *ce)3613{3614struct image image;36153616if(load_preimage(state, &image, patch, st, ce) <0)3617return-1;36183619if(patch->direct_to_threeway ||3620apply_fragments(state, &image, patch) <0) {3621/* Note: with --reject, apply_fragments() returns 0 */3622if(!state->threeway ||try_threeway(state, &image, patch, st, ce) <0)3623return-1;3624}3625 patch->result = image.buf;3626 patch->resultsize = image.len;3627add_to_fn_table(state, patch);3628free(image.line_allocated);36293630if(0< patch->is_delete && patch->resultsize)3631returnerror(_("removal patch leaves file contents"));36323633return0;3634}36353636/*3637 * If "patch" that we are looking at modifies or deletes what we have,3638 * we would want it not to lose any local modification we have, either3639 * in the working tree or in the index.3640 *3641 * This also decides if a non-git patch is a creation patch or a3642 * modification to an existing empty file. We do not check the state3643 * of the current tree for a creation patch in this function; the caller3644 * check_patch() separately makes sure (and errors out otherwise) that3645 * the path the patch creates does not exist in the current tree.3646 */3647static intcheck_preimage(struct apply_state *state,3648struct patch *patch,3649struct cache_entry **ce,3650struct stat *st)3651{3652const char*old_name = patch->old_name;3653struct patch *previous = NULL;3654int stat_ret =0, status;3655unsigned st_mode =0;36563657if(!old_name)3658return0;36593660assert(patch->is_new <=0);3661 previous =previous_patch(state, patch, &status);36623663if(status)3664returnerror(_("path%shas been renamed/deleted"), old_name);3665if(previous) {3666 st_mode = previous->new_mode;3667}else if(!state->cached) {3668 stat_ret =lstat(old_name, st);3669if(stat_ret && errno != ENOENT)3670returnerror_errno("%s", old_name);3671}36723673if(state->check_index && !previous) {3674int pos =cache_name_pos(old_name,strlen(old_name));3675if(pos <0) {3676if(patch->is_new <0)3677goto is_new;3678returnerror(_("%s: does not exist in index"), old_name);3679}3680*ce = active_cache[pos];3681if(stat_ret <0) {3682if(checkout_target(&the_index, *ce, st))3683return-1;3684}3685if(!state->cached &&verify_index_match(*ce, st))3686returnerror(_("%s: does not match index"), old_name);3687if(state->cached)3688 st_mode = (*ce)->ce_mode;3689}else if(stat_ret <0) {3690if(patch->is_new <0)3691goto is_new;3692returnerror_errno("%s", old_name);3693}36943695if(!state->cached && !previous)3696 st_mode =ce_mode_from_stat(*ce, st->st_mode);36973698if(patch->is_new <0)3699 patch->is_new =0;3700if(!patch->old_mode)3701 patch->old_mode = st_mode;3702if((st_mode ^ patch->old_mode) & S_IFMT)3703returnerror(_("%s: wrong type"), old_name);3704if(st_mode != patch->old_mode)3705warning(_("%shas type%o, expected%o"),3706 old_name, st_mode, patch->old_mode);3707if(!patch->new_mode && !patch->is_delete)3708 patch->new_mode = st_mode;3709return0;37103711 is_new:3712 patch->is_new =1;3713 patch->is_delete =0;3714FREE_AND_NULL(patch->old_name);3715return0;3716}371737183719#define EXISTS_IN_INDEX 13720#define EXISTS_IN_WORKTREE 237213722static intcheck_to_create(struct apply_state *state,3723const char*new_name,3724int ok_if_exists)3725{3726struct stat nst;37273728if(state->check_index &&3729cache_name_pos(new_name,strlen(new_name)) >=0&&3730!ok_if_exists)3731return EXISTS_IN_INDEX;3732if(state->cached)3733return0;37343735if(!lstat(new_name, &nst)) {3736if(S_ISDIR(nst.st_mode) || ok_if_exists)3737return0;3738/*3739 * A leading component of new_name might be a symlink3740 * that is going to be removed with this patch, but3741 * still pointing at somewhere that has the path.3742 * In such a case, path "new_name" does not exist as3743 * far as git is concerned.3744 */3745if(has_symlink_leading_path(new_name,strlen(new_name)))3746return0;37473748return EXISTS_IN_WORKTREE;3749}else if(!is_missing_file_error(errno)) {3750returnerror_errno("%s", new_name);3751}3752return0;3753}37543755static uintptr_tregister_symlink_changes(struct apply_state *state,3756const char*path,3757uintptr_t what)3758{3759struct string_list_item *ent;37603761 ent =string_list_lookup(&state->symlink_changes, path);3762if(!ent) {3763 ent =string_list_insert(&state->symlink_changes, path);3764 ent->util = (void*)0;3765}3766 ent->util = (void*)(what | ((uintptr_t)ent->util));3767return(uintptr_t)ent->util;3768}37693770static uintptr_tcheck_symlink_changes(struct apply_state *state,const char*path)3771{3772struct string_list_item *ent;37733774 ent =string_list_lookup(&state->symlink_changes, path);3775if(!ent)3776return0;3777return(uintptr_t)ent->util;3778}37793780static voidprepare_symlink_changes(struct apply_state *state,struct patch *patch)3781{3782for( ; patch; patch = patch->next) {3783if((patch->old_name &&S_ISLNK(patch->old_mode)) &&3784(patch->is_rename || patch->is_delete))3785/* the symlink at patch->old_name is removed */3786register_symlink_changes(state, patch->old_name, APPLY_SYMLINK_GOES_AWAY);37873788if(patch->new_name &&S_ISLNK(patch->new_mode))3789/* the symlink at patch->new_name is created or remains */3790register_symlink_changes(state, patch->new_name, APPLY_SYMLINK_IN_RESULT);3791}3792}37933794static intpath_is_beyond_symlink_1(struct apply_state *state,struct strbuf *name)3795{3796do{3797unsigned int change;37983799while(--name->len && name->buf[name->len] !='/')3800;/* scan backwards */3801if(!name->len)3802break;3803 name->buf[name->len] ='\0';3804 change =check_symlink_changes(state, name->buf);3805if(change & APPLY_SYMLINK_IN_RESULT)3806return1;3807if(change & APPLY_SYMLINK_GOES_AWAY)3808/*3809 * This cannot be "return 0", because we may3810 * see a new one created at a higher level.3811 */3812continue;38133814/* otherwise, check the preimage */3815if(state->check_index) {3816struct cache_entry *ce;38173818 ce =cache_file_exists(name->buf, name->len, ignore_case);3819if(ce &&S_ISLNK(ce->ce_mode))3820return1;3821}else{3822struct stat st;3823if(!lstat(name->buf, &st) &&S_ISLNK(st.st_mode))3824return1;3825}3826}while(1);3827return0;3828}38293830static intpath_is_beyond_symlink(struct apply_state *state,const char*name_)3831{3832int ret;3833struct strbuf name = STRBUF_INIT;38343835assert(*name_ !='\0');3836strbuf_addstr(&name, name_);3837 ret =path_is_beyond_symlink_1(state, &name);3838strbuf_release(&name);38393840return ret;3841}38423843static intcheck_unsafe_path(struct patch *patch)3844{3845const char*old_name = NULL;3846const char*new_name = NULL;3847if(patch->is_delete)3848 old_name = patch->old_name;3849else if(!patch->is_new && !patch->is_copy)3850 old_name = patch->old_name;3851if(!patch->is_delete)3852 new_name = patch->new_name;38533854if(old_name && !verify_path(old_name))3855returnerror(_("invalid path '%s'"), old_name);3856if(new_name && !verify_path(new_name))3857returnerror(_("invalid path '%s'"), new_name);3858return0;3859}38603861/*3862 * Check and apply the patch in-core; leave the result in patch->result3863 * for the caller to write it out to the final destination.3864 */3865static intcheck_patch(struct apply_state *state,struct patch *patch)3866{3867struct stat st;3868const char*old_name = patch->old_name;3869const char*new_name = patch->new_name;3870const char*name = old_name ? old_name : new_name;3871struct cache_entry *ce = NULL;3872struct patch *tpatch;3873int ok_if_exists;3874int status;38753876 patch->rejected =1;/* we will drop this after we succeed */38773878 status =check_preimage(state, patch, &ce, &st);3879if(status)3880return status;3881 old_name = patch->old_name;38823883/*3884 * A type-change diff is always split into a patch to delete3885 * old, immediately followed by a patch to create new (see3886 * diff.c::run_diff()); in such a case it is Ok that the entry3887 * to be deleted by the previous patch is still in the working3888 * tree and in the index.3889 *3890 * A patch to swap-rename between A and B would first rename A3891 * to B and then rename B to A. While applying the first one,3892 * the presence of B should not stop A from getting renamed to3893 * B; ask to_be_deleted() about the later rename. Removal of3894 * B and rename from A to B is handled the same way by asking3895 * was_deleted().3896 */3897if((tpatch =in_fn_table(state, new_name)) &&3898(was_deleted(tpatch) ||to_be_deleted(tpatch)))3899 ok_if_exists =1;3900else3901 ok_if_exists =0;39023903if(new_name &&3904((0< patch->is_new) || patch->is_rename || patch->is_copy)) {3905int err =check_to_create(state, new_name, ok_if_exists);39063907if(err && state->threeway) {3908 patch->direct_to_threeway =1;3909}else switch(err) {3910case0:3911break;/* happy */3912case EXISTS_IN_INDEX:3913returnerror(_("%s: already exists in index"), new_name);3914break;3915case EXISTS_IN_WORKTREE:3916returnerror(_("%s: already exists in working directory"),3917 new_name);3918default:3919return err;3920}39213922if(!patch->new_mode) {3923if(0< patch->is_new)3924 patch->new_mode = S_IFREG |0644;3925else3926 patch->new_mode = patch->old_mode;3927}3928}39293930if(new_name && old_name) {3931int same = !strcmp(old_name, new_name);3932if(!patch->new_mode)3933 patch->new_mode = patch->old_mode;3934if((patch->old_mode ^ patch->new_mode) & S_IFMT) {3935if(same)3936returnerror(_("new mode (%o) of%sdoes not "3937"match old mode (%o)"),3938 patch->new_mode, new_name,3939 patch->old_mode);3940else3941returnerror(_("new mode (%o) of%sdoes not "3942"match old mode (%o) of%s"),3943 patch->new_mode, new_name,3944 patch->old_mode, old_name);3945}3946}39473948if(!state->unsafe_paths &&check_unsafe_path(patch))3949return-128;39503951/*3952 * An attempt to read from or delete a path that is beyond a3953 * symbolic link will be prevented by load_patch_target() that3954 * is called at the beginning of apply_data() so we do not3955 * have to worry about a patch marked with "is_delete" bit3956 * here. We however need to make sure that the patch result3957 * is not deposited to a path that is beyond a symbolic link3958 * here.3959 */3960if(!patch->is_delete &&path_is_beyond_symlink(state, patch->new_name))3961returnerror(_("affected file '%s' is beyond a symbolic link"),3962 patch->new_name);39633964if(apply_data(state, patch, &st, ce) <0)3965returnerror(_("%s: patch does not apply"), name);3966 patch->rejected =0;3967return0;3968}39693970static intcheck_patch_list(struct apply_state *state,struct patch *patch)3971{3972int err =0;39733974prepare_symlink_changes(state, patch);3975prepare_fn_table(state, patch);3976while(patch) {3977int res;3978if(state->apply_verbosity > verbosity_normal)3979say_patch_name(stderr,3980_("Checking patch%s..."), patch);3981 res =check_patch(state, patch);3982if(res == -128)3983return-128;3984 err |= res;3985 patch = patch->next;3986}3987return err;3988}39893990static intread_apply_cache(struct apply_state *state)3991{3992if(state->index_file)3993returnread_cache_from(state->index_file);3994else3995returnread_cache();3996}39973998/* This function tries to read the object name from the current index */3999static intget_current_oid(struct apply_state *state,const char*path,4000struct object_id *oid)4001{4002int pos;40034004if(read_apply_cache(state) <0)4005return-1;4006 pos =cache_name_pos(path,strlen(path));4007if(pos <0)4008return-1;4009oidcpy(oid, &active_cache[pos]->oid);4010return0;4011}40124013static intpreimage_oid_in_gitlink_patch(struct patch *p,struct object_id *oid)4014{4015/*4016 * A usable gitlink patch has only one fragment (hunk) that looks like:4017 * @@ -1 +1 @@4018 * -Subproject commit <old sha1>4019 * +Subproject commit <new sha1>4020 * or4021 * @@ -1 +0,0 @@4022 * -Subproject commit <old sha1>4023 * for a removal patch.4024 */4025struct fragment *hunk = p->fragments;4026static const char heading[] ="-Subproject commit ";4027char*preimage;40284029if(/* does the patch have only one hunk? */4030 hunk && !hunk->next &&4031/* is its preimage one line? */4032 hunk->oldpos ==1&& hunk->oldlines ==1&&4033/* does preimage begin with the heading? */4034(preimage =memchr(hunk->patch,'\n', hunk->size)) != NULL &&4035starts_with(++preimage, heading) &&4036/* does it record full SHA-1? */4037!get_oid_hex(preimage +sizeof(heading) -1, oid) &&4038 preimage[sizeof(heading) + GIT_SHA1_HEXSZ -1] =='\n'&&4039/* does the abbreviated name on the index line agree with it? */4040starts_with(preimage +sizeof(heading) -1, p->old_sha1_prefix))4041return0;/* it all looks fine */40424043/* we may have full object name on the index line */4044returnget_oid_hex(p->old_sha1_prefix, oid);4045}40464047/* Build an index that contains the just the files needed for a 3way merge */4048static intbuild_fake_ancestor(struct apply_state *state,struct patch *list)4049{4050struct patch *patch;4051struct index_state result = { NULL };4052static struct lock_file lock;4053int res;40544055/* Once we start supporting the reverse patch, it may be4056 * worth showing the new sha1 prefix, but until then...4057 */4058for(patch = list; patch; patch = patch->next) {4059struct object_id oid;4060struct cache_entry *ce;4061const char*name;40624063 name = patch->old_name ? patch->old_name : patch->new_name;4064if(0< patch->is_new)4065continue;40664067if(S_ISGITLINK(patch->old_mode)) {4068if(!preimage_oid_in_gitlink_patch(patch, &oid))4069;/* ok, the textual part looks sane */4070else4071returnerror(_("sha1 information is lacking or "4072"useless for submodule%s"), name);4073}else if(!get_oid_blob(patch->old_sha1_prefix, &oid)) {4074;/* ok */4075}else if(!patch->lines_added && !patch->lines_deleted) {4076/* mode-only change: update the current */4077if(get_current_oid(state, patch->old_name, &oid))4078returnerror(_("mode change for%s, which is not "4079"in current HEAD"), name);4080}else4081returnerror(_("sha1 information is lacking or useless "4082"(%s)."), name);40834084 ce =make_cache_entry(patch->old_mode, oid.hash, name,0,0);4085if(!ce)4086returnerror(_("make_cache_entry failed for path '%s'"),4087 name);4088if(add_index_entry(&result, ce, ADD_CACHE_OK_TO_ADD)) {4089free(ce);4090returnerror(_("could not add%sto temporary index"),4091 name);4092}4093}40944095hold_lock_file_for_update(&lock, state->fake_ancestor, LOCK_DIE_ON_ERROR);4096 res =write_locked_index(&result, &lock, COMMIT_LOCK);4097discard_index(&result);40984099if(res)4100returnerror(_("could not write temporary index to%s"),4101 state->fake_ancestor);41024103return0;4104}41054106static voidstat_patch_list(struct apply_state *state,struct patch *patch)4107{4108int files, adds, dels;41094110for(files = adds = dels =0; patch ; patch = patch->next) {4111 files++;4112 adds += patch->lines_added;4113 dels += patch->lines_deleted;4114show_stats(state, patch);4115}41164117print_stat_summary(stdout, files, adds, dels);4118}41194120static voidnumstat_patch_list(struct apply_state *state,4121struct patch *patch)4122{4123for( ; patch; patch = patch->next) {4124const char*name;4125 name = patch->new_name ? patch->new_name : patch->old_name;4126if(patch->is_binary)4127printf("-\t-\t");4128else4129printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);4130write_name_quoted(name, stdout, state->line_termination);4131}4132}41334134static voidshow_file_mode_name(const char*newdelete,unsigned int mode,const char*name)4135{4136if(mode)4137printf("%smode%06o%s\n", newdelete, mode, name);4138else4139printf("%s %s\n", newdelete, name);4140}41414142static voidshow_mode_change(struct patch *p,int show_name)4143{4144if(p->old_mode && p->new_mode && p->old_mode != p->new_mode) {4145if(show_name)4146printf(" mode change%06o =>%06o%s\n",4147 p->old_mode, p->new_mode, p->new_name);4148else4149printf(" mode change%06o =>%06o\n",4150 p->old_mode, p->new_mode);4151}4152}41534154static voidshow_rename_copy(struct patch *p)4155{4156const char*renamecopy = p->is_rename ?"rename":"copy";4157const char*old, *new;41584159/* Find common prefix */4160 old = p->old_name;4161new= p->new_name;4162while(1) {4163const char*slash_old, *slash_new;4164 slash_old =strchr(old,'/');4165 slash_new =strchr(new,'/');4166if(!slash_old ||4167!slash_new ||4168 slash_old - old != slash_new -new||4169memcmp(old,new, slash_new -new))4170break;4171 old = slash_old +1;4172new= slash_new +1;4173}4174/* p->old_name thru old is the common prefix, and old and new4175 * through the end of names are renames4176 */4177if(old != p->old_name)4178printf("%s%.*s{%s=>%s} (%d%%)\n", renamecopy,4179(int)(old - p->old_name), p->old_name,4180 old,new, p->score);4181else4182printf("%s %s=>%s(%d%%)\n", renamecopy,4183 p->old_name, p->new_name, p->score);4184show_mode_change(p,0);4185}41864187static voidsummary_patch_list(struct patch *patch)4188{4189struct patch *p;41904191for(p = patch; p; p = p->next) {4192if(p->is_new)4193show_file_mode_name("create", p->new_mode, p->new_name);4194else if(p->is_delete)4195show_file_mode_name("delete", p->old_mode, p->old_name);4196else{4197if(p->is_rename || p->is_copy)4198show_rename_copy(p);4199else{4200if(p->score) {4201printf(" rewrite%s(%d%%)\n",4202 p->new_name, p->score);4203show_mode_change(p,0);4204}4205else4206show_mode_change(p,1);4207}4208}4209}4210}42114212static voidpatch_stats(struct apply_state *state,struct patch *patch)4213{4214int lines = patch->lines_added + patch->lines_deleted;42154216if(lines > state->max_change)4217 state->max_change = lines;4218if(patch->old_name) {4219int len =quote_c_style(patch->old_name, NULL, NULL,0);4220if(!len)4221 len =strlen(patch->old_name);4222if(len > state->max_len)4223 state->max_len = len;4224}4225if(patch->new_name) {4226int len =quote_c_style(patch->new_name, NULL, NULL,0);4227if(!len)4228 len =strlen(patch->new_name);4229if(len > state->max_len)4230 state->max_len = len;4231}4232}42334234static intremove_file(struct apply_state *state,struct patch *patch,int rmdir_empty)4235{4236if(state->update_index) {4237if(remove_file_from_cache(patch->old_name) <0)4238returnerror(_("unable to remove%sfrom index"), patch->old_name);4239}4240if(!state->cached) {4241if(!remove_or_warn(patch->old_mode, patch->old_name) && rmdir_empty) {4242remove_path(patch->old_name);4243}4244}4245return0;4246}42474248static intadd_index_file(struct apply_state *state,4249const char*path,4250unsigned mode,4251void*buf,4252unsigned long size)4253{4254struct stat st;4255struct cache_entry *ce;4256int namelen =strlen(path);4257unsigned ce_size =cache_entry_size(namelen);42584259if(!state->update_index)4260return0;42614262 ce =xcalloc(1, ce_size);4263memcpy(ce->name, path, namelen);4264 ce->ce_mode =create_ce_mode(mode);4265 ce->ce_flags =create_ce_flags(0);4266 ce->ce_namelen = namelen;4267if(S_ISGITLINK(mode)) {4268const char*s;42694270if(!skip_prefix(buf,"Subproject commit ", &s) ||4271get_oid_hex(s, &ce->oid)) {4272free(ce);4273returnerror(_("corrupt patch for submodule%s"), path);4274}4275}else{4276if(!state->cached) {4277if(lstat(path, &st) <0) {4278free(ce);4279returnerror_errno(_("unable to stat newly "4280"created file '%s'"),4281 path);4282}4283fill_stat_cache_info(ce, &st);4284}4285if(write_sha1_file(buf, size, blob_type, ce->oid.hash) <0) {4286free(ce);4287returnerror(_("unable to create backing store "4288"for newly created file%s"), path);4289}4290}4291if(add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) <0) {4292free(ce);4293returnerror(_("unable to add cache entry for%s"), path);4294}42954296return0;4297}42984299/*4300 * Returns:4301 * -1 if an unrecoverable error happened4302 * 0 if everything went well4303 * 1 if a recoverable error happened4304 */4305static inttry_create_file(const char*path,unsigned int mode,const char*buf,unsigned long size)4306{4307int fd, res;4308struct strbuf nbuf = STRBUF_INIT;43094310if(S_ISGITLINK(mode)) {4311struct stat st;4312if(!lstat(path, &st) &&S_ISDIR(st.st_mode))4313return0;4314return!!mkdir(path,0777);4315}43164317if(has_symlinks &&S_ISLNK(mode))4318/* Although buf:size is counted string, it also is NUL4319 * terminated.4320 */4321return!!symlink(buf, path);43224323 fd =open(path, O_CREAT | O_EXCL | O_WRONLY, (mode &0100) ?0777:0666);4324if(fd <0)4325return1;43264327if(convert_to_working_tree(path, buf, size, &nbuf)) {4328 size = nbuf.len;4329 buf = nbuf.buf;4330}43314332 res =write_in_full(fd, buf, size) <0;4333if(res)4334error_errno(_("failed to write to '%s'"), path);4335strbuf_release(&nbuf);43364337if(close(fd) <0&& !res)4338returnerror_errno(_("closing file '%s'"), path);43394340return res ? -1:0;4341}43424343/*4344 * We optimistically assume that the directories exist,4345 * which is true 99% of the time anyway. If they don't,4346 * we create them and try again.4347 *4348 * Returns:4349 * -1 on error4350 * 0 otherwise4351 */4352static intcreate_one_file(struct apply_state *state,4353char*path,4354unsigned mode,4355const char*buf,4356unsigned long size)4357{4358int res;43594360if(state->cached)4361return0;43624363 res =try_create_file(path, mode, buf, size);4364if(res <0)4365return-1;4366if(!res)4367return0;43684369if(errno == ENOENT) {4370if(safe_create_leading_directories(path))4371return0;4372 res =try_create_file(path, mode, buf, size);4373if(res <0)4374return-1;4375if(!res)4376return0;4377}43784379if(errno == EEXIST || errno == EACCES) {4380/* We may be trying to create a file where a directory4381 * used to be.4382 */4383struct stat st;4384if(!lstat(path, &st) && (!S_ISDIR(st.st_mode) || !rmdir(path)))4385 errno = EEXIST;4386}43874388if(errno == EEXIST) {4389unsigned int nr =getpid();43904391for(;;) {4392char newpath[PATH_MAX];4393mksnpath(newpath,sizeof(newpath),"%s~%u", path, nr);4394 res =try_create_file(newpath, mode, buf, size);4395if(res <0)4396return-1;4397if(!res) {4398if(!rename(newpath, path))4399return0;4400unlink_or_warn(newpath);4401break;4402}4403if(errno != EEXIST)4404break;4405++nr;4406}4407}4408returnerror_errno(_("unable to write file '%s' mode%o"),4409 path, mode);4410}44114412static intadd_conflicted_stages_file(struct apply_state *state,4413struct patch *patch)4414{4415int stage, namelen;4416unsigned ce_size, mode;4417struct cache_entry *ce;44184419if(!state->update_index)4420return0;4421 namelen =strlen(patch->new_name);4422 ce_size =cache_entry_size(namelen);4423 mode = patch->new_mode ? patch->new_mode : (S_IFREG |0644);44244425remove_file_from_cache(patch->new_name);4426for(stage =1; stage <4; stage++) {4427if(is_null_oid(&patch->threeway_stage[stage -1]))4428continue;4429 ce =xcalloc(1, ce_size);4430memcpy(ce->name, patch->new_name, namelen);4431 ce->ce_mode =create_ce_mode(mode);4432 ce->ce_flags =create_ce_flags(stage);4433 ce->ce_namelen = namelen;4434oidcpy(&ce->oid, &patch->threeway_stage[stage -1]);4435if(add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) <0) {4436free(ce);4437returnerror(_("unable to add cache entry for%s"),4438 patch->new_name);4439}4440}44414442return0;4443}44444445static intcreate_file(struct apply_state *state,struct patch *patch)4446{4447char*path = patch->new_name;4448unsigned mode = patch->new_mode;4449unsigned long size = patch->resultsize;4450char*buf = patch->result;44514452if(!mode)4453 mode = S_IFREG |0644;4454if(create_one_file(state, path, mode, buf, size))4455return-1;44564457if(patch->conflicted_threeway)4458returnadd_conflicted_stages_file(state, patch);4459else4460returnadd_index_file(state, path, mode, buf, size);4461}44624463/* phase zero is to remove, phase one is to create */4464static intwrite_out_one_result(struct apply_state *state,4465struct patch *patch,4466int phase)4467{4468if(patch->is_delete >0) {4469if(phase ==0)4470returnremove_file(state, patch,1);4471return0;4472}4473if(patch->is_new >0|| patch->is_copy) {4474if(phase ==1)4475returncreate_file(state, patch);4476return0;4477}4478/*4479 * Rename or modification boils down to the same4480 * thing: remove the old, write the new4481 */4482if(phase ==0)4483returnremove_file(state, patch, patch->is_rename);4484if(phase ==1)4485returncreate_file(state, patch);4486return0;4487}44884489static intwrite_out_one_reject(struct apply_state *state,struct patch *patch)4490{4491FILE*rej;4492char namebuf[PATH_MAX];4493struct fragment *frag;4494int cnt =0;4495struct strbuf sb = STRBUF_INIT;44964497for(cnt =0, frag = patch->fragments; frag; frag = frag->next) {4498if(!frag->rejected)4499continue;4500 cnt++;4501}45024503if(!cnt) {4504if(state->apply_verbosity > verbosity_normal)4505say_patch_name(stderr,4506_("Applied patch%scleanly."), patch);4507return0;4508}45094510/* This should not happen, because a removal patch that leaves4511 * contents are marked "rejected" at the patch level.4512 */4513if(!patch->new_name)4514die(_("internal error"));45154516/* Say this even without --verbose */4517strbuf_addf(&sb,Q_("Applying patch %%swith%dreject...",4518"Applying patch %%swith%drejects...",4519 cnt),4520 cnt);4521if(state->apply_verbosity > verbosity_silent)4522say_patch_name(stderr, sb.buf, patch);4523strbuf_release(&sb);45244525 cnt =strlen(patch->new_name);4526if(ARRAY_SIZE(namebuf) <= cnt +5) {4527 cnt =ARRAY_SIZE(namebuf) -5;4528warning(_("truncating .rej filename to %.*s.rej"),4529 cnt -1, patch->new_name);4530}4531memcpy(namebuf, patch->new_name, cnt);4532memcpy(namebuf + cnt,".rej",5);45334534 rej =fopen(namebuf,"w");4535if(!rej)4536returnerror_errno(_("cannot open%s"), namebuf);45374538/* Normal git tools never deal with .rej, so do not pretend4539 * this is a git patch by saying --git or giving extended4540 * headers. While at it, maybe please "kompare" that wants4541 * the trailing TAB and some garbage at the end of line ;-).4542 */4543fprintf(rej,"diff a/%sb/%s\t(rejected hunks)\n",4544 patch->new_name, patch->new_name);4545for(cnt =1, frag = patch->fragments;4546 frag;4547 cnt++, frag = frag->next) {4548if(!frag->rejected) {4549if(state->apply_verbosity > verbosity_silent)4550fprintf_ln(stderr,_("Hunk #%dapplied cleanly."), cnt);4551continue;4552}4553if(state->apply_verbosity > verbosity_silent)4554fprintf_ln(stderr,_("Rejected hunk #%d."), cnt);4555fprintf(rej,"%.*s", frag->size, frag->patch);4556if(frag->patch[frag->size-1] !='\n')4557fputc('\n', rej);4558}4559fclose(rej);4560return-1;4561}45624563/*4564 * Returns:4565 * -1 if an error happened4566 * 0 if the patch applied cleanly4567 * 1 if the patch did not apply cleanly4568 */4569static intwrite_out_results(struct apply_state *state,struct patch *list)4570{4571int phase;4572int errs =0;4573struct patch *l;4574struct string_list cpath = STRING_LIST_INIT_DUP;45754576for(phase =0; phase <2; phase++) {4577 l = list;4578while(l) {4579if(l->rejected)4580 errs =1;4581else{4582if(write_out_one_result(state, l, phase)) {4583string_list_clear(&cpath,0);4584return-1;4585}4586if(phase ==1) {4587if(write_out_one_reject(state, l))4588 errs =1;4589if(l->conflicted_threeway) {4590string_list_append(&cpath, l->new_name);4591 errs =1;4592}4593}4594}4595 l = l->next;4596}4597}45984599if(cpath.nr) {4600struct string_list_item *item;46014602string_list_sort(&cpath);4603if(state->apply_verbosity > verbosity_silent) {4604for_each_string_list_item(item, &cpath)4605fprintf(stderr,"U%s\n", item->string);4606}4607string_list_clear(&cpath,0);46084609rerere(0);4610}46114612return errs;4613}46144615/*4616 * Try to apply a patch.4617 *4618 * Returns:4619 * -128 if a bad error happened (like patch unreadable)4620 * -1 if patch did not apply and user cannot deal with it4621 * 0 if the patch applied4622 * 1 if the patch did not apply but user might fix it4623 */4624static intapply_patch(struct apply_state *state,4625int fd,4626const char*filename,4627int options)4628{4629size_t offset;4630struct strbuf buf = STRBUF_INIT;/* owns the patch text */4631struct patch *list = NULL, **listp = &list;4632int skipped_patch =0;4633int res =0;46344635 state->patch_input_file = filename;4636if(read_patch_file(&buf, fd) <0)4637return-128;4638 offset =0;4639while(offset < buf.len) {4640struct patch *patch;4641int nr;46424643 patch =xcalloc(1,sizeof(*patch));4644 patch->inaccurate_eof = !!(options & APPLY_OPT_INACCURATE_EOF);4645 patch->recount = !!(options & APPLY_OPT_RECOUNT);4646 nr =parse_chunk(state, buf.buf + offset, buf.len - offset, patch);4647if(nr <0) {4648free_patch(patch);4649if(nr == -128) {4650 res = -128;4651goto end;4652}4653break;4654}4655if(state->apply_in_reverse)4656reverse_patches(patch);4657if(use_patch(state, patch)) {4658patch_stats(state, patch);4659*listp = patch;4660 listp = &patch->next;4661}4662else{4663if(state->apply_verbosity > verbosity_normal)4664say_patch_name(stderr,_("Skipped patch '%s'."), patch);4665free_patch(patch);4666 skipped_patch++;4667}4668 offset += nr;4669}46704671if(!list && !skipped_patch) {4672error(_("unrecognized input"));4673 res = -128;4674goto end;4675}46764677if(state->whitespace_error && (state->ws_error_action == die_on_ws_error))4678 state->apply =0;46794680 state->update_index = state->check_index && state->apply;4681if(state->update_index && state->newfd <0) {4682if(state->index_file)4683 state->newfd =hold_lock_file_for_update(state->lock_file,4684 state->index_file,4685 LOCK_DIE_ON_ERROR);4686else4687 state->newfd =hold_locked_index(state->lock_file, LOCK_DIE_ON_ERROR);4688}46894690if(state->check_index &&read_apply_cache(state) <0) {4691error(_("unable to read index file"));4692 res = -128;4693goto end;4694}46954696if(state->check || state->apply) {4697int r =check_patch_list(state, list);4698if(r == -128) {4699 res = -128;4700goto end;4701}4702if(r <0&& !state->apply_with_reject) {4703 res = -1;4704goto end;4705}4706}47074708if(state->apply) {4709int write_res =write_out_results(state, list);4710if(write_res <0) {4711 res = -128;4712goto end;4713}4714if(write_res >0) {4715/* with --3way, we still need to write the index out */4716 res = state->apply_with_reject ? -1:1;4717goto end;4718}4719}47204721if(state->fake_ancestor &&4722build_fake_ancestor(state, list)) {4723 res = -128;4724goto end;4725}47264727if(state->diffstat && state->apply_verbosity > verbosity_silent)4728stat_patch_list(state, list);47294730if(state->numstat && state->apply_verbosity > verbosity_silent)4731numstat_patch_list(state, list);47324733if(state->summary && state->apply_verbosity > verbosity_silent)4734summary_patch_list(list);47354736end:4737free_patch_list(list);4738strbuf_release(&buf);4739string_list_clear(&state->fn_table,0);4740return res;4741}47424743static intapply_option_parse_exclude(const struct option *opt,4744const char*arg,int unset)4745{4746struct apply_state *state = opt->value;4747add_name_limit(state, arg,1);4748return0;4749}47504751static intapply_option_parse_include(const struct option *opt,4752const char*arg,int unset)4753{4754struct apply_state *state = opt->value;4755add_name_limit(state, arg,0);4756 state->has_include =1;4757return0;4758}47594760static intapply_option_parse_p(const struct option *opt,4761const char*arg,4762int unset)4763{4764struct apply_state *state = opt->value;4765 state->p_value =atoi(arg);4766 state->p_value_known =1;4767return0;4768}47694770static intapply_option_parse_space_change(const struct option *opt,4771const char*arg,int unset)4772{4773struct apply_state *state = opt->value;4774if(unset)4775 state->ws_ignore_action = ignore_ws_none;4776else4777 state->ws_ignore_action = ignore_ws_change;4778return0;4779}47804781static intapply_option_parse_whitespace(const struct option *opt,4782const char*arg,int unset)4783{4784struct apply_state *state = opt->value;4785 state->whitespace_option = arg;4786if(parse_whitespace_option(state, arg))4787exit(1);4788return0;4789}47904791static intapply_option_parse_directory(const struct option *opt,4792const char*arg,int unset)4793{4794struct apply_state *state = opt->value;4795strbuf_reset(&state->root);4796strbuf_addstr(&state->root, arg);4797strbuf_complete(&state->root,'/');4798return0;4799}48004801intapply_all_patches(struct apply_state *state,4802int argc,4803const char**argv,4804int options)4805{4806int i;4807int res;4808int errs =0;4809int read_stdin =1;48104811for(i =0; i < argc; i++) {4812const char*arg = argv[i];4813char*to_free = NULL;4814int fd;48154816if(!strcmp(arg,"-")) {4817 res =apply_patch(state,0,"<stdin>", options);4818if(res <0)4819goto end;4820 errs |= res;4821 read_stdin =0;4822continue;4823}else4824 arg = to_free =prefix_filename(state->prefix, arg);48254826 fd =open(arg, O_RDONLY);4827if(fd <0) {4828error(_("can't open patch '%s':%s"), arg,strerror(errno));4829 res = -128;4830free(to_free);4831goto end;4832}4833 read_stdin =0;4834set_default_whitespace_mode(state);4835 res =apply_patch(state, fd, arg, options);4836close(fd);4837free(to_free);4838if(res <0)4839goto end;4840 errs |= res;4841}4842set_default_whitespace_mode(state);4843if(read_stdin) {4844 res =apply_patch(state,0,"<stdin>", options);4845if(res <0)4846goto end;4847 errs |= res;4848}48494850if(state->whitespace_error) {4851if(state->squelch_whitespace_errors &&4852 state->squelch_whitespace_errors < state->whitespace_error) {4853int squelched =4854 state->whitespace_error - state->squelch_whitespace_errors;4855warning(Q_("squelched%dwhitespace error",4856"squelched%dwhitespace errors",4857 squelched),4858 squelched);4859}4860if(state->ws_error_action == die_on_ws_error) {4861error(Q_("%dline adds whitespace errors.",4862"%dlines add whitespace errors.",4863 state->whitespace_error),4864 state->whitespace_error);4865 res = -128;4866goto end;4867}4868if(state->applied_after_fixing_ws && state->apply)4869warning(Q_("%dline applied after"4870" fixing whitespace errors.",4871"%dlines applied after"4872" fixing whitespace errors.",4873 state->applied_after_fixing_ws),4874 state->applied_after_fixing_ws);4875else if(state->whitespace_error)4876warning(Q_("%dline adds whitespace errors.",4877"%dlines add whitespace errors.",4878 state->whitespace_error),4879 state->whitespace_error);4880}48814882if(state->update_index) {4883 res =write_locked_index(&the_index, state->lock_file, COMMIT_LOCK);4884if(res) {4885error(_("Unable to write new index file"));4886 res = -128;4887goto end;4888}4889 state->newfd = -1;4890}48914892 res = !!errs;48934894end:4895if(state->newfd >=0) {4896rollback_lock_file(state->lock_file);4897 state->newfd = -1;4898}48994900if(state->apply_verbosity <= verbosity_silent) {4901set_error_routine(state->saved_error_routine);4902set_warn_routine(state->saved_warn_routine);4903}49044905if(res > -1)4906return res;4907return(res == -1?1:128);4908}49094910intapply_parse_options(int argc,const char**argv,4911struct apply_state *state,4912int*force_apply,int*options,4913const char*const*apply_usage)4914{4915struct option builtin_apply_options[] = {4916{ OPTION_CALLBACK,0,"exclude", state,N_("path"),4917N_("don't apply changes matching the given path"),49180, apply_option_parse_exclude },4919{ OPTION_CALLBACK,0,"include", state,N_("path"),4920N_("apply changes matching the given path"),49210, apply_option_parse_include },4922{ OPTION_CALLBACK,'p', NULL, state,N_("num"),4923N_("remove <num> leading slashes from traditional diff paths"),49240, apply_option_parse_p },4925OPT_BOOL(0,"no-add", &state->no_add,4926N_("ignore additions made by the patch")),4927OPT_BOOL(0,"stat", &state->diffstat,4928N_("instead of applying the patch, output diffstat for the input")),4929OPT_NOOP_NOARG(0,"allow-binary-replacement"),4930OPT_NOOP_NOARG(0,"binary"),4931OPT_BOOL(0,"numstat", &state->numstat,4932N_("show number of added and deleted lines in decimal notation")),4933OPT_BOOL(0,"summary", &state->summary,4934N_("instead of applying the patch, output a summary for the input")),4935OPT_BOOL(0,"check", &state->check,4936N_("instead of applying the patch, see if the patch is applicable")),4937OPT_BOOL(0,"index", &state->check_index,4938N_("make sure the patch is applicable to the current index")),4939OPT_BOOL(0,"cached", &state->cached,4940N_("apply a patch without touching the working tree")),4941OPT_BOOL(0,"unsafe-paths", &state->unsafe_paths,4942N_("accept a patch that touches outside the working area")),4943OPT_BOOL(0,"apply", force_apply,4944N_("also apply the patch (use with --stat/--summary/--check)")),4945OPT_BOOL('3',"3way", &state->threeway,4946N_("attempt three-way merge if a patch does not apply")),4947OPT_FILENAME(0,"build-fake-ancestor", &state->fake_ancestor,4948N_("build a temporary index based on embedded index information")),4949/* Think twice before adding "--nul" synonym to this */4950OPT_SET_INT('z', NULL, &state->line_termination,4951N_("paths are separated with NUL character"),'\0'),4952OPT_INTEGER('C', NULL, &state->p_context,4953N_("ensure at least <n> lines of context match")),4954{ OPTION_CALLBACK,0,"whitespace", state,N_("action"),4955N_("detect new or modified lines that have whitespace errors"),49560, apply_option_parse_whitespace },4957{ OPTION_CALLBACK,0,"ignore-space-change", state, NULL,4958N_("ignore changes in whitespace when finding context"),4959 PARSE_OPT_NOARG, apply_option_parse_space_change },4960{ OPTION_CALLBACK,0,"ignore-whitespace", state, NULL,4961N_("ignore changes in whitespace when finding context"),4962 PARSE_OPT_NOARG, apply_option_parse_space_change },4963OPT_BOOL('R',"reverse", &state->apply_in_reverse,4964N_("apply the patch in reverse")),4965OPT_BOOL(0,"unidiff-zero", &state->unidiff_zero,4966N_("don't expect at least one line of context")),4967OPT_BOOL(0,"reject", &state->apply_with_reject,4968N_("leave the rejected hunks in corresponding *.rej files")),4969OPT_BOOL(0,"allow-overlap", &state->allow_overlap,4970N_("allow overlapping hunks")),4971OPT__VERBOSE(&state->apply_verbosity,N_("be verbose")),4972OPT_BIT(0,"inaccurate-eof", options,4973N_("tolerate incorrectly detected missing new-line at the end of file"),4974 APPLY_OPT_INACCURATE_EOF),4975OPT_BIT(0,"recount", options,4976N_("do not trust the line counts in the hunk headers"),4977 APPLY_OPT_RECOUNT),4978{ OPTION_CALLBACK,0,"directory", state,N_("root"),4979N_("prepend <root> to all filenames"),49800, apply_option_parse_directory },4981OPT_END()4982};49834984returnparse_options(argc, argv, state->prefix, builtin_apply_options, apply_usage,0);4985}