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"commit.h" 12#include"blob.h" 13#include"builtin.h" 14#include"tree-walk.h" 15#include"diff.h" 16#include"diffcore.h" 17#include"tag.h" 18#include"unpack-trees.h" 19#include"string-list.h" 20#include"xdiff-interface.h" 21#include"ll-merge.h" 22#include"attr.h" 23#include"merge-recursive.h" 24#include"dir.h" 25#include"submodule.h" 26 27struct path_hashmap_entry { 28struct hashmap_entry e; 29char path[FLEX_ARRAY]; 30}; 31 32static intpath_hashmap_cmp(const void*cmp_data, 33const void*entry, 34const void*entry_or_key, 35const void*keydata) 36{ 37const struct path_hashmap_entry *a = entry; 38const struct path_hashmap_entry *b = entry_or_key; 39const char*key = keydata; 40 41if(ignore_case) 42returnstrcasecmp(a->path, key ? key : b->path); 43else 44returnstrcmp(a->path, key ? key : b->path); 45} 46 47static unsigned intpath_hash(const char*path) 48{ 49return ignore_case ?strihash(path) :strhash(path); 50} 51 52static struct dir_rename_entry *dir_rename_find_entry(struct hashmap *hashmap, 53char*dir) 54{ 55struct dir_rename_entry key; 56 57if(dir == NULL) 58return NULL; 59hashmap_entry_init(&key,strhash(dir)); 60 key.dir = dir; 61returnhashmap_get(hashmap, &key, NULL); 62} 63 64static intdir_rename_cmp(const void*unused_cmp_data, 65const void*entry, 66const void*entry_or_key, 67const void*unused_keydata) 68{ 69const struct dir_rename_entry *e1 = entry; 70const struct dir_rename_entry *e2 = entry_or_key; 71 72returnstrcmp(e1->dir, e2->dir); 73} 74 75static voiddir_rename_init(struct hashmap *map) 76{ 77hashmap_init(map, dir_rename_cmp, NULL,0); 78} 79 80static voiddir_rename_entry_init(struct dir_rename_entry *entry, 81char*directory) 82{ 83hashmap_entry_init(entry,strhash(directory)); 84 entry->dir = directory; 85 entry->non_unique_new_dir =0; 86strbuf_init(&entry->new_dir,0); 87string_list_init(&entry->possible_new_dirs,0); 88} 89 90static struct collision_entry *collision_find_entry(struct hashmap *hashmap, 91char*target_file) 92{ 93struct collision_entry key; 94 95hashmap_entry_init(&key,strhash(target_file)); 96 key.target_file = target_file; 97returnhashmap_get(hashmap, &key, NULL); 98} 99 100static intcollision_cmp(void*unused_cmp_data, 101const struct collision_entry *e1, 102const struct collision_entry *e2, 103const void*unused_keydata) 104{ 105returnstrcmp(e1->target_file, e2->target_file); 106} 107 108static voidcollision_init(struct hashmap *map) 109{ 110hashmap_init(map, (hashmap_cmp_fn) collision_cmp, NULL,0); 111} 112 113static voidflush_output(struct merge_options *o) 114{ 115if(o->buffer_output <2&& o->obuf.len) { 116fputs(o->obuf.buf, stdout); 117strbuf_reset(&o->obuf); 118} 119} 120 121static interr(struct merge_options *o,const char*err, ...) 122{ 123va_list params; 124 125if(o->buffer_output <2) 126flush_output(o); 127else{ 128strbuf_complete(&o->obuf,'\n'); 129strbuf_addstr(&o->obuf,"error: "); 130} 131va_start(params, err); 132strbuf_vaddf(&o->obuf, err, params); 133va_end(params); 134if(o->buffer_output >1) 135strbuf_addch(&o->obuf,'\n'); 136else{ 137error("%s", o->obuf.buf); 138strbuf_reset(&o->obuf); 139} 140 141return-1; 142} 143 144static struct tree *shift_tree_object(struct tree *one,struct tree *two, 145const char*subtree_shift) 146{ 147struct object_id shifted; 148 149if(!*subtree_shift) { 150shift_tree(&one->object.oid, &two->object.oid, &shifted,0); 151}else{ 152shift_tree_by(&one->object.oid, &two->object.oid, &shifted, 153 subtree_shift); 154} 155if(!oidcmp(&two->object.oid, &shifted)) 156return two; 157returnlookup_tree(&shifted); 158} 159 160static struct commit *make_virtual_commit(struct tree *tree,const char*comment) 161{ 162struct commit *commit =alloc_commit_node(); 163 164set_merge_remote_desc(commit, comment, (struct object *)commit); 165 commit->tree = tree; 166 commit->object.parsed =1; 167return commit; 168} 169 170/* 171 * Since we use get_tree_entry(), which does not put the read object into 172 * the object pool, we cannot rely on a == b. 173 */ 174static intoid_eq(const struct object_id *a,const struct object_id *b) 175{ 176if(!a && !b) 177return2; 178return a && b &&oidcmp(a, b) ==0; 179} 180 181enum rename_type { 182 RENAME_NORMAL =0, 183 RENAME_DIR, 184 RENAME_DELETE, 185 RENAME_ONE_FILE_TO_ONE, 186 RENAME_ONE_FILE_TO_TWO, 187 RENAME_TWO_FILES_TO_ONE 188}; 189 190struct rename_conflict_info { 191enum rename_type rename_type; 192struct diff_filepair *pair1; 193struct diff_filepair *pair2; 194const char*branch1; 195const char*branch2; 196struct stage_data *dst_entry1; 197struct stage_data *dst_entry2; 198struct diff_filespec ren1_other; 199struct diff_filespec ren2_other; 200}; 201 202/* 203 * Since we want to write the index eventually, we cannot reuse the index 204 * for these (temporary) data. 205 */ 206struct stage_data { 207struct{ 208unsigned mode; 209struct object_id oid; 210} stages[4]; 211struct rename_conflict_info *rename_conflict_info; 212unsigned processed:1; 213}; 214 215staticinlinevoidsetup_rename_conflict_info(enum rename_type rename_type, 216struct diff_filepair *pair1, 217struct diff_filepair *pair2, 218const char*branch1, 219const char*branch2, 220struct stage_data *dst_entry1, 221struct stage_data *dst_entry2, 222struct merge_options *o, 223struct stage_data *src_entry1, 224struct stage_data *src_entry2) 225{ 226struct rename_conflict_info *ci =xcalloc(1,sizeof(struct rename_conflict_info)); 227 ci->rename_type = rename_type; 228 ci->pair1 = pair1; 229 ci->branch1 = branch1; 230 ci->branch2 = branch2; 231 232 ci->dst_entry1 = dst_entry1; 233 dst_entry1->rename_conflict_info = ci; 234 dst_entry1->processed =0; 235 236assert(!pair2 == !dst_entry2); 237if(dst_entry2) { 238 ci->dst_entry2 = dst_entry2; 239 ci->pair2 = pair2; 240 dst_entry2->rename_conflict_info = ci; 241} 242 243if(rename_type == RENAME_TWO_FILES_TO_ONE) { 244/* 245 * For each rename, there could have been 246 * modifications on the side of history where that 247 * file was not renamed. 248 */ 249int ostage1 = o->branch1 == branch1 ?3:2; 250int ostage2 = ostage1 ^1; 251 252 ci->ren1_other.path = pair1->one->path; 253oidcpy(&ci->ren1_other.oid, &src_entry1->stages[ostage1].oid); 254 ci->ren1_other.mode = src_entry1->stages[ostage1].mode; 255 256 ci->ren2_other.path = pair2->one->path; 257oidcpy(&ci->ren2_other.oid, &src_entry2->stages[ostage2].oid); 258 ci->ren2_other.mode = src_entry2->stages[ostage2].mode; 259} 260} 261 262static intshow(struct merge_options *o,int v) 263{ 264return(!o->call_depth && o->verbosity >= v) || o->verbosity >=5; 265} 266 267__attribute__((format(printf,3,4))) 268static voidoutput(struct merge_options *o,int v,const char*fmt, ...) 269{ 270va_list ap; 271 272if(!show(o, v)) 273return; 274 275strbuf_addchars(&o->obuf,' ', o->call_depth *2); 276 277va_start(ap, fmt); 278strbuf_vaddf(&o->obuf, fmt, ap); 279va_end(ap); 280 281strbuf_addch(&o->obuf,'\n'); 282if(!o->buffer_output) 283flush_output(o); 284} 285 286static voidoutput_commit_title(struct merge_options *o,struct commit *commit) 287{ 288strbuf_addchars(&o->obuf,' ', o->call_depth *2); 289if(commit->util) 290strbuf_addf(&o->obuf,"virtual%s\n", 291merge_remote_util(commit)->name); 292else{ 293strbuf_add_unique_abbrev(&o->obuf, &commit->object.oid, 294 DEFAULT_ABBREV); 295strbuf_addch(&o->obuf,' '); 296if(parse_commit(commit) !=0) 297strbuf_addstr(&o->obuf,_("(bad commit)\n")); 298else{ 299const char*title; 300const char*msg =get_commit_buffer(commit, NULL); 301int len =find_commit_subject(msg, &title); 302if(len) 303strbuf_addf(&o->obuf,"%.*s\n", len, title); 304unuse_commit_buffer(commit, msg); 305} 306} 307flush_output(o); 308} 309 310static intadd_cacheinfo(struct merge_options *o, 311unsigned int mode,const struct object_id *oid, 312const char*path,int stage,int refresh,int options) 313{ 314struct cache_entry *ce; 315int ret; 316 317 ce =make_cache_entry(mode, oid ? oid->hash : null_sha1, path, stage,0); 318if(!ce) 319returnerr(o,_("add_cacheinfo failed for path '%s'; merge aborting."), path); 320 321 ret =add_cache_entry(ce, options); 322if(refresh) { 323struct cache_entry *nce; 324 325 nce =refresh_cache_entry(ce, CE_MATCH_REFRESH | CE_MATCH_IGNORE_MISSING); 326if(!nce) 327returnerr(o,_("add_cacheinfo failed to refresh for path '%s'; merge aborting."), path); 328if(nce != ce) 329 ret =add_cache_entry(nce, options); 330} 331return ret; 332} 333 334static voidinit_tree_desc_from_tree(struct tree_desc *desc,struct tree *tree) 335{ 336parse_tree(tree); 337init_tree_desc(desc, tree->buffer, tree->size); 338} 339 340static intgit_merge_trees(struct merge_options *o, 341struct tree *common, 342struct tree *head, 343struct tree *merge) 344{ 345int rc; 346struct tree_desc t[3]; 347struct index_state tmp_index = { NULL }; 348 349memset(&o->unpack_opts,0,sizeof(o->unpack_opts)); 350if(o->call_depth) 351 o->unpack_opts.index_only =1; 352else 353 o->unpack_opts.update =1; 354 o->unpack_opts.merge =1; 355 o->unpack_opts.head_idx =2; 356 o->unpack_opts.fn = threeway_merge; 357 o->unpack_opts.src_index = &the_index; 358 o->unpack_opts.dst_index = &tmp_index; 359setup_unpack_trees_porcelain(&o->unpack_opts,"merge"); 360 361init_tree_desc_from_tree(t+0, common); 362init_tree_desc_from_tree(t+1, head); 363init_tree_desc_from_tree(t+2, merge); 364 365 rc =unpack_trees(3, t, &o->unpack_opts); 366cache_tree_free(&active_cache_tree); 367 368/* 369 * Update the_index to match the new results, AFTER saving a copy 370 * in o->orig_index. Update src_index to point to the saved copy. 371 * (verify_uptodate() checks src_index, and the original index is 372 * the one that had the necessary modification timestamps.) 373 */ 374 o->orig_index = the_index; 375 the_index = tmp_index; 376 o->unpack_opts.src_index = &o->orig_index; 377 378return rc; 379} 380 381struct tree *write_tree_from_memory(struct merge_options *o) 382{ 383struct tree *result = NULL; 384 385if(unmerged_cache()) { 386int i; 387fprintf(stderr,"BUG: There are unmerged index entries:\n"); 388for(i =0; i < active_nr; i++) { 389const struct cache_entry *ce = active_cache[i]; 390if(ce_stage(ce)) 391fprintf(stderr,"BUG:%d%.*s\n",ce_stage(ce), 392(int)ce_namelen(ce), ce->name); 393} 394die("BUG: unmerged index entries in merge-recursive.c"); 395} 396 397if(!active_cache_tree) 398 active_cache_tree =cache_tree(); 399 400if(!cache_tree_fully_valid(active_cache_tree) && 401cache_tree_update(&the_index,0) <0) { 402err(o,_("error building trees")); 403return NULL; 404} 405 406 result =lookup_tree(&active_cache_tree->oid); 407 408return result; 409} 410 411static intsave_files_dirs(const struct object_id *oid, 412struct strbuf *base,const char*path, 413unsigned int mode,int stage,void*context) 414{ 415struct path_hashmap_entry *entry; 416int baselen = base->len; 417struct merge_options *o = context; 418 419strbuf_addstr(base, path); 420 421FLEX_ALLOC_MEM(entry, path, base->buf, base->len); 422hashmap_entry_init(entry,path_hash(entry->path)); 423hashmap_add(&o->current_file_dir_set, entry); 424 425strbuf_setlen(base, baselen); 426return(S_ISDIR(mode) ? READ_TREE_RECURSIVE :0); 427} 428 429static voidget_files_dirs(struct merge_options *o,struct tree *tree) 430{ 431struct pathspec match_all; 432memset(&match_all,0,sizeof(match_all)); 433read_tree_recursive(tree,"",0,0, &match_all, save_files_dirs, o); 434} 435 436static intget_tree_entry_if_blob(const struct object_id *tree, 437const char*path, 438struct object_id *hashy, 439unsigned int*mode_o) 440{ 441int ret; 442 443 ret =get_tree_entry(tree, path, hashy, mode_o); 444if(S_ISDIR(*mode_o)) { 445oidcpy(hashy, &null_oid); 446*mode_o =0; 447} 448return ret; 449} 450 451/* 452 * Returns an index_entry instance which doesn't have to correspond to 453 * a real cache entry in Git's index. 454 */ 455static struct stage_data *insert_stage_data(const char*path, 456struct tree *o,struct tree *a,struct tree *b, 457struct string_list *entries) 458{ 459struct string_list_item *item; 460struct stage_data *e =xcalloc(1,sizeof(struct stage_data)); 461get_tree_entry_if_blob(&o->object.oid, path, 462&e->stages[1].oid, &e->stages[1].mode); 463get_tree_entry_if_blob(&a->object.oid, path, 464&e->stages[2].oid, &e->stages[2].mode); 465get_tree_entry_if_blob(&b->object.oid, path, 466&e->stages[3].oid, &e->stages[3].mode); 467 item =string_list_insert(entries, path); 468 item->util = e; 469return e; 470} 471 472/* 473 * Create a dictionary mapping file names to stage_data objects. The 474 * dictionary contains one entry for every path with a non-zero stage entry. 475 */ 476static struct string_list *get_unmerged(void) 477{ 478struct string_list *unmerged =xcalloc(1,sizeof(struct string_list)); 479int i; 480 481 unmerged->strdup_strings =1; 482 483for(i =0; i < active_nr; i++) { 484struct string_list_item *item; 485struct stage_data *e; 486const struct cache_entry *ce = active_cache[i]; 487if(!ce_stage(ce)) 488continue; 489 490 item =string_list_lookup(unmerged, ce->name); 491if(!item) { 492 item =string_list_insert(unmerged, ce->name); 493 item->util =xcalloc(1,sizeof(struct stage_data)); 494} 495 e = item->util; 496 e->stages[ce_stage(ce)].mode = ce->ce_mode; 497oidcpy(&e->stages[ce_stage(ce)].oid, &ce->oid); 498} 499 500return unmerged; 501} 502 503static intstring_list_df_name_compare(const char*one,const char*two) 504{ 505int onelen =strlen(one); 506int twolen =strlen(two); 507/* 508 * Here we only care that entries for D/F conflicts are 509 * adjacent, in particular with the file of the D/F conflict 510 * appearing before files below the corresponding directory. 511 * The order of the rest of the list is irrelevant for us. 512 * 513 * To achieve this, we sort with df_name_compare and provide 514 * the mode S_IFDIR so that D/F conflicts will sort correctly. 515 * We use the mode S_IFDIR for everything else for simplicity, 516 * since in other cases any changes in their order due to 517 * sorting cause no problems for us. 518 */ 519int cmp =df_name_compare(one, onelen, S_IFDIR, 520 two, twolen, S_IFDIR); 521/* 522 * Now that 'foo' and 'foo/bar' compare equal, we have to make sure 523 * that 'foo' comes before 'foo/bar'. 524 */ 525if(cmp) 526return cmp; 527return onelen - twolen; 528} 529 530static voidrecord_df_conflict_files(struct merge_options *o, 531struct string_list *entries) 532{ 533/* If there is a D/F conflict and the file for such a conflict 534 * currently exist in the working tree, we want to allow it to be 535 * removed to make room for the corresponding directory if needed. 536 * The files underneath the directories of such D/F conflicts will 537 * be processed before the corresponding file involved in the D/F 538 * conflict. If the D/F directory ends up being removed by the 539 * merge, then we won't have to touch the D/F file. If the D/F 540 * directory needs to be written to the working copy, then the D/F 541 * file will simply be removed (in make_room_for_path()) to make 542 * room for the necessary paths. Note that if both the directory 543 * and the file need to be present, then the D/F file will be 544 * reinstated with a new unique name at the time it is processed. 545 */ 546struct string_list df_sorted_entries = STRING_LIST_INIT_NODUP; 547const char*last_file = NULL; 548int last_len =0; 549int i; 550 551/* 552 * If we're merging merge-bases, we don't want to bother with 553 * any working directory changes. 554 */ 555if(o->call_depth) 556return; 557 558/* Ensure D/F conflicts are adjacent in the entries list. */ 559for(i =0; i < entries->nr; i++) { 560struct string_list_item *next = &entries->items[i]; 561string_list_append(&df_sorted_entries, next->string)->util = 562 next->util; 563} 564 df_sorted_entries.cmp = string_list_df_name_compare; 565string_list_sort(&df_sorted_entries); 566 567string_list_clear(&o->df_conflict_file_set,1); 568for(i =0; i < df_sorted_entries.nr; i++) { 569const char*path = df_sorted_entries.items[i].string; 570int len =strlen(path); 571struct stage_data *e = df_sorted_entries.items[i].util; 572 573/* 574 * Check if last_file & path correspond to a D/F conflict; 575 * i.e. whether path is last_file+'/'+<something>. 576 * If so, record that it's okay to remove last_file to make 577 * room for path and friends if needed. 578 */ 579if(last_file && 580 len > last_len && 581memcmp(path, last_file, last_len) ==0&& 582 path[last_len] =='/') { 583string_list_insert(&o->df_conflict_file_set, last_file); 584} 585 586/* 587 * Determine whether path could exist as a file in the 588 * working directory as a possible D/F conflict. This 589 * will only occur when it exists in stage 2 as a 590 * file. 591 */ 592if(S_ISREG(e->stages[2].mode) ||S_ISLNK(e->stages[2].mode)) { 593 last_file = path; 594 last_len = len; 595}else{ 596 last_file = NULL; 597} 598} 599string_list_clear(&df_sorted_entries,0); 600} 601 602struct rename { 603struct diff_filepair *pair; 604/* 605 * Purpose of src_entry and dst_entry: 606 * 607 * If 'before' is renamed to 'after' then src_entry will contain 608 * the versions of 'before' from the merge_base, HEAD, and MERGE in 609 * stages 1, 2, and 3; dst_entry will contain the respective 610 * versions of 'after' in corresponding locations. Thus, we have a 611 * total of six modes and oids, though some will be null. (Stage 0 612 * is ignored; we're interested in handling conflicts.) 613 * 614 * Since we don't turn on break-rewrites by default, neither 615 * src_entry nor dst_entry can have all three of their stages have 616 * non-null oids, meaning at most four of the six will be non-null. 617 * Also, since this is a rename, both src_entry and dst_entry will 618 * have at least one non-null oid, meaning at least two will be 619 * non-null. Of the six oids, a typical rename will have three be 620 * non-null. Only two implies a rename/delete, and four implies a 621 * rename/add. 622 */ 623struct stage_data *src_entry; 624struct stage_data *dst_entry; 625unsigned add_turned_into_rename:1; 626unsigned processed:1; 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_cache(path)) 647return-1; 648if(o) 649if(add_cacheinfo(opt, o->mode, &o->oid, path,1,0, options)) 650return-1; 651if(a) 652if(add_cacheinfo(opt, a->mode, &a->oid, path,2,0, options)) 653return-1; 654if(b) 655if(add_cacheinfo(opt, b->mode, &b->oid, path,3,0, options)) 656return-1; 657return0; 658} 659 660static intupdate_stages_for_stage_data(struct merge_options *opt, 661const char*path, 662const struct stage_data *stage_data) 663{ 664struct diff_filespec o, a, b; 665 666 o.mode = stage_data->stages[1].mode; 667oidcpy(&o.oid, &stage_data->stages[1].oid); 668 669 a.mode = stage_data->stages[2].mode; 670oidcpy(&a.oid, &stage_data->stages[2].oid); 671 672 b.mode = stage_data->stages[3].mode; 673oidcpy(&b.oid, &stage_data->stages[3].oid); 674 675returnupdate_stages(opt, path, 676is_null_oid(&o.oid) ? NULL : &o, 677is_null_oid(&a.oid) ? NULL : &a, 678is_null_oid(&b.oid) ? NULL : &b); 679} 680 681static voidupdate_entry(struct stage_data *entry, 682struct diff_filespec *o, 683struct diff_filespec *a, 684struct diff_filespec *b) 685{ 686 entry->processed =0; 687 entry->stages[1].mode = o->mode; 688 entry->stages[2].mode = a->mode; 689 entry->stages[3].mode = b->mode; 690oidcpy(&entry->stages[1].oid, &o->oid); 691oidcpy(&entry->stages[2].oid, &a->oid); 692oidcpy(&entry->stages[3].oid, &b->oid); 693} 694 695static intremove_file(struct merge_options *o,int clean, 696const char*path,int no_wd) 697{ 698int update_cache = o->call_depth || clean; 699int update_working_directory = !o->call_depth && !no_wd; 700 701if(update_cache) { 702if(remove_file_from_cache(path)) 703return-1; 704} 705if(update_working_directory) { 706if(ignore_case) { 707struct cache_entry *ce; 708 ce =cache_file_exists(path,strlen(path), ignore_case); 709if(ce &&ce_stage(ce) ==0&&strcmp(path, ce->name)) 710return0; 711} 712if(remove_path(path)) 713return-1; 714} 715return0; 716} 717 718/* add a string to a strbuf, but converting "/" to "_" */ 719static voidadd_flattened_path(struct strbuf *out,const char*s) 720{ 721size_t i = out->len; 722strbuf_addstr(out, s); 723for(; i < out->len; i++) 724if(out->buf[i] =='/') 725 out->buf[i] ='_'; 726} 727 728static char*unique_path(struct merge_options *o,const char*path,const char*branch) 729{ 730struct path_hashmap_entry *entry; 731struct strbuf newpath = STRBUF_INIT; 732int suffix =0; 733size_t base_len; 734 735strbuf_addf(&newpath,"%s~", path); 736add_flattened_path(&newpath, branch); 737 738 base_len = newpath.len; 739while(hashmap_get_from_hash(&o->current_file_dir_set, 740path_hash(newpath.buf), newpath.buf) || 741(!o->call_depth &&file_exists(newpath.buf))) { 742strbuf_setlen(&newpath, base_len); 743strbuf_addf(&newpath,"_%d", suffix++); 744} 745 746FLEX_ALLOC_MEM(entry, path, newpath.buf, newpath.len); 747hashmap_entry_init(entry,path_hash(entry->path)); 748hashmap_add(&o->current_file_dir_set, entry); 749returnstrbuf_detach(&newpath, NULL); 750} 751 752/** 753 * Check whether a directory in the index is in the way of an incoming 754 * file. Return 1 if so. If check_working_copy is non-zero, also 755 * check the working directory. If empty_ok is non-zero, also return 756 * 0 in the case where the working-tree dir exists but is empty. 757 */ 758static intdir_in_way(const char*path,int check_working_copy,int empty_ok) 759{ 760int pos; 761struct strbuf dirpath = STRBUF_INIT; 762struct stat st; 763 764strbuf_addstr(&dirpath, path); 765strbuf_addch(&dirpath,'/'); 766 767 pos =cache_name_pos(dirpath.buf, dirpath.len); 768 769if(pos <0) 770 pos = -1- pos; 771if(pos < active_nr && 772!strncmp(dirpath.buf, active_cache[pos]->name, dirpath.len)) { 773strbuf_release(&dirpath); 774return1; 775} 776 777strbuf_release(&dirpath); 778return check_working_copy && !lstat(path, &st) &&S_ISDIR(st.st_mode) && 779!(empty_ok &&is_empty_dir(path)); 780} 781 782/* 783 * Returns whether path was tracked in the index before the merge started 784 */ 785static intwas_tracked(struct merge_options *o,const char*path) 786{ 787int pos =index_name_pos(&o->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(const char*path) 797{ 798/* 799 * This may look like it can be simplified to: 800 * return !was_tracked(o, path) && file_exists(path) 801 * but it can't. This function needs to know whether path was in 802 * the working tree due to EITHER having been tracked in the index 803 * before the merge OR having been put into the working copy and 804 * index by unpack_trees(). Due to that either-or requirement, we 805 * check the current index instead of the original one. 806 * 807 * Note that we do not need to worry about merge-recursive itself 808 * updating the index after unpack_trees() and before calling this 809 * function, because we strictly require all code paths in 810 * merge-recursive to update the working tree first and the index 811 * second. Doing otherwise would break 812 * update_file()/would_lose_untracked(); see every comment in this 813 * file which mentions "update_stages". 814 */ 815int pos =cache_name_pos(path,strlen(path)); 816 817if(pos <0) 818 pos = -1- pos; 819while(pos < active_nr && 820!strcmp(path, active_cache[pos]->name)) { 821/* 822 * If stage #0, it is definitely tracked. 823 * If it has stage #2 then it was tracked 824 * before this merge started. All other 825 * cases the path was not tracked. 826 */ 827switch(ce_stage(active_cache[pos])) { 828case0: 829case2: 830return0; 831} 832 pos++; 833} 834returnfile_exists(path); 835} 836 837static intwas_dirty(struct merge_options *o,const char*path) 838{ 839struct cache_entry *ce; 840int dirty =1; 841 842if(o->call_depth || !was_tracked(o, path)) 843return!dirty; 844 845 ce =cache_file_exists(path,strlen(path), ignore_case); 846 dirty = (ce->ce_stat_data.sd_mtime.sec >0&& 847verify_uptodate(ce, &o->unpack_opts) !=0); 848return dirty; 849} 850 851static intmake_room_for_path(struct merge_options *o,const char*path) 852{ 853int status, i; 854const char*msg =_("failed to create path '%s'%s"); 855 856/* Unlink any D/F conflict files that are in the way */ 857for(i =0; i < o->df_conflict_file_set.nr; i++) { 858const char*df_path = o->df_conflict_file_set.items[i].string; 859size_t pathlen =strlen(path); 860size_t df_pathlen =strlen(df_path); 861if(df_pathlen < pathlen && 862 path[df_pathlen] =='/'&& 863strncmp(path, df_path, df_pathlen) ==0) { 864output(o,3, 865_("Removing%sto make room for subdirectory\n"), 866 df_path); 867unlink(df_path); 868unsorted_string_list_delete_item(&o->df_conflict_file_set, 869 i,0); 870break; 871} 872} 873 874/* Make sure leading directories are created */ 875 status =safe_create_leading_directories_const(path); 876if(status) { 877if(status == SCLD_EXISTS) 878/* something else exists */ 879returnerr(o, msg, path,_(": perhaps a D/F conflict?")); 880returnerr(o, msg, path,""); 881} 882 883/* 884 * Do not unlink a file in the work tree if we are not 885 * tracking it. 886 */ 887if(would_lose_untracked(path)) 888returnerr(o,_("refusing to lose untracked file at '%s'"), 889 path); 890 891/* Successful unlink is good.. */ 892if(!unlink(path)) 893return0; 894/* .. and so is no existing file */ 895if(errno == ENOENT) 896return0; 897/* .. but not some other error (who really cares what?) */ 898returnerr(o, msg, path,_(": perhaps a D/F conflict?")); 899} 900 901static intupdate_file_flags(struct merge_options *o, 902const struct object_id *oid, 903unsigned mode, 904const char*path, 905int update_cache, 906int update_wd) 907{ 908int ret =0; 909 910if(o->call_depth) 911 update_wd =0; 912 913if(update_wd) { 914enum object_type type; 915void*buf; 916unsigned long size; 917 918if(S_ISGITLINK(mode)) { 919/* 920 * We may later decide to recursively descend into 921 * the submodule directory and update its index 922 * and/or work tree, but we do not do that now. 923 */ 924 update_wd =0; 925goto update_index; 926} 927 928 buf =read_object_file(oid, &type, &size); 929if(!buf) 930returnerr(o,_("cannot read object%s'%s'"),oid_to_hex(oid), path); 931if(type != OBJ_BLOB) { 932 ret =err(o,_("blob expected for%s'%s'"),oid_to_hex(oid), path); 933goto free_buf; 934} 935if(S_ISREG(mode)) { 936struct strbuf strbuf = STRBUF_INIT; 937if(convert_to_working_tree(path, buf, size, &strbuf)) { 938free(buf); 939 size = strbuf.len; 940 buf =strbuf_detach(&strbuf, NULL); 941} 942} 943 944if(make_room_for_path(o, path) <0) { 945 update_wd =0; 946goto free_buf; 947} 948if(S_ISREG(mode) || (!has_symlinks &&S_ISLNK(mode))) { 949int fd; 950if(mode &0100) 951 mode =0777; 952else 953 mode =0666; 954 fd =open(path, O_WRONLY | O_TRUNC | O_CREAT, mode); 955if(fd <0) { 956 ret =err(o,_("failed to open '%s':%s"), 957 path,strerror(errno)); 958goto free_buf; 959} 960write_in_full(fd, buf, size); 961close(fd); 962}else if(S_ISLNK(mode)) { 963char*lnk =xmemdupz(buf, size); 964safe_create_leading_directories_const(path); 965unlink(path); 966if(symlink(lnk, path)) 967 ret =err(o,_("failed to symlink '%s':%s"), 968 path,strerror(errno)); 969free(lnk); 970}else 971 ret =err(o, 972_("do not know what to do with%06o%s'%s'"), 973 mode,oid_to_hex(oid), path); 974 free_buf: 975free(buf); 976} 977 update_index: 978if(!ret && update_cache) 979if(add_cacheinfo(o, mode, oid, path,0, update_wd, 980 ADD_CACHE_OK_TO_ADD)) 981return-1; 982return ret; 983} 984 985static intupdate_file(struct merge_options *o, 986int clean, 987const struct object_id *oid, 988unsigned mode, 989const char*path) 990{ 991returnupdate_file_flags(o, oid, mode, path, o->call_depth || clean, !o->call_depth); 992} 993 994/* Low level file merging, update and removal */ 995 996struct merge_file_info { 997struct object_id oid; 998unsigned mode; 999unsigned clean:1,1000 merge:1;1001};10021003static intmerge_3way(struct merge_options *o,1004 mmbuffer_t *result_buf,1005const struct diff_filespec *one,1006const struct diff_filespec *a,1007const struct diff_filespec *b,1008const char*branch1,1009const char*branch2)1010{1011 mmfile_t orig, src1, src2;1012struct ll_merge_options ll_opts = {0};1013char*base_name, *name1, *name2;1014int merge_status;10151016 ll_opts.renormalize = o->renormalize;1017 ll_opts.xdl_opts = o->xdl_opts;10181019if(o->call_depth) {1020 ll_opts.virtual_ancestor =1;1021 ll_opts.variant =0;1022}else{1023switch(o->recursive_variant) {1024case MERGE_RECURSIVE_OURS:1025 ll_opts.variant = XDL_MERGE_FAVOR_OURS;1026break;1027case MERGE_RECURSIVE_THEIRS:1028 ll_opts.variant = XDL_MERGE_FAVOR_THEIRS;1029break;1030default:1031 ll_opts.variant =0;1032break;1033}1034}10351036if(strcmp(a->path, b->path) ||1037(o->ancestor != NULL &&strcmp(a->path, one->path) !=0)) {1038 base_name = o->ancestor == NULL ? NULL :1039mkpathdup("%s:%s", o->ancestor, one->path);1040 name1 =mkpathdup("%s:%s", branch1, a->path);1041 name2 =mkpathdup("%s:%s", branch2, b->path);1042}else{1043 base_name = o->ancestor == NULL ? NULL :1044mkpathdup("%s", o->ancestor);1045 name1 =mkpathdup("%s", branch1);1046 name2 =mkpathdup("%s", branch2);1047}10481049read_mmblob(&orig, &one->oid);1050read_mmblob(&src1, &a->oid);1051read_mmblob(&src2, &b->oid);10521053 merge_status =ll_merge(result_buf, a->path, &orig, base_name,1054&src1, name1, &src2, name2, &ll_opts);10551056free(base_name);1057free(name1);1058free(name2);1059free(orig.ptr);1060free(src1.ptr);1061free(src2.ptr);1062return merge_status;1063}10641065static intmerge_file_1(struct merge_options *o,1066const struct diff_filespec *one,1067const struct diff_filespec *a,1068const struct diff_filespec *b,1069const char*branch1,1070const char*branch2,1071struct merge_file_info *result)1072{1073 result->merge =0;1074 result->clean =1;10751076if((S_IFMT & a->mode) != (S_IFMT & b->mode)) {1077 result->clean =0;1078if(S_ISREG(a->mode)) {1079 result->mode = a->mode;1080oidcpy(&result->oid, &a->oid);1081}else{1082 result->mode = b->mode;1083oidcpy(&result->oid, &b->oid);1084}1085}else{1086if(!oid_eq(&a->oid, &one->oid) && !oid_eq(&b->oid, &one->oid))1087 result->merge =1;10881089/*1090 * Merge modes1091 */1092if(a->mode == b->mode || a->mode == one->mode)1093 result->mode = b->mode;1094else{1095 result->mode = a->mode;1096if(b->mode != one->mode) {1097 result->clean =0;1098 result->merge =1;1099}1100}11011102if(oid_eq(&a->oid, &b->oid) ||oid_eq(&a->oid, &one->oid))1103oidcpy(&result->oid, &b->oid);1104else if(oid_eq(&b->oid, &one->oid))1105oidcpy(&result->oid, &a->oid);1106else if(S_ISREG(a->mode)) {1107 mmbuffer_t result_buf;1108int ret =0, merge_status;11091110 merge_status =merge_3way(o, &result_buf, one, a, b,1111 branch1, branch2);11121113if((merge_status <0) || !result_buf.ptr)1114 ret =err(o,_("Failed to execute internal merge"));11151116if(!ret &&1117write_object_file(result_buf.ptr, result_buf.size,1118 blob_type, &result->oid))1119 ret =err(o,_("Unable to add%sto database"),1120 a->path);11211122free(result_buf.ptr);1123if(ret)1124return ret;1125 result->clean = (merge_status ==0);1126}else if(S_ISGITLINK(a->mode)) {1127 result->clean =merge_submodule(&result->oid,1128 one->path,1129&one->oid,1130&a->oid,1131&b->oid,1132!o->call_depth);1133}else if(S_ISLNK(a->mode)) {1134switch(o->recursive_variant) {1135case MERGE_RECURSIVE_NORMAL:1136oidcpy(&result->oid, &a->oid);1137if(!oid_eq(&a->oid, &b->oid))1138 result->clean =0;1139break;1140case MERGE_RECURSIVE_OURS:1141oidcpy(&result->oid, &a->oid);1142break;1143case MERGE_RECURSIVE_THEIRS:1144oidcpy(&result->oid, &b->oid);1145break;1146}1147}else1148die("BUG: unsupported object type in the tree");1149}11501151return0;1152}11531154static intmerge_file_special_markers(struct merge_options *o,1155const struct diff_filespec *one,1156const struct diff_filespec *a,1157const struct diff_filespec *b,1158const char*branch1,1159const char*filename1,1160const char*branch2,1161const char*filename2,1162struct merge_file_info *mfi)1163{1164char*side1 = NULL;1165char*side2 = NULL;1166int ret;11671168if(filename1)1169 side1 =xstrfmt("%s:%s", branch1, filename1);1170if(filename2)1171 side2 =xstrfmt("%s:%s", branch2, filename2);11721173 ret =merge_file_1(o, one, a, b,1174 side1 ? side1 : branch1,1175 side2 ? side2 : branch2, mfi);1176free(side1);1177free(side2);1178return ret;1179}11801181static intmerge_file_one(struct merge_options *o,1182const char*path,1183const struct object_id *o_oid,int o_mode,1184const struct object_id *a_oid,int a_mode,1185const struct object_id *b_oid,int b_mode,1186const char*branch1,1187const char*branch2,1188struct merge_file_info *mfi)1189{1190struct diff_filespec one, a, b;11911192 one.path = a.path = b.path = (char*)path;1193oidcpy(&one.oid, o_oid);1194 one.mode = o_mode;1195oidcpy(&a.oid, a_oid);1196 a.mode = a_mode;1197oidcpy(&b.oid, b_oid);1198 b.mode = b_mode;1199returnmerge_file_1(o, &one, &a, &b, branch1, branch2, mfi);1200}12011202static intconflict_rename_dir(struct merge_options *o,1203struct diff_filepair *pair,1204const char*rename_branch,1205const char*other_branch)1206{1207const struct diff_filespec *dest = pair->two;12081209if(!o->call_depth &&would_lose_untracked(dest->path)) {1210char*alt_path =unique_path(o, dest->path, rename_branch);12111212output(o,1,_("Error: Refusing to lose untracked file at%s; "1213"writing to%sinstead."),1214 dest->path, alt_path);1215/*1216 * Write the file in worktree at alt_path, but not in the1217 * index. Instead, write to dest->path for the index but1218 * only at the higher appropriate stage.1219 */1220if(update_file(o,0, &dest->oid, dest->mode, alt_path))1221return-1;1222free(alt_path);1223returnupdate_stages(o, dest->path, NULL,1224 rename_branch == o->branch1 ? dest : NULL,1225 rename_branch == o->branch1 ? NULL : dest);1226}12271228/* Update dest->path both in index and in worktree */1229if(update_file(o,1, &dest->oid, dest->mode, dest->path))1230return-1;1231return0;1232}12331234static inthandle_change_delete(struct merge_options *o,1235const char*path,const char*old_path,1236const struct object_id *o_oid,int o_mode,1237const struct object_id *changed_oid,1238int changed_mode,1239const char*change_branch,1240const char*delete_branch,1241const char*change,const char*change_past)1242{1243char*alt_path = NULL;1244const char*update_path = path;1245int ret =0;12461247if(dir_in_way(path, !o->call_depth,0) ||1248(!o->call_depth &&would_lose_untracked(path))) {1249 update_path = alt_path =unique_path(o, path, change_branch);1250}12511252if(o->call_depth) {1253/*1254 * We cannot arbitrarily accept either a_sha or b_sha as1255 * correct; since there is no true "middle point" between1256 * them, simply reuse the base version for virtual merge base.1257 */1258 ret =remove_file_from_cache(path);1259if(!ret)1260 ret =update_file(o,0, o_oid, o_mode, update_path);1261}else{1262if(!alt_path) {1263if(!old_path) {1264output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1265"and%sin%s. Version%sof%sleft in tree."),1266 change, path, delete_branch, change_past,1267 change_branch, change_branch, path);1268}else{1269output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1270"and%sto%sin%s. Version%sof%sleft in tree."),1271 change, old_path, delete_branch, change_past, path,1272 change_branch, change_branch, path);1273}1274}else{1275if(!old_path) {1276output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1277"and%sin%s. Version%sof%sleft in tree at%s."),1278 change, path, delete_branch, change_past,1279 change_branch, change_branch, path, alt_path);1280}else{1281output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1282"and%sto%sin%s. Version%sof%sleft in tree at%s."),1283 change, old_path, delete_branch, change_past, path,1284 change_branch, change_branch, path, alt_path);1285}1286}1287/*1288 * No need to call update_file() on path when change_branch ==1289 * o->branch1 && !alt_path, since that would needlessly touch1290 * path. We could call update_file_flags() with update_cache=01291 * and update_wd=0, but that's a no-op.1292 */1293if(change_branch != o->branch1 || alt_path)1294 ret =update_file(o,0, changed_oid, changed_mode, update_path);1295}1296free(alt_path);12971298return ret;1299}13001301static intconflict_rename_delete(struct merge_options *o,1302struct diff_filepair *pair,1303const char*rename_branch,1304const char*delete_branch)1305{1306const struct diff_filespec *orig = pair->one;1307const struct diff_filespec *dest = pair->two;13081309if(handle_change_delete(o,1310 o->call_depth ? orig->path : dest->path,1311 o->call_depth ? NULL : orig->path,1312&orig->oid, orig->mode,1313&dest->oid, dest->mode,1314 rename_branch, delete_branch,1315_("rename"),_("renamed")))1316return-1;13171318if(o->call_depth)1319returnremove_file_from_cache(dest->path);1320else1321returnupdate_stages(o, dest->path, NULL,1322 rename_branch == o->branch1 ? dest : NULL,1323 rename_branch == o->branch1 ? NULL : dest);1324}13251326static struct diff_filespec *filespec_from_entry(struct diff_filespec *target,1327struct stage_data *entry,1328int stage)1329{1330struct object_id *oid = &entry->stages[stage].oid;1331unsigned mode = entry->stages[stage].mode;1332if(mode ==0||is_null_oid(oid))1333return NULL;1334oidcpy(&target->oid, oid);1335 target->mode = mode;1336return target;1337}13381339static inthandle_file(struct merge_options *o,1340struct diff_filespec *rename,1341int stage,1342struct rename_conflict_info *ci)1343{1344char*dst_name = rename->path;1345struct stage_data *dst_entry;1346const char*cur_branch, *other_branch;1347struct diff_filespec other;1348struct diff_filespec *add;1349int ret;13501351if(stage ==2) {1352 dst_entry = ci->dst_entry1;1353 cur_branch = ci->branch1;1354 other_branch = ci->branch2;1355}else{1356 dst_entry = ci->dst_entry2;1357 cur_branch = ci->branch2;1358 other_branch = ci->branch1;1359}13601361 add =filespec_from_entry(&other, dst_entry, stage ^1);1362if(add) {1363int ren_src_was_dirty =was_dirty(o, rename->path);1364char*add_name =unique_path(o, rename->path, other_branch);1365if(update_file(o,0, &add->oid, add->mode, add_name))1366return-1;13671368if(ren_src_was_dirty) {1369output(o,1,_("Refusing to lose dirty file at%s"),1370 rename->path);1371}1372/*1373 * Because the double negatives somehow keep confusing me...1374 * 1) update_wd iff !ren_src_was_dirty.1375 * 2) no_wd iff !update_wd1376 * 3) so, no_wd == !!ren_src_was_dirty == ren_src_was_dirty1377 */1378remove_file(o,0, rename->path, ren_src_was_dirty);1379 dst_name =unique_path(o, rename->path, cur_branch);1380}else{1381if(dir_in_way(rename->path, !o->call_depth,0)) {1382 dst_name =unique_path(o, rename->path, cur_branch);1383output(o,1,_("%sis a directory in%sadding as%sinstead"),1384 rename->path, other_branch, dst_name);1385}else if(!o->call_depth &&1386would_lose_untracked(rename->path)) {1387 dst_name =unique_path(o, rename->path, cur_branch);1388output(o,1,_("Refusing to lose untracked file at%s; "1389"adding as%sinstead"),1390 rename->path, dst_name);1391}1392}1393if((ret =update_file(o,0, &rename->oid, rename->mode, dst_name)))1394;/* fall through, do allow dst_name to be released */1395else if(stage ==2)1396 ret =update_stages(o, rename->path, NULL, rename, add);1397else1398 ret =update_stages(o, rename->path, NULL, add, rename);13991400if(dst_name != rename->path)1401free(dst_name);14021403return ret;1404}14051406static intconflict_rename_rename_1to2(struct merge_options *o,1407struct rename_conflict_info *ci)1408{1409/* One file was renamed in both branches, but to different names. */1410struct diff_filespec *one = ci->pair1->one;1411struct diff_filespec *a = ci->pair1->two;1412struct diff_filespec *b = ci->pair2->two;14131414output(o,1,_("CONFLICT (rename/rename): "1415"Rename\"%s\"->\"%s\"in branch\"%s\""1416"rename\"%s\"->\"%s\"in\"%s\"%s"),1417 one->path, a->path, ci->branch1,1418 one->path, b->path, ci->branch2,1419 o->call_depth ?_(" (left unresolved)") :"");1420if(o->call_depth) {1421struct merge_file_info mfi;1422struct diff_filespec other;1423struct diff_filespec *add;1424if(merge_file_one(o, one->path,1425&one->oid, one->mode,1426&a->oid, a->mode,1427&b->oid, b->mode,1428 ci->branch1, ci->branch2, &mfi))1429return-1;14301431/*1432 * FIXME: For rename/add-source conflicts (if we could detect1433 * such), this is wrong. We should instead find a unique1434 * pathname and then either rename the add-source file to that1435 * unique path, or use that unique path instead of src here.1436 */1437if(update_file(o,0, &mfi.oid, mfi.mode, one->path))1438return-1;14391440/*1441 * Above, we put the merged content at the merge-base's1442 * path. Now we usually need to delete both a->path and1443 * b->path. However, the rename on each side of the merge1444 * could also be involved in a rename/add conflict. In1445 * such cases, we should keep the added file around,1446 * resolving the conflict at that path in its favor.1447 */1448 add =filespec_from_entry(&other, ci->dst_entry1,2^1);1449if(add) {1450if(update_file(o,0, &add->oid, add->mode, a->path))1451return-1;1452}1453else1454remove_file_from_cache(a->path);1455 add =filespec_from_entry(&other, ci->dst_entry2,3^1);1456if(add) {1457if(update_file(o,0, &add->oid, add->mode, b->path))1458return-1;1459}1460else1461remove_file_from_cache(b->path);1462}else if(handle_file(o, a,2, ci) ||handle_file(o, b,3, ci))1463return-1;14641465return0;1466}14671468static intconflict_rename_rename_2to1(struct merge_options *o,1469struct rename_conflict_info *ci)1470{1471/* Two files, a & b, were renamed to the same thing, c. */1472struct diff_filespec *a = ci->pair1->one;1473struct diff_filespec *b = ci->pair2->one;1474struct diff_filespec *c1 = ci->pair1->two;1475struct diff_filespec *c2 = ci->pair2->two;1476char*path = c1->path;/* == c2->path */1477struct merge_file_info mfi_c1;1478struct merge_file_info mfi_c2;1479int ret;14801481output(o,1,_("CONFLICT (rename/rename): "1482"Rename%s->%sin%s. "1483"Rename%s->%sin%s"),1484 a->path, c1->path, ci->branch1,1485 b->path, c2->path, ci->branch2);14861487remove_file(o,1, a->path, o->call_depth ||would_lose_untracked(a->path));1488remove_file(o,1, b->path, o->call_depth ||would_lose_untracked(b->path));14891490if(merge_file_special_markers(o, a, c1, &ci->ren1_other,1491 o->branch1, c1->path,1492 o->branch2, ci->ren1_other.path, &mfi_c1) ||1493merge_file_special_markers(o, b, &ci->ren2_other, c2,1494 o->branch1, ci->ren2_other.path,1495 o->branch2, c2->path, &mfi_c2))1496return-1;14971498if(o->call_depth) {1499/*1500 * If mfi_c1.clean && mfi_c2.clean, then it might make1501 * sense to do a two-way merge of those results. But, I1502 * think in all cases, it makes sense to have the virtual1503 * merge base just undo the renames; they can be detected1504 * again later for the non-recursive merge.1505 */1506remove_file(o,0, path,0);1507 ret =update_file(o,0, &mfi_c1.oid, mfi_c1.mode, a->path);1508if(!ret)1509 ret =update_file(o,0, &mfi_c2.oid, mfi_c2.mode,1510 b->path);1511}else{1512char*new_path1 =unique_path(o, path, ci->branch1);1513char*new_path2 =unique_path(o, path, ci->branch2);1514output(o,1,_("Renaming%sto%sand%sto%sinstead"),1515 a->path, new_path1, b->path, new_path2);1516if(was_dirty(o, path))1517output(o,1,_("Refusing to lose dirty file at%s"),1518 path);1519else if(would_lose_untracked(path))1520/*1521 * Only way we get here is if both renames were from1522 * a directory rename AND user had an untracked file1523 * at the location where both files end up after the1524 * two directory renames. See testcase 10d of t6043.1525 */1526output(o,1,_("Refusing to lose untracked file at "1527"%s, even though it's in the way."),1528 path);1529else1530remove_file(o,0, path,0);1531 ret =update_file(o,0, &mfi_c1.oid, mfi_c1.mode, new_path1);1532if(!ret)1533 ret =update_file(o,0, &mfi_c2.oid, mfi_c2.mode,1534 new_path2);1535/*1536 * unpack_trees() actually populates the index for us for1537 * "normal" rename/rename(2to1) situtations so that the1538 * correct entries are at the higher stages, which would1539 * make the call below to update_stages_for_stage_data1540 * unnecessary. However, if either of the renames came1541 * from a directory rename, then unpack_trees() will not1542 * have gotten the right data loaded into the index, so we1543 * need to do so now. (While it'd be tempting to move this1544 * call to update_stages_for_stage_data() to1545 * apply_directory_rename_modifications(), that would break1546 * our intermediate calls to would_lose_untracked() since1547 * those rely on the current in-memory index. See also the1548 * big "NOTE" in update_stages()).1549 */1550if(update_stages_for_stage_data(o, path, ci->dst_entry1))1551 ret = -1;15521553free(new_path2);1554free(new_path1);1555}15561557return ret;1558}15591560/*1561 * Get the diff_filepairs changed between o_tree and tree.1562 */1563static struct diff_queue_struct *get_diffpairs(struct merge_options *o,1564struct tree *o_tree,1565struct tree *tree)1566{1567struct diff_queue_struct *ret;1568struct diff_options opts;15691570diff_setup(&opts);1571 opts.flags.recursive =1;1572 opts.flags.rename_empty =0;1573 opts.detect_rename = DIFF_DETECT_RENAME;1574 opts.rename_limit = o->merge_rename_limit >=0? o->merge_rename_limit :1575 o->diff_rename_limit >=0? o->diff_rename_limit :15761000;1577 opts.rename_score = o->rename_score;1578 opts.show_rename_progress = o->show_rename_progress;1579 opts.output_format = DIFF_FORMAT_NO_OUTPUT;1580diff_setup_done(&opts);1581diff_tree_oid(&o_tree->object.oid, &tree->object.oid,"", &opts);1582diffcore_std(&opts);1583if(opts.needed_rename_limit > o->needed_rename_limit)1584 o->needed_rename_limit = opts.needed_rename_limit;15851586 ret =xmalloc(sizeof(*ret));1587*ret = diff_queued_diff;15881589 opts.output_format = DIFF_FORMAT_NO_OUTPUT;1590 diff_queued_diff.nr =0;1591 diff_queued_diff.queue = NULL;1592diff_flush(&opts);1593return ret;1594}15951596static inttree_has_path(struct tree *tree,const char*path)1597{1598struct object_id hashy;1599unsigned int mode_o;16001601return!get_tree_entry(&tree->object.oid, path,1602&hashy, &mode_o);1603}16041605/*1606 * Return a new string that replaces the beginning portion (which matches1607 * entry->dir), with entry->new_dir. In perl-speak:1608 * new_path_name = (old_path =~ s/entry->dir/entry->new_dir/);1609 * NOTE:1610 * Caller must ensure that old_path starts with entry->dir + '/'.1611 */1612static char*apply_dir_rename(struct dir_rename_entry *entry,1613const char*old_path)1614{1615struct strbuf new_path = STRBUF_INIT;1616int oldlen, newlen;16171618if(entry->non_unique_new_dir)1619return NULL;16201621 oldlen =strlen(entry->dir);1622 newlen = entry->new_dir.len + (strlen(old_path) - oldlen) +1;1623strbuf_grow(&new_path, newlen);1624strbuf_addbuf(&new_path, &entry->new_dir);1625strbuf_addstr(&new_path, &old_path[oldlen]);16261627returnstrbuf_detach(&new_path, NULL);1628}16291630static voidget_renamed_dir_portion(const char*old_path,const char*new_path,1631char**old_dir,char**new_dir)1632{1633char*end_of_old, *end_of_new;1634int old_len, new_len;16351636*old_dir = NULL;1637*new_dir = NULL;16381639/*1640 * For1641 * "a/b/c/d/e/foo.c" -> "a/b/some/thing/else/e/foo.c"1642 * the "e/foo.c" part is the same, we just want to know that1643 * "a/b/c/d" was renamed to "a/b/some/thing/else"1644 * so, for this example, this function returns "a/b/c/d" in1645 * *old_dir and "a/b/some/thing/else" in *new_dir.1646 *1647 * Also, if the basename of the file changed, we don't care. We1648 * want to know which portion of the directory, if any, changed.1649 */1650 end_of_old =strrchr(old_path,'/');1651 end_of_new =strrchr(new_path,'/');16521653if(end_of_old == NULL || end_of_new == NULL)1654return;1655while(*--end_of_new == *--end_of_old &&1656 end_of_old != old_path &&1657 end_of_new != new_path)1658;/* Do nothing; all in the while loop */1659/*1660 * We've found the first non-matching character in the directory1661 * paths. That means the current directory we were comparing1662 * represents the rename. Move end_of_old and end_of_new back1663 * to the full directory name.1664 */1665if(*end_of_old =='/')1666 end_of_old++;1667if(*end_of_old !='/')1668 end_of_new++;1669 end_of_old =strchr(end_of_old,'/');1670 end_of_new =strchr(end_of_new,'/');16711672/*1673 * It may have been the case that old_path and new_path were the same1674 * directory all along. Don't claim a rename if they're the same.1675 */1676 old_len = end_of_old - old_path;1677 new_len = end_of_new - new_path;16781679if(old_len != new_len ||strncmp(old_path, new_path, old_len)) {1680*old_dir =xstrndup(old_path, old_len);1681*new_dir =xstrndup(new_path, new_len);1682}1683}16841685static voidremove_hashmap_entries(struct hashmap *dir_renames,1686struct string_list *items_to_remove)1687{1688int i;1689struct dir_rename_entry *entry;16901691for(i =0; i < items_to_remove->nr; i++) {1692 entry = items_to_remove->items[i].util;1693hashmap_remove(dir_renames, entry, NULL);1694}1695string_list_clear(items_to_remove,0);1696}16971698/*1699 * See if there is a directory rename for path, and if there are any file1700 * level conflicts for the renamed location. If there is a rename and1701 * there are no conflicts, return the new name. Otherwise, return NULL.1702 */1703static char*handle_path_level_conflicts(struct merge_options *o,1704const char*path,1705struct dir_rename_entry *entry,1706struct hashmap *collisions,1707struct tree *tree)1708{1709char*new_path = NULL;1710struct collision_entry *collision_ent;1711int clean =1;1712struct strbuf collision_paths = STRBUF_INIT;17131714/*1715 * entry has the mapping of old directory name to new directory name1716 * that we want to apply to path.1717 */1718 new_path =apply_dir_rename(entry, path);17191720if(!new_path) {1721/* This should only happen when entry->non_unique_new_dir set */1722if(!entry->non_unique_new_dir)1723BUG("entry->non_unqiue_dir not set and !new_path");1724output(o,1,_("CONFLICT (directory rename split): "1725"Unclear where to place%sbecause directory "1726"%swas renamed to multiple other directories, "1727"with no destination getting a majority of the "1728"files."),1729 path, entry->dir);1730 clean =0;1731return NULL;1732}17331734/*1735 * The caller needs to have ensured that it has pre-populated1736 * collisions with all paths that map to new_path. Do a quick check1737 * to ensure that's the case.1738 */1739 collision_ent =collision_find_entry(collisions, new_path);1740if(collision_ent == NULL)1741BUG("collision_ent is NULL");17421743/*1744 * Check for one-sided add/add/.../add conflicts, i.e.1745 * where implicit renames from the other side doing1746 * directory rename(s) can affect this side of history1747 * to put multiple paths into the same location. Warn1748 * and bail on directory renames for such paths.1749 */1750if(collision_ent->reported_already) {1751 clean =0;1752}else if(tree_has_path(tree, new_path)) {1753 collision_ent->reported_already =1;1754strbuf_add_separated_string_list(&collision_paths,", ",1755&collision_ent->source_files);1756output(o,1,_("CONFLICT (implicit dir rename): Existing "1757"file/dir at%sin the way of implicit "1758"directory rename(s) putting the following "1759"path(s) there:%s."),1760 new_path, collision_paths.buf);1761 clean =0;1762}else if(collision_ent->source_files.nr >1) {1763 collision_ent->reported_already =1;1764strbuf_add_separated_string_list(&collision_paths,", ",1765&collision_ent->source_files);1766output(o,1,_("CONFLICT (implicit dir rename): Cannot map "1767"more than one path to%s; implicit directory "1768"renames tried to put these paths there:%s"),1769 new_path, collision_paths.buf);1770 clean =0;1771}17721773/* Free memory we no longer need */1774strbuf_release(&collision_paths);1775if(!clean && new_path) {1776free(new_path);1777return NULL;1778}17791780return new_path;1781}17821783/*1784 * There are a couple things we want to do at the directory level:1785 * 1. Check for both sides renaming to the same thing, in order to avoid1786 * implicit renaming of files that should be left in place. (See1787 * testcase 6b in t6043 for details.)1788 * 2. Prune directory renames if there are still files left in the1789 * the original directory. These represent a partial directory rename,1790 * i.e. a rename where only some of the files within the directory1791 * were renamed elsewhere. (Technically, this could be done earlier1792 * in get_directory_renames(), except that would prevent us from1793 * doing the previous check and thus failing testcase 6b.)1794 * 3. Check for rename/rename(1to2) conflicts (at the directory level).1795 * In the future, we could potentially record this info as well and1796 * omit reporting rename/rename(1to2) conflicts for each path within1797 * the affected directories, thus cleaning up the merge output.1798 * NOTE: We do NOT check for rename/rename(2to1) conflicts at the1799 * directory level, because merging directories is fine. If it1800 * causes conflicts for files within those merged directories, then1801 * that should be detected at the individual path level.1802 */1803static voidhandle_directory_level_conflicts(struct merge_options *o,1804struct hashmap *dir_re_head,1805struct tree *head,1806struct hashmap *dir_re_merge,1807struct tree *merge)1808{1809struct hashmap_iter iter;1810struct dir_rename_entry *head_ent;1811struct dir_rename_entry *merge_ent;18121813struct string_list remove_from_head = STRING_LIST_INIT_NODUP;1814struct string_list remove_from_merge = STRING_LIST_INIT_NODUP;18151816hashmap_iter_init(dir_re_head, &iter);1817while((head_ent =hashmap_iter_next(&iter))) {1818 merge_ent =dir_rename_find_entry(dir_re_merge, head_ent->dir);1819if(merge_ent &&1820!head_ent->non_unique_new_dir &&1821!merge_ent->non_unique_new_dir &&1822!strbuf_cmp(&head_ent->new_dir, &merge_ent->new_dir)) {1823/* 1. Renamed identically; remove it from both sides */1824string_list_append(&remove_from_head,1825 head_ent->dir)->util = head_ent;1826strbuf_release(&head_ent->new_dir);1827string_list_append(&remove_from_merge,1828 merge_ent->dir)->util = merge_ent;1829strbuf_release(&merge_ent->new_dir);1830}else if(tree_has_path(head, head_ent->dir)) {1831/* 2. This wasn't a directory rename after all */1832string_list_append(&remove_from_head,1833 head_ent->dir)->util = head_ent;1834strbuf_release(&head_ent->new_dir);1835}1836}18371838remove_hashmap_entries(dir_re_head, &remove_from_head);1839remove_hashmap_entries(dir_re_merge, &remove_from_merge);18401841hashmap_iter_init(dir_re_merge, &iter);1842while((merge_ent =hashmap_iter_next(&iter))) {1843 head_ent =dir_rename_find_entry(dir_re_head, merge_ent->dir);1844if(tree_has_path(merge, merge_ent->dir)) {1845/* 2. This wasn't a directory rename after all */1846string_list_append(&remove_from_merge,1847 merge_ent->dir)->util = merge_ent;1848}else if(head_ent &&1849!head_ent->non_unique_new_dir &&1850!merge_ent->non_unique_new_dir) {1851/* 3. rename/rename(1to2) */1852/*1853 * We can assume it's not rename/rename(1to1) because1854 * that was case (1), already checked above. So we1855 * know that head_ent->new_dir and merge_ent->new_dir1856 * are different strings.1857 */1858output(o,1,_("CONFLICT (rename/rename): "1859"Rename directory%s->%sin%s. "1860"Rename directory%s->%sin%s"),1861 head_ent->dir, head_ent->new_dir.buf, o->branch1,1862 head_ent->dir, merge_ent->new_dir.buf, o->branch2);1863string_list_append(&remove_from_head,1864 head_ent->dir)->util = head_ent;1865strbuf_release(&head_ent->new_dir);1866string_list_append(&remove_from_merge,1867 merge_ent->dir)->util = merge_ent;1868strbuf_release(&merge_ent->new_dir);1869}1870}18711872remove_hashmap_entries(dir_re_head, &remove_from_head);1873remove_hashmap_entries(dir_re_merge, &remove_from_merge);1874}18751876static struct hashmap *get_directory_renames(struct diff_queue_struct *pairs,1877struct tree *tree)1878{1879struct hashmap *dir_renames;1880struct hashmap_iter iter;1881struct dir_rename_entry *entry;1882int i;18831884/*1885 * Typically, we think of a directory rename as all files from a1886 * certain directory being moved to a target directory. However,1887 * what if someone first moved two files from the original1888 * directory in one commit, and then renamed the directory1889 * somewhere else in a later commit? At merge time, we just know1890 * that files from the original directory went to two different1891 * places, and that the bulk of them ended up in the same place.1892 * We want each directory rename to represent where the bulk of the1893 * files from that directory end up; this function exists to find1894 * where the bulk of the files went.1895 *1896 * The first loop below simply iterates through the list of file1897 * renames, finding out how often each directory rename pair1898 * possibility occurs.1899 */1900 dir_renames =xmalloc(sizeof(*dir_renames));1901dir_rename_init(dir_renames);1902for(i =0; i < pairs->nr; ++i) {1903struct string_list_item *item;1904int*count;1905struct diff_filepair *pair = pairs->queue[i];1906char*old_dir, *new_dir;19071908/* File not part of directory rename if it wasn't renamed */1909if(pair->status !='R')1910continue;19111912get_renamed_dir_portion(pair->one->path, pair->two->path,1913&old_dir, &new_dir);1914if(!old_dir)1915/* Directory didn't change at all; ignore this one. */1916continue;19171918 entry =dir_rename_find_entry(dir_renames, old_dir);1919if(!entry) {1920 entry =xmalloc(sizeof(*entry));1921dir_rename_entry_init(entry, old_dir);1922hashmap_put(dir_renames, entry);1923}else{1924free(old_dir);1925}1926 item =string_list_lookup(&entry->possible_new_dirs, new_dir);1927if(!item) {1928 item =string_list_insert(&entry->possible_new_dirs,1929 new_dir);1930 item->util =xcalloc(1,sizeof(int));1931}else{1932free(new_dir);1933}1934 count = item->util;1935*count +=1;1936}19371938/*1939 * For each directory with files moved out of it, we find out which1940 * target directory received the most files so we can declare it to1941 * be the "winning" target location for the directory rename. This1942 * winner gets recorded in new_dir. If there is no winner1943 * (multiple target directories received the same number of files),1944 * we set non_unique_new_dir. Once we've determined the winner (or1945 * that there is no winner), we no longer need possible_new_dirs.1946 */1947hashmap_iter_init(dir_renames, &iter);1948while((entry =hashmap_iter_next(&iter))) {1949int max =0;1950int bad_max =0;1951char*best = NULL;19521953for(i =0; i < entry->possible_new_dirs.nr; i++) {1954int*count = entry->possible_new_dirs.items[i].util;19551956if(*count == max)1957 bad_max = max;1958else if(*count > max) {1959 max = *count;1960 best = entry->possible_new_dirs.items[i].string;1961}1962}1963if(bad_max == max)1964 entry->non_unique_new_dir =1;1965else{1966assert(entry->new_dir.len ==0);1967strbuf_addstr(&entry->new_dir, best);1968}1969/*1970 * The relevant directory sub-portion of the original full1971 * filepaths were xstrndup'ed before inserting into1972 * possible_new_dirs, and instead of manually iterating the1973 * list and free'ing each, just lie and tell1974 * possible_new_dirs that it did the strdup'ing so that it1975 * will free them for us.1976 */1977 entry->possible_new_dirs.strdup_strings =1;1978string_list_clear(&entry->possible_new_dirs,1);1979}19801981return dir_renames;1982}19831984static struct dir_rename_entry *check_dir_renamed(const char*path,1985struct hashmap *dir_renames)1986{1987char temp[PATH_MAX];1988char*end;1989struct dir_rename_entry *entry;19901991strcpy(temp, path);1992while((end =strrchr(temp,'/'))) {1993*end ='\0';1994 entry =dir_rename_find_entry(dir_renames, temp);1995if(entry)1996return entry;1997}1998return NULL;1999}20002001static voidcompute_collisions(struct hashmap *collisions,2002struct hashmap *dir_renames,2003struct diff_queue_struct *pairs)2004{2005int i;20062007/*2008 * Multiple files can be mapped to the same path due to directory2009 * renames done by the other side of history. Since that other2010 * side of history could have merged multiple directories into one,2011 * if our side of history added the same file basename to each of2012 * those directories, then all N of them would get implicitly2013 * renamed by the directory rename detection into the same path,2014 * and we'd get an add/add/.../add conflict, and all those adds2015 * from *this* side of history. This is not representable in the2016 * index, and users aren't going to easily be able to make sense of2017 * it. So we need to provide a good warning about what's2018 * happening, and fall back to no-directory-rename detection2019 * behavior for those paths.2020 *2021 * See testcases 9e and all of section 5 from t6043 for examples.2022 */2023collision_init(collisions);20242025for(i =0; i < pairs->nr; ++i) {2026struct dir_rename_entry *dir_rename_ent;2027struct collision_entry *collision_ent;2028char*new_path;2029struct diff_filepair *pair = pairs->queue[i];20302031if(pair->status !='A'&& pair->status !='R')2032continue;2033 dir_rename_ent =check_dir_renamed(pair->two->path,2034 dir_renames);2035if(!dir_rename_ent)2036continue;20372038 new_path =apply_dir_rename(dir_rename_ent, pair->two->path);2039if(!new_path)2040/*2041 * dir_rename_ent->non_unique_new_path is true, which2042 * means there is no directory rename for us to use,2043 * which means it won't cause us any additional2044 * collisions.2045 */2046continue;2047 collision_ent =collision_find_entry(collisions, new_path);2048if(!collision_ent) {2049 collision_ent =xcalloc(1,2050sizeof(struct collision_entry));2051hashmap_entry_init(collision_ent,strhash(new_path));2052hashmap_put(collisions, collision_ent);2053 collision_ent->target_file = new_path;2054}else{2055free(new_path);2056}2057string_list_insert(&collision_ent->source_files,2058 pair->two->path);2059}2060}20612062static char*check_for_directory_rename(struct merge_options *o,2063const char*path,2064struct tree *tree,2065struct hashmap *dir_renames,2066struct hashmap *dir_rename_exclusions,2067struct hashmap *collisions,2068int*clean_merge)2069{2070char*new_path = NULL;2071struct dir_rename_entry *entry =check_dir_renamed(path, dir_renames);2072struct dir_rename_entry *oentry = NULL;20732074if(!entry)2075return new_path;20762077/*2078 * This next part is a little weird. We do not want to do an2079 * implicit rename into a directory we renamed on our side, because2080 * that will result in a spurious rename/rename(1to2) conflict. An2081 * example:2082 * Base commit: dumbdir/afile, otherdir/bfile2083 * Side 1: smrtdir/afile, otherdir/bfile2084 * Side 2: dumbdir/afile, dumbdir/bfile2085 * Here, while working on Side 1, we could notice that otherdir was2086 * renamed/merged to dumbdir, and change the diff_filepair for2087 * otherdir/bfile into a rename into dumbdir/bfile. However, Side2088 * 2 will notice the rename from dumbdir to smrtdir, and do the2089 * transitive rename to move it from dumbdir/bfile to2090 * smrtdir/bfile. That gives us bfile in dumbdir vs being in2091 * smrtdir, a rename/rename(1to2) conflict. We really just want2092 * the file to end up in smrtdir. And the way to achieve that is2093 * to not let Side1 do the rename to dumbdir, since we know that is2094 * the source of one of our directory renames.2095 *2096 * That's why oentry and dir_rename_exclusions is here.2097 *2098 * As it turns out, this also prevents N-way transient rename2099 * confusion; See testcases 9c and 9d of t6043.2100 */2101 oentry =dir_rename_find_entry(dir_rename_exclusions, entry->new_dir.buf);2102if(oentry) {2103output(o,1,_("WARNING: Avoiding applying%s->%srename "2104"to%s, because%sitself was renamed."),2105 entry->dir, entry->new_dir.buf, path, entry->new_dir.buf);2106}else{2107 new_path =handle_path_level_conflicts(o, path, entry,2108 collisions, tree);2109*clean_merge &= (new_path != NULL);2110}21112112return new_path;2113}21142115static voidapply_directory_rename_modifications(struct merge_options *o,2116struct diff_filepair *pair,2117char*new_path,2118struct rename *re,2119struct tree *tree,2120struct tree *o_tree,2121struct tree *a_tree,2122struct tree *b_tree,2123struct string_list *entries,2124int*clean)2125{2126struct string_list_item *item;2127int stage = (tree == a_tree ?2:3);2128int update_wd;21292130/*2131 * In all cases where we can do directory rename detection,2132 * unpack_trees() will have read pair->two->path into the2133 * index and the working copy. We need to remove it so that2134 * we can instead place it at new_path. It is guaranteed to2135 * not be untracked (unpack_trees() would have errored out2136 * saying the file would have been overwritten), but it might2137 * be dirty, though.2138 */2139 update_wd = !was_dirty(o, pair->two->path);2140if(!update_wd)2141output(o,1,_("Refusing to lose dirty file at%s"),2142 pair->two->path);2143remove_file(o,1, pair->two->path, !update_wd);21442145/* Find or create a new re->dst_entry */2146 item =string_list_lookup(entries, new_path);2147if(item) {2148/*2149 * Since we're renaming on this side of history, and it's2150 * due to a directory rename on the other side of history2151 * (which we only allow when the directory in question no2152 * longer exists on the other side of history), the2153 * original entry for re->dst_entry is no longer2154 * necessary...2155 */2156 re->dst_entry->processed =1;21572158/*2159 * ...because we'll be using this new one.2160 */2161 re->dst_entry = item->util;2162}else{2163/*2164 * re->dst_entry is for the before-dir-rename path, and we2165 * need it to hold information for the after-dir-rename2166 * path. Before creating a new entry, we need to mark the2167 * old one as unnecessary (...unless it is shared by2168 * src_entry, i.e. this didn't use to be a rename, in which2169 * case we can just allow the normal processing to happen2170 * for it).2171 */2172if(pair->status =='R')2173 re->dst_entry->processed =1;21742175 re->dst_entry =insert_stage_data(new_path,2176 o_tree, a_tree, b_tree,2177 entries);2178 item =string_list_insert(entries, new_path);2179 item->util = re->dst_entry;2180}21812182/*2183 * Update the stage_data with the information about the path we are2184 * moving into place. That slot will be empty and available for us2185 * to write to because of the collision checks in2186 * handle_path_level_conflicts(). In other words,2187 * re->dst_entry->stages[stage].oid will be the null_oid, so it's2188 * open for us to write to.2189 *2190 * It may be tempting to actually update the index at this point as2191 * well, using update_stages_for_stage_data(), but as per the big2192 * "NOTE" in update_stages(), doing so will modify the current2193 * in-memory index which will break calls to would_lose_untracked()2194 * that we need to make. Instead, we need to just make sure that2195 * the various conflict_rename_*() functions update the index2196 * explicitly rather than relying on unpack_trees() to have done it.2197 */2198get_tree_entry(&tree->object.oid,2199 pair->two->path,2200&re->dst_entry->stages[stage].oid,2201&re->dst_entry->stages[stage].mode);22022203/* Update pair status */2204if(pair->status =='A') {2205/*2206 * Recording rename information for this add makes it look2207 * like a rename/delete conflict. Make sure we can2208 * correctly handle this as an add that was moved to a new2209 * directory instead of reporting a rename/delete conflict.2210 */2211 re->add_turned_into_rename =1;2212}2213/*2214 * We don't actually look at pair->status again, but it seems2215 * pedagogically correct to adjust it.2216 */2217 pair->status ='R';22182219/*2220 * Finally, record the new location.2221 */2222 pair->two->path = new_path;2223}22242225/*2226 * Get information of all renames which occurred in 'pairs', making use of2227 * any implicit directory renames inferred from the other side of history.2228 * We need the three trees in the merge ('o_tree', 'a_tree' and 'b_tree')2229 * to be able to associate the correct cache entries with the rename2230 * information; tree is always equal to either a_tree or b_tree.2231 */2232static struct string_list *get_renames(struct merge_options *o,2233struct diff_queue_struct *pairs,2234struct hashmap *dir_renames,2235struct hashmap *dir_rename_exclusions,2236struct tree *tree,2237struct tree *o_tree,2238struct tree *a_tree,2239struct tree *b_tree,2240struct string_list *entries,2241int*clean_merge)2242{2243int i;2244struct hashmap collisions;2245struct hashmap_iter iter;2246struct collision_entry *e;2247struct string_list *renames;22482249compute_collisions(&collisions, dir_renames, pairs);2250 renames =xcalloc(1,sizeof(struct string_list));22512252for(i =0; i < pairs->nr; ++i) {2253struct string_list_item *item;2254struct rename *re;2255struct diff_filepair *pair = pairs->queue[i];2256char*new_path;/* non-NULL only with directory renames */22572258if(pair->status !='A'&& pair->status !='R') {2259diff_free_filepair(pair);2260continue;2261}2262 new_path =check_for_directory_rename(o, pair->two->path, tree,2263 dir_renames,2264 dir_rename_exclusions,2265&collisions,2266 clean_merge);2267if(pair->status !='R'&& !new_path) {2268diff_free_filepair(pair);2269continue;2270}22712272 re =xmalloc(sizeof(*re));2273 re->processed =0;2274 re->add_turned_into_rename =0;2275 re->pair = pair;2276 item =string_list_lookup(entries, re->pair->one->path);2277if(!item)2278 re->src_entry =insert_stage_data(re->pair->one->path,2279 o_tree, a_tree, b_tree, entries);2280else2281 re->src_entry = item->util;22822283 item =string_list_lookup(entries, re->pair->two->path);2284if(!item)2285 re->dst_entry =insert_stage_data(re->pair->two->path,2286 o_tree, a_tree, b_tree, entries);2287else2288 re->dst_entry = item->util;2289 item =string_list_insert(renames, pair->one->path);2290 item->util = re;2291if(new_path)2292apply_directory_rename_modifications(o, pair, new_path,2293 re, tree, o_tree,2294 a_tree, b_tree,2295 entries,2296 clean_merge);2297}22982299hashmap_iter_init(&collisions, &iter);2300while((e =hashmap_iter_next(&iter))) {2301free(e->target_file);2302string_list_clear(&e->source_files,0);2303}2304hashmap_free(&collisions,1);2305return renames;2306}23072308static intprocess_renames(struct merge_options *o,2309struct string_list *a_renames,2310struct string_list *b_renames)2311{2312int clean_merge =1, i, j;2313struct string_list a_by_dst = STRING_LIST_INIT_NODUP;2314struct string_list b_by_dst = STRING_LIST_INIT_NODUP;2315const struct rename *sre;23162317for(i =0; i < a_renames->nr; i++) {2318 sre = a_renames->items[i].util;2319string_list_insert(&a_by_dst, sre->pair->two->path)->util2320= (void*)sre;2321}2322for(i =0; i < b_renames->nr; i++) {2323 sre = b_renames->items[i].util;2324string_list_insert(&b_by_dst, sre->pair->two->path)->util2325= (void*)sre;2326}23272328for(i =0, j =0; i < a_renames->nr || j < b_renames->nr;) {2329struct string_list *renames1, *renames2Dst;2330struct rename *ren1 = NULL, *ren2 = NULL;2331const char*branch1, *branch2;2332const char*ren1_src, *ren1_dst;2333struct string_list_item *lookup;23342335if(i >= a_renames->nr) {2336 ren2 = b_renames->items[j++].util;2337}else if(j >= b_renames->nr) {2338 ren1 = a_renames->items[i++].util;2339}else{2340int compare =strcmp(a_renames->items[i].string,2341 b_renames->items[j].string);2342if(compare <=0)2343 ren1 = a_renames->items[i++].util;2344if(compare >=0)2345 ren2 = b_renames->items[j++].util;2346}23472348/* TODO: refactor, so that 1/2 are not needed */2349if(ren1) {2350 renames1 = a_renames;2351 renames2Dst = &b_by_dst;2352 branch1 = o->branch1;2353 branch2 = o->branch2;2354}else{2355 renames1 = b_renames;2356 renames2Dst = &a_by_dst;2357 branch1 = o->branch2;2358 branch2 = o->branch1;2359SWAP(ren2, ren1);2360}23612362if(ren1->processed)2363continue;2364 ren1->processed =1;2365 ren1->dst_entry->processed =1;2366/* BUG: We should only mark src_entry as processed if we2367 * are not dealing with a rename + add-source case.2368 */2369 ren1->src_entry->processed =1;23702371 ren1_src = ren1->pair->one->path;2372 ren1_dst = ren1->pair->two->path;23732374if(ren2) {2375/* One file renamed on both sides */2376const char*ren2_src = ren2->pair->one->path;2377const char*ren2_dst = ren2->pair->two->path;2378enum rename_type rename_type;2379if(strcmp(ren1_src, ren2_src) !=0)2380die("BUG: ren1_src != ren2_src");2381 ren2->dst_entry->processed =1;2382 ren2->processed =1;2383if(strcmp(ren1_dst, ren2_dst) !=0) {2384 rename_type = RENAME_ONE_FILE_TO_TWO;2385 clean_merge =0;2386}else{2387 rename_type = RENAME_ONE_FILE_TO_ONE;2388/* BUG: We should only remove ren1_src in2389 * the base stage (think of rename +2390 * add-source cases).2391 */2392remove_file(o,1, ren1_src,1);2393update_entry(ren1->dst_entry,2394 ren1->pair->one,2395 ren1->pair->two,2396 ren2->pair->two);2397}2398setup_rename_conflict_info(rename_type,2399 ren1->pair,2400 ren2->pair,2401 branch1,2402 branch2,2403 ren1->dst_entry,2404 ren2->dst_entry,2405 o,2406 NULL,2407 NULL);2408}else if((lookup =string_list_lookup(renames2Dst, ren1_dst))) {2409/* Two different files renamed to the same thing */2410char*ren2_dst;2411 ren2 = lookup->util;2412 ren2_dst = ren2->pair->two->path;2413if(strcmp(ren1_dst, ren2_dst) !=0)2414die("BUG: ren1_dst != ren2_dst");24152416 clean_merge =0;2417 ren2->processed =1;2418/*2419 * BUG: We should only mark src_entry as processed2420 * if we are not dealing with a rename + add-source2421 * case.2422 */2423 ren2->src_entry->processed =1;24242425setup_rename_conflict_info(RENAME_TWO_FILES_TO_ONE,2426 ren1->pair,2427 ren2->pair,2428 branch1,2429 branch2,2430 ren1->dst_entry,2431 ren2->dst_entry,2432 o,2433 ren1->src_entry,2434 ren2->src_entry);24352436}else{2437/* Renamed in 1, maybe changed in 2 */2438/* we only use sha1 and mode of these */2439struct diff_filespec src_other, dst_other;2440int try_merge;24412442/*2443 * unpack_trees loads entries from common-commit2444 * into stage 1, from head-commit into stage 2, and2445 * from merge-commit into stage 3. We keep track2446 * of which side corresponds to the rename.2447 */2448int renamed_stage = a_renames == renames1 ?2:3;2449int other_stage = a_renames == renames1 ?3:2;24502451/* BUG: We should only remove ren1_src in the base2452 * stage and in other_stage (think of rename +2453 * add-source case).2454 */2455remove_file(o,1, ren1_src,2456 renamed_stage ==2|| !was_tracked(o, ren1_src));24572458oidcpy(&src_other.oid,2459&ren1->src_entry->stages[other_stage].oid);2460 src_other.mode = ren1->src_entry->stages[other_stage].mode;2461oidcpy(&dst_other.oid,2462&ren1->dst_entry->stages[other_stage].oid);2463 dst_other.mode = ren1->dst_entry->stages[other_stage].mode;2464 try_merge =0;24652466if(oid_eq(&src_other.oid, &null_oid) &&2467 ren1->add_turned_into_rename) {2468setup_rename_conflict_info(RENAME_DIR,2469 ren1->pair,2470 NULL,2471 branch1,2472 branch2,2473 ren1->dst_entry,2474 NULL,2475 o,2476 NULL,2477 NULL);2478}else if(oid_eq(&src_other.oid, &null_oid)) {2479setup_rename_conflict_info(RENAME_DELETE,2480 ren1->pair,2481 NULL,2482 branch1,2483 branch2,2484 ren1->dst_entry,2485 NULL,2486 o,2487 NULL,2488 NULL);2489}else if((dst_other.mode == ren1->pair->two->mode) &&2490oid_eq(&dst_other.oid, &ren1->pair->two->oid)) {2491/*2492 * Added file on the other side identical to2493 * the file being renamed: clean merge.2494 * Also, there is no need to overwrite the2495 * file already in the working copy, so call2496 * update_file_flags() instead of2497 * update_file().2498 */2499if(update_file_flags(o,2500&ren1->pair->two->oid,2501 ren1->pair->two->mode,2502 ren1_dst,25031,/* update_cache */25040/* update_wd */))2505 clean_merge = -1;2506}else if(!oid_eq(&dst_other.oid, &null_oid)) {2507 clean_merge =0;2508 try_merge =1;2509output(o,1,_("CONFLICT (rename/add): Rename%s->%sin%s. "2510"%sadded in%s"),2511 ren1_src, ren1_dst, branch1,2512 ren1_dst, branch2);2513if(o->call_depth) {2514struct merge_file_info mfi;2515if(merge_file_one(o, ren1_dst, &null_oid,0,2516&ren1->pair->two->oid,2517 ren1->pair->two->mode,2518&dst_other.oid,2519 dst_other.mode,2520 branch1, branch2, &mfi)) {2521 clean_merge = -1;2522goto cleanup_and_return;2523}2524output(o,1,_("Adding merged%s"), ren1_dst);2525if(update_file(o,0, &mfi.oid,2526 mfi.mode, ren1_dst))2527 clean_merge = -1;2528 try_merge =0;2529}else{2530char*new_path =unique_path(o, ren1_dst, branch2);2531output(o,1,_("Adding as%sinstead"), new_path);2532if(update_file(o,0, &dst_other.oid,2533 dst_other.mode, new_path))2534 clean_merge = -1;2535free(new_path);2536}2537}else2538 try_merge =1;25392540if(clean_merge <0)2541goto cleanup_and_return;2542if(try_merge) {2543struct diff_filespec *one, *a, *b;2544 src_other.path = (char*)ren1_src;25452546 one = ren1->pair->one;2547if(a_renames == renames1) {2548 a = ren1->pair->two;2549 b = &src_other;2550}else{2551 b = ren1->pair->two;2552 a = &src_other;2553}2554update_entry(ren1->dst_entry, one, a, b);2555setup_rename_conflict_info(RENAME_NORMAL,2556 ren1->pair,2557 NULL,2558 branch1,2559 NULL,2560 ren1->dst_entry,2561 NULL,2562 o,2563 NULL,2564 NULL);2565}2566}2567}2568cleanup_and_return:2569string_list_clear(&a_by_dst,0);2570string_list_clear(&b_by_dst,0);25712572return clean_merge;2573}25742575struct rename_info {2576struct string_list *head_renames;2577struct string_list *merge_renames;2578};25792580static voidinitial_cleanup_rename(struct diff_queue_struct *pairs,2581struct hashmap *dir_renames)2582{2583struct hashmap_iter iter;2584struct dir_rename_entry *e;25852586hashmap_iter_init(dir_renames, &iter);2587while((e =hashmap_iter_next(&iter))) {2588free(e->dir);2589strbuf_release(&e->new_dir);2590/* possible_new_dirs already cleared in get_directory_renames */2591}2592hashmap_free(dir_renames,1);2593free(dir_renames);25942595free(pairs->queue);2596free(pairs);2597}25982599static inthandle_renames(struct merge_options *o,2600struct tree *common,2601struct tree *head,2602struct tree *merge,2603struct string_list *entries,2604struct rename_info *ri)2605{2606struct diff_queue_struct *head_pairs, *merge_pairs;2607struct hashmap *dir_re_head, *dir_re_merge;2608int clean =1;26092610 ri->head_renames = NULL;2611 ri->merge_renames = NULL;26122613if(!o->detect_rename)2614return1;26152616 head_pairs =get_diffpairs(o, common, head);2617 merge_pairs =get_diffpairs(o, common, merge);26182619 dir_re_head =get_directory_renames(head_pairs, head);2620 dir_re_merge =get_directory_renames(merge_pairs, merge);26212622handle_directory_level_conflicts(o,2623 dir_re_head, head,2624 dir_re_merge, merge);26252626 ri->head_renames =get_renames(o, head_pairs,2627 dir_re_merge, dir_re_head, head,2628 common, head, merge, entries,2629&clean);2630if(clean <0)2631goto cleanup;2632 ri->merge_renames =get_renames(o, merge_pairs,2633 dir_re_head, dir_re_merge, merge,2634 common, head, merge, entries,2635&clean);2636if(clean <0)2637goto cleanup;2638 clean &=process_renames(o, ri->head_renames, ri->merge_renames);26392640cleanup:2641/*2642 * Some cleanup is deferred until cleanup_renames() because the2643 * data structures are still needed and referenced in2644 * process_entry(). But there are a few things we can free now.2645 */2646initial_cleanup_rename(head_pairs, dir_re_head);2647initial_cleanup_rename(merge_pairs, dir_re_merge);26482649return clean;2650}26512652static voidfinal_cleanup_rename(struct string_list *rename)2653{2654const struct rename *re;2655int i;26562657if(rename == NULL)2658return;26592660for(i =0; i < rename->nr; i++) {2661 re = rename->items[i].util;2662diff_free_filepair(re->pair);2663}2664string_list_clear(rename,1);2665free(rename);2666}26672668static voidfinal_cleanup_renames(struct rename_info *re_info)2669{2670final_cleanup_rename(re_info->head_renames);2671final_cleanup_rename(re_info->merge_renames);2672}26732674static struct object_id *stage_oid(const struct object_id *oid,unsigned mode)2675{2676return(is_null_oid(oid) || mode ==0) ? NULL: (struct object_id *)oid;2677}26782679static intread_oid_strbuf(struct merge_options *o,2680const struct object_id *oid,struct strbuf *dst)2681{2682void*buf;2683enum object_type type;2684unsigned long size;2685 buf =read_object_file(oid, &type, &size);2686if(!buf)2687returnerr(o,_("cannot read object%s"),oid_to_hex(oid));2688if(type != OBJ_BLOB) {2689free(buf);2690returnerr(o,_("object%sis not a blob"),oid_to_hex(oid));2691}2692strbuf_attach(dst, buf, size, size +1);2693return0;2694}26952696static intblob_unchanged(struct merge_options *opt,2697const struct object_id *o_oid,2698unsigned o_mode,2699const struct object_id *a_oid,2700unsigned a_mode,2701int renormalize,const char*path)2702{2703struct strbuf o = STRBUF_INIT;2704struct strbuf a = STRBUF_INIT;2705int ret =0;/* assume changed for safety */27062707if(a_mode != o_mode)2708return0;2709if(oid_eq(o_oid, a_oid))2710return1;2711if(!renormalize)2712return0;27132714assert(o_oid && a_oid);2715if(read_oid_strbuf(opt, o_oid, &o) ||read_oid_strbuf(opt, a_oid, &a))2716goto error_return;2717/*2718 * Note: binary | is used so that both renormalizations are2719 * performed. Comparison can be skipped if both files are2720 * unchanged since their sha1s have already been compared.2721 */2722if(renormalize_buffer(&the_index, path, o.buf, o.len, &o) |2723renormalize_buffer(&the_index, path, a.buf, a.len, &a))2724 ret = (o.len == a.len && !memcmp(o.buf, a.buf, o.len));27252726error_return:2727strbuf_release(&o);2728strbuf_release(&a);2729return ret;2730}27312732static inthandle_modify_delete(struct merge_options *o,2733const char*path,2734struct object_id *o_oid,int o_mode,2735struct object_id *a_oid,int a_mode,2736struct object_id *b_oid,int b_mode)2737{2738const char*modify_branch, *delete_branch;2739struct object_id *changed_oid;2740int changed_mode;27412742if(a_oid) {2743 modify_branch = o->branch1;2744 delete_branch = o->branch2;2745 changed_oid = a_oid;2746 changed_mode = a_mode;2747}else{2748 modify_branch = o->branch2;2749 delete_branch = o->branch1;2750 changed_oid = b_oid;2751 changed_mode = b_mode;2752}27532754returnhandle_change_delete(o,2755 path, NULL,2756 o_oid, o_mode,2757 changed_oid, changed_mode,2758 modify_branch, delete_branch,2759_("modify"),_("modified"));2760}27612762static intmerge_content(struct merge_options *o,2763const char*path,2764int is_dirty,2765struct object_id *o_oid,int o_mode,2766struct object_id *a_oid,int a_mode,2767struct object_id *b_oid,int b_mode,2768struct rename_conflict_info *rename_conflict_info)2769{2770const char*reason =_("content");2771const char*path1 = NULL, *path2 = NULL;2772struct merge_file_info mfi;2773struct diff_filespec one, a, b;2774unsigned df_conflict_remains =0;27752776if(!o_oid) {2777 reason =_("add/add");2778 o_oid = (struct object_id *)&null_oid;2779}2780 one.path = a.path = b.path = (char*)path;2781oidcpy(&one.oid, o_oid);2782 one.mode = o_mode;2783oidcpy(&a.oid, a_oid);2784 a.mode = a_mode;2785oidcpy(&b.oid, b_oid);2786 b.mode = b_mode;27872788if(rename_conflict_info) {2789struct diff_filepair *pair1 = rename_conflict_info->pair1;27902791 path1 = (o->branch1 == rename_conflict_info->branch1) ?2792 pair1->two->path : pair1->one->path;2793/* If rename_conflict_info->pair2 != NULL, we are in2794 * RENAME_ONE_FILE_TO_ONE case. Otherwise, we have a2795 * normal rename.2796 */2797 path2 = (rename_conflict_info->pair2 ||2798 o->branch2 == rename_conflict_info->branch1) ?2799 pair1->two->path : pair1->one->path;28002801if(dir_in_way(path, !o->call_depth,2802S_ISGITLINK(pair1->two->mode)))2803 df_conflict_remains =1;2804}2805if(merge_file_special_markers(o, &one, &a, &b,2806 o->branch1, path1,2807 o->branch2, path2, &mfi))2808return-1;28092810if(mfi.clean && !df_conflict_remains &&2811oid_eq(&mfi.oid, a_oid) && mfi.mode == a_mode) {2812int path_renamed_outside_HEAD;2813output(o,3,_("Skipped%s(merged same as existing)"), path);2814/*2815 * The content merge resulted in the same file contents we2816 * already had. We can return early if those file contents2817 * are recorded at the correct path (which may not be true2818 * if the merge involves a rename).2819 */2820 path_renamed_outside_HEAD = !path2 || !strcmp(path, path2);2821if(!path_renamed_outside_HEAD) {2822if(add_cacheinfo(o, mfi.mode, &mfi.oid, path,28230, (!o->call_depth && !is_dirty),0))2824return-1;2825return mfi.clean;2826}2827}else2828output(o,2,_("Auto-merging%s"), path);28292830if(!mfi.clean) {2831if(S_ISGITLINK(mfi.mode))2832 reason =_("submodule");2833output(o,1,_("CONFLICT (%s): Merge conflict in%s"),2834 reason, path);2835if(rename_conflict_info && !df_conflict_remains)2836if(update_stages(o, path, &one, &a, &b))2837return-1;2838}28392840if(df_conflict_remains || is_dirty) {2841char*new_path;2842if(o->call_depth) {2843remove_file_from_cache(path);2844}else{2845if(!mfi.clean) {2846if(update_stages(o, path, &one, &a, &b))2847return-1;2848}else{2849int file_from_stage2 =was_tracked(o, path);2850struct diff_filespec merged;2851oidcpy(&merged.oid, &mfi.oid);2852 merged.mode = mfi.mode;28532854if(update_stages(o, path, NULL,2855 file_from_stage2 ? &merged : NULL,2856 file_from_stage2 ? NULL : &merged))2857return-1;2858}28592860}2861 new_path =unique_path(o, path, rename_conflict_info->branch1);2862if(is_dirty) {2863output(o,1,_("Refusing to lose dirty file at%s"),2864 path);2865}2866output(o,1,_("Adding as%sinstead"), new_path);2867if(update_file(o,0, &mfi.oid, mfi.mode, new_path)) {2868free(new_path);2869return-1;2870}2871free(new_path);2872 mfi.clean =0;2873}else if(update_file(o, mfi.clean, &mfi.oid, mfi.mode, path))2874return-1;2875return!is_dirty && mfi.clean;2876}28772878static intconflict_rename_normal(struct merge_options *o,2879const char*path,2880struct object_id *o_oid,unsigned int o_mode,2881struct object_id *a_oid,unsigned int a_mode,2882struct object_id *b_oid,unsigned int b_mode,2883struct rename_conflict_info *ci)2884{2885/* Merge the content and write it out */2886returnmerge_content(o, path,was_dirty(o, path),2887 o_oid, o_mode, a_oid, a_mode, b_oid, b_mode,2888 ci);2889}28902891/* Per entry merge function */2892static intprocess_entry(struct merge_options *o,2893const char*path,struct stage_data *entry)2894{2895int clean_merge =1;2896int normalize = o->renormalize;2897unsigned o_mode = entry->stages[1].mode;2898unsigned a_mode = entry->stages[2].mode;2899unsigned b_mode = entry->stages[3].mode;2900struct object_id *o_oid =stage_oid(&entry->stages[1].oid, o_mode);2901struct object_id *a_oid =stage_oid(&entry->stages[2].oid, a_mode);2902struct object_id *b_oid =stage_oid(&entry->stages[3].oid, b_mode);29032904 entry->processed =1;2905if(entry->rename_conflict_info) {2906struct rename_conflict_info *conflict_info = entry->rename_conflict_info;2907switch(conflict_info->rename_type) {2908case RENAME_NORMAL:2909case RENAME_ONE_FILE_TO_ONE:2910 clean_merge =conflict_rename_normal(o,2911 path,2912 o_oid, o_mode,2913 a_oid, a_mode,2914 b_oid, b_mode,2915 conflict_info);2916break;2917case RENAME_DIR:2918 clean_merge =1;2919if(conflict_rename_dir(o,2920 conflict_info->pair1,2921 conflict_info->branch1,2922 conflict_info->branch2))2923 clean_merge = -1;2924break;2925case RENAME_DELETE:2926 clean_merge =0;2927if(conflict_rename_delete(o,2928 conflict_info->pair1,2929 conflict_info->branch1,2930 conflict_info->branch2))2931 clean_merge = -1;2932break;2933case RENAME_ONE_FILE_TO_TWO:2934 clean_merge =0;2935if(conflict_rename_rename_1to2(o, conflict_info))2936 clean_merge = -1;2937break;2938case RENAME_TWO_FILES_TO_ONE:2939 clean_merge =0;2940if(conflict_rename_rename_2to1(o, conflict_info))2941 clean_merge = -1;2942break;2943default:2944 entry->processed =0;2945break;2946}2947}else if(o_oid && (!a_oid || !b_oid)) {2948/* Case A: Deleted in one */2949if((!a_oid && !b_oid) ||2950(!b_oid &&blob_unchanged(o, o_oid, o_mode, a_oid, a_mode, normalize, path)) ||2951(!a_oid &&blob_unchanged(o, o_oid, o_mode, b_oid, b_mode, normalize, path))) {2952/* Deleted in both or deleted in one and2953 * unchanged in the other */2954if(a_oid)2955output(o,2,_("Removing%s"), path);2956/* do not touch working file if it did not exist */2957remove_file(o,1, path, !a_oid);2958}else{2959/* Modify/delete; deleted side may have put a directory in the way */2960 clean_merge =0;2961if(handle_modify_delete(o, path, o_oid, o_mode,2962 a_oid, a_mode, b_oid, b_mode))2963 clean_merge = -1;2964}2965}else if((!o_oid && a_oid && !b_oid) ||2966(!o_oid && !a_oid && b_oid)) {2967/* Case B: Added in one. */2968/* [nothing|directory] -> ([nothing|directory], file) */29692970const char*add_branch;2971const char*other_branch;2972unsigned mode;2973const struct object_id *oid;2974const char*conf;29752976if(a_oid) {2977 add_branch = o->branch1;2978 other_branch = o->branch2;2979 mode = a_mode;2980 oid = a_oid;2981 conf =_("file/directory");2982}else{2983 add_branch = o->branch2;2984 other_branch = o->branch1;2985 mode = b_mode;2986 oid = b_oid;2987 conf =_("directory/file");2988}2989if(dir_in_way(path,2990!o->call_depth && !S_ISGITLINK(a_mode),29910)) {2992char*new_path =unique_path(o, path, add_branch);2993 clean_merge =0;2994output(o,1,_("CONFLICT (%s): There is a directory with name%sin%s. "2995"Adding%sas%s"),2996 conf, path, other_branch, path, new_path);2997if(update_file(o,0, oid, mode, new_path))2998 clean_merge = -1;2999else if(o->call_depth)3000remove_file_from_cache(path);3001free(new_path);3002}else{3003output(o,2,_("Adding%s"), path);3004/* do not overwrite file if already present */3005if(update_file_flags(o, oid, mode, path,1, !a_oid))3006 clean_merge = -1;3007}3008}else if(a_oid && b_oid) {3009/* Case C: Added in both (check for same permissions) and */3010/* case D: Modified in both, but differently. */3011int is_dirty =0;/* unpack_trees would have bailed if dirty */3012 clean_merge =merge_content(o, path, is_dirty,3013 o_oid, o_mode, a_oid, a_mode, b_oid, b_mode,3014 NULL);3015}else if(!o_oid && !a_oid && !b_oid) {3016/*3017 * this entry was deleted altogether. a_mode == 0 means3018 * we had that path and want to actively remove it.3019 */3020remove_file(o,1, path, !a_mode);3021}else3022die("BUG: fatal merge failure, shouldn't happen.");30233024return clean_merge;3025}30263027intmerge_trees(struct merge_options *o,3028struct tree *head,3029struct tree *merge,3030struct tree *common,3031struct tree **result)3032{3033int code, clean;30343035if(o->subtree_shift) {3036 merge =shift_tree_object(head, merge, o->subtree_shift);3037 common =shift_tree_object(head, common, o->subtree_shift);3038}30393040if(oid_eq(&common->object.oid, &merge->object.oid)) {3041struct strbuf sb = STRBUF_INIT;30423043if(!o->call_depth &&index_has_changes(&sb)) {3044err(o,_("Dirty index: cannot merge (dirty:%s)"),3045 sb.buf);3046return0;3047}3048output(o,0,_("Already up to date!"));3049*result = head;3050return1;3051}30523053 code =git_merge_trees(o, common, head, merge);30543055if(code !=0) {3056if(show(o,4) || o->call_depth)3057err(o,_("merging of trees%sand%sfailed"),3058oid_to_hex(&head->object.oid),3059oid_to_hex(&merge->object.oid));3060return-1;3061}30623063if(unmerged_cache()) {3064struct string_list *entries;3065struct rename_info re_info;3066int i;3067/*3068 * Only need the hashmap while processing entries, so3069 * initialize it here and free it when we are done running3070 * through the entries. Keeping it in the merge_options as3071 * opposed to decaring a local hashmap is for convenience3072 * so that we don't have to pass it to around.3073 */3074hashmap_init(&o->current_file_dir_set, path_hashmap_cmp, NULL,512);3075get_files_dirs(o, head);3076get_files_dirs(o, merge);30773078 entries =get_unmerged();3079 clean =handle_renames(o, common, head, merge, entries,3080&re_info);3081record_df_conflict_files(o, entries);3082if(clean <0)3083goto cleanup;3084for(i = entries->nr-1;0<= i; i--) {3085const char*path = entries->items[i].string;3086struct stage_data *e = entries->items[i].util;3087if(!e->processed) {3088int ret =process_entry(o, path, e);3089if(!ret)3090 clean =0;3091else if(ret <0) {3092 clean = ret;3093goto cleanup;3094}3095}3096}3097for(i =0; i < entries->nr; i++) {3098struct stage_data *e = entries->items[i].util;3099if(!e->processed)3100die("BUG: unprocessed path???%s",3101 entries->items[i].string);3102}31033104cleanup:3105final_cleanup_renames(&re_info);31063107string_list_clear(entries,1);3108free(entries);31093110hashmap_free(&o->current_file_dir_set,1);31113112if(clean <0)3113return clean;3114}3115else3116 clean =1;31173118/* Free the extra index left from git_merge_trees() */3119/*3120 * FIXME: Need to also free data allocated by3121 * setup_unpack_trees_porcelain() tucked away in o->unpack_opts.msgs,3122 * but the problem is that only half of it refers to dynamically3123 * allocated data, while the other half points at static strings.3124 */3125discard_index(&o->orig_index);31263127if(o->call_depth && !(*result =write_tree_from_memory(o)))3128return-1;31293130return clean;3131}31323133static struct commit_list *reverse_commit_list(struct commit_list *list)3134{3135struct commit_list *next = NULL, *current, *backup;3136for(current = list; current; current = backup) {3137 backup = current->next;3138 current->next = next;3139 next = current;3140}3141return next;3142}31433144/*3145 * Merge the commits h1 and h2, return the resulting virtual3146 * commit object and a flag indicating the cleanness of the merge.3147 */3148intmerge_recursive(struct merge_options *o,3149struct commit *h1,3150struct commit *h2,3151struct commit_list *ca,3152struct commit **result)3153{3154struct commit_list *iter;3155struct commit *merged_common_ancestors;3156struct tree *mrtree;3157int clean;31583159if(show(o,4)) {3160output(o,4,_("Merging:"));3161output_commit_title(o, h1);3162output_commit_title(o, h2);3163}31643165if(!ca) {3166 ca =get_merge_bases(h1, h2);3167 ca =reverse_commit_list(ca);3168}31693170if(show(o,5)) {3171unsigned cnt =commit_list_count(ca);31723173output(o,5,Q_("found%ucommon ancestor:",3174"found%ucommon ancestors:", cnt), cnt);3175for(iter = ca; iter; iter = iter->next)3176output_commit_title(o, iter->item);3177}31783179 merged_common_ancestors =pop_commit(&ca);3180if(merged_common_ancestors == NULL) {3181/* if there is no common ancestor, use an empty tree */3182struct tree *tree;31833184 tree =lookup_tree(the_hash_algo->empty_tree);3185 merged_common_ancestors =make_virtual_commit(tree,"ancestor");3186}31873188for(iter = ca; iter; iter = iter->next) {3189const char*saved_b1, *saved_b2;3190 o->call_depth++;3191/*3192 * When the merge fails, the result contains files3193 * with conflict markers. The cleanness flag is3194 * ignored (unless indicating an error), it was never3195 * actually used, as result of merge_trees has always3196 * overwritten it: the committed "conflicts" were3197 * already resolved.3198 */3199discard_cache();3200 saved_b1 = o->branch1;3201 saved_b2 = o->branch2;3202 o->branch1 ="Temporary merge branch 1";3203 o->branch2 ="Temporary merge branch 2";3204if(merge_recursive(o, merged_common_ancestors, iter->item,3205 NULL, &merged_common_ancestors) <0)3206return-1;3207 o->branch1 = saved_b1;3208 o->branch2 = saved_b2;3209 o->call_depth--;32103211if(!merged_common_ancestors)3212returnerr(o,_("merge returned no commit"));3213}32143215discard_cache();3216if(!o->call_depth)3217read_cache();32183219 o->ancestor ="merged common ancestors";3220 clean =merge_trees(o, h1->tree, h2->tree, merged_common_ancestors->tree,3221&mrtree);3222if(clean <0) {3223flush_output(o);3224return clean;3225}32263227if(o->call_depth) {3228*result =make_virtual_commit(mrtree,"merged tree");3229commit_list_insert(h1, &(*result)->parents);3230commit_list_insert(h2, &(*result)->parents->next);3231}3232flush_output(o);3233if(!o->call_depth && o->buffer_output <2)3234strbuf_release(&o->obuf);3235if(show(o,2))3236diff_warn_rename_limit("merge.renamelimit",3237 o->needed_rename_limit,0);3238return clean;3239}32403241static struct commit *get_ref(const struct object_id *oid,const char*name)3242{3243struct object *object;32443245 object =deref_tag(parse_object(oid), name,strlen(name));3246if(!object)3247return NULL;3248if(object->type == OBJ_TREE)3249returnmake_virtual_commit((struct tree*)object, name);3250if(object->type != OBJ_COMMIT)3251return NULL;3252if(parse_commit((struct commit *)object))3253return NULL;3254return(struct commit *)object;3255}32563257intmerge_recursive_generic(struct merge_options *o,3258const struct object_id *head,3259const struct object_id *merge,3260int num_base_list,3261const struct object_id **base_list,3262struct commit **result)3263{3264int clean;3265struct lock_file lock = LOCK_INIT;3266struct commit *head_commit =get_ref(head, o->branch1);3267struct commit *next_commit =get_ref(merge, o->branch2);3268struct commit_list *ca = NULL;32693270if(base_list) {3271int i;3272for(i =0; i < num_base_list; ++i) {3273struct commit *base;3274if(!(base =get_ref(base_list[i],oid_to_hex(base_list[i]))))3275returnerr(o,_("Could not parse object '%s'"),3276oid_to_hex(base_list[i]));3277commit_list_insert(base, &ca);3278}3279}32803281hold_locked_index(&lock, LOCK_DIE_ON_ERROR);3282 clean =merge_recursive(o, head_commit, next_commit, ca,3283 result);3284if(clean <0) {3285rollback_lock_file(&lock);3286return clean;3287}32883289if(write_locked_index(&the_index, &lock,3290 COMMIT_LOCK | SKIP_IF_UNCHANGED))3291returnerr(o,_("Unable to write index."));32923293return clean ?0:1;3294}32953296static voidmerge_recursive_config(struct merge_options *o)3297{3298git_config_get_int("merge.verbosity", &o->verbosity);3299git_config_get_int("diff.renamelimit", &o->diff_rename_limit);3300git_config_get_int("merge.renamelimit", &o->merge_rename_limit);3301git_config(git_xmerge_config, NULL);3302}33033304voidinit_merge_options(struct merge_options *o)3305{3306const char*merge_verbosity;3307memset(o,0,sizeof(struct merge_options));3308 o->verbosity =2;3309 o->buffer_output =1;3310 o->diff_rename_limit = -1;3311 o->merge_rename_limit = -1;3312 o->renormalize =0;3313 o->detect_rename =1;3314merge_recursive_config(o);3315 merge_verbosity =getenv("GIT_MERGE_VERBOSITY");3316if(merge_verbosity)3317 o->verbosity =strtol(merge_verbosity, NULL,10);3318if(o->verbosity >=5)3319 o->buffer_output =0;3320strbuf_init(&o->obuf,0);3321string_list_init(&o->df_conflict_file_set,1);3322}33233324intparse_merge_opt(struct merge_options *o,const char*s)3325{3326const char*arg;33273328if(!s || !*s)3329return-1;3330if(!strcmp(s,"ours"))3331 o->recursive_variant = MERGE_RECURSIVE_OURS;3332else if(!strcmp(s,"theirs"))3333 o->recursive_variant = MERGE_RECURSIVE_THEIRS;3334else if(!strcmp(s,"subtree"))3335 o->subtree_shift ="";3336else if(skip_prefix(s,"subtree=", &arg))3337 o->subtree_shift = arg;3338else if(!strcmp(s,"patience"))3339 o->xdl_opts =DIFF_WITH_ALG(o, PATIENCE_DIFF);3340else if(!strcmp(s,"histogram"))3341 o->xdl_opts =DIFF_WITH_ALG(o, HISTOGRAM_DIFF);3342else if(skip_prefix(s,"diff-algorithm=", &arg)) {3343long value =parse_algorithm_value(arg);3344if(value <0)3345return-1;3346/* clear out previous settings */3347DIFF_XDL_CLR(o, NEED_MINIMAL);3348 o->xdl_opts &= ~XDF_DIFF_ALGORITHM_MASK;3349 o->xdl_opts |= value;3350}3351else if(!strcmp(s,"ignore-space-change"))3352DIFF_XDL_SET(o, IGNORE_WHITESPACE_CHANGE);3353else if(!strcmp(s,"ignore-all-space"))3354DIFF_XDL_SET(o, IGNORE_WHITESPACE);3355else if(!strcmp(s,"ignore-space-at-eol"))3356DIFF_XDL_SET(o, IGNORE_WHITESPACE_AT_EOL);3357else if(!strcmp(s,"ignore-cr-at-eol"))3358DIFF_XDL_SET(o, IGNORE_CR_AT_EOL);3359else if(!strcmp(s,"renormalize"))3360 o->renormalize =1;3361else if(!strcmp(s,"no-renormalize"))3362 o->renormalize =0;3363else if(!strcmp(s,"no-renames"))3364 o->detect_rename =0;3365else if(!strcmp(s,"find-renames")) {3366 o->detect_rename =1;3367 o->rename_score =0;3368}3369else if(skip_prefix(s,"find-renames=", &arg) ||3370skip_prefix(s,"rename-threshold=", &arg)) {3371if((o->rename_score =parse_rename_score(&arg)) == -1|| *arg !=0)3372return-1;3373 o->detect_rename =1;3374}3375else3376return-1;3377return0;3378}