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 *opt) 119{ 120if(opt->buffer_output <2&& opt->obuf.len) { 121fputs(opt->obuf.buf, stdout); 122strbuf_reset(&opt->obuf); 123} 124} 125 126static interr(struct merge_options *opt,const char*err, ...) 127{ 128va_list params; 129 130if(opt->buffer_output <2) 131flush_output(opt); 132else{ 133strbuf_complete(&opt->obuf,'\n'); 134strbuf_addstr(&opt->obuf,"error: "); 135} 136va_start(params, err); 137strbuf_vaddf(&opt->obuf, err, params); 138va_end(params); 139if(opt->buffer_output >1) 140strbuf_addch(&opt->obuf,'\n'); 141else{ 142error("%s", opt->obuf.buf); 143strbuf_reset(&opt->obuf); 144} 145 146return-1; 147} 148 149static struct tree *shift_tree_object(struct repository *repo, 150struct tree *one,struct tree *two, 151const char*subtree_shift) 152{ 153struct object_id shifted; 154 155if(!*subtree_shift) { 156shift_tree(&one->object.oid, &two->object.oid, &shifted,0); 157}else{ 158shift_tree_by(&one->object.oid, &two->object.oid, &shifted, 159 subtree_shift); 160} 161if(oideq(&two->object.oid, &shifted)) 162return two; 163returnlookup_tree(repo, &shifted); 164} 165 166static struct commit *make_virtual_commit(struct repository *repo, 167struct tree *tree, 168const char*comment) 169{ 170struct commit *commit =alloc_commit_node(repo); 171 172set_merge_remote_desc(commit, comment, (struct object *)commit); 173 commit->maybe_tree = tree; 174 commit->object.parsed =1; 175return commit; 176} 177 178/* 179 * Since we use get_tree_entry(), which does not put the read object into 180 * the object pool, we cannot rely on a == b. 181 */ 182static intoid_eq(const struct object_id *a,const struct object_id *b) 183{ 184if(!a && !b) 185return2; 186return a && b &&oideq(a, b); 187} 188 189enum rename_type { 190 RENAME_NORMAL =0, 191 RENAME_VIA_DIR, 192 RENAME_ADD, 193 RENAME_DELETE, 194 RENAME_ONE_FILE_TO_ONE, 195 RENAME_ONE_FILE_TO_TWO, 196 RENAME_TWO_FILES_TO_ONE 197}; 198 199/* 200 * Since we want to write the index eventually, we cannot reuse the index 201 * for these (temporary) data. 202 */ 203struct stage_data { 204struct diff_filespec stages[4];/* mostly for oid & mode; maybe path */ 205struct rename_conflict_info *rename_conflict_info; 206unsigned processed:1; 207}; 208 209struct rename { 210unsigned processed:1; 211struct diff_filepair *pair; 212const char*branch;/* branch that the rename occurred on */ 213/* 214 * If directory rename detection affected this rename, what was its 215 * original type ('A' or 'R') and it's original destination before 216 * the directory rename (otherwise, '\0' and NULL for these two vars). 217 */ 218char dir_rename_original_type; 219char*dir_rename_original_dest; 220/* 221 * Purpose of src_entry and dst_entry: 222 * 223 * If 'before' is renamed to 'after' then src_entry will contain 224 * the versions of 'before' from the merge_base, HEAD, and MERGE in 225 * stages 1, 2, and 3; dst_entry will contain the respective 226 * versions of 'after' in corresponding locations. Thus, we have a 227 * total of six modes and oids, though some will be null. (Stage 0 228 * is ignored; we're interested in handling conflicts.) 229 * 230 * Since we don't turn on break-rewrites by default, neither 231 * src_entry nor dst_entry can have all three of their stages have 232 * non-null oids, meaning at most four of the six will be non-null. 233 * Also, since this is a rename, both src_entry and dst_entry will 234 * have at least one non-null oid, meaning at least two will be 235 * non-null. Of the six oids, a typical rename will have three be 236 * non-null. Only two implies a rename/delete, and four implies a 237 * rename/add. 238 */ 239struct stage_data *src_entry; 240struct stage_data *dst_entry; 241}; 242 243struct rename_conflict_info { 244enum rename_type rename_type; 245struct rename *ren1; 246struct rename *ren2; 247}; 248 249staticinlinevoidsetup_rename_conflict_info(enum rename_type rename_type, 250struct merge_options *opt, 251struct rename *ren1, 252struct rename *ren2) 253{ 254struct rename_conflict_info *ci; 255 256/* 257 * When we have two renames involved, it's easiest to get the 258 * correct things into stage 2 and 3, and to make sure that the 259 * content merge puts HEAD before the other branch if we just 260 * ensure that branch1 == opt->branch1. So, simply flip arguments 261 * around if we don't have that. 262 */ 263if(ren2 && ren1->branch != opt->branch1) { 264setup_rename_conflict_info(rename_type, opt, ren2, ren1); 265return; 266} 267 268 ci =xcalloc(1,sizeof(struct rename_conflict_info)); 269 ci->rename_type = rename_type; 270 ci->ren1 = ren1; 271 ci->ren2 = ren2; 272 273 ci->ren1->dst_entry->processed =0; 274 ci->ren1->dst_entry->rename_conflict_info = ci; 275if(ren2) { 276 ci->ren2->dst_entry->rename_conflict_info = ci; 277} 278} 279 280static intshow(struct merge_options *opt,int v) 281{ 282return(!opt->call_depth && opt->verbosity >= v) || opt->verbosity >=5; 283} 284 285__attribute__((format(printf,3,4))) 286static voidoutput(struct merge_options *opt,int v,const char*fmt, ...) 287{ 288va_list ap; 289 290if(!show(opt, v)) 291return; 292 293strbuf_addchars(&opt->obuf,' ', opt->call_depth *2); 294 295va_start(ap, fmt); 296strbuf_vaddf(&opt->obuf, fmt, ap); 297va_end(ap); 298 299strbuf_addch(&opt->obuf,'\n'); 300if(!opt->buffer_output) 301flush_output(opt); 302} 303 304static voidoutput_commit_title(struct merge_options *opt,struct commit *commit) 305{ 306struct merge_remote_desc *desc; 307 308strbuf_addchars(&opt->obuf,' ', opt->call_depth *2); 309 desc =merge_remote_util(commit); 310if(desc) 311strbuf_addf(&opt->obuf,"virtual%s\n", desc->name); 312else{ 313strbuf_add_unique_abbrev(&opt->obuf, &commit->object.oid, 314 DEFAULT_ABBREV); 315strbuf_addch(&opt->obuf,' '); 316if(parse_commit(commit) !=0) 317strbuf_addstr(&opt->obuf,_("(bad commit)\n")); 318else{ 319const char*title; 320const char*msg =get_commit_buffer(commit, NULL); 321int len =find_commit_subject(msg, &title); 322if(len) 323strbuf_addf(&opt->obuf,"%.*s\n", len, title); 324unuse_commit_buffer(commit, msg); 325} 326} 327flush_output(opt); 328} 329 330static intadd_cacheinfo(struct merge_options *opt, 331const struct diff_filespec *blob, 332const char*path,int stage,int refresh,int options) 333{ 334struct index_state *istate = opt->repo->index; 335struct cache_entry *ce; 336int ret; 337 338 ce =make_cache_entry(istate, blob->mode, &blob->oid, path, stage,0); 339if(!ce) 340returnerr(opt,_("add_cacheinfo failed for path '%s'; merge aborting."), path); 341 342 ret =add_index_entry(istate, ce, options); 343if(refresh) { 344struct cache_entry *nce; 345 346 nce =refresh_cache_entry(istate, ce, 347 CE_MATCH_REFRESH | CE_MATCH_IGNORE_MISSING); 348if(!nce) 349returnerr(opt,_("add_cacheinfo failed to refresh for path '%s'; merge aborting."), path); 350if(nce != ce) 351 ret =add_index_entry(istate, nce, options); 352} 353return ret; 354} 355 356static voidinit_tree_desc_from_tree(struct tree_desc *desc,struct tree *tree) 357{ 358parse_tree(tree); 359init_tree_desc(desc, tree->buffer, tree->size); 360} 361 362static intunpack_trees_start(struct merge_options *opt, 363struct tree *common, 364struct tree *head, 365struct tree *merge) 366{ 367int rc; 368struct tree_desc t[3]; 369struct index_state tmp_index = { NULL }; 370 371memset(&opt->unpack_opts,0,sizeof(opt->unpack_opts)); 372if(opt->call_depth) 373 opt->unpack_opts.index_only =1; 374else 375 opt->unpack_opts.update =1; 376 opt->unpack_opts.merge =1; 377 opt->unpack_opts.head_idx =2; 378 opt->unpack_opts.fn = threeway_merge; 379 opt->unpack_opts.src_index = opt->repo->index; 380 opt->unpack_opts.dst_index = &tmp_index; 381 opt->unpack_opts.aggressive = !merge_detect_rename(opt); 382setup_unpack_trees_porcelain(&opt->unpack_opts,"merge"); 383 384init_tree_desc_from_tree(t+0, common); 385init_tree_desc_from_tree(t+1, head); 386init_tree_desc_from_tree(t+2, merge); 387 388 rc =unpack_trees(3, t, &opt->unpack_opts); 389cache_tree_free(&opt->repo->index->cache_tree); 390 391/* 392 * Update opt->repo->index to match the new results, AFTER saving a copy 393 * in opt->orig_index. Update src_index to point to the saved copy. 394 * (verify_uptodate() checks src_index, and the original index is 395 * the one that had the necessary modification timestamps.) 396 */ 397 opt->orig_index = *opt->repo->index; 398*opt->repo->index = tmp_index; 399 opt->unpack_opts.src_index = &opt->orig_index; 400 401return rc; 402} 403 404static voidunpack_trees_finish(struct merge_options *opt) 405{ 406discard_index(&opt->orig_index); 407clear_unpack_trees_porcelain(&opt->unpack_opts); 408} 409 410struct tree *write_tree_from_memory(struct merge_options *opt) 411{ 412struct tree *result = NULL; 413struct index_state *istate = opt->repo->index; 414 415if(unmerged_index(istate)) { 416int i; 417fprintf(stderr,"BUG: There are unmerged index entries:\n"); 418for(i =0; i < istate->cache_nr; i++) { 419const struct cache_entry *ce = istate->cache[i]; 420if(ce_stage(ce)) 421fprintf(stderr,"BUG:%d%.*s\n",ce_stage(ce), 422(int)ce_namelen(ce), ce->name); 423} 424BUG("unmerged index entries in merge-recursive.c"); 425} 426 427if(!istate->cache_tree) 428 istate->cache_tree =cache_tree(); 429 430if(!cache_tree_fully_valid(istate->cache_tree) && 431cache_tree_update(istate,0) <0) { 432err(opt,_("error building trees")); 433return NULL; 434} 435 436 result =lookup_tree(opt->repo, &istate->cache_tree->oid); 437 438return result; 439} 440 441static intsave_files_dirs(const struct object_id *oid, 442struct strbuf *base,const char*path, 443unsigned int mode,int stage,void*context) 444{ 445struct path_hashmap_entry *entry; 446int baselen = base->len; 447struct merge_options *opt = context; 448 449strbuf_addstr(base, path); 450 451FLEX_ALLOC_MEM(entry, path, base->buf, base->len); 452hashmap_entry_init(entry,path_hash(entry->path)); 453hashmap_add(&opt->current_file_dir_set, entry); 454 455strbuf_setlen(base, baselen); 456return(S_ISDIR(mode) ? READ_TREE_RECURSIVE :0); 457} 458 459static voidget_files_dirs(struct merge_options *opt,struct tree *tree) 460{ 461struct pathspec match_all; 462memset(&match_all,0,sizeof(match_all)); 463read_tree_recursive(the_repository, tree,"",0,0, 464&match_all, save_files_dirs, opt); 465} 466 467static intget_tree_entry_if_blob(const struct object_id *tree, 468const char*path, 469struct diff_filespec *dfs) 470{ 471int ret; 472 473 ret =get_tree_entry(tree, path, &dfs->oid, &dfs->mode); 474if(S_ISDIR(dfs->mode)) { 475oidcpy(&dfs->oid, &null_oid); 476 dfs->mode =0; 477} 478return ret; 479} 480 481/* 482 * Returns an index_entry instance which doesn't have to correspond to 483 * a real cache entry in Git's index. 484 */ 485static struct stage_data *insert_stage_data(const char*path, 486struct tree *o,struct tree *a,struct tree *b, 487struct string_list *entries) 488{ 489struct string_list_item *item; 490struct stage_data *e =xcalloc(1,sizeof(struct stage_data)); 491get_tree_entry_if_blob(&o->object.oid, path, &e->stages[1]); 492get_tree_entry_if_blob(&a->object.oid, path, &e->stages[2]); 493get_tree_entry_if_blob(&b->object.oid, path, &e->stages[3]); 494 item =string_list_insert(entries, path); 495 item->util = e; 496return e; 497} 498 499/* 500 * Create a dictionary mapping file names to stage_data objects. The 501 * dictionary contains one entry for every path with a non-zero stage entry. 502 */ 503static struct string_list *get_unmerged(struct index_state *istate) 504{ 505struct string_list *unmerged =xcalloc(1,sizeof(struct string_list)); 506int i; 507 508 unmerged->strdup_strings =1; 509 510for(i =0; i < istate->cache_nr; i++) { 511struct string_list_item *item; 512struct stage_data *e; 513const struct cache_entry *ce = istate->cache[i]; 514if(!ce_stage(ce)) 515continue; 516 517 item =string_list_lookup(unmerged, ce->name); 518if(!item) { 519 item =string_list_insert(unmerged, ce->name); 520 item->util =xcalloc(1,sizeof(struct stage_data)); 521} 522 e = item->util; 523 e->stages[ce_stage(ce)].mode = ce->ce_mode; 524oidcpy(&e->stages[ce_stage(ce)].oid, &ce->oid); 525} 526 527return unmerged; 528} 529 530static intstring_list_df_name_compare(const char*one,const char*two) 531{ 532int onelen =strlen(one); 533int twolen =strlen(two); 534/* 535 * Here we only care that entries for D/F conflicts are 536 * adjacent, in particular with the file of the D/F conflict 537 * appearing before files below the corresponding directory. 538 * The order of the rest of the list is irrelevant for us. 539 * 540 * To achieve this, we sort with df_name_compare and provide 541 * the mode S_IFDIR so that D/F conflicts will sort correctly. 542 * We use the mode S_IFDIR for everything else for simplicity, 543 * since in other cases any changes in their order due to 544 * sorting cause no problems for us. 545 */ 546int cmp =df_name_compare(one, onelen, S_IFDIR, 547 two, twolen, S_IFDIR); 548/* 549 * Now that 'foo' and 'foo/bar' compare equal, we have to make sure 550 * that 'foo' comes before 'foo/bar'. 551 */ 552if(cmp) 553return cmp; 554return onelen - twolen; 555} 556 557static voidrecord_df_conflict_files(struct merge_options *opt, 558struct string_list *entries) 559{ 560/* If there is a D/F conflict and the file for such a conflict 561 * currently exists in the working tree, we want to allow it to be 562 * removed to make room for the corresponding directory if needed. 563 * The files underneath the directories of such D/F conflicts will 564 * be processed before the corresponding file involved in the D/F 565 * conflict. If the D/F directory ends up being removed by the 566 * merge, then we won't have to touch the D/F file. If the D/F 567 * directory needs to be written to the working copy, then the D/F 568 * file will simply be removed (in make_room_for_path()) to make 569 * room for the necessary paths. Note that if both the directory 570 * and the file need to be present, then the D/F file will be 571 * reinstated with a new unique name at the time it is processed. 572 */ 573struct string_list df_sorted_entries = STRING_LIST_INIT_NODUP; 574const char*last_file = NULL; 575int last_len =0; 576int i; 577 578/* 579 * If we're merging merge-bases, we don't want to bother with 580 * any working directory changes. 581 */ 582if(opt->call_depth) 583return; 584 585/* Ensure D/F conflicts are adjacent in the entries list. */ 586for(i =0; i < entries->nr; i++) { 587struct string_list_item *next = &entries->items[i]; 588string_list_append(&df_sorted_entries, next->string)->util = 589 next->util; 590} 591 df_sorted_entries.cmp = string_list_df_name_compare; 592string_list_sort(&df_sorted_entries); 593 594string_list_clear(&opt->df_conflict_file_set,1); 595for(i =0; i < df_sorted_entries.nr; i++) { 596const char*path = df_sorted_entries.items[i].string; 597int len =strlen(path); 598struct stage_data *e = df_sorted_entries.items[i].util; 599 600/* 601 * Check if last_file & path correspond to a D/F conflict; 602 * i.e. whether path is last_file+'/'+<something>. 603 * If so, record that it's okay to remove last_file to make 604 * room for path and friends if needed. 605 */ 606if(last_file && 607 len > last_len && 608memcmp(path, last_file, last_len) ==0&& 609 path[last_len] =='/') { 610string_list_insert(&opt->df_conflict_file_set, last_file); 611} 612 613/* 614 * Determine whether path could exist as a file in the 615 * working directory as a possible D/F conflict. This 616 * will only occur when it exists in stage 2 as a 617 * file. 618 */ 619if(S_ISREG(e->stages[2].mode) ||S_ISLNK(e->stages[2].mode)) { 620 last_file = path; 621 last_len = len; 622}else{ 623 last_file = NULL; 624} 625} 626string_list_clear(&df_sorted_entries,0); 627} 628 629static intupdate_stages(struct merge_options *opt,const char*path, 630const struct diff_filespec *o, 631const struct diff_filespec *a, 632const struct diff_filespec *b) 633{ 634 635/* 636 * NOTE: It is usually a bad idea to call update_stages on a path 637 * before calling update_file on that same path, since it can 638 * sometimes lead to spurious "refusing to lose untracked file..." 639 * messages from update_file (via make_room_for path via 640 * would_lose_untracked). Instead, reverse the order of the calls 641 * (executing update_file first and then update_stages). 642 */ 643int clear =1; 644int options = ADD_CACHE_OK_TO_ADD | ADD_CACHE_SKIP_DFCHECK; 645if(clear) 646if(remove_file_from_index(opt->repo->index, path)) 647return-1; 648if(o) 649if(add_cacheinfo(opt, o, path,1,0, options)) 650return-1; 651if(a) 652if(add_cacheinfo(opt, a, path,2,0, options)) 653return-1; 654if(b) 655if(add_cacheinfo(opt, b, path,3,0, options)) 656return-1; 657return0; 658} 659 660static voidupdate_entry(struct stage_data *entry, 661struct diff_filespec *o, 662struct diff_filespec *a, 663struct diff_filespec *b) 664{ 665 entry->processed =0; 666 entry->stages[1].mode = o->mode; 667 entry->stages[2].mode = a->mode; 668 entry->stages[3].mode = b->mode; 669oidcpy(&entry->stages[1].oid, &o->oid); 670oidcpy(&entry->stages[2].oid, &a->oid); 671oidcpy(&entry->stages[3].oid, &b->oid); 672} 673 674static intremove_file(struct merge_options *opt,int clean, 675const char*path,int no_wd) 676{ 677int update_cache = opt->call_depth || clean; 678int update_working_directory = !opt->call_depth && !no_wd; 679 680if(update_cache) { 681if(remove_file_from_index(opt->repo->index, path)) 682return-1; 683} 684if(update_working_directory) { 685if(ignore_case) { 686struct cache_entry *ce; 687 ce =index_file_exists(opt->repo->index, path,strlen(path), 688 ignore_case); 689if(ce &&ce_stage(ce) ==0&&strcmp(path, ce->name)) 690return0; 691} 692if(remove_path(path)) 693return-1; 694} 695return0; 696} 697 698/* add a string to a strbuf, but converting "/" to "_" */ 699static voidadd_flattened_path(struct strbuf *out,const char*s) 700{ 701size_t i = out->len; 702strbuf_addstr(out, s); 703for(; i < out->len; i++) 704if(out->buf[i] =='/') 705 out->buf[i] ='_'; 706} 707 708static char*unique_path(struct merge_options *opt,const char*path,const char*branch) 709{ 710struct path_hashmap_entry *entry; 711struct strbuf newpath = STRBUF_INIT; 712int suffix =0; 713size_t base_len; 714 715strbuf_addf(&newpath,"%s~", path); 716add_flattened_path(&newpath, branch); 717 718 base_len = newpath.len; 719while(hashmap_get_from_hash(&opt->current_file_dir_set, 720path_hash(newpath.buf), newpath.buf) || 721(!opt->call_depth &&file_exists(newpath.buf))) { 722strbuf_setlen(&newpath, base_len); 723strbuf_addf(&newpath,"_%d", suffix++); 724} 725 726FLEX_ALLOC_MEM(entry, path, newpath.buf, newpath.len); 727hashmap_entry_init(entry,path_hash(entry->path)); 728hashmap_add(&opt->current_file_dir_set, entry); 729returnstrbuf_detach(&newpath, NULL); 730} 731 732/** 733 * Check whether a directory in the index is in the way of an incoming 734 * file. Return 1 if so. If check_working_copy is non-zero, also 735 * check the working directory. If empty_ok is non-zero, also return 736 * 0 in the case where the working-tree dir exists but is empty. 737 */ 738static intdir_in_way(struct index_state *istate,const char*path, 739int check_working_copy,int empty_ok) 740{ 741int pos; 742struct strbuf dirpath = STRBUF_INIT; 743struct stat st; 744 745strbuf_addstr(&dirpath, path); 746strbuf_addch(&dirpath,'/'); 747 748 pos =index_name_pos(istate, dirpath.buf, dirpath.len); 749 750if(pos <0) 751 pos = -1- pos; 752if(pos < istate->cache_nr && 753!strncmp(dirpath.buf, istate->cache[pos]->name, dirpath.len)) { 754strbuf_release(&dirpath); 755return1; 756} 757 758strbuf_release(&dirpath); 759return check_working_copy && !lstat(path, &st) &&S_ISDIR(st.st_mode) && 760!(empty_ok &&is_empty_dir(path)); 761} 762 763/* 764 * Returns whether path was tracked in the index before the merge started, 765 * and its oid and mode match the specified values 766 */ 767static intwas_tracked_and_matches(struct merge_options *opt,const char*path, 768const struct diff_filespec *blob) 769{ 770int pos =index_name_pos(&opt->orig_index, path,strlen(path)); 771struct cache_entry *ce; 772 773if(0> pos) 774/* we were not tracking this path before the merge */ 775return0; 776 777/* See if the file we were tracking before matches */ 778 ce = opt->orig_index.cache[pos]; 779return(oid_eq(&ce->oid, &blob->oid) && ce->ce_mode == blob->mode); 780} 781 782/* 783 * Returns whether path was tracked in the index before the merge started 784 */ 785static intwas_tracked(struct merge_options *opt,const char*path) 786{ 787int pos =index_name_pos(&opt->orig_index, path,strlen(path)); 788 789if(0<= pos) 790/* we were tracking this path before the merge */ 791return1; 792 793return0; 794} 795 796static intwould_lose_untracked(struct merge_options *opt,const char*path) 797{ 798struct index_state *istate = opt->repo->index; 799 800/* 801 * This may look like it can be simplified to: 802 * return !was_tracked(opt, path) && file_exists(path) 803 * but it can't. This function needs to know whether path was in 804 * the working tree due to EITHER having been tracked in the index 805 * before the merge OR having been put into the working copy and 806 * index by unpack_trees(). Due to that either-or requirement, we 807 * check the current index instead of the original one. 808 * 809 * Note that we do not need to worry about merge-recursive itself 810 * updating the index after unpack_trees() and before calling this 811 * function, because we strictly require all code paths in 812 * merge-recursive to update the working tree first and the index 813 * second. Doing otherwise would break 814 * update_file()/would_lose_untracked(); see every comment in this 815 * file which mentions "update_stages". 816 */ 817int pos =index_name_pos(istate, path,strlen(path)); 818 819if(pos <0) 820 pos = -1- pos; 821while(pos < istate->cache_nr && 822!strcmp(path, istate->cache[pos]->name)) { 823/* 824 * If stage #0, it is definitely tracked. 825 * If it has stage #2 then it was tracked 826 * before this merge started. All other 827 * cases the path was not tracked. 828 */ 829switch(ce_stage(istate->cache[pos])) { 830case0: 831case2: 832return0; 833} 834 pos++; 835} 836returnfile_exists(path); 837} 838 839static intwas_dirty(struct merge_options *opt,const char*path) 840{ 841struct cache_entry *ce; 842int dirty =1; 843 844if(opt->call_depth || !was_tracked(opt, path)) 845return!dirty; 846 847 ce =index_file_exists(opt->unpack_opts.src_index, 848 path,strlen(path), ignore_case); 849 dirty =verify_uptodate(ce, &opt->unpack_opts) !=0; 850return dirty; 851} 852 853static intmake_room_for_path(struct merge_options *opt,const char*path) 854{ 855int status, i; 856const char*msg =_("failed to create path '%s'%s"); 857 858/* Unlink any D/F conflict files that are in the way */ 859for(i =0; i < opt->df_conflict_file_set.nr; i++) { 860const char*df_path = opt->df_conflict_file_set.items[i].string; 861size_t pathlen =strlen(path); 862size_t df_pathlen =strlen(df_path); 863if(df_pathlen < pathlen && 864 path[df_pathlen] =='/'&& 865strncmp(path, df_path, df_pathlen) ==0) { 866output(opt,3, 867_("Removing%sto make room for subdirectory\n"), 868 df_path); 869unlink(df_path); 870unsorted_string_list_delete_item(&opt->df_conflict_file_set, 871 i,0); 872break; 873} 874} 875 876/* Make sure leading directories are created */ 877 status =safe_create_leading_directories_const(path); 878if(status) { 879if(status == SCLD_EXISTS) 880/* something else exists */ 881returnerr(opt, msg, path,_(": perhaps a D/F conflict?")); 882returnerr(opt, msg, path,""); 883} 884 885/* 886 * Do not unlink a file in the work tree if we are not 887 * tracking it. 888 */ 889if(would_lose_untracked(opt, path)) 890returnerr(opt,_("refusing to lose untracked file at '%s'"), 891 path); 892 893/* Successful unlink is good.. */ 894if(!unlink(path)) 895return0; 896/* .. and so is no existing file */ 897if(errno == ENOENT) 898return0; 899/* .. but not some other error (who really cares what?) */ 900returnerr(opt, msg, path,_(": perhaps a D/F conflict?")); 901} 902 903static intupdate_file_flags(struct merge_options *opt, 904const struct diff_filespec *contents, 905const char*path, 906int update_cache, 907int update_wd) 908{ 909int ret =0; 910 911if(opt->call_depth) 912 update_wd =0; 913 914if(update_wd) { 915enum object_type type; 916void*buf; 917unsigned long size; 918 919if(S_ISGITLINK(contents->mode)) { 920/* 921 * We may later decide to recursively descend into 922 * the submodule directory and update its index 923 * and/or work tree, but we do not do that now. 924 */ 925 update_wd =0; 926goto update_index; 927} 928 929 buf =read_object_file(&contents->oid, &type, &size); 930if(!buf) 931returnerr(opt,_("cannot read object%s'%s'"), 932oid_to_hex(&contents->oid), path); 933if(type != OBJ_BLOB) { 934 ret =err(opt,_("blob expected for%s'%s'"), 935oid_to_hex(&contents->oid), path); 936goto free_buf; 937} 938if(S_ISREG(contents->mode)) { 939struct strbuf strbuf = STRBUF_INIT; 940if(convert_to_working_tree(opt->repo->index, path, buf, size, &strbuf)) { 941free(buf); 942 size = strbuf.len; 943 buf =strbuf_detach(&strbuf, NULL); 944} 945} 946 947if(make_room_for_path(opt, path) <0) { 948 update_wd =0; 949goto free_buf; 950} 951if(S_ISREG(contents->mode) || 952(!has_symlinks &&S_ISLNK(contents->mode))) { 953int fd; 954int mode = (contents->mode &0100?0777:0666); 955 956 fd =open(path, O_WRONLY | O_TRUNC | O_CREAT, mode); 957if(fd <0) { 958 ret =err(opt,_("failed to open '%s':%s"), 959 path,strerror(errno)); 960goto free_buf; 961} 962write_in_full(fd, buf, size); 963close(fd); 964}else if(S_ISLNK(contents->mode)) { 965char*lnk =xmemdupz(buf, size); 966safe_create_leading_directories_const(path); 967unlink(path); 968if(symlink(lnk, path)) 969 ret =err(opt,_("failed to symlink '%s':%s"), 970 path,strerror(errno)); 971free(lnk); 972}else 973 ret =err(opt, 974_("do not know what to do with%06o%s'%s'"), 975 contents->mode,oid_to_hex(&contents->oid), path); 976 free_buf: 977free(buf); 978} 979update_index: 980if(!ret && update_cache) 981if(add_cacheinfo(opt, contents, path,0, update_wd, 982 ADD_CACHE_OK_TO_ADD)) 983return-1; 984return ret; 985} 986 987static intupdate_file(struct merge_options *opt, 988int clean, 989const struct diff_filespec *contents, 990const char*path) 991{ 992returnupdate_file_flags(opt, contents, path, 993 opt->call_depth || clean, !opt->call_depth); 994} 995 996/* Low level file merging, update and removal */ 997 998struct merge_file_info { 999struct diff_filespec blob;/* mostly use oid & mode; sometimes path */1000unsigned clean:1,1001 merge:1;1002};10031004static intmerge_3way(struct merge_options *opt,1005 mmbuffer_t *result_buf,1006const struct diff_filespec *o,1007const struct diff_filespec *a,1008const struct diff_filespec *b,1009const char*branch1,1010const char*branch2,1011const int extra_marker_size)1012{1013 mmfile_t orig, src1, src2;1014struct ll_merge_options ll_opts = {0};1015char*base_name, *name1, *name2;1016int merge_status;10171018 ll_opts.renormalize = opt->renormalize;1019 ll_opts.extra_marker_size = extra_marker_size;1020 ll_opts.xdl_opts = opt->xdl_opts;10211022if(opt->call_depth) {1023 ll_opts.virtual_ancestor =1;1024 ll_opts.variant =0;1025}else{1026switch(opt->recursive_variant) {1027case MERGE_RECURSIVE_OURS:1028 ll_opts.variant = XDL_MERGE_FAVOR_OURS;1029break;1030case MERGE_RECURSIVE_THEIRS:1031 ll_opts.variant = XDL_MERGE_FAVOR_THEIRS;1032break;1033default:1034 ll_opts.variant =0;1035break;1036}1037}10381039assert(a->path && b->path);1040if(strcmp(a->path, b->path) ||1041(opt->ancestor != NULL &&strcmp(a->path, o->path) !=0)) {1042 base_name = opt->ancestor == NULL ? NULL :1043mkpathdup("%s:%s", opt->ancestor, o->path);1044 name1 =mkpathdup("%s:%s", branch1, a->path);1045 name2 =mkpathdup("%s:%s", branch2, b->path);1046}else{1047 base_name = opt->ancestor == NULL ? NULL :1048mkpathdup("%s", opt->ancestor);1049 name1 =mkpathdup("%s", branch1);1050 name2 =mkpathdup("%s", branch2);1051}10521053read_mmblob(&orig, &o->oid);1054read_mmblob(&src1, &a->oid);1055read_mmblob(&src2, &b->oid);10561057 merge_status =ll_merge(result_buf, a->path, &orig, base_name,1058&src1, name1, &src2, name2,1059 opt->repo->index, &ll_opts);10601061free(base_name);1062free(name1);1063free(name2);1064free(orig.ptr);1065free(src1.ptr);1066free(src2.ptr);1067return merge_status;1068}10691070static intfind_first_merges(struct repository *repo,1071struct object_array *result,const char*path,1072struct commit *a,struct commit *b)1073{1074int i, j;1075struct object_array merges = OBJECT_ARRAY_INIT;1076struct commit *commit;1077int contains_another;10781079char merged_revision[42];1080const char*rev_args[] = {"rev-list","--merges","--ancestry-path",1081"--all", merged_revision, NULL };1082struct rev_info revs;1083struct setup_revision_opt rev_opts;10841085memset(result,0,sizeof(struct object_array));1086memset(&rev_opts,0,sizeof(rev_opts));10871088/* get all revisions that merge commit a */1089xsnprintf(merged_revision,sizeof(merged_revision),"^%s",1090oid_to_hex(&a->object.oid));1091repo_init_revisions(repo, &revs, NULL);1092 rev_opts.submodule = path;1093/* FIXME: can't handle linked worktrees in submodules yet */1094 revs.single_worktree = path != NULL;1095setup_revisions(ARRAY_SIZE(rev_args)-1, rev_args, &revs, &rev_opts);10961097/* save all revisions from the above list that contain b */1098if(prepare_revision_walk(&revs))1099die("revision walk setup failed");1100while((commit =get_revision(&revs)) != NULL) {1101struct object *o = &(commit->object);1102if(in_merge_bases(b, commit))1103add_object_array(o, NULL, &merges);1104}1105reset_revision_walk();11061107/* Now we've got all merges that contain a and b. Prune all1108 * merges that contain another found merge and save them in1109 * result.1110 */1111for(i =0; i < merges.nr; i++) {1112struct commit *m1 = (struct commit *) merges.objects[i].item;11131114 contains_another =0;1115for(j =0; j < merges.nr; j++) {1116struct commit *m2 = (struct commit *) merges.objects[j].item;1117if(i != j &&in_merge_bases(m2, m1)) {1118 contains_another =1;1119break;1120}1121}11221123if(!contains_another)1124add_object_array(merges.objects[i].item, NULL, result);1125}11261127object_array_clear(&merges);1128return result->nr;1129}11301131static voidprint_commit(struct commit *commit)1132{1133struct strbuf sb = STRBUF_INIT;1134struct pretty_print_context ctx = {0};1135 ctx.date_mode.type = DATE_NORMAL;1136format_commit_message(commit,"%h:%m %s", &sb, &ctx);1137fprintf(stderr,"%s\n", sb.buf);1138strbuf_release(&sb);1139}11401141static intis_valid(const struct diff_filespec *dfs)1142{1143return dfs->mode !=0&& !is_null_oid(&dfs->oid);1144}11451146static intmerge_submodule(struct merge_options *opt,1147struct object_id *result,const char*path,1148const struct object_id *base,const struct object_id *a,1149const struct object_id *b)1150{1151struct commit *commit_base, *commit_a, *commit_b;1152int parent_count;1153struct object_array merges;11541155int i;1156int search = !opt->call_depth;11571158/* store a in result in case we fail */1159oidcpy(result, a);11601161/* we can not handle deletion conflicts */1162if(is_null_oid(base))1163return0;1164if(is_null_oid(a))1165return0;1166if(is_null_oid(b))1167return0;11681169if(add_submodule_odb(path)) {1170output(opt,1,_("Failed to merge submodule%s(not checked out)"), path);1171return0;1172}11731174if(!(commit_base =lookup_commit_reference(opt->repo, base)) ||1175!(commit_a =lookup_commit_reference(opt->repo, a)) ||1176!(commit_b =lookup_commit_reference(opt->repo, b))) {1177output(opt,1,_("Failed to merge submodule%s(commits not present)"), path);1178return0;1179}11801181/* check whether both changes are forward */1182if(!in_merge_bases(commit_base, commit_a) ||1183!in_merge_bases(commit_base, commit_b)) {1184output(opt,1,_("Failed to merge submodule%s(commits don't follow merge-base)"), path);1185return0;1186}11871188/* Case #1: a is contained in b or vice versa */1189if(in_merge_bases(commit_a, commit_b)) {1190oidcpy(result, b);1191if(show(opt,3)) {1192output(opt,3,_("Fast-forwarding submodule%sto the following commit:"), path);1193output_commit_title(opt, commit_b);1194}else if(show(opt,2))1195output(opt,2,_("Fast-forwarding submodule%s"), path);1196else1197;/* no output */11981199return1;1200}1201if(in_merge_bases(commit_b, commit_a)) {1202oidcpy(result, a);1203if(show(opt,3)) {1204output(opt,3,_("Fast-forwarding submodule%sto the following commit:"), path);1205output_commit_title(opt, commit_a);1206}else if(show(opt,2))1207output(opt,2,_("Fast-forwarding submodule%s"), path);1208else1209;/* no output */12101211return1;1212}12131214/*1215 * Case #2: There are one or more merges that contain a and b in1216 * the submodule. If there is only one, then present it as a1217 * suggestion to the user, but leave it marked unmerged so the1218 * user needs to confirm the resolution.1219 */12201221/* Skip the search if makes no sense to the calling context. */1222if(!search)1223return0;12241225/* find commit which merges them */1226 parent_count =find_first_merges(opt->repo, &merges, path,1227 commit_a, commit_b);1228switch(parent_count) {1229case0:1230output(opt,1,_("Failed to merge submodule%s(merge following commits not found)"), path);1231break;12321233case1:1234output(opt,1,_("Failed to merge submodule%s(not fast-forward)"), path);1235output(opt,2,_("Found a possible merge resolution for the submodule:\n"));1236print_commit((struct commit *) merges.objects[0].item);1237output(opt,2,_(1238"If this is correct simply add it to the index "1239"for example\n"1240"by using:\n\n"1241" git update-index --cacheinfo 160000%s\"%s\"\n\n"1242"which will accept this suggestion.\n"),1243oid_to_hex(&merges.objects[0].item->oid), path);1244break;12451246default:1247output(opt,1,_("Failed to merge submodule%s(multiple merges found)"), path);1248for(i =0; i < merges.nr; i++)1249print_commit((struct commit *) merges.objects[i].item);1250}12511252object_array_clear(&merges);1253return0;1254}12551256static intmerge_mode_and_contents(struct merge_options *opt,1257const struct diff_filespec *o,1258const struct diff_filespec *a,1259const struct diff_filespec *b,1260const char*filename,1261const char*branch1,1262const char*branch2,1263const int extra_marker_size,1264struct merge_file_info *result)1265{1266if(opt->branch1 != branch1) {1267/*1268 * It's weird getting a reverse merge with HEAD on the bottom1269 * side of the conflict markers and the other branch on the1270 * top. Fix that.1271 */1272returnmerge_mode_and_contents(opt, o, b, a,1273 filename,1274 branch2, branch1,1275 extra_marker_size, result);1276}12771278 result->merge =0;1279 result->clean =1;12801281if((S_IFMT & a->mode) != (S_IFMT & b->mode)) {1282 result->clean =0;1283if(S_ISREG(a->mode)) {1284 result->blob.mode = a->mode;1285oidcpy(&result->blob.oid, &a->oid);1286}else{1287 result->blob.mode = b->mode;1288oidcpy(&result->blob.oid, &b->oid);1289}1290}else{1291if(!oid_eq(&a->oid, &o->oid) && !oid_eq(&b->oid, &o->oid))1292 result->merge =1;12931294/*1295 * Merge modes1296 */1297if(a->mode == b->mode || a->mode == o->mode)1298 result->blob.mode = b->mode;1299else{1300 result->blob.mode = a->mode;1301if(b->mode != o->mode) {1302 result->clean =0;1303 result->merge =1;1304}1305}13061307if(oid_eq(&a->oid, &b->oid) ||oid_eq(&a->oid, &o->oid))1308oidcpy(&result->blob.oid, &b->oid);1309else if(oid_eq(&b->oid, &o->oid))1310oidcpy(&result->blob.oid, &a->oid);1311else if(S_ISREG(a->mode)) {1312 mmbuffer_t result_buf;1313int ret =0, merge_status;13141315 merge_status =merge_3way(opt, &result_buf, o, a, b,1316 branch1, branch2,1317 extra_marker_size);13181319if((merge_status <0) || !result_buf.ptr)1320 ret =err(opt,_("Failed to execute internal merge"));13211322if(!ret &&1323write_object_file(result_buf.ptr, result_buf.size,1324 blob_type, &result->blob.oid))1325 ret =err(opt,_("Unable to add%sto database"),1326 a->path);13271328free(result_buf.ptr);1329if(ret)1330return ret;1331 result->clean = (merge_status ==0);1332}else if(S_ISGITLINK(a->mode)) {1333 result->clean =merge_submodule(opt, &result->blob.oid,1334 o->path,1335&o->oid,1336&a->oid,1337&b->oid);1338}else if(S_ISLNK(a->mode)) {1339switch(opt->recursive_variant) {1340case MERGE_RECURSIVE_NORMAL:1341oidcpy(&result->blob.oid, &a->oid);1342if(!oid_eq(&a->oid, &b->oid))1343 result->clean =0;1344break;1345case MERGE_RECURSIVE_OURS:1346oidcpy(&result->blob.oid, &a->oid);1347break;1348case MERGE_RECURSIVE_THEIRS:1349oidcpy(&result->blob.oid, &b->oid);1350break;1351}1352}else1353BUG("unsupported object type in the tree");1354}13551356if(result->merge)1357output(opt,2,_("Auto-merging%s"), filename);13581359return0;1360}13611362static inthandle_rename_via_dir(struct merge_options *opt,1363struct rename_conflict_info *ci)1364{1365/*1366 * Handle file adds that need to be renamed due to directory rename1367 * detection. This differs from handle_rename_normal, because1368 * there is no content merge to do; just move the file into the1369 * desired final location.1370 */1371const struct rename *ren = ci->ren1;1372const struct diff_filespec *dest = ren->pair->two;1373char*file_path = dest->path;1374int mark_conflicted = (opt->detect_directory_renames ==1);1375assert(ren->dir_rename_original_dest);13761377if(!opt->call_depth &&would_lose_untracked(opt, dest->path)) {1378 mark_conflicted =1;1379 file_path =unique_path(opt, dest->path, ren->branch);1380output(opt,1,_("Error: Refusing to lose untracked file at%s; "1381"writing to%sinstead."),1382 dest->path, file_path);1383}13841385if(mark_conflicted) {1386/*1387 * Write the file in worktree at file_path. In the index,1388 * only record the file at dest->path in the appropriate1389 * higher stage.1390 */1391if(update_file(opt,0, dest, file_path))1392return-1;1393if(file_path != dest->path)1394free(file_path);1395if(update_stages(opt, dest->path, NULL,1396 ren->branch == opt->branch1 ? dest : NULL,1397 ren->branch == opt->branch1 ? NULL : dest))1398return-1;1399return0;/* not clean, but conflicted */1400}else{1401/* Update dest->path both in index and in worktree */1402if(update_file(opt,1, dest, dest->path))1403return-1;1404return1;/* clean */1405}1406}14071408static inthandle_change_delete(struct merge_options *opt,1409const char*path,const char*old_path,1410const struct diff_filespec *o,1411const struct diff_filespec *changed,1412const char*change_branch,1413const char*delete_branch,1414const char*change,const char*change_past)1415{1416char*alt_path = NULL;1417const char*update_path = path;1418int ret =0;14191420if(dir_in_way(opt->repo->index, path, !opt->call_depth,0) ||1421(!opt->call_depth &&would_lose_untracked(opt, path))) {1422 update_path = alt_path =unique_path(opt, path, change_branch);1423}14241425if(opt->call_depth) {1426/*1427 * We cannot arbitrarily accept either a_sha or b_sha as1428 * correct; since there is no true "middle point" between1429 * them, simply reuse the base version for virtual merge base.1430 */1431 ret =remove_file_from_index(opt->repo->index, path);1432if(!ret)1433 ret =update_file(opt,0, o, update_path);1434}else{1435/*1436 * Despite the four nearly duplicate messages and argument1437 * lists below and the ugliness of the nested if-statements,1438 * having complete messages makes the job easier for1439 * translators.1440 *1441 * The slight variance among the cases is due to the fact1442 * that:1443 * 1) directory/file conflicts (in effect if1444 * !alt_path) could cause us to need to write the1445 * file to a different path.1446 * 2) renames (in effect if !old_path) could mean that1447 * there are two names for the path that the user1448 * may know the file by.1449 */1450if(!alt_path) {1451if(!old_path) {1452output(opt,1,_("CONFLICT (%s/delete):%sdeleted in%s"1453"and%sin%s. Version%sof%sleft in tree."),1454 change, path, delete_branch, change_past,1455 change_branch, change_branch, path);1456}else{1457output(opt,1,_("CONFLICT (%s/delete):%sdeleted in%s"1458"and%sto%sin%s. Version%sof%sleft in tree."),1459 change, old_path, delete_branch, change_past, path,1460 change_branch, change_branch, path);1461}1462}else{1463if(!old_path) {1464output(opt,1,_("CONFLICT (%s/delete):%sdeleted in%s"1465"and%sin%s. Version%sof%sleft in tree at%s."),1466 change, path, delete_branch, change_past,1467 change_branch, change_branch, path, alt_path);1468}else{1469output(opt,1,_("CONFLICT (%s/delete):%sdeleted in%s"1470"and%sto%sin%s. Version%sof%sleft in tree at%s."),1471 change, old_path, delete_branch, change_past, path,1472 change_branch, change_branch, path, alt_path);1473}1474}1475/*1476 * No need to call update_file() on path when change_branch ==1477 * opt->branch1 && !alt_path, since that would needlessly touch1478 * path. We could call update_file_flags() with update_cache=01479 * and update_wd=0, but that's a no-op.1480 */1481if(change_branch != opt->branch1 || alt_path)1482 ret =update_file(opt,0, changed, update_path);1483}1484free(alt_path);14851486return ret;1487}14881489static inthandle_rename_delete(struct merge_options *opt,1490struct rename_conflict_info *ci)1491{1492const struct rename *ren = ci->ren1;1493const struct diff_filespec *orig = ren->pair->one;1494const struct diff_filespec *dest = ren->pair->two;1495const char*rename_branch = ren->branch;1496const char*delete_branch = (opt->branch1 == ren->branch ?1497 opt->branch2 : opt->branch1);14981499if(handle_change_delete(opt,1500 opt->call_depth ? orig->path : dest->path,1501 opt->call_depth ? NULL : orig->path,1502 orig, dest,1503 rename_branch, delete_branch,1504_("rename"),_("renamed")))1505return-1;15061507if(opt->call_depth)1508returnremove_file_from_index(opt->repo->index, dest->path);1509else1510returnupdate_stages(opt, dest->path, NULL,1511 rename_branch == opt->branch1 ? dest : NULL,1512 rename_branch == opt->branch1 ? NULL : dest);1513}15141515static inthandle_file_collision(struct merge_options *opt,1516const char*collide_path,1517const char*prev_path1,1518const char*prev_path2,1519const char*branch1,const char*branch2,1520struct diff_filespec *a,1521struct diff_filespec *b)1522{1523struct merge_file_info mfi;1524struct diff_filespec null;1525char*alt_path = NULL;1526const char*update_path = collide_path;15271528/*1529 * It's easiest to get the correct things into stage 2 and 3, and1530 * to make sure that the content merge puts HEAD before the other1531 * branch if we just ensure that branch1 == opt->branch1. So, simply1532 * flip arguments around if we don't have that.1533 */1534if(branch1 != opt->branch1) {1535returnhandle_file_collision(opt, collide_path,1536 prev_path2, prev_path1,1537 branch2, branch1,1538 b, a);1539}15401541/*1542 * In the recursive case, we just opt to undo renames1543 */1544if(opt->call_depth && (prev_path1 || prev_path2)) {1545/* Put first file (a->oid, a->mode) in its original spot */1546if(prev_path1) {1547if(update_file(opt,1, a, prev_path1))1548return-1;1549}else{1550if(update_file(opt,1, a, collide_path))1551return-1;1552}15531554/* Put second file (b->oid, b->mode) in its original spot */1555if(prev_path2) {1556if(update_file(opt,1, b, prev_path2))1557return-1;1558}else{1559if(update_file(opt,1, b, collide_path))1560return-1;1561}15621563/* Don't leave something at collision path if unrenaming both */1564if(prev_path1 && prev_path2)1565remove_file(opt,1, collide_path,0);15661567return0;1568}15691570/* Remove rename sources if rename/add or rename/rename(2to1) */1571if(prev_path1)1572remove_file(opt,1, prev_path1,1573 opt->call_depth ||would_lose_untracked(opt, prev_path1));1574if(prev_path2)1575remove_file(opt,1, prev_path2,1576 opt->call_depth ||would_lose_untracked(opt, prev_path2));15771578/*1579 * Remove the collision path, if it wouldn't cause dirty contents1580 * or an untracked file to get lost. We'll either overwrite with1581 * merged contents, or just write out to differently named files.1582 */1583if(was_dirty(opt, collide_path)) {1584output(opt,1,_("Refusing to lose dirty file at%s"),1585 collide_path);1586 update_path = alt_path =unique_path(opt, collide_path,"merged");1587}else if(would_lose_untracked(opt, collide_path)) {1588/*1589 * Only way we get here is if both renames were from1590 * a directory rename AND user had an untracked file1591 * at the location where both files end up after the1592 * two directory renames. See testcase 10d of t6043.1593 */1594output(opt,1,_("Refusing to lose untracked file at "1595"%s, even though it's in the way."),1596 collide_path);1597 update_path = alt_path =unique_path(opt, collide_path,"merged");1598}else{1599/*1600 * FIXME: It's possible that the two files are identical1601 * and that the current working copy happens to match, in1602 * which case we are unnecessarily touching the working1603 * tree file. It's not a likely enough scenario that I1604 * want to code up the checks for it and a better fix is1605 * available if we restructure how unpack_trees() and1606 * merge-recursive interoperate anyway, so punting for1607 * now...1608 */1609remove_file(opt,0, collide_path,0);1610}16111612/* Store things in diff_filespecs for functions that need it */1613 null.path = (char*)collide_path;1614oidcpy(&null.oid, &null_oid);1615 null.mode =0;16161617if(merge_mode_and_contents(opt, &null, a, b, collide_path,1618 branch1, branch2, opt->call_depth *2, &mfi))1619return-1;1620 mfi.clean &= !alt_path;1621if(update_file(opt, mfi.clean, &mfi.blob, update_path))1622return-1;1623if(!mfi.clean && !opt->call_depth &&1624update_stages(opt, collide_path, NULL, a, b))1625return-1;1626free(alt_path);1627/*1628 * FIXME: If both a & b both started with conflicts (only possible1629 * if they came from a rename/rename(2to1)), but had IDENTICAL1630 * contents including those conflicts, then in the next line we claim1631 * it was clean. If someone cares about this case, we should have the1632 * caller notify us if we started with conflicts.1633 */1634return mfi.clean;1635}16361637static inthandle_rename_add(struct merge_options *opt,1638struct rename_conflict_info *ci)1639{1640/* a was renamed to c, and a separate c was added. */1641struct diff_filespec *a = ci->ren1->pair->one;1642struct diff_filespec *c = ci->ren1->pair->two;1643char*path = c->path;1644char*prev_path_desc;1645struct merge_file_info mfi;16461647const char*rename_branch = ci->ren1->branch;1648const char*add_branch = (opt->branch1 == rename_branch ?1649 opt->branch2 : opt->branch1);1650int other_stage = (ci->ren1->branch == opt->branch1 ?3:2);16511652output(opt,1,_("CONFLICT (rename/add): "1653"Rename%s->%sin%s. Added%sin%s"),1654 a->path, c->path, rename_branch,1655 c->path, add_branch);16561657 prev_path_desc =xstrfmt("version of%sfrom%s", path, a->path);1658if(merge_mode_and_contents(opt, a, c,1659&ci->ren1->src_entry->stages[other_stage],1660 prev_path_desc,1661 opt->branch1, opt->branch2,16621+ opt->call_depth *2, &mfi))1663return-1;1664free(prev_path_desc);16651666 ci->ren1->dst_entry->stages[other_stage].path = mfi.blob.path = c->path;1667returnhandle_file_collision(opt,1668 c->path, a->path, NULL,1669 rename_branch, add_branch,1670&mfi.blob,1671&ci->ren1->dst_entry->stages[other_stage]);1672}16731674static char*find_path_for_conflict(struct merge_options *opt,1675const char*path,1676const char*branch1,1677const char*branch2)1678{1679char*new_path = NULL;1680if(dir_in_way(opt->repo->index, path, !opt->call_depth,0)) {1681 new_path =unique_path(opt, path, branch1);1682output(opt,1,_("%sis a directory in%sadding "1683"as%sinstead"),1684 path, branch2, new_path);1685}else if(would_lose_untracked(opt, path)) {1686 new_path =unique_path(opt, path, branch1);1687output(opt,1,_("Refusing to lose untracked file"1688" at%s; adding as%sinstead"),1689 path, new_path);1690}16911692return new_path;1693}16941695static inthandle_rename_rename_1to2(struct merge_options *opt,1696struct rename_conflict_info *ci)1697{1698/* One file was renamed in both branches, but to different names. */1699struct merge_file_info mfi;1700struct diff_filespec *add;1701struct diff_filespec *o = ci->ren1->pair->one;1702struct diff_filespec *a = ci->ren1->pair->two;1703struct diff_filespec *b = ci->ren2->pair->two;1704char*path_desc;17051706output(opt,1,_("CONFLICT (rename/rename): "1707"Rename\"%s\"->\"%s\"in branch\"%s\""1708"rename\"%s\"->\"%s\"in\"%s\"%s"),1709 o->path, a->path, ci->ren1->branch,1710 o->path, b->path, ci->ren2->branch,1711 opt->call_depth ?_(" (left unresolved)") :"");17121713 path_desc =xstrfmt("%sand%s, both renamed from%s",1714 a->path, b->path, o->path);1715if(merge_mode_and_contents(opt, o, a, b, path_desc,1716 ci->ren1->branch, ci->ren2->branch,1717 opt->call_depth *2, &mfi))1718return-1;1719free(path_desc);17201721if(opt->call_depth) {1722/*1723 * FIXME: For rename/add-source conflicts (if we could detect1724 * such), this is wrong. We should instead find a unique1725 * pathname and then either rename the add-source file to that1726 * unique path, or use that unique path instead of src here.1727 */1728if(update_file(opt,0, &mfi.blob, o->path))1729return-1;17301731/*1732 * Above, we put the merged content at the merge-base's1733 * path. Now we usually need to delete both a->path and1734 * b->path. However, the rename on each side of the merge1735 * could also be involved in a rename/add conflict. In1736 * such cases, we should keep the added file around,1737 * resolving the conflict at that path in its favor.1738 */1739 add = &ci->ren1->dst_entry->stages[2^1];1740if(is_valid(add)) {1741if(update_file(opt,0, add, a->path))1742return-1;1743}1744else1745remove_file_from_index(opt->repo->index, a->path);1746 add = &ci->ren2->dst_entry->stages[3^1];1747if(is_valid(add)) {1748if(update_file(opt,0, add, b->path))1749return-1;1750}1751else1752remove_file_from_index(opt->repo->index, b->path);1753}else{1754/*1755 * For each destination path, we need to see if there is a1756 * rename/add collision. If not, we can write the file out1757 * to the specified location.1758 */1759 add = &ci->ren1->dst_entry->stages[2^1];1760if(is_valid(add)) {1761 add->path = mfi.blob.path = a->path;1762if(handle_file_collision(opt, a->path,1763 NULL, NULL,1764 ci->ren1->branch,1765 ci->ren2->branch,1766&mfi.blob, add) <0)1767return-1;1768}else{1769char*new_path =find_path_for_conflict(opt, a->path,1770 ci->ren1->branch,1771 ci->ren2->branch);1772if(update_file(opt,0, &mfi.blob,1773 new_path ? new_path : a->path))1774return-1;1775free(new_path);1776if(update_stages(opt, a->path, NULL, a, NULL))1777return-1;1778}17791780 add = &ci->ren2->dst_entry->stages[3^1];1781if(is_valid(add)) {1782 add->path = mfi.blob.path = b->path;1783if(handle_file_collision(opt, b->path,1784 NULL, NULL,1785 ci->ren1->branch,1786 ci->ren2->branch,1787 add, &mfi.blob) <0)1788return-1;1789}else{1790char*new_path =find_path_for_conflict(opt, b->path,1791 ci->ren2->branch,1792 ci->ren1->branch);1793if(update_file(opt,0, &mfi.blob,1794 new_path ? new_path : b->path))1795return-1;1796free(new_path);1797if(update_stages(opt, b->path, NULL, NULL, b))1798return-1;1799}1800}18011802return0;1803}18041805static inthandle_rename_rename_2to1(struct merge_options *opt,1806struct rename_conflict_info *ci)1807{1808/* Two files, a & b, were renamed to the same thing, c. */1809struct diff_filespec *a = ci->ren1->pair->one;1810struct diff_filespec *b = ci->ren2->pair->one;1811struct diff_filespec *c1 = ci->ren1->pair->two;1812struct diff_filespec *c2 = ci->ren2->pair->two;1813char*path = c1->path;/* == c2->path */1814char*path_side_1_desc;1815char*path_side_2_desc;1816struct merge_file_info mfi_c1;1817struct merge_file_info mfi_c2;1818int ostage1, ostage2;18191820output(opt,1,_("CONFLICT (rename/rename): "1821"Rename%s->%sin%s. "1822"Rename%s->%sin%s"),1823 a->path, c1->path, ci->ren1->branch,1824 b->path, c2->path, ci->ren2->branch);18251826 path_side_1_desc =xstrfmt("version of%sfrom%s", path, a->path);1827 path_side_2_desc =xstrfmt("version of%sfrom%s", path, b->path);1828 ostage1 = ci->ren1->branch == opt->branch1 ?3:2;1829 ostage2 = ostage1 ^1;1830 ci->ren1->src_entry->stages[ostage1].path = a->path;1831 ci->ren2->src_entry->stages[ostage2].path = b->path;1832if(merge_mode_and_contents(opt, a, c1,1833&ci->ren1->src_entry->stages[ostage1],1834 path_side_1_desc,1835 opt->branch1, opt->branch2,18361+ opt->call_depth *2, &mfi_c1) ||1837merge_mode_and_contents(opt, b,1838&ci->ren2->src_entry->stages[ostage2],1839 c2, path_side_2_desc,1840 opt->branch1, opt->branch2,18411+ opt->call_depth *2, &mfi_c2))1842return-1;1843free(path_side_1_desc);1844free(path_side_2_desc);1845 mfi_c1.blob.path = path;1846 mfi_c2.blob.path = path;18471848returnhandle_file_collision(opt, path, a->path, b->path,1849 ci->ren1->branch, ci->ren2->branch,1850&mfi_c1.blob, &mfi_c2.blob);1851}18521853/*1854 * Get the diff_filepairs changed between o_tree and tree.1855 */1856static struct diff_queue_struct *get_diffpairs(struct merge_options *opt,1857struct tree *o_tree,1858struct tree *tree)1859{1860struct diff_queue_struct *ret;1861struct diff_options opts;18621863repo_diff_setup(opt->repo, &opts);1864 opts.flags.recursive =1;1865 opts.flags.rename_empty =0;1866 opts.detect_rename =merge_detect_rename(opt);1867/*1868 * We do not have logic to handle the detection of copies. In1869 * fact, it may not even make sense to add such logic: would we1870 * really want a change to a base file to be propagated through1871 * multiple other files by a merge?1872 */1873if(opts.detect_rename > DIFF_DETECT_RENAME)1874 opts.detect_rename = DIFF_DETECT_RENAME;1875 opts.rename_limit = opt->merge_rename_limit >=0? opt->merge_rename_limit :1876 opt->diff_rename_limit >=0? opt->diff_rename_limit :18771000;1878 opts.rename_score = opt->rename_score;1879 opts.show_rename_progress = opt->show_rename_progress;1880 opts.output_format = DIFF_FORMAT_NO_OUTPUT;1881diff_setup_done(&opts);1882diff_tree_oid(&o_tree->object.oid, &tree->object.oid,"", &opts);1883diffcore_std(&opts);1884if(opts.needed_rename_limit > opt->needed_rename_limit)1885 opt->needed_rename_limit = opts.needed_rename_limit;18861887 ret =xmalloc(sizeof(*ret));1888*ret = diff_queued_diff;18891890 opts.output_format = DIFF_FORMAT_NO_OUTPUT;1891 diff_queued_diff.nr =0;1892 diff_queued_diff.queue = NULL;1893diff_flush(&opts);1894return ret;1895}18961897static inttree_has_path(struct tree *tree,const char*path)1898{1899struct object_id hashy;1900unsigned short mode_o;19011902return!get_tree_entry(&tree->object.oid, path,1903&hashy, &mode_o);1904}19051906/*1907 * Return a new string that replaces the beginning portion (which matches1908 * entry->dir), with entry->new_dir. In perl-speak:1909 * new_path_name = (old_path =~ s/entry->dir/entry->new_dir/);1910 * NOTE:1911 * Caller must ensure that old_path starts with entry->dir + '/'.1912 */1913static char*apply_dir_rename(struct dir_rename_entry *entry,1914const char*old_path)1915{1916struct strbuf new_path = STRBUF_INIT;1917int oldlen, newlen;19181919if(entry->non_unique_new_dir)1920return NULL;19211922 oldlen =strlen(entry->dir);1923 newlen = entry->new_dir.len + (strlen(old_path) - oldlen) +1;1924strbuf_grow(&new_path, newlen);1925strbuf_addbuf(&new_path, &entry->new_dir);1926strbuf_addstr(&new_path, &old_path[oldlen]);19271928returnstrbuf_detach(&new_path, NULL);1929}19301931static voidget_renamed_dir_portion(const char*old_path,const char*new_path,1932char**old_dir,char**new_dir)1933{1934char*end_of_old, *end_of_new;1935int old_len, new_len;19361937*old_dir = NULL;1938*new_dir = NULL;19391940/*1941 * For1942 * "a/b/c/d/e/foo.c" -> "a/b/some/thing/else/e/foo.c"1943 * the "e/foo.c" part is the same, we just want to know that1944 * "a/b/c/d" was renamed to "a/b/some/thing/else"1945 * so, for this example, this function returns "a/b/c/d" in1946 * *old_dir and "a/b/some/thing/else" in *new_dir.1947 *1948 * Also, if the basename of the file changed, we don't care. We1949 * want to know which portion of the directory, if any, changed.1950 */1951 end_of_old =strrchr(old_path,'/');1952 end_of_new =strrchr(new_path,'/');19531954if(end_of_old == NULL || end_of_new == NULL)1955return;1956while(*--end_of_new == *--end_of_old &&1957 end_of_old != old_path &&1958 end_of_new != new_path)1959;/* Do nothing; all in the while loop */1960/*1961 * We've found the first non-matching character in the directory1962 * paths. That means the current directory we were comparing1963 * represents the rename. Move end_of_old and end_of_new back1964 * to the full directory name.1965 */1966if(*end_of_old =='/')1967 end_of_old++;1968if(*end_of_old !='/')1969 end_of_new++;1970 end_of_old =strchr(end_of_old,'/');1971 end_of_new =strchr(end_of_new,'/');19721973/*1974 * It may have been the case that old_path and new_path were the same1975 * directory all along. Don't claim a rename if they're the same.1976 */1977 old_len = end_of_old - old_path;1978 new_len = end_of_new - new_path;19791980if(old_len != new_len ||strncmp(old_path, new_path, old_len)) {1981*old_dir =xstrndup(old_path, old_len);1982*new_dir =xstrndup(new_path, new_len);1983}1984}19851986static voidremove_hashmap_entries(struct hashmap *dir_renames,1987struct string_list *items_to_remove)1988{1989int i;1990struct dir_rename_entry *entry;19911992for(i =0; i < items_to_remove->nr; i++) {1993 entry = items_to_remove->items[i].util;1994hashmap_remove(dir_renames, entry, NULL);1995}1996string_list_clear(items_to_remove,0);1997}19981999/*2000 * See if there is a directory rename for path, and if there are any file2001 * level conflicts for the renamed location. If there is a rename and2002 * there are no conflicts, return the new name. Otherwise, return NULL.2003 */2004static char*handle_path_level_conflicts(struct merge_options *opt,2005const char*path,2006struct dir_rename_entry *entry,2007struct hashmap *collisions,2008struct tree *tree)2009{2010char*new_path = NULL;2011struct collision_entry *collision_ent;2012int clean =1;2013struct strbuf collision_paths = STRBUF_INIT;20142015/*2016 * entry has the mapping of old directory name to new directory name2017 * that we want to apply to path.2018 */2019 new_path =apply_dir_rename(entry, path);20202021if(!new_path) {2022/* This should only happen when entry->non_unique_new_dir set */2023if(!entry->non_unique_new_dir)2024BUG("entry->non_unqiue_dir not set and !new_path");2025output(opt,1,_("CONFLICT (directory rename split): "2026"Unclear where to place%sbecause directory "2027"%swas renamed to multiple other directories, "2028"with no destination getting a majority of the "2029"files."),2030 path, entry->dir);2031 clean =0;2032return NULL;2033}20342035/*2036 * The caller needs to have ensured that it has pre-populated2037 * collisions with all paths that map to new_path. Do a quick check2038 * to ensure that's the case.2039 */2040 collision_ent =collision_find_entry(collisions, new_path);2041if(collision_ent == NULL)2042BUG("collision_ent is NULL");20432044/*2045 * Check for one-sided add/add/.../add conflicts, i.e.2046 * where implicit renames from the other side doing2047 * directory rename(s) can affect this side of history2048 * to put multiple paths into the same location. Warn2049 * and bail on directory renames for such paths.2050 */2051if(collision_ent->reported_already) {2052 clean =0;2053}else if(tree_has_path(tree, new_path)) {2054 collision_ent->reported_already =1;2055strbuf_add_separated_string_list(&collision_paths,", ",2056&collision_ent->source_files);2057output(opt,1,_("CONFLICT (implicit dir rename): Existing "2058"file/dir at%sin the way of implicit "2059"directory rename(s) putting the following "2060"path(s) there:%s."),2061 new_path, collision_paths.buf);2062 clean =0;2063}else if(collision_ent->source_files.nr >1) {2064 collision_ent->reported_already =1;2065strbuf_add_separated_string_list(&collision_paths,", ",2066&collision_ent->source_files);2067output(opt,1,_("CONFLICT (implicit dir rename): Cannot map "2068"more than one path to%s; implicit directory "2069"renames tried to put these paths there:%s"),2070 new_path, collision_paths.buf);2071 clean =0;2072}20732074/* Free memory we no longer need */2075strbuf_release(&collision_paths);2076if(!clean && new_path) {2077free(new_path);2078return NULL;2079}20802081return new_path;2082}20832084/*2085 * There are a couple things we want to do at the directory level:2086 * 1. Check for both sides renaming to the same thing, in order to avoid2087 * implicit renaming of files that should be left in place. (See2088 * testcase 6b in t6043 for details.)2089 * 2. Prune directory renames if there are still files left in the2090 * the original directory. These represent a partial directory rename,2091 * i.e. a rename where only some of the files within the directory2092 * were renamed elsewhere. (Technically, this could be done earlier2093 * in get_directory_renames(), except that would prevent us from2094 * doing the previous check and thus failing testcase 6b.)2095 * 3. Check for rename/rename(1to2) conflicts (at the directory level).2096 * In the future, we could potentially record this info as well and2097 * omit reporting rename/rename(1to2) conflicts for each path within2098 * the affected directories, thus cleaning up the merge output.2099 * NOTE: We do NOT check for rename/rename(2to1) conflicts at the2100 * directory level, because merging directories is fine. If it2101 * causes conflicts for files within those merged directories, then2102 * that should be detected at the individual path level.2103 */2104static voidhandle_directory_level_conflicts(struct merge_options *opt,2105struct hashmap *dir_re_head,2106struct tree *head,2107struct hashmap *dir_re_merge,2108struct tree *merge)2109{2110struct hashmap_iter iter;2111struct dir_rename_entry *head_ent;2112struct dir_rename_entry *merge_ent;21132114struct string_list remove_from_head = STRING_LIST_INIT_NODUP;2115struct string_list remove_from_merge = STRING_LIST_INIT_NODUP;21162117hashmap_iter_init(dir_re_head, &iter);2118while((head_ent =hashmap_iter_next(&iter))) {2119 merge_ent =dir_rename_find_entry(dir_re_merge, head_ent->dir);2120if(merge_ent &&2121!head_ent->non_unique_new_dir &&2122!merge_ent->non_unique_new_dir &&2123!strbuf_cmp(&head_ent->new_dir, &merge_ent->new_dir)) {2124/* 1. Renamed identically; remove it from both sides */2125string_list_append(&remove_from_head,2126 head_ent->dir)->util = head_ent;2127strbuf_release(&head_ent->new_dir);2128string_list_append(&remove_from_merge,2129 merge_ent->dir)->util = merge_ent;2130strbuf_release(&merge_ent->new_dir);2131}else if(tree_has_path(head, head_ent->dir)) {2132/* 2. This wasn't a directory rename after all */2133string_list_append(&remove_from_head,2134 head_ent->dir)->util = head_ent;2135strbuf_release(&head_ent->new_dir);2136}2137}21382139remove_hashmap_entries(dir_re_head, &remove_from_head);2140remove_hashmap_entries(dir_re_merge, &remove_from_merge);21412142hashmap_iter_init(dir_re_merge, &iter);2143while((merge_ent =hashmap_iter_next(&iter))) {2144 head_ent =dir_rename_find_entry(dir_re_head, merge_ent->dir);2145if(tree_has_path(merge, merge_ent->dir)) {2146/* 2. This wasn't a directory rename after all */2147string_list_append(&remove_from_merge,2148 merge_ent->dir)->util = merge_ent;2149}else if(head_ent &&2150!head_ent->non_unique_new_dir &&2151!merge_ent->non_unique_new_dir) {2152/* 3. rename/rename(1to2) */2153/*2154 * We can assume it's not rename/rename(1to1) because2155 * that was case (1), already checked above. So we2156 * know that head_ent->new_dir and merge_ent->new_dir2157 * are different strings.2158 */2159output(opt,1,_("CONFLICT (rename/rename): "2160"Rename directory%s->%sin%s. "2161"Rename directory%s->%sin%s"),2162 head_ent->dir, head_ent->new_dir.buf, opt->branch1,2163 head_ent->dir, merge_ent->new_dir.buf, opt->branch2);2164string_list_append(&remove_from_head,2165 head_ent->dir)->util = head_ent;2166strbuf_release(&head_ent->new_dir);2167string_list_append(&remove_from_merge,2168 merge_ent->dir)->util = merge_ent;2169strbuf_release(&merge_ent->new_dir);2170}2171}21722173remove_hashmap_entries(dir_re_head, &remove_from_head);2174remove_hashmap_entries(dir_re_merge, &remove_from_merge);2175}21762177static struct hashmap *get_directory_renames(struct diff_queue_struct *pairs)2178{2179struct hashmap *dir_renames;2180struct hashmap_iter iter;2181struct dir_rename_entry *entry;2182int i;21832184/*2185 * Typically, we think of a directory rename as all files from a2186 * certain directory being moved to a target directory. However,2187 * what if someone first moved two files from the original2188 * directory in one commit, and then renamed the directory2189 * somewhere else in a later commit? At merge time, we just know2190 * that files from the original directory went to two different2191 * places, and that the bulk of them ended up in the same place.2192 * We want each directory rename to represent where the bulk of the2193 * files from that directory end up; this function exists to find2194 * where the bulk of the files went.2195 *2196 * The first loop below simply iterates through the list of file2197 * renames, finding out how often each directory rename pair2198 * possibility occurs.2199 */2200 dir_renames =xmalloc(sizeof(*dir_renames));2201dir_rename_init(dir_renames);2202for(i =0; i < pairs->nr; ++i) {2203struct string_list_item *item;2204int*count;2205struct diff_filepair *pair = pairs->queue[i];2206char*old_dir, *new_dir;22072208/* File not part of directory rename if it wasn't renamed */2209if(pair->status !='R')2210continue;22112212get_renamed_dir_portion(pair->one->path, pair->two->path,2213&old_dir, &new_dir);2214if(!old_dir)2215/* Directory didn't change at all; ignore this one. */2216continue;22172218 entry =dir_rename_find_entry(dir_renames, old_dir);2219if(!entry) {2220 entry =xmalloc(sizeof(*entry));2221dir_rename_entry_init(entry, old_dir);2222hashmap_put(dir_renames, entry);2223}else{2224free(old_dir);2225}2226 item =string_list_lookup(&entry->possible_new_dirs, new_dir);2227if(!item) {2228 item =string_list_insert(&entry->possible_new_dirs,2229 new_dir);2230 item->util =xcalloc(1,sizeof(int));2231}else{2232free(new_dir);2233}2234 count = item->util;2235*count +=1;2236}22372238/*2239 * For each directory with files moved out of it, we find out which2240 * target directory received the most files so we can declare it to2241 * be the "winning" target location for the directory rename. This2242 * winner gets recorded in new_dir. If there is no winner2243 * (multiple target directories received the same number of files),2244 * we set non_unique_new_dir. Once we've determined the winner (or2245 * that there is no winner), we no longer need possible_new_dirs.2246 */2247hashmap_iter_init(dir_renames, &iter);2248while((entry =hashmap_iter_next(&iter))) {2249int max =0;2250int bad_max =0;2251char*best = NULL;22522253for(i =0; i < entry->possible_new_dirs.nr; i++) {2254int*count = entry->possible_new_dirs.items[i].util;22552256if(*count == max)2257 bad_max = max;2258else if(*count > max) {2259 max = *count;2260 best = entry->possible_new_dirs.items[i].string;2261}2262}2263if(bad_max == max)2264 entry->non_unique_new_dir =1;2265else{2266assert(entry->new_dir.len ==0);2267strbuf_addstr(&entry->new_dir, best);2268}2269/*2270 * The relevant directory sub-portion of the original full2271 * filepaths were xstrndup'ed before inserting into2272 * possible_new_dirs, and instead of manually iterating the2273 * list and free'ing each, just lie and tell2274 * possible_new_dirs that it did the strdup'ing so that it2275 * will free them for us.2276 */2277 entry->possible_new_dirs.strdup_strings =1;2278string_list_clear(&entry->possible_new_dirs,1);2279}22802281return dir_renames;2282}22832284static struct dir_rename_entry *check_dir_renamed(const char*path,2285struct hashmap *dir_renames)2286{2287char*temp =xstrdup(path);2288char*end;2289struct dir_rename_entry *entry = NULL;22902291while((end =strrchr(temp,'/'))) {2292*end ='\0';2293 entry =dir_rename_find_entry(dir_renames, temp);2294if(entry)2295break;2296}2297free(temp);2298return entry;2299}23002301static voidcompute_collisions(struct hashmap *collisions,2302struct hashmap *dir_renames,2303struct diff_queue_struct *pairs)2304{2305int i;23062307/*2308 * Multiple files can be mapped to the same path due to directory2309 * renames done by the other side of history. Since that other2310 * side of history could have merged multiple directories into one,2311 * if our side of history added the same file basename to each of2312 * those directories, then all N of them would get implicitly2313 * renamed by the directory rename detection into the same path,2314 * and we'd get an add/add/.../add conflict, and all those adds2315 * from *this* side of history. This is not representable in the2316 * index, and users aren't going to easily be able to make sense of2317 * it. So we need to provide a good warning about what's2318 * happening, and fall back to no-directory-rename detection2319 * behavior for those paths.2320 *2321 * See testcases 9e and all of section 5 from t6043 for examples.2322 */2323collision_init(collisions);23242325for(i =0; i < pairs->nr; ++i) {2326struct dir_rename_entry *dir_rename_ent;2327struct collision_entry *collision_ent;2328char*new_path;2329struct diff_filepair *pair = pairs->queue[i];23302331if(pair->status !='A'&& pair->status !='R')2332continue;2333 dir_rename_ent =check_dir_renamed(pair->two->path,2334 dir_renames);2335if(!dir_rename_ent)2336continue;23372338 new_path =apply_dir_rename(dir_rename_ent, pair->two->path);2339if(!new_path)2340/*2341 * dir_rename_ent->non_unique_new_path is true, which2342 * means there is no directory rename for us to use,2343 * which means it won't cause us any additional2344 * collisions.2345 */2346continue;2347 collision_ent =collision_find_entry(collisions, new_path);2348if(!collision_ent) {2349 collision_ent =xcalloc(1,2350sizeof(struct collision_entry));2351hashmap_entry_init(collision_ent,strhash(new_path));2352hashmap_put(collisions, collision_ent);2353 collision_ent->target_file = new_path;2354}else{2355free(new_path);2356}2357string_list_insert(&collision_ent->source_files,2358 pair->two->path);2359}2360}23612362static char*check_for_directory_rename(struct merge_options *opt,2363const char*path,2364struct tree *tree,2365struct hashmap *dir_renames,2366struct hashmap *dir_rename_exclusions,2367struct hashmap *collisions,2368int*clean_merge)2369{2370char*new_path = NULL;2371struct dir_rename_entry *entry =check_dir_renamed(path, dir_renames);2372struct dir_rename_entry *oentry = NULL;23732374if(!entry)2375return new_path;23762377/*2378 * This next part is a little weird. We do not want to do an2379 * implicit rename into a directory we renamed on our side, because2380 * that will result in a spurious rename/rename(1to2) conflict. An2381 * example:2382 * Base commit: dumbdir/afile, otherdir/bfile2383 * Side 1: smrtdir/afile, otherdir/bfile2384 * Side 2: dumbdir/afile, dumbdir/bfile2385 * Here, while working on Side 1, we could notice that otherdir was2386 * renamed/merged to dumbdir, and change the diff_filepair for2387 * otherdir/bfile into a rename into dumbdir/bfile. However, Side2388 * 2 will notice the rename from dumbdir to smrtdir, and do the2389 * transitive rename to move it from dumbdir/bfile to2390 * smrtdir/bfile. That gives us bfile in dumbdir vs being in2391 * smrtdir, a rename/rename(1to2) conflict. We really just want2392 * the file to end up in smrtdir. And the way to achieve that is2393 * to not let Side1 do the rename to dumbdir, since we know that is2394 * the source of one of our directory renames.2395 *2396 * That's why oentry and dir_rename_exclusions is here.2397 *2398 * As it turns out, this also prevents N-way transient rename2399 * confusion; See testcases 9c and 9d of t6043.2400 */2401 oentry =dir_rename_find_entry(dir_rename_exclusions, entry->new_dir.buf);2402if(oentry) {2403output(opt,1,_("WARNING: Avoiding applying%s->%srename "2404"to%s, because%sitself was renamed."),2405 entry->dir, entry->new_dir.buf, path, entry->new_dir.buf);2406}else{2407 new_path =handle_path_level_conflicts(opt, path, entry,2408 collisions, tree);2409*clean_merge &= (new_path != NULL);2410}24112412return new_path;2413}24142415static voidapply_directory_rename_modifications(struct merge_options *opt,2416struct diff_filepair *pair,2417char*new_path,2418struct rename *re,2419struct tree *tree,2420struct tree *o_tree,2421struct tree *a_tree,2422struct tree *b_tree,2423struct string_list *entries)2424{2425struct string_list_item *item;2426int stage = (tree == a_tree ?2:3);2427int update_wd;24282429/*2430 * In all cases where we can do directory rename detection,2431 * unpack_trees() will have read pair->two->path into the2432 * index and the working copy. We need to remove it so that2433 * we can instead place it at new_path. It is guaranteed to2434 * not be untracked (unpack_trees() would have errored out2435 * saying the file would have been overwritten), but it might2436 * be dirty, though.2437 */2438 update_wd = !was_dirty(opt, pair->two->path);2439if(!update_wd)2440output(opt,1,_("Refusing to lose dirty file at%s"),2441 pair->two->path);2442remove_file(opt,1, pair->two->path, !update_wd);24432444/* Find or create a new re->dst_entry */2445 item =string_list_lookup(entries, new_path);2446if(item) {2447/*2448 * Since we're renaming on this side of history, and it's2449 * due to a directory rename on the other side of history2450 * (which we only allow when the directory in question no2451 * longer exists on the other side of history), the2452 * original entry for re->dst_entry is no longer2453 * necessary...2454 */2455 re->dst_entry->processed =1;24562457/*2458 * ...because we'll be using this new one.2459 */2460 re->dst_entry = item->util;2461}else{2462/*2463 * re->dst_entry is for the before-dir-rename path, and we2464 * need it to hold information for the after-dir-rename2465 * path. Before creating a new entry, we need to mark the2466 * old one as unnecessary (...unless it is shared by2467 * src_entry, i.e. this didn't use to be a rename, in which2468 * case we can just allow the normal processing to happen2469 * for it).2470 */2471if(pair->status =='R')2472 re->dst_entry->processed =1;24732474 re->dst_entry =insert_stage_data(new_path,2475 o_tree, a_tree, b_tree,2476 entries);2477 item =string_list_insert(entries, new_path);2478 item->util = re->dst_entry;2479}24802481/*2482 * Update the stage_data with the information about the path we are2483 * moving into place. That slot will be empty and available for us2484 * to write to because of the collision checks in2485 * handle_path_level_conflicts(). In other words,2486 * re->dst_entry->stages[stage].oid will be the null_oid, so it's2487 * open for us to write to.2488 *2489 * It may be tempting to actually update the index at this point as2490 * well, using update_stages_for_stage_data(), but as per the big2491 * "NOTE" in update_stages(), doing so will modify the current2492 * in-memory index which will break calls to would_lose_untracked()2493 * that we need to make. Instead, we need to just make sure that2494 * the various handle_rename_*() functions update the index2495 * explicitly rather than relying on unpack_trees() to have done it.2496 */2497get_tree_entry(&tree->object.oid,2498 pair->two->path,2499&re->dst_entry->stages[stage].oid,2500&re->dst_entry->stages[stage].mode);25012502/*2503 * Record the original change status (or 'type' of change). If it2504 * was originally an add ('A'), this lets us differentiate later2505 * between a RENAME_DELETE conflict and RENAME_VIA_DIR (they2506 * otherwise look the same). If it was originally a rename ('R'),2507 * this lets us remember and report accurately about the transitive2508 * renaming that occurred via the directory rename detection. Also,2509 * record the original destination name.2510 */2511 re->dir_rename_original_type = pair->status;2512 re->dir_rename_original_dest = pair->two->path;25132514/*2515 * We don't actually look at pair->status again, but it seems2516 * pedagogically correct to adjust it.2517 */2518 pair->status ='R';25192520/*2521 * Finally, record the new location.2522 */2523 pair->two->path = new_path;2524}25252526/*2527 * Get information of all renames which occurred in 'pairs', making use of2528 * any implicit directory renames inferred from the other side of history.2529 * We need the three trees in the merge ('o_tree', 'a_tree' and 'b_tree')2530 * to be able to associate the correct cache entries with the rename2531 * information; tree is always equal to either a_tree or b_tree.2532 */2533static struct string_list *get_renames(struct merge_options *opt,2534const char*branch,2535struct diff_queue_struct *pairs,2536struct hashmap *dir_renames,2537struct hashmap *dir_rename_exclusions,2538struct tree *tree,2539struct tree *o_tree,2540struct tree *a_tree,2541struct tree *b_tree,2542struct string_list *entries,2543int*clean_merge)2544{2545int i;2546struct hashmap collisions;2547struct hashmap_iter iter;2548struct collision_entry *e;2549struct string_list *renames;25502551compute_collisions(&collisions, dir_renames, pairs);2552 renames =xcalloc(1,sizeof(struct string_list));25532554for(i =0; i < pairs->nr; ++i) {2555struct string_list_item *item;2556struct rename *re;2557struct diff_filepair *pair = pairs->queue[i];2558char*new_path;/* non-NULL only with directory renames */25592560if(pair->status !='A'&& pair->status !='R') {2561diff_free_filepair(pair);2562continue;2563}2564 new_path =check_for_directory_rename(opt, pair->two->path, tree,2565 dir_renames,2566 dir_rename_exclusions,2567&collisions,2568 clean_merge);2569if(pair->status !='R'&& !new_path) {2570diff_free_filepair(pair);2571continue;2572}25732574 re =xmalloc(sizeof(*re));2575 re->processed =0;2576 re->pair = pair;2577 re->branch = branch;2578 re->dir_rename_original_type ='\0';2579 re->dir_rename_original_dest = NULL;2580 item =string_list_lookup(entries, re->pair->one->path);2581if(!item)2582 re->src_entry =insert_stage_data(re->pair->one->path,2583 o_tree, a_tree, b_tree, entries);2584else2585 re->src_entry = item->util;25862587 item =string_list_lookup(entries, re->pair->two->path);2588if(!item)2589 re->dst_entry =insert_stage_data(re->pair->two->path,2590 o_tree, a_tree, b_tree, entries);2591else2592 re->dst_entry = item->util;2593 item =string_list_insert(renames, pair->one->path);2594 item->util = re;2595if(new_path)2596apply_directory_rename_modifications(opt, pair, new_path,2597 re, tree, o_tree,2598 a_tree, b_tree,2599 entries);2600}26012602hashmap_iter_init(&collisions, &iter);2603while((e =hashmap_iter_next(&iter))) {2604free(e->target_file);2605string_list_clear(&e->source_files,0);2606}2607hashmap_free(&collisions,1);2608return renames;2609}26102611static intprocess_renames(struct merge_options *opt,2612struct string_list *a_renames,2613struct string_list *b_renames)2614{2615int clean_merge =1, i, j;2616struct string_list a_by_dst = STRING_LIST_INIT_NODUP;2617struct string_list b_by_dst = STRING_LIST_INIT_NODUP;2618const struct rename *sre;26192620for(i =0; i < a_renames->nr; i++) {2621 sre = a_renames->items[i].util;2622string_list_insert(&a_by_dst, sre->pair->two->path)->util2623= (void*)sre;2624}2625for(i =0; i < b_renames->nr; i++) {2626 sre = b_renames->items[i].util;2627string_list_insert(&b_by_dst, sre->pair->two->path)->util2628= (void*)sre;2629}26302631for(i =0, j =0; i < a_renames->nr || j < b_renames->nr;) {2632struct string_list *renames1, *renames2Dst;2633struct rename *ren1 = NULL, *ren2 = NULL;2634const char*ren1_src, *ren1_dst;2635struct string_list_item *lookup;26362637if(i >= a_renames->nr) {2638 ren2 = b_renames->items[j++].util;2639}else if(j >= b_renames->nr) {2640 ren1 = a_renames->items[i++].util;2641}else{2642int compare =strcmp(a_renames->items[i].string,2643 b_renames->items[j].string);2644if(compare <=0)2645 ren1 = a_renames->items[i++].util;2646if(compare >=0)2647 ren2 = b_renames->items[j++].util;2648}26492650/* TODO: refactor, so that 1/2 are not needed */2651if(ren1) {2652 renames1 = a_renames;2653 renames2Dst = &b_by_dst;2654}else{2655 renames1 = b_renames;2656 renames2Dst = &a_by_dst;2657SWAP(ren2, ren1);2658}26592660if(ren1->processed)2661continue;2662 ren1->processed =1;2663 ren1->dst_entry->processed =1;2664/* BUG: We should only mark src_entry as processed if we2665 * are not dealing with a rename + add-source case.2666 */2667 ren1->src_entry->processed =1;26682669 ren1_src = ren1->pair->one->path;2670 ren1_dst = ren1->pair->two->path;26712672if(ren2) {2673/* One file renamed on both sides */2674const char*ren2_src = ren2->pair->one->path;2675const char*ren2_dst = ren2->pair->two->path;2676enum rename_type rename_type;2677if(strcmp(ren1_src, ren2_src) !=0)2678BUG("ren1_src != ren2_src");2679 ren2->dst_entry->processed =1;2680 ren2->processed =1;2681if(strcmp(ren1_dst, ren2_dst) !=0) {2682 rename_type = RENAME_ONE_FILE_TO_TWO;2683 clean_merge =0;2684}else{2685 rename_type = RENAME_ONE_FILE_TO_ONE;2686/* BUG: We should only remove ren1_src in2687 * the base stage (think of rename +2688 * add-source cases).2689 */2690remove_file(opt,1, ren1_src,1);2691update_entry(ren1->dst_entry,2692 ren1->pair->one,2693 ren1->pair->two,2694 ren2->pair->two);2695}2696setup_rename_conflict_info(rename_type, opt, ren1, ren2);2697}else if((lookup =string_list_lookup(renames2Dst, ren1_dst))) {2698/* Two different files renamed to the same thing */2699char*ren2_dst;2700 ren2 = lookup->util;2701 ren2_dst = ren2->pair->two->path;2702if(strcmp(ren1_dst, ren2_dst) !=0)2703BUG("ren1_dst != ren2_dst");27042705 clean_merge =0;2706 ren2->processed =1;2707/*2708 * BUG: We should only mark src_entry as processed2709 * if we are not dealing with a rename + add-source2710 * case.2711 */2712 ren2->src_entry->processed =1;27132714setup_rename_conflict_info(RENAME_TWO_FILES_TO_ONE,2715 opt, ren1, ren2);2716}else{2717/* Renamed in 1, maybe changed in 2 */2718/* we only use sha1 and mode of these */2719struct diff_filespec src_other, dst_other;2720int try_merge;27212722/*2723 * unpack_trees loads entries from common-commit2724 * into stage 1, from head-commit into stage 2, and2725 * from merge-commit into stage 3. We keep track2726 * of which side corresponds to the rename.2727 */2728int renamed_stage = a_renames == renames1 ?2:3;2729int other_stage = a_renames == renames1 ?3:2;27302731/* BUG: We should only remove ren1_src in the base2732 * stage and in other_stage (think of rename +2733 * add-source case).2734 */2735remove_file(opt,1, ren1_src,2736 renamed_stage ==2|| !was_tracked(opt, ren1_src));27372738oidcpy(&src_other.oid,2739&ren1->src_entry->stages[other_stage].oid);2740 src_other.mode = ren1->src_entry->stages[other_stage].mode;2741oidcpy(&dst_other.oid,2742&ren1->dst_entry->stages[other_stage].oid);2743 dst_other.mode = ren1->dst_entry->stages[other_stage].mode;2744 try_merge =0;27452746if(oid_eq(&src_other.oid, &null_oid) &&2747 ren1->dir_rename_original_type =='A') {2748setup_rename_conflict_info(RENAME_VIA_DIR,2749 opt, ren1, NULL);2750}else if(oid_eq(&src_other.oid, &null_oid)) {2751setup_rename_conflict_info(RENAME_DELETE,2752 opt, ren1, NULL);2753}else if((dst_other.mode == ren1->pair->two->mode) &&2754oid_eq(&dst_other.oid, &ren1->pair->two->oid)) {2755/*2756 * Added file on the other side identical to2757 * the file being renamed: clean merge.2758 * Also, there is no need to overwrite the2759 * file already in the working copy, so call2760 * update_file_flags() instead of2761 * update_file().2762 */2763if(update_file_flags(opt,2764 ren1->pair->two,2765 ren1_dst,27661,/* update_cache */27670/* update_wd */))2768 clean_merge = -1;2769}else if(!oid_eq(&dst_other.oid, &null_oid)) {2770/*2771 * Probably not a clean merge, but it's2772 * premature to set clean_merge to 0 here,2773 * because if the rename merges cleanly and2774 * the merge exactly matches the newly added2775 * file, then the merge will be clean.2776 */2777setup_rename_conflict_info(RENAME_ADD,2778 opt, ren1, NULL);2779}else2780 try_merge =1;27812782if(clean_merge <0)2783goto cleanup_and_return;2784if(try_merge) {2785struct diff_filespec *o, *a, *b;2786 src_other.path = (char*)ren1_src;27872788 o = ren1->pair->one;2789if(a_renames == renames1) {2790 a = ren1->pair->two;2791 b = &src_other;2792}else{2793 b = ren1->pair->two;2794 a = &src_other;2795}2796update_entry(ren1->dst_entry, o, a, b);2797setup_rename_conflict_info(RENAME_NORMAL,2798 opt, ren1, NULL);2799}2800}2801}2802cleanup_and_return:2803string_list_clear(&a_by_dst,0);2804string_list_clear(&b_by_dst,0);28052806return clean_merge;2807}28082809struct rename_info {2810struct string_list *head_renames;2811struct string_list *merge_renames;2812};28132814static voidinitial_cleanup_rename(struct diff_queue_struct *pairs,2815struct hashmap *dir_renames)2816{2817struct hashmap_iter iter;2818struct dir_rename_entry *e;28192820hashmap_iter_init(dir_renames, &iter);2821while((e =hashmap_iter_next(&iter))) {2822free(e->dir);2823strbuf_release(&e->new_dir);2824/* possible_new_dirs already cleared in get_directory_renames */2825}2826hashmap_free(dir_renames,1);2827free(dir_renames);28282829free(pairs->queue);2830free(pairs);2831}28322833static intdetect_and_process_renames(struct merge_options *opt,2834struct tree *common,2835struct tree *head,2836struct tree *merge,2837struct string_list *entries,2838struct rename_info *ri)2839{2840struct diff_queue_struct *head_pairs, *merge_pairs;2841struct hashmap *dir_re_head, *dir_re_merge;2842int clean =1;28432844 ri->head_renames = NULL;2845 ri->merge_renames = NULL;28462847if(!merge_detect_rename(opt))2848return1;28492850 head_pairs =get_diffpairs(opt, common, head);2851 merge_pairs =get_diffpairs(opt, common, merge);28522853if(opt->detect_directory_renames) {2854 dir_re_head =get_directory_renames(head_pairs);2855 dir_re_merge =get_directory_renames(merge_pairs);28562857handle_directory_level_conflicts(opt,2858 dir_re_head, head,2859 dir_re_merge, merge);2860}else{2861 dir_re_head =xmalloc(sizeof(*dir_re_head));2862 dir_re_merge =xmalloc(sizeof(*dir_re_merge));2863dir_rename_init(dir_re_head);2864dir_rename_init(dir_re_merge);2865}28662867 ri->head_renames =get_renames(opt, opt->branch1, head_pairs,2868 dir_re_merge, dir_re_head, head,2869 common, head, merge, entries,2870&clean);2871if(clean <0)2872goto cleanup;2873 ri->merge_renames =get_renames(opt, opt->branch2, merge_pairs,2874 dir_re_head, dir_re_merge, merge,2875 common, head, merge, entries,2876&clean);2877if(clean <0)2878goto cleanup;2879 clean &=process_renames(opt, ri->head_renames, ri->merge_renames);28802881cleanup:2882/*2883 * Some cleanup is deferred until cleanup_renames() because the2884 * data structures are still needed and referenced in2885 * process_entry(). But there are a few things we can free now.2886 */2887initial_cleanup_rename(head_pairs, dir_re_head);2888initial_cleanup_rename(merge_pairs, dir_re_merge);28892890return clean;2891}28922893static voidfinal_cleanup_rename(struct string_list *rename)2894{2895const struct rename *re;2896int i;28972898if(rename == NULL)2899return;29002901for(i =0; i < rename->nr; i++) {2902 re = rename->items[i].util;2903diff_free_filepair(re->pair);2904}2905string_list_clear(rename,1);2906free(rename);2907}29082909static voidfinal_cleanup_renames(struct rename_info *re_info)2910{2911final_cleanup_rename(re_info->head_renames);2912final_cleanup_rename(re_info->merge_renames);2913}29142915static intread_oid_strbuf(struct merge_options *opt,2916const struct object_id *oid,2917struct strbuf *dst)2918{2919void*buf;2920enum object_type type;2921unsigned long size;2922 buf =read_object_file(oid, &type, &size);2923if(!buf)2924returnerr(opt,_("cannot read object%s"),oid_to_hex(oid));2925if(type != OBJ_BLOB) {2926free(buf);2927returnerr(opt,_("object%sis not a blob"),oid_to_hex(oid));2928}2929strbuf_attach(dst, buf, size, size +1);2930return0;2931}29322933static intblob_unchanged(struct merge_options *opt,2934const struct diff_filespec *o,2935const struct diff_filespec *a,2936int renormalize,const char*path)2937{2938struct strbuf obuf = STRBUF_INIT;2939struct strbuf abuf = STRBUF_INIT;2940int ret =0;/* assume changed for safety */2941const struct index_state *idx = opt->repo->index;29422943if(a->mode != o->mode)2944return0;2945if(oid_eq(&o->oid, &a->oid))2946return1;2947if(!renormalize)2948return0;29492950if(read_oid_strbuf(opt, &o->oid, &obuf) ||2951read_oid_strbuf(opt, &a->oid, &abuf))2952goto error_return;2953/*2954 * Note: binary | is used so that both renormalizations are2955 * performed. Comparison can be skipped if both files are2956 * unchanged since their sha1s have already been compared.2957 */2958if(renormalize_buffer(idx, path, obuf.buf, obuf.len, &obuf) |2959renormalize_buffer(idx, path, abuf.buf, abuf.len, &abuf))2960 ret = (obuf.len == abuf.len && !memcmp(obuf.buf, abuf.buf, obuf.len));29612962error_return:2963strbuf_release(&obuf);2964strbuf_release(&abuf);2965return ret;2966}29672968static inthandle_modify_delete(struct merge_options *opt,2969const char*path,2970const struct diff_filespec *o,2971const struct diff_filespec *a,2972const struct diff_filespec *b)2973{2974const char*modify_branch, *delete_branch;2975const struct diff_filespec *changed;29762977if(is_valid(a)) {2978 modify_branch = opt->branch1;2979 delete_branch = opt->branch2;2980 changed = a;2981}else{2982 modify_branch = opt->branch2;2983 delete_branch = opt->branch1;2984 changed = b;2985}29862987returnhandle_change_delete(opt,2988 path, NULL,2989 o, changed,2990 modify_branch, delete_branch,2991_("modify"),_("modified"));2992}29932994static inthandle_content_merge(struct merge_file_info *mfi,2995struct merge_options *opt,2996const char*path,2997int is_dirty,2998const struct diff_filespec *o,2999const struct diff_filespec *a,3000const struct diff_filespec *b,3001struct rename_conflict_info *ci)3002{3003const char*reason =_("content");3004unsigned df_conflict_remains =0;30053006if(!is_valid(o))3007 reason =_("add/add");30083009assert(o->path && a->path && b->path);3010if(ci &&dir_in_way(opt->repo->index, path, !opt->call_depth,3011S_ISGITLINK(ci->ren1->pair->two->mode)))3012 df_conflict_remains =1;30133014if(merge_mode_and_contents(opt, o, a, b, path,3015 opt->branch1, opt->branch2,3016 opt->call_depth *2, mfi))3017return-1;30183019/*3020 * We can skip updating the working tree file iff:3021 * a) The merge is clean3022 * b) The merge matches what was in HEAD (content, mode, pathname)3023 * c) The target path is usable (i.e. not involved in D/F conflict)3024 */3025if(mfi->clean &&was_tracked_and_matches(opt, path, &mfi->blob) &&3026!df_conflict_remains) {3027int pos;3028struct cache_entry *ce;30293030output(opt,3,_("Skipped%s(merged same as existing)"), path);3031if(add_cacheinfo(opt, &mfi->blob, path,30320, (!opt->call_depth && !is_dirty),0))3033return-1;3034/*3035 * However, add_cacheinfo() will delete the old cache entry3036 * and add a new one. We need to copy over any skip_worktree3037 * flag to avoid making the file appear as if it were3038 * deleted by the user.3039 */3040 pos =index_name_pos(&opt->orig_index, path,strlen(path));3041 ce = opt->orig_index.cache[pos];3042if(ce_skip_worktree(ce)) {3043 pos =index_name_pos(opt->repo->index, path,strlen(path));3044 ce = opt->repo->index->cache[pos];3045 ce->ce_flags |= CE_SKIP_WORKTREE;3046}3047return mfi->clean;3048}30493050if(!mfi->clean) {3051if(S_ISGITLINK(mfi->blob.mode))3052 reason =_("submodule");3053output(opt,1,_("CONFLICT (%s): Merge conflict in%s"),3054 reason, path);3055if(ci && !df_conflict_remains)3056if(update_stages(opt, path, o, a, b))3057return-1;3058}30593060if(df_conflict_remains || is_dirty) {3061char*new_path;3062if(opt->call_depth) {3063remove_file_from_index(opt->repo->index, path);3064}else{3065if(!mfi->clean) {3066if(update_stages(opt, path, o, a, b))3067return-1;3068}else{3069int file_from_stage2 =was_tracked(opt, path);30703071if(update_stages(opt, path, NULL,3072 file_from_stage2 ? &mfi->blob : NULL,3073 file_from_stage2 ? NULL : &mfi->blob))3074return-1;3075}30763077}3078 new_path =unique_path(opt, path, ci->ren1->branch);3079if(is_dirty) {3080output(opt,1,_("Refusing to lose dirty file at%s"),3081 path);3082}3083output(opt,1,_("Adding as%sinstead"), new_path);3084if(update_file(opt,0, &mfi->blob, new_path)) {3085free(new_path);3086return-1;3087}3088free(new_path);3089 mfi->clean =0;3090}else if(update_file(opt, mfi->clean, &mfi->blob, path))3091return-1;3092return!is_dirty && mfi->clean;3093}30943095static inthandle_rename_normal(struct merge_options *opt,3096const char*path,3097const struct diff_filespec *o,3098const struct diff_filespec *a,3099const struct diff_filespec *b,3100struct rename_conflict_info *ci)3101{3102struct rename *ren = ci->ren1;3103struct merge_file_info mfi;3104int clean;3105int side = (ren->branch == opt->branch1 ?2:3);31063107/* Merge the content and write it out */3108 clean =handle_content_merge(&mfi, opt, path,was_dirty(opt, path),3109 o, a, b, ci);31103111if(clean && opt->detect_directory_renames ==1&&3112 ren->dir_rename_original_dest) {3113if(update_stages(opt, path,3114 NULL,3115 side ==2? &mfi.blob : NULL,3116 side ==2? NULL : &mfi.blob))3117return-1;3118 clean =0;/* not clean, but conflicted */3119}3120return clean;3121}31223123static voiddir_rename_warning(const char*msg,3124int is_add,3125int clean,3126struct merge_options *opt,3127struct rename *ren)3128{3129const char*other_branch;3130 other_branch = (ren->branch == opt->branch1 ?3131 opt->branch2 : opt->branch1);3132if(is_add) {3133output(opt, clean ?2:1, msg,3134 ren->pair->one->path, ren->branch,3135 other_branch, ren->pair->two->path);3136return;3137}3138output(opt, clean ?2:1, msg,3139 ren->pair->one->path, ren->dir_rename_original_dest, ren->branch,3140 other_branch, ren->pair->two->path);3141}3142static intwarn_about_dir_renamed_entries(struct merge_options *opt,3143struct rename *ren)3144{3145const char*msg;3146int clean =1, is_add;31473148if(!ren)3149return clean;31503151/* Return early if ren was not affected/created by a directory rename */3152if(!ren->dir_rename_original_dest)3153return clean;31543155/* Sanity checks */3156assert(opt->detect_directory_renames >0);3157assert(ren->dir_rename_original_type =='A'||3158 ren->dir_rename_original_type =='R');31593160/* Check whether to treat directory renames as a conflict */3161 clean = (opt->detect_directory_renames ==2);31623163 is_add = (ren->dir_rename_original_type =='A');3164if(ren->dir_rename_original_type =='A'&& clean) {3165 msg =_("Path updated:%sadded in%sinside a "3166"directory that was renamed in%s; moving it to%s.");3167}else if(ren->dir_rename_original_type =='A'&& !clean) {3168 msg =_("CONFLICT (file location):%sadded in%s"3169"inside a directory that was renamed in%s, "3170"suggesting it should perhaps be moved to%s.");3171}else if(ren->dir_rename_original_type =='R'&& clean) {3172 msg =_("Path updated:%srenamed to%sin%s, inside a "3173"directory that was renamed in%s; moving it to%s.");3174}else if(ren->dir_rename_original_type =='R'&& !clean) {3175 msg =_("CONFLICT (file location):%srenamed to%sin%s, "3176"inside a directory that was renamed in%s, "3177"suggesting it should perhaps be moved to%s.");3178}else{3179BUG("Impossible dir_rename_original_type/clean combination");3180}3181dir_rename_warning(msg, is_add, clean, opt, ren);31823183return clean;3184}31853186/* Per entry merge function */3187static intprocess_entry(struct merge_options *opt,3188const char*path,struct stage_data *entry)3189{3190int clean_merge =1;3191int normalize = opt->renormalize;31923193struct diff_filespec *o = &entry->stages[1];3194struct diff_filespec *a = &entry->stages[2];3195struct diff_filespec *b = &entry->stages[3];3196int o_valid =is_valid(o);3197int a_valid =is_valid(a);3198int b_valid =is_valid(b);3199 o->path = a->path = b->path = (char*)path;32003201 entry->processed =1;3202if(entry->rename_conflict_info) {3203struct rename_conflict_info *ci = entry->rename_conflict_info;3204struct diff_filespec *temp;3205int path_clean;32063207 path_clean =warn_about_dir_renamed_entries(opt, ci->ren1);3208 path_clean &=warn_about_dir_renamed_entries(opt, ci->ren2);32093210/*3211 * For cases with a single rename, {o,a,b}->path have all been3212 * set to the rename target path; we need to set two of these3213 * back to the rename source.3214 * For rename/rename conflicts, we'll manually fix paths below.3215 */3216 temp = (opt->branch1 == ci->ren1->branch) ? b : a;3217 o->path = temp->path = ci->ren1->pair->one->path;3218if(ci->ren2) {3219assert(opt->branch1 == ci->ren1->branch);3220}32213222switch(ci->rename_type) {3223case RENAME_NORMAL:3224case RENAME_ONE_FILE_TO_ONE:3225 clean_merge =handle_rename_normal(opt, path, o, a, b,3226 ci);3227break;3228case RENAME_VIA_DIR:3229 clean_merge =handle_rename_via_dir(opt, ci);3230break;3231case RENAME_ADD:3232/*3233 * Probably unclean merge, but if the renamed file3234 * merges cleanly and the result can then be3235 * two-way merged cleanly with the added file, I3236 * guess it's a clean merge?3237 */3238 clean_merge =handle_rename_add(opt, ci);3239break;3240case RENAME_DELETE:3241 clean_merge =0;3242if(handle_rename_delete(opt, ci))3243 clean_merge = -1;3244break;3245case RENAME_ONE_FILE_TO_TWO:3246/*3247 * Manually fix up paths; note:3248 * ren[12]->pair->one->path are equal.3249 */3250 o->path = ci->ren1->pair->one->path;3251 a->path = ci->ren1->pair->two->path;3252 b->path = ci->ren2->pair->two->path;32533254 clean_merge =0;3255if(handle_rename_rename_1to2(opt, ci))3256 clean_merge = -1;3257break;3258case RENAME_TWO_FILES_TO_ONE:3259/*3260 * Manually fix up paths; note,3261 * ren[12]->pair->two->path are actually equal.3262 */3263 o->path = NULL;3264 a->path = ci->ren1->pair->two->path;3265 b->path = ci->ren2->pair->two->path;32663267/*3268 * Probably unclean merge, but if the two renamed3269 * files merge cleanly and the two resulting files3270 * can then be two-way merged cleanly, I guess it's3271 * a clean merge?3272 */3273 clean_merge =handle_rename_rename_2to1(opt, ci);3274break;3275default:3276 entry->processed =0;3277break;3278}3279if(path_clean < clean_merge)3280 clean_merge = path_clean;3281}else if(o_valid && (!a_valid || !b_valid)) {3282/* Case A: Deleted in one */3283if((!a_valid && !b_valid) ||3284(!b_valid &&blob_unchanged(opt, o, a, normalize, path)) ||3285(!a_valid &&blob_unchanged(opt, o, b, normalize, path))) {3286/* Deleted in both or deleted in one and3287 * unchanged in the other */3288if(a_valid)3289output(opt,2,_("Removing%s"), path);3290/* do not touch working file if it did not exist */3291remove_file(opt,1, path, !a_valid);3292}else{3293/* Modify/delete; deleted side may have put a directory in the way */3294 clean_merge =0;3295if(handle_modify_delete(opt, path, o, a, b))3296 clean_merge = -1;3297}3298}else if((!o_valid && a_valid && !b_valid) ||3299(!o_valid && !a_valid && b_valid)) {3300/* Case B: Added in one. */3301/* [nothing|directory] -> ([nothing|directory], file) */33023303const char*add_branch;3304const char*other_branch;3305const char*conf;3306const struct diff_filespec *contents;33073308if(a_valid) {3309 add_branch = opt->branch1;3310 other_branch = opt->branch2;3311 contents = a;3312 conf =_("file/directory");3313}else{3314 add_branch = opt->branch2;3315 other_branch = opt->branch1;3316 contents = b;3317 conf =_("directory/file");3318}3319if(dir_in_way(opt->repo->index, path,3320!opt->call_depth && !S_ISGITLINK(a->mode),33210)) {3322char*new_path =unique_path(opt, path, add_branch);3323 clean_merge =0;3324output(opt,1,_("CONFLICT (%s): There is a directory with name%sin%s. "3325"Adding%sas%s"),3326 conf, path, other_branch, path, new_path);3327if(update_file(opt,0, contents, new_path))3328 clean_merge = -1;3329else if(opt->call_depth)3330remove_file_from_index(opt->repo->index, path);3331free(new_path);3332}else{3333output(opt,2,_("Adding%s"), path);3334/* do not overwrite file if already present */3335if(update_file_flags(opt, contents, path,1, !a_valid))3336 clean_merge = -1;3337}3338}else if(a_valid && b_valid) {3339if(!o_valid) {3340/* Case C: Added in both (check for same permissions) */3341output(opt,1,3342_("CONFLICT (add/add): Merge conflict in%s"),3343 path);3344 clean_merge =handle_file_collision(opt,3345 path, NULL, NULL,3346 opt->branch1,3347 opt->branch2,3348 a, b);3349}else{3350/* case D: Modified in both, but differently. */3351struct merge_file_info mfi;3352int is_dirty =0;/* unpack_trees would have bailed if dirty */3353 clean_merge =handle_content_merge(&mfi, opt, path,3354 is_dirty,3355 o, a, b, NULL);3356}3357}else if(!o_valid && !a_valid && !b_valid) {3358/*3359 * this entry was deleted altogether. a_mode == 0 means3360 * we had that path and want to actively remove it.3361 */3362remove_file(opt,1, path, !a->mode);3363}else3364BUG("fatal merge failure, shouldn't happen.");33653366return clean_merge;3367}33683369intmerge_trees(struct merge_options *opt,3370struct tree *head,3371struct tree *merge,3372struct tree *common,3373struct tree **result)3374{3375struct index_state *istate = opt->repo->index;3376int code, clean;3377struct strbuf sb = STRBUF_INIT;33783379if(!opt->call_depth &&repo_index_has_changes(opt->repo, head, &sb)) {3380err(opt,_("Your local changes to the following files would be overwritten by merge:\n%s"),3381 sb.buf);3382return-1;3383}33843385if(opt->subtree_shift) {3386 merge =shift_tree_object(opt->repo, head, merge, opt->subtree_shift);3387 common =shift_tree_object(opt->repo, head, common, opt->subtree_shift);3388}33893390if(oid_eq(&common->object.oid, &merge->object.oid)) {3391output(opt,0,_("Already up to date!"));3392*result = head;3393return1;3394}33953396 code =unpack_trees_start(opt, common, head, merge);33973398if(code !=0) {3399if(show(opt,4) || opt->call_depth)3400err(opt,_("merging of trees%sand%sfailed"),3401oid_to_hex(&head->object.oid),3402oid_to_hex(&merge->object.oid));3403unpack_trees_finish(opt);3404return-1;3405}34063407if(unmerged_index(istate)) {3408struct string_list *entries;3409struct rename_info re_info;3410int i;3411/*3412 * Only need the hashmap while processing entries, so3413 * initialize it here and free it when we are done running3414 * through the entries. Keeping it in the merge_options as3415 * opposed to decaring a local hashmap is for convenience3416 * so that we don't have to pass it to around.3417 */3418hashmap_init(&opt->current_file_dir_set, path_hashmap_cmp, NULL,512);3419get_files_dirs(opt, head);3420get_files_dirs(opt, merge);34213422 entries =get_unmerged(opt->repo->index);3423 clean =detect_and_process_renames(opt, common, head, merge,3424 entries, &re_info);3425record_df_conflict_files(opt, entries);3426if(clean <0)3427goto cleanup;3428for(i = entries->nr-1;0<= i; i--) {3429const char*path = entries->items[i].string;3430struct stage_data *e = entries->items[i].util;3431if(!e->processed) {3432int ret =process_entry(opt, path, e);3433if(!ret)3434 clean =0;3435else if(ret <0) {3436 clean = ret;3437goto cleanup;3438}3439}3440}3441for(i =0; i < entries->nr; i++) {3442struct stage_data *e = entries->items[i].util;3443if(!e->processed)3444BUG("unprocessed path???%s",3445 entries->items[i].string);3446}34473448 cleanup:3449final_cleanup_renames(&re_info);34503451string_list_clear(entries,1);3452free(entries);34533454hashmap_free(&opt->current_file_dir_set,1);34553456if(clean <0) {3457unpack_trees_finish(opt);3458return clean;3459}3460}3461else3462 clean =1;34633464unpack_trees_finish(opt);34653466if(opt->call_depth && !(*result =write_tree_from_memory(opt)))3467return-1;34683469return clean;3470}34713472static struct commit_list *reverse_commit_list(struct commit_list *list)3473{3474struct commit_list *next = NULL, *current, *backup;3475for(current = list; current; current = backup) {3476 backup = current->next;3477 current->next = next;3478 next = current;3479}3480return next;3481}34823483/*3484 * Merge the commits h1 and h2, return the resulting virtual3485 * commit object and a flag indicating the cleanness of the merge.3486 */3487intmerge_recursive(struct merge_options *opt,3488struct commit *h1,3489struct commit *h2,3490struct commit_list *ca,3491struct commit **result)3492{3493struct commit_list *iter;3494struct commit *merged_common_ancestors;3495struct tree *mrtree;3496int clean;34973498if(show(opt,4)) {3499output(opt,4,_("Merging:"));3500output_commit_title(opt, h1);3501output_commit_title(opt, h2);3502}35033504if(!ca) {3505 ca =get_merge_bases(h1, h2);3506 ca =reverse_commit_list(ca);3507}35083509if(show(opt,5)) {3510unsigned cnt =commit_list_count(ca);35113512output(opt,5,Q_("found%ucommon ancestor:",3513"found%ucommon ancestors:", cnt), cnt);3514for(iter = ca; iter; iter = iter->next)3515output_commit_title(opt, iter->item);3516}35173518 merged_common_ancestors =pop_commit(&ca);3519if(merged_common_ancestors == NULL) {3520/* if there is no common ancestor, use an empty tree */3521struct tree *tree;35223523 tree =lookup_tree(opt->repo, opt->repo->hash_algo->empty_tree);3524 merged_common_ancestors =make_virtual_commit(opt->repo, tree,"ancestor");3525}35263527for(iter = ca; iter; iter = iter->next) {3528const char*saved_b1, *saved_b2;3529 opt->call_depth++;3530/*3531 * When the merge fails, the result contains files3532 * with conflict markers. The cleanness flag is3533 * ignored (unless indicating an error), it was never3534 * actually used, as result of merge_trees has always3535 * overwritten it: the committed "conflicts" were3536 * already resolved.3537 */3538discard_index(opt->repo->index);3539 saved_b1 = opt->branch1;3540 saved_b2 = opt->branch2;3541 opt->branch1 ="Temporary merge branch 1";3542 opt->branch2 ="Temporary merge branch 2";3543if(merge_recursive(opt, merged_common_ancestors, iter->item,3544 NULL, &merged_common_ancestors) <0)3545return-1;3546 opt->branch1 = saved_b1;3547 opt->branch2 = saved_b2;3548 opt->call_depth--;35493550if(!merged_common_ancestors)3551returnerr(opt,_("merge returned no commit"));3552}35533554discard_index(opt->repo->index);3555if(!opt->call_depth)3556repo_read_index(opt->repo);35573558 opt->ancestor ="merged common ancestors";3559 clean =merge_trees(opt,get_commit_tree(h1),get_commit_tree(h2),3560get_commit_tree(merged_common_ancestors),3561&mrtree);3562if(clean <0) {3563flush_output(opt);3564return clean;3565}35663567if(opt->call_depth) {3568*result =make_virtual_commit(opt->repo, mrtree,"merged tree");3569commit_list_insert(h1, &(*result)->parents);3570commit_list_insert(h2, &(*result)->parents->next);3571}3572flush_output(opt);3573if(!opt->call_depth && opt->buffer_output <2)3574strbuf_release(&opt->obuf);3575if(show(opt,2))3576diff_warn_rename_limit("merge.renamelimit",3577 opt->needed_rename_limit,0);3578return clean;3579}35803581static struct commit *get_ref(struct repository *repo,const struct object_id *oid,3582const char*name)3583{3584struct object *object;35853586 object =deref_tag(repo,parse_object(repo, oid),3587 name,strlen(name));3588if(!object)3589return NULL;3590if(object->type == OBJ_TREE)3591returnmake_virtual_commit(repo, (struct tree*)object, name);3592if(object->type != OBJ_COMMIT)3593return NULL;3594if(parse_commit((struct commit *)object))3595return NULL;3596return(struct commit *)object;3597}35983599intmerge_recursive_generic(struct merge_options *opt,3600const struct object_id *head,3601const struct object_id *merge,3602int num_base_list,3603const struct object_id **base_list,3604struct commit **result)3605{3606int clean;3607struct lock_file lock = LOCK_INIT;3608struct commit *head_commit =get_ref(opt->repo, head, opt->branch1);3609struct commit *next_commit =get_ref(opt->repo, merge, opt->branch2);3610struct commit_list *ca = NULL;36113612if(base_list) {3613int i;3614for(i =0; i < num_base_list; ++i) {3615struct commit *base;3616if(!(base =get_ref(opt->repo, base_list[i],oid_to_hex(base_list[i]))))3617returnerr(opt,_("Could not parse object '%s'"),3618oid_to_hex(base_list[i]));3619commit_list_insert(base, &ca);3620}3621}36223623repo_hold_locked_index(opt->repo, &lock, LOCK_DIE_ON_ERROR);3624 clean =merge_recursive(opt, head_commit, next_commit, ca,3625 result);3626if(clean <0) {3627rollback_lock_file(&lock);3628return clean;3629}36303631if(write_locked_index(opt->repo->index, &lock,3632 COMMIT_LOCK | SKIP_IF_UNCHANGED))3633returnerr(opt,_("Unable to write index."));36343635return clean ?0:1;3636}36373638static voidmerge_recursive_config(struct merge_options *opt)3639{3640char*value = NULL;3641git_config_get_int("merge.verbosity", &opt->verbosity);3642git_config_get_int("diff.renamelimit", &opt->diff_rename_limit);3643git_config_get_int("merge.renamelimit", &opt->merge_rename_limit);3644if(!git_config_get_string("diff.renames", &value)) {3645 opt->diff_detect_rename =git_config_rename("diff.renames", value);3646free(value);3647}3648if(!git_config_get_string("merge.renames", &value)) {3649 opt->merge_detect_rename =git_config_rename("merge.renames", value);3650free(value);3651}3652if(!git_config_get_string("merge.directoryrenames", &value)) {3653int boolval =git_parse_maybe_bool(value);3654if(0<= boolval) {3655 opt->detect_directory_renames = boolval ?2:0;3656}else if(!strcasecmp(value,"conflict")) {3657 opt->detect_directory_renames =1;3658}/* avoid erroring on values from future versions of git */3659free(value);3660}3661git_config(git_xmerge_config, NULL);3662}36633664voidinit_merge_options(struct merge_options *opt,3665struct repository *repo)3666{3667const char*merge_verbosity;3668memset(opt,0,sizeof(struct merge_options));3669 opt->repo = repo;3670 opt->verbosity =2;3671 opt->buffer_output =1;3672 opt->diff_rename_limit = -1;3673 opt->merge_rename_limit = -1;3674 opt->renormalize =0;3675 opt->diff_detect_rename = -1;3676 opt->merge_detect_rename = -1;3677 opt->detect_directory_renames =1;3678merge_recursive_config(opt);3679 merge_verbosity =getenv("GIT_MERGE_VERBOSITY");3680if(merge_verbosity)3681 opt->verbosity =strtol(merge_verbosity, NULL,10);3682if(opt->verbosity >=5)3683 opt->buffer_output =0;3684strbuf_init(&opt->obuf,0);3685string_list_init(&opt->df_conflict_file_set,1);3686}36873688intparse_merge_opt(struct merge_options *opt,const char*s)3689{3690const char*arg;36913692if(!s || !*s)3693return-1;3694if(!strcmp(s,"ours"))3695 opt->recursive_variant = MERGE_RECURSIVE_OURS;3696else if(!strcmp(s,"theirs"))3697 opt->recursive_variant = MERGE_RECURSIVE_THEIRS;3698else if(!strcmp(s,"subtree"))3699 opt->subtree_shift ="";3700else if(skip_prefix(s,"subtree=", &arg))3701 opt->subtree_shift = arg;3702else if(!strcmp(s,"patience"))3703 opt->xdl_opts =DIFF_WITH_ALG(opt, PATIENCE_DIFF);3704else if(!strcmp(s,"histogram"))3705 opt->xdl_opts =DIFF_WITH_ALG(opt, HISTOGRAM_DIFF);3706else if(skip_prefix(s,"diff-algorithm=", &arg)) {3707long value =parse_algorithm_value(arg);3708if(value <0)3709return-1;3710/* clear out previous settings */3711DIFF_XDL_CLR(opt, NEED_MINIMAL);3712 opt->xdl_opts &= ~XDF_DIFF_ALGORITHM_MASK;3713 opt->xdl_opts |= value;3714}3715else if(!strcmp(s,"ignore-space-change"))3716DIFF_XDL_SET(opt, IGNORE_WHITESPACE_CHANGE);3717else if(!strcmp(s,"ignore-all-space"))3718DIFF_XDL_SET(opt, IGNORE_WHITESPACE);3719else if(!strcmp(s,"ignore-space-at-eol"))3720DIFF_XDL_SET(opt, IGNORE_WHITESPACE_AT_EOL);3721else if(!strcmp(s,"ignore-cr-at-eol"))3722DIFF_XDL_SET(opt, IGNORE_CR_AT_EOL);3723else if(!strcmp(s,"renormalize"))3724 opt->renormalize =1;3725else if(!strcmp(s,"no-renormalize"))3726 opt->renormalize =0;3727else if(!strcmp(s,"no-renames"))3728 opt->merge_detect_rename =0;3729else if(!strcmp(s,"find-renames")) {3730 opt->merge_detect_rename =1;3731 opt->rename_score =0;3732}3733else if(skip_prefix(s,"find-renames=", &arg) ||3734skip_prefix(s,"rename-threshold=", &arg)) {3735if((opt->rename_score =parse_rename_score(&arg)) == -1|| *arg !=0)3736return-1;3737 opt->merge_detect_rename =1;3738}3739/*3740 * Please update $__git_merge_strategy_options in3741 * git-completion.bash when you add new options3742 */3743else3744return-1;3745return0;3746}