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,_("addinfo_cache failed for path '%s'"), 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,_("addinfo_cache failed for path '%s'"), 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]; 347 348memset(&o->unpack_opts,0,sizeof(o->unpack_opts)); 349if(o->call_depth) 350 o->unpack_opts.index_only =1; 351else 352 o->unpack_opts.update =1; 353 o->unpack_opts.merge =1; 354 o->unpack_opts.head_idx =2; 355 o->unpack_opts.fn = threeway_merge; 356 o->unpack_opts.src_index = &the_index; 357 o->unpack_opts.dst_index = &the_index; 358setup_unpack_trees_porcelain(&o->unpack_opts,"merge"); 359 360init_tree_desc_from_tree(t+0, common); 361init_tree_desc_from_tree(t+1, head); 362init_tree_desc_from_tree(t+2, merge); 363 364 rc =unpack_trees(3, t, &o->unpack_opts); 365/* 366 * unpack_trees NULLifies src_index, but it's used in verify_uptodate, 367 * so set to the new index which will usually have modification 368 * timestamp info copied over. 369 */ 370 o->unpack_opts.src_index = &the_index; 371cache_tree_free(&active_cache_tree); 372return rc; 373} 374 375struct tree *write_tree_from_memory(struct merge_options *o) 376{ 377struct tree *result = NULL; 378 379if(unmerged_cache()) { 380int i; 381fprintf(stderr,"BUG: There are unmerged index entries:\n"); 382for(i =0; i < active_nr; i++) { 383const struct cache_entry *ce = active_cache[i]; 384if(ce_stage(ce)) 385fprintf(stderr,"BUG:%d%.*s\n",ce_stage(ce), 386(int)ce_namelen(ce), ce->name); 387} 388die("BUG: unmerged index entries in merge-recursive.c"); 389} 390 391if(!active_cache_tree) 392 active_cache_tree =cache_tree(); 393 394if(!cache_tree_fully_valid(active_cache_tree) && 395cache_tree_update(&the_index,0) <0) { 396err(o,_("error building trees")); 397return NULL; 398} 399 400 result =lookup_tree(&active_cache_tree->oid); 401 402return result; 403} 404 405static intsave_files_dirs(const struct object_id *oid, 406struct strbuf *base,const char*path, 407unsigned int mode,int stage,void*context) 408{ 409struct path_hashmap_entry *entry; 410int baselen = base->len; 411struct merge_options *o = context; 412 413strbuf_addstr(base, path); 414 415FLEX_ALLOC_MEM(entry, path, base->buf, base->len); 416hashmap_entry_init(entry,path_hash(entry->path)); 417hashmap_add(&o->current_file_dir_set, entry); 418 419strbuf_setlen(base, baselen); 420return(S_ISDIR(mode) ? READ_TREE_RECURSIVE :0); 421} 422 423static voidget_files_dirs(struct merge_options *o,struct tree *tree) 424{ 425struct pathspec match_all; 426memset(&match_all,0,sizeof(match_all)); 427read_tree_recursive(tree,"",0,0, &match_all, save_files_dirs, o); 428} 429 430static intget_tree_entry_if_blob(const struct object_id *tree, 431const char*path, 432struct object_id *hashy, 433unsigned int*mode_o) 434{ 435int ret; 436 437 ret =get_tree_entry(tree, path, hashy, mode_o); 438if(S_ISDIR(*mode_o)) { 439oidcpy(hashy, &null_oid); 440*mode_o =0; 441} 442return ret; 443} 444 445/* 446 * Returns an index_entry instance which doesn't have to correspond to 447 * a real cache entry in Git's index. 448 */ 449static struct stage_data *insert_stage_data(const char*path, 450struct tree *o,struct tree *a,struct tree *b, 451struct string_list *entries) 452{ 453struct string_list_item *item; 454struct stage_data *e =xcalloc(1,sizeof(struct stage_data)); 455get_tree_entry_if_blob(&o->object.oid, path, 456&e->stages[1].oid, &e->stages[1].mode); 457get_tree_entry_if_blob(&a->object.oid, path, 458&e->stages[2].oid, &e->stages[2].mode); 459get_tree_entry_if_blob(&b->object.oid, path, 460&e->stages[3].oid, &e->stages[3].mode); 461 item =string_list_insert(entries, path); 462 item->util = e; 463return e; 464} 465 466/* 467 * Create a dictionary mapping file names to stage_data objects. The 468 * dictionary contains one entry for every path with a non-zero stage entry. 469 */ 470static struct string_list *get_unmerged(void) 471{ 472struct string_list *unmerged =xcalloc(1,sizeof(struct string_list)); 473int i; 474 475 unmerged->strdup_strings =1; 476 477for(i =0; i < active_nr; i++) { 478struct string_list_item *item; 479struct stage_data *e; 480const struct cache_entry *ce = active_cache[i]; 481if(!ce_stage(ce)) 482continue; 483 484 item =string_list_lookup(unmerged, ce->name); 485if(!item) { 486 item =string_list_insert(unmerged, ce->name); 487 item->util =xcalloc(1,sizeof(struct stage_data)); 488} 489 e = item->util; 490 e->stages[ce_stage(ce)].mode = ce->ce_mode; 491oidcpy(&e->stages[ce_stage(ce)].oid, &ce->oid); 492} 493 494return unmerged; 495} 496 497static intstring_list_df_name_compare(const char*one,const char*two) 498{ 499int onelen =strlen(one); 500int twolen =strlen(two); 501/* 502 * Here we only care that entries for D/F conflicts are 503 * adjacent, in particular with the file of the D/F conflict 504 * appearing before files below the corresponding directory. 505 * The order of the rest of the list is irrelevant for us. 506 * 507 * To achieve this, we sort with df_name_compare and provide 508 * the mode S_IFDIR so that D/F conflicts will sort correctly. 509 * We use the mode S_IFDIR for everything else for simplicity, 510 * since in other cases any changes in their order due to 511 * sorting cause no problems for us. 512 */ 513int cmp =df_name_compare(one, onelen, S_IFDIR, 514 two, twolen, S_IFDIR); 515/* 516 * Now that 'foo' and 'foo/bar' compare equal, we have to make sure 517 * that 'foo' comes before 'foo/bar'. 518 */ 519if(cmp) 520return cmp; 521return onelen - twolen; 522} 523 524static voidrecord_df_conflict_files(struct merge_options *o, 525struct string_list *entries) 526{ 527/* If there is a D/F conflict and the file for such a conflict 528 * currently exist in the working tree, we want to allow it to be 529 * removed to make room for the corresponding directory if needed. 530 * The files underneath the directories of such D/F conflicts will 531 * be processed before the corresponding file involved in the D/F 532 * conflict. If the D/F directory ends up being removed by the 533 * merge, then we won't have to touch the D/F file. If the D/F 534 * directory needs to be written to the working copy, then the D/F 535 * file will simply be removed (in make_room_for_path()) to make 536 * room for the necessary paths. Note that if both the directory 537 * and the file need to be present, then the D/F file will be 538 * reinstated with a new unique name at the time it is processed. 539 */ 540struct string_list df_sorted_entries = STRING_LIST_INIT_NODUP; 541const char*last_file = NULL; 542int last_len =0; 543int i; 544 545/* 546 * If we're merging merge-bases, we don't want to bother with 547 * any working directory changes. 548 */ 549if(o->call_depth) 550return; 551 552/* Ensure D/F conflicts are adjacent in the entries list. */ 553for(i =0; i < entries->nr; i++) { 554struct string_list_item *next = &entries->items[i]; 555string_list_append(&df_sorted_entries, next->string)->util = 556 next->util; 557} 558 df_sorted_entries.cmp = string_list_df_name_compare; 559string_list_sort(&df_sorted_entries); 560 561string_list_clear(&o->df_conflict_file_set,1); 562for(i =0; i < df_sorted_entries.nr; i++) { 563const char*path = df_sorted_entries.items[i].string; 564int len =strlen(path); 565struct stage_data *e = df_sorted_entries.items[i].util; 566 567/* 568 * Check if last_file & path correspond to a D/F conflict; 569 * i.e. whether path is last_file+'/'+<something>. 570 * If so, record that it's okay to remove last_file to make 571 * room for path and friends if needed. 572 */ 573if(last_file && 574 len > last_len && 575memcmp(path, last_file, last_len) ==0&& 576 path[last_len] =='/') { 577string_list_insert(&o->df_conflict_file_set, last_file); 578} 579 580/* 581 * Determine whether path could exist as a file in the 582 * working directory as a possible D/F conflict. This 583 * will only occur when it exists in stage 2 as a 584 * file. 585 */ 586if(S_ISREG(e->stages[2].mode) ||S_ISLNK(e->stages[2].mode)) { 587 last_file = path; 588 last_len = len; 589}else{ 590 last_file = NULL; 591} 592} 593string_list_clear(&df_sorted_entries,0); 594} 595 596struct rename { 597struct diff_filepair *pair; 598/* 599 * Purpose of src_entry and dst_entry: 600 * 601 * If 'before' is renamed to 'after' then src_entry will contain 602 * the versions of 'before' from the merge_base, HEAD, and MERGE in 603 * stages 1, 2, and 3; dst_entry will contain the respective 604 * versions of 'after' in corresponding locations. Thus, we have a 605 * total of six modes and oids, though some will be null. (Stage 0 606 * is ignored; we're interested in handling conflicts.) 607 * 608 * Since we don't turn on break-rewrites by default, neither 609 * src_entry nor dst_entry can have all three of their stages have 610 * non-null oids, meaning at most four of the six will be non-null. 611 * Also, since this is a rename, both src_entry and dst_entry will 612 * have at least one non-null oid, meaning at least two will be 613 * non-null. Of the six oids, a typical rename will have three be 614 * non-null. Only two implies a rename/delete, and four implies a 615 * rename/add. 616 */ 617struct stage_data *src_entry; 618struct stage_data *dst_entry; 619unsigned add_turned_into_rename:1; 620unsigned processed:1; 621}; 622 623static intupdate_stages(struct merge_options *opt,const char*path, 624const struct diff_filespec *o, 625const struct diff_filespec *a, 626const struct diff_filespec *b) 627{ 628 629/* 630 * NOTE: It is usually a bad idea to call update_stages on a path 631 * before calling update_file on that same path, since it can 632 * sometimes lead to spurious "refusing to lose untracked file..." 633 * messages from update_file (via make_room_for path via 634 * would_lose_untracked). Instead, reverse the order of the calls 635 * (executing update_file first and then update_stages). 636 */ 637int clear =1; 638int options = ADD_CACHE_OK_TO_ADD | ADD_CACHE_SKIP_DFCHECK; 639if(clear) 640if(remove_file_from_cache(path)) 641return-1; 642if(o) 643if(add_cacheinfo(opt, o->mode, &o->oid, path,1,0, options)) 644return-1; 645if(a) 646if(add_cacheinfo(opt, a->mode, &a->oid, path,2,0, options)) 647return-1; 648if(b) 649if(add_cacheinfo(opt, b->mode, &b->oid, path,3,0, options)) 650return-1; 651return0; 652} 653 654static intupdate_stages_for_stage_data(struct merge_options *opt, 655const char*path, 656const struct stage_data *stage_data) 657{ 658struct diff_filespec o, a, b; 659 660 o.mode = stage_data->stages[1].mode; 661oidcpy(&o.oid, &stage_data->stages[1].oid); 662 663 a.mode = stage_data->stages[2].mode; 664oidcpy(&a.oid, &stage_data->stages[2].oid); 665 666 b.mode = stage_data->stages[3].mode; 667oidcpy(&b.oid, &stage_data->stages[3].oid); 668 669returnupdate_stages(opt, path, 670is_null_oid(&o.oid) ? NULL : &o, 671is_null_oid(&a.oid) ? NULL : &a, 672is_null_oid(&b.oid) ? NULL : &b); 673} 674 675static voidupdate_entry(struct stage_data *entry, 676struct diff_filespec *o, 677struct diff_filespec *a, 678struct diff_filespec *b) 679{ 680 entry->processed =0; 681 entry->stages[1].mode = o->mode; 682 entry->stages[2].mode = a->mode; 683 entry->stages[3].mode = b->mode; 684oidcpy(&entry->stages[1].oid, &o->oid); 685oidcpy(&entry->stages[2].oid, &a->oid); 686oidcpy(&entry->stages[3].oid, &b->oid); 687} 688 689static intremove_file(struct merge_options *o,int clean, 690const char*path,int no_wd) 691{ 692int update_cache = o->call_depth || clean; 693int update_working_directory = !o->call_depth && !no_wd; 694 695if(update_cache) { 696if(remove_file_from_cache(path)) 697return-1; 698} 699if(update_working_directory) { 700if(ignore_case) { 701struct cache_entry *ce; 702 ce =cache_file_exists(path,strlen(path), ignore_case); 703if(ce &&ce_stage(ce) ==0&&strcmp(path, ce->name)) 704return0; 705} 706if(remove_path(path)) 707return-1; 708} 709return0; 710} 711 712/* add a string to a strbuf, but converting "/" to "_" */ 713static voidadd_flattened_path(struct strbuf *out,const char*s) 714{ 715size_t i = out->len; 716strbuf_addstr(out, s); 717for(; i < out->len; i++) 718if(out->buf[i] =='/') 719 out->buf[i] ='_'; 720} 721 722static char*unique_path(struct merge_options *o,const char*path,const char*branch) 723{ 724struct path_hashmap_entry *entry; 725struct strbuf newpath = STRBUF_INIT; 726int suffix =0; 727size_t base_len; 728 729strbuf_addf(&newpath,"%s~", path); 730add_flattened_path(&newpath, branch); 731 732 base_len = newpath.len; 733while(hashmap_get_from_hash(&o->current_file_dir_set, 734path_hash(newpath.buf), newpath.buf) || 735(!o->call_depth &&file_exists(newpath.buf))) { 736strbuf_setlen(&newpath, base_len); 737strbuf_addf(&newpath,"_%d", suffix++); 738} 739 740FLEX_ALLOC_MEM(entry, path, newpath.buf, newpath.len); 741hashmap_entry_init(entry,path_hash(entry->path)); 742hashmap_add(&o->current_file_dir_set, entry); 743returnstrbuf_detach(&newpath, NULL); 744} 745 746/** 747 * Check whether a directory in the index is in the way of an incoming 748 * file. Return 1 if so. If check_working_copy is non-zero, also 749 * check the working directory. If empty_ok is non-zero, also return 750 * 0 in the case where the working-tree dir exists but is empty. 751 */ 752static intdir_in_way(const char*path,int check_working_copy,int empty_ok) 753{ 754int pos; 755struct strbuf dirpath = STRBUF_INIT; 756struct stat st; 757 758strbuf_addstr(&dirpath, path); 759strbuf_addch(&dirpath,'/'); 760 761 pos =cache_name_pos(dirpath.buf, dirpath.len); 762 763if(pos <0) 764 pos = -1- pos; 765if(pos < active_nr && 766!strncmp(dirpath.buf, active_cache[pos]->name, dirpath.len)) { 767strbuf_release(&dirpath); 768return1; 769} 770 771strbuf_release(&dirpath); 772return check_working_copy && !lstat(path, &st) &&S_ISDIR(st.st_mode) && 773!(empty_ok &&is_empty_dir(path)); 774} 775 776static intwas_tracked(const char*path) 777{ 778int pos =cache_name_pos(path,strlen(path)); 779 780if(0<= pos) 781/* we have been tracking this path */ 782return1; 783 784/* 785 * Look for an unmerged entry for the path, 786 * specifically stage #2, which would indicate 787 * that "our" side before the merge started 788 * had the path tracked (and resulted in a conflict). 789 */ 790for(pos = -1- pos; 791 pos < active_nr && !strcmp(path, active_cache[pos]->name); 792 pos++) 793if(ce_stage(active_cache[pos]) ==2) 794return1; 795return0; 796} 797 798static intwould_lose_untracked(const char*path) 799{ 800return!was_tracked(path) &&file_exists(path); 801} 802 803static intwas_dirty(struct merge_options *o,const char*path) 804{ 805struct cache_entry *ce; 806int dirty =1; 807 808if(o->call_depth || !was_tracked(path)) 809return!dirty; 810 811 ce =cache_file_exists(path,strlen(path), ignore_case); 812 dirty = (ce->ce_stat_data.sd_mtime.sec >0&& 813verify_uptodate(ce, &o->unpack_opts) !=0); 814return dirty; 815} 816 817static intmake_room_for_path(struct merge_options *o,const char*path) 818{ 819int status, i; 820const char*msg =_("failed to create path '%s'%s"); 821 822/* Unlink any D/F conflict files that are in the way */ 823for(i =0; i < o->df_conflict_file_set.nr; i++) { 824const char*df_path = o->df_conflict_file_set.items[i].string; 825size_t pathlen =strlen(path); 826size_t df_pathlen =strlen(df_path); 827if(df_pathlen < pathlen && 828 path[df_pathlen] =='/'&& 829strncmp(path, df_path, df_pathlen) ==0) { 830output(o,3, 831_("Removing%sto make room for subdirectory\n"), 832 df_path); 833unlink(df_path); 834unsorted_string_list_delete_item(&o->df_conflict_file_set, 835 i,0); 836break; 837} 838} 839 840/* Make sure leading directories are created */ 841 status =safe_create_leading_directories_const(path); 842if(status) { 843if(status == SCLD_EXISTS) 844/* something else exists */ 845returnerr(o, msg, path,_(": perhaps a D/F conflict?")); 846returnerr(o, msg, path,""); 847} 848 849/* 850 * Do not unlink a file in the work tree if we are not 851 * tracking it. 852 */ 853if(would_lose_untracked(path)) 854returnerr(o,_("refusing to lose untracked file at '%s'"), 855 path); 856 857/* Successful unlink is good.. */ 858if(!unlink(path)) 859return0; 860/* .. and so is no existing file */ 861if(errno == ENOENT) 862return0; 863/* .. but not some other error (who really cares what?) */ 864returnerr(o, msg, path,_(": perhaps a D/F conflict?")); 865} 866 867static intupdate_file_flags(struct merge_options *o, 868const struct object_id *oid, 869unsigned mode, 870const char*path, 871int update_cache, 872int update_wd) 873{ 874int ret =0; 875 876if(o->call_depth) 877 update_wd =0; 878 879if(update_wd) { 880enum object_type type; 881void*buf; 882unsigned long size; 883 884if(S_ISGITLINK(mode)) { 885/* 886 * We may later decide to recursively descend into 887 * the submodule directory and update its index 888 * and/or work tree, but we do not do that now. 889 */ 890 update_wd =0; 891goto update_index; 892} 893 894 buf =read_object_file(oid, &type, &size); 895if(!buf) 896returnerr(o,_("cannot read object%s'%s'"),oid_to_hex(oid), path); 897if(type != OBJ_BLOB) { 898 ret =err(o,_("blob expected for%s'%s'"),oid_to_hex(oid), path); 899goto free_buf; 900} 901if(S_ISREG(mode)) { 902struct strbuf strbuf = STRBUF_INIT; 903if(convert_to_working_tree(path, buf, size, &strbuf)) { 904free(buf); 905 size = strbuf.len; 906 buf =strbuf_detach(&strbuf, NULL); 907} 908} 909 910if(make_room_for_path(o, path) <0) { 911 update_wd =0; 912goto free_buf; 913} 914if(S_ISREG(mode) || (!has_symlinks &&S_ISLNK(mode))) { 915int fd; 916if(mode &0100) 917 mode =0777; 918else 919 mode =0666; 920 fd =open(path, O_WRONLY | O_TRUNC | O_CREAT, mode); 921if(fd <0) { 922 ret =err(o,_("failed to open '%s':%s"), 923 path,strerror(errno)); 924goto free_buf; 925} 926write_in_full(fd, buf, size); 927close(fd); 928}else if(S_ISLNK(mode)) { 929char*lnk =xmemdupz(buf, size); 930safe_create_leading_directories_const(path); 931unlink(path); 932if(symlink(lnk, path)) 933 ret =err(o,_("failed to symlink '%s':%s"), 934 path,strerror(errno)); 935free(lnk); 936}else 937 ret =err(o, 938_("do not know what to do with%06o%s'%s'"), 939 mode,oid_to_hex(oid), path); 940 free_buf: 941free(buf); 942} 943 update_index: 944if(!ret && update_cache) 945add_cacheinfo(o, mode, oid, path,0, update_wd, ADD_CACHE_OK_TO_ADD); 946return ret; 947} 948 949static intupdate_file(struct merge_options *o, 950int clean, 951const struct object_id *oid, 952unsigned mode, 953const char*path) 954{ 955returnupdate_file_flags(o, oid, mode, path, o->call_depth || clean, !o->call_depth); 956} 957 958/* Low level file merging, update and removal */ 959 960struct merge_file_info { 961struct object_id oid; 962unsigned mode; 963unsigned clean:1, 964 merge:1; 965}; 966 967static intmerge_3way(struct merge_options *o, 968 mmbuffer_t *result_buf, 969const struct diff_filespec *one, 970const struct diff_filespec *a, 971const struct diff_filespec *b, 972const char*branch1, 973const char*branch2) 974{ 975 mmfile_t orig, src1, src2; 976struct ll_merge_options ll_opts = {0}; 977char*base_name, *name1, *name2; 978int merge_status; 979 980 ll_opts.renormalize = o->renormalize; 981 ll_opts.xdl_opts = o->xdl_opts; 982 983if(o->call_depth) { 984 ll_opts.virtual_ancestor =1; 985 ll_opts.variant =0; 986}else{ 987switch(o->recursive_variant) { 988case MERGE_RECURSIVE_OURS: 989 ll_opts.variant = XDL_MERGE_FAVOR_OURS; 990break; 991case MERGE_RECURSIVE_THEIRS: 992 ll_opts.variant = XDL_MERGE_FAVOR_THEIRS; 993break; 994default: 995 ll_opts.variant =0; 996break; 997} 998} 9991000if(strcmp(a->path, b->path) ||1001(o->ancestor != NULL &&strcmp(a->path, one->path) !=0)) {1002 base_name = o->ancestor == NULL ? NULL :1003mkpathdup("%s:%s", o->ancestor, one->path);1004 name1 =mkpathdup("%s:%s", branch1, a->path);1005 name2 =mkpathdup("%s:%s", branch2, b->path);1006}else{1007 base_name = o->ancestor == NULL ? NULL :1008mkpathdup("%s", o->ancestor);1009 name1 =mkpathdup("%s", branch1);1010 name2 =mkpathdup("%s", branch2);1011}10121013read_mmblob(&orig, &one->oid);1014read_mmblob(&src1, &a->oid);1015read_mmblob(&src2, &b->oid);10161017 merge_status =ll_merge(result_buf, a->path, &orig, base_name,1018&src1, name1, &src2, name2, &ll_opts);10191020free(base_name);1021free(name1);1022free(name2);1023free(orig.ptr);1024free(src1.ptr);1025free(src2.ptr);1026return merge_status;1027}10281029static intmerge_file_1(struct merge_options *o,1030const struct diff_filespec *one,1031const struct diff_filespec *a,1032const struct diff_filespec *b,1033const char*branch1,1034const char*branch2,1035struct merge_file_info *result)1036{1037 result->merge =0;1038 result->clean =1;10391040if((S_IFMT & a->mode) != (S_IFMT & b->mode)) {1041 result->clean =0;1042if(S_ISREG(a->mode)) {1043 result->mode = a->mode;1044oidcpy(&result->oid, &a->oid);1045}else{1046 result->mode = b->mode;1047oidcpy(&result->oid, &b->oid);1048}1049}else{1050if(!oid_eq(&a->oid, &one->oid) && !oid_eq(&b->oid, &one->oid))1051 result->merge =1;10521053/*1054 * Merge modes1055 */1056if(a->mode == b->mode || a->mode == one->mode)1057 result->mode = b->mode;1058else{1059 result->mode = a->mode;1060if(b->mode != one->mode) {1061 result->clean =0;1062 result->merge =1;1063}1064}10651066if(oid_eq(&a->oid, &b->oid) ||oid_eq(&a->oid, &one->oid))1067oidcpy(&result->oid, &b->oid);1068else if(oid_eq(&b->oid, &one->oid))1069oidcpy(&result->oid, &a->oid);1070else if(S_ISREG(a->mode)) {1071 mmbuffer_t result_buf;1072int ret =0, merge_status;10731074 merge_status =merge_3way(o, &result_buf, one, a, b,1075 branch1, branch2);10761077if((merge_status <0) || !result_buf.ptr)1078 ret =err(o,_("Failed to execute internal merge"));10791080if(!ret &&1081write_object_file(result_buf.ptr, result_buf.size,1082 blob_type, &result->oid))1083 ret =err(o,_("Unable to add%sto database"),1084 a->path);10851086free(result_buf.ptr);1087if(ret)1088return ret;1089 result->clean = (merge_status ==0);1090}else if(S_ISGITLINK(a->mode)) {1091 result->clean =merge_submodule(&result->oid,1092 one->path,1093&one->oid,1094&a->oid,1095&b->oid,1096!o->call_depth);1097}else if(S_ISLNK(a->mode)) {1098switch(o->recursive_variant) {1099case MERGE_RECURSIVE_NORMAL:1100oidcpy(&result->oid, &a->oid);1101if(!oid_eq(&a->oid, &b->oid))1102 result->clean =0;1103break;1104case MERGE_RECURSIVE_OURS:1105oidcpy(&result->oid, &a->oid);1106break;1107case MERGE_RECURSIVE_THEIRS:1108oidcpy(&result->oid, &b->oid);1109break;1110}1111}else1112die("BUG: unsupported object type in the tree");1113}11141115return0;1116}11171118static intmerge_file_special_markers(struct merge_options *o,1119const struct diff_filespec *one,1120const struct diff_filespec *a,1121const struct diff_filespec *b,1122const char*branch1,1123const char*filename1,1124const char*branch2,1125const char*filename2,1126struct merge_file_info *mfi)1127{1128char*side1 = NULL;1129char*side2 = NULL;1130int ret;11311132if(filename1)1133 side1 =xstrfmt("%s:%s", branch1, filename1);1134if(filename2)1135 side2 =xstrfmt("%s:%s", branch2, filename2);11361137 ret =merge_file_1(o, one, a, b,1138 side1 ? side1 : branch1,1139 side2 ? side2 : branch2, mfi);1140free(side1);1141free(side2);1142return ret;1143}11441145static intmerge_file_one(struct merge_options *o,1146const char*path,1147const struct object_id *o_oid,int o_mode,1148const struct object_id *a_oid,int a_mode,1149const struct object_id *b_oid,int b_mode,1150const char*branch1,1151const char*branch2,1152struct merge_file_info *mfi)1153{1154struct diff_filespec one, a, b;11551156 one.path = a.path = b.path = (char*)path;1157oidcpy(&one.oid, o_oid);1158 one.mode = o_mode;1159oidcpy(&a.oid, a_oid);1160 a.mode = a_mode;1161oidcpy(&b.oid, b_oid);1162 b.mode = b_mode;1163returnmerge_file_1(o, &one, &a, &b, branch1, branch2, mfi);1164}11651166static intconflict_rename_dir(struct merge_options *o,1167struct diff_filepair *pair,1168const char*rename_branch,1169const char*other_branch)1170{1171const struct diff_filespec *dest = pair->two;11721173if(!o->call_depth &&would_lose_untracked(dest->path)) {1174char*alt_path =unique_path(o, dest->path, rename_branch);11751176output(o,1,_("Error: Refusing to lose untracked file at%s; "1177"writing to%sinstead."),1178 dest->path, alt_path);1179/*1180 * Write the file in worktree at alt_path, but not in the1181 * index. Instead, write to dest->path for the index but1182 * only at the higher appropriate stage.1183 */1184if(update_file(o,0, &dest->oid, dest->mode, alt_path))1185return-1;1186free(alt_path);1187returnupdate_stages(o, dest->path, NULL,1188 rename_branch == o->branch1 ? dest : NULL,1189 rename_branch == o->branch1 ? NULL : dest);1190}11911192/* Update dest->path both in index and in worktree */1193if(update_file(o,1, &dest->oid, dest->mode, dest->path))1194return-1;1195return0;1196}11971198static inthandle_change_delete(struct merge_options *o,1199const char*path,const char*old_path,1200const struct object_id *o_oid,int o_mode,1201const struct object_id *changed_oid,1202int changed_mode,1203const char*change_branch,1204const char*delete_branch,1205const char*change,const char*change_past)1206{1207char*alt_path = NULL;1208const char*update_path = path;1209int ret =0;12101211if(dir_in_way(path, !o->call_depth,0) ||1212(!o->call_depth &&would_lose_untracked(path))) {1213 update_path = alt_path =unique_path(o, path, change_branch);1214}12151216if(o->call_depth) {1217/*1218 * We cannot arbitrarily accept either a_sha or b_sha as1219 * correct; since there is no true "middle point" between1220 * them, simply reuse the base version for virtual merge base.1221 */1222 ret =remove_file_from_cache(path);1223if(!ret)1224 ret =update_file(o,0, o_oid, o_mode, update_path);1225}else{1226if(!alt_path) {1227if(!old_path) {1228output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1229"and%sin%s. Version%sof%sleft in tree."),1230 change, path, delete_branch, change_past,1231 change_branch, change_branch, path);1232}else{1233output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1234"and%sto%sin%s. Version%sof%sleft in tree."),1235 change, old_path, delete_branch, change_past, path,1236 change_branch, change_branch, path);1237}1238}else{1239if(!old_path) {1240output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1241"and%sin%s. Version%sof%sleft in tree at%s."),1242 change, path, delete_branch, change_past,1243 change_branch, change_branch, path, alt_path);1244}else{1245output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1246"and%sto%sin%s. Version%sof%sleft in tree at%s."),1247 change, old_path, delete_branch, change_past, path,1248 change_branch, change_branch, path, alt_path);1249}1250}1251/*1252 * No need to call update_file() on path when change_branch ==1253 * o->branch1 && !alt_path, since that would needlessly touch1254 * path. We could call update_file_flags() with update_cache=01255 * and update_wd=0, but that's a no-op.1256 */1257if(change_branch != o->branch1 || alt_path)1258 ret =update_file(o,0, changed_oid, changed_mode, update_path);1259}1260free(alt_path);12611262return ret;1263}12641265static intconflict_rename_delete(struct merge_options *o,1266struct diff_filepair *pair,1267const char*rename_branch,1268const char*delete_branch)1269{1270const struct diff_filespec *orig = pair->one;1271const struct diff_filespec *dest = pair->two;12721273if(handle_change_delete(o,1274 o->call_depth ? orig->path : dest->path,1275 o->call_depth ? NULL : orig->path,1276&orig->oid, orig->mode,1277&dest->oid, dest->mode,1278 rename_branch, delete_branch,1279_("rename"),_("renamed")))1280return-1;12811282if(o->call_depth)1283returnremove_file_from_cache(dest->path);1284else1285returnupdate_stages(o, dest->path, NULL,1286 rename_branch == o->branch1 ? dest : NULL,1287 rename_branch == o->branch1 ? NULL : dest);1288}12891290static struct diff_filespec *filespec_from_entry(struct diff_filespec *target,1291struct stage_data *entry,1292int stage)1293{1294struct object_id *oid = &entry->stages[stage].oid;1295unsigned mode = entry->stages[stage].mode;1296if(mode ==0||is_null_oid(oid))1297return NULL;1298oidcpy(&target->oid, oid);1299 target->mode = mode;1300return target;1301}13021303static inthandle_file(struct merge_options *o,1304struct diff_filespec *rename,1305int stage,1306struct rename_conflict_info *ci)1307{1308char*dst_name = rename->path;1309struct stage_data *dst_entry;1310const char*cur_branch, *other_branch;1311struct diff_filespec other;1312struct diff_filespec *add;1313int ret;13141315if(stage ==2) {1316 dst_entry = ci->dst_entry1;1317 cur_branch = ci->branch1;1318 other_branch = ci->branch2;1319}else{1320 dst_entry = ci->dst_entry2;1321 cur_branch = ci->branch2;1322 other_branch = ci->branch1;1323}13241325 add =filespec_from_entry(&other, dst_entry, stage ^1);1326if(add) {1327char*add_name =unique_path(o, rename->path, other_branch);1328if(update_file(o,0, &add->oid, add->mode, add_name))1329return-1;13301331remove_file(o,0, rename->path,0);1332 dst_name =unique_path(o, rename->path, cur_branch);1333}else{1334if(dir_in_way(rename->path, !o->call_depth,0)) {1335 dst_name =unique_path(o, rename->path, cur_branch);1336output(o,1,_("%sis a directory in%sadding as%sinstead"),1337 rename->path, other_branch, dst_name);1338}else if(!o->call_depth &&1339would_lose_untracked(rename->path)) {1340 dst_name =unique_path(o, rename->path, cur_branch);1341output(o,1,_("Refusing to lose untracked file at%s; "1342"adding as%sinstead"),1343 rename->path, dst_name);1344}1345}1346if((ret =update_file(o,0, &rename->oid, rename->mode, dst_name)))1347;/* fall through, do allow dst_name to be released */1348else if(stage ==2)1349 ret =update_stages(o, rename->path, NULL, rename, add);1350else1351 ret =update_stages(o, rename->path, NULL, add, rename);13521353if(dst_name != rename->path)1354free(dst_name);13551356return ret;1357}13581359static intconflict_rename_rename_1to2(struct merge_options *o,1360struct rename_conflict_info *ci)1361{1362/* One file was renamed in both branches, but to different names. */1363struct diff_filespec *one = ci->pair1->one;1364struct diff_filespec *a = ci->pair1->two;1365struct diff_filespec *b = ci->pair2->two;13661367output(o,1,_("CONFLICT (rename/rename): "1368"Rename\"%s\"->\"%s\"in branch\"%s\""1369"rename\"%s\"->\"%s\"in\"%s\"%s"),1370 one->path, a->path, ci->branch1,1371 one->path, b->path, ci->branch2,1372 o->call_depth ?_(" (left unresolved)") :"");1373if(o->call_depth) {1374struct merge_file_info mfi;1375struct diff_filespec other;1376struct diff_filespec *add;1377if(merge_file_one(o, one->path,1378&one->oid, one->mode,1379&a->oid, a->mode,1380&b->oid, b->mode,1381 ci->branch1, ci->branch2, &mfi))1382return-1;13831384/*1385 * FIXME: For rename/add-source conflicts (if we could detect1386 * such), this is wrong. We should instead find a unique1387 * pathname and then either rename the add-source file to that1388 * unique path, or use that unique path instead of src here.1389 */1390if(update_file(o,0, &mfi.oid, mfi.mode, one->path))1391return-1;13921393/*1394 * Above, we put the merged content at the merge-base's1395 * path. Now we usually need to delete both a->path and1396 * b->path. However, the rename on each side of the merge1397 * could also be involved in a rename/add conflict. In1398 * such cases, we should keep the added file around,1399 * resolving the conflict at that path in its favor.1400 */1401 add =filespec_from_entry(&other, ci->dst_entry1,2^1);1402if(add) {1403if(update_file(o,0, &add->oid, add->mode, a->path))1404return-1;1405}1406else1407remove_file_from_cache(a->path);1408 add =filespec_from_entry(&other, ci->dst_entry2,3^1);1409if(add) {1410if(update_file(o,0, &add->oid, add->mode, b->path))1411return-1;1412}1413else1414remove_file_from_cache(b->path);1415}else if(handle_file(o, a,2, ci) ||handle_file(o, b,3, ci))1416return-1;14171418return0;1419}14201421static intconflict_rename_rename_2to1(struct merge_options *o,1422struct rename_conflict_info *ci)1423{1424/* Two files, a & b, were renamed to the same thing, c. */1425struct diff_filespec *a = ci->pair1->one;1426struct diff_filespec *b = ci->pair2->one;1427struct diff_filespec *c1 = ci->pair1->two;1428struct diff_filespec *c2 = ci->pair2->two;1429char*path = c1->path;/* == c2->path */1430struct merge_file_info mfi_c1;1431struct merge_file_info mfi_c2;1432int ret;14331434output(o,1,_("CONFLICT (rename/rename): "1435"Rename%s->%sin%s. "1436"Rename%s->%sin%s"),1437 a->path, c1->path, ci->branch1,1438 b->path, c2->path, ci->branch2);14391440remove_file(o,1, a->path, o->call_depth ||would_lose_untracked(a->path));1441remove_file(o,1, b->path, o->call_depth ||would_lose_untracked(b->path));14421443if(merge_file_special_markers(o, a, c1, &ci->ren1_other,1444 o->branch1, c1->path,1445 o->branch2, ci->ren1_other.path, &mfi_c1) ||1446merge_file_special_markers(o, b, &ci->ren2_other, c2,1447 o->branch1, ci->ren2_other.path,1448 o->branch2, c2->path, &mfi_c2))1449return-1;14501451if(o->call_depth) {1452/*1453 * If mfi_c1.clean && mfi_c2.clean, then it might make1454 * sense to do a two-way merge of those results. But, I1455 * think in all cases, it makes sense to have the virtual1456 * merge base just undo the renames; they can be detected1457 * again later for the non-recursive merge.1458 */1459remove_file(o,0, path,0);1460 ret =update_file(o,0, &mfi_c1.oid, mfi_c1.mode, a->path);1461if(!ret)1462 ret =update_file(o,0, &mfi_c2.oid, mfi_c2.mode,1463 b->path);1464}else{1465char*new_path1 =unique_path(o, path, ci->branch1);1466char*new_path2 =unique_path(o, path, ci->branch2);1467output(o,1,_("Renaming%sto%sand%sto%sinstead"),1468 a->path, new_path1, b->path, new_path2);1469if(would_lose_untracked(path))1470/*1471 * Only way we get here is if both renames were from1472 * a directory rename AND user had an untracked file1473 * at the location where both files end up after the1474 * two directory renames. See testcase 10d of t6043.1475 */1476output(o,1,_("Refusing to lose untracked file at "1477"%s, even though it's in the way."),1478 path);1479else1480remove_file(o,0, path,0);1481 ret =update_file(o,0, &mfi_c1.oid, mfi_c1.mode, new_path1);1482if(!ret)1483 ret =update_file(o,0, &mfi_c2.oid, mfi_c2.mode,1484 new_path2);1485/*1486 * unpack_trees() actually populates the index for us for1487 * "normal" rename/rename(2to1) situtations so that the1488 * correct entries are at the higher stages, which would1489 * make the call below to update_stages_for_stage_data1490 * unnecessary. However, if either of the renames came1491 * from a directory rename, then unpack_trees() will not1492 * have gotten the right data loaded into the index, so we1493 * need to do so now. (While it'd be tempting to move this1494 * call to update_stages_for_stage_data() to1495 * apply_directory_rename_modifications(), that would break1496 * our intermediate calls to would_lose_untracked() since1497 * those rely on the current in-memory index. See also the1498 * big "NOTE" in update_stages()).1499 */1500if(update_stages_for_stage_data(o, path, ci->dst_entry1))1501 ret = -1;15021503free(new_path2);1504free(new_path1);1505}15061507return ret;1508}15091510/*1511 * Get the diff_filepairs changed between o_tree and tree.1512 */1513static struct diff_queue_struct *get_diffpairs(struct merge_options *o,1514struct tree *o_tree,1515struct tree *tree)1516{1517struct diff_queue_struct *ret;1518struct diff_options opts;15191520diff_setup(&opts);1521 opts.flags.recursive =1;1522 opts.flags.rename_empty =0;1523 opts.detect_rename = DIFF_DETECT_RENAME;1524 opts.rename_limit = o->merge_rename_limit >=0? o->merge_rename_limit :1525 o->diff_rename_limit >=0? o->diff_rename_limit :15261000;1527 opts.rename_score = o->rename_score;1528 opts.show_rename_progress = o->show_rename_progress;1529 opts.output_format = DIFF_FORMAT_NO_OUTPUT;1530diff_setup_done(&opts);1531diff_tree_oid(&o_tree->object.oid, &tree->object.oid,"", &opts);1532diffcore_std(&opts);1533if(opts.needed_rename_limit > o->needed_rename_limit)1534 o->needed_rename_limit = opts.needed_rename_limit;15351536 ret =xmalloc(sizeof(*ret));1537*ret = diff_queued_diff;15381539 opts.output_format = DIFF_FORMAT_NO_OUTPUT;1540 diff_queued_diff.nr =0;1541 diff_queued_diff.queue = NULL;1542diff_flush(&opts);1543return ret;1544}15451546static inttree_has_path(struct tree *tree,const char*path)1547{1548struct object_id hashy;1549unsigned int mode_o;15501551return!get_tree_entry(&tree->object.oid, path,1552&hashy, &mode_o);1553}15541555/*1556 * Return a new string that replaces the beginning portion (which matches1557 * entry->dir), with entry->new_dir. In perl-speak:1558 * new_path_name = (old_path =~ s/entry->dir/entry->new_dir/);1559 * NOTE:1560 * Caller must ensure that old_path starts with entry->dir + '/'.1561 */1562static char*apply_dir_rename(struct dir_rename_entry *entry,1563const char*old_path)1564{1565struct strbuf new_path = STRBUF_INIT;1566int oldlen, newlen;15671568if(entry->non_unique_new_dir)1569return NULL;15701571 oldlen =strlen(entry->dir);1572 newlen = entry->new_dir.len + (strlen(old_path) - oldlen) +1;1573strbuf_grow(&new_path, newlen);1574strbuf_addbuf(&new_path, &entry->new_dir);1575strbuf_addstr(&new_path, &old_path[oldlen]);15761577returnstrbuf_detach(&new_path, NULL);1578}15791580static voidget_renamed_dir_portion(const char*old_path,const char*new_path,1581char**old_dir,char**new_dir)1582{1583char*end_of_old, *end_of_new;1584int old_len, new_len;15851586*old_dir = NULL;1587*new_dir = NULL;15881589/*1590 * For1591 * "a/b/c/d/e/foo.c" -> "a/b/some/thing/else/e/foo.c"1592 * the "e/foo.c" part is the same, we just want to know that1593 * "a/b/c/d" was renamed to "a/b/some/thing/else"1594 * so, for this example, this function returns "a/b/c/d" in1595 * *old_dir and "a/b/some/thing/else" in *new_dir.1596 *1597 * Also, if the basename of the file changed, we don't care. We1598 * want to know which portion of the directory, if any, changed.1599 */1600 end_of_old =strrchr(old_path,'/');1601 end_of_new =strrchr(new_path,'/');16021603if(end_of_old == NULL || end_of_new == NULL)1604return;1605while(*--end_of_new == *--end_of_old &&1606 end_of_old != old_path &&1607 end_of_new != new_path)1608;/* Do nothing; all in the while loop */1609/*1610 * We've found the first non-matching character in the directory1611 * paths. That means the current directory we were comparing1612 * represents the rename. Move end_of_old and end_of_new back1613 * to the full directory name.1614 */1615if(*end_of_old =='/')1616 end_of_old++;1617if(*end_of_old !='/')1618 end_of_new++;1619 end_of_old =strchr(end_of_old,'/');1620 end_of_new =strchr(end_of_new,'/');16211622/*1623 * It may have been the case that old_path and new_path were the same1624 * directory all along. Don't claim a rename if they're the same.1625 */1626 old_len = end_of_old - old_path;1627 new_len = end_of_new - new_path;16281629if(old_len != new_len ||strncmp(old_path, new_path, old_len)) {1630*old_dir =xstrndup(old_path, old_len);1631*new_dir =xstrndup(new_path, new_len);1632}1633}16341635static voidremove_hashmap_entries(struct hashmap *dir_renames,1636struct string_list *items_to_remove)1637{1638int i;1639struct dir_rename_entry *entry;16401641for(i =0; i < items_to_remove->nr; i++) {1642 entry = items_to_remove->items[i].util;1643hashmap_remove(dir_renames, entry, NULL);1644}1645string_list_clear(items_to_remove,0);1646}16471648/*1649 * See if there is a directory rename for path, and if there are any file1650 * level conflicts for the renamed location. If there is a rename and1651 * there are no conflicts, return the new name. Otherwise, return NULL.1652 */1653static char*handle_path_level_conflicts(struct merge_options *o,1654const char*path,1655struct dir_rename_entry *entry,1656struct hashmap *collisions,1657struct tree *tree)1658{1659char*new_path = NULL;1660struct collision_entry *collision_ent;1661int clean =1;1662struct strbuf collision_paths = STRBUF_INIT;16631664/*1665 * entry has the mapping of old directory name to new directory name1666 * that we want to apply to path.1667 */1668 new_path =apply_dir_rename(entry, path);16691670if(!new_path) {1671/* This should only happen when entry->non_unique_new_dir set */1672if(!entry->non_unique_new_dir)1673BUG("entry->non_unqiue_dir not set and !new_path");1674output(o,1,_("CONFLICT (directory rename split): "1675"Unclear where to place%sbecause directory "1676"%swas renamed to multiple other directories, "1677"with no destination getting a majority of the "1678"files."),1679 path, entry->dir);1680 clean =0;1681return NULL;1682}16831684/*1685 * The caller needs to have ensured that it has pre-populated1686 * collisions with all paths that map to new_path. Do a quick check1687 * to ensure that's the case.1688 */1689 collision_ent =collision_find_entry(collisions, new_path);1690if(collision_ent == NULL)1691BUG("collision_ent is NULL");16921693/*1694 * Check for one-sided add/add/.../add conflicts, i.e.1695 * where implicit renames from the other side doing1696 * directory rename(s) can affect this side of history1697 * to put multiple paths into the same location. Warn1698 * and bail on directory renames for such paths.1699 */1700if(collision_ent->reported_already) {1701 clean =0;1702}else if(tree_has_path(tree, new_path)) {1703 collision_ent->reported_already =1;1704strbuf_add_separated_string_list(&collision_paths,", ",1705&collision_ent->source_files);1706output(o,1,_("CONFLICT (implicit dir rename): Existing "1707"file/dir at%sin the way of implicit "1708"directory rename(s) putting the following "1709"path(s) there:%s."),1710 new_path, collision_paths.buf);1711 clean =0;1712}else if(collision_ent->source_files.nr >1) {1713 collision_ent->reported_already =1;1714strbuf_add_separated_string_list(&collision_paths,", ",1715&collision_ent->source_files);1716output(o,1,_("CONFLICT (implicit dir rename): Cannot map "1717"more than one path to%s; implicit directory "1718"renames tried to put these paths there:%s"),1719 new_path, collision_paths.buf);1720 clean =0;1721}17221723/* Free memory we no longer need */1724strbuf_release(&collision_paths);1725if(!clean && new_path) {1726free(new_path);1727return NULL;1728}17291730return new_path;1731}17321733/*1734 * There are a couple things we want to do at the directory level:1735 * 1. Check for both sides renaming to the same thing, in order to avoid1736 * implicit renaming of files that should be left in place. (See1737 * testcase 6b in t6043 for details.)1738 * 2. Prune directory renames if there are still files left in the1739 * the original directory. These represent a partial directory rename,1740 * i.e. a rename where only some of the files within the directory1741 * were renamed elsewhere. (Technically, this could be done earlier1742 * in get_directory_renames(), except that would prevent us from1743 * doing the previous check and thus failing testcase 6b.)1744 * 3. Check for rename/rename(1to2) conflicts (at the directory level).1745 * In the future, we could potentially record this info as well and1746 * omit reporting rename/rename(1to2) conflicts for each path within1747 * the affected directories, thus cleaning up the merge output.1748 * NOTE: We do NOT check for rename/rename(2to1) conflicts at the1749 * directory level, because merging directories is fine. If it1750 * causes conflicts for files within those merged directories, then1751 * that should be detected at the individual path level.1752 */1753static voidhandle_directory_level_conflicts(struct merge_options *o,1754struct hashmap *dir_re_head,1755struct tree *head,1756struct hashmap *dir_re_merge,1757struct tree *merge)1758{1759struct hashmap_iter iter;1760struct dir_rename_entry *head_ent;1761struct dir_rename_entry *merge_ent;17621763struct string_list remove_from_head = STRING_LIST_INIT_NODUP;1764struct string_list remove_from_merge = STRING_LIST_INIT_NODUP;17651766hashmap_iter_init(dir_re_head, &iter);1767while((head_ent =hashmap_iter_next(&iter))) {1768 merge_ent =dir_rename_find_entry(dir_re_merge, head_ent->dir);1769if(merge_ent &&1770!head_ent->non_unique_new_dir &&1771!merge_ent->non_unique_new_dir &&1772!strbuf_cmp(&head_ent->new_dir, &merge_ent->new_dir)) {1773/* 1. Renamed identically; remove it from both sides */1774string_list_append(&remove_from_head,1775 head_ent->dir)->util = head_ent;1776strbuf_release(&head_ent->new_dir);1777string_list_append(&remove_from_merge,1778 merge_ent->dir)->util = merge_ent;1779strbuf_release(&merge_ent->new_dir);1780}else if(tree_has_path(head, head_ent->dir)) {1781/* 2. This wasn't a directory rename after all */1782string_list_append(&remove_from_head,1783 head_ent->dir)->util = head_ent;1784strbuf_release(&head_ent->new_dir);1785}1786}17871788remove_hashmap_entries(dir_re_head, &remove_from_head);1789remove_hashmap_entries(dir_re_merge, &remove_from_merge);17901791hashmap_iter_init(dir_re_merge, &iter);1792while((merge_ent =hashmap_iter_next(&iter))) {1793 head_ent =dir_rename_find_entry(dir_re_head, merge_ent->dir);1794if(tree_has_path(merge, merge_ent->dir)) {1795/* 2. This wasn't a directory rename after all */1796string_list_append(&remove_from_merge,1797 merge_ent->dir)->util = merge_ent;1798}else if(head_ent &&1799!head_ent->non_unique_new_dir &&1800!merge_ent->non_unique_new_dir) {1801/* 3. rename/rename(1to2) */1802/*1803 * We can assume it's not rename/rename(1to1) because1804 * that was case (1), already checked above. So we1805 * know that head_ent->new_dir and merge_ent->new_dir1806 * are different strings.1807 */1808output(o,1,_("CONFLICT (rename/rename): "1809"Rename directory%s->%sin%s. "1810"Rename directory%s->%sin%s"),1811 head_ent->dir, head_ent->new_dir.buf, o->branch1,1812 head_ent->dir, merge_ent->new_dir.buf, o->branch2);1813string_list_append(&remove_from_head,1814 head_ent->dir)->util = head_ent;1815strbuf_release(&head_ent->new_dir);1816string_list_append(&remove_from_merge,1817 merge_ent->dir)->util = merge_ent;1818strbuf_release(&merge_ent->new_dir);1819}1820}18211822remove_hashmap_entries(dir_re_head, &remove_from_head);1823remove_hashmap_entries(dir_re_merge, &remove_from_merge);1824}18251826static struct hashmap *get_directory_renames(struct diff_queue_struct *pairs,1827struct tree *tree)1828{1829struct hashmap *dir_renames;1830struct hashmap_iter iter;1831struct dir_rename_entry *entry;1832int i;18331834/*1835 * Typically, we think of a directory rename as all files from a1836 * certain directory being moved to a target directory. However,1837 * what if someone first moved two files from the original1838 * directory in one commit, and then renamed the directory1839 * somewhere else in a later commit? At merge time, we just know1840 * that files from the original directory went to two different1841 * places, and that the bulk of them ended up in the same place.1842 * We want each directory rename to represent where the bulk of the1843 * files from that directory end up; this function exists to find1844 * where the bulk of the files went.1845 *1846 * The first loop below simply iterates through the list of file1847 * renames, finding out how often each directory rename pair1848 * possibility occurs.1849 */1850 dir_renames =xmalloc(sizeof(*dir_renames));1851dir_rename_init(dir_renames);1852for(i =0; i < pairs->nr; ++i) {1853struct string_list_item *item;1854int*count;1855struct diff_filepair *pair = pairs->queue[i];1856char*old_dir, *new_dir;18571858/* File not part of directory rename if it wasn't renamed */1859if(pair->status !='R')1860continue;18611862get_renamed_dir_portion(pair->one->path, pair->two->path,1863&old_dir, &new_dir);1864if(!old_dir)1865/* Directory didn't change at all; ignore this one. */1866continue;18671868 entry =dir_rename_find_entry(dir_renames, old_dir);1869if(!entry) {1870 entry =xmalloc(sizeof(*entry));1871dir_rename_entry_init(entry, old_dir);1872hashmap_put(dir_renames, entry);1873}else{1874free(old_dir);1875}1876 item =string_list_lookup(&entry->possible_new_dirs, new_dir);1877if(!item) {1878 item =string_list_insert(&entry->possible_new_dirs,1879 new_dir);1880 item->util =xcalloc(1,sizeof(int));1881}else{1882free(new_dir);1883}1884 count = item->util;1885*count +=1;1886}18871888/*1889 * For each directory with files moved out of it, we find out which1890 * target directory received the most files so we can declare it to1891 * be the "winning" target location for the directory rename. This1892 * winner gets recorded in new_dir. If there is no winner1893 * (multiple target directories received the same number of files),1894 * we set non_unique_new_dir. Once we've determined the winner (or1895 * that there is no winner), we no longer need possible_new_dirs.1896 */1897hashmap_iter_init(dir_renames, &iter);1898while((entry =hashmap_iter_next(&iter))) {1899int max =0;1900int bad_max =0;1901char*best = NULL;19021903for(i =0; i < entry->possible_new_dirs.nr; i++) {1904int*count = entry->possible_new_dirs.items[i].util;19051906if(*count == max)1907 bad_max = max;1908else if(*count > max) {1909 max = *count;1910 best = entry->possible_new_dirs.items[i].string;1911}1912}1913if(bad_max == max)1914 entry->non_unique_new_dir =1;1915else{1916assert(entry->new_dir.len ==0);1917strbuf_addstr(&entry->new_dir, best);1918}1919/*1920 * The relevant directory sub-portion of the original full1921 * filepaths were xstrndup'ed before inserting into1922 * possible_new_dirs, and instead of manually iterating the1923 * list and free'ing each, just lie and tell1924 * possible_new_dirs that it did the strdup'ing so that it1925 * will free them for us.1926 */1927 entry->possible_new_dirs.strdup_strings =1;1928string_list_clear(&entry->possible_new_dirs,1);1929}19301931return dir_renames;1932}19331934static struct dir_rename_entry *check_dir_renamed(const char*path,1935struct hashmap *dir_renames)1936{1937char temp[PATH_MAX];1938char*end;1939struct dir_rename_entry *entry;19401941strcpy(temp, path);1942while((end =strrchr(temp,'/'))) {1943*end ='\0';1944 entry =dir_rename_find_entry(dir_renames, temp);1945if(entry)1946return entry;1947}1948return NULL;1949}19501951static voidcompute_collisions(struct hashmap *collisions,1952struct hashmap *dir_renames,1953struct diff_queue_struct *pairs)1954{1955int i;19561957/*1958 * Multiple files can be mapped to the same path due to directory1959 * renames done by the other side of history. Since that other1960 * side of history could have merged multiple directories into one,1961 * if our side of history added the same file basename to each of1962 * those directories, then all N of them would get implicitly1963 * renamed by the directory rename detection into the same path,1964 * and we'd get an add/add/.../add conflict, and all those adds1965 * from *this* side of history. This is not representable in the1966 * index, and users aren't going to easily be able to make sense of1967 * it. So we need to provide a good warning about what's1968 * happening, and fall back to no-directory-rename detection1969 * behavior for those paths.1970 *1971 * See testcases 9e and all of section 5 from t6043 for examples.1972 */1973collision_init(collisions);19741975for(i =0; i < pairs->nr; ++i) {1976struct dir_rename_entry *dir_rename_ent;1977struct collision_entry *collision_ent;1978char*new_path;1979struct diff_filepair *pair = pairs->queue[i];19801981if(pair->status =='D')1982continue;1983 dir_rename_ent =check_dir_renamed(pair->two->path,1984 dir_renames);1985if(!dir_rename_ent)1986continue;19871988 new_path =apply_dir_rename(dir_rename_ent, pair->two->path);1989if(!new_path)1990/*1991 * dir_rename_ent->non_unique_new_path is true, which1992 * means there is no directory rename for us to use,1993 * which means it won't cause us any additional1994 * collisions.1995 */1996continue;1997 collision_ent =collision_find_entry(collisions, new_path);1998if(!collision_ent) {1999 collision_ent =xcalloc(1,2000sizeof(struct collision_entry));2001hashmap_entry_init(collision_ent,strhash(new_path));2002hashmap_put(collisions, collision_ent);2003 collision_ent->target_file = new_path;2004}else{2005free(new_path);2006}2007string_list_insert(&collision_ent->source_files,2008 pair->two->path);2009}2010}20112012static char*check_for_directory_rename(struct merge_options *o,2013const char*path,2014struct tree *tree,2015struct hashmap *dir_renames,2016struct hashmap *dir_rename_exclusions,2017struct hashmap *collisions,2018int*clean_merge)2019{2020char*new_path = NULL;2021struct dir_rename_entry *entry =check_dir_renamed(path, dir_renames);2022struct dir_rename_entry *oentry = NULL;20232024if(!entry)2025return new_path;20262027/*2028 * This next part is a little weird. We do not want to do an2029 * implicit rename into a directory we renamed on our side, because2030 * that will result in a spurious rename/rename(1to2) conflict. An2031 * example:2032 * Base commit: dumbdir/afile, otherdir/bfile2033 * Side 1: smrtdir/afile, otherdir/bfile2034 * Side 2: dumbdir/afile, dumbdir/bfile2035 * Here, while working on Side 1, we could notice that otherdir was2036 * renamed/merged to dumbdir, and change the diff_filepair for2037 * otherdir/bfile into a rename into dumbdir/bfile. However, Side2038 * 2 will notice the rename from dumbdir to smrtdir, and do the2039 * transitive rename to move it from dumbdir/bfile to2040 * smrtdir/bfile. That gives us bfile in dumbdir vs being in2041 * smrtdir, a rename/rename(1to2) conflict. We really just want2042 * the file to end up in smrtdir. And the way to achieve that is2043 * to not let Side1 do the rename to dumbdir, since we know that is2044 * the source of one of our directory renames.2045 *2046 * That's why oentry and dir_rename_exclusions is here.2047 *2048 * As it turns out, this also prevents N-way transient rename2049 * confusion; See testcases 9c and 9d of t6043.2050 */2051 oentry =dir_rename_find_entry(dir_rename_exclusions, entry->new_dir.buf);2052if(oentry) {2053output(o,1,_("WARNING: Avoiding applying%s->%srename "2054"to%s, because%sitself was renamed."),2055 entry->dir, entry->new_dir.buf, path, entry->new_dir.buf);2056}else{2057 new_path =handle_path_level_conflicts(o, path, entry,2058 collisions, tree);2059*clean_merge &= (new_path != NULL);2060}20612062return new_path;2063}20642065static voidapply_directory_rename_modifications(struct merge_options *o,2066struct diff_filepair *pair,2067char*new_path,2068struct rename *re,2069struct tree *tree,2070struct tree *o_tree,2071struct tree *a_tree,2072struct tree *b_tree,2073struct string_list *entries,2074int*clean)2075{2076struct string_list_item *item;2077int stage = (tree == a_tree ?2:3);20782079/*2080 * In all cases where we can do directory rename detection,2081 * unpack_trees() will have read pair->two->path into the2082 * index and the working copy. We need to remove it so that2083 * we can instead place it at new_path. It is guaranteed to2084 * not be untracked (unpack_trees() would have errored out2085 * saying the file would have been overwritten), but it might2086 * be dirty, though.2087 */2088remove_file(o,1, pair->two->path,0/* no_wd */);20892090/* Find or create a new re->dst_entry */2091 item =string_list_lookup(entries, new_path);2092if(item) {2093/*2094 * Since we're renaming on this side of history, and it's2095 * due to a directory rename on the other side of history2096 * (which we only allow when the directory in question no2097 * longer exists on the other side of history), the2098 * original entry for re->dst_entry is no longer2099 * necessary...2100 */2101 re->dst_entry->processed =1;21022103/*2104 * ...because we'll be using this new one.2105 */2106 re->dst_entry = item->util;2107}else{2108/*2109 * re->dst_entry is for the before-dir-rename path, and we2110 * need it to hold information for the after-dir-rename2111 * path. Before creating a new entry, we need to mark the2112 * old one as unnecessary (...unless it is shared by2113 * src_entry, i.e. this didn't use to be a rename, in which2114 * case we can just allow the normal processing to happen2115 * for it).2116 */2117if(pair->status =='R')2118 re->dst_entry->processed =1;21192120 re->dst_entry =insert_stage_data(new_path,2121 o_tree, a_tree, b_tree,2122 entries);2123 item =string_list_insert(entries, new_path);2124 item->util = re->dst_entry;2125}21262127/*2128 * Update the stage_data with the information about the path we are2129 * moving into place. That slot will be empty and available for us2130 * to write to because of the collision checks in2131 * handle_path_level_conflicts(). In other words,2132 * re->dst_entry->stages[stage].oid will be the null_oid, so it's2133 * open for us to write to.2134 *2135 * It may be tempting to actually update the index at this point as2136 * well, using update_stages_for_stage_data(), but as per the big2137 * "NOTE" in update_stages(), doing so will modify the current2138 * in-memory index which will break calls to would_lose_untracked()2139 * that we need to make. Instead, we need to just make sure that2140 * the various conflict_rename_*() functions update the index2141 * explicitly rather than relying on unpack_trees() to have done it.2142 */2143get_tree_entry(&tree->object.oid,2144 pair->two->path,2145&re->dst_entry->stages[stage].oid,2146&re->dst_entry->stages[stage].mode);21472148/* Update pair status */2149if(pair->status =='A') {2150/*2151 * Recording rename information for this add makes it look2152 * like a rename/delete conflict. Make sure we can2153 * correctly handle this as an add that was moved to a new2154 * directory instead of reporting a rename/delete conflict.2155 */2156 re->add_turned_into_rename =1;2157}2158/*2159 * We don't actually look at pair->status again, but it seems2160 * pedagogically correct to adjust it.2161 */2162 pair->status ='R';21632164/*2165 * Finally, record the new location.2166 */2167 pair->two->path = new_path;2168}21692170/*2171 * Get information of all renames which occurred in 'pairs', making use of2172 * any implicit directory renames inferred from the other side of history.2173 * We need the three trees in the merge ('o_tree', 'a_tree' and 'b_tree')2174 * to be able to associate the correct cache entries with the rename2175 * information; tree is always equal to either a_tree or b_tree.2176 */2177static struct string_list *get_renames(struct merge_options *o,2178struct diff_queue_struct *pairs,2179struct hashmap *dir_renames,2180struct hashmap *dir_rename_exclusions,2181struct tree *tree,2182struct tree *o_tree,2183struct tree *a_tree,2184struct tree *b_tree,2185struct string_list *entries,2186int*clean_merge)2187{2188int i;2189struct hashmap collisions;2190struct hashmap_iter iter;2191struct collision_entry *e;2192struct string_list *renames;21932194compute_collisions(&collisions, dir_renames, pairs);2195 renames =xcalloc(1,sizeof(struct string_list));21962197for(i =0; i < pairs->nr; ++i) {2198struct string_list_item *item;2199struct rename *re;2200struct diff_filepair *pair = pairs->queue[i];2201char*new_path;/* non-NULL only with directory renames */22022203if(pair->status =='D') {2204diff_free_filepair(pair);2205continue;2206}2207 new_path =check_for_directory_rename(o, pair->two->path, tree,2208 dir_renames,2209 dir_rename_exclusions,2210&collisions,2211 clean_merge);2212if(pair->status !='R'&& !new_path) {2213diff_free_filepair(pair);2214continue;2215}22162217 re =xmalloc(sizeof(*re));2218 re->processed =0;2219 re->add_turned_into_rename =0;2220 re->pair = pair;2221 item =string_list_lookup(entries, re->pair->one->path);2222if(!item)2223 re->src_entry =insert_stage_data(re->pair->one->path,2224 o_tree, a_tree, b_tree, entries);2225else2226 re->src_entry = item->util;22272228 item =string_list_lookup(entries, re->pair->two->path);2229if(!item)2230 re->dst_entry =insert_stage_data(re->pair->two->path,2231 o_tree, a_tree, b_tree, entries);2232else2233 re->dst_entry = item->util;2234 item =string_list_insert(renames, pair->one->path);2235 item->util = re;2236if(new_path)2237apply_directory_rename_modifications(o, pair, new_path,2238 re, tree, o_tree,2239 a_tree, b_tree,2240 entries,2241 clean_merge);2242}22432244hashmap_iter_init(&collisions, &iter);2245while((e =hashmap_iter_next(&iter))) {2246free(e->target_file);2247string_list_clear(&e->source_files,0);2248}2249hashmap_free(&collisions,1);2250return renames;2251}22522253static intprocess_renames(struct merge_options *o,2254struct string_list *a_renames,2255struct string_list *b_renames)2256{2257int clean_merge =1, i, j;2258struct string_list a_by_dst = STRING_LIST_INIT_NODUP;2259struct string_list b_by_dst = STRING_LIST_INIT_NODUP;2260const struct rename *sre;22612262for(i =0; i < a_renames->nr; i++) {2263 sre = a_renames->items[i].util;2264string_list_insert(&a_by_dst, sre->pair->two->path)->util2265= (void*)sre;2266}2267for(i =0; i < b_renames->nr; i++) {2268 sre = b_renames->items[i].util;2269string_list_insert(&b_by_dst, sre->pair->two->path)->util2270= (void*)sre;2271}22722273for(i =0, j =0; i < a_renames->nr || j < b_renames->nr;) {2274struct string_list *renames1, *renames2Dst;2275struct rename *ren1 = NULL, *ren2 = NULL;2276const char*branch1, *branch2;2277const char*ren1_src, *ren1_dst;2278struct string_list_item *lookup;22792280if(i >= a_renames->nr) {2281 ren2 = b_renames->items[j++].util;2282}else if(j >= b_renames->nr) {2283 ren1 = a_renames->items[i++].util;2284}else{2285int compare =strcmp(a_renames->items[i].string,2286 b_renames->items[j].string);2287if(compare <=0)2288 ren1 = a_renames->items[i++].util;2289if(compare >=0)2290 ren2 = b_renames->items[j++].util;2291}22922293/* TODO: refactor, so that 1/2 are not needed */2294if(ren1) {2295 renames1 = a_renames;2296 renames2Dst = &b_by_dst;2297 branch1 = o->branch1;2298 branch2 = o->branch2;2299}else{2300 renames1 = b_renames;2301 renames2Dst = &a_by_dst;2302 branch1 = o->branch2;2303 branch2 = o->branch1;2304SWAP(ren2, ren1);2305}23062307if(ren1->processed)2308continue;2309 ren1->processed =1;2310 ren1->dst_entry->processed =1;2311/* BUG: We should only mark src_entry as processed if we2312 * are not dealing with a rename + add-source case.2313 */2314 ren1->src_entry->processed =1;23152316 ren1_src = ren1->pair->one->path;2317 ren1_dst = ren1->pair->two->path;23182319if(ren2) {2320/* One file renamed on both sides */2321const char*ren2_src = ren2->pair->one->path;2322const char*ren2_dst = ren2->pair->two->path;2323enum rename_type rename_type;2324if(strcmp(ren1_src, ren2_src) !=0)2325die("BUG: ren1_src != ren2_src");2326 ren2->dst_entry->processed =1;2327 ren2->processed =1;2328if(strcmp(ren1_dst, ren2_dst) !=0) {2329 rename_type = RENAME_ONE_FILE_TO_TWO;2330 clean_merge =0;2331}else{2332 rename_type = RENAME_ONE_FILE_TO_ONE;2333/* BUG: We should only remove ren1_src in2334 * the base stage (think of rename +2335 * add-source cases).2336 */2337remove_file(o,1, ren1_src,1);2338update_entry(ren1->dst_entry,2339 ren1->pair->one,2340 ren1->pair->two,2341 ren2->pair->two);2342}2343setup_rename_conflict_info(rename_type,2344 ren1->pair,2345 ren2->pair,2346 branch1,2347 branch2,2348 ren1->dst_entry,2349 ren2->dst_entry,2350 o,2351 NULL,2352 NULL);2353}else if((lookup =string_list_lookup(renames2Dst, ren1_dst))) {2354/* Two different files renamed to the same thing */2355char*ren2_dst;2356 ren2 = lookup->util;2357 ren2_dst = ren2->pair->two->path;2358if(strcmp(ren1_dst, ren2_dst) !=0)2359die("BUG: ren1_dst != ren2_dst");23602361 clean_merge =0;2362 ren2->processed =1;2363/*2364 * BUG: We should only mark src_entry as processed2365 * if we are not dealing with a rename + add-source2366 * case.2367 */2368 ren2->src_entry->processed =1;23692370setup_rename_conflict_info(RENAME_TWO_FILES_TO_ONE,2371 ren1->pair,2372 ren2->pair,2373 branch1,2374 branch2,2375 ren1->dst_entry,2376 ren2->dst_entry,2377 o,2378 ren1->src_entry,2379 ren2->src_entry);23802381}else{2382/* Renamed in 1, maybe changed in 2 */2383/* we only use sha1 and mode of these */2384struct diff_filespec src_other, dst_other;2385int try_merge;23862387/*2388 * unpack_trees loads entries from common-commit2389 * into stage 1, from head-commit into stage 2, and2390 * from merge-commit into stage 3. We keep track2391 * of which side corresponds to the rename.2392 */2393int renamed_stage = a_renames == renames1 ?2:3;2394int other_stage = a_renames == renames1 ?3:2;23952396/* BUG: We should only remove ren1_src in the base2397 * stage and in other_stage (think of rename +2398 * add-source case).2399 */2400remove_file(o,1, ren1_src,2401 renamed_stage ==2|| !was_tracked(ren1_src));24022403oidcpy(&src_other.oid,2404&ren1->src_entry->stages[other_stage].oid);2405 src_other.mode = ren1->src_entry->stages[other_stage].mode;2406oidcpy(&dst_other.oid,2407&ren1->dst_entry->stages[other_stage].oid);2408 dst_other.mode = ren1->dst_entry->stages[other_stage].mode;2409 try_merge =0;24102411if(oid_eq(&src_other.oid, &null_oid) &&2412 ren1->add_turned_into_rename) {2413setup_rename_conflict_info(RENAME_DIR,2414 ren1->pair,2415 NULL,2416 branch1,2417 branch2,2418 ren1->dst_entry,2419 NULL,2420 o,2421 NULL,2422 NULL);2423}else if(oid_eq(&src_other.oid, &null_oid)) {2424setup_rename_conflict_info(RENAME_DELETE,2425 ren1->pair,2426 NULL,2427 branch1,2428 branch2,2429 ren1->dst_entry,2430 NULL,2431 o,2432 NULL,2433 NULL);2434}else if((dst_other.mode == ren1->pair->two->mode) &&2435oid_eq(&dst_other.oid, &ren1->pair->two->oid)) {2436/*2437 * Added file on the other side identical to2438 * the file being renamed: clean merge.2439 * Also, there is no need to overwrite the2440 * file already in the working copy, so call2441 * update_file_flags() instead of2442 * update_file().2443 */2444if(update_file_flags(o,2445&ren1->pair->two->oid,2446 ren1->pair->two->mode,2447 ren1_dst,24481,/* update_cache */24490/* update_wd */))2450 clean_merge = -1;2451}else if(!oid_eq(&dst_other.oid, &null_oid)) {2452 clean_merge =0;2453 try_merge =1;2454output(o,1,_("CONFLICT (rename/add): Rename%s->%sin%s. "2455"%sadded in%s"),2456 ren1_src, ren1_dst, branch1,2457 ren1_dst, branch2);2458if(o->call_depth) {2459struct merge_file_info mfi;2460if(merge_file_one(o, ren1_dst, &null_oid,0,2461&ren1->pair->two->oid,2462 ren1->pair->two->mode,2463&dst_other.oid,2464 dst_other.mode,2465 branch1, branch2, &mfi)) {2466 clean_merge = -1;2467goto cleanup_and_return;2468}2469output(o,1,_("Adding merged%s"), ren1_dst);2470if(update_file(o,0, &mfi.oid,2471 mfi.mode, ren1_dst))2472 clean_merge = -1;2473 try_merge =0;2474}else{2475char*new_path =unique_path(o, ren1_dst, branch2);2476output(o,1,_("Adding as%sinstead"), new_path);2477if(update_file(o,0, &dst_other.oid,2478 dst_other.mode, new_path))2479 clean_merge = -1;2480free(new_path);2481}2482}else2483 try_merge =1;24842485if(clean_merge <0)2486goto cleanup_and_return;2487if(try_merge) {2488struct diff_filespec *one, *a, *b;2489 src_other.path = (char*)ren1_src;24902491 one = ren1->pair->one;2492if(a_renames == renames1) {2493 a = ren1->pair->two;2494 b = &src_other;2495}else{2496 b = ren1->pair->two;2497 a = &src_other;2498}2499update_entry(ren1->dst_entry, one, a, b);2500setup_rename_conflict_info(RENAME_NORMAL,2501 ren1->pair,2502 NULL,2503 branch1,2504 NULL,2505 ren1->dst_entry,2506 NULL,2507 o,2508 NULL,2509 NULL);2510}2511}2512}2513cleanup_and_return:2514string_list_clear(&a_by_dst,0);2515string_list_clear(&b_by_dst,0);25162517return clean_merge;2518}25192520struct rename_info {2521struct string_list *head_renames;2522struct string_list *merge_renames;2523};25242525static voidinitial_cleanup_rename(struct diff_queue_struct *pairs,2526struct hashmap *dir_renames)2527{2528struct hashmap_iter iter;2529struct dir_rename_entry *e;25302531hashmap_iter_init(dir_renames, &iter);2532while((e =hashmap_iter_next(&iter))) {2533free(e->dir);2534strbuf_release(&e->new_dir);2535/* possible_new_dirs already cleared in get_directory_renames */2536}2537hashmap_free(dir_renames,1);2538free(dir_renames);25392540free(pairs->queue);2541free(pairs);2542}25432544static inthandle_renames(struct merge_options *o,2545struct tree *common,2546struct tree *head,2547struct tree *merge,2548struct string_list *entries,2549struct rename_info *ri)2550{2551struct diff_queue_struct *head_pairs, *merge_pairs;2552struct hashmap *dir_re_head, *dir_re_merge;2553int clean =1;25542555 ri->head_renames = NULL;2556 ri->merge_renames = NULL;25572558if(!o->detect_rename)2559return1;25602561 head_pairs =get_diffpairs(o, common, head);2562 merge_pairs =get_diffpairs(o, common, merge);25632564 dir_re_head =get_directory_renames(head_pairs, head);2565 dir_re_merge =get_directory_renames(merge_pairs, merge);25662567handle_directory_level_conflicts(o,2568 dir_re_head, head,2569 dir_re_merge, merge);25702571 ri->head_renames =get_renames(o, head_pairs,2572 dir_re_merge, dir_re_head, head,2573 common, head, merge, entries,2574&clean);2575if(clean <0)2576goto cleanup;2577 ri->merge_renames =get_renames(o, merge_pairs,2578 dir_re_head, dir_re_merge, merge,2579 common, head, merge, entries,2580&clean);2581if(clean <0)2582goto cleanup;2583 clean &=process_renames(o, ri->head_renames, ri->merge_renames);25842585cleanup:2586/*2587 * Some cleanup is deferred until cleanup_renames() because the2588 * data structures are still needed and referenced in2589 * process_entry(). But there are a few things we can free now.2590 */2591initial_cleanup_rename(head_pairs, dir_re_head);2592initial_cleanup_rename(merge_pairs, dir_re_merge);25932594return clean;2595}25962597static voidfinal_cleanup_rename(struct string_list *rename)2598{2599const struct rename *re;2600int i;26012602if(rename == NULL)2603return;26042605for(i =0; i < rename->nr; i++) {2606 re = rename->items[i].util;2607diff_free_filepair(re->pair);2608}2609string_list_clear(rename,1);2610free(rename);2611}26122613static voidfinal_cleanup_renames(struct rename_info *re_info)2614{2615final_cleanup_rename(re_info->head_renames);2616final_cleanup_rename(re_info->merge_renames);2617}26182619static struct object_id *stage_oid(const struct object_id *oid,unsigned mode)2620{2621return(is_null_oid(oid) || mode ==0) ? NULL: (struct object_id *)oid;2622}26232624static intread_oid_strbuf(struct merge_options *o,2625const struct object_id *oid,struct strbuf *dst)2626{2627void*buf;2628enum object_type type;2629unsigned long size;2630 buf =read_object_file(oid, &type, &size);2631if(!buf)2632returnerr(o,_("cannot read object%s"),oid_to_hex(oid));2633if(type != OBJ_BLOB) {2634free(buf);2635returnerr(o,_("object%sis not a blob"),oid_to_hex(oid));2636}2637strbuf_attach(dst, buf, size, size +1);2638return0;2639}26402641static intblob_unchanged(struct merge_options *opt,2642const struct object_id *o_oid,2643unsigned o_mode,2644const struct object_id *a_oid,2645unsigned a_mode,2646int renormalize,const char*path)2647{2648struct strbuf o = STRBUF_INIT;2649struct strbuf a = STRBUF_INIT;2650int ret =0;/* assume changed for safety */26512652if(a_mode != o_mode)2653return0;2654if(oid_eq(o_oid, a_oid))2655return1;2656if(!renormalize)2657return0;26582659assert(o_oid && a_oid);2660if(read_oid_strbuf(opt, o_oid, &o) ||read_oid_strbuf(opt, a_oid, &a))2661goto error_return;2662/*2663 * Note: binary | is used so that both renormalizations are2664 * performed. Comparison can be skipped if both files are2665 * unchanged since their sha1s have already been compared.2666 */2667if(renormalize_buffer(&the_index, path, o.buf, o.len, &o) |2668renormalize_buffer(&the_index, path, a.buf, a.len, &a))2669 ret = (o.len == a.len && !memcmp(o.buf, a.buf, o.len));26702671error_return:2672strbuf_release(&o);2673strbuf_release(&a);2674return ret;2675}26762677static inthandle_modify_delete(struct merge_options *o,2678const char*path,2679struct object_id *o_oid,int o_mode,2680struct object_id *a_oid,int a_mode,2681struct object_id *b_oid,int b_mode)2682{2683const char*modify_branch, *delete_branch;2684struct object_id *changed_oid;2685int changed_mode;26862687if(a_oid) {2688 modify_branch = o->branch1;2689 delete_branch = o->branch2;2690 changed_oid = a_oid;2691 changed_mode = a_mode;2692}else{2693 modify_branch = o->branch2;2694 delete_branch = o->branch1;2695 changed_oid = b_oid;2696 changed_mode = b_mode;2697}26982699returnhandle_change_delete(o,2700 path, NULL,2701 o_oid, o_mode,2702 changed_oid, changed_mode,2703 modify_branch, delete_branch,2704_("modify"),_("modified"));2705}27062707static intmerge_content(struct merge_options *o,2708const char*path,2709int file_in_way,2710struct object_id *o_oid,int o_mode,2711struct object_id *a_oid,int a_mode,2712struct object_id *b_oid,int b_mode,2713struct rename_conflict_info *rename_conflict_info)2714{2715const char*reason =_("content");2716const char*path1 = NULL, *path2 = NULL;2717struct merge_file_info mfi;2718struct diff_filespec one, a, b;2719unsigned df_conflict_remains =0;27202721if(!o_oid) {2722 reason =_("add/add");2723 o_oid = (struct object_id *)&null_oid;2724}2725 one.path = a.path = b.path = (char*)path;2726oidcpy(&one.oid, o_oid);2727 one.mode = o_mode;2728oidcpy(&a.oid, a_oid);2729 a.mode = a_mode;2730oidcpy(&b.oid, b_oid);2731 b.mode = b_mode;27322733if(rename_conflict_info) {2734struct diff_filepair *pair1 = rename_conflict_info->pair1;27352736 path1 = (o->branch1 == rename_conflict_info->branch1) ?2737 pair1->two->path : pair1->one->path;2738/* If rename_conflict_info->pair2 != NULL, we are in2739 * RENAME_ONE_FILE_TO_ONE case. Otherwise, we have a2740 * normal rename.2741 */2742 path2 = (rename_conflict_info->pair2 ||2743 o->branch2 == rename_conflict_info->branch1) ?2744 pair1->two->path : pair1->one->path;27452746if(dir_in_way(path, !o->call_depth,2747S_ISGITLINK(pair1->two->mode)))2748 df_conflict_remains =1;2749}2750if(merge_file_special_markers(o, &one, &a, &b,2751 o->branch1, path1,2752 o->branch2, path2, &mfi))2753return-1;27542755if(mfi.clean && !df_conflict_remains &&2756oid_eq(&mfi.oid, a_oid) && mfi.mode == a_mode) {2757int path_renamed_outside_HEAD;2758output(o,3,_("Skipped%s(merged same as existing)"), path);2759/*2760 * The content merge resulted in the same file contents we2761 * already had. We can return early if those file contents2762 * are recorded at the correct path (which may not be true2763 * if the merge involves a rename).2764 */2765 path_renamed_outside_HEAD = !path2 || !strcmp(path, path2);2766if(!path_renamed_outside_HEAD) {2767add_cacheinfo(o, mfi.mode, &mfi.oid, path,27680, (!o->call_depth),0);2769return mfi.clean;2770}2771}else2772output(o,2,_("Auto-merging%s"), path);27732774if(!mfi.clean) {2775if(S_ISGITLINK(mfi.mode))2776 reason =_("submodule");2777output(o,1,_("CONFLICT (%s): Merge conflict in%s"),2778 reason, path);2779if(rename_conflict_info && !df_conflict_remains)2780if(update_stages(o, path, &one, &a, &b))2781return-1;2782}27832784if(df_conflict_remains || file_in_way) {2785char*new_path;2786if(o->call_depth) {2787remove_file_from_cache(path);2788}else{2789if(!mfi.clean) {2790if(update_stages(o, path, &one, &a, &b))2791return-1;2792}else{2793int file_from_stage2 =was_tracked(path);2794struct diff_filespec merged;2795oidcpy(&merged.oid, &mfi.oid);2796 merged.mode = mfi.mode;27972798if(update_stages(o, path, NULL,2799 file_from_stage2 ? &merged : NULL,2800 file_from_stage2 ? NULL : &merged))2801return-1;2802}28032804}2805 new_path =unique_path(o, path, rename_conflict_info->branch1);2806output(o,1,_("Adding as%sinstead"), new_path);2807if(update_file(o,0, &mfi.oid, mfi.mode, new_path)) {2808free(new_path);2809return-1;2810}2811free(new_path);2812 mfi.clean =0;2813}else if(update_file(o, mfi.clean, &mfi.oid, mfi.mode, path))2814return-1;2815return mfi.clean;2816}28172818static intconflict_rename_normal(struct merge_options *o,2819const char*path,2820struct object_id *o_oid,unsigned int o_mode,2821struct object_id *a_oid,unsigned int a_mode,2822struct object_id *b_oid,unsigned int b_mode,2823struct rename_conflict_info *ci)2824{2825int clean_merge;2826int file_in_the_way =0;28272828if(was_dirty(o, path)) {2829 file_in_the_way =1;2830output(o,1,_("Refusing to lose dirty file at%s"), path);2831}28322833/* Merge the content and write it out */2834 clean_merge =merge_content(o, path, file_in_the_way,2835 o_oid, o_mode, a_oid, a_mode, b_oid, b_mode,2836 ci);2837if(clean_merge >0&& file_in_the_way)2838 clean_merge =0;2839return clean_merge;2840}28412842/* Per entry merge function */2843static intprocess_entry(struct merge_options *o,2844const char*path,struct stage_data *entry)2845{2846int clean_merge =1;2847int normalize = o->renormalize;2848unsigned o_mode = entry->stages[1].mode;2849unsigned a_mode = entry->stages[2].mode;2850unsigned b_mode = entry->stages[3].mode;2851struct object_id *o_oid =stage_oid(&entry->stages[1].oid, o_mode);2852struct object_id *a_oid =stage_oid(&entry->stages[2].oid, a_mode);2853struct object_id *b_oid =stage_oid(&entry->stages[3].oid, b_mode);28542855 entry->processed =1;2856if(entry->rename_conflict_info) {2857struct rename_conflict_info *conflict_info = entry->rename_conflict_info;2858switch(conflict_info->rename_type) {2859case RENAME_NORMAL:2860case RENAME_ONE_FILE_TO_ONE:2861 clean_merge =conflict_rename_normal(o,2862 path,2863 o_oid, o_mode,2864 a_oid, a_mode,2865 b_oid, b_mode,2866 conflict_info);2867break;2868case RENAME_DIR:2869 clean_merge =1;2870if(conflict_rename_dir(o,2871 conflict_info->pair1,2872 conflict_info->branch1,2873 conflict_info->branch2))2874 clean_merge = -1;2875break;2876case RENAME_DELETE:2877 clean_merge =0;2878if(conflict_rename_delete(o,2879 conflict_info->pair1,2880 conflict_info->branch1,2881 conflict_info->branch2))2882 clean_merge = -1;2883break;2884case RENAME_ONE_FILE_TO_TWO:2885 clean_merge =0;2886if(conflict_rename_rename_1to2(o, conflict_info))2887 clean_merge = -1;2888break;2889case RENAME_TWO_FILES_TO_ONE:2890 clean_merge =0;2891if(conflict_rename_rename_2to1(o, conflict_info))2892 clean_merge = -1;2893break;2894default:2895 entry->processed =0;2896break;2897}2898}else if(o_oid && (!a_oid || !b_oid)) {2899/* Case A: Deleted in one */2900if((!a_oid && !b_oid) ||2901(!b_oid &&blob_unchanged(o, o_oid, o_mode, a_oid, a_mode, normalize, path)) ||2902(!a_oid &&blob_unchanged(o, o_oid, o_mode, b_oid, b_mode, normalize, path))) {2903/* Deleted in both or deleted in one and2904 * unchanged in the other */2905if(a_oid)2906output(o,2,_("Removing%s"), path);2907/* do not touch working file if it did not exist */2908remove_file(o,1, path, !a_oid);2909}else{2910/* Modify/delete; deleted side may have put a directory in the way */2911 clean_merge =0;2912if(handle_modify_delete(o, path, o_oid, o_mode,2913 a_oid, a_mode, b_oid, b_mode))2914 clean_merge = -1;2915}2916}else if((!o_oid && a_oid && !b_oid) ||2917(!o_oid && !a_oid && b_oid)) {2918/* Case B: Added in one. */2919/* [nothing|directory] -> ([nothing|directory], file) */29202921const char*add_branch;2922const char*other_branch;2923unsigned mode;2924const struct object_id *oid;2925const char*conf;29262927if(a_oid) {2928 add_branch = o->branch1;2929 other_branch = o->branch2;2930 mode = a_mode;2931 oid = a_oid;2932 conf =_("file/directory");2933}else{2934 add_branch = o->branch2;2935 other_branch = o->branch1;2936 mode = b_mode;2937 oid = b_oid;2938 conf =_("directory/file");2939}2940if(dir_in_way(path,2941!o->call_depth && !S_ISGITLINK(a_mode),29420)) {2943char*new_path =unique_path(o, path, add_branch);2944 clean_merge =0;2945output(o,1,_("CONFLICT (%s): There is a directory with name%sin%s. "2946"Adding%sas%s"),2947 conf, path, other_branch, path, new_path);2948if(update_file(o,0, oid, mode, new_path))2949 clean_merge = -1;2950else if(o->call_depth)2951remove_file_from_cache(path);2952free(new_path);2953}else{2954output(o,2,_("Adding%s"), path);2955/* do not overwrite file if already present */2956if(update_file_flags(o, oid, mode, path,1, !a_oid))2957 clean_merge = -1;2958}2959}else if(a_oid && b_oid) {2960/* Case C: Added in both (check for same permissions) and */2961/* case D: Modified in both, but differently. */2962 clean_merge =merge_content(o, path,0/* file_in_way */,2963 o_oid, o_mode, a_oid, a_mode, b_oid, b_mode,2964 NULL);2965}else if(!o_oid && !a_oid && !b_oid) {2966/*2967 * this entry was deleted altogether. a_mode == 0 means2968 * we had that path and want to actively remove it.2969 */2970remove_file(o,1, path, !a_mode);2971}else2972die("BUG: fatal merge failure, shouldn't happen.");29732974return clean_merge;2975}29762977intmerge_trees(struct merge_options *o,2978struct tree *head,2979struct tree *merge,2980struct tree *common,2981struct tree **result)2982{2983int code, clean;29842985if(o->subtree_shift) {2986 merge =shift_tree_object(head, merge, o->subtree_shift);2987 common =shift_tree_object(head, common, o->subtree_shift);2988}29892990if(oid_eq(&common->object.oid, &merge->object.oid)) {2991struct strbuf sb = STRBUF_INIT;29922993if(!o->call_depth &&index_has_changes(&sb)) {2994err(o,_("Dirty index: cannot merge (dirty:%s)"),2995 sb.buf);2996return0;2997}2998output(o,0,_("Already up to date!"));2999*result = head;3000return1;3001}30023003 code =git_merge_trees(o, common, head, merge);30043005if(code !=0) {3006if(show(o,4) || o->call_depth)3007err(o,_("merging of trees%sand%sfailed"),3008oid_to_hex(&head->object.oid),3009oid_to_hex(&merge->object.oid));3010return-1;3011}30123013if(unmerged_cache()) {3014struct string_list *entries;3015struct rename_info re_info;3016int i;3017/*3018 * Only need the hashmap while processing entries, so3019 * initialize it here and free it when we are done running3020 * through the entries. Keeping it in the merge_options as3021 * opposed to decaring a local hashmap is for convenience3022 * so that we don't have to pass it to around.3023 */3024hashmap_init(&o->current_file_dir_set, path_hashmap_cmp, NULL,512);3025get_files_dirs(o, head);3026get_files_dirs(o, merge);30273028 entries =get_unmerged();3029 clean =handle_renames(o, common, head, merge, entries,3030&re_info);3031record_df_conflict_files(o, entries);3032if(clean <0)3033goto cleanup;3034for(i = entries->nr-1;0<= i; i--) {3035const char*path = entries->items[i].string;3036struct stage_data *e = entries->items[i].util;3037if(!e->processed) {3038int ret =process_entry(o, path, e);3039if(!ret)3040 clean =0;3041else if(ret <0) {3042 clean = ret;3043goto cleanup;3044}3045}3046}3047for(i =0; i < entries->nr; i++) {3048struct stage_data *e = entries->items[i].util;3049if(!e->processed)3050die("BUG: unprocessed path???%s",3051 entries->items[i].string);3052}30533054cleanup:3055final_cleanup_renames(&re_info);30563057string_list_clear(entries,1);3058free(entries);30593060hashmap_free(&o->current_file_dir_set,1);30613062if(clean <0)3063return clean;3064}3065else3066 clean =1;30673068if(o->call_depth && !(*result =write_tree_from_memory(o)))3069return-1;30703071return clean;3072}30733074static struct commit_list *reverse_commit_list(struct commit_list *list)3075{3076struct commit_list *next = NULL, *current, *backup;3077for(current = list; current; current = backup) {3078 backup = current->next;3079 current->next = next;3080 next = current;3081}3082return next;3083}30843085/*3086 * Merge the commits h1 and h2, return the resulting virtual3087 * commit object and a flag indicating the cleanness of the merge.3088 */3089intmerge_recursive(struct merge_options *o,3090struct commit *h1,3091struct commit *h2,3092struct commit_list *ca,3093struct commit **result)3094{3095struct commit_list *iter;3096struct commit *merged_common_ancestors;3097struct tree *mrtree;3098int clean;30993100if(show(o,4)) {3101output(o,4,_("Merging:"));3102output_commit_title(o, h1);3103output_commit_title(o, h2);3104}31053106if(!ca) {3107 ca =get_merge_bases(h1, h2);3108 ca =reverse_commit_list(ca);3109}31103111if(show(o,5)) {3112unsigned cnt =commit_list_count(ca);31133114output(o,5,Q_("found%ucommon ancestor:",3115"found%ucommon ancestors:", cnt), cnt);3116for(iter = ca; iter; iter = iter->next)3117output_commit_title(o, iter->item);3118}31193120 merged_common_ancestors =pop_commit(&ca);3121if(merged_common_ancestors == NULL) {3122/* if there is no common ancestor, use an empty tree */3123struct tree *tree;31243125 tree =lookup_tree(the_hash_algo->empty_tree);3126 merged_common_ancestors =make_virtual_commit(tree,"ancestor");3127}31283129for(iter = ca; iter; iter = iter->next) {3130const char*saved_b1, *saved_b2;3131 o->call_depth++;3132/*3133 * When the merge fails, the result contains files3134 * with conflict markers. The cleanness flag is3135 * ignored (unless indicating an error), it was never3136 * actually used, as result of merge_trees has always3137 * overwritten it: the committed "conflicts" were3138 * already resolved.3139 */3140discard_cache();3141 saved_b1 = o->branch1;3142 saved_b2 = o->branch2;3143 o->branch1 ="Temporary merge branch 1";3144 o->branch2 ="Temporary merge branch 2";3145if(merge_recursive(o, merged_common_ancestors, iter->item,3146 NULL, &merged_common_ancestors) <0)3147return-1;3148 o->branch1 = saved_b1;3149 o->branch2 = saved_b2;3150 o->call_depth--;31513152if(!merged_common_ancestors)3153returnerr(o,_("merge returned no commit"));3154}31553156discard_cache();3157if(!o->call_depth)3158read_cache();31593160 o->ancestor ="merged common ancestors";3161 clean =merge_trees(o, h1->tree, h2->tree, merged_common_ancestors->tree,3162&mrtree);3163if(clean <0) {3164flush_output(o);3165return clean;3166}31673168if(o->call_depth) {3169*result =make_virtual_commit(mrtree,"merged tree");3170commit_list_insert(h1, &(*result)->parents);3171commit_list_insert(h2, &(*result)->parents->next);3172}3173flush_output(o);3174if(!o->call_depth && o->buffer_output <2)3175strbuf_release(&o->obuf);3176if(show(o,2))3177diff_warn_rename_limit("merge.renamelimit",3178 o->needed_rename_limit,0);3179return clean;3180}31813182static struct commit *get_ref(const struct object_id *oid,const char*name)3183{3184struct object *object;31853186 object =deref_tag(parse_object(oid), name,strlen(name));3187if(!object)3188return NULL;3189if(object->type == OBJ_TREE)3190returnmake_virtual_commit((struct tree*)object, name);3191if(object->type != OBJ_COMMIT)3192return NULL;3193if(parse_commit((struct commit *)object))3194return NULL;3195return(struct commit *)object;3196}31973198intmerge_recursive_generic(struct merge_options *o,3199const struct object_id *head,3200const struct object_id *merge,3201int num_base_list,3202const struct object_id **base_list,3203struct commit **result)3204{3205int clean;3206struct lock_file lock = LOCK_INIT;3207struct commit *head_commit =get_ref(head, o->branch1);3208struct commit *next_commit =get_ref(merge, o->branch2);3209struct commit_list *ca = NULL;32103211if(base_list) {3212int i;3213for(i =0; i < num_base_list; ++i) {3214struct commit *base;3215if(!(base =get_ref(base_list[i],oid_to_hex(base_list[i]))))3216returnerr(o,_("Could not parse object '%s'"),3217oid_to_hex(base_list[i]));3218commit_list_insert(base, &ca);3219}3220}32213222hold_locked_index(&lock, LOCK_DIE_ON_ERROR);3223 clean =merge_recursive(o, head_commit, next_commit, ca,3224 result);3225if(clean <0) {3226rollback_lock_file(&lock);3227return clean;3228}32293230if(write_locked_index(&the_index, &lock,3231 COMMIT_LOCK | SKIP_IF_UNCHANGED))3232returnerr(o,_("Unable to write index."));32333234return clean ?0:1;3235}32363237static voidmerge_recursive_config(struct merge_options *o)3238{3239git_config_get_int("merge.verbosity", &o->verbosity);3240git_config_get_int("diff.renamelimit", &o->diff_rename_limit);3241git_config_get_int("merge.renamelimit", &o->merge_rename_limit);3242git_config(git_xmerge_config, NULL);3243}32443245voidinit_merge_options(struct merge_options *o)3246{3247const char*merge_verbosity;3248memset(o,0,sizeof(struct merge_options));3249 o->verbosity =2;3250 o->buffer_output =1;3251 o->diff_rename_limit = -1;3252 o->merge_rename_limit = -1;3253 o->renormalize =0;3254 o->detect_rename =1;3255merge_recursive_config(o);3256 merge_verbosity =getenv("GIT_MERGE_VERBOSITY");3257if(merge_verbosity)3258 o->verbosity =strtol(merge_verbosity, NULL,10);3259if(o->verbosity >=5)3260 o->buffer_output =0;3261strbuf_init(&o->obuf,0);3262string_list_init(&o->df_conflict_file_set,1);3263}32643265intparse_merge_opt(struct merge_options *o,const char*s)3266{3267const char*arg;32683269if(!s || !*s)3270return-1;3271if(!strcmp(s,"ours"))3272 o->recursive_variant = MERGE_RECURSIVE_OURS;3273else if(!strcmp(s,"theirs"))3274 o->recursive_variant = MERGE_RECURSIVE_THEIRS;3275else if(!strcmp(s,"subtree"))3276 o->subtree_shift ="";3277else if(skip_prefix(s,"subtree=", &arg))3278 o->subtree_shift = arg;3279else if(!strcmp(s,"patience"))3280 o->xdl_opts =DIFF_WITH_ALG(o, PATIENCE_DIFF);3281else if(!strcmp(s,"histogram"))3282 o->xdl_opts =DIFF_WITH_ALG(o, HISTOGRAM_DIFF);3283else if(skip_prefix(s,"diff-algorithm=", &arg)) {3284long value =parse_algorithm_value(arg);3285if(value <0)3286return-1;3287/* clear out previous settings */3288DIFF_XDL_CLR(o, NEED_MINIMAL);3289 o->xdl_opts &= ~XDF_DIFF_ALGORITHM_MASK;3290 o->xdl_opts |= value;3291}3292else if(!strcmp(s,"ignore-space-change"))3293DIFF_XDL_SET(o, IGNORE_WHITESPACE_CHANGE);3294else if(!strcmp(s,"ignore-all-space"))3295DIFF_XDL_SET(o, IGNORE_WHITESPACE);3296else if(!strcmp(s,"ignore-space-at-eol"))3297DIFF_XDL_SET(o, IGNORE_WHITESPACE_AT_EOL);3298else if(!strcmp(s,"ignore-cr-at-eol"))3299DIFF_XDL_SET(o, IGNORE_CR_AT_EOL);3300else if(!strcmp(s,"renormalize"))3301 o->renormalize =1;3302else if(!strcmp(s,"no-renormalize"))3303 o->renormalize =0;3304else if(!strcmp(s,"no-renames"))3305 o->detect_rename =0;3306else if(!strcmp(s,"find-renames")) {3307 o->detect_rename =1;3308 o->rename_score =0;3309}3310else if(skip_prefix(s,"find-renames=", &arg) ||3311skip_prefix(s,"rename-threshold=", &arg)) {3312if((o->rename_score =parse_rename_score(&arg)) == -1|| *arg !=0)3313return-1;3314 o->detect_rename =1;3315}3316else3317return-1;3318return0;3319}