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"blob.h" 12#include"delta.h" 13#include"diff.h" 14#include"dir.h" 15#include"xdiff-interface.h" 16#include"ll-merge.h" 17#include"lockfile.h" 18#include"parse-options.h" 19#include"quote.h" 20#include"rerere.h" 21#include"apply.h" 22 23static voidgit_apply_config(void) 24{ 25git_config_get_string_const("apply.whitespace", &apply_default_whitespace); 26git_config_get_string_const("apply.ignorewhitespace", &apply_default_ignorewhitespace); 27git_config(git_default_config, NULL); 28} 29 30static intparse_whitespace_option(struct apply_state *state,const char*option) 31{ 32if(!option) { 33 state->ws_error_action = warn_on_ws_error; 34return0; 35} 36if(!strcmp(option,"warn")) { 37 state->ws_error_action = warn_on_ws_error; 38return0; 39} 40if(!strcmp(option,"nowarn")) { 41 state->ws_error_action = nowarn_ws_error; 42return0; 43} 44if(!strcmp(option,"error")) { 45 state->ws_error_action = die_on_ws_error; 46return0; 47} 48if(!strcmp(option,"error-all")) { 49 state->ws_error_action = die_on_ws_error; 50 state->squelch_whitespace_errors =0; 51return0; 52} 53if(!strcmp(option,"strip") || !strcmp(option,"fix")) { 54 state->ws_error_action = correct_ws_error; 55return0; 56} 57returnerror(_("unrecognized whitespace option '%s'"), option); 58} 59 60static intparse_ignorewhitespace_option(struct apply_state *state, 61const char*option) 62{ 63if(!option || !strcmp(option,"no") || 64!strcmp(option,"false") || !strcmp(option,"never") || 65!strcmp(option,"none")) { 66 state->ws_ignore_action = ignore_ws_none; 67return0; 68} 69if(!strcmp(option,"change")) { 70 state->ws_ignore_action = ignore_ws_change; 71return0; 72} 73returnerror(_("unrecognized whitespace ignore option '%s'"), option); 74} 75 76intinit_apply_state(struct apply_state *state, 77const char*prefix, 78struct lock_file *lock_file) 79{ 80memset(state,0,sizeof(*state)); 81 state->prefix = prefix; 82 state->prefix_length = state->prefix ?strlen(state->prefix) :0; 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 766static intcount_slashes(const char*cp) 767{ 768int cnt =0; 769char ch; 770 771while((ch = *cp++)) 772if(ch =='/') 773 cnt++; 774return cnt; 775} 776 777/* 778 * Given the string after "--- " or "+++ ", guess the appropriate 779 * p_value for the given patch. 780 */ 781static intguess_p_value(struct apply_state *state,const char*nameline) 782{ 783char*name, *cp; 784int val = -1; 785 786if(is_dev_null(nameline)) 787return-1; 788 name =find_name_traditional(state, nameline, NULL,0); 789if(!name) 790return-1; 791 cp =strchr(name,'/'); 792if(!cp) 793 val =0; 794else if(state->prefix) { 795/* 796 * Does it begin with "a/$our-prefix" and such? Then this is 797 * very likely to apply to our directory. 798 */ 799if(!strncmp(name, state->prefix, state->prefix_length)) 800 val =count_slashes(state->prefix); 801else{ 802 cp++; 803if(!strncmp(cp, state->prefix, state->prefix_length)) 804 val =count_slashes(state->prefix) +1; 805} 806} 807free(name); 808return val; 809} 810 811/* 812 * Does the ---/+++ line have the POSIX timestamp after the last HT? 813 * GNU diff puts epoch there to signal a creation/deletion event. Is 814 * this such a timestamp? 815 */ 816static inthas_epoch_timestamp(const char*nameline) 817{ 818/* 819 * We are only interested in epoch timestamp; any non-zero 820 * fraction cannot be one, hence "(\.0+)?" in the regexp below. 821 * For the same reason, the date must be either 1969-12-31 or 822 * 1970-01-01, and the seconds part must be "00". 823 */ 824const char stamp_regexp[] = 825"^(1969-12-31|1970-01-01)" 826" " 827"[0-2][0-9]:[0-5][0-9]:00(\\.0+)?" 828" " 829"([-+][0-2][0-9]:?[0-5][0-9])\n"; 830const char*timestamp = NULL, *cp, *colon; 831static regex_t *stamp; 832 regmatch_t m[10]; 833int zoneoffset; 834int hourminute; 835int status; 836 837for(cp = nameline; *cp !='\n'; cp++) { 838if(*cp =='\t') 839 timestamp = cp +1; 840} 841if(!timestamp) 842return0; 843if(!stamp) { 844 stamp =xmalloc(sizeof(*stamp)); 845if(regcomp(stamp, stamp_regexp, REG_EXTENDED)) { 846warning(_("Cannot prepare timestamp regexp%s"), 847 stamp_regexp); 848return0; 849} 850} 851 852 status =regexec(stamp, timestamp,ARRAY_SIZE(m), m,0); 853if(status) { 854if(status != REG_NOMATCH) 855warning(_("regexec returned%dfor input:%s"), 856 status, timestamp); 857return0; 858} 859 860 zoneoffset =strtol(timestamp + m[3].rm_so +1, (char**) &colon,10); 861if(*colon ==':') 862 zoneoffset = zoneoffset *60+strtol(colon +1, NULL,10); 863else 864 zoneoffset = (zoneoffset /100) *60+ (zoneoffset %100); 865if(timestamp[m[3].rm_so] =='-') 866 zoneoffset = -zoneoffset; 867 868/* 869 * YYYY-MM-DD hh:mm:ss must be from either 1969-12-31 870 * (west of GMT) or 1970-01-01 (east of GMT) 871 */ 872if((zoneoffset <0&&memcmp(timestamp,"1969-12-31",10)) || 873(0<= zoneoffset &&memcmp(timestamp,"1970-01-01",10))) 874return0; 875 876 hourminute = (strtol(timestamp +11, NULL,10) *60+ 877strtol(timestamp +14, NULL,10) - 878 zoneoffset); 879 880return((zoneoffset <0&& hourminute ==1440) || 881(0<= zoneoffset && !hourminute)); 882} 883 884/* 885 * Get the name etc info from the ---/+++ lines of a traditional patch header 886 * 887 * FIXME! The end-of-filename heuristics are kind of screwy. For existing 888 * files, we can happily check the index for a match, but for creating a 889 * new file we should try to match whatever "patch" does. I have no idea. 890 */ 891static intparse_traditional_patch(struct apply_state *state, 892const char*first, 893const char*second, 894struct patch *patch) 895{ 896char*name; 897 898 first +=4;/* skip "--- " */ 899 second +=4;/* skip "+++ " */ 900if(!state->p_value_known) { 901int p, q; 902 p =guess_p_value(state, first); 903 q =guess_p_value(state, second); 904if(p <0) p = q; 905if(0<= p && p == q) { 906 state->p_value = p; 907 state->p_value_known =1; 908} 909} 910if(is_dev_null(first)) { 911 patch->is_new =1; 912 patch->is_delete =0; 913 name =find_name_traditional(state, second, NULL, state->p_value); 914 patch->new_name = name; 915}else if(is_dev_null(second)) { 916 patch->is_new =0; 917 patch->is_delete =1; 918 name =find_name_traditional(state, first, NULL, state->p_value); 919 patch->old_name = name; 920}else{ 921char*first_name; 922 first_name =find_name_traditional(state, first, NULL, state->p_value); 923 name =find_name_traditional(state, second, first_name, state->p_value); 924free(first_name); 925if(has_epoch_timestamp(first)) { 926 patch->is_new =1; 927 patch->is_delete =0; 928 patch->new_name = name; 929}else if(has_epoch_timestamp(second)) { 930 patch->is_new =0; 931 patch->is_delete =1; 932 patch->old_name = name; 933}else{ 934 patch->old_name = name; 935 patch->new_name =xstrdup_or_null(name); 936} 937} 938if(!name) 939returnerror(_("unable to find filename in patch at line%d"), state->linenr); 940 941return0; 942} 943 944static intgitdiff_hdrend(struct apply_state *state, 945const char*line, 946struct patch *patch) 947{ 948return1; 949} 950 951/* 952 * We're anal about diff header consistency, to make 953 * sure that we don't end up having strange ambiguous 954 * patches floating around. 955 * 956 * As a result, gitdiff_{old|new}name() will check 957 * their names against any previous information, just 958 * to make sure.. 959 */ 960#define DIFF_OLD_NAME 0 961#define DIFF_NEW_NAME 1 962 963static intgitdiff_verify_name(struct apply_state *state, 964const char*line, 965int isnull, 966char**name, 967int side) 968{ 969if(!*name && !isnull) { 970*name =find_name(state, line, NULL, state->p_value, TERM_TAB); 971return0; 972} 973 974if(*name) { 975int len =strlen(*name); 976char*another; 977if(isnull) 978returnerror(_("git apply: bad git-diff - expected /dev/null, got%son line%d"), 979*name, state->linenr); 980 another =find_name(state, line, NULL, state->p_value, TERM_TAB); 981if(!another ||memcmp(another, *name, len +1)) { 982free(another); 983returnerror((side == DIFF_NEW_NAME) ? 984_("git apply: bad git-diff - inconsistent new filename on line%d") : 985_("git apply: bad git-diff - inconsistent old filename on line%d"), state->linenr); 986} 987free(another); 988}else{ 989/* expect "/dev/null" */ 990if(memcmp("/dev/null", line,9) || line[9] !='\n') 991returnerror(_("git apply: bad git-diff - expected /dev/null on line%d"), state->linenr); 992} 993 994return0; 995} 996 997static intgitdiff_oldname(struct apply_state *state, 998const char*line, 999struct patch *patch)1000{1001returngitdiff_verify_name(state, line,1002 patch->is_new, &patch->old_name,1003 DIFF_OLD_NAME);1004}10051006static intgitdiff_newname(struct apply_state *state,1007const char*line,1008struct patch *patch)1009{1010returngitdiff_verify_name(state, line,1011 patch->is_delete, &patch->new_name,1012 DIFF_NEW_NAME);1013}10141015static intparse_mode_line(const char*line,int linenr,unsigned int*mode)1016{1017char*end;1018*mode =strtoul(line, &end,8);1019if(end == line || !isspace(*end))1020returnerror(_("invalid mode on line%d:%s"), linenr, line);1021return0;1022}10231024static intgitdiff_oldmode(struct apply_state *state,1025const char*line,1026struct patch *patch)1027{1028returnparse_mode_line(line, state->linenr, &patch->old_mode);1029}10301031static intgitdiff_newmode(struct apply_state *state,1032const char*line,1033struct patch *patch)1034{1035returnparse_mode_line(line, state->linenr, &patch->new_mode);1036}10371038static intgitdiff_delete(struct apply_state *state,1039const char*line,1040struct patch *patch)1041{1042 patch->is_delete =1;1043free(patch->old_name);1044 patch->old_name =xstrdup_or_null(patch->def_name);1045returngitdiff_oldmode(state, line, patch);1046}10471048static intgitdiff_newfile(struct apply_state *state,1049const char*line,1050struct patch *patch)1051{1052 patch->is_new =1;1053free(patch->new_name);1054 patch->new_name =xstrdup_or_null(patch->def_name);1055returngitdiff_newmode(state, line, patch);1056}10571058static intgitdiff_copysrc(struct apply_state *state,1059const char*line,1060struct patch *patch)1061{1062 patch->is_copy =1;1063free(patch->old_name);1064 patch->old_name =find_name(state, line, NULL, state->p_value ? state->p_value -1:0,0);1065return0;1066}10671068static intgitdiff_copydst(struct apply_state *state,1069const char*line,1070struct patch *patch)1071{1072 patch->is_copy =1;1073free(patch->new_name);1074 patch->new_name =find_name(state, line, NULL, state->p_value ? state->p_value -1:0,0);1075return0;1076}10771078static intgitdiff_renamesrc(struct apply_state *state,1079const char*line,1080struct patch *patch)1081{1082 patch->is_rename =1;1083free(patch->old_name);1084 patch->old_name =find_name(state, line, NULL, state->p_value ? state->p_value -1:0,0);1085return0;1086}10871088static intgitdiff_renamedst(struct apply_state *state,1089const char*line,1090struct patch *patch)1091{1092 patch->is_rename =1;1093free(patch->new_name);1094 patch->new_name =find_name(state, line, NULL, state->p_value ? state->p_value -1:0,0);1095return0;1096}10971098static intgitdiff_similarity(struct apply_state *state,1099const char*line,1100struct patch *patch)1101{1102unsigned long val =strtoul(line, NULL,10);1103if(val <=100)1104 patch->score = val;1105return0;1106}11071108static intgitdiff_dissimilarity(struct apply_state *state,1109const char*line,1110struct patch *patch)1111{1112unsigned long val =strtoul(line, NULL,10);1113if(val <=100)1114 patch->score = val;1115return0;1116}11171118static intgitdiff_index(struct apply_state *state,1119const char*line,1120struct patch *patch)1121{1122/*1123 * index line is N hexadecimal, "..", N hexadecimal,1124 * and optional space with octal mode.1125 */1126const char*ptr, *eol;1127int len;11281129 ptr =strchr(line,'.');1130if(!ptr || ptr[1] !='.'||40< ptr - line)1131return0;1132 len = ptr - line;1133memcpy(patch->old_sha1_prefix, line, len);1134 patch->old_sha1_prefix[len] =0;11351136 line = ptr +2;1137 ptr =strchr(line,' ');1138 eol =strchrnul(line,'\n');11391140if(!ptr || eol < ptr)1141 ptr = eol;1142 len = ptr - line;11431144if(40< len)1145return0;1146memcpy(patch->new_sha1_prefix, line, len);1147 patch->new_sha1_prefix[len] =0;1148if(*ptr ==' ')1149returngitdiff_oldmode(state, ptr +1, patch);1150return0;1151}11521153/*1154 * This is normal for a diff that doesn't change anything: we'll fall through1155 * into the next diff. Tell the parser to break out.1156 */1157static intgitdiff_unrecognized(struct apply_state *state,1158const char*line,1159struct patch *patch)1160{1161return1;1162}11631164/*1165 * Skip p_value leading components from "line"; as we do not accept1166 * absolute paths, return NULL in that case.1167 */1168static const char*skip_tree_prefix(struct apply_state *state,1169const char*line,1170int llen)1171{1172int nslash;1173int i;11741175if(!state->p_value)1176return(llen && line[0] =='/') ? NULL : line;11771178 nslash = state->p_value;1179for(i =0; i < llen; i++) {1180int ch = line[i];1181if(ch =='/'&& --nslash <=0)1182return(i ==0) ? NULL : &line[i +1];1183}1184return NULL;1185}11861187/*1188 * This is to extract the same name that appears on "diff --git"1189 * line. We do not find and return anything if it is a rename1190 * patch, and it is OK because we will find the name elsewhere.1191 * We need to reliably find name only when it is mode-change only,1192 * creation or deletion of an empty file. In any of these cases,1193 * both sides are the same name under a/ and b/ respectively.1194 */1195static char*git_header_name(struct apply_state *state,1196const char*line,1197int llen)1198{1199const char*name;1200const char*second = NULL;1201size_t len, line_len;12021203 line +=strlen("diff --git ");1204 llen -=strlen("diff --git ");12051206if(*line =='"') {1207const char*cp;1208struct strbuf first = STRBUF_INIT;1209struct strbuf sp = STRBUF_INIT;12101211if(unquote_c_style(&first, line, &second))1212goto free_and_fail1;12131214/* strip the a/b prefix including trailing slash */1215 cp =skip_tree_prefix(state, first.buf, first.len);1216if(!cp)1217goto free_and_fail1;1218strbuf_remove(&first,0, cp - first.buf);12191220/*1221 * second points at one past closing dq of name.1222 * find the second name.1223 */1224while((second < line + llen) &&isspace(*second))1225 second++;12261227if(line + llen <= second)1228goto free_and_fail1;1229if(*second =='"') {1230if(unquote_c_style(&sp, second, NULL))1231goto free_and_fail1;1232 cp =skip_tree_prefix(state, sp.buf, sp.len);1233if(!cp)1234goto free_and_fail1;1235/* They must match, otherwise ignore */1236if(strcmp(cp, first.buf))1237goto free_and_fail1;1238strbuf_release(&sp);1239returnstrbuf_detach(&first, NULL);1240}12411242/* unquoted second */1243 cp =skip_tree_prefix(state, second, line + llen - second);1244if(!cp)1245goto free_and_fail1;1246if(line + llen - cp != first.len ||1247memcmp(first.buf, cp, first.len))1248goto free_and_fail1;1249returnstrbuf_detach(&first, NULL);12501251 free_and_fail1:1252strbuf_release(&first);1253strbuf_release(&sp);1254return NULL;1255}12561257/* unquoted first name */1258 name =skip_tree_prefix(state, line, llen);1259if(!name)1260return NULL;12611262/*1263 * since the first name is unquoted, a dq if exists must be1264 * the beginning of the second name.1265 */1266for(second = name; second < line + llen; second++) {1267if(*second =='"') {1268struct strbuf sp = STRBUF_INIT;1269const char*np;12701271if(unquote_c_style(&sp, second, NULL))1272goto free_and_fail2;12731274 np =skip_tree_prefix(state, sp.buf, sp.len);1275if(!np)1276goto free_and_fail2;12771278 len = sp.buf + sp.len - np;1279if(len < second - name &&1280!strncmp(np, name, len) &&1281isspace(name[len])) {1282/* Good */1283strbuf_remove(&sp,0, np - sp.buf);1284returnstrbuf_detach(&sp, NULL);1285}12861287 free_and_fail2:1288strbuf_release(&sp);1289return NULL;1290}1291}12921293/*1294 * Accept a name only if it shows up twice, exactly the same1295 * form.1296 */1297 second =strchr(name,'\n');1298if(!second)1299return NULL;1300 line_len = second - name;1301for(len =0; ; len++) {1302switch(name[len]) {1303default:1304continue;1305case'\n':1306return NULL;1307case'\t':case' ':1308/*1309 * Is this the separator between the preimage1310 * and the postimage pathname? Again, we are1311 * only interested in the case where there is1312 * no rename, as this is only to set def_name1313 * and a rename patch has the names elsewhere1314 * in an unambiguous form.1315 */1316if(!name[len +1])1317return NULL;/* no postimage name */1318 second =skip_tree_prefix(state, name + len +1,1319 line_len - (len +1));1320if(!second)1321return NULL;1322/*1323 * Does len bytes starting at "name" and "second"1324 * (that are separated by one HT or SP we just1325 * found) exactly match?1326 */1327if(second[len] =='\n'&& !strncmp(name, second, len))1328returnxmemdupz(name, len);1329}1330}1331}13321333static intcheck_header_line(struct apply_state *state,struct patch *patch)1334{1335int extensions = (patch->is_delete ==1) + (patch->is_new ==1) +1336(patch->is_rename ==1) + (patch->is_copy ==1);1337if(extensions >1)1338returnerror(_("inconsistent header lines%dand%d"),1339 patch->extension_linenr, state->linenr);1340if(extensions && !patch->extension_linenr)1341 patch->extension_linenr = state->linenr;1342return0;1343}13441345/* Verify that we recognize the lines following a git header */1346static intparse_git_header(struct apply_state *state,1347const char*line,1348int len,1349unsigned int size,1350struct patch *patch)1351{1352unsigned long offset;13531354/* A git diff has explicit new/delete information, so we don't guess */1355 patch->is_new =0;1356 patch->is_delete =0;13571358/*1359 * Some things may not have the old name in the1360 * rest of the headers anywhere (pure mode changes,1361 * or removing or adding empty files), so we get1362 * the default name from the header.1363 */1364 patch->def_name =git_header_name(state, line, len);1365if(patch->def_name && state->root.len) {1366char*s =xstrfmt("%s%s", state->root.buf, patch->def_name);1367free(patch->def_name);1368 patch->def_name = s;1369}13701371 line += len;1372 size -= len;1373 state->linenr++;1374for(offset = len ; size >0; offset += len, size -= len, line += len, state->linenr++) {1375static const struct opentry {1376const char*str;1377int(*fn)(struct apply_state *,const char*,struct patch *);1378} optable[] = {1379{"@@ -", gitdiff_hdrend },1380{"--- ", gitdiff_oldname },1381{"+++ ", gitdiff_newname },1382{"old mode ", gitdiff_oldmode },1383{"new mode ", gitdiff_newmode },1384{"deleted file mode ", gitdiff_delete },1385{"new file mode ", gitdiff_newfile },1386{"copy from ", gitdiff_copysrc },1387{"copy to ", gitdiff_copydst },1388{"rename old ", gitdiff_renamesrc },1389{"rename new ", gitdiff_renamedst },1390{"rename from ", gitdiff_renamesrc },1391{"rename to ", gitdiff_renamedst },1392{"similarity index ", gitdiff_similarity },1393{"dissimilarity index ", gitdiff_dissimilarity },1394{"index ", gitdiff_index },1395{"", gitdiff_unrecognized },1396};1397int i;13981399 len =linelen(line, size);1400if(!len || line[len-1] !='\n')1401break;1402for(i =0; i <ARRAY_SIZE(optable); i++) {1403const struct opentry *p = optable + i;1404int oplen =strlen(p->str);1405int res;1406if(len < oplen ||memcmp(p->str, line, oplen))1407continue;1408 res = p->fn(state, line + oplen, patch);1409if(res <0)1410return-1;1411if(check_header_line(state, patch))1412return-1;1413if(res >0)1414return offset;1415break;1416}1417}14181419return offset;1420}14211422static intparse_num(const char*line,unsigned long*p)1423{1424char*ptr;14251426if(!isdigit(*line))1427return0;1428*p =strtoul(line, &ptr,10);1429return ptr - line;1430}14311432static intparse_range(const char*line,int len,int offset,const char*expect,1433unsigned long*p1,unsigned long*p2)1434{1435int digits, ex;14361437if(offset <0|| offset >= len)1438return-1;1439 line += offset;1440 len -= offset;14411442 digits =parse_num(line, p1);1443if(!digits)1444return-1;14451446 offset += digits;1447 line += digits;1448 len -= digits;14491450*p2 =1;1451if(*line ==',') {1452 digits =parse_num(line+1, p2);1453if(!digits)1454return-1;14551456 offset += digits+1;1457 line += digits+1;1458 len -= digits+1;1459}14601461 ex =strlen(expect);1462if(ex > len)1463return-1;1464if(memcmp(line, expect, ex))1465return-1;14661467return offset + ex;1468}14691470static voidrecount_diff(const char*line,int size,struct fragment *fragment)1471{1472int oldlines =0, newlines =0, ret =0;14731474if(size <1) {1475warning("recount: ignore empty hunk");1476return;1477}14781479for(;;) {1480int len =linelen(line, size);1481 size -= len;1482 line += len;14831484if(size <1)1485break;14861487switch(*line) {1488case' ':case'\n':1489 newlines++;1490/* fall through */1491case'-':1492 oldlines++;1493continue;1494case'+':1495 newlines++;1496continue;1497case'\\':1498continue;1499case'@':1500 ret = size <3|| !starts_with(line,"@@ ");1501break;1502case'd':1503 ret = size <5|| !starts_with(line,"diff ");1504break;1505default:1506 ret = -1;1507break;1508}1509if(ret) {1510warning(_("recount: unexpected line: %.*s"),1511(int)linelen(line, size), line);1512return;1513}1514break;1515}1516 fragment->oldlines = oldlines;1517 fragment->newlines = newlines;1518}15191520/*1521 * Parse a unified diff fragment header of the1522 * form "@@ -a,b +c,d @@"1523 */1524static intparse_fragment_header(const char*line,int len,struct fragment *fragment)1525{1526int offset;15271528if(!len || line[len-1] !='\n')1529return-1;15301531/* Figure out the number of lines in a fragment */1532 offset =parse_range(line, len,4," +", &fragment->oldpos, &fragment->oldlines);1533 offset =parse_range(line, len, offset," @@", &fragment->newpos, &fragment->newlines);15341535return offset;1536}15371538/*1539 * Find file diff header1540 *1541 * Returns:1542 * -1 if no header was found1543 * -128 in case of error1544 * the size of the header in bytes (called "offset") otherwise1545 */1546static intfind_header(struct apply_state *state,1547const char*line,1548unsigned long size,1549int*hdrsize,1550struct patch *patch)1551{1552unsigned long offset, len;15531554 patch->is_toplevel_relative =0;1555 patch->is_rename = patch->is_copy =0;1556 patch->is_new = patch->is_delete = -1;1557 patch->old_mode = patch->new_mode =0;1558 patch->old_name = patch->new_name = NULL;1559for(offset =0; size >0; offset += len, size -= len, line += len, state->linenr++) {1560unsigned long nextlen;15611562 len =linelen(line, size);1563if(!len)1564break;15651566/* Testing this early allows us to take a few shortcuts.. */1567if(len <6)1568continue;15691570/*1571 * Make sure we don't find any unconnected patch fragments.1572 * That's a sign that we didn't find a header, and that a1573 * patch has become corrupted/broken up.1574 */1575if(!memcmp("@@ -", line,4)) {1576struct fragment dummy;1577if(parse_fragment_header(line, len, &dummy) <0)1578continue;1579error(_("patch fragment without header at line%d: %.*s"),1580 state->linenr, (int)len-1, line);1581return-128;1582}15831584if(size < len +6)1585break;15861587/*1588 * Git patch? It might not have a real patch, just a rename1589 * or mode change, so we handle that specially1590 */1591if(!memcmp("diff --git ", line,11)) {1592int git_hdr_len =parse_git_header(state, line, len, size, patch);1593if(git_hdr_len <0)1594return-128;1595if(git_hdr_len <= len)1596continue;1597if(!patch->old_name && !patch->new_name) {1598if(!patch->def_name) {1599error(Q_("git diff header lacks filename information when removing "1600"%dleading pathname component (line%d)",1601"git diff header lacks filename information when removing "1602"%dleading pathname components (line%d)",1603 state->p_value),1604 state->p_value, state->linenr);1605return-128;1606}1607 patch->old_name =xstrdup(patch->def_name);1608 patch->new_name =xstrdup(patch->def_name);1609}1610if((!patch->new_name && !patch->is_delete) ||1611(!patch->old_name && !patch->is_new)) {1612error(_("git diff header lacks filename information "1613"(line%d)"), state->linenr);1614return-128;1615}1616 patch->is_toplevel_relative =1;1617*hdrsize = git_hdr_len;1618return offset;1619}16201621/* --- followed by +++ ? */1622if(memcmp("--- ", line,4) ||memcmp("+++ ", line + len,4))1623continue;16241625/*1626 * We only accept unified patches, so we want it to1627 * at least have "@@ -a,b +c,d @@\n", which is 14 chars1628 * minimum ("@@ -0,0 +1 @@\n" is the shortest).1629 */1630 nextlen =linelen(line + len, size - len);1631if(size < nextlen +14||memcmp("@@ -", line + len + nextlen,4))1632continue;16331634/* Ok, we'll consider it a patch */1635if(parse_traditional_patch(state, line, line+len, patch))1636return-128;1637*hdrsize = len + nextlen;1638 state->linenr +=2;1639return offset;1640}1641return-1;1642}16431644static voidrecord_ws_error(struct apply_state *state,1645unsigned result,1646const char*line,1647int len,1648int linenr)1649{1650char*err;16511652if(!result)1653return;16541655 state->whitespace_error++;1656if(state->squelch_whitespace_errors &&1657 state->squelch_whitespace_errors < state->whitespace_error)1658return;16591660 err =whitespace_error_string(result);1661if(state->apply_verbosity > verbosity_silent)1662fprintf(stderr,"%s:%d:%s.\n%.*s\n",1663 state->patch_input_file, linenr, err, len, line);1664free(err);1665}16661667static voidcheck_whitespace(struct apply_state *state,1668const char*line,1669int len,1670unsigned ws_rule)1671{1672unsigned result =ws_check(line +1, len -1, ws_rule);16731674record_ws_error(state, result, line +1, len -2, state->linenr);1675}16761677/*1678 * Parse a unified diff. Note that this really needs to parse each1679 * fragment separately, since the only way to know the difference1680 * between a "---" that is part of a patch, and a "---" that starts1681 * the next patch is to look at the line counts..1682 */1683static intparse_fragment(struct apply_state *state,1684const char*line,1685unsigned long size,1686struct patch *patch,1687struct fragment *fragment)1688{1689int added, deleted;1690int len =linelen(line, size), offset;1691unsigned long oldlines, newlines;1692unsigned long leading, trailing;16931694 offset =parse_fragment_header(line, len, fragment);1695if(offset <0)1696return-1;1697if(offset >0&& patch->recount)1698recount_diff(line + offset, size - offset, fragment);1699 oldlines = fragment->oldlines;1700 newlines = fragment->newlines;1701 leading =0;1702 trailing =0;17031704/* Parse the thing.. */1705 line += len;1706 size -= len;1707 state->linenr++;1708 added = deleted =0;1709for(offset = len;17100< size;1711 offset += len, size -= len, line += len, state->linenr++) {1712if(!oldlines && !newlines)1713break;1714 len =linelen(line, size);1715if(!len || line[len-1] !='\n')1716return-1;1717switch(*line) {1718default:1719return-1;1720case'\n':/* newer GNU diff, an empty context line */1721case' ':1722 oldlines--;1723 newlines--;1724if(!deleted && !added)1725 leading++;1726 trailing++;1727if(!state->apply_in_reverse &&1728 state->ws_error_action == correct_ws_error)1729check_whitespace(state, line, len, patch->ws_rule);1730break;1731case'-':1732if(state->apply_in_reverse &&1733 state->ws_error_action != nowarn_ws_error)1734check_whitespace(state, line, len, patch->ws_rule);1735 deleted++;1736 oldlines--;1737 trailing =0;1738break;1739case'+':1740if(!state->apply_in_reverse &&1741 state->ws_error_action != nowarn_ws_error)1742check_whitespace(state, line, len, patch->ws_rule);1743 added++;1744 newlines--;1745 trailing =0;1746break;17471748/*1749 * We allow "\ No newline at end of file". Depending1750 * on locale settings when the patch was produced we1751 * don't know what this line looks like. The only1752 * thing we do know is that it begins with "\ ".1753 * Checking for 12 is just for sanity check -- any1754 * l10n of "\ No newline..." is at least that long.1755 */1756case'\\':1757if(len <12||memcmp(line,"\\",2))1758return-1;1759break;1760}1761}1762if(oldlines || newlines)1763return-1;1764if(!deleted && !added)1765return-1;17661767 fragment->leading = leading;1768 fragment->trailing = trailing;17691770/*1771 * If a fragment ends with an incomplete line, we failed to include1772 * it in the above loop because we hit oldlines == newlines == 01773 * before seeing it.1774 */1775if(12< size && !memcmp(line,"\\",2))1776 offset +=linelen(line, size);17771778 patch->lines_added += added;1779 patch->lines_deleted += deleted;17801781if(0< patch->is_new && oldlines)1782returnerror(_("new file depends on old contents"));1783if(0< patch->is_delete && newlines)1784returnerror(_("deleted file still has contents"));1785return offset;1786}17871788/*1789 * We have seen "diff --git a/... b/..." header (or a traditional patch1790 * header). Read hunks that belong to this patch into fragments and hang1791 * them to the given patch structure.1792 *1793 * The (fragment->patch, fragment->size) pair points into the memory given1794 * by the caller, not a copy, when we return.1795 *1796 * Returns:1797 * -1 in case of error,1798 * the number of bytes in the patch otherwise.1799 */1800static intparse_single_patch(struct apply_state *state,1801const char*line,1802unsigned long size,1803struct patch *patch)1804{1805unsigned long offset =0;1806unsigned long oldlines =0, newlines =0, context =0;1807struct fragment **fragp = &patch->fragments;18081809while(size >4&& !memcmp(line,"@@ -",4)) {1810struct fragment *fragment;1811int len;18121813 fragment =xcalloc(1,sizeof(*fragment));1814 fragment->linenr = state->linenr;1815 len =parse_fragment(state, line, size, patch, fragment);1816if(len <=0) {1817free(fragment);1818returnerror(_("corrupt patch at line%d"), state->linenr);1819}1820 fragment->patch = line;1821 fragment->size = len;1822 oldlines += fragment->oldlines;1823 newlines += fragment->newlines;1824 context += fragment->leading + fragment->trailing;18251826*fragp = fragment;1827 fragp = &fragment->next;18281829 offset += len;1830 line += len;1831 size -= len;1832}18331834/*1835 * If something was removed (i.e. we have old-lines) it cannot1836 * be creation, and if something was added it cannot be1837 * deletion. However, the reverse is not true; --unified=01838 * patches that only add are not necessarily creation even1839 * though they do not have any old lines, and ones that only1840 * delete are not necessarily deletion.1841 *1842 * Unfortunately, a real creation/deletion patch do _not_ have1843 * any context line by definition, so we cannot safely tell it1844 * apart with --unified=0 insanity. At least if the patch has1845 * more than one hunk it is not creation or deletion.1846 */1847if(patch->is_new <0&&1848(oldlines || (patch->fragments && patch->fragments->next)))1849 patch->is_new =0;1850if(patch->is_delete <0&&1851(newlines || (patch->fragments && patch->fragments->next)))1852 patch->is_delete =0;18531854if(0< patch->is_new && oldlines)1855returnerror(_("new file%sdepends on old contents"), patch->new_name);1856if(0< patch->is_delete && newlines)1857returnerror(_("deleted file%sstill has contents"), patch->old_name);1858if(!patch->is_delete && !newlines && context && state->apply_verbosity > verbosity_silent)1859fprintf_ln(stderr,1860_("** warning: "1861"file%sbecomes empty but is not deleted"),1862 patch->new_name);18631864return offset;1865}18661867staticinlineintmetadata_changes(struct patch *patch)1868{1869return patch->is_rename >0||1870 patch->is_copy >0||1871 patch->is_new >0||1872 patch->is_delete ||1873(patch->old_mode && patch->new_mode &&1874 patch->old_mode != patch->new_mode);1875}18761877static char*inflate_it(const void*data,unsigned long size,1878unsigned long inflated_size)1879{1880 git_zstream stream;1881void*out;1882int st;18831884memset(&stream,0,sizeof(stream));18851886 stream.next_in = (unsigned char*)data;1887 stream.avail_in = size;1888 stream.next_out = out =xmalloc(inflated_size);1889 stream.avail_out = inflated_size;1890git_inflate_init(&stream);1891 st =git_inflate(&stream, Z_FINISH);1892git_inflate_end(&stream);1893if((st != Z_STREAM_END) || stream.total_out != inflated_size) {1894free(out);1895return NULL;1896}1897return out;1898}18991900/*1901 * Read a binary hunk and return a new fragment; fragment->patch1902 * points at an allocated memory that the caller must free, so1903 * it is marked as "->free_patch = 1".1904 */1905static struct fragment *parse_binary_hunk(struct apply_state *state,1906char**buf_p,1907unsigned long*sz_p,1908int*status_p,1909int*used_p)1910{1911/*1912 * Expect a line that begins with binary patch method ("literal"1913 * or "delta"), followed by the length of data before deflating.1914 * a sequence of 'length-byte' followed by base-85 encoded data1915 * should follow, terminated by a newline.1916 *1917 * Each 5-byte sequence of base-85 encodes up to 4 bytes,1918 * and we would limit the patch line to 66 characters,1919 * so one line can fit up to 13 groups that would decode1920 * to 52 bytes max. The length byte 'A'-'Z' corresponds1921 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.1922 */1923int llen, used;1924unsigned long size = *sz_p;1925char*buffer = *buf_p;1926int patch_method;1927unsigned long origlen;1928char*data = NULL;1929int hunk_size =0;1930struct fragment *frag;19311932 llen =linelen(buffer, size);1933 used = llen;19341935*status_p =0;19361937if(starts_with(buffer,"delta ")) {1938 patch_method = BINARY_DELTA_DEFLATED;1939 origlen =strtoul(buffer +6, NULL,10);1940}1941else if(starts_with(buffer,"literal ")) {1942 patch_method = BINARY_LITERAL_DEFLATED;1943 origlen =strtoul(buffer +8, NULL,10);1944}1945else1946return NULL;19471948 state->linenr++;1949 buffer += llen;1950while(1) {1951int byte_length, max_byte_length, newsize;1952 llen =linelen(buffer, size);1953 used += llen;1954 state->linenr++;1955if(llen ==1) {1956/* consume the blank line */1957 buffer++;1958 size--;1959break;1960}1961/*1962 * Minimum line is "A00000\n" which is 7-byte long,1963 * and the line length must be multiple of 5 plus 2.1964 */1965if((llen <7) || (llen-2) %5)1966goto corrupt;1967 max_byte_length = (llen -2) /5*4;1968 byte_length = *buffer;1969if('A'<= byte_length && byte_length <='Z')1970 byte_length = byte_length -'A'+1;1971else if('a'<= byte_length && byte_length <='z')1972 byte_length = byte_length -'a'+27;1973else1974goto corrupt;1975/* if the input length was not multiple of 4, we would1976 * have filler at the end but the filler should never1977 * exceed 3 bytes1978 */1979if(max_byte_length < byte_length ||1980 byte_length <= max_byte_length -4)1981goto corrupt;1982 newsize = hunk_size + byte_length;1983 data =xrealloc(data, newsize);1984if(decode_85(data + hunk_size, buffer +1, byte_length))1985goto corrupt;1986 hunk_size = newsize;1987 buffer += llen;1988 size -= llen;1989}19901991 frag =xcalloc(1,sizeof(*frag));1992 frag->patch =inflate_it(data, hunk_size, origlen);1993 frag->free_patch =1;1994if(!frag->patch)1995goto corrupt;1996free(data);1997 frag->size = origlen;1998*buf_p = buffer;1999*sz_p = size;2000*used_p = used;2001 frag->binary_patch_method = patch_method;2002return frag;20032004 corrupt:2005free(data);2006*status_p = -1;2007error(_("corrupt binary patch at line%d: %.*s"),2008 state->linenr-1, llen-1, buffer);2009return NULL;2010}20112012/*2013 * Returns:2014 * -1 in case of error,2015 * the length of the parsed binary patch otherwise2016 */2017static intparse_binary(struct apply_state *state,2018char*buffer,2019unsigned long size,2020struct patch *patch)2021{2022/*2023 * We have read "GIT binary patch\n"; what follows is a line2024 * that says the patch method (currently, either "literal" or2025 * "delta") and the length of data before deflating; a2026 * sequence of 'length-byte' followed by base-85 encoded data2027 * follows.2028 *2029 * When a binary patch is reversible, there is another binary2030 * hunk in the same format, starting with patch method (either2031 * "literal" or "delta") with the length of data, and a sequence2032 * of length-byte + base-85 encoded data, terminated with another2033 * empty line. This data, when applied to the postimage, produces2034 * the preimage.2035 */2036struct fragment *forward;2037struct fragment *reverse;2038int status;2039int used, used_1;20402041 forward =parse_binary_hunk(state, &buffer, &size, &status, &used);2042if(!forward && !status)2043/* there has to be one hunk (forward hunk) */2044returnerror(_("unrecognized binary patch at line%d"), state->linenr-1);2045if(status)2046/* otherwise we already gave an error message */2047return status;20482049 reverse =parse_binary_hunk(state, &buffer, &size, &status, &used_1);2050if(reverse)2051 used += used_1;2052else if(status) {2053/*2054 * Not having reverse hunk is not an error, but having2055 * a corrupt reverse hunk is.2056 */2057free((void*) forward->patch);2058free(forward);2059return status;2060}2061 forward->next = reverse;2062 patch->fragments = forward;2063 patch->is_binary =1;2064return used;2065}20662067static voidprefix_one(struct apply_state *state,char**name)2068{2069char*old_name = *name;2070if(!old_name)2071return;2072*name =xstrdup(prefix_filename(state->prefix, state->prefix_length, *name));2073free(old_name);2074}20752076static voidprefix_patch(struct apply_state *state,struct patch *p)2077{2078if(!state->prefix || p->is_toplevel_relative)2079return;2080prefix_one(state, &p->new_name);2081prefix_one(state, &p->old_name);2082}20832084/*2085 * include/exclude2086 */20872088static voidadd_name_limit(struct apply_state *state,2089const char*name,2090int exclude)2091{2092struct string_list_item *it;20932094 it =string_list_append(&state->limit_by_name, name);2095 it->util = exclude ? NULL : (void*)1;2096}20972098static intuse_patch(struct apply_state *state,struct patch *p)2099{2100const char*pathname = p->new_name ? p->new_name : p->old_name;2101int i;21022103/* Paths outside are not touched regardless of "--include" */2104if(0< state->prefix_length) {2105int pathlen =strlen(pathname);2106if(pathlen <= state->prefix_length ||2107memcmp(state->prefix, pathname, state->prefix_length))2108return0;2109}21102111/* See if it matches any of exclude/include rule */2112for(i =0; i < state->limit_by_name.nr; i++) {2113struct string_list_item *it = &state->limit_by_name.items[i];2114if(!wildmatch(it->string, pathname,0, NULL))2115return(it->util != NULL);2116}21172118/*2119 * If we had any include, a path that does not match any rule is2120 * not used. Otherwise, we saw bunch of exclude rules (or none)2121 * and such a path is used.2122 */2123return!state->has_include;2124}21252126/*2127 * Read the patch text in "buffer" that extends for "size" bytes; stop2128 * reading after seeing a single patch (i.e. changes to a single file).2129 * Create fragments (i.e. patch hunks) and hang them to the given patch.2130 *2131 * Returns:2132 * -1 if no header was found or parse_binary() failed,2133 * -128 on another error,2134 * the number of bytes consumed otherwise,2135 * so that the caller can call us again for the next patch.2136 */2137static intparse_chunk(struct apply_state *state,char*buffer,unsigned long size,struct patch *patch)2138{2139int hdrsize, patchsize;2140int offset =find_header(state, buffer, size, &hdrsize, patch);21412142if(offset <0)2143return offset;21442145prefix_patch(state, patch);21462147if(!use_patch(state, patch))2148 patch->ws_rule =0;2149else2150 patch->ws_rule =whitespace_rule(patch->new_name2151? patch->new_name2152: patch->old_name);21532154 patchsize =parse_single_patch(state,2155 buffer + offset + hdrsize,2156 size - offset - hdrsize,2157 patch);21582159if(patchsize <0)2160return-128;21612162if(!patchsize) {2163static const char git_binary[] ="GIT binary patch\n";2164int hd = hdrsize + offset;2165unsigned long llen =linelen(buffer + hd, size - hd);21662167if(llen ==sizeof(git_binary) -1&&2168!memcmp(git_binary, buffer + hd, llen)) {2169int used;2170 state->linenr++;2171 used =parse_binary(state, buffer + hd + llen,2172 size - hd - llen, patch);2173if(used <0)2174return-1;2175if(used)2176 patchsize = used + llen;2177else2178 patchsize =0;2179}2180else if(!memcmp(" differ\n", buffer + hd + llen -8,8)) {2181static const char*binhdr[] = {2182"Binary files ",2183"Files ",2184 NULL,2185};2186int i;2187for(i =0; binhdr[i]; i++) {2188int len =strlen(binhdr[i]);2189if(len < size - hd &&2190!memcmp(binhdr[i], buffer + hd, len)) {2191 state->linenr++;2192 patch->is_binary =1;2193 patchsize = llen;2194break;2195}2196}2197}21982199/* Empty patch cannot be applied if it is a text patch2200 * without metadata change. A binary patch appears2201 * empty to us here.2202 */2203if((state->apply || state->check) &&2204(!patch->is_binary && !metadata_changes(patch))) {2205error(_("patch with only garbage at line%d"), state->linenr);2206return-128;2207}2208}22092210return offset + hdrsize + patchsize;2211}22122213#define swap(a,b) myswap((a),(b),sizeof(a))22142215#define myswap(a, b, size) do { \2216 unsigned char mytmp[size]; \2217 memcpy(mytmp, &a, size); \2218 memcpy(&a, &b, size); \2219 memcpy(&b, mytmp, size); \2220} while (0)22212222static voidreverse_patches(struct patch *p)2223{2224for(; p; p = p->next) {2225struct fragment *frag = p->fragments;22262227swap(p->new_name, p->old_name);2228swap(p->new_mode, p->old_mode);2229swap(p->is_new, p->is_delete);2230swap(p->lines_added, p->lines_deleted);2231swap(p->old_sha1_prefix, p->new_sha1_prefix);22322233for(; frag; frag = frag->next) {2234swap(frag->newpos, frag->oldpos);2235swap(frag->newlines, frag->oldlines);2236}2237}2238}22392240static const char pluses[] =2241"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";2242static const char minuses[]=2243"----------------------------------------------------------------------";22442245static voidshow_stats(struct apply_state *state,struct patch *patch)2246{2247struct strbuf qname = STRBUF_INIT;2248char*cp = patch->new_name ? patch->new_name : patch->old_name;2249int max, add, del;22502251quote_c_style(cp, &qname, NULL,0);22522253/*2254 * "scale" the filename2255 */2256 max = state->max_len;2257if(max >50)2258 max =50;22592260if(qname.len > max) {2261 cp =strchr(qname.buf + qname.len +3- max,'/');2262if(!cp)2263 cp = qname.buf + qname.len +3- max;2264strbuf_splice(&qname,0, cp - qname.buf,"...",3);2265}22662267if(patch->is_binary) {2268printf(" %-*s | Bin\n", max, qname.buf);2269strbuf_release(&qname);2270return;2271}22722273printf(" %-*s |", max, qname.buf);2274strbuf_release(&qname);22752276/*2277 * scale the add/delete2278 */2279 max = max + state->max_change >70?70- max : state->max_change;2280 add = patch->lines_added;2281 del = patch->lines_deleted;22822283if(state->max_change >0) {2284int total = ((add + del) * max + state->max_change /2) / state->max_change;2285 add = (add * max + state->max_change /2) / state->max_change;2286 del = total - add;2287}2288printf("%5d %.*s%.*s\n", patch->lines_added + patch->lines_deleted,2289 add, pluses, del, minuses);2290}22912292static intread_old_data(struct stat *st,const char*path,struct strbuf *buf)2293{2294switch(st->st_mode & S_IFMT) {2295case S_IFLNK:2296if(strbuf_readlink(buf, path, st->st_size) <0)2297returnerror(_("unable to read symlink%s"), path);2298return0;2299case S_IFREG:2300if(strbuf_read_file(buf, path, st->st_size) != st->st_size)2301returnerror(_("unable to open or read%s"), path);2302convert_to_git(path, buf->buf, buf->len, buf,0);2303return0;2304default:2305return-1;2306}2307}23082309/*2310 * Update the preimage, and the common lines in postimage,2311 * from buffer buf of length len. If postlen is 0 the postimage2312 * is updated in place, otherwise it's updated on a new buffer2313 * of length postlen2314 */23152316static voidupdate_pre_post_images(struct image *preimage,2317struct image *postimage,2318char*buf,2319size_t len,size_t postlen)2320{2321int i, ctx, reduced;2322char*new, *old, *fixed;2323struct image fixed_preimage;23242325/*2326 * Update the preimage with whitespace fixes. Note that we2327 * are not losing preimage->buf -- apply_one_fragment() will2328 * free "oldlines".2329 */2330prepare_image(&fixed_preimage, buf, len,1);2331assert(postlen2332? fixed_preimage.nr == preimage->nr2333: fixed_preimage.nr <= preimage->nr);2334for(i =0; i < fixed_preimage.nr; i++)2335 fixed_preimage.line[i].flag = preimage->line[i].flag;2336free(preimage->line_allocated);2337*preimage = fixed_preimage;23382339/*2340 * Adjust the common context lines in postimage. This can be2341 * done in-place when we are shrinking it with whitespace2342 * fixing, but needs a new buffer when ignoring whitespace or2343 * expanding leading tabs to spaces.2344 *2345 * We trust the caller to tell us if the update can be done2346 * in place (postlen==0) or not.2347 */2348 old = postimage->buf;2349if(postlen)2350new= postimage->buf =xmalloc(postlen);2351else2352new= old;2353 fixed = preimage->buf;23542355for(i = reduced = ctx =0; i < postimage->nr; i++) {2356size_t l_len = postimage->line[i].len;2357if(!(postimage->line[i].flag & LINE_COMMON)) {2358/* an added line -- no counterparts in preimage */2359memmove(new, old, l_len);2360 old += l_len;2361new+= l_len;2362continue;2363}23642365/* a common context -- skip it in the original postimage */2366 old += l_len;23672368/* and find the corresponding one in the fixed preimage */2369while(ctx < preimage->nr &&2370!(preimage->line[ctx].flag & LINE_COMMON)) {2371 fixed += preimage->line[ctx].len;2372 ctx++;2373}23742375/*2376 * preimage is expected to run out, if the caller2377 * fixed addition of trailing blank lines.2378 */2379if(preimage->nr <= ctx) {2380 reduced++;2381continue;2382}23832384/* and copy it in, while fixing the line length */2385 l_len = preimage->line[ctx].len;2386memcpy(new, fixed, l_len);2387new+= l_len;2388 fixed += l_len;2389 postimage->line[i].len = l_len;2390 ctx++;2391}23922393if(postlen2394? postlen <new- postimage->buf2395: postimage->len <new- postimage->buf)2396die("BUG: caller miscounted postlen: asked%d, orig =%d, used =%d",2397(int)postlen, (int) postimage->len, (int)(new- postimage->buf));23982399/* Fix the length of the whole thing */2400 postimage->len =new- postimage->buf;2401 postimage->nr -= reduced;2402}24032404static intline_by_line_fuzzy_match(struct image *img,2405struct image *preimage,2406struct image *postimage,2407unsigned longtry,2408int try_lno,2409int preimage_limit)2410{2411int i;2412size_t imgoff =0;2413size_t preoff =0;2414size_t postlen = postimage->len;2415size_t extra_chars;2416char*buf;2417char*preimage_eof;2418char*preimage_end;2419struct strbuf fixed;2420char*fixed_buf;2421size_t fixed_len;24222423for(i =0; i < preimage_limit; i++) {2424size_t prelen = preimage->line[i].len;2425size_t imglen = img->line[try_lno+i].len;24262427if(!fuzzy_matchlines(img->buf +try+ imgoff, imglen,2428 preimage->buf + preoff, prelen))2429return0;2430if(preimage->line[i].flag & LINE_COMMON)2431 postlen += imglen - prelen;2432 imgoff += imglen;2433 preoff += prelen;2434}24352436/*2437 * Ok, the preimage matches with whitespace fuzz.2438 *2439 * imgoff now holds the true length of the target that2440 * matches the preimage before the end of the file.2441 *2442 * Count the number of characters in the preimage that fall2443 * beyond the end of the file and make sure that all of them2444 * are whitespace characters. (This can only happen if2445 * we are removing blank lines at the end of the file.)2446 */2447 buf = preimage_eof = preimage->buf + preoff;2448for( ; i < preimage->nr; i++)2449 preoff += preimage->line[i].len;2450 preimage_end = preimage->buf + preoff;2451for( ; buf < preimage_end; buf++)2452if(!isspace(*buf))2453return0;24542455/*2456 * Update the preimage and the common postimage context2457 * lines to use the same whitespace as the target.2458 * If whitespace is missing in the target (i.e.2459 * if the preimage extends beyond the end of the file),2460 * use the whitespace from the preimage.2461 */2462 extra_chars = preimage_end - preimage_eof;2463strbuf_init(&fixed, imgoff + extra_chars);2464strbuf_add(&fixed, img->buf +try, imgoff);2465strbuf_add(&fixed, preimage_eof, extra_chars);2466 fixed_buf =strbuf_detach(&fixed, &fixed_len);2467update_pre_post_images(preimage, postimage,2468 fixed_buf, fixed_len, postlen);2469return1;2470}24712472static intmatch_fragment(struct apply_state *state,2473struct image *img,2474struct image *preimage,2475struct image *postimage,2476unsigned longtry,2477int try_lno,2478unsigned ws_rule,2479int match_beginning,int match_end)2480{2481int i;2482char*fixed_buf, *buf, *orig, *target;2483struct strbuf fixed;2484size_t fixed_len, postlen;2485int preimage_limit;24862487if(preimage->nr + try_lno <= img->nr) {2488/*2489 * The hunk falls within the boundaries of img.2490 */2491 preimage_limit = preimage->nr;2492if(match_end && (preimage->nr + try_lno != img->nr))2493return0;2494}else if(state->ws_error_action == correct_ws_error &&2495(ws_rule & WS_BLANK_AT_EOF)) {2496/*2497 * This hunk extends beyond the end of img, and we are2498 * removing blank lines at the end of the file. This2499 * many lines from the beginning of the preimage must2500 * match with img, and the remainder of the preimage2501 * must be blank.2502 */2503 preimage_limit = img->nr - try_lno;2504}else{2505/*2506 * The hunk extends beyond the end of the img and2507 * we are not removing blanks at the end, so we2508 * should reject the hunk at this position.2509 */2510return0;2511}25122513if(match_beginning && try_lno)2514return0;25152516/* Quick hash check */2517for(i =0; i < preimage_limit; i++)2518if((img->line[try_lno + i].flag & LINE_PATCHED) ||2519(preimage->line[i].hash != img->line[try_lno + i].hash))2520return0;25212522if(preimage_limit == preimage->nr) {2523/*2524 * Do we have an exact match? If we were told to match2525 * at the end, size must be exactly at try+fragsize,2526 * otherwise try+fragsize must be still within the preimage,2527 * and either case, the old piece should match the preimage2528 * exactly.2529 */2530if((match_end2531? (try+ preimage->len == img->len)2532: (try+ preimage->len <= img->len)) &&2533!memcmp(img->buf +try, preimage->buf, preimage->len))2534return1;2535}else{2536/*2537 * The preimage extends beyond the end of img, so2538 * there cannot be an exact match.2539 *2540 * There must be one non-blank context line that match2541 * a line before the end of img.2542 */2543char*buf_end;25442545 buf = preimage->buf;2546 buf_end = buf;2547for(i =0; i < preimage_limit; i++)2548 buf_end += preimage->line[i].len;25492550for( ; buf < buf_end; buf++)2551if(!isspace(*buf))2552break;2553if(buf == buf_end)2554return0;2555}25562557/*2558 * No exact match. If we are ignoring whitespace, run a line-by-line2559 * fuzzy matching. We collect all the line length information because2560 * we need it to adjust whitespace if we match.2561 */2562if(state->ws_ignore_action == ignore_ws_change)2563returnline_by_line_fuzzy_match(img, preimage, postimage,2564try, try_lno, preimage_limit);25652566if(state->ws_error_action != correct_ws_error)2567return0;25682569/*2570 * The hunk does not apply byte-by-byte, but the hash says2571 * it might with whitespace fuzz. We weren't asked to2572 * ignore whitespace, we were asked to correct whitespace2573 * errors, so let's try matching after whitespace correction.2574 *2575 * While checking the preimage against the target, whitespace2576 * errors in both fixed, we count how large the corresponding2577 * postimage needs to be. The postimage prepared by2578 * apply_one_fragment() has whitespace errors fixed on added2579 * lines already, but the common lines were propagated as-is,2580 * which may become longer when their whitespace errors are2581 * fixed.2582 */25832584/* First count added lines in postimage */2585 postlen =0;2586for(i =0; i < postimage->nr; i++) {2587if(!(postimage->line[i].flag & LINE_COMMON))2588 postlen += postimage->line[i].len;2589}25902591/*2592 * The preimage may extend beyond the end of the file,2593 * but in this loop we will only handle the part of the2594 * preimage that falls within the file.2595 */2596strbuf_init(&fixed, preimage->len +1);2597 orig = preimage->buf;2598 target = img->buf +try;2599for(i =0; i < preimage_limit; i++) {2600size_t oldlen = preimage->line[i].len;2601size_t tgtlen = img->line[try_lno + i].len;2602size_t fixstart = fixed.len;2603struct strbuf tgtfix;2604int match;26052606/* Try fixing the line in the preimage */2607ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);26082609/* Try fixing the line in the target */2610strbuf_init(&tgtfix, tgtlen);2611ws_fix_copy(&tgtfix, target, tgtlen, ws_rule, NULL);26122613/*2614 * If they match, either the preimage was based on2615 * a version before our tree fixed whitespace breakage,2616 * or we are lacking a whitespace-fix patch the tree2617 * the preimage was based on already had (i.e. target2618 * has whitespace breakage, the preimage doesn't).2619 * In either case, we are fixing the whitespace breakages2620 * so we might as well take the fix together with their2621 * real change.2622 */2623 match = (tgtfix.len == fixed.len - fixstart &&2624!memcmp(tgtfix.buf, fixed.buf + fixstart,2625 fixed.len - fixstart));26262627/* Add the length if this is common with the postimage */2628if(preimage->line[i].flag & LINE_COMMON)2629 postlen += tgtfix.len;26302631strbuf_release(&tgtfix);2632if(!match)2633goto unmatch_exit;26342635 orig += oldlen;2636 target += tgtlen;2637}263826392640/*2641 * Now handle the lines in the preimage that falls beyond the2642 * end of the file (if any). They will only match if they are2643 * empty or only contain whitespace (if WS_BLANK_AT_EOL is2644 * false).2645 */2646for( ; i < preimage->nr; i++) {2647size_t fixstart = fixed.len;/* start of the fixed preimage */2648size_t oldlen = preimage->line[i].len;2649int j;26502651/* Try fixing the line in the preimage */2652ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);26532654for(j = fixstart; j < fixed.len; j++)2655if(!isspace(fixed.buf[j]))2656goto unmatch_exit;26572658 orig += oldlen;2659}26602661/*2662 * Yes, the preimage is based on an older version that still2663 * has whitespace breakages unfixed, and fixing them makes the2664 * hunk match. Update the context lines in the postimage.2665 */2666 fixed_buf =strbuf_detach(&fixed, &fixed_len);2667if(postlen < postimage->len)2668 postlen =0;2669update_pre_post_images(preimage, postimage,2670 fixed_buf, fixed_len, postlen);2671return1;26722673 unmatch_exit:2674strbuf_release(&fixed);2675return0;2676}26772678static intfind_pos(struct apply_state *state,2679struct image *img,2680struct image *preimage,2681struct image *postimage,2682int line,2683unsigned ws_rule,2684int match_beginning,int match_end)2685{2686int i;2687unsigned long backwards, forwards,try;2688int backwards_lno, forwards_lno, try_lno;26892690/*2691 * If match_beginning or match_end is specified, there is no2692 * point starting from a wrong line that will never match and2693 * wander around and wait for a match at the specified end.2694 */2695if(match_beginning)2696 line =0;2697else if(match_end)2698 line = img->nr - preimage->nr;26992700/*2701 * Because the comparison is unsigned, the following test2702 * will also take care of a negative line number that can2703 * result when match_end and preimage is larger than the target.2704 */2705if((size_t) line > img->nr)2706 line = img->nr;27072708try=0;2709for(i =0; i < line; i++)2710try+= img->line[i].len;27112712/*2713 * There's probably some smart way to do this, but I'll leave2714 * that to the smart and beautiful people. I'm simple and stupid.2715 */2716 backwards =try;2717 backwards_lno = line;2718 forwards =try;2719 forwards_lno = line;2720 try_lno = line;27212722for(i =0; ; i++) {2723if(match_fragment(state, img, preimage, postimage,2724try, try_lno, ws_rule,2725 match_beginning, match_end))2726return try_lno;27272728 again:2729if(backwards_lno ==0&& forwards_lno == img->nr)2730break;27312732if(i &1) {2733if(backwards_lno ==0) {2734 i++;2735goto again;2736}2737 backwards_lno--;2738 backwards -= img->line[backwards_lno].len;2739try= backwards;2740 try_lno = backwards_lno;2741}else{2742if(forwards_lno == img->nr) {2743 i++;2744goto again;2745}2746 forwards += img->line[forwards_lno].len;2747 forwards_lno++;2748try= forwards;2749 try_lno = forwards_lno;2750}27512752}2753return-1;2754}27552756static voidremove_first_line(struct image *img)2757{2758 img->buf += img->line[0].len;2759 img->len -= img->line[0].len;2760 img->line++;2761 img->nr--;2762}27632764static voidremove_last_line(struct image *img)2765{2766 img->len -= img->line[--img->nr].len;2767}27682769/*2770 * The change from "preimage" and "postimage" has been found to2771 * apply at applied_pos (counts in line numbers) in "img".2772 * Update "img" to remove "preimage" and replace it with "postimage".2773 */2774static voidupdate_image(struct apply_state *state,2775struct image *img,2776int applied_pos,2777struct image *preimage,2778struct image *postimage)2779{2780/*2781 * remove the copy of preimage at offset in img2782 * and replace it with postimage2783 */2784int i, nr;2785size_t remove_count, insert_count, applied_at =0;2786char*result;2787int preimage_limit;27882789/*2790 * If we are removing blank lines at the end of img,2791 * the preimage may extend beyond the end.2792 * If that is the case, we must be careful only to2793 * remove the part of the preimage that falls within2794 * the boundaries of img. Initialize preimage_limit2795 * to the number of lines in the preimage that falls2796 * within the boundaries.2797 */2798 preimage_limit = preimage->nr;2799if(preimage_limit > img->nr - applied_pos)2800 preimage_limit = img->nr - applied_pos;28012802for(i =0; i < applied_pos; i++)2803 applied_at += img->line[i].len;28042805 remove_count =0;2806for(i =0; i < preimage_limit; i++)2807 remove_count += img->line[applied_pos + i].len;2808 insert_count = postimage->len;28092810/* Adjust the contents */2811 result =xmalloc(st_add3(st_sub(img->len, remove_count), insert_count,1));2812memcpy(result, img->buf, applied_at);2813memcpy(result + applied_at, postimage->buf, postimage->len);2814memcpy(result + applied_at + postimage->len,2815 img->buf + (applied_at + remove_count),2816 img->len - (applied_at + remove_count));2817free(img->buf);2818 img->buf = result;2819 img->len += insert_count - remove_count;2820 result[img->len] ='\0';28212822/* Adjust the line table */2823 nr = img->nr + postimage->nr - preimage_limit;2824if(preimage_limit < postimage->nr) {2825/*2826 * NOTE: this knows that we never call remove_first_line()2827 * on anything other than pre/post image.2828 */2829REALLOC_ARRAY(img->line, nr);2830 img->line_allocated = img->line;2831}2832if(preimage_limit != postimage->nr)2833memmove(img->line + applied_pos + postimage->nr,2834 img->line + applied_pos + preimage_limit,2835(img->nr - (applied_pos + preimage_limit)) *2836sizeof(*img->line));2837memcpy(img->line + applied_pos,2838 postimage->line,2839 postimage->nr *sizeof(*img->line));2840if(!state->allow_overlap)2841for(i =0; i < postimage->nr; i++)2842 img->line[applied_pos + i].flag |= LINE_PATCHED;2843 img->nr = nr;2844}28452846/*2847 * Use the patch-hunk text in "frag" to prepare two images (preimage and2848 * postimage) for the hunk. Find lines that match "preimage" in "img" and2849 * replace the part of "img" with "postimage" text.2850 */2851static intapply_one_fragment(struct apply_state *state,2852struct image *img,struct fragment *frag,2853int inaccurate_eof,unsigned ws_rule,2854int nth_fragment)2855{2856int match_beginning, match_end;2857const char*patch = frag->patch;2858int size = frag->size;2859char*old, *oldlines;2860struct strbuf newlines;2861int new_blank_lines_at_end =0;2862int found_new_blank_lines_at_end =0;2863int hunk_linenr = frag->linenr;2864unsigned long leading, trailing;2865int pos, applied_pos;2866struct image preimage;2867struct image postimage;28682869memset(&preimage,0,sizeof(preimage));2870memset(&postimage,0,sizeof(postimage));2871 oldlines =xmalloc(size);2872strbuf_init(&newlines, size);28732874 old = oldlines;2875while(size >0) {2876char first;2877int len =linelen(patch, size);2878int plen;2879int added_blank_line =0;2880int is_blank_context =0;2881size_t start;28822883if(!len)2884break;28852886/*2887 * "plen" is how much of the line we should use for2888 * the actual patch data. Normally we just remove the2889 * first character on the line, but if the line is2890 * followed by "\ No newline", then we also remove the2891 * last one (which is the newline, of course).2892 */2893 plen = len -1;2894if(len < size && patch[len] =='\\')2895 plen--;2896 first = *patch;2897if(state->apply_in_reverse) {2898if(first =='-')2899 first ='+';2900else if(first =='+')2901 first ='-';2902}29032904switch(first) {2905case'\n':2906/* Newer GNU diff, empty context line */2907if(plen <0)2908/* ... followed by '\No newline'; nothing */2909break;2910*old++ ='\n';2911strbuf_addch(&newlines,'\n');2912add_line_info(&preimage,"\n",1, LINE_COMMON);2913add_line_info(&postimage,"\n",1, LINE_COMMON);2914 is_blank_context =1;2915break;2916case' ':2917if(plen && (ws_rule & WS_BLANK_AT_EOF) &&2918ws_blank_line(patch +1, plen, ws_rule))2919 is_blank_context =1;2920case'-':2921memcpy(old, patch +1, plen);2922add_line_info(&preimage, old, plen,2923(first ==' '? LINE_COMMON :0));2924 old += plen;2925if(first =='-')2926break;2927/* Fall-through for ' ' */2928case'+':2929/* --no-add does not add new lines */2930if(first =='+'&& state->no_add)2931break;29322933 start = newlines.len;2934if(first !='+'||2935!state->whitespace_error ||2936 state->ws_error_action != correct_ws_error) {2937strbuf_add(&newlines, patch +1, plen);2938}2939else{2940ws_fix_copy(&newlines, patch +1, plen, ws_rule, &state->applied_after_fixing_ws);2941}2942add_line_info(&postimage, newlines.buf + start, newlines.len - start,2943(first =='+'?0: LINE_COMMON));2944if(first =='+'&&2945(ws_rule & WS_BLANK_AT_EOF) &&2946ws_blank_line(patch +1, plen, ws_rule))2947 added_blank_line =1;2948break;2949case'@':case'\\':2950/* Ignore it, we already handled it */2951break;2952default:2953if(state->apply_verbosity > verbosity_normal)2954error(_("invalid start of line: '%c'"), first);2955 applied_pos = -1;2956goto out;2957}2958if(added_blank_line) {2959if(!new_blank_lines_at_end)2960 found_new_blank_lines_at_end = hunk_linenr;2961 new_blank_lines_at_end++;2962}2963else if(is_blank_context)2964;2965else2966 new_blank_lines_at_end =0;2967 patch += len;2968 size -= len;2969 hunk_linenr++;2970}2971if(inaccurate_eof &&2972 old > oldlines && old[-1] =='\n'&&2973 newlines.len >0&& newlines.buf[newlines.len -1] =='\n') {2974 old--;2975strbuf_setlen(&newlines, newlines.len -1);2976}29772978 leading = frag->leading;2979 trailing = frag->trailing;29802981/*2982 * A hunk to change lines at the beginning would begin with2983 * @@ -1,L +N,M @@2984 * but we need to be careful. -U0 that inserts before the second2985 * line also has this pattern.2986 *2987 * And a hunk to add to an empty file would begin with2988 * @@ -0,0 +N,M @@2989 *2990 * In other words, a hunk that is (frag->oldpos <= 1) with or2991 * without leading context must match at the beginning.2992 */2993 match_beginning = (!frag->oldpos ||2994(frag->oldpos ==1&& !state->unidiff_zero));29952996/*2997 * A hunk without trailing lines must match at the end.2998 * However, we simply cannot tell if a hunk must match end2999 * from the lack of trailing lines if the patch was generated3000 * with unidiff without any context.3001 */3002 match_end = !state->unidiff_zero && !trailing;30033004 pos = frag->newpos ? (frag->newpos -1) :0;3005 preimage.buf = oldlines;3006 preimage.len = old - oldlines;3007 postimage.buf = newlines.buf;3008 postimage.len = newlines.len;3009 preimage.line = preimage.line_allocated;3010 postimage.line = postimage.line_allocated;30113012for(;;) {30133014 applied_pos =find_pos(state, img, &preimage, &postimage, pos,3015 ws_rule, match_beginning, match_end);30163017if(applied_pos >=0)3018break;30193020/* Am I at my context limits? */3021if((leading <= state->p_context) && (trailing <= state->p_context))3022break;3023if(match_beginning || match_end) {3024 match_beginning = match_end =0;3025continue;3026}30273028/*3029 * Reduce the number of context lines; reduce both3030 * leading and trailing if they are equal otherwise3031 * just reduce the larger context.3032 */3033if(leading >= trailing) {3034remove_first_line(&preimage);3035remove_first_line(&postimage);3036 pos--;3037 leading--;3038}3039if(trailing > leading) {3040remove_last_line(&preimage);3041remove_last_line(&postimage);3042 trailing--;3043}3044}30453046if(applied_pos >=0) {3047if(new_blank_lines_at_end &&3048 preimage.nr + applied_pos >= img->nr &&3049(ws_rule & WS_BLANK_AT_EOF) &&3050 state->ws_error_action != nowarn_ws_error) {3051record_ws_error(state, WS_BLANK_AT_EOF,"+",1,3052 found_new_blank_lines_at_end);3053if(state->ws_error_action == correct_ws_error) {3054while(new_blank_lines_at_end--)3055remove_last_line(&postimage);3056}3057/*3058 * We would want to prevent write_out_results()3059 * from taking place in apply_patch() that follows3060 * the callchain led us here, which is:3061 * apply_patch->check_patch_list->check_patch->3062 * apply_data->apply_fragments->apply_one_fragment3063 */3064if(state->ws_error_action == die_on_ws_error)3065 state->apply =0;3066}30673068if(state->apply_verbosity > verbosity_normal && applied_pos != pos) {3069int offset = applied_pos - pos;3070if(state->apply_in_reverse)3071 offset =0- offset;3072fprintf_ln(stderr,3073Q_("Hunk #%dsucceeded at%d(offset%dline).",3074"Hunk #%dsucceeded at%d(offset%dlines).",3075 offset),3076 nth_fragment, applied_pos +1, offset);3077}30783079/*3080 * Warn if it was necessary to reduce the number3081 * of context lines.3082 */3083if((leading != frag->leading ||3084 trailing != frag->trailing) && state->apply_verbosity > verbosity_silent)3085fprintf_ln(stderr,_("Context reduced to (%ld/%ld)"3086" to apply fragment at%d"),3087 leading, trailing, applied_pos+1);3088update_image(state, img, applied_pos, &preimage, &postimage);3089}else{3090if(state->apply_verbosity > verbosity_normal)3091error(_("while searching for:\n%.*s"),3092(int)(old - oldlines), oldlines);3093}30943095out:3096free(oldlines);3097strbuf_release(&newlines);3098free(preimage.line_allocated);3099free(postimage.line_allocated);31003101return(applied_pos <0);3102}31033104static intapply_binary_fragment(struct apply_state *state,3105struct image *img,3106struct patch *patch)3107{3108struct fragment *fragment = patch->fragments;3109unsigned long len;3110void*dst;31113112if(!fragment)3113returnerror(_("missing binary patch data for '%s'"),3114 patch->new_name ?3115 patch->new_name :3116 patch->old_name);31173118/* Binary patch is irreversible without the optional second hunk */3119if(state->apply_in_reverse) {3120if(!fragment->next)3121returnerror(_("cannot reverse-apply a binary patch "3122"without the reverse hunk to '%s'"),3123 patch->new_name3124? patch->new_name : patch->old_name);3125 fragment = fragment->next;3126}3127switch(fragment->binary_patch_method) {3128case BINARY_DELTA_DEFLATED:3129 dst =patch_delta(img->buf, img->len, fragment->patch,3130 fragment->size, &len);3131if(!dst)3132return-1;3133clear_image(img);3134 img->buf = dst;3135 img->len = len;3136return0;3137case BINARY_LITERAL_DEFLATED:3138clear_image(img);3139 img->len = fragment->size;3140 img->buf =xmemdupz(fragment->patch, img->len);3141return0;3142}3143return-1;3144}31453146/*3147 * Replace "img" with the result of applying the binary patch.3148 * The binary patch data itself in patch->fragment is still kept3149 * but the preimage prepared by the caller in "img" is freed here3150 * or in the helper function apply_binary_fragment() this calls.3151 */3152static intapply_binary(struct apply_state *state,3153struct image *img,3154struct patch *patch)3155{3156const char*name = patch->old_name ? patch->old_name : patch->new_name;3157struct object_id oid;31583159/*3160 * For safety, we require patch index line to contain3161 * full 40-byte textual SHA1 for old and new, at least for now.3162 */3163if(strlen(patch->old_sha1_prefix) !=40||3164strlen(patch->new_sha1_prefix) !=40||3165get_oid_hex(patch->old_sha1_prefix, &oid) ||3166get_oid_hex(patch->new_sha1_prefix, &oid))3167returnerror(_("cannot apply binary patch to '%s' "3168"without full index line"), name);31693170if(patch->old_name) {3171/*3172 * See if the old one matches what the patch3173 * applies to.3174 */3175hash_sha1_file(img->buf, img->len, blob_type, oid.hash);3176if(strcmp(oid_to_hex(&oid), patch->old_sha1_prefix))3177returnerror(_("the patch applies to '%s' (%s), "3178"which does not match the "3179"current contents."),3180 name,oid_to_hex(&oid));3181}3182else{3183/* Otherwise, the old one must be empty. */3184if(img->len)3185returnerror(_("the patch applies to an empty "3186"'%s' but it is not empty"), name);3187}31883189get_oid_hex(patch->new_sha1_prefix, &oid);3190if(is_null_oid(&oid)) {3191clear_image(img);3192return0;/* deletion patch */3193}31943195if(has_sha1_file(oid.hash)) {3196/* We already have the postimage */3197enum object_type type;3198unsigned long size;3199char*result;32003201 result =read_sha1_file(oid.hash, &type, &size);3202if(!result)3203returnerror(_("the necessary postimage%sfor "3204"'%s' cannot be read"),3205 patch->new_sha1_prefix, name);3206clear_image(img);3207 img->buf = result;3208 img->len = size;3209}else{3210/*3211 * We have verified buf matches the preimage;3212 * apply the patch data to it, which is stored3213 * in the patch->fragments->{patch,size}.3214 */3215if(apply_binary_fragment(state, img, patch))3216returnerror(_("binary patch does not apply to '%s'"),3217 name);32183219/* verify that the result matches */3220hash_sha1_file(img->buf, img->len, blob_type, oid.hash);3221if(strcmp(oid_to_hex(&oid), patch->new_sha1_prefix))3222returnerror(_("binary patch to '%s' creates incorrect result (expecting%s, got%s)"),3223 name, patch->new_sha1_prefix,oid_to_hex(&oid));3224}32253226return0;3227}32283229static intapply_fragments(struct apply_state *state,struct image *img,struct patch *patch)3230{3231struct fragment *frag = patch->fragments;3232const char*name = patch->old_name ? patch->old_name : patch->new_name;3233unsigned ws_rule = patch->ws_rule;3234unsigned inaccurate_eof = patch->inaccurate_eof;3235int nth =0;32363237if(patch->is_binary)3238returnapply_binary(state, img, patch);32393240while(frag) {3241 nth++;3242if(apply_one_fragment(state, img, frag, inaccurate_eof, ws_rule, nth)) {3243error(_("patch failed:%s:%ld"), name, frag->oldpos);3244if(!state->apply_with_reject)3245return-1;3246 frag->rejected =1;3247}3248 frag = frag->next;3249}3250return0;3251}32523253static intread_blob_object(struct strbuf *buf,const struct object_id *oid,unsigned mode)3254{3255if(S_ISGITLINK(mode)) {3256strbuf_grow(buf,100);3257strbuf_addf(buf,"Subproject commit%s\n",oid_to_hex(oid));3258}else{3259enum object_type type;3260unsigned long sz;3261char*result;32623263 result =read_sha1_file(oid->hash, &type, &sz);3264if(!result)3265return-1;3266/* XXX read_sha1_file NUL-terminates */3267strbuf_attach(buf, result, sz, sz +1);3268}3269return0;3270}32713272static intread_file_or_gitlink(const struct cache_entry *ce,struct strbuf *buf)3273{3274if(!ce)3275return0;3276returnread_blob_object(buf, &ce->oid, ce->ce_mode);3277}32783279static struct patch *in_fn_table(struct apply_state *state,const char*name)3280{3281struct string_list_item *item;32823283if(name == NULL)3284return NULL;32853286 item =string_list_lookup(&state->fn_table, name);3287if(item != NULL)3288return(struct patch *)item->util;32893290return NULL;3291}32923293/*3294 * item->util in the filename table records the status of the path.3295 * Usually it points at a patch (whose result records the contents3296 * of it after applying it), but it could be PATH_WAS_DELETED for a3297 * path that a previously applied patch has already removed, or3298 * PATH_TO_BE_DELETED for a path that a later patch would remove.3299 *3300 * The latter is needed to deal with a case where two paths A and B3301 * are swapped by first renaming A to B and then renaming B to A;3302 * moving A to B should not be prevented due to presence of B as we3303 * will remove it in a later patch.3304 */3305#define PATH_TO_BE_DELETED ((struct patch *) -2)3306#define PATH_WAS_DELETED ((struct patch *) -1)33073308static intto_be_deleted(struct patch *patch)3309{3310return patch == PATH_TO_BE_DELETED;3311}33123313static intwas_deleted(struct patch *patch)3314{3315return patch == PATH_WAS_DELETED;3316}33173318static voidadd_to_fn_table(struct apply_state *state,struct patch *patch)3319{3320struct string_list_item *item;33213322/*3323 * Always add new_name unless patch is a deletion3324 * This should cover the cases for normal diffs,3325 * file creations and copies3326 */3327if(patch->new_name != NULL) {3328 item =string_list_insert(&state->fn_table, patch->new_name);3329 item->util = patch;3330}33313332/*3333 * store a failure on rename/deletion cases because3334 * later chunks shouldn't patch old names3335 */3336if((patch->new_name == NULL) || (patch->is_rename)) {3337 item =string_list_insert(&state->fn_table, patch->old_name);3338 item->util = PATH_WAS_DELETED;3339}3340}33413342static voidprepare_fn_table(struct apply_state *state,struct patch *patch)3343{3344/*3345 * store information about incoming file deletion3346 */3347while(patch) {3348if((patch->new_name == NULL) || (patch->is_rename)) {3349struct string_list_item *item;3350 item =string_list_insert(&state->fn_table, patch->old_name);3351 item->util = PATH_TO_BE_DELETED;3352}3353 patch = patch->next;3354}3355}33563357static intcheckout_target(struct index_state *istate,3358struct cache_entry *ce,struct stat *st)3359{3360struct checkout costate = CHECKOUT_INIT;33613362 costate.refresh_cache =1;3363 costate.istate = istate;3364if(checkout_entry(ce, &costate, NULL) ||lstat(ce->name, st))3365returnerror(_("cannot checkout%s"), ce->name);3366return0;3367}33683369static struct patch *previous_patch(struct apply_state *state,3370struct patch *patch,3371int*gone)3372{3373struct patch *previous;33743375*gone =0;3376if(patch->is_copy || patch->is_rename)3377return NULL;/* "git" patches do not depend on the order */33783379 previous =in_fn_table(state, patch->old_name);3380if(!previous)3381return NULL;33823383if(to_be_deleted(previous))3384return NULL;/* the deletion hasn't happened yet */33853386if(was_deleted(previous))3387*gone =1;33883389return previous;3390}33913392static intverify_index_match(const struct cache_entry *ce,struct stat *st)3393{3394if(S_ISGITLINK(ce->ce_mode)) {3395if(!S_ISDIR(st->st_mode))3396return-1;3397return0;3398}3399returnce_match_stat(ce, st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);3400}34013402#define SUBMODULE_PATCH_WITHOUT_INDEX 134033404static intload_patch_target(struct apply_state *state,3405struct strbuf *buf,3406const struct cache_entry *ce,3407struct stat *st,3408const char*name,3409unsigned expected_mode)3410{3411if(state->cached || state->check_index) {3412if(read_file_or_gitlink(ce, buf))3413returnerror(_("failed to read%s"), name);3414}else if(name) {3415if(S_ISGITLINK(expected_mode)) {3416if(ce)3417returnread_file_or_gitlink(ce, buf);3418else3419return SUBMODULE_PATCH_WITHOUT_INDEX;3420}else if(has_symlink_leading_path(name,strlen(name))) {3421returnerror(_("reading from '%s' beyond a symbolic link"), name);3422}else{3423if(read_old_data(st, name, buf))3424returnerror(_("failed to read%s"), name);3425}3426}3427return0;3428}34293430/*3431 * We are about to apply "patch"; populate the "image" with the3432 * current version we have, from the working tree or from the index,3433 * depending on the situation e.g. --cached/--index. If we are3434 * applying a non-git patch that incrementally updates the tree,3435 * we read from the result of a previous diff.3436 */3437static intload_preimage(struct apply_state *state,3438struct image *image,3439struct patch *patch,struct stat *st,3440const struct cache_entry *ce)3441{3442struct strbuf buf = STRBUF_INIT;3443size_t len;3444char*img;3445struct patch *previous;3446int status;34473448 previous =previous_patch(state, patch, &status);3449if(status)3450returnerror(_("path%shas been renamed/deleted"),3451 patch->old_name);3452if(previous) {3453/* We have a patched copy in memory; use that. */3454strbuf_add(&buf, previous->result, previous->resultsize);3455}else{3456 status =load_patch_target(state, &buf, ce, st,3457 patch->old_name, patch->old_mode);3458if(status <0)3459return status;3460else if(status == SUBMODULE_PATCH_WITHOUT_INDEX) {3461/*3462 * There is no way to apply subproject3463 * patch without looking at the index.3464 * NEEDSWORK: shouldn't this be flagged3465 * as an error???3466 */3467free_fragment_list(patch->fragments);3468 patch->fragments = NULL;3469}else if(status) {3470returnerror(_("failed to read%s"), patch->old_name);3471}3472}34733474 img =strbuf_detach(&buf, &len);3475prepare_image(image, img, len, !patch->is_binary);3476return0;3477}34783479static intthree_way_merge(struct image *image,3480char*path,3481const struct object_id *base,3482const struct object_id *ours,3483const struct object_id *theirs)3484{3485 mmfile_t base_file, our_file, their_file;3486 mmbuffer_t result = { NULL };3487int status;34883489read_mmblob(&base_file, base);3490read_mmblob(&our_file, ours);3491read_mmblob(&their_file, theirs);3492 status =ll_merge(&result, path,3493&base_file,"base",3494&our_file,"ours",3495&their_file,"theirs", NULL);3496free(base_file.ptr);3497free(our_file.ptr);3498free(their_file.ptr);3499if(status <0|| !result.ptr) {3500free(result.ptr);3501return-1;3502}3503clear_image(image);3504 image->buf = result.ptr;3505 image->len = result.size;35063507return status;3508}35093510/*3511 * When directly falling back to add/add three-way merge, we read from3512 * the current contents of the new_name. In no cases other than that3513 * this function will be called.3514 */3515static intload_current(struct apply_state *state,3516struct image *image,3517struct patch *patch)3518{3519struct strbuf buf = STRBUF_INIT;3520int status, pos;3521size_t len;3522char*img;3523struct stat st;3524struct cache_entry *ce;3525char*name = patch->new_name;3526unsigned mode = patch->new_mode;35273528if(!patch->is_new)3529die("BUG: patch to%sis not a creation", patch->old_name);35303531 pos =cache_name_pos(name,strlen(name));3532if(pos <0)3533returnerror(_("%s: does not exist in index"), name);3534 ce = active_cache[pos];3535if(lstat(name, &st)) {3536if(errno != ENOENT)3537returnerror_errno("%s", name);3538if(checkout_target(&the_index, ce, &st))3539return-1;3540}3541if(verify_index_match(ce, &st))3542returnerror(_("%s: does not match index"), name);35433544 status =load_patch_target(state, &buf, ce, &st, name, mode);3545if(status <0)3546return status;3547else if(status)3548return-1;3549 img =strbuf_detach(&buf, &len);3550prepare_image(image, img, len, !patch->is_binary);3551return0;3552}35533554static inttry_threeway(struct apply_state *state,3555struct image *image,3556struct patch *patch,3557struct stat *st,3558const struct cache_entry *ce)3559{3560struct object_id pre_oid, post_oid, our_oid;3561struct strbuf buf = STRBUF_INIT;3562size_t len;3563int status;3564char*img;3565struct image tmp_image;35663567/* No point falling back to 3-way merge in these cases */3568if(patch->is_delete ||3569S_ISGITLINK(patch->old_mode) ||S_ISGITLINK(patch->new_mode))3570return-1;35713572/* Preimage the patch was prepared for */3573if(patch->is_new)3574write_sha1_file("",0, blob_type, pre_oid.hash);3575else if(get_sha1(patch->old_sha1_prefix, pre_oid.hash) ||3576read_blob_object(&buf, &pre_oid, patch->old_mode))3577returnerror(_("repository lacks the necessary blob to fall back on 3-way merge."));35783579if(state->apply_verbosity > verbosity_silent)3580fprintf(stderr,_("Falling back to three-way merge...\n"));35813582 img =strbuf_detach(&buf, &len);3583prepare_image(&tmp_image, img, len,1);3584/* Apply the patch to get the post image */3585if(apply_fragments(state, &tmp_image, patch) <0) {3586clear_image(&tmp_image);3587return-1;3588}3589/* post_oid is theirs */3590write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, post_oid.hash);3591clear_image(&tmp_image);35923593/* our_oid is ours */3594if(patch->is_new) {3595if(load_current(state, &tmp_image, patch))3596returnerror(_("cannot read the current contents of '%s'"),3597 patch->new_name);3598}else{3599if(load_preimage(state, &tmp_image, patch, st, ce))3600returnerror(_("cannot read the current contents of '%s'"),3601 patch->old_name);3602}3603write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, our_oid.hash);3604clear_image(&tmp_image);36053606/* in-core three-way merge between post and our using pre as base */3607 status =three_way_merge(image, patch->new_name,3608&pre_oid, &our_oid, &post_oid);3609if(status <0) {3610if(state->apply_verbosity > verbosity_silent)3611fprintf(stderr,3612_("Failed to fall back on three-way merge...\n"));3613return status;3614}36153616if(status) {3617 patch->conflicted_threeway =1;3618if(patch->is_new)3619oidclr(&patch->threeway_stage[0]);3620else3621oidcpy(&patch->threeway_stage[0], &pre_oid);3622oidcpy(&patch->threeway_stage[1], &our_oid);3623oidcpy(&patch->threeway_stage[2], &post_oid);3624if(state->apply_verbosity > verbosity_silent)3625fprintf(stderr,3626_("Applied patch to '%s' with conflicts.\n"),3627 patch->new_name);3628}else{3629if(state->apply_verbosity > verbosity_silent)3630fprintf(stderr,3631_("Applied patch to '%s' cleanly.\n"),3632 patch->new_name);3633}3634return0;3635}36363637static intapply_data(struct apply_state *state,struct patch *patch,3638struct stat *st,const struct cache_entry *ce)3639{3640struct image image;36413642if(load_preimage(state, &image, patch, st, ce) <0)3643return-1;36443645if(patch->direct_to_threeway ||3646apply_fragments(state, &image, patch) <0) {3647/* Note: with --reject, apply_fragments() returns 0 */3648if(!state->threeway ||try_threeway(state, &image, patch, st, ce) <0)3649return-1;3650}3651 patch->result = image.buf;3652 patch->resultsize = image.len;3653add_to_fn_table(state, patch);3654free(image.line_allocated);36553656if(0< patch->is_delete && patch->resultsize)3657returnerror(_("removal patch leaves file contents"));36583659return0;3660}36613662/*3663 * If "patch" that we are looking at modifies or deletes what we have,3664 * we would want it not to lose any local modification we have, either3665 * in the working tree or in the index.3666 *3667 * This also decides if a non-git patch is a creation patch or a3668 * modification to an existing empty file. We do not check the state3669 * of the current tree for a creation patch in this function; the caller3670 * check_patch() separately makes sure (and errors out otherwise) that3671 * the path the patch creates does not exist in the current tree.3672 */3673static intcheck_preimage(struct apply_state *state,3674struct patch *patch,3675struct cache_entry **ce,3676struct stat *st)3677{3678const char*old_name = patch->old_name;3679struct patch *previous = NULL;3680int stat_ret =0, status;3681unsigned st_mode =0;36823683if(!old_name)3684return0;36853686assert(patch->is_new <=0);3687 previous =previous_patch(state, patch, &status);36883689if(status)3690returnerror(_("path%shas been renamed/deleted"), old_name);3691if(previous) {3692 st_mode = previous->new_mode;3693}else if(!state->cached) {3694 stat_ret =lstat(old_name, st);3695if(stat_ret && errno != ENOENT)3696returnerror_errno("%s", old_name);3697}36983699if(state->check_index && !previous) {3700int pos =cache_name_pos(old_name,strlen(old_name));3701if(pos <0) {3702if(patch->is_new <0)3703goto is_new;3704returnerror(_("%s: does not exist in index"), old_name);3705}3706*ce = active_cache[pos];3707if(stat_ret <0) {3708if(checkout_target(&the_index, *ce, st))3709return-1;3710}3711if(!state->cached &&verify_index_match(*ce, st))3712returnerror(_("%s: does not match index"), old_name);3713if(state->cached)3714 st_mode = (*ce)->ce_mode;3715}else if(stat_ret <0) {3716if(patch->is_new <0)3717goto is_new;3718returnerror_errno("%s", old_name);3719}37203721if(!state->cached && !previous)3722 st_mode =ce_mode_from_stat(*ce, st->st_mode);37233724if(patch->is_new <0)3725 patch->is_new =0;3726if(!patch->old_mode)3727 patch->old_mode = st_mode;3728if((st_mode ^ patch->old_mode) & S_IFMT)3729returnerror(_("%s: wrong type"), old_name);3730if(st_mode != patch->old_mode)3731warning(_("%shas type%o, expected%o"),3732 old_name, st_mode, patch->old_mode);3733if(!patch->new_mode && !patch->is_delete)3734 patch->new_mode = st_mode;3735return0;37363737 is_new:3738 patch->is_new =1;3739 patch->is_delete =0;3740free(patch->old_name);3741 patch->old_name = NULL;3742return0;3743}374437453746#define EXISTS_IN_INDEX 13747#define EXISTS_IN_WORKTREE 237483749static intcheck_to_create(struct apply_state *state,3750const char*new_name,3751int ok_if_exists)3752{3753struct stat nst;37543755if(state->check_index &&3756cache_name_pos(new_name,strlen(new_name)) >=0&&3757!ok_if_exists)3758return EXISTS_IN_INDEX;3759if(state->cached)3760return0;37613762if(!lstat(new_name, &nst)) {3763if(S_ISDIR(nst.st_mode) || ok_if_exists)3764return0;3765/*3766 * A leading component of new_name might be a symlink3767 * that is going to be removed with this patch, but3768 * still pointing at somewhere that has the path.3769 * In such a case, path "new_name" does not exist as3770 * far as git is concerned.3771 */3772if(has_symlink_leading_path(new_name,strlen(new_name)))3773return0;37743775return EXISTS_IN_WORKTREE;3776}else if((errno != ENOENT) && (errno != ENOTDIR)) {3777returnerror_errno("%s", new_name);3778}3779return0;3780}37813782static uintptr_tregister_symlink_changes(struct apply_state *state,3783const char*path,3784uintptr_t what)3785{3786struct string_list_item *ent;37873788 ent =string_list_lookup(&state->symlink_changes, path);3789if(!ent) {3790 ent =string_list_insert(&state->symlink_changes, path);3791 ent->util = (void*)0;3792}3793 ent->util = (void*)(what | ((uintptr_t)ent->util));3794return(uintptr_t)ent->util;3795}37963797static uintptr_tcheck_symlink_changes(struct apply_state *state,const char*path)3798{3799struct string_list_item *ent;38003801 ent =string_list_lookup(&state->symlink_changes, path);3802if(!ent)3803return0;3804return(uintptr_t)ent->util;3805}38063807static voidprepare_symlink_changes(struct apply_state *state,struct patch *patch)3808{3809for( ; patch; patch = patch->next) {3810if((patch->old_name &&S_ISLNK(patch->old_mode)) &&3811(patch->is_rename || patch->is_delete))3812/* the symlink at patch->old_name is removed */3813register_symlink_changes(state, patch->old_name, APPLY_SYMLINK_GOES_AWAY);38143815if(patch->new_name &&S_ISLNK(patch->new_mode))3816/* the symlink at patch->new_name is created or remains */3817register_symlink_changes(state, patch->new_name, APPLY_SYMLINK_IN_RESULT);3818}3819}38203821static intpath_is_beyond_symlink_1(struct apply_state *state,struct strbuf *name)3822{3823do{3824unsigned int change;38253826while(--name->len && name->buf[name->len] !='/')3827;/* scan backwards */3828if(!name->len)3829break;3830 name->buf[name->len] ='\0';3831 change =check_symlink_changes(state, name->buf);3832if(change & APPLY_SYMLINK_IN_RESULT)3833return1;3834if(change & APPLY_SYMLINK_GOES_AWAY)3835/*3836 * This cannot be "return 0", because we may3837 * see a new one created at a higher level.3838 */3839continue;38403841/* otherwise, check the preimage */3842if(state->check_index) {3843struct cache_entry *ce;38443845 ce =cache_file_exists(name->buf, name->len, ignore_case);3846if(ce &&S_ISLNK(ce->ce_mode))3847return1;3848}else{3849struct stat st;3850if(!lstat(name->buf, &st) &&S_ISLNK(st.st_mode))3851return1;3852}3853}while(1);3854return0;3855}38563857static intpath_is_beyond_symlink(struct apply_state *state,const char*name_)3858{3859int ret;3860struct strbuf name = STRBUF_INIT;38613862assert(*name_ !='\0');3863strbuf_addstr(&name, name_);3864 ret =path_is_beyond_symlink_1(state, &name);3865strbuf_release(&name);38663867return ret;3868}38693870static intcheck_unsafe_path(struct patch *patch)3871{3872const char*old_name = NULL;3873const char*new_name = NULL;3874if(patch->is_delete)3875 old_name = patch->old_name;3876else if(!patch->is_new && !patch->is_copy)3877 old_name = patch->old_name;3878if(!patch->is_delete)3879 new_name = patch->new_name;38803881if(old_name && !verify_path(old_name))3882returnerror(_("invalid path '%s'"), old_name);3883if(new_name && !verify_path(new_name))3884returnerror(_("invalid path '%s'"), new_name);3885return0;3886}38873888/*3889 * Check and apply the patch in-core; leave the result in patch->result3890 * for the caller to write it out to the final destination.3891 */3892static intcheck_patch(struct apply_state *state,struct patch *patch)3893{3894struct stat st;3895const char*old_name = patch->old_name;3896const char*new_name = patch->new_name;3897const char*name = old_name ? old_name : new_name;3898struct cache_entry *ce = NULL;3899struct patch *tpatch;3900int ok_if_exists;3901int status;39023903 patch->rejected =1;/* we will drop this after we succeed */39043905 status =check_preimage(state, patch, &ce, &st);3906if(status)3907return status;3908 old_name = patch->old_name;39093910/*3911 * A type-change diff is always split into a patch to delete3912 * old, immediately followed by a patch to create new (see3913 * diff.c::run_diff()); in such a case it is Ok that the entry3914 * to be deleted by the previous patch is still in the working3915 * tree and in the index.3916 *3917 * A patch to swap-rename between A and B would first rename A3918 * to B and then rename B to A. While applying the first one,3919 * the presence of B should not stop A from getting renamed to3920 * B; ask to_be_deleted() about the later rename. Removal of3921 * B and rename from A to B is handled the same way by asking3922 * was_deleted().3923 */3924if((tpatch =in_fn_table(state, new_name)) &&3925(was_deleted(tpatch) ||to_be_deleted(tpatch)))3926 ok_if_exists =1;3927else3928 ok_if_exists =0;39293930if(new_name &&3931((0< patch->is_new) || patch->is_rename || patch->is_copy)) {3932int err =check_to_create(state, new_name, ok_if_exists);39333934if(err && state->threeway) {3935 patch->direct_to_threeway =1;3936}else switch(err) {3937case0:3938break;/* happy */3939case EXISTS_IN_INDEX:3940returnerror(_("%s: already exists in index"), new_name);3941break;3942case EXISTS_IN_WORKTREE:3943returnerror(_("%s: already exists in working directory"),3944 new_name);3945default:3946return err;3947}39483949if(!patch->new_mode) {3950if(0< patch->is_new)3951 patch->new_mode = S_IFREG |0644;3952else3953 patch->new_mode = patch->old_mode;3954}3955}39563957if(new_name && old_name) {3958int same = !strcmp(old_name, new_name);3959if(!patch->new_mode)3960 patch->new_mode = patch->old_mode;3961if((patch->old_mode ^ patch->new_mode) & S_IFMT) {3962if(same)3963returnerror(_("new mode (%o) of%sdoes not "3964"match old mode (%o)"),3965 patch->new_mode, new_name,3966 patch->old_mode);3967else3968returnerror(_("new mode (%o) of%sdoes not "3969"match old mode (%o) of%s"),3970 patch->new_mode, new_name,3971 patch->old_mode, old_name);3972}3973}39743975if(!state->unsafe_paths &&check_unsafe_path(patch))3976return-128;39773978/*3979 * An attempt to read from or delete a path that is beyond a3980 * symbolic link will be prevented by load_patch_target() that3981 * is called at the beginning of apply_data() so we do not3982 * have to worry about a patch marked with "is_delete" bit3983 * here. We however need to make sure that the patch result3984 * is not deposited to a path that is beyond a symbolic link3985 * here.3986 */3987if(!patch->is_delete &&path_is_beyond_symlink(state, patch->new_name))3988returnerror(_("affected file '%s' is beyond a symbolic link"),3989 patch->new_name);39903991if(apply_data(state, patch, &st, ce) <0)3992returnerror(_("%s: patch does not apply"), name);3993 patch->rejected =0;3994return0;3995}39963997static intcheck_patch_list(struct apply_state *state,struct patch *patch)3998{3999int err =0;40004001prepare_symlink_changes(state, patch);4002prepare_fn_table(state, patch);4003while(patch) {4004int res;4005if(state->apply_verbosity > verbosity_normal)4006say_patch_name(stderr,4007_("Checking patch%s..."), patch);4008 res =check_patch(state, patch);4009if(res == -128)4010return-128;4011 err |= res;4012 patch = patch->next;4013}4014return err;4015}40164017static intread_apply_cache(struct apply_state *state)4018{4019if(state->index_file)4020returnread_cache_from(state->index_file);4021else4022returnread_cache();4023}40244025/* This function tries to read the object name from the current index */4026static intget_current_oid(struct apply_state *state,const char*path,4027struct object_id *oid)4028{4029int pos;40304031if(read_apply_cache(state) <0)4032return-1;4033 pos =cache_name_pos(path,strlen(path));4034if(pos <0)4035return-1;4036oidcpy(oid, &active_cache[pos]->oid);4037return0;4038}40394040static intpreimage_oid_in_gitlink_patch(struct patch *p,struct object_id *oid)4041{4042/*4043 * A usable gitlink patch has only one fragment (hunk) that looks like:4044 * @@ -1 +1 @@4045 * -Subproject commit <old sha1>4046 * +Subproject commit <new sha1>4047 * or4048 * @@ -1 +0,0 @@4049 * -Subproject commit <old sha1>4050 * for a removal patch.4051 */4052struct fragment *hunk = p->fragments;4053static const char heading[] ="-Subproject commit ";4054char*preimage;40554056if(/* does the patch have only one hunk? */4057 hunk && !hunk->next &&4058/* is its preimage one line? */4059 hunk->oldpos ==1&& hunk->oldlines ==1&&4060/* does preimage begin with the heading? */4061(preimage =memchr(hunk->patch,'\n', hunk->size)) != NULL &&4062starts_with(++preimage, heading) &&4063/* does it record full SHA-1? */4064!get_oid_hex(preimage +sizeof(heading) -1, oid) &&4065 preimage[sizeof(heading) + GIT_SHA1_HEXSZ -1] =='\n'&&4066/* does the abbreviated name on the index line agree with it? */4067starts_with(preimage +sizeof(heading) -1, p->old_sha1_prefix))4068return0;/* it all looks fine */40694070/* we may have full object name on the index line */4071returnget_oid_hex(p->old_sha1_prefix, oid);4072}40734074/* Build an index that contains the just the files needed for a 3way merge */4075static intbuild_fake_ancestor(struct apply_state *state,struct patch *list)4076{4077struct patch *patch;4078struct index_state result = { NULL };4079static struct lock_file lock;4080int res;40814082/* Once we start supporting the reverse patch, it may be4083 * worth showing the new sha1 prefix, but until then...4084 */4085for(patch = list; patch; patch = patch->next) {4086struct object_id oid;4087struct cache_entry *ce;4088const char*name;40894090 name = patch->old_name ? patch->old_name : patch->new_name;4091if(0< patch->is_new)4092continue;40934094if(S_ISGITLINK(patch->old_mode)) {4095if(!preimage_oid_in_gitlink_patch(patch, &oid))4096;/* ok, the textual part looks sane */4097else4098returnerror(_("sha1 information is lacking or "4099"useless for submodule%s"), name);4100}else if(!get_sha1_blob(patch->old_sha1_prefix, oid.hash)) {4101;/* ok */4102}else if(!patch->lines_added && !patch->lines_deleted) {4103/* mode-only change: update the current */4104if(get_current_oid(state, patch->old_name, &oid))4105returnerror(_("mode change for%s, which is not "4106"in current HEAD"), name);4107}else4108returnerror(_("sha1 information is lacking or useless "4109"(%s)."), name);41104111 ce =make_cache_entry(patch->old_mode, oid.hash, name,0,0);4112if(!ce)4113returnerror(_("make_cache_entry failed for path '%s'"),4114 name);4115if(add_index_entry(&result, ce, ADD_CACHE_OK_TO_ADD)) {4116free(ce);4117returnerror(_("could not add%sto temporary index"),4118 name);4119}4120}41214122hold_lock_file_for_update(&lock, state->fake_ancestor, LOCK_DIE_ON_ERROR);4123 res =write_locked_index(&result, &lock, COMMIT_LOCK);4124discard_index(&result);41254126if(res)4127returnerror(_("could not write temporary index to%s"),4128 state->fake_ancestor);41294130return0;4131}41324133static voidstat_patch_list(struct apply_state *state,struct patch *patch)4134{4135int files, adds, dels;41364137for(files = adds = dels =0; patch ; patch = patch->next) {4138 files++;4139 adds += patch->lines_added;4140 dels += patch->lines_deleted;4141show_stats(state, patch);4142}41434144print_stat_summary(stdout, files, adds, dels);4145}41464147static voidnumstat_patch_list(struct apply_state *state,4148struct patch *patch)4149{4150for( ; patch; patch = patch->next) {4151const char*name;4152 name = patch->new_name ? patch->new_name : patch->old_name;4153if(patch->is_binary)4154printf("-\t-\t");4155else4156printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);4157write_name_quoted(name, stdout, state->line_termination);4158}4159}41604161static voidshow_file_mode_name(const char*newdelete,unsigned int mode,const char*name)4162{4163if(mode)4164printf("%smode%06o%s\n", newdelete, mode, name);4165else4166printf("%s %s\n", newdelete, name);4167}41684169static voidshow_mode_change(struct patch *p,int show_name)4170{4171if(p->old_mode && p->new_mode && p->old_mode != p->new_mode) {4172if(show_name)4173printf(" mode change%06o =>%06o%s\n",4174 p->old_mode, p->new_mode, p->new_name);4175else4176printf(" mode change%06o =>%06o\n",4177 p->old_mode, p->new_mode);4178}4179}41804181static voidshow_rename_copy(struct patch *p)4182{4183const char*renamecopy = p->is_rename ?"rename":"copy";4184const char*old, *new;41854186/* Find common prefix */4187 old = p->old_name;4188new= p->new_name;4189while(1) {4190const char*slash_old, *slash_new;4191 slash_old =strchr(old,'/');4192 slash_new =strchr(new,'/');4193if(!slash_old ||4194!slash_new ||4195 slash_old - old != slash_new -new||4196memcmp(old,new, slash_new -new))4197break;4198 old = slash_old +1;4199new= slash_new +1;4200}4201/* p->old_name thru old is the common prefix, and old and new4202 * through the end of names are renames4203 */4204if(old != p->old_name)4205printf("%s%.*s{%s=>%s} (%d%%)\n", renamecopy,4206(int)(old - p->old_name), p->old_name,4207 old,new, p->score);4208else4209printf("%s %s=>%s(%d%%)\n", renamecopy,4210 p->old_name, p->new_name, p->score);4211show_mode_change(p,0);4212}42134214static voidsummary_patch_list(struct patch *patch)4215{4216struct patch *p;42174218for(p = patch; p; p = p->next) {4219if(p->is_new)4220show_file_mode_name("create", p->new_mode, p->new_name);4221else if(p->is_delete)4222show_file_mode_name("delete", p->old_mode, p->old_name);4223else{4224if(p->is_rename || p->is_copy)4225show_rename_copy(p);4226else{4227if(p->score) {4228printf(" rewrite%s(%d%%)\n",4229 p->new_name, p->score);4230show_mode_change(p,0);4231}4232else4233show_mode_change(p,1);4234}4235}4236}4237}42384239static voidpatch_stats(struct apply_state *state,struct patch *patch)4240{4241int lines = patch->lines_added + patch->lines_deleted;42424243if(lines > state->max_change)4244 state->max_change = lines;4245if(patch->old_name) {4246int len =quote_c_style(patch->old_name, NULL, NULL,0);4247if(!len)4248 len =strlen(patch->old_name);4249if(len > state->max_len)4250 state->max_len = len;4251}4252if(patch->new_name) {4253int len =quote_c_style(patch->new_name, NULL, NULL,0);4254if(!len)4255 len =strlen(patch->new_name);4256if(len > state->max_len)4257 state->max_len = len;4258}4259}42604261static intremove_file(struct apply_state *state,struct patch *patch,int rmdir_empty)4262{4263if(state->update_index) {4264if(remove_file_from_cache(patch->old_name) <0)4265returnerror(_("unable to remove%sfrom index"), patch->old_name);4266}4267if(!state->cached) {4268if(!remove_or_warn(patch->old_mode, patch->old_name) && rmdir_empty) {4269remove_path(patch->old_name);4270}4271}4272return0;4273}42744275static intadd_index_file(struct apply_state *state,4276const char*path,4277unsigned mode,4278void*buf,4279unsigned long size)4280{4281struct stat st;4282struct cache_entry *ce;4283int namelen =strlen(path);4284unsigned ce_size =cache_entry_size(namelen);42854286if(!state->update_index)4287return0;42884289 ce =xcalloc(1, ce_size);4290memcpy(ce->name, path, namelen);4291 ce->ce_mode =create_ce_mode(mode);4292 ce->ce_flags =create_ce_flags(0);4293 ce->ce_namelen = namelen;4294if(S_ISGITLINK(mode)) {4295const char*s;42964297if(!skip_prefix(buf,"Subproject commit ", &s) ||4298get_oid_hex(s, &ce->oid)) {4299free(ce);4300returnerror(_("corrupt patch for submodule%s"), path);4301}4302}else{4303if(!state->cached) {4304if(lstat(path, &st) <0) {4305free(ce);4306returnerror_errno(_("unable to stat newly "4307"created file '%s'"),4308 path);4309}4310fill_stat_cache_info(ce, &st);4311}4312if(write_sha1_file(buf, size, blob_type, ce->oid.hash) <0) {4313free(ce);4314returnerror(_("unable to create backing store "4315"for newly created file%s"), path);4316}4317}4318if(add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) <0) {4319free(ce);4320returnerror(_("unable to add cache entry for%s"), path);4321}43224323return0;4324}43254326/*4327 * Returns:4328 * -1 if an unrecoverable error happened4329 * 0 if everything went well4330 * 1 if a recoverable error happened4331 */4332static inttry_create_file(const char*path,unsigned int mode,const char*buf,unsigned long size)4333{4334int fd, res;4335struct strbuf nbuf = STRBUF_INIT;43364337if(S_ISGITLINK(mode)) {4338struct stat st;4339if(!lstat(path, &st) &&S_ISDIR(st.st_mode))4340return0;4341return!!mkdir(path,0777);4342}43434344if(has_symlinks &&S_ISLNK(mode))4345/* Although buf:size is counted string, it also is NUL4346 * terminated.4347 */4348return!!symlink(buf, path);43494350 fd =open(path, O_CREAT | O_EXCL | O_WRONLY, (mode &0100) ?0777:0666);4351if(fd <0)4352return1;43534354if(convert_to_working_tree(path, buf, size, &nbuf)) {4355 size = nbuf.len;4356 buf = nbuf.buf;4357}43584359 res =write_in_full(fd, buf, size) <0;4360if(res)4361error_errno(_("failed to write to '%s'"), path);4362strbuf_release(&nbuf);43634364if(close(fd) <0&& !res)4365returnerror_errno(_("closing file '%s'"), path);43664367return res ? -1:0;4368}43694370/*4371 * We optimistically assume that the directories exist,4372 * which is true 99% of the time anyway. If they don't,4373 * we create them and try again.4374 *4375 * Returns:4376 * -1 on error4377 * 0 otherwise4378 */4379static intcreate_one_file(struct apply_state *state,4380char*path,4381unsigned mode,4382const char*buf,4383unsigned long size)4384{4385int res;43864387if(state->cached)4388return0;43894390 res =try_create_file(path, mode, buf, size);4391if(res <0)4392return-1;4393if(!res)4394return0;43954396if(errno == ENOENT) {4397if(safe_create_leading_directories(path))4398return0;4399 res =try_create_file(path, mode, buf, size);4400if(res <0)4401return-1;4402if(!res)4403return0;4404}44054406if(errno == EEXIST || errno == EACCES) {4407/* We may be trying to create a file where a directory4408 * used to be.4409 */4410struct stat st;4411if(!lstat(path, &st) && (!S_ISDIR(st.st_mode) || !rmdir(path)))4412 errno = EEXIST;4413}44144415if(errno == EEXIST) {4416unsigned int nr =getpid();44174418for(;;) {4419char newpath[PATH_MAX];4420mksnpath(newpath,sizeof(newpath),"%s~%u", path, nr);4421 res =try_create_file(newpath, mode, buf, size);4422if(res <0)4423return-1;4424if(!res) {4425if(!rename(newpath, path))4426return0;4427unlink_or_warn(newpath);4428break;4429}4430if(errno != EEXIST)4431break;4432++nr;4433}4434}4435returnerror_errno(_("unable to write file '%s' mode%o"),4436 path, mode);4437}44384439static intadd_conflicted_stages_file(struct apply_state *state,4440struct patch *patch)4441{4442int stage, namelen;4443unsigned ce_size, mode;4444struct cache_entry *ce;44454446if(!state->update_index)4447return0;4448 namelen =strlen(patch->new_name);4449 ce_size =cache_entry_size(namelen);4450 mode = patch->new_mode ? patch->new_mode : (S_IFREG |0644);44514452remove_file_from_cache(patch->new_name);4453for(stage =1; stage <4; stage++) {4454if(is_null_oid(&patch->threeway_stage[stage -1]))4455continue;4456 ce =xcalloc(1, ce_size);4457memcpy(ce->name, patch->new_name, namelen);4458 ce->ce_mode =create_ce_mode(mode);4459 ce->ce_flags =create_ce_flags(stage);4460 ce->ce_namelen = namelen;4461oidcpy(&ce->oid, &patch->threeway_stage[stage -1]);4462if(add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) <0) {4463free(ce);4464returnerror(_("unable to add cache entry for%s"),4465 patch->new_name);4466}4467}44684469return0;4470}44714472static intcreate_file(struct apply_state *state,struct patch *patch)4473{4474char*path = patch->new_name;4475unsigned mode = patch->new_mode;4476unsigned long size = patch->resultsize;4477char*buf = patch->result;44784479if(!mode)4480 mode = S_IFREG |0644;4481if(create_one_file(state, path, mode, buf, size))4482return-1;44834484if(patch->conflicted_threeway)4485returnadd_conflicted_stages_file(state, patch);4486else4487returnadd_index_file(state, path, mode, buf, size);4488}44894490/* phase zero is to remove, phase one is to create */4491static intwrite_out_one_result(struct apply_state *state,4492struct patch *patch,4493int phase)4494{4495if(patch->is_delete >0) {4496if(phase ==0)4497returnremove_file(state, patch,1);4498return0;4499}4500if(patch->is_new >0|| patch->is_copy) {4501if(phase ==1)4502returncreate_file(state, patch);4503return0;4504}4505/*4506 * Rename or modification boils down to the same4507 * thing: remove the old, write the new4508 */4509if(phase ==0)4510returnremove_file(state, patch, patch->is_rename);4511if(phase ==1)4512returncreate_file(state, patch);4513return0;4514}45154516static intwrite_out_one_reject(struct apply_state *state,struct patch *patch)4517{4518FILE*rej;4519char namebuf[PATH_MAX];4520struct fragment *frag;4521int cnt =0;4522struct strbuf sb = STRBUF_INIT;45234524for(cnt =0, frag = patch->fragments; frag; frag = frag->next) {4525if(!frag->rejected)4526continue;4527 cnt++;4528}45294530if(!cnt) {4531if(state->apply_verbosity > verbosity_normal)4532say_patch_name(stderr,4533_("Applied patch%scleanly."), patch);4534return0;4535}45364537/* This should not happen, because a removal patch that leaves4538 * contents are marked "rejected" at the patch level.4539 */4540if(!patch->new_name)4541die(_("internal error"));45424543/* Say this even without --verbose */4544strbuf_addf(&sb,Q_("Applying patch %%swith%dreject...",4545"Applying patch %%swith%drejects...",4546 cnt),4547 cnt);4548if(state->apply_verbosity > verbosity_silent)4549say_patch_name(stderr, sb.buf, patch);4550strbuf_release(&sb);45514552 cnt =strlen(patch->new_name);4553if(ARRAY_SIZE(namebuf) <= cnt +5) {4554 cnt =ARRAY_SIZE(namebuf) -5;4555warning(_("truncating .rej filename to %.*s.rej"),4556 cnt -1, patch->new_name);4557}4558memcpy(namebuf, patch->new_name, cnt);4559memcpy(namebuf + cnt,".rej",5);45604561 rej =fopen(namebuf,"w");4562if(!rej)4563returnerror_errno(_("cannot open%s"), namebuf);45644565/* Normal git tools never deal with .rej, so do not pretend4566 * this is a git patch by saying --git or giving extended4567 * headers. While at it, maybe please "kompare" that wants4568 * the trailing TAB and some garbage at the end of line ;-).4569 */4570fprintf(rej,"diff a/%sb/%s\t(rejected hunks)\n",4571 patch->new_name, patch->new_name);4572for(cnt =1, frag = patch->fragments;4573 frag;4574 cnt++, frag = frag->next) {4575if(!frag->rejected) {4576if(state->apply_verbosity > verbosity_silent)4577fprintf_ln(stderr,_("Hunk #%dapplied cleanly."), cnt);4578continue;4579}4580if(state->apply_verbosity > verbosity_silent)4581fprintf_ln(stderr,_("Rejected hunk #%d."), cnt);4582fprintf(rej,"%.*s", frag->size, frag->patch);4583if(frag->patch[frag->size-1] !='\n')4584fputc('\n', rej);4585}4586fclose(rej);4587return-1;4588}45894590/*4591 * Returns:4592 * -1 if an error happened4593 * 0 if the patch applied cleanly4594 * 1 if the patch did not apply cleanly4595 */4596static intwrite_out_results(struct apply_state *state,struct patch *list)4597{4598int phase;4599int errs =0;4600struct patch *l;4601struct string_list cpath = STRING_LIST_INIT_DUP;46024603for(phase =0; phase <2; phase++) {4604 l = list;4605while(l) {4606if(l->rejected)4607 errs =1;4608else{4609if(write_out_one_result(state, l, phase)) {4610string_list_clear(&cpath,0);4611return-1;4612}4613if(phase ==1) {4614if(write_out_one_reject(state, l))4615 errs =1;4616if(l->conflicted_threeway) {4617string_list_append(&cpath, l->new_name);4618 errs =1;4619}4620}4621}4622 l = l->next;4623}4624}46254626if(cpath.nr) {4627struct string_list_item *item;46284629string_list_sort(&cpath);4630if(state->apply_verbosity > verbosity_silent) {4631for_each_string_list_item(item, &cpath)4632fprintf(stderr,"U%s\n", item->string);4633}4634string_list_clear(&cpath,0);46354636rerere(0);4637}46384639return errs;4640}46414642/*4643 * Try to apply a patch.4644 *4645 * Returns:4646 * -128 if a bad error happened (like patch unreadable)4647 * -1 if patch did not apply and user cannot deal with it4648 * 0 if the patch applied4649 * 1 if the patch did not apply but user might fix it4650 */4651static intapply_patch(struct apply_state *state,4652int fd,4653const char*filename,4654int options)4655{4656size_t offset;4657struct strbuf buf = STRBUF_INIT;/* owns the patch text */4658struct patch *list = NULL, **listp = &list;4659int skipped_patch =0;4660int res =0;46614662 state->patch_input_file = filename;4663if(read_patch_file(&buf, fd) <0)4664return-128;4665 offset =0;4666while(offset < buf.len) {4667struct patch *patch;4668int nr;46694670 patch =xcalloc(1,sizeof(*patch));4671 patch->inaccurate_eof = !!(options & APPLY_OPT_INACCURATE_EOF);4672 patch->recount = !!(options & APPLY_OPT_RECOUNT);4673 nr =parse_chunk(state, buf.buf + offset, buf.len - offset, patch);4674if(nr <0) {4675free_patch(patch);4676if(nr == -128) {4677 res = -128;4678goto end;4679}4680break;4681}4682if(state->apply_in_reverse)4683reverse_patches(patch);4684if(use_patch(state, patch)) {4685patch_stats(state, patch);4686*listp = patch;4687 listp = &patch->next;4688}4689else{4690if(state->apply_verbosity > verbosity_normal)4691say_patch_name(stderr,_("Skipped patch '%s'."), patch);4692free_patch(patch);4693 skipped_patch++;4694}4695 offset += nr;4696}46974698if(!list && !skipped_patch) {4699error(_("unrecognized input"));4700 res = -128;4701goto end;4702}47034704if(state->whitespace_error && (state->ws_error_action == die_on_ws_error))4705 state->apply =0;47064707 state->update_index = state->check_index && state->apply;4708if(state->update_index && state->newfd <0) {4709if(state->index_file)4710 state->newfd =hold_lock_file_for_update(state->lock_file,4711 state->index_file,4712 LOCK_DIE_ON_ERROR);4713else4714 state->newfd =hold_locked_index(state->lock_file,1);4715}47164717if(state->check_index &&read_apply_cache(state) <0) {4718error(_("unable to read index file"));4719 res = -128;4720goto end;4721}47224723if(state->check || state->apply) {4724int r =check_patch_list(state, list);4725if(r == -128) {4726 res = -128;4727goto end;4728}4729if(r <0&& !state->apply_with_reject) {4730 res = -1;4731goto end;4732}4733}47344735if(state->apply) {4736int write_res =write_out_results(state, list);4737if(write_res <0) {4738 res = -128;4739goto end;4740}4741if(write_res >0) {4742/* with --3way, we still need to write the index out */4743 res = state->apply_with_reject ? -1:1;4744goto end;4745}4746}47474748if(state->fake_ancestor &&4749build_fake_ancestor(state, list)) {4750 res = -128;4751goto end;4752}47534754if(state->diffstat && state->apply_verbosity > verbosity_silent)4755stat_patch_list(state, list);47564757if(state->numstat && state->apply_verbosity > verbosity_silent)4758numstat_patch_list(state, list);47594760if(state->summary && state->apply_verbosity > verbosity_silent)4761summary_patch_list(list);47624763end:4764free_patch_list(list);4765strbuf_release(&buf);4766string_list_clear(&state->fn_table,0);4767return res;4768}47694770static intapply_option_parse_exclude(const struct option *opt,4771const char*arg,int unset)4772{4773struct apply_state *state = opt->value;4774add_name_limit(state, arg,1);4775return0;4776}47774778static intapply_option_parse_include(const struct option *opt,4779const char*arg,int unset)4780{4781struct apply_state *state = opt->value;4782add_name_limit(state, arg,0);4783 state->has_include =1;4784return0;4785}47864787static intapply_option_parse_p(const struct option *opt,4788const char*arg,4789int unset)4790{4791struct apply_state *state = opt->value;4792 state->p_value =atoi(arg);4793 state->p_value_known =1;4794return0;4795}47964797static intapply_option_parse_space_change(const struct option *opt,4798const char*arg,int unset)4799{4800struct apply_state *state = opt->value;4801if(unset)4802 state->ws_ignore_action = ignore_ws_none;4803else4804 state->ws_ignore_action = ignore_ws_change;4805return0;4806}48074808static intapply_option_parse_whitespace(const struct option *opt,4809const char*arg,int unset)4810{4811struct apply_state *state = opt->value;4812 state->whitespace_option = arg;4813if(parse_whitespace_option(state, arg))4814exit(1);4815return0;4816}48174818static intapply_option_parse_directory(const struct option *opt,4819const char*arg,int unset)4820{4821struct apply_state *state = opt->value;4822strbuf_reset(&state->root);4823strbuf_addstr(&state->root, arg);4824strbuf_complete(&state->root,'/');4825return0;4826}48274828intapply_all_patches(struct apply_state *state,4829int argc,4830const char**argv,4831int options)4832{4833int i;4834int res;4835int errs =0;4836int read_stdin =1;48374838for(i =0; i < argc; i++) {4839const char*arg = argv[i];4840int fd;48414842if(!strcmp(arg,"-")) {4843 res =apply_patch(state,0,"<stdin>", options);4844if(res <0)4845goto end;4846 errs |= res;4847 read_stdin =0;4848continue;4849}else if(0< state->prefix_length)4850 arg =prefix_filename(state->prefix,4851 state->prefix_length,4852 arg);48534854 fd =open(arg, O_RDONLY);4855if(fd <0) {4856error(_("can't open patch '%s':%s"), arg,strerror(errno));4857 res = -128;4858goto end;4859}4860 read_stdin =0;4861set_default_whitespace_mode(state);4862 res =apply_patch(state, fd, arg, options);4863close(fd);4864if(res <0)4865goto end;4866 errs |= res;4867}4868set_default_whitespace_mode(state);4869if(read_stdin) {4870 res =apply_patch(state,0,"<stdin>", options);4871if(res <0)4872goto end;4873 errs |= res;4874}48754876if(state->whitespace_error) {4877if(state->squelch_whitespace_errors &&4878 state->squelch_whitespace_errors < state->whitespace_error) {4879int squelched =4880 state->whitespace_error - state->squelch_whitespace_errors;4881warning(Q_("squelched%dwhitespace error",4882"squelched%dwhitespace errors",4883 squelched),4884 squelched);4885}4886if(state->ws_error_action == die_on_ws_error) {4887error(Q_("%dline adds whitespace errors.",4888"%dlines add whitespace errors.",4889 state->whitespace_error),4890 state->whitespace_error);4891 res = -128;4892goto end;4893}4894if(state->applied_after_fixing_ws && state->apply)4895warning(Q_("%dline applied after"4896" fixing whitespace errors.",4897"%dlines applied after"4898" fixing whitespace errors.",4899 state->applied_after_fixing_ws),4900 state->applied_after_fixing_ws);4901else if(state->whitespace_error)4902warning(Q_("%dline adds whitespace errors.",4903"%dlines add whitespace errors.",4904 state->whitespace_error),4905 state->whitespace_error);4906}49074908if(state->update_index) {4909 res =write_locked_index(&the_index, state->lock_file, COMMIT_LOCK);4910if(res) {4911error(_("Unable to write new index file"));4912 res = -128;4913goto end;4914}4915 state->newfd = -1;4916}49174918 res = !!errs;49194920end:4921if(state->newfd >=0) {4922rollback_lock_file(state->lock_file);4923 state->newfd = -1;4924}49254926if(state->apply_verbosity <= verbosity_silent) {4927set_error_routine(state->saved_error_routine);4928set_warn_routine(state->saved_warn_routine);4929}49304931if(res > -1)4932return res;4933return(res == -1?1:128);4934}49354936intapply_parse_options(int argc,const char**argv,4937struct apply_state *state,4938int*force_apply,int*options,4939const char*const*apply_usage)4940{4941struct option builtin_apply_options[] = {4942{ OPTION_CALLBACK,0,"exclude", state,N_("path"),4943N_("don't apply changes matching the given path"),49440, apply_option_parse_exclude },4945{ OPTION_CALLBACK,0,"include", state,N_("path"),4946N_("apply changes matching the given path"),49470, apply_option_parse_include },4948{ OPTION_CALLBACK,'p', NULL, state,N_("num"),4949N_("remove <num> leading slashes from traditional diff paths"),49500, apply_option_parse_p },4951OPT_BOOL(0,"no-add", &state->no_add,4952N_("ignore additions made by the patch")),4953OPT_BOOL(0,"stat", &state->diffstat,4954N_("instead of applying the patch, output diffstat for the input")),4955OPT_NOOP_NOARG(0,"allow-binary-replacement"),4956OPT_NOOP_NOARG(0,"binary"),4957OPT_BOOL(0,"numstat", &state->numstat,4958N_("show number of added and deleted lines in decimal notation")),4959OPT_BOOL(0,"summary", &state->summary,4960N_("instead of applying the patch, output a summary for the input")),4961OPT_BOOL(0,"check", &state->check,4962N_("instead of applying the patch, see if the patch is applicable")),4963OPT_BOOL(0,"index", &state->check_index,4964N_("make sure the patch is applicable to the current index")),4965OPT_BOOL(0,"cached", &state->cached,4966N_("apply a patch without touching the working tree")),4967OPT_BOOL(0,"unsafe-paths", &state->unsafe_paths,4968N_("accept a patch that touches outside the working area")),4969OPT_BOOL(0,"apply", force_apply,4970N_("also apply the patch (use with --stat/--summary/--check)")),4971OPT_BOOL('3',"3way", &state->threeway,4972N_("attempt three-way merge if a patch does not apply")),4973OPT_FILENAME(0,"build-fake-ancestor", &state->fake_ancestor,4974N_("build a temporary index based on embedded index information")),4975/* Think twice before adding "--nul" synonym to this */4976OPT_SET_INT('z', NULL, &state->line_termination,4977N_("paths are separated with NUL character"),'\0'),4978OPT_INTEGER('C', NULL, &state->p_context,4979N_("ensure at least <n> lines of context match")),4980{ OPTION_CALLBACK,0,"whitespace", state,N_("action"),4981N_("detect new or modified lines that have whitespace errors"),49820, apply_option_parse_whitespace },4983{ OPTION_CALLBACK,0,"ignore-space-change", state, NULL,4984N_("ignore changes in whitespace when finding context"),4985 PARSE_OPT_NOARG, apply_option_parse_space_change },4986{ OPTION_CALLBACK,0,"ignore-whitespace", state, NULL,4987N_("ignore changes in whitespace when finding context"),4988 PARSE_OPT_NOARG, apply_option_parse_space_change },4989OPT_BOOL('R',"reverse", &state->apply_in_reverse,4990N_("apply the patch in reverse")),4991OPT_BOOL(0,"unidiff-zero", &state->unidiff_zero,4992N_("don't expect at least one line of context")),4993OPT_BOOL(0,"reject", &state->apply_with_reject,4994N_("leave the rejected hunks in corresponding *.rej files")),4995OPT_BOOL(0,"allow-overlap", &state->allow_overlap,4996N_("allow overlapping hunks")),4997OPT__VERBOSE(&state->apply_verbosity,N_("be verbose")),4998OPT_BIT(0,"inaccurate-eof", options,4999N_("tolerate incorrectly detected missing new-line at the end of file"),5000 APPLY_OPT_INACCURATE_EOF),5001OPT_BIT(0,"recount", options,5002N_("do not trust the line counts in the hunk headers"),5003 APPLY_OPT_RECOUNT),5004{ OPTION_CALLBACK,0,"directory", state,N_("root"),5005N_("prepend <root> to all filenames"),50060, apply_option_parse_directory },5007OPT_END()5008};50095010returnparse_options(argc, argv, state->prefix, builtin_apply_options, apply_usage,0);5011}