1/* 2 * Recursive Merge algorithm stolen from git-merge-recursive.py by 3 * Fredrik Kuivinen. 4 * The thieves were Alex Riesen and Johannes Schindelin, in June/July 2006 5 */ 6#include"cache.h" 7#include"config.h" 8#include"advice.h" 9#include"lockfile.h" 10#include"cache-tree.h" 11#include"object-store.h" 12#include"repository.h" 13#include"commit.h" 14#include"blob.h" 15#include"builtin.h" 16#include"tree-walk.h" 17#include"diff.h" 18#include"diffcore.h" 19#include"tag.h" 20#include"alloc.h" 21#include"unpack-trees.h" 22#include"string-list.h" 23#include"xdiff-interface.h" 24#include"ll-merge.h" 25#include"attr.h" 26#include"merge-recursive.h" 27#include"dir.h" 28#include"submodule.h" 29#include"revision.h" 30#include"commit-reach.h" 31 32struct path_hashmap_entry { 33struct hashmap_entry e; 34char path[FLEX_ARRAY]; 35}; 36 37static intpath_hashmap_cmp(const void*cmp_data, 38const void*entry, 39const void*entry_or_key, 40const void*keydata) 41{ 42const struct path_hashmap_entry *a = entry; 43const struct path_hashmap_entry *b = entry_or_key; 44const char*key = keydata; 45 46if(ignore_case) 47returnstrcasecmp(a->path, key ? key : b->path); 48else 49returnstrcmp(a->path, key ? key : b->path); 50} 51 52static unsigned intpath_hash(const char*path) 53{ 54return ignore_case ?strihash(path) :strhash(path); 55} 56 57static struct dir_rename_entry *dir_rename_find_entry(struct hashmap *hashmap, 58char*dir) 59{ 60struct dir_rename_entry key; 61 62if(dir == NULL) 63return NULL; 64hashmap_entry_init(&key,strhash(dir)); 65 key.dir = dir; 66returnhashmap_get(hashmap, &key, NULL); 67} 68 69static intdir_rename_cmp(const void*unused_cmp_data, 70const void*entry, 71const void*entry_or_key, 72const void*unused_keydata) 73{ 74const struct dir_rename_entry *e1 = entry; 75const struct dir_rename_entry *e2 = entry_or_key; 76 77returnstrcmp(e1->dir, e2->dir); 78} 79 80static voiddir_rename_init(struct hashmap *map) 81{ 82hashmap_init(map, dir_rename_cmp, NULL,0); 83} 84 85static voiddir_rename_entry_init(struct dir_rename_entry *entry, 86char*directory) 87{ 88hashmap_entry_init(entry,strhash(directory)); 89 entry->dir = directory; 90 entry->non_unique_new_dir =0; 91strbuf_init(&entry->new_dir,0); 92string_list_init(&entry->possible_new_dirs,0); 93} 94 95static struct collision_entry *collision_find_entry(struct hashmap *hashmap, 96char*target_file) 97{ 98struct collision_entry key; 99 100hashmap_entry_init(&key,strhash(target_file)); 101 key.target_file = target_file; 102returnhashmap_get(hashmap, &key, NULL); 103} 104 105static intcollision_cmp(void*unused_cmp_data, 106const struct collision_entry *e1, 107const struct collision_entry *e2, 108const void*unused_keydata) 109{ 110returnstrcmp(e1->target_file, e2->target_file); 111} 112 113static voidcollision_init(struct hashmap *map) 114{ 115hashmap_init(map, (hashmap_cmp_fn) collision_cmp, NULL,0); 116} 117 118static voidflush_output(struct merge_options *o) 119{ 120if(o->buffer_output <2&& o->obuf.len) { 121fputs(o->obuf.buf, stdout); 122strbuf_reset(&o->obuf); 123} 124} 125 126static interr(struct merge_options *o,const char*err, ...) 127{ 128va_list params; 129 130if(o->buffer_output <2) 131flush_output(o); 132else{ 133strbuf_complete(&o->obuf,'\n'); 134strbuf_addstr(&o->obuf,"error: "); 135} 136va_start(params, err); 137strbuf_vaddf(&o->obuf, err, params); 138va_end(params); 139if(o->buffer_output >1) 140strbuf_addch(&o->obuf,'\n'); 141else{ 142error("%s", o->obuf.buf); 143strbuf_reset(&o->obuf); 144} 145 146return-1; 147} 148 149static struct tree *shift_tree_object(struct tree *one,struct tree *two, 150const char*subtree_shift) 151{ 152struct object_id shifted; 153 154if(!*subtree_shift) { 155shift_tree(&one->object.oid, &two->object.oid, &shifted,0); 156}else{ 157shift_tree_by(&one->object.oid, &two->object.oid, &shifted, 158 subtree_shift); 159} 160if(oideq(&two->object.oid, &shifted)) 161return two; 162returnlookup_tree(the_repository, &shifted); 163} 164 165static struct commit *make_virtual_commit(struct tree *tree,const char*comment) 166{ 167struct commit *commit =alloc_commit_node(the_repository); 168 169set_merge_remote_desc(commit, comment, (struct object *)commit); 170 commit->maybe_tree = tree; 171 commit->object.parsed =1; 172return commit; 173} 174 175/* 176 * Since we use get_tree_entry(), which does not put the read object into 177 * the object pool, we cannot rely on a == b. 178 */ 179static intoid_eq(const struct object_id *a,const struct object_id *b) 180{ 181if(!a && !b) 182return2; 183return a && b &&oideq(a, b); 184} 185 186enum rename_type { 187 RENAME_NORMAL =0, 188 RENAME_VIA_DIR, 189 RENAME_ADD, 190 RENAME_DELETE, 191 RENAME_ONE_FILE_TO_ONE, 192 RENAME_ONE_FILE_TO_TWO, 193 RENAME_TWO_FILES_TO_ONE 194}; 195 196struct rename_conflict_info { 197enum rename_type rename_type; 198struct diff_filepair *pair1; 199struct diff_filepair *pair2; 200const char*branch1; 201const char*branch2; 202struct stage_data *dst_entry1; 203struct stage_data *dst_entry2; 204struct diff_filespec ren1_other; 205struct diff_filespec ren2_other; 206}; 207 208/* 209 * Since we want to write the index eventually, we cannot reuse the index 210 * for these (temporary) data. 211 */ 212struct stage_data { 213struct{ 214unsigned mode; 215struct object_id oid; 216} stages[4]; 217struct rename_conflict_info *rename_conflict_info; 218unsigned processed:1; 219}; 220 221staticinlinevoidsetup_rename_conflict_info(enum rename_type rename_type, 222struct diff_filepair *pair1, 223struct diff_filepair *pair2, 224const char*branch1, 225const char*branch2, 226struct stage_data *dst_entry1, 227struct stage_data *dst_entry2, 228struct merge_options *o, 229struct stage_data *src_entry1, 230struct stage_data *src_entry2) 231{ 232int ostage1 =0, ostage2; 233struct rename_conflict_info *ci; 234 235/* 236 * When we have two renames involved, it's easiest to get the 237 * correct things into stage 2 and 3, and to make sure that the 238 * content merge puts HEAD before the other branch if we just 239 * ensure that branch1 == o->branch1. So, simply flip arguments 240 * around if we don't have that. 241 */ 242if(dst_entry2 && branch1 != o->branch1) { 243setup_rename_conflict_info(rename_type, 244 pair2, pair1, 245 branch2, branch1, 246 dst_entry2, dst_entry1, 247 o, 248 src_entry2, src_entry1); 249return; 250} 251 252 ci =xcalloc(1,sizeof(struct rename_conflict_info)); 253 ci->rename_type = rename_type; 254 ci->pair1 = pair1; 255 ci->branch1 = branch1; 256 ci->branch2 = branch2; 257 258 ci->dst_entry1 = dst_entry1; 259 dst_entry1->rename_conflict_info = ci; 260 dst_entry1->processed =0; 261 262assert(!pair2 == !dst_entry2); 263if(dst_entry2) { 264 ci->dst_entry2 = dst_entry2; 265 ci->pair2 = pair2; 266 dst_entry2->rename_conflict_info = ci; 267} 268 269/* 270 * For each rename, there could have been 271 * modifications on the side of history where that 272 * file was not renamed. 273 */ 274if(rename_type == RENAME_ADD || 275 rename_type == RENAME_TWO_FILES_TO_ONE) { 276 ostage1 = o->branch1 == branch1 ?3:2; 277 278 ci->ren1_other.path = pair1->one->path; 279oidcpy(&ci->ren1_other.oid, &src_entry1->stages[ostage1].oid); 280 ci->ren1_other.mode = src_entry1->stages[ostage1].mode; 281} 282 283if(rename_type == RENAME_TWO_FILES_TO_ONE) { 284 ostage2 = ostage1 ^1; 285 286 ci->ren2_other.path = pair2->one->path; 287oidcpy(&ci->ren2_other.oid, &src_entry2->stages[ostage2].oid); 288 ci->ren2_other.mode = src_entry2->stages[ostage2].mode; 289} 290} 291 292static intshow(struct merge_options *o,int v) 293{ 294return(!o->call_depth && o->verbosity >= v) || o->verbosity >=5; 295} 296 297__attribute__((format(printf,3,4))) 298static voidoutput(struct merge_options *o,int v,const char*fmt, ...) 299{ 300va_list ap; 301 302if(!show(o, v)) 303return; 304 305strbuf_addchars(&o->obuf,' ', o->call_depth *2); 306 307va_start(ap, fmt); 308strbuf_vaddf(&o->obuf, fmt, ap); 309va_end(ap); 310 311strbuf_addch(&o->obuf,'\n'); 312if(!o->buffer_output) 313flush_output(o); 314} 315 316static voidoutput_commit_title(struct merge_options *o,struct commit *commit) 317{ 318struct merge_remote_desc *desc; 319 320strbuf_addchars(&o->obuf,' ', o->call_depth *2); 321 desc =merge_remote_util(commit); 322if(desc) 323strbuf_addf(&o->obuf,"virtual%s\n", desc->name); 324else{ 325strbuf_add_unique_abbrev(&o->obuf, &commit->object.oid, 326 DEFAULT_ABBREV); 327strbuf_addch(&o->obuf,' '); 328if(parse_commit(commit) !=0) 329strbuf_addstr(&o->obuf,_("(bad commit)\n")); 330else{ 331const char*title; 332const char*msg =get_commit_buffer(commit, NULL); 333int len =find_commit_subject(msg, &title); 334if(len) 335strbuf_addf(&o->obuf,"%.*s\n", len, title); 336unuse_commit_buffer(commit, msg); 337} 338} 339flush_output(o); 340} 341 342static intadd_cacheinfo(struct merge_options *o, 343unsigned int mode,const struct object_id *oid, 344const char*path,int stage,int refresh,int options) 345{ 346struct cache_entry *ce; 347int ret; 348 349 ce =make_cache_entry(&the_index, mode, oid ? oid : &null_oid, path, stage,0); 350if(!ce) 351returnerr(o,_("add_cacheinfo failed for path '%s'; merge aborting."), path); 352 353 ret =add_cache_entry(ce, options); 354if(refresh) { 355struct cache_entry *nce; 356 357 nce =refresh_cache_entry(&the_index, ce, CE_MATCH_REFRESH | CE_MATCH_IGNORE_MISSING); 358if(!nce) 359returnerr(o,_("add_cacheinfo failed to refresh for path '%s'; merge aborting."), path); 360if(nce != ce) 361 ret =add_cache_entry(nce, options); 362} 363return ret; 364} 365 366static voidinit_tree_desc_from_tree(struct tree_desc *desc,struct tree *tree) 367{ 368parse_tree(tree); 369init_tree_desc(desc, tree->buffer, tree->size); 370} 371 372static intunpack_trees_start(struct merge_options *o, 373struct tree *common, 374struct tree *head, 375struct tree *merge) 376{ 377int rc; 378struct tree_desc t[3]; 379struct index_state tmp_index = { NULL }; 380 381memset(&o->unpack_opts,0,sizeof(o->unpack_opts)); 382if(o->call_depth) 383 o->unpack_opts.index_only =1; 384else 385 o->unpack_opts.update =1; 386 o->unpack_opts.merge =1; 387 o->unpack_opts.head_idx =2; 388 o->unpack_opts.fn = threeway_merge; 389 o->unpack_opts.src_index = &the_index; 390 o->unpack_opts.dst_index = &tmp_index; 391 o->unpack_opts.aggressive = !merge_detect_rename(o); 392setup_unpack_trees_porcelain(&o->unpack_opts,"merge"); 393 394init_tree_desc_from_tree(t+0, common); 395init_tree_desc_from_tree(t+1, head); 396init_tree_desc_from_tree(t+2, merge); 397 398 rc =unpack_trees(3, t, &o->unpack_opts); 399cache_tree_free(&active_cache_tree); 400 401/* 402 * Update the_index to match the new results, AFTER saving a copy 403 * in o->orig_index. Update src_index to point to the saved copy. 404 * (verify_uptodate() checks src_index, and the original index is 405 * the one that had the necessary modification timestamps.) 406 */ 407 o->orig_index = the_index; 408 the_index = tmp_index; 409 o->unpack_opts.src_index = &o->orig_index; 410 411return rc; 412} 413 414static voidunpack_trees_finish(struct merge_options *o) 415{ 416discard_index(&o->orig_index); 417clear_unpack_trees_porcelain(&o->unpack_opts); 418} 419 420struct tree *write_tree_from_memory(struct merge_options *o) 421{ 422struct tree *result = NULL; 423 424if(unmerged_cache()) { 425int i; 426fprintf(stderr,"BUG: There are unmerged index entries:\n"); 427for(i =0; i < active_nr; i++) { 428const struct cache_entry *ce = active_cache[i]; 429if(ce_stage(ce)) 430fprintf(stderr,"BUG:%d%.*s\n",ce_stage(ce), 431(int)ce_namelen(ce), ce->name); 432} 433BUG("unmerged index entries in merge-recursive.c"); 434} 435 436if(!active_cache_tree) 437 active_cache_tree =cache_tree(); 438 439if(!cache_tree_fully_valid(active_cache_tree) && 440cache_tree_update(&the_index,0) <0) { 441err(o,_("error building trees")); 442return NULL; 443} 444 445 result =lookup_tree(the_repository, &active_cache_tree->oid); 446 447return result; 448} 449 450static intsave_files_dirs(const struct object_id *oid, 451struct strbuf *base,const char*path, 452unsigned int mode,int stage,void*context) 453{ 454struct path_hashmap_entry *entry; 455int baselen = base->len; 456struct merge_options *o = context; 457 458strbuf_addstr(base, path); 459 460FLEX_ALLOC_MEM(entry, path, base->buf, base->len); 461hashmap_entry_init(entry,path_hash(entry->path)); 462hashmap_add(&o->current_file_dir_set, entry); 463 464strbuf_setlen(base, baselen); 465return(S_ISDIR(mode) ? READ_TREE_RECURSIVE :0); 466} 467 468static voidget_files_dirs(struct merge_options *o,struct tree *tree) 469{ 470struct pathspec match_all; 471memset(&match_all,0,sizeof(match_all)); 472read_tree_recursive(the_repository, tree,"",0,0, 473&match_all, save_files_dirs, o); 474} 475 476static intget_tree_entry_if_blob(const struct object_id *tree, 477const char*path, 478struct object_id *hashy, 479unsigned int*mode_o) 480{ 481int ret; 482 483 ret =get_tree_entry(tree, path, hashy, mode_o); 484if(S_ISDIR(*mode_o)) { 485oidcpy(hashy, &null_oid); 486*mode_o =0; 487} 488return ret; 489} 490 491/* 492 * Returns an index_entry instance which doesn't have to correspond to 493 * a real cache entry in Git's index. 494 */ 495static struct stage_data *insert_stage_data(const char*path, 496struct tree *o,struct tree *a,struct tree *b, 497struct string_list *entries) 498{ 499struct string_list_item *item; 500struct stage_data *e =xcalloc(1,sizeof(struct stage_data)); 501get_tree_entry_if_blob(&o->object.oid, path, 502&e->stages[1].oid, &e->stages[1].mode); 503get_tree_entry_if_blob(&a->object.oid, path, 504&e->stages[2].oid, &e->stages[2].mode); 505get_tree_entry_if_blob(&b->object.oid, path, 506&e->stages[3].oid, &e->stages[3].mode); 507 item =string_list_insert(entries, path); 508 item->util = e; 509return e; 510} 511 512/* 513 * Create a dictionary mapping file names to stage_data objects. The 514 * dictionary contains one entry for every path with a non-zero stage entry. 515 */ 516static struct string_list *get_unmerged(void) 517{ 518struct string_list *unmerged =xcalloc(1,sizeof(struct string_list)); 519int i; 520 521 unmerged->strdup_strings =1; 522 523for(i =0; i < active_nr; i++) { 524struct string_list_item *item; 525struct stage_data *e; 526const struct cache_entry *ce = active_cache[i]; 527if(!ce_stage(ce)) 528continue; 529 530 item =string_list_lookup(unmerged, ce->name); 531if(!item) { 532 item =string_list_insert(unmerged, ce->name); 533 item->util =xcalloc(1,sizeof(struct stage_data)); 534} 535 e = item->util; 536 e->stages[ce_stage(ce)].mode = ce->ce_mode; 537oidcpy(&e->stages[ce_stage(ce)].oid, &ce->oid); 538} 539 540return unmerged; 541} 542 543static intstring_list_df_name_compare(const char*one,const char*two) 544{ 545int onelen =strlen(one); 546int twolen =strlen(two); 547/* 548 * Here we only care that entries for D/F conflicts are 549 * adjacent, in particular with the file of the D/F conflict 550 * appearing before files below the corresponding directory. 551 * The order of the rest of the list is irrelevant for us. 552 * 553 * To achieve this, we sort with df_name_compare and provide 554 * the mode S_IFDIR so that D/F conflicts will sort correctly. 555 * We use the mode S_IFDIR for everything else for simplicity, 556 * since in other cases any changes in their order due to 557 * sorting cause no problems for us. 558 */ 559int cmp =df_name_compare(one, onelen, S_IFDIR, 560 two, twolen, S_IFDIR); 561/* 562 * Now that 'foo' and 'foo/bar' compare equal, we have to make sure 563 * that 'foo' comes before 'foo/bar'. 564 */ 565if(cmp) 566return cmp; 567return onelen - twolen; 568} 569 570static voidrecord_df_conflict_files(struct merge_options *o, 571struct string_list *entries) 572{ 573/* If there is a D/F conflict and the file for such a conflict 574 * currently exists in the working tree, we want to allow it to be 575 * removed to make room for the corresponding directory if needed. 576 * The files underneath the directories of such D/F conflicts will 577 * be processed before the corresponding file involved in the D/F 578 * conflict. If the D/F directory ends up being removed by the 579 * merge, then we won't have to touch the D/F file. If the D/F 580 * directory needs to be written to the working copy, then the D/F 581 * file will simply be removed (in make_room_for_path()) to make 582 * room for the necessary paths. Note that if both the directory 583 * and the file need to be present, then the D/F file will be 584 * reinstated with a new unique name at the time it is processed. 585 */ 586struct string_list df_sorted_entries = STRING_LIST_INIT_NODUP; 587const char*last_file = NULL; 588int last_len =0; 589int i; 590 591/* 592 * If we're merging merge-bases, we don't want to bother with 593 * any working directory changes. 594 */ 595if(o->call_depth) 596return; 597 598/* Ensure D/F conflicts are adjacent in the entries list. */ 599for(i =0; i < entries->nr; i++) { 600struct string_list_item *next = &entries->items[i]; 601string_list_append(&df_sorted_entries, next->string)->util = 602 next->util; 603} 604 df_sorted_entries.cmp = string_list_df_name_compare; 605string_list_sort(&df_sorted_entries); 606 607string_list_clear(&o->df_conflict_file_set,1); 608for(i =0; i < df_sorted_entries.nr; i++) { 609const char*path = df_sorted_entries.items[i].string; 610int len =strlen(path); 611struct stage_data *e = df_sorted_entries.items[i].util; 612 613/* 614 * Check if last_file & path correspond to a D/F conflict; 615 * i.e. whether path is last_file+'/'+<something>. 616 * If so, record that it's okay to remove last_file to make 617 * room for path and friends if needed. 618 */ 619if(last_file && 620 len > last_len && 621memcmp(path, last_file, last_len) ==0&& 622 path[last_len] =='/') { 623string_list_insert(&o->df_conflict_file_set, last_file); 624} 625 626/* 627 * Determine whether path could exist as a file in the 628 * working directory as a possible D/F conflict. This 629 * will only occur when it exists in stage 2 as a 630 * file. 631 */ 632if(S_ISREG(e->stages[2].mode) ||S_ISLNK(e->stages[2].mode)) { 633 last_file = path; 634 last_len = len; 635}else{ 636 last_file = NULL; 637} 638} 639string_list_clear(&df_sorted_entries,0); 640} 641 642struct rename { 643struct diff_filepair *pair; 644/* 645 * Purpose of src_entry and dst_entry: 646 * 647 * If 'before' is renamed to 'after' then src_entry will contain 648 * the versions of 'before' from the merge_base, HEAD, and MERGE in 649 * stages 1, 2, and 3; dst_entry will contain the respective 650 * versions of 'after' in corresponding locations. Thus, we have a 651 * total of six modes and oids, though some will be null. (Stage 0 652 * is ignored; we're interested in handling conflicts.) 653 * 654 * Since we don't turn on break-rewrites by default, neither 655 * src_entry nor dst_entry can have all three of their stages have 656 * non-null oids, meaning at most four of the six will be non-null. 657 * Also, since this is a rename, both src_entry and dst_entry will 658 * have at least one non-null oid, meaning at least two will be 659 * non-null. Of the six oids, a typical rename will have three be 660 * non-null. Only two implies a rename/delete, and four implies a 661 * rename/add. 662 */ 663struct stage_data *src_entry; 664struct stage_data *dst_entry; 665unsigned add_turned_into_rename:1; 666unsigned processed:1; 667}; 668 669static intupdate_stages(struct merge_options *opt,const char*path, 670const struct diff_filespec *o, 671const struct diff_filespec *a, 672const struct diff_filespec *b) 673{ 674 675/* 676 * NOTE: It is usually a bad idea to call update_stages on a path 677 * before calling update_file on that same path, since it can 678 * sometimes lead to spurious "refusing to lose untracked file..." 679 * messages from update_file (via make_room_for path via 680 * would_lose_untracked). Instead, reverse the order of the calls 681 * (executing update_file first and then update_stages). 682 */ 683int clear =1; 684int options = ADD_CACHE_OK_TO_ADD | ADD_CACHE_SKIP_DFCHECK; 685if(clear) 686if(remove_file_from_cache(path)) 687return-1; 688if(o) 689if(add_cacheinfo(opt, o->mode, &o->oid, path,1,0, options)) 690return-1; 691if(a) 692if(add_cacheinfo(opt, a->mode, &a->oid, path,2,0, options)) 693return-1; 694if(b) 695if(add_cacheinfo(opt, b->mode, &b->oid, path,3,0, options)) 696return-1; 697return0; 698} 699 700static voidupdate_entry(struct stage_data *entry, 701struct diff_filespec *o, 702struct diff_filespec *a, 703struct diff_filespec *b) 704{ 705 entry->processed =0; 706 entry->stages[1].mode = o->mode; 707 entry->stages[2].mode = a->mode; 708 entry->stages[3].mode = b->mode; 709oidcpy(&entry->stages[1].oid, &o->oid); 710oidcpy(&entry->stages[2].oid, &a->oid); 711oidcpy(&entry->stages[3].oid, &b->oid); 712} 713 714static intremove_file(struct merge_options *o,int clean, 715const char*path,int no_wd) 716{ 717int update_cache = o->call_depth || clean; 718int update_working_directory = !o->call_depth && !no_wd; 719 720if(update_cache) { 721if(remove_file_from_cache(path)) 722return-1; 723} 724if(update_working_directory) { 725if(ignore_case) { 726struct cache_entry *ce; 727 ce =cache_file_exists(path,strlen(path), ignore_case); 728if(ce &&ce_stage(ce) ==0&&strcmp(path, ce->name)) 729return0; 730} 731if(remove_path(path)) 732return-1; 733} 734return0; 735} 736 737/* add a string to a strbuf, but converting "/" to "_" */ 738static voidadd_flattened_path(struct strbuf *out,const char*s) 739{ 740size_t i = out->len; 741strbuf_addstr(out, s); 742for(; i < out->len; i++) 743if(out->buf[i] =='/') 744 out->buf[i] ='_'; 745} 746 747static char*unique_path(struct merge_options *o,const char*path,const char*branch) 748{ 749struct path_hashmap_entry *entry; 750struct strbuf newpath = STRBUF_INIT; 751int suffix =0; 752size_t base_len; 753 754strbuf_addf(&newpath,"%s~", path); 755add_flattened_path(&newpath, branch); 756 757 base_len = newpath.len; 758while(hashmap_get_from_hash(&o->current_file_dir_set, 759path_hash(newpath.buf), newpath.buf) || 760(!o->call_depth &&file_exists(newpath.buf))) { 761strbuf_setlen(&newpath, base_len); 762strbuf_addf(&newpath,"_%d", suffix++); 763} 764 765FLEX_ALLOC_MEM(entry, path, newpath.buf, newpath.len); 766hashmap_entry_init(entry,path_hash(entry->path)); 767hashmap_add(&o->current_file_dir_set, entry); 768returnstrbuf_detach(&newpath, NULL); 769} 770 771/** 772 * Check whether a directory in the index is in the way of an incoming 773 * file. Return 1 if so. If check_working_copy is non-zero, also 774 * check the working directory. If empty_ok is non-zero, also return 775 * 0 in the case where the working-tree dir exists but is empty. 776 */ 777static intdir_in_way(const char*path,int check_working_copy,int empty_ok) 778{ 779int pos; 780struct strbuf dirpath = STRBUF_INIT; 781struct stat st; 782 783strbuf_addstr(&dirpath, path); 784strbuf_addch(&dirpath,'/'); 785 786 pos =cache_name_pos(dirpath.buf, dirpath.len); 787 788if(pos <0) 789 pos = -1- pos; 790if(pos < active_nr && 791!strncmp(dirpath.buf, active_cache[pos]->name, dirpath.len)) { 792strbuf_release(&dirpath); 793return1; 794} 795 796strbuf_release(&dirpath); 797return check_working_copy && !lstat(path, &st) &&S_ISDIR(st.st_mode) && 798!(empty_ok &&is_empty_dir(path)); 799} 800 801/* 802 * Returns whether path was tracked in the index before the merge started, 803 * and its oid and mode match the specified values 804 */ 805static intwas_tracked_and_matches(struct merge_options *o,const char*path, 806const struct object_id *oid,unsigned mode) 807{ 808int pos =index_name_pos(&o->orig_index, path,strlen(path)); 809struct cache_entry *ce; 810 811if(0> pos) 812/* we were not tracking this path before the merge */ 813return0; 814 815/* See if the file we were tracking before matches */ 816 ce = o->orig_index.cache[pos]; 817return(oid_eq(&ce->oid, oid) && ce->ce_mode == mode); 818} 819 820/* 821 * Returns whether path was tracked in the index before the merge started 822 */ 823static intwas_tracked(struct merge_options *o,const char*path) 824{ 825int pos =index_name_pos(&o->orig_index, path,strlen(path)); 826 827if(0<= pos) 828/* we were tracking this path before the merge */ 829return1; 830 831return0; 832} 833 834static intwould_lose_untracked(const char*path) 835{ 836/* 837 * This may look like it can be simplified to: 838 * return !was_tracked(o, path) && file_exists(path) 839 * but it can't. This function needs to know whether path was in 840 * the working tree due to EITHER having been tracked in the index 841 * before the merge OR having been put into the working copy and 842 * index by unpack_trees(). Due to that either-or requirement, we 843 * check the current index instead of the original one. 844 * 845 * Note that we do not need to worry about merge-recursive itself 846 * updating the index after unpack_trees() and before calling this 847 * function, because we strictly require all code paths in 848 * merge-recursive to update the working tree first and the index 849 * second. Doing otherwise would break 850 * update_file()/would_lose_untracked(); see every comment in this 851 * file which mentions "update_stages". 852 */ 853int pos =cache_name_pos(path,strlen(path)); 854 855if(pos <0) 856 pos = -1- pos; 857while(pos < active_nr && 858!strcmp(path, active_cache[pos]->name)) { 859/* 860 * If stage #0, it is definitely tracked. 861 * If it has stage #2 then it was tracked 862 * before this merge started. All other 863 * cases the path was not tracked. 864 */ 865switch(ce_stage(active_cache[pos])) { 866case0: 867case2: 868return0; 869} 870 pos++; 871} 872returnfile_exists(path); 873} 874 875static intwas_dirty(struct merge_options *o,const char*path) 876{ 877struct cache_entry *ce; 878int dirty =1; 879 880if(o->call_depth || !was_tracked(o, path)) 881return!dirty; 882 883 ce =index_file_exists(o->unpack_opts.src_index, 884 path,strlen(path), ignore_case); 885 dirty =verify_uptodate(ce, &o->unpack_opts) !=0; 886return dirty; 887} 888 889static intmake_room_for_path(struct merge_options *o,const char*path) 890{ 891int status, i; 892const char*msg =_("failed to create path '%s'%s"); 893 894/* Unlink any D/F conflict files that are in the way */ 895for(i =0; i < o->df_conflict_file_set.nr; i++) { 896const char*df_path = o->df_conflict_file_set.items[i].string; 897size_t pathlen =strlen(path); 898size_t df_pathlen =strlen(df_path); 899if(df_pathlen < pathlen && 900 path[df_pathlen] =='/'&& 901strncmp(path, df_path, df_pathlen) ==0) { 902output(o,3, 903_("Removing%sto make room for subdirectory\n"), 904 df_path); 905unlink(df_path); 906unsorted_string_list_delete_item(&o->df_conflict_file_set, 907 i,0); 908break; 909} 910} 911 912/* Make sure leading directories are created */ 913 status =safe_create_leading_directories_const(path); 914if(status) { 915if(status == SCLD_EXISTS) 916/* something else exists */ 917returnerr(o, msg, path,_(": perhaps a D/F conflict?")); 918returnerr(o, msg, path,""); 919} 920 921/* 922 * Do not unlink a file in the work tree if we are not 923 * tracking it. 924 */ 925if(would_lose_untracked(path)) 926returnerr(o,_("refusing to lose untracked file at '%s'"), 927 path); 928 929/* Successful unlink is good.. */ 930if(!unlink(path)) 931return0; 932/* .. and so is no existing file */ 933if(errno == ENOENT) 934return0; 935/* .. but not some other error (who really cares what?) */ 936returnerr(o, msg, path,_(": perhaps a D/F conflict?")); 937} 938 939static intupdate_file_flags(struct merge_options *o, 940const struct object_id *oid, 941unsigned mode, 942const char*path, 943int update_cache, 944int update_wd) 945{ 946int ret =0; 947 948if(o->call_depth) 949 update_wd =0; 950 951if(update_wd) { 952enum object_type type; 953void*buf; 954unsigned long size; 955 956if(S_ISGITLINK(mode)) { 957/* 958 * We may later decide to recursively descend into 959 * the submodule directory and update its index 960 * and/or work tree, but we do not do that now. 961 */ 962 update_wd =0; 963goto update_index; 964} 965 966 buf =read_object_file(oid, &type, &size); 967if(!buf) 968returnerr(o,_("cannot read object%s'%s'"),oid_to_hex(oid), path); 969if(type != OBJ_BLOB) { 970 ret =err(o,_("blob expected for%s'%s'"),oid_to_hex(oid), path); 971goto free_buf; 972} 973if(S_ISREG(mode)) { 974struct strbuf strbuf = STRBUF_INIT; 975if(convert_to_working_tree(&the_index, path, buf, size, &strbuf)) { 976free(buf); 977 size = strbuf.len; 978 buf =strbuf_detach(&strbuf, NULL); 979} 980} 981 982if(make_room_for_path(o, path) <0) { 983 update_wd =0; 984goto free_buf; 985} 986if(S_ISREG(mode) || (!has_symlinks &&S_ISLNK(mode))) { 987int fd; 988if(mode &0100) 989 mode =0777; 990else 991 mode =0666; 992 fd =open(path, O_WRONLY | O_TRUNC | O_CREAT, mode); 993if(fd <0) { 994 ret =err(o,_("failed to open '%s':%s"), 995 path,strerror(errno)); 996goto free_buf; 997} 998write_in_full(fd, buf, size); 999close(fd);1000}else if(S_ISLNK(mode)) {1001char*lnk =xmemdupz(buf, size);1002safe_create_leading_directories_const(path);1003unlink(path);1004if(symlink(lnk, path))1005 ret =err(o,_("failed to symlink '%s':%s"),1006 path,strerror(errno));1007free(lnk);1008}else1009 ret =err(o,1010_("do not know what to do with%06o%s'%s'"),1011 mode,oid_to_hex(oid), path);1012 free_buf:1013free(buf);1014}1015update_index:1016if(!ret && update_cache)1017if(add_cacheinfo(o, mode, oid, path,0, update_wd,1018 ADD_CACHE_OK_TO_ADD))1019return-1;1020return ret;1021}10221023static intupdate_file(struct merge_options *o,1024int clean,1025const struct object_id *oid,1026unsigned mode,1027const char*path)1028{1029returnupdate_file_flags(o, oid, mode, path, o->call_depth || clean, !o->call_depth);1030}10311032/* Low level file merging, update and removal */10331034struct merge_file_info {1035struct object_id oid;1036unsigned mode;1037unsigned clean:1,1038 merge:1;1039};10401041static intmerge_3way(struct merge_options *o,1042 mmbuffer_t *result_buf,1043const struct diff_filespec *one,1044const struct diff_filespec *a,1045const struct diff_filespec *b,1046const char*branch1,1047const char*branch2,1048const int extra_marker_size)1049{1050 mmfile_t orig, src1, src2;1051struct ll_merge_options ll_opts = {0};1052char*base_name, *name1, *name2;1053int merge_status;10541055 ll_opts.renormalize = o->renormalize;1056 ll_opts.extra_marker_size = extra_marker_size;1057 ll_opts.xdl_opts = o->xdl_opts;10581059if(o->call_depth) {1060 ll_opts.virtual_ancestor =1;1061 ll_opts.variant =0;1062}else{1063switch(o->recursive_variant) {1064case MERGE_RECURSIVE_OURS:1065 ll_opts.variant = XDL_MERGE_FAVOR_OURS;1066break;1067case MERGE_RECURSIVE_THEIRS:1068 ll_opts.variant = XDL_MERGE_FAVOR_THEIRS;1069break;1070default:1071 ll_opts.variant =0;1072break;1073}1074}10751076if(strcmp(a->path, b->path) ||1077(o->ancestor != NULL &&strcmp(a->path, one->path) !=0)) {1078 base_name = o->ancestor == NULL ? NULL :1079mkpathdup("%s:%s", o->ancestor, one->path);1080 name1 =mkpathdup("%s:%s", branch1, a->path);1081 name2 =mkpathdup("%s:%s", branch2, b->path);1082}else{1083 base_name = o->ancestor == NULL ? NULL :1084mkpathdup("%s", o->ancestor);1085 name1 =mkpathdup("%s", branch1);1086 name2 =mkpathdup("%s", branch2);1087}10881089read_mmblob(&orig, &one->oid);1090read_mmblob(&src1, &a->oid);1091read_mmblob(&src2, &b->oid);10921093 merge_status =ll_merge(result_buf, a->path, &orig, base_name,1094&src1, name1, &src2, name2,1095&the_index, &ll_opts);10961097free(base_name);1098free(name1);1099free(name2);1100free(orig.ptr);1101free(src1.ptr);1102free(src2.ptr);1103return merge_status;1104}11051106static intfind_first_merges(struct object_array *result,const char*path,1107struct commit *a,struct commit *b)1108{1109int i, j;1110struct object_array merges = OBJECT_ARRAY_INIT;1111struct commit *commit;1112int contains_another;11131114char merged_revision[42];1115const char*rev_args[] = {"rev-list","--merges","--ancestry-path",1116"--all", merged_revision, NULL };1117struct rev_info revs;1118struct setup_revision_opt rev_opts;11191120memset(result,0,sizeof(struct object_array));1121memset(&rev_opts,0,sizeof(rev_opts));11221123/* get all revisions that merge commit a */1124xsnprintf(merged_revision,sizeof(merged_revision),"^%s",1125oid_to_hex(&a->object.oid));1126repo_init_revisions(the_repository, &revs, NULL);1127 rev_opts.submodule = path;1128/* FIXME: can't handle linked worktrees in submodules yet */1129 revs.single_worktree = path != NULL;1130setup_revisions(ARRAY_SIZE(rev_args)-1, rev_args, &revs, &rev_opts);11311132/* save all revisions from the above list that contain b */1133if(prepare_revision_walk(&revs))1134die("revision walk setup failed");1135while((commit =get_revision(&revs)) != NULL) {1136struct object *o = &(commit->object);1137if(in_merge_bases(b, commit))1138add_object_array(o, NULL, &merges);1139}1140reset_revision_walk();11411142/* Now we've got all merges that contain a and b. Prune all1143 * merges that contain another found merge and save them in1144 * result.1145 */1146for(i =0; i < merges.nr; i++) {1147struct commit *m1 = (struct commit *) merges.objects[i].item;11481149 contains_another =0;1150for(j =0; j < merges.nr; j++) {1151struct commit *m2 = (struct commit *) merges.objects[j].item;1152if(i != j &&in_merge_bases(m2, m1)) {1153 contains_another =1;1154break;1155}1156}11571158if(!contains_another)1159add_object_array(merges.objects[i].item, NULL, result);1160}11611162object_array_clear(&merges);1163return result->nr;1164}11651166static voidprint_commit(struct commit *commit)1167{1168struct strbuf sb = STRBUF_INIT;1169struct pretty_print_context ctx = {0};1170 ctx.date_mode.type = DATE_NORMAL;1171format_commit_message(commit,"%h:%m %s", &sb, &ctx);1172fprintf(stderr,"%s\n", sb.buf);1173strbuf_release(&sb);1174}11751176static intmerge_submodule(struct merge_options *o,1177struct object_id *result,const char*path,1178const struct object_id *base,const struct object_id *a,1179const struct object_id *b)1180{1181struct commit *commit_base, *commit_a, *commit_b;1182int parent_count;1183struct object_array merges;11841185int i;1186int search = !o->call_depth;11871188/* store a in result in case we fail */1189oidcpy(result, a);11901191/* we can not handle deletion conflicts */1192if(is_null_oid(base))1193return0;1194if(is_null_oid(a))1195return0;1196if(is_null_oid(b))1197return0;11981199if(add_submodule_odb(path)) {1200output(o,1,_("Failed to merge submodule%s(not checked out)"), path);1201return0;1202}12031204if(!(commit_base =lookup_commit_reference(the_repository, base)) ||1205!(commit_a =lookup_commit_reference(the_repository, a)) ||1206!(commit_b =lookup_commit_reference(the_repository, b))) {1207output(o,1,_("Failed to merge submodule%s(commits not present)"), path);1208return0;1209}12101211/* check whether both changes are forward */1212if(!in_merge_bases(commit_base, commit_a) ||1213!in_merge_bases(commit_base, commit_b)) {1214output(o,1,_("Failed to merge submodule%s(commits don't follow merge-base)"), path);1215return0;1216}12171218/* Case #1: a is contained in b or vice versa */1219if(in_merge_bases(commit_a, commit_b)) {1220oidcpy(result, b);1221if(show(o,3)) {1222output(o,3,_("Fast-forwarding submodule%sto the following commit:"), path);1223output_commit_title(o, commit_b);1224}else if(show(o,2))1225output(o,2,_("Fast-forwarding submodule%s"), path);1226else1227;/* no output */12281229return1;1230}1231if(in_merge_bases(commit_b, commit_a)) {1232oidcpy(result, a);1233if(show(o,3)) {1234output(o,3,_("Fast-forwarding submodule%sto the following commit:"), path);1235output_commit_title(o, commit_a);1236}else if(show(o,2))1237output(o,2,_("Fast-forwarding submodule%s"), path);1238else1239;/* no output */12401241return1;1242}12431244/*1245 * Case #2: There are one or more merges that contain a and b in1246 * the submodule. If there is only one, then present it as a1247 * suggestion to the user, but leave it marked unmerged so the1248 * user needs to confirm the resolution.1249 */12501251/* Skip the search if makes no sense to the calling context. */1252if(!search)1253return0;12541255/* find commit which merges them */1256 parent_count =find_first_merges(&merges, path, commit_a, commit_b);1257switch(parent_count) {1258case0:1259output(o,1,_("Failed to merge submodule%s(merge following commits not found)"), path);1260break;12611262case1:1263output(o,1,_("Failed to merge submodule%s(not fast-forward)"), path);1264output(o,2,_("Found a possible merge resolution for the submodule:\n"));1265print_commit((struct commit *) merges.objects[0].item);1266output(o,2,_(1267"If this is correct simply add it to the index "1268"for example\n"1269"by using:\n\n"1270" git update-index --cacheinfo 160000%s\"%s\"\n\n"1271"which will accept this suggestion.\n"),1272oid_to_hex(&merges.objects[0].item->oid), path);1273break;12741275default:1276output(o,1,_("Failed to merge submodule%s(multiple merges found)"), path);1277for(i =0; i < merges.nr; i++)1278print_commit((struct commit *) merges.objects[i].item);1279}12801281object_array_clear(&merges);1282return0;1283}12841285static intmerge_mode_and_contents(struct merge_options *o,1286const struct diff_filespec *one,1287const struct diff_filespec *a,1288const struct diff_filespec *b,1289const char*filename,1290const char*branch1,1291const char*branch2,1292const int extra_marker_size,1293struct merge_file_info *result)1294{1295if(o->branch1 != branch1) {1296/*1297 * It's weird getting a reverse merge with HEAD on the bottom1298 * side of the conflict markers and the other branch on the1299 * top. Fix that.1300 */1301returnmerge_mode_and_contents(o, one, b, a,1302 filename,1303 branch2, branch1,1304 extra_marker_size, result);1305}13061307 result->merge =0;1308 result->clean =1;13091310if((S_IFMT & a->mode) != (S_IFMT & b->mode)) {1311 result->clean =0;1312if(S_ISREG(a->mode)) {1313 result->mode = a->mode;1314oidcpy(&result->oid, &a->oid);1315}else{1316 result->mode = b->mode;1317oidcpy(&result->oid, &b->oid);1318}1319}else{1320if(!oid_eq(&a->oid, &one->oid) && !oid_eq(&b->oid, &one->oid))1321 result->merge =1;13221323/*1324 * Merge modes1325 */1326if(a->mode == b->mode || a->mode == one->mode)1327 result->mode = b->mode;1328else{1329 result->mode = a->mode;1330if(b->mode != one->mode) {1331 result->clean =0;1332 result->merge =1;1333}1334}13351336if(oid_eq(&a->oid, &b->oid) ||oid_eq(&a->oid, &one->oid))1337oidcpy(&result->oid, &b->oid);1338else if(oid_eq(&b->oid, &one->oid))1339oidcpy(&result->oid, &a->oid);1340else if(S_ISREG(a->mode)) {1341 mmbuffer_t result_buf;1342int ret =0, merge_status;13431344 merge_status =merge_3way(o, &result_buf, one, a, b,1345 branch1, branch2,1346 extra_marker_size);13471348if((merge_status <0) || !result_buf.ptr)1349 ret =err(o,_("Failed to execute internal merge"));13501351if(!ret &&1352write_object_file(result_buf.ptr, result_buf.size,1353 blob_type, &result->oid))1354 ret =err(o,_("Unable to add%sto database"),1355 a->path);13561357free(result_buf.ptr);1358if(ret)1359return ret;1360 result->clean = (merge_status ==0);1361}else if(S_ISGITLINK(a->mode)) {1362 result->clean =merge_submodule(o, &result->oid,1363 one->path,1364&one->oid,1365&a->oid,1366&b->oid);1367}else if(S_ISLNK(a->mode)) {1368switch(o->recursive_variant) {1369case MERGE_RECURSIVE_NORMAL:1370oidcpy(&result->oid, &a->oid);1371if(!oid_eq(&a->oid, &b->oid))1372 result->clean =0;1373break;1374case MERGE_RECURSIVE_OURS:1375oidcpy(&result->oid, &a->oid);1376break;1377case MERGE_RECURSIVE_THEIRS:1378oidcpy(&result->oid, &b->oid);1379break;1380}1381}else1382BUG("unsupported object type in the tree");1383}13841385if(result->merge)1386output(o,2,_("Auto-merging%s"), filename);13871388return0;1389}13901391static inthandle_rename_via_dir(struct merge_options *o,1392struct diff_filepair *pair,1393const char*rename_branch,1394const char*other_branch)1395{1396/*1397 * Handle file adds that need to be renamed due to directory rename1398 * detection. This differs from handle_rename_normal, because1399 * there is no content merge to do; just move the file into the1400 * desired final location.1401 */1402const struct diff_filespec *dest = pair->two;14031404if(!o->call_depth &&would_lose_untracked(dest->path)) {1405char*alt_path =unique_path(o, dest->path, rename_branch);14061407output(o,1,_("Error: Refusing to lose untracked file at%s; "1408"writing to%sinstead."),1409 dest->path, alt_path);1410/*1411 * Write the file in worktree at alt_path, but not in the1412 * index. Instead, write to dest->path for the index but1413 * only at the higher appropriate stage.1414 */1415if(update_file(o,0, &dest->oid, dest->mode, alt_path))1416return-1;1417free(alt_path);1418returnupdate_stages(o, dest->path, NULL,1419 rename_branch == o->branch1 ? dest : NULL,1420 rename_branch == o->branch1 ? NULL : dest);1421}14221423/* Update dest->path both in index and in worktree */1424if(update_file(o,1, &dest->oid, dest->mode, dest->path))1425return-1;1426return0;1427}14281429static inthandle_change_delete(struct merge_options *o,1430const char*path,const char*old_path,1431const struct object_id *o_oid,int o_mode,1432const struct object_id *changed_oid,1433int changed_mode,1434const char*change_branch,1435const char*delete_branch,1436const char*change,const char*change_past)1437{1438char*alt_path = NULL;1439const char*update_path = path;1440int ret =0;14411442if(dir_in_way(path, !o->call_depth,0) ||1443(!o->call_depth &&would_lose_untracked(path))) {1444 update_path = alt_path =unique_path(o, path, change_branch);1445}14461447if(o->call_depth) {1448/*1449 * We cannot arbitrarily accept either a_sha or b_sha as1450 * correct; since there is no true "middle point" between1451 * them, simply reuse the base version for virtual merge base.1452 */1453 ret =remove_file_from_cache(path);1454if(!ret)1455 ret =update_file(o,0, o_oid, o_mode, update_path);1456}else{1457/*1458 * Despite the four nearly duplicate messages and argument1459 * lists below and the ugliness of the nested if-statements,1460 * having complete messages makes the job easier for1461 * translators.1462 *1463 * The slight variance among the cases is due to the fact1464 * that:1465 * 1) directory/file conflicts (in effect if1466 * !alt_path) could cause us to need to write the1467 * file to a different path.1468 * 2) renames (in effect if !old_path) could mean that1469 * there are two names for the path that the user1470 * may know the file by.1471 */1472if(!alt_path) {1473if(!old_path) {1474output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1475"and%sin%s. Version%sof%sleft in tree."),1476 change, path, delete_branch, change_past,1477 change_branch, change_branch, path);1478}else{1479output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1480"and%sto%sin%s. Version%sof%sleft in tree."),1481 change, old_path, delete_branch, change_past, path,1482 change_branch, change_branch, path);1483}1484}else{1485if(!old_path) {1486output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1487"and%sin%s. Version%sof%sleft in tree at%s."),1488 change, path, delete_branch, change_past,1489 change_branch, change_branch, path, alt_path);1490}else{1491output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1492"and%sto%sin%s. Version%sof%sleft in tree at%s."),1493 change, old_path, delete_branch, change_past, path,1494 change_branch, change_branch, path, alt_path);1495}1496}1497/*1498 * No need to call update_file() on path when change_branch ==1499 * o->branch1 && !alt_path, since that would needlessly touch1500 * path. We could call update_file_flags() with update_cache=01501 * and update_wd=0, but that's a no-op.1502 */1503if(change_branch != o->branch1 || alt_path)1504 ret =update_file(o,0, changed_oid, changed_mode, update_path);1505}1506free(alt_path);15071508return ret;1509}15101511static inthandle_rename_delete(struct merge_options *o,1512struct diff_filepair *pair,1513const char*rename_branch,1514const char*delete_branch)1515{1516const struct diff_filespec *orig = pair->one;1517const struct diff_filespec *dest = pair->two;15181519if(handle_change_delete(o,1520 o->call_depth ? orig->path : dest->path,1521 o->call_depth ? NULL : orig->path,1522&orig->oid, orig->mode,1523&dest->oid, dest->mode,1524 rename_branch, delete_branch,1525_("rename"),_("renamed")))1526return-1;15271528if(o->call_depth)1529returnremove_file_from_cache(dest->path);1530else1531returnupdate_stages(o, dest->path, NULL,1532 rename_branch == o->branch1 ? dest : NULL,1533 rename_branch == o->branch1 ? NULL : dest);1534}15351536static struct diff_filespec *filespec_from_entry(struct diff_filespec *target,1537struct stage_data *entry,1538int stage)1539{1540struct object_id *oid = &entry->stages[stage].oid;1541unsigned mode = entry->stages[stage].mode;1542if(mode ==0||is_null_oid(oid))1543return NULL;1544oidcpy(&target->oid, oid);1545 target->mode = mode;1546return target;1547}15481549static inthandle_file_collision(struct merge_options *o,1550const char*collide_path,1551const char*prev_path1,1552const char*prev_path2,1553const char*branch1,const char*branch2,1554const struct object_id *a_oid,1555unsigned int a_mode,1556const struct object_id *b_oid,1557unsigned int b_mode)1558{1559struct merge_file_info mfi;1560struct diff_filespec null, a, b;1561char*alt_path = NULL;1562const char*update_path = collide_path;15631564/*1565 * It's easiest to get the correct things into stage 2 and 3, and1566 * to make sure that the content merge puts HEAD before the other1567 * branch if we just ensure that branch1 == o->branch1. So, simply1568 * flip arguments around if we don't have that.1569 */1570if(branch1 != o->branch1) {1571returnhandle_file_collision(o, collide_path,1572 prev_path2, prev_path1,1573 branch2, branch1,1574 b_oid, b_mode,1575 a_oid, a_mode);1576}15771578/*1579 * In the recursive case, we just opt to undo renames1580 */1581if(o->call_depth && (prev_path1 || prev_path2)) {1582/* Put first file (a_oid, a_mode) in its original spot */1583if(prev_path1) {1584if(update_file(o,1, a_oid, a_mode, prev_path1))1585return-1;1586}else{1587if(update_file(o,1, a_oid, a_mode, collide_path))1588return-1;1589}15901591/* Put second file (b_oid, b_mode) in its original spot */1592if(prev_path2) {1593if(update_file(o,1, b_oid, b_mode, prev_path2))1594return-1;1595}else{1596if(update_file(o,1, b_oid, b_mode, collide_path))1597return-1;1598}15991600/* Don't leave something at collision path if unrenaming both */1601if(prev_path1 && prev_path2)1602remove_file(o,1, collide_path,0);16031604return0;1605}16061607/* Remove rename sources if rename/add or rename/rename(2to1) */1608if(prev_path1)1609remove_file(o,1, prev_path1,1610 o->call_depth ||would_lose_untracked(prev_path1));1611if(prev_path2)1612remove_file(o,1, prev_path2,1613 o->call_depth ||would_lose_untracked(prev_path2));16141615/*1616 * Remove the collision path, if it wouldn't cause dirty contents1617 * or an untracked file to get lost. We'll either overwrite with1618 * merged contents, or just write out to differently named files.1619 */1620if(was_dirty(o, collide_path)) {1621output(o,1,_("Refusing to lose dirty file at%s"),1622 collide_path);1623 update_path = alt_path =unique_path(o, collide_path,"merged");1624}else if(would_lose_untracked(collide_path)) {1625/*1626 * Only way we get here is if both renames were from1627 * a directory rename AND user had an untracked file1628 * at the location where both files end up after the1629 * two directory renames. See testcase 10d of t6043.1630 */1631output(o,1,_("Refusing to lose untracked file at "1632"%s, even though it's in the way."),1633 collide_path);1634 update_path = alt_path =unique_path(o, collide_path,"merged");1635}else{1636/*1637 * FIXME: It's possible that the two files are identical1638 * and that the current working copy happens to match, in1639 * which case we are unnecessarily touching the working1640 * tree file. It's not a likely enough scenario that I1641 * want to code up the checks for it and a better fix is1642 * available if we restructure how unpack_trees() and1643 * merge-recursive interoperate anyway, so punting for1644 * now...1645 */1646remove_file(o,0, collide_path,0);1647}16481649/* Store things in diff_filespecs for functions that need it */1650memset(&a,0,sizeof(struct diff_filespec));1651memset(&b,0,sizeof(struct diff_filespec));1652 null.path = a.path = b.path = (char*)collide_path;1653oidcpy(&null.oid, &null_oid);1654 null.mode =0;1655oidcpy(&a.oid, a_oid);1656 a.mode = a_mode;1657 a.oid_valid =1;1658oidcpy(&b.oid, b_oid);1659 b.mode = b_mode;1660 b.oid_valid =1;16611662if(merge_mode_and_contents(o, &null, &a, &b, collide_path,1663 branch1, branch2, o->call_depth *2, &mfi))1664return-1;1665 mfi.clean &= !alt_path;1666if(update_file(o, mfi.clean, &mfi.oid, mfi.mode, update_path))1667return-1;1668if(!mfi.clean && !o->call_depth &&1669update_stages(o, collide_path, NULL, &a, &b))1670return-1;1671free(alt_path);1672/*1673 * FIXME: If both a & b both started with conflicts (only possible1674 * if they came from a rename/rename(2to1)), but had IDENTICAL1675 * contents including those conflicts, then in the next line we claim1676 * it was clean. If someone cares about this case, we should have the1677 * caller notify us if we started with conflicts.1678 */1679return mfi.clean;1680}16811682static inthandle_rename_add(struct merge_options *o,1683struct rename_conflict_info *ci)1684{1685/* a was renamed to c, and a separate c was added. */1686struct diff_filespec *a = ci->pair1->one;1687struct diff_filespec *c = ci->pair1->two;1688char*path = c->path;1689char*prev_path_desc;1690struct merge_file_info mfi;16911692int other_stage = (ci->branch1 == o->branch1 ?3:2);16931694output(o,1,_("CONFLICT (rename/add): "1695"Rename%s->%sin%s. Added%sin%s"),1696 a->path, c->path, ci->branch1,1697 c->path, ci->branch2);16981699 prev_path_desc =xstrfmt("version of%sfrom%s", path, a->path);1700if(merge_mode_and_contents(o, a, c, &ci->ren1_other, prev_path_desc,1701 o->branch1, o->branch2,17021+ o->call_depth *2, &mfi))1703return-1;1704free(prev_path_desc);17051706returnhandle_file_collision(o,1707 c->path, a->path, NULL,1708 ci->branch1, ci->branch2,1709&mfi.oid, mfi.mode,1710&ci->dst_entry1->stages[other_stage].oid,1711 ci->dst_entry1->stages[other_stage].mode);1712}17131714static char*find_path_for_conflict(struct merge_options *o,1715const char*path,1716const char*branch1,1717const char*branch2)1718{1719char*new_path = NULL;1720if(dir_in_way(path, !o->call_depth,0)) {1721 new_path =unique_path(o, path, branch1);1722output(o,1,_("%sis a directory in%sadding "1723"as%sinstead"),1724 path, branch2, new_path);1725}else if(would_lose_untracked(path)) {1726 new_path =unique_path(o, path, branch1);1727output(o,1,_("Refusing to lose untracked file"1728" at%s; adding as%sinstead"),1729 path, new_path);1730}17311732return new_path;1733}17341735static inthandle_rename_rename_1to2(struct merge_options *o,1736struct rename_conflict_info *ci)1737{1738/* One file was renamed in both branches, but to different names. */1739struct merge_file_info mfi;1740struct diff_filespec other;1741struct diff_filespec *add;1742struct diff_filespec *one = ci->pair1->one;1743struct diff_filespec *a = ci->pair1->two;1744struct diff_filespec *b = ci->pair2->two;1745char*path_desc;17461747output(o,1,_("CONFLICT (rename/rename): "1748"Rename\"%s\"->\"%s\"in branch\"%s\""1749"rename\"%s\"->\"%s\"in\"%s\"%s"),1750 one->path, a->path, ci->branch1,1751 one->path, b->path, ci->branch2,1752 o->call_depth ?_(" (left unresolved)") :"");17531754 path_desc =xstrfmt("%sand%s, both renamed from%s",1755 a->path, b->path, one->path);1756if(merge_mode_and_contents(o, one, a, b, path_desc,1757 ci->branch1, ci->branch2,1758 o->call_depth *2, &mfi))1759return-1;1760free(path_desc);17611762if(o->call_depth) {1763/*1764 * FIXME: For rename/add-source conflicts (if we could detect1765 * such), this is wrong. We should instead find a unique1766 * pathname and then either rename the add-source file to that1767 * unique path, or use that unique path instead of src here.1768 */1769if(update_file(o,0, &mfi.oid, mfi.mode, one->path))1770return-1;17711772/*1773 * Above, we put the merged content at the merge-base's1774 * path. Now we usually need to delete both a->path and1775 * b->path. However, the rename on each side of the merge1776 * could also be involved in a rename/add conflict. In1777 * such cases, we should keep the added file around,1778 * resolving the conflict at that path in its favor.1779 */1780 add =filespec_from_entry(&other, ci->dst_entry1,2^1);1781if(add) {1782if(update_file(o,0, &add->oid, add->mode, a->path))1783return-1;1784}1785else1786remove_file_from_cache(a->path);1787 add =filespec_from_entry(&other, ci->dst_entry2,3^1);1788if(add) {1789if(update_file(o,0, &add->oid, add->mode, b->path))1790return-1;1791}1792else1793remove_file_from_cache(b->path);1794}else{1795/*1796 * For each destination path, we need to see if there is a1797 * rename/add collision. If not, we can write the file out1798 * to the specified location.1799 */1800 add =filespec_from_entry(&other, ci->dst_entry1,2^1);1801if(add) {1802if(handle_file_collision(o, a->path,1803 NULL, NULL,1804 ci->branch1, ci->branch2,1805&mfi.oid, mfi.mode,1806&add->oid, add->mode) <0)1807return-1;1808}else{1809char*new_path =find_path_for_conflict(o, a->path,1810 ci->branch1,1811 ci->branch2);1812if(update_file(o,0, &mfi.oid, mfi.mode, new_path ? new_path : a->path))1813return-1;1814free(new_path);1815if(update_stages(o, a->path, NULL, a, NULL))1816return-1;1817}18181819 add =filespec_from_entry(&other, ci->dst_entry2,3^1);1820if(add) {1821if(handle_file_collision(o, b->path,1822 NULL, NULL,1823 ci->branch1, ci->branch2,1824&add->oid, add->mode,1825&mfi.oid, mfi.mode) <0)1826return-1;1827}else{1828char*new_path =find_path_for_conflict(o, b->path,1829 ci->branch2,1830 ci->branch1);1831if(update_file(o,0, &mfi.oid, mfi.mode, new_path ? new_path : b->path))1832return-1;1833free(new_path);1834if(update_stages(o, b->path, NULL, NULL, b))1835return-1;1836}1837}18381839return0;1840}18411842static inthandle_rename_rename_2to1(struct merge_options *o,1843struct rename_conflict_info *ci)1844{1845/* Two files, a & b, were renamed to the same thing, c. */1846struct diff_filespec *a = ci->pair1->one;1847struct diff_filespec *b = ci->pair2->one;1848struct diff_filespec *c1 = ci->pair1->two;1849struct diff_filespec *c2 = ci->pair2->two;1850char*path = c1->path;/* == c2->path */1851char*path_side_1_desc;1852char*path_side_2_desc;1853struct merge_file_info mfi_c1;1854struct merge_file_info mfi_c2;18551856output(o,1,_("CONFLICT (rename/rename): "1857"Rename%s->%sin%s. "1858"Rename%s->%sin%s"),1859 a->path, c1->path, ci->branch1,1860 b->path, c2->path, ci->branch2);18611862 path_side_1_desc =xstrfmt("version of%sfrom%s", path, a->path);1863 path_side_2_desc =xstrfmt("version of%sfrom%s", path, b->path);1864if(merge_mode_and_contents(o, a, c1, &ci->ren1_other, path_side_1_desc,1865 o->branch1, o->branch2,18661+ o->call_depth *2, &mfi_c1) ||1867merge_mode_and_contents(o, b, &ci->ren2_other, c2, path_side_2_desc,1868 o->branch1, o->branch2,18691+ o->call_depth *2, &mfi_c2))1870return-1;1871free(path_side_1_desc);1872free(path_side_2_desc);18731874returnhandle_file_collision(o, path, a->path, b->path,1875 ci->branch1, ci->branch2,1876&mfi_c1.oid, mfi_c1.mode,1877&mfi_c2.oid, mfi_c2.mode);1878}18791880/*1881 * Get the diff_filepairs changed between o_tree and tree.1882 */1883static struct diff_queue_struct *get_diffpairs(struct merge_options *o,1884struct tree *o_tree,1885struct tree *tree)1886{1887struct diff_queue_struct *ret;1888struct diff_options opts;18891890repo_diff_setup(the_repository, &opts);1891 opts.flags.recursive =1;1892 opts.flags.rename_empty =0;1893 opts.detect_rename =merge_detect_rename(o);1894/*1895 * We do not have logic to handle the detection of copies. In1896 * fact, it may not even make sense to add such logic: would we1897 * really want a change to a base file to be propagated through1898 * multiple other files by a merge?1899 */1900if(opts.detect_rename > DIFF_DETECT_RENAME)1901 opts.detect_rename = DIFF_DETECT_RENAME;1902 opts.rename_limit = o->merge_rename_limit >=0? o->merge_rename_limit :1903 o->diff_rename_limit >=0? o->diff_rename_limit :19041000;1905 opts.rename_score = o->rename_score;1906 opts.show_rename_progress = o->show_rename_progress;1907 opts.output_format = DIFF_FORMAT_NO_OUTPUT;1908diff_setup_done(&opts);1909diff_tree_oid(&o_tree->object.oid, &tree->object.oid,"", &opts);1910diffcore_std(&opts);1911if(opts.needed_rename_limit > o->needed_rename_limit)1912 o->needed_rename_limit = opts.needed_rename_limit;19131914 ret =xmalloc(sizeof(*ret));1915*ret = diff_queued_diff;19161917 opts.output_format = DIFF_FORMAT_NO_OUTPUT;1918 diff_queued_diff.nr =0;1919 diff_queued_diff.queue = NULL;1920diff_flush(&opts);1921return ret;1922}19231924static inttree_has_path(struct tree *tree,const char*path)1925{1926struct object_id hashy;1927unsigned int mode_o;19281929return!get_tree_entry(&tree->object.oid, path,1930&hashy, &mode_o);1931}19321933/*1934 * Return a new string that replaces the beginning portion (which matches1935 * entry->dir), with entry->new_dir. In perl-speak:1936 * new_path_name = (old_path =~ s/entry->dir/entry->new_dir/);1937 * NOTE:1938 * Caller must ensure that old_path starts with entry->dir + '/'.1939 */1940static char*apply_dir_rename(struct dir_rename_entry *entry,1941const char*old_path)1942{1943struct strbuf new_path = STRBUF_INIT;1944int oldlen, newlen;19451946if(entry->non_unique_new_dir)1947return NULL;19481949 oldlen =strlen(entry->dir);1950 newlen = entry->new_dir.len + (strlen(old_path) - oldlen) +1;1951strbuf_grow(&new_path, newlen);1952strbuf_addbuf(&new_path, &entry->new_dir);1953strbuf_addstr(&new_path, &old_path[oldlen]);19541955returnstrbuf_detach(&new_path, NULL);1956}19571958static voidget_renamed_dir_portion(const char*old_path,const char*new_path,1959char**old_dir,char**new_dir)1960{1961char*end_of_old, *end_of_new;1962int old_len, new_len;19631964*old_dir = NULL;1965*new_dir = NULL;19661967/*1968 * For1969 * "a/b/c/d/e/foo.c" -> "a/b/some/thing/else/e/foo.c"1970 * the "e/foo.c" part is the same, we just want to know that1971 * "a/b/c/d" was renamed to "a/b/some/thing/else"1972 * so, for this example, this function returns "a/b/c/d" in1973 * *old_dir and "a/b/some/thing/else" in *new_dir.1974 *1975 * Also, if the basename of the file changed, we don't care. We1976 * want to know which portion of the directory, if any, changed.1977 */1978 end_of_old =strrchr(old_path,'/');1979 end_of_new =strrchr(new_path,'/');19801981if(end_of_old == NULL || end_of_new == NULL)1982return;1983while(*--end_of_new == *--end_of_old &&1984 end_of_old != old_path &&1985 end_of_new != new_path)1986;/* Do nothing; all in the while loop */1987/*1988 * We've found the first non-matching character in the directory1989 * paths. That means the current directory we were comparing1990 * represents the rename. Move end_of_old and end_of_new back1991 * to the full directory name.1992 */1993if(*end_of_old =='/')1994 end_of_old++;1995if(*end_of_old !='/')1996 end_of_new++;1997 end_of_old =strchr(end_of_old,'/');1998 end_of_new =strchr(end_of_new,'/');19992000/*2001 * It may have been the case that old_path and new_path were the same2002 * directory all along. Don't claim a rename if they're the same.2003 */2004 old_len = end_of_old - old_path;2005 new_len = end_of_new - new_path;20062007if(old_len != new_len ||strncmp(old_path, new_path, old_len)) {2008*old_dir =xstrndup(old_path, old_len);2009*new_dir =xstrndup(new_path, new_len);2010}2011}20122013static voidremove_hashmap_entries(struct hashmap *dir_renames,2014struct string_list *items_to_remove)2015{2016int i;2017struct dir_rename_entry *entry;20182019for(i =0; i < items_to_remove->nr; i++) {2020 entry = items_to_remove->items[i].util;2021hashmap_remove(dir_renames, entry, NULL);2022}2023string_list_clear(items_to_remove,0);2024}20252026/*2027 * See if there is a directory rename for path, and if there are any file2028 * level conflicts for the renamed location. If there is a rename and2029 * there are no conflicts, return the new name. Otherwise, return NULL.2030 */2031static char*handle_path_level_conflicts(struct merge_options *o,2032const char*path,2033struct dir_rename_entry *entry,2034struct hashmap *collisions,2035struct tree *tree)2036{2037char*new_path = NULL;2038struct collision_entry *collision_ent;2039int clean =1;2040struct strbuf collision_paths = STRBUF_INIT;20412042/*2043 * entry has the mapping of old directory name to new directory name2044 * that we want to apply to path.2045 */2046 new_path =apply_dir_rename(entry, path);20472048if(!new_path) {2049/* This should only happen when entry->non_unique_new_dir set */2050if(!entry->non_unique_new_dir)2051BUG("entry->non_unqiue_dir not set and !new_path");2052output(o,1,_("CONFLICT (directory rename split): "2053"Unclear where to place%sbecause directory "2054"%swas renamed to multiple other directories, "2055"with no destination getting a majority of the "2056"files."),2057 path, entry->dir);2058 clean =0;2059return NULL;2060}20612062/*2063 * The caller needs to have ensured that it has pre-populated2064 * collisions with all paths that map to new_path. Do a quick check2065 * to ensure that's the case.2066 */2067 collision_ent =collision_find_entry(collisions, new_path);2068if(collision_ent == NULL)2069BUG("collision_ent is NULL");20702071/*2072 * Check for one-sided add/add/.../add conflicts, i.e.2073 * where implicit renames from the other side doing2074 * directory rename(s) can affect this side of history2075 * to put multiple paths into the same location. Warn2076 * and bail on directory renames for such paths.2077 */2078if(collision_ent->reported_already) {2079 clean =0;2080}else if(tree_has_path(tree, new_path)) {2081 collision_ent->reported_already =1;2082strbuf_add_separated_string_list(&collision_paths,", ",2083&collision_ent->source_files);2084output(o,1,_("CONFLICT (implicit dir rename): Existing "2085"file/dir at%sin the way of implicit "2086"directory rename(s) putting the following "2087"path(s) there:%s."),2088 new_path, collision_paths.buf);2089 clean =0;2090}else if(collision_ent->source_files.nr >1) {2091 collision_ent->reported_already =1;2092strbuf_add_separated_string_list(&collision_paths,", ",2093&collision_ent->source_files);2094output(o,1,_("CONFLICT (implicit dir rename): Cannot map "2095"more than one path to%s; implicit directory "2096"renames tried to put these paths there:%s"),2097 new_path, collision_paths.buf);2098 clean =0;2099}21002101/* Free memory we no longer need */2102strbuf_release(&collision_paths);2103if(!clean && new_path) {2104free(new_path);2105return NULL;2106}21072108return new_path;2109}21102111/*2112 * There are a couple things we want to do at the directory level:2113 * 1. Check for both sides renaming to the same thing, in order to avoid2114 * implicit renaming of files that should be left in place. (See2115 * testcase 6b in t6043 for details.)2116 * 2. Prune directory renames if there are still files left in the2117 * the original directory. These represent a partial directory rename,2118 * i.e. a rename where only some of the files within the directory2119 * were renamed elsewhere. (Technically, this could be done earlier2120 * in get_directory_renames(), except that would prevent us from2121 * doing the previous check and thus failing testcase 6b.)2122 * 3. Check for rename/rename(1to2) conflicts (at the directory level).2123 * In the future, we could potentially record this info as well and2124 * omit reporting rename/rename(1to2) conflicts for each path within2125 * the affected directories, thus cleaning up the merge output.2126 * NOTE: We do NOT check for rename/rename(2to1) conflicts at the2127 * directory level, because merging directories is fine. If it2128 * causes conflicts for files within those merged directories, then2129 * that should be detected at the individual path level.2130 */2131static voidhandle_directory_level_conflicts(struct merge_options *o,2132struct hashmap *dir_re_head,2133struct tree *head,2134struct hashmap *dir_re_merge,2135struct tree *merge)2136{2137struct hashmap_iter iter;2138struct dir_rename_entry *head_ent;2139struct dir_rename_entry *merge_ent;21402141struct string_list remove_from_head = STRING_LIST_INIT_NODUP;2142struct string_list remove_from_merge = STRING_LIST_INIT_NODUP;21432144hashmap_iter_init(dir_re_head, &iter);2145while((head_ent =hashmap_iter_next(&iter))) {2146 merge_ent =dir_rename_find_entry(dir_re_merge, head_ent->dir);2147if(merge_ent &&2148!head_ent->non_unique_new_dir &&2149!merge_ent->non_unique_new_dir &&2150!strbuf_cmp(&head_ent->new_dir, &merge_ent->new_dir)) {2151/* 1. Renamed identically; remove it from both sides */2152string_list_append(&remove_from_head,2153 head_ent->dir)->util = head_ent;2154strbuf_release(&head_ent->new_dir);2155string_list_append(&remove_from_merge,2156 merge_ent->dir)->util = merge_ent;2157strbuf_release(&merge_ent->new_dir);2158}else if(tree_has_path(head, head_ent->dir)) {2159/* 2. This wasn't a directory rename after all */2160string_list_append(&remove_from_head,2161 head_ent->dir)->util = head_ent;2162strbuf_release(&head_ent->new_dir);2163}2164}21652166remove_hashmap_entries(dir_re_head, &remove_from_head);2167remove_hashmap_entries(dir_re_merge, &remove_from_merge);21682169hashmap_iter_init(dir_re_merge, &iter);2170while((merge_ent =hashmap_iter_next(&iter))) {2171 head_ent =dir_rename_find_entry(dir_re_head, merge_ent->dir);2172if(tree_has_path(merge, merge_ent->dir)) {2173/* 2. This wasn't a directory rename after all */2174string_list_append(&remove_from_merge,2175 merge_ent->dir)->util = merge_ent;2176}else if(head_ent &&2177!head_ent->non_unique_new_dir &&2178!merge_ent->non_unique_new_dir) {2179/* 3. rename/rename(1to2) */2180/*2181 * We can assume it's not rename/rename(1to1) because2182 * that was case (1), already checked above. So we2183 * know that head_ent->new_dir and merge_ent->new_dir2184 * are different strings.2185 */2186output(o,1,_("CONFLICT (rename/rename): "2187"Rename directory%s->%sin%s. "2188"Rename directory%s->%sin%s"),2189 head_ent->dir, head_ent->new_dir.buf, o->branch1,2190 head_ent->dir, merge_ent->new_dir.buf, o->branch2);2191string_list_append(&remove_from_head,2192 head_ent->dir)->util = head_ent;2193strbuf_release(&head_ent->new_dir);2194string_list_append(&remove_from_merge,2195 merge_ent->dir)->util = merge_ent;2196strbuf_release(&merge_ent->new_dir);2197}2198}21992200remove_hashmap_entries(dir_re_head, &remove_from_head);2201remove_hashmap_entries(dir_re_merge, &remove_from_merge);2202}22032204static struct hashmap *get_directory_renames(struct diff_queue_struct *pairs,2205struct tree *tree)2206{2207struct hashmap *dir_renames;2208struct hashmap_iter iter;2209struct dir_rename_entry *entry;2210int i;22112212/*2213 * Typically, we think of a directory rename as all files from a2214 * certain directory being moved to a target directory. However,2215 * what if someone first moved two files from the original2216 * directory in one commit, and then renamed the directory2217 * somewhere else in a later commit? At merge time, we just know2218 * that files from the original directory went to two different2219 * places, and that the bulk of them ended up in the same place.2220 * We want each directory rename to represent where the bulk of the2221 * files from that directory end up; this function exists to find2222 * where the bulk of the files went.2223 *2224 * The first loop below simply iterates through the list of file2225 * renames, finding out how often each directory rename pair2226 * possibility occurs.2227 */2228 dir_renames =xmalloc(sizeof(*dir_renames));2229dir_rename_init(dir_renames);2230for(i =0; i < pairs->nr; ++i) {2231struct string_list_item *item;2232int*count;2233struct diff_filepair *pair = pairs->queue[i];2234char*old_dir, *new_dir;22352236/* File not part of directory rename if it wasn't renamed */2237if(pair->status !='R')2238continue;22392240get_renamed_dir_portion(pair->one->path, pair->two->path,2241&old_dir, &new_dir);2242if(!old_dir)2243/* Directory didn't change at all; ignore this one. */2244continue;22452246 entry =dir_rename_find_entry(dir_renames, old_dir);2247if(!entry) {2248 entry =xmalloc(sizeof(*entry));2249dir_rename_entry_init(entry, old_dir);2250hashmap_put(dir_renames, entry);2251}else{2252free(old_dir);2253}2254 item =string_list_lookup(&entry->possible_new_dirs, new_dir);2255if(!item) {2256 item =string_list_insert(&entry->possible_new_dirs,2257 new_dir);2258 item->util =xcalloc(1,sizeof(int));2259}else{2260free(new_dir);2261}2262 count = item->util;2263*count +=1;2264}22652266/*2267 * For each directory with files moved out of it, we find out which2268 * target directory received the most files so we can declare it to2269 * be the "winning" target location for the directory rename. This2270 * winner gets recorded in new_dir. If there is no winner2271 * (multiple target directories received the same number of files),2272 * we set non_unique_new_dir. Once we've determined the winner (or2273 * that there is no winner), we no longer need possible_new_dirs.2274 */2275hashmap_iter_init(dir_renames, &iter);2276while((entry =hashmap_iter_next(&iter))) {2277int max =0;2278int bad_max =0;2279char*best = NULL;22802281for(i =0; i < entry->possible_new_dirs.nr; i++) {2282int*count = entry->possible_new_dirs.items[i].util;22832284if(*count == max)2285 bad_max = max;2286else if(*count > max) {2287 max = *count;2288 best = entry->possible_new_dirs.items[i].string;2289}2290}2291if(bad_max == max)2292 entry->non_unique_new_dir =1;2293else{2294assert(entry->new_dir.len ==0);2295strbuf_addstr(&entry->new_dir, best);2296}2297/*2298 * The relevant directory sub-portion of the original full2299 * filepaths were xstrndup'ed before inserting into2300 * possible_new_dirs, and instead of manually iterating the2301 * list and free'ing each, just lie and tell2302 * possible_new_dirs that it did the strdup'ing so that it2303 * will free them for us.2304 */2305 entry->possible_new_dirs.strdup_strings =1;2306string_list_clear(&entry->possible_new_dirs,1);2307}23082309return dir_renames;2310}23112312static struct dir_rename_entry *check_dir_renamed(const char*path,2313struct hashmap *dir_renames)2314{2315char*temp =xstrdup(path);2316char*end;2317struct dir_rename_entry *entry = NULL;23182319while((end =strrchr(temp,'/'))) {2320*end ='\0';2321 entry =dir_rename_find_entry(dir_renames, temp);2322if(entry)2323break;2324}2325free(temp);2326return entry;2327}23282329static voidcompute_collisions(struct hashmap *collisions,2330struct hashmap *dir_renames,2331struct diff_queue_struct *pairs)2332{2333int i;23342335/*2336 * Multiple files can be mapped to the same path due to directory2337 * renames done by the other side of history. Since that other2338 * side of history could have merged multiple directories into one,2339 * if our side of history added the same file basename to each of2340 * those directories, then all N of them would get implicitly2341 * renamed by the directory rename detection into the same path,2342 * and we'd get an add/add/.../add conflict, and all those adds2343 * from *this* side of history. This is not representable in the2344 * index, and users aren't going to easily be able to make sense of2345 * it. So we need to provide a good warning about what's2346 * happening, and fall back to no-directory-rename detection2347 * behavior for those paths.2348 *2349 * See testcases 9e and all of section 5 from t6043 for examples.2350 */2351collision_init(collisions);23522353for(i =0; i < pairs->nr; ++i) {2354struct dir_rename_entry *dir_rename_ent;2355struct collision_entry *collision_ent;2356char*new_path;2357struct diff_filepair *pair = pairs->queue[i];23582359if(pair->status !='A'&& pair->status !='R')2360continue;2361 dir_rename_ent =check_dir_renamed(pair->two->path,2362 dir_renames);2363if(!dir_rename_ent)2364continue;23652366 new_path =apply_dir_rename(dir_rename_ent, pair->two->path);2367if(!new_path)2368/*2369 * dir_rename_ent->non_unique_new_path is true, which2370 * means there is no directory rename for us to use,2371 * which means it won't cause us any additional2372 * collisions.2373 */2374continue;2375 collision_ent =collision_find_entry(collisions, new_path);2376if(!collision_ent) {2377 collision_ent =xcalloc(1,2378sizeof(struct collision_entry));2379hashmap_entry_init(collision_ent,strhash(new_path));2380hashmap_put(collisions, collision_ent);2381 collision_ent->target_file = new_path;2382}else{2383free(new_path);2384}2385string_list_insert(&collision_ent->source_files,2386 pair->two->path);2387}2388}23892390static char*check_for_directory_rename(struct merge_options *o,2391const char*path,2392struct tree *tree,2393struct hashmap *dir_renames,2394struct hashmap *dir_rename_exclusions,2395struct hashmap *collisions,2396int*clean_merge)2397{2398char*new_path = NULL;2399struct dir_rename_entry *entry =check_dir_renamed(path, dir_renames);2400struct dir_rename_entry *oentry = NULL;24012402if(!entry)2403return new_path;24042405/*2406 * This next part is a little weird. We do not want to do an2407 * implicit rename into a directory we renamed on our side, because2408 * that will result in a spurious rename/rename(1to2) conflict. An2409 * example:2410 * Base commit: dumbdir/afile, otherdir/bfile2411 * Side 1: smrtdir/afile, otherdir/bfile2412 * Side 2: dumbdir/afile, dumbdir/bfile2413 * Here, while working on Side 1, we could notice that otherdir was2414 * renamed/merged to dumbdir, and change the diff_filepair for2415 * otherdir/bfile into a rename into dumbdir/bfile. However, Side2416 * 2 will notice the rename from dumbdir to smrtdir, and do the2417 * transitive rename to move it from dumbdir/bfile to2418 * smrtdir/bfile. That gives us bfile in dumbdir vs being in2419 * smrtdir, a rename/rename(1to2) conflict. We really just want2420 * the file to end up in smrtdir. And the way to achieve that is2421 * to not let Side1 do the rename to dumbdir, since we know that is2422 * the source of one of our directory renames.2423 *2424 * That's why oentry and dir_rename_exclusions is here.2425 *2426 * As it turns out, this also prevents N-way transient rename2427 * confusion; See testcases 9c and 9d of t6043.2428 */2429 oentry =dir_rename_find_entry(dir_rename_exclusions, entry->new_dir.buf);2430if(oentry) {2431output(o,1,_("WARNING: Avoiding applying%s->%srename "2432"to%s, because%sitself was renamed."),2433 entry->dir, entry->new_dir.buf, path, entry->new_dir.buf);2434}else{2435 new_path =handle_path_level_conflicts(o, path, entry,2436 collisions, tree);2437*clean_merge &= (new_path != NULL);2438}24392440return new_path;2441}24422443static voidapply_directory_rename_modifications(struct merge_options *o,2444struct diff_filepair *pair,2445char*new_path,2446struct rename *re,2447struct tree *tree,2448struct tree *o_tree,2449struct tree *a_tree,2450struct tree *b_tree,2451struct string_list *entries,2452int*clean)2453{2454struct string_list_item *item;2455int stage = (tree == a_tree ?2:3);2456int update_wd;24572458/*2459 * In all cases where we can do directory rename detection,2460 * unpack_trees() will have read pair->two->path into the2461 * index and the working copy. We need to remove it so that2462 * we can instead place it at new_path. It is guaranteed to2463 * not be untracked (unpack_trees() would have errored out2464 * saying the file would have been overwritten), but it might2465 * be dirty, though.2466 */2467 update_wd = !was_dirty(o, pair->two->path);2468if(!update_wd)2469output(o,1,_("Refusing to lose dirty file at%s"),2470 pair->two->path);2471remove_file(o,1, pair->two->path, !update_wd);24722473/* Find or create a new re->dst_entry */2474 item =string_list_lookup(entries, new_path);2475if(item) {2476/*2477 * Since we're renaming on this side of history, and it's2478 * due to a directory rename on the other side of history2479 * (which we only allow when the directory in question no2480 * longer exists on the other side of history), the2481 * original entry for re->dst_entry is no longer2482 * necessary...2483 */2484 re->dst_entry->processed =1;24852486/*2487 * ...because we'll be using this new one.2488 */2489 re->dst_entry = item->util;2490}else{2491/*2492 * re->dst_entry is for the before-dir-rename path, and we2493 * need it to hold information for the after-dir-rename2494 * path. Before creating a new entry, we need to mark the2495 * old one as unnecessary (...unless it is shared by2496 * src_entry, i.e. this didn't use to be a rename, in which2497 * case we can just allow the normal processing to happen2498 * for it).2499 */2500if(pair->status =='R')2501 re->dst_entry->processed =1;25022503 re->dst_entry =insert_stage_data(new_path,2504 o_tree, a_tree, b_tree,2505 entries);2506 item =string_list_insert(entries, new_path);2507 item->util = re->dst_entry;2508}25092510/*2511 * Update the stage_data with the information about the path we are2512 * moving into place. That slot will be empty and available for us2513 * to write to because of the collision checks in2514 * handle_path_level_conflicts(). In other words,2515 * re->dst_entry->stages[stage].oid will be the null_oid, so it's2516 * open for us to write to.2517 *2518 * It may be tempting to actually update the index at this point as2519 * well, using update_stages_for_stage_data(), but as per the big2520 * "NOTE" in update_stages(), doing so will modify the current2521 * in-memory index which will break calls to would_lose_untracked()2522 * that we need to make. Instead, we need to just make sure that2523 * the various handle_rename_*() functions update the index2524 * explicitly rather than relying on unpack_trees() to have done it.2525 */2526get_tree_entry(&tree->object.oid,2527 pair->two->path,2528&re->dst_entry->stages[stage].oid,2529&re->dst_entry->stages[stage].mode);25302531/* Update pair status */2532if(pair->status =='A') {2533/*2534 * Recording rename information for this add makes it look2535 * like a rename/delete conflict. Make sure we can2536 * correctly handle this as an add that was moved to a new2537 * directory instead of reporting a rename/delete conflict.2538 */2539 re->add_turned_into_rename =1;2540}2541/*2542 * We don't actually look at pair->status again, but it seems2543 * pedagogically correct to adjust it.2544 */2545 pair->status ='R';25462547/*2548 * Finally, record the new location.2549 */2550 pair->two->path = new_path;2551}25522553/*2554 * Get information of all renames which occurred in 'pairs', making use of2555 * any implicit directory renames inferred from the other side of history.2556 * We need the three trees in the merge ('o_tree', 'a_tree' and 'b_tree')2557 * to be able to associate the correct cache entries with the rename2558 * information; tree is always equal to either a_tree or b_tree.2559 */2560static struct string_list *get_renames(struct merge_options *o,2561struct diff_queue_struct *pairs,2562struct hashmap *dir_renames,2563struct hashmap *dir_rename_exclusions,2564struct tree *tree,2565struct tree *o_tree,2566struct tree *a_tree,2567struct tree *b_tree,2568struct string_list *entries,2569int*clean_merge)2570{2571int i;2572struct hashmap collisions;2573struct hashmap_iter iter;2574struct collision_entry *e;2575struct string_list *renames;25762577compute_collisions(&collisions, dir_renames, pairs);2578 renames =xcalloc(1,sizeof(struct string_list));25792580for(i =0; i < pairs->nr; ++i) {2581struct string_list_item *item;2582struct rename *re;2583struct diff_filepair *pair = pairs->queue[i];2584char*new_path;/* non-NULL only with directory renames */25852586if(pair->status !='A'&& pair->status !='R') {2587diff_free_filepair(pair);2588continue;2589}2590 new_path =check_for_directory_rename(o, pair->two->path, tree,2591 dir_renames,2592 dir_rename_exclusions,2593&collisions,2594 clean_merge);2595if(pair->status !='R'&& !new_path) {2596diff_free_filepair(pair);2597continue;2598}25992600 re =xmalloc(sizeof(*re));2601 re->processed =0;2602 re->add_turned_into_rename =0;2603 re->pair = pair;2604 item =string_list_lookup(entries, re->pair->one->path);2605if(!item)2606 re->src_entry =insert_stage_data(re->pair->one->path,2607 o_tree, a_tree, b_tree, entries);2608else2609 re->src_entry = item->util;26102611 item =string_list_lookup(entries, re->pair->two->path);2612if(!item)2613 re->dst_entry =insert_stage_data(re->pair->two->path,2614 o_tree, a_tree, b_tree, entries);2615else2616 re->dst_entry = item->util;2617 item =string_list_insert(renames, pair->one->path);2618 item->util = re;2619if(new_path)2620apply_directory_rename_modifications(o, pair, new_path,2621 re, tree, o_tree,2622 a_tree, b_tree,2623 entries,2624 clean_merge);2625}26262627hashmap_iter_init(&collisions, &iter);2628while((e =hashmap_iter_next(&iter))) {2629free(e->target_file);2630string_list_clear(&e->source_files,0);2631}2632hashmap_free(&collisions,1);2633return renames;2634}26352636static intprocess_renames(struct merge_options *o,2637struct string_list *a_renames,2638struct string_list *b_renames)2639{2640int clean_merge =1, i, j;2641struct string_list a_by_dst = STRING_LIST_INIT_NODUP;2642struct string_list b_by_dst = STRING_LIST_INIT_NODUP;2643const struct rename *sre;26442645for(i =0; i < a_renames->nr; i++) {2646 sre = a_renames->items[i].util;2647string_list_insert(&a_by_dst, sre->pair->two->path)->util2648= (void*)sre;2649}2650for(i =0; i < b_renames->nr; i++) {2651 sre = b_renames->items[i].util;2652string_list_insert(&b_by_dst, sre->pair->two->path)->util2653= (void*)sre;2654}26552656for(i =0, j =0; i < a_renames->nr || j < b_renames->nr;) {2657struct string_list *renames1, *renames2Dst;2658struct rename *ren1 = NULL, *ren2 = NULL;2659const char*branch1, *branch2;2660const char*ren1_src, *ren1_dst;2661struct string_list_item *lookup;26622663if(i >= a_renames->nr) {2664 ren2 = b_renames->items[j++].util;2665}else if(j >= b_renames->nr) {2666 ren1 = a_renames->items[i++].util;2667}else{2668int compare =strcmp(a_renames->items[i].string,2669 b_renames->items[j].string);2670if(compare <=0)2671 ren1 = a_renames->items[i++].util;2672if(compare >=0)2673 ren2 = b_renames->items[j++].util;2674}26752676/* TODO: refactor, so that 1/2 are not needed */2677if(ren1) {2678 renames1 = a_renames;2679 renames2Dst = &b_by_dst;2680 branch1 = o->branch1;2681 branch2 = o->branch2;2682}else{2683 renames1 = b_renames;2684 renames2Dst = &a_by_dst;2685 branch1 = o->branch2;2686 branch2 = o->branch1;2687SWAP(ren2, ren1);2688}26892690if(ren1->processed)2691continue;2692 ren1->processed =1;2693 ren1->dst_entry->processed =1;2694/* BUG: We should only mark src_entry as processed if we2695 * are not dealing with a rename + add-source case.2696 */2697 ren1->src_entry->processed =1;26982699 ren1_src = ren1->pair->one->path;2700 ren1_dst = ren1->pair->two->path;27012702if(ren2) {2703/* One file renamed on both sides */2704const char*ren2_src = ren2->pair->one->path;2705const char*ren2_dst = ren2->pair->two->path;2706enum rename_type rename_type;2707if(strcmp(ren1_src, ren2_src) !=0)2708BUG("ren1_src != ren2_src");2709 ren2->dst_entry->processed =1;2710 ren2->processed =1;2711if(strcmp(ren1_dst, ren2_dst) !=0) {2712 rename_type = RENAME_ONE_FILE_TO_TWO;2713 clean_merge =0;2714}else{2715 rename_type = RENAME_ONE_FILE_TO_ONE;2716/* BUG: We should only remove ren1_src in2717 * the base stage (think of rename +2718 * add-source cases).2719 */2720remove_file(o,1, ren1_src,1);2721update_entry(ren1->dst_entry,2722 ren1->pair->one,2723 ren1->pair->two,2724 ren2->pair->two);2725}2726setup_rename_conflict_info(rename_type,2727 ren1->pair,2728 ren2->pair,2729 branch1,2730 branch2,2731 ren1->dst_entry,2732 ren2->dst_entry,2733 o,2734 NULL,2735 NULL);2736}else if((lookup =string_list_lookup(renames2Dst, ren1_dst))) {2737/* Two different files renamed to the same thing */2738char*ren2_dst;2739 ren2 = lookup->util;2740 ren2_dst = ren2->pair->two->path;2741if(strcmp(ren1_dst, ren2_dst) !=0)2742BUG("ren1_dst != ren2_dst");27432744 clean_merge =0;2745 ren2->processed =1;2746/*2747 * BUG: We should only mark src_entry as processed2748 * if we are not dealing with a rename + add-source2749 * case.2750 */2751 ren2->src_entry->processed =1;27522753setup_rename_conflict_info(RENAME_TWO_FILES_TO_ONE,2754 ren1->pair,2755 ren2->pair,2756 branch1,2757 branch2,2758 ren1->dst_entry,2759 ren2->dst_entry,2760 o,2761 ren1->src_entry,2762 ren2->src_entry);27632764}else{2765/* Renamed in 1, maybe changed in 2 */2766/* we only use sha1 and mode of these */2767struct diff_filespec src_other, dst_other;2768int try_merge;27692770/*2771 * unpack_trees loads entries from common-commit2772 * into stage 1, from head-commit into stage 2, and2773 * from merge-commit into stage 3. We keep track2774 * of which side corresponds to the rename.2775 */2776int renamed_stage = a_renames == renames1 ?2:3;2777int other_stage = a_renames == renames1 ?3:2;27782779/* BUG: We should only remove ren1_src in the base2780 * stage and in other_stage (think of rename +2781 * add-source case).2782 */2783remove_file(o,1, ren1_src,2784 renamed_stage ==2|| !was_tracked(o, ren1_src));27852786oidcpy(&src_other.oid,2787&ren1->src_entry->stages[other_stage].oid);2788 src_other.mode = ren1->src_entry->stages[other_stage].mode;2789oidcpy(&dst_other.oid,2790&ren1->dst_entry->stages[other_stage].oid);2791 dst_other.mode = ren1->dst_entry->stages[other_stage].mode;2792 try_merge =0;27932794if(oid_eq(&src_other.oid, &null_oid) &&2795 ren1->add_turned_into_rename) {2796setup_rename_conflict_info(RENAME_VIA_DIR,2797 ren1->pair,2798 NULL,2799 branch1,2800 branch2,2801 ren1->dst_entry,2802 NULL,2803 o,2804 NULL,2805 NULL);2806}else if(oid_eq(&src_other.oid, &null_oid)) {2807setup_rename_conflict_info(RENAME_DELETE,2808 ren1->pair,2809 NULL,2810 branch1,2811 branch2,2812 ren1->dst_entry,2813 NULL,2814 o,2815 NULL,2816 NULL);2817}else if((dst_other.mode == ren1->pair->two->mode) &&2818oid_eq(&dst_other.oid, &ren1->pair->two->oid)) {2819/*2820 * Added file on the other side identical to2821 * the file being renamed: clean merge.2822 * Also, there is no need to overwrite the2823 * file already in the working copy, so call2824 * update_file_flags() instead of2825 * update_file().2826 */2827if(update_file_flags(o,2828&ren1->pair->two->oid,2829 ren1->pair->two->mode,2830 ren1_dst,28311,/* update_cache */28320/* update_wd */))2833 clean_merge = -1;2834}else if(!oid_eq(&dst_other.oid, &null_oid)) {2835/*2836 * Probably not a clean merge, but it's2837 * premature to set clean_merge to 0 here,2838 * because if the rename merges cleanly and2839 * the merge exactly matches the newly added2840 * file, then the merge will be clean.2841 */2842setup_rename_conflict_info(RENAME_ADD,2843 ren1->pair,2844 NULL,2845 branch1,2846 branch2,2847 ren1->dst_entry,2848 NULL,2849 o,2850 ren1->src_entry,2851 NULL);2852}else2853 try_merge =1;28542855if(clean_merge <0)2856goto cleanup_and_return;2857if(try_merge) {2858struct diff_filespec *one, *a, *b;2859 src_other.path = (char*)ren1_src;28602861 one = ren1->pair->one;2862if(a_renames == renames1) {2863 a = ren1->pair->two;2864 b = &src_other;2865}else{2866 b = ren1->pair->two;2867 a = &src_other;2868}2869update_entry(ren1->dst_entry, one, a, b);2870setup_rename_conflict_info(RENAME_NORMAL,2871 ren1->pair,2872 NULL,2873 branch1,2874 NULL,2875 ren1->dst_entry,2876 NULL,2877 o,2878 NULL,2879 NULL);2880}2881}2882}2883cleanup_and_return:2884string_list_clear(&a_by_dst,0);2885string_list_clear(&b_by_dst,0);28862887return clean_merge;2888}28892890struct rename_info {2891struct string_list *head_renames;2892struct string_list *merge_renames;2893};28942895static voidinitial_cleanup_rename(struct diff_queue_struct *pairs,2896struct hashmap *dir_renames)2897{2898struct hashmap_iter iter;2899struct dir_rename_entry *e;29002901hashmap_iter_init(dir_renames, &iter);2902while((e =hashmap_iter_next(&iter))) {2903free(e->dir);2904strbuf_release(&e->new_dir);2905/* possible_new_dirs already cleared in get_directory_renames */2906}2907hashmap_free(dir_renames,1);2908free(dir_renames);29092910free(pairs->queue);2911free(pairs);2912}29132914static intdetect_and_process_renames(struct merge_options *o,2915struct tree *common,2916struct tree *head,2917struct tree *merge,2918struct string_list *entries,2919struct rename_info *ri)2920{2921struct diff_queue_struct *head_pairs, *merge_pairs;2922struct hashmap *dir_re_head, *dir_re_merge;2923int clean =1;29242925 ri->head_renames = NULL;2926 ri->merge_renames = NULL;29272928if(!merge_detect_rename(o))2929return1;29302931 head_pairs =get_diffpairs(o, common, head);2932 merge_pairs =get_diffpairs(o, common, merge);29332934if(o->detect_directory_renames) {2935 dir_re_head =get_directory_renames(head_pairs, head);2936 dir_re_merge =get_directory_renames(merge_pairs, merge);29372938handle_directory_level_conflicts(o,2939 dir_re_head, head,2940 dir_re_merge, merge);2941}else{2942 dir_re_head =xmalloc(sizeof(*dir_re_head));2943 dir_re_merge =xmalloc(sizeof(*dir_re_merge));2944dir_rename_init(dir_re_head);2945dir_rename_init(dir_re_merge);2946}29472948 ri->head_renames =get_renames(o, head_pairs,2949 dir_re_merge, dir_re_head, head,2950 common, head, merge, entries,2951&clean);2952if(clean <0)2953goto cleanup;2954 ri->merge_renames =get_renames(o, merge_pairs,2955 dir_re_head, dir_re_merge, merge,2956 common, head, merge, entries,2957&clean);2958if(clean <0)2959goto cleanup;2960 clean &=process_renames(o, ri->head_renames, ri->merge_renames);29612962cleanup:2963/*2964 * Some cleanup is deferred until cleanup_renames() because the2965 * data structures are still needed and referenced in2966 * process_entry(). But there are a few things we can free now.2967 */2968initial_cleanup_rename(head_pairs, dir_re_head);2969initial_cleanup_rename(merge_pairs, dir_re_merge);29702971return clean;2972}29732974static voidfinal_cleanup_rename(struct string_list *rename)2975{2976const struct rename *re;2977int i;29782979if(rename == NULL)2980return;29812982for(i =0; i < rename->nr; i++) {2983 re = rename->items[i].util;2984diff_free_filepair(re->pair);2985}2986string_list_clear(rename,1);2987free(rename);2988}29892990static voidfinal_cleanup_renames(struct rename_info *re_info)2991{2992final_cleanup_rename(re_info->head_renames);2993final_cleanup_rename(re_info->merge_renames);2994}29952996static struct object_id *stage_oid(const struct object_id *oid,unsigned mode)2997{2998return(is_null_oid(oid) || mode ==0) ? NULL: (struct object_id *)oid;2999}30003001static intread_oid_strbuf(struct merge_options *o,3002const struct object_id *oid,3003struct strbuf *dst)3004{3005void*buf;3006enum object_type type;3007unsigned long size;3008 buf =read_object_file(oid, &type, &size);3009if(!buf)3010returnerr(o,_("cannot read object%s"),oid_to_hex(oid));3011if(type != OBJ_BLOB) {3012free(buf);3013returnerr(o,_("object%sis not a blob"),oid_to_hex(oid));3014}3015strbuf_attach(dst, buf, size, size +1);3016return0;3017}30183019static intblob_unchanged(struct merge_options *opt,3020const struct object_id *o_oid,3021unsigned o_mode,3022const struct object_id *a_oid,3023unsigned a_mode,3024int renormalize,const char*path)3025{3026struct strbuf o = STRBUF_INIT;3027struct strbuf a = STRBUF_INIT;3028int ret =0;/* assume changed for safety */30293030if(a_mode != o_mode)3031return0;3032if(oid_eq(o_oid, a_oid))3033return1;3034if(!renormalize)3035return0;30363037assert(o_oid && a_oid);3038if(read_oid_strbuf(opt, o_oid, &o) ||read_oid_strbuf(opt, a_oid, &a))3039goto error_return;3040/*3041 * Note: binary | is used so that both renormalizations are3042 * performed. Comparison can be skipped if both files are3043 * unchanged since their sha1s have already been compared.3044 */3045if(renormalize_buffer(&the_index, path, o.buf, o.len, &o) |3046renormalize_buffer(&the_index, path, a.buf, a.len, &a))3047 ret = (o.len == a.len && !memcmp(o.buf, a.buf, o.len));30483049error_return:3050strbuf_release(&o);3051strbuf_release(&a);3052return ret;3053}30543055static inthandle_modify_delete(struct merge_options *o,3056const char*path,3057struct object_id *o_oid,int o_mode,3058struct object_id *a_oid,int a_mode,3059struct object_id *b_oid,int b_mode)3060{3061const char*modify_branch, *delete_branch;3062struct object_id *changed_oid;3063int changed_mode;30643065if(a_oid) {3066 modify_branch = o->branch1;3067 delete_branch = o->branch2;3068 changed_oid = a_oid;3069 changed_mode = a_mode;3070}else{3071 modify_branch = o->branch2;3072 delete_branch = o->branch1;3073 changed_oid = b_oid;3074 changed_mode = b_mode;3075}30763077returnhandle_change_delete(o,3078 path, NULL,3079 o_oid, o_mode,3080 changed_oid, changed_mode,3081 modify_branch, delete_branch,3082_("modify"),_("modified"));3083}30843085static inthandle_content_merge(struct merge_options *o,3086const char*path,3087int is_dirty,3088struct object_id *o_oid,int o_mode,3089struct object_id *a_oid,int a_mode,3090struct object_id *b_oid,int b_mode,3091struct rename_conflict_info *rename_conflict_info)3092{3093const char*reason =_("content");3094const char*path1 = NULL, *path2 = NULL;3095struct merge_file_info mfi;3096struct diff_filespec one, a, b;3097unsigned df_conflict_remains =0;30983099if(!o_oid) {3100 reason =_("add/add");3101 o_oid = (struct object_id *)&null_oid;3102}3103 one.path = a.path = b.path = (char*)path;3104oidcpy(&one.oid, o_oid);3105 one.mode = o_mode;3106oidcpy(&a.oid, a_oid);3107 a.mode = a_mode;3108oidcpy(&b.oid, b_oid);3109 b.mode = b_mode;31103111if(rename_conflict_info) {3112struct diff_filepair *pair1 = rename_conflict_info->pair1;31133114 path1 = (o->branch1 == rename_conflict_info->branch1) ?3115 pair1->two->path : pair1->one->path;3116/* If rename_conflict_info->pair2 != NULL, we are in3117 * RENAME_ONE_FILE_TO_ONE case. Otherwise, we have a3118 * normal rename.3119 */3120 path2 = (rename_conflict_info->pair2 ||3121 o->branch2 == rename_conflict_info->branch1) ?3122 pair1->two->path : pair1->one->path;3123 one.path = pair1->one->path;3124 a.path = (char*)path1;3125 b.path = (char*)path2;31263127if(dir_in_way(path, !o->call_depth,3128S_ISGITLINK(pair1->two->mode)))3129 df_conflict_remains =1;3130}3131if(merge_mode_and_contents(o, &one, &a, &b, path,3132 o->branch1, o->branch2,3133 o->call_depth *2, &mfi))3134return-1;31353136/*3137 * We can skip updating the working tree file iff:3138 * a) The merge is clean3139 * b) The merge matches what was in HEAD (content, mode, pathname)3140 * c) The target path is usable (i.e. not involved in D/F conflict)3141 */3142if(mfi.clean &&3143was_tracked_and_matches(o, path, &mfi.oid, mfi.mode) &&3144!df_conflict_remains) {3145int pos;3146struct cache_entry *ce;31473148output(o,3,_("Skipped%s(merged same as existing)"), path);3149if(add_cacheinfo(o, mfi.mode, &mfi.oid, path,31500, (!o->call_depth && !is_dirty),0))3151return-1;3152/*3153 * However, add_cacheinfo() will delete the old cache entry3154 * and add a new one. We need to copy over any skip_worktree3155 * flag to avoid making the file appear as if it were3156 * deleted by the user.3157 */3158 pos =index_name_pos(&o->orig_index, path,strlen(path));3159 ce = o->orig_index.cache[pos];3160if(ce_skip_worktree(ce)) {3161 pos =index_name_pos(&the_index, path,strlen(path));3162 ce = the_index.cache[pos];3163 ce->ce_flags |= CE_SKIP_WORKTREE;3164}3165return mfi.clean;3166}31673168if(!mfi.clean) {3169if(S_ISGITLINK(mfi.mode))3170 reason =_("submodule");3171output(o,1,_("CONFLICT (%s): Merge conflict in%s"),3172 reason, path);3173if(rename_conflict_info && !df_conflict_remains)3174if(update_stages(o, path, &one, &a, &b))3175return-1;3176}31773178if(df_conflict_remains || is_dirty) {3179char*new_path;3180if(o->call_depth) {3181remove_file_from_cache(path);3182}else{3183if(!mfi.clean) {3184if(update_stages(o, path, &one, &a, &b))3185return-1;3186}else{3187int file_from_stage2 =was_tracked(o, path);3188struct diff_filespec merged;3189oidcpy(&merged.oid, &mfi.oid);3190 merged.mode = mfi.mode;31913192if(update_stages(o, path, NULL,3193 file_from_stage2 ? &merged : NULL,3194 file_from_stage2 ? NULL : &merged))3195return-1;3196}31973198}3199 new_path =unique_path(o, path, rename_conflict_info->branch1);3200if(is_dirty) {3201output(o,1,_("Refusing to lose dirty file at%s"),3202 path);3203}3204output(o,1,_("Adding as%sinstead"), new_path);3205if(update_file(o,0, &mfi.oid, mfi.mode, new_path)) {3206free(new_path);3207return-1;3208}3209free(new_path);3210 mfi.clean =0;3211}else if(update_file(o, mfi.clean, &mfi.oid, mfi.mode, path))3212return-1;3213return!is_dirty && mfi.clean;3214}32153216static inthandle_rename_normal(struct merge_options *o,3217const char*path,3218struct object_id *o_oid,unsigned int o_mode,3219struct object_id *a_oid,unsigned int a_mode,3220struct object_id *b_oid,unsigned int b_mode,3221struct rename_conflict_info *ci)3222{3223/* Merge the content and write it out */3224returnhandle_content_merge(o, path,was_dirty(o, path),3225 o_oid, o_mode, a_oid, a_mode, b_oid, b_mode,3226 ci);3227}32283229/* Per entry merge function */3230static intprocess_entry(struct merge_options *o,3231const char*path,struct stage_data *entry)3232{3233int clean_merge =1;3234int normalize = o->renormalize;3235unsigned o_mode = entry->stages[1].mode;3236unsigned a_mode = entry->stages[2].mode;3237unsigned b_mode = entry->stages[3].mode;3238struct object_id *o_oid =stage_oid(&entry->stages[1].oid, o_mode);3239struct object_id *a_oid =stage_oid(&entry->stages[2].oid, a_mode);3240struct object_id *b_oid =stage_oid(&entry->stages[3].oid, b_mode);32413242 entry->processed =1;3243if(entry->rename_conflict_info) {3244struct rename_conflict_info *conflict_info = entry->rename_conflict_info;3245switch(conflict_info->rename_type) {3246case RENAME_NORMAL:3247case RENAME_ONE_FILE_TO_ONE:3248 clean_merge =handle_rename_normal(o,3249 path,3250 o_oid, o_mode,3251 a_oid, a_mode,3252 b_oid, b_mode,3253 conflict_info);3254break;3255case RENAME_VIA_DIR:3256 clean_merge =1;3257if(handle_rename_via_dir(o,3258 conflict_info->pair1,3259 conflict_info->branch1,3260 conflict_info->branch2))3261 clean_merge = -1;3262break;3263case RENAME_ADD:3264/*3265 * Probably unclean merge, but if the renamed file3266 * merges cleanly and the result can then be3267 * two-way merged cleanly with the added file, I3268 * guess it's a clean merge?3269 */3270 clean_merge =handle_rename_add(o, conflict_info);3271break;3272case RENAME_DELETE:3273 clean_merge =0;3274if(handle_rename_delete(o,3275 conflict_info->pair1,3276 conflict_info->branch1,3277 conflict_info->branch2))3278 clean_merge = -1;3279break;3280case RENAME_ONE_FILE_TO_TWO:3281 clean_merge =0;3282if(handle_rename_rename_1to2(o, conflict_info))3283 clean_merge = -1;3284break;3285case RENAME_TWO_FILES_TO_ONE:3286/*3287 * Probably unclean merge, but if the two renamed3288 * files merge cleanly and the two resulting files3289 * can then be two-way merged cleanly, I guess it's3290 * a clean merge?3291 */3292 clean_merge =handle_rename_rename_2to1(o,3293 conflict_info);3294break;3295default:3296 entry->processed =0;3297break;3298}3299}else if(o_oid && (!a_oid || !b_oid)) {3300/* Case A: Deleted in one */3301if((!a_oid && !b_oid) ||3302(!b_oid &&blob_unchanged(o, o_oid, o_mode, a_oid, a_mode, normalize, path)) ||3303(!a_oid &&blob_unchanged(o, o_oid, o_mode, b_oid, b_mode, normalize, path))) {3304/* Deleted in both or deleted in one and3305 * unchanged in the other */3306if(a_oid)3307output(o,2,_("Removing%s"), path);3308/* do not touch working file if it did not exist */3309remove_file(o,1, path, !a_oid);3310}else{3311/* Modify/delete; deleted side may have put a directory in the way */3312 clean_merge =0;3313if(handle_modify_delete(o, path, o_oid, o_mode,3314 a_oid, a_mode, b_oid, b_mode))3315 clean_merge = -1;3316}3317}else if((!o_oid && a_oid && !b_oid) ||3318(!o_oid && !a_oid && b_oid)) {3319/* Case B: Added in one. */3320/* [nothing|directory] -> ([nothing|directory], file) */33213322const char*add_branch;3323const char*other_branch;3324unsigned mode;3325const struct object_id *oid;3326const char*conf;33273328if(a_oid) {3329 add_branch = o->branch1;3330 other_branch = o->branch2;3331 mode = a_mode;3332 oid = a_oid;3333 conf =_("file/directory");3334}else{3335 add_branch = o->branch2;3336 other_branch = o->branch1;3337 mode = b_mode;3338 oid = b_oid;3339 conf =_("directory/file");3340}3341if(dir_in_way(path,3342!o->call_depth && !S_ISGITLINK(a_mode),33430)) {3344char*new_path =unique_path(o, path, add_branch);3345 clean_merge =0;3346output(o,1,_("CONFLICT (%s): There is a directory with name%sin%s. "3347"Adding%sas%s"),3348 conf, path, other_branch, path, new_path);3349if(update_file(o,0, oid, mode, new_path))3350 clean_merge = -1;3351else if(o->call_depth)3352remove_file_from_cache(path);3353free(new_path);3354}else{3355output(o,2,_("Adding%s"), path);3356/* do not overwrite file if already present */3357if(update_file_flags(o, oid, mode, path,1, !a_oid))3358 clean_merge = -1;3359}3360}else if(a_oid && b_oid) {3361if(!o_oid) {3362/* Case C: Added in both (check for same permissions) */3363output(o,1,3364_("CONFLICT (add/add): Merge conflict in%s"),3365 path);3366 clean_merge =handle_file_collision(o,3367 path, NULL, NULL,3368 o->branch1,3369 o->branch2,3370 a_oid, a_mode,3371 b_oid, b_mode);3372}else{3373/* case D: Modified in both, but differently. */3374int is_dirty =0;/* unpack_trees would have bailed if dirty */3375 clean_merge =handle_content_merge(o, path,3376 is_dirty,3377 o_oid, o_mode,3378 a_oid, a_mode,3379 b_oid, b_mode,3380 NULL);3381}3382}else if(!o_oid && !a_oid && !b_oid) {3383/*3384 * this entry was deleted altogether. a_mode == 0 means3385 * we had that path and want to actively remove it.3386 */3387remove_file(o,1, path, !a_mode);3388}else3389BUG("fatal merge failure, shouldn't happen.");33903391return clean_merge;3392}33933394intmerge_trees(struct merge_options *o,3395struct tree *head,3396struct tree *merge,3397struct tree *common,3398struct tree **result)3399{3400int code, clean;3401struct strbuf sb = STRBUF_INIT;34023403if(!o->call_depth &&index_has_changes(&the_index, head, &sb)) {3404err(o,_("Your local changes to the following files would be overwritten by merge:\n%s"),3405 sb.buf);3406return-1;3407}34083409if(o->subtree_shift) {3410 merge =shift_tree_object(head, merge, o->subtree_shift);3411 common =shift_tree_object(head, common, o->subtree_shift);3412}34133414if(oid_eq(&common->object.oid, &merge->object.oid)) {3415output(o,0,_("Already up to date!"));3416*result = head;3417return1;3418}34193420 code =unpack_trees_start(o, common, head, merge);34213422if(code !=0) {3423if(show(o,4) || o->call_depth)3424err(o,_("merging of trees%sand%sfailed"),3425oid_to_hex(&head->object.oid),3426oid_to_hex(&merge->object.oid));3427unpack_trees_finish(o);3428return-1;3429}34303431if(unmerged_cache()) {3432struct string_list *entries;3433struct rename_info re_info;3434int i;3435/*3436 * Only need the hashmap while processing entries, so3437 * initialize it here and free it when we are done running3438 * through the entries. Keeping it in the merge_options as3439 * opposed to decaring a local hashmap is for convenience3440 * so that we don't have to pass it to around.3441 */3442hashmap_init(&o->current_file_dir_set, path_hashmap_cmp, NULL,512);3443get_files_dirs(o, head);3444get_files_dirs(o, merge);34453446 entries =get_unmerged();3447 clean =detect_and_process_renames(o, common, head, merge,3448 entries, &re_info);3449record_df_conflict_files(o, entries);3450if(clean <0)3451goto cleanup;3452for(i = entries->nr-1;0<= i; i--) {3453const char*path = entries->items[i].string;3454struct stage_data *e = entries->items[i].util;3455if(!e->processed) {3456int ret =process_entry(o, path, e);3457if(!ret)3458 clean =0;3459else if(ret <0) {3460 clean = ret;3461goto cleanup;3462}3463}3464}3465for(i =0; i < entries->nr; i++) {3466struct stage_data *e = entries->items[i].util;3467if(!e->processed)3468BUG("unprocessed path???%s",3469 entries->items[i].string);3470}34713472 cleanup:3473final_cleanup_renames(&re_info);34743475string_list_clear(entries,1);3476free(entries);34773478hashmap_free(&o->current_file_dir_set,1);34793480if(clean <0) {3481unpack_trees_finish(o);3482return clean;3483}3484}3485else3486 clean =1;34873488unpack_trees_finish(o);34893490if(o->call_depth && !(*result =write_tree_from_memory(o)))3491return-1;34923493return clean;3494}34953496static struct commit_list *reverse_commit_list(struct commit_list *list)3497{3498struct commit_list *next = NULL, *current, *backup;3499for(current = list; current; current = backup) {3500 backup = current->next;3501 current->next = next;3502 next = current;3503}3504return next;3505}35063507/*3508 * Merge the commits h1 and h2, return the resulting virtual3509 * commit object and a flag indicating the cleanness of the merge.3510 */3511intmerge_recursive(struct merge_options *o,3512struct commit *h1,3513struct commit *h2,3514struct commit_list *ca,3515struct commit **result)3516{3517struct commit_list *iter;3518struct commit *merged_common_ancestors;3519struct tree *mrtree;3520int clean;35213522if(show(o,4)) {3523output(o,4,_("Merging:"));3524output_commit_title(o, h1);3525output_commit_title(o, h2);3526}35273528if(!ca) {3529 ca =get_merge_bases(h1, h2);3530 ca =reverse_commit_list(ca);3531}35323533if(show(o,5)) {3534unsigned cnt =commit_list_count(ca);35353536output(o,5,Q_("found%ucommon ancestor:",3537"found%ucommon ancestors:", cnt), cnt);3538for(iter = ca; iter; iter = iter->next)3539output_commit_title(o, iter->item);3540}35413542 merged_common_ancestors =pop_commit(&ca);3543if(merged_common_ancestors == NULL) {3544/* if there is no common ancestor, use an empty tree */3545struct tree *tree;35463547 tree =lookup_tree(the_repository, the_repository->hash_algo->empty_tree);3548 merged_common_ancestors =make_virtual_commit(tree,"ancestor");3549}35503551for(iter = ca; iter; iter = iter->next) {3552const char*saved_b1, *saved_b2;3553 o->call_depth++;3554/*3555 * When the merge fails, the result contains files3556 * with conflict markers. The cleanness flag is3557 * ignored (unless indicating an error), it was never3558 * actually used, as result of merge_trees has always3559 * overwritten it: the committed "conflicts" were3560 * already resolved.3561 */3562discard_cache();3563 saved_b1 = o->branch1;3564 saved_b2 = o->branch2;3565 o->branch1 ="Temporary merge branch 1";3566 o->branch2 ="Temporary merge branch 2";3567if(merge_recursive(o, merged_common_ancestors, iter->item,3568 NULL, &merged_common_ancestors) <0)3569return-1;3570 o->branch1 = saved_b1;3571 o->branch2 = saved_b2;3572 o->call_depth--;35733574if(!merged_common_ancestors)3575returnerr(o,_("merge returned no commit"));3576}35773578discard_cache();3579if(!o->call_depth)3580read_cache();35813582 o->ancestor ="merged common ancestors";3583 clean =merge_trees(o,get_commit_tree(h1),get_commit_tree(h2),3584get_commit_tree(merged_common_ancestors),3585&mrtree);3586if(clean <0) {3587flush_output(o);3588return clean;3589}35903591if(o->call_depth) {3592*result =make_virtual_commit(mrtree,"merged tree");3593commit_list_insert(h1, &(*result)->parents);3594commit_list_insert(h2, &(*result)->parents->next);3595}3596flush_output(o);3597if(!o->call_depth && o->buffer_output <2)3598strbuf_release(&o->obuf);3599if(show(o,2))3600diff_warn_rename_limit("merge.renamelimit",3601 o->needed_rename_limit,0);3602return clean;3603}36043605static struct commit *get_ref(const struct object_id *oid,const char*name)3606{3607struct object *object;36083609 object =deref_tag(the_repository,parse_object(the_repository, oid),3610 name,3611strlen(name));3612if(!object)3613return NULL;3614if(object->type == OBJ_TREE)3615returnmake_virtual_commit((struct tree*)object, name);3616if(object->type != OBJ_COMMIT)3617return NULL;3618if(parse_commit((struct commit *)object))3619return NULL;3620return(struct commit *)object;3621}36223623intmerge_recursive_generic(struct merge_options *o,3624const struct object_id *head,3625const struct object_id *merge,3626int num_base_list,3627const struct object_id **base_list,3628struct commit **result)3629{3630int clean;3631struct lock_file lock = LOCK_INIT;3632struct commit *head_commit =get_ref(head, o->branch1);3633struct commit *next_commit =get_ref(merge, o->branch2);3634struct commit_list *ca = NULL;36353636if(base_list) {3637int i;3638for(i =0; i < num_base_list; ++i) {3639struct commit *base;3640if(!(base =get_ref(base_list[i],oid_to_hex(base_list[i]))))3641returnerr(o,_("Could not parse object '%s'"),3642oid_to_hex(base_list[i]));3643commit_list_insert(base, &ca);3644}3645}36463647hold_locked_index(&lock, LOCK_DIE_ON_ERROR);3648 clean =merge_recursive(o, head_commit, next_commit, ca,3649 result);3650if(clean <0) {3651rollback_lock_file(&lock);3652return clean;3653}36543655if(write_locked_index(&the_index, &lock,3656 COMMIT_LOCK | SKIP_IF_UNCHANGED))3657returnerr(o,_("Unable to write index."));36583659return clean ?0:1;3660}36613662static voidmerge_recursive_config(struct merge_options *o)3663{3664char*value = NULL;3665git_config_get_int("merge.verbosity", &o->verbosity);3666git_config_get_int("diff.renamelimit", &o->diff_rename_limit);3667git_config_get_int("merge.renamelimit", &o->merge_rename_limit);3668if(!git_config_get_string("diff.renames", &value)) {3669 o->diff_detect_rename =git_config_rename("diff.renames", value);3670free(value);3671}3672if(!git_config_get_string("merge.renames", &value)) {3673 o->merge_detect_rename =git_config_rename("merge.renames", value);3674free(value);3675}3676git_config(git_xmerge_config, NULL);3677}36783679voidinit_merge_options(struct merge_options *o)3680{3681const char*merge_verbosity;3682memset(o,0,sizeof(struct merge_options));3683 o->verbosity =2;3684 o->buffer_output =1;3685 o->diff_rename_limit = -1;3686 o->merge_rename_limit = -1;3687 o->renormalize =0;3688 o->diff_detect_rename = -1;3689 o->merge_detect_rename = -1;3690 o->detect_directory_renames =1;3691merge_recursive_config(o);3692 merge_verbosity =getenv("GIT_MERGE_VERBOSITY");3693if(merge_verbosity)3694 o->verbosity =strtol(merge_verbosity, NULL,10);3695if(o->verbosity >=5)3696 o->buffer_output =0;3697strbuf_init(&o->obuf,0);3698string_list_init(&o->df_conflict_file_set,1);3699}37003701intparse_merge_opt(struct merge_options *o,const char*s)3702{3703const char*arg;37043705if(!s || !*s)3706return-1;3707if(!strcmp(s,"ours"))3708 o->recursive_variant = MERGE_RECURSIVE_OURS;3709else if(!strcmp(s,"theirs"))3710 o->recursive_variant = MERGE_RECURSIVE_THEIRS;3711else if(!strcmp(s,"subtree"))3712 o->subtree_shift ="";3713else if(skip_prefix(s,"subtree=", &arg))3714 o->subtree_shift = arg;3715else if(!strcmp(s,"patience"))3716 o->xdl_opts =DIFF_WITH_ALG(o, PATIENCE_DIFF);3717else if(!strcmp(s,"histogram"))3718 o->xdl_opts =DIFF_WITH_ALG(o, HISTOGRAM_DIFF);3719else if(skip_prefix(s,"diff-algorithm=", &arg)) {3720long value =parse_algorithm_value(arg);3721if(value <0)3722return-1;3723/* clear out previous settings */3724DIFF_XDL_CLR(o, NEED_MINIMAL);3725 o->xdl_opts &= ~XDF_DIFF_ALGORITHM_MASK;3726 o->xdl_opts |= value;3727}3728else if(!strcmp(s,"ignore-space-change"))3729DIFF_XDL_SET(o, IGNORE_WHITESPACE_CHANGE);3730else if(!strcmp(s,"ignore-all-space"))3731DIFF_XDL_SET(o, IGNORE_WHITESPACE);3732else if(!strcmp(s,"ignore-space-at-eol"))3733DIFF_XDL_SET(o, IGNORE_WHITESPACE_AT_EOL);3734else if(!strcmp(s,"ignore-cr-at-eol"))3735DIFF_XDL_SET(o, IGNORE_CR_AT_EOL);3736else if(!strcmp(s,"renormalize"))3737 o->renormalize =1;3738else if(!strcmp(s,"no-renormalize"))3739 o->renormalize =0;3740else if(!strcmp(s,"no-renames"))3741 o->merge_detect_rename =0;3742else if(!strcmp(s,"find-renames")) {3743 o->merge_detect_rename =1;3744 o->rename_score =0;3745}3746else if(skip_prefix(s,"find-renames=", &arg) ||3747skip_prefix(s,"rename-threshold=", &arg)) {3748if((o->rename_score =parse_rename_score(&arg)) == -1|| *arg !=0)3749return-1;3750 o->merge_detect_rename =1;3751}3752else3753return-1;3754return0;3755}