1/* 2 * Recursive Merge algorithm stolen from git-merge-recursive.py by 3 * Fredrik Kuivinen. 4 * The thieves were Alex Riesen and Johannes Schindelin, in June/July 2006 5 */ 6#include"cache.h" 7#include"config.h" 8#include"advice.h" 9#include"lockfile.h" 10#include"cache-tree.h" 11#include"commit.h" 12#include"blob.h" 13#include"builtin.h" 14#include"tree-walk.h" 15#include"diff.h" 16#include"diffcore.h" 17#include"tag.h" 18#include"unpack-trees.h" 19#include"string-list.h" 20#include"xdiff-interface.h" 21#include"ll-merge.h" 22#include"attr.h" 23#include"merge-recursive.h" 24#include"dir.h" 25#include"submodule.h" 26 27struct path_hashmap_entry { 28struct hashmap_entry e; 29char path[FLEX_ARRAY]; 30}; 31 32static intpath_hashmap_cmp(const void*cmp_data, 33const void*entry, 34const void*entry_or_key, 35const void*keydata) 36{ 37const struct path_hashmap_entry *a = entry; 38const struct path_hashmap_entry *b = entry_or_key; 39const char*key = keydata; 40 41if(ignore_case) 42returnstrcasecmp(a->path, key ? key : b->path); 43else 44returnstrcmp(a->path, key ? key : b->path); 45} 46 47static unsigned intpath_hash(const char*path) 48{ 49return ignore_case ?strihash(path) :strhash(path); 50} 51 52static struct dir_rename_entry *dir_rename_find_entry(struct hashmap *hashmap, 53char*dir) 54{ 55struct dir_rename_entry key; 56 57if(dir == NULL) 58return NULL; 59hashmap_entry_init(&key,strhash(dir)); 60 key.dir = dir; 61returnhashmap_get(hashmap, &key, NULL); 62} 63 64static intdir_rename_cmp(const void*unused_cmp_data, 65const void*entry, 66const void*entry_or_key, 67const void*unused_keydata) 68{ 69const struct dir_rename_entry *e1 = entry; 70const struct dir_rename_entry *e2 = entry_or_key; 71 72returnstrcmp(e1->dir, e2->dir); 73} 74 75static voiddir_rename_init(struct hashmap *map) 76{ 77hashmap_init(map, dir_rename_cmp, NULL,0); 78} 79 80static voiddir_rename_entry_init(struct dir_rename_entry *entry, 81char*directory) 82{ 83hashmap_entry_init(entry,strhash(directory)); 84 entry->dir = directory; 85 entry->non_unique_new_dir =0; 86strbuf_init(&entry->new_dir,0); 87string_list_init(&entry->possible_new_dirs,0); 88} 89 90static struct collision_entry *collision_find_entry(struct hashmap *hashmap, 91char*target_file) 92{ 93struct collision_entry key; 94 95hashmap_entry_init(&key,strhash(target_file)); 96 key.target_file = target_file; 97returnhashmap_get(hashmap, &key, NULL); 98} 99 100static intcollision_cmp(void*unused_cmp_data, 101const struct collision_entry *e1, 102const struct collision_entry *e2, 103const void*unused_keydata) 104{ 105returnstrcmp(e1->target_file, e2->target_file); 106} 107 108static voidcollision_init(struct hashmap *map) 109{ 110hashmap_init(map, (hashmap_cmp_fn) collision_cmp, NULL,0); 111} 112 113static voidflush_output(struct merge_options *o) 114{ 115if(o->buffer_output <2&& o->obuf.len) { 116fputs(o->obuf.buf, stdout); 117strbuf_reset(&o->obuf); 118} 119} 120 121static interr(struct merge_options *o,const char*err, ...) 122{ 123va_list params; 124 125if(o->buffer_output <2) 126flush_output(o); 127else{ 128strbuf_complete(&o->obuf,'\n'); 129strbuf_addstr(&o->obuf,"error: "); 130} 131va_start(params, err); 132strbuf_vaddf(&o->obuf, err, params); 133va_end(params); 134if(o->buffer_output >1) 135strbuf_addch(&o->obuf,'\n'); 136else{ 137error("%s", o->obuf.buf); 138strbuf_reset(&o->obuf); 139} 140 141return-1; 142} 143 144static struct tree *shift_tree_object(struct tree *one,struct tree *two, 145const char*subtree_shift) 146{ 147struct object_id shifted; 148 149if(!*subtree_shift) { 150shift_tree(&one->object.oid, &two->object.oid, &shifted,0); 151}else{ 152shift_tree_by(&one->object.oid, &two->object.oid, &shifted, 153 subtree_shift); 154} 155if(!oidcmp(&two->object.oid, &shifted)) 156return two; 157returnlookup_tree(&shifted); 158} 159 160static struct commit *make_virtual_commit(struct tree *tree,const char*comment) 161{ 162struct commit *commit =alloc_commit_node(); 163 164set_merge_remote_desc(commit, comment, (struct object *)commit); 165 commit->tree = tree; 166 commit->object.parsed =1; 167return commit; 168} 169 170/* 171 * Since we use get_tree_entry(), which does not put the read object into 172 * the object pool, we cannot rely on a == b. 173 */ 174static intoid_eq(const struct object_id *a,const struct object_id *b) 175{ 176if(!a && !b) 177return2; 178return a && b &&oidcmp(a, b) ==0; 179} 180 181enum rename_type { 182 RENAME_NORMAL =0, 183 RENAME_DIR, 184 RENAME_DELETE, 185 RENAME_ONE_FILE_TO_ONE, 186 RENAME_ONE_FILE_TO_TWO, 187 RENAME_TWO_FILES_TO_ONE 188}; 189 190struct rename_conflict_info { 191enum rename_type rename_type; 192struct diff_filepair *pair1; 193struct diff_filepair *pair2; 194const char*branch1; 195const char*branch2; 196struct stage_data *dst_entry1; 197struct stage_data *dst_entry2; 198struct diff_filespec ren1_other; 199struct diff_filespec ren2_other; 200}; 201 202/* 203 * Since we want to write the index eventually, we cannot reuse the index 204 * for these (temporary) data. 205 */ 206struct stage_data { 207struct{ 208unsigned mode; 209struct object_id oid; 210} stages[4]; 211struct rename_conflict_info *rename_conflict_info; 212unsigned processed:1; 213}; 214 215staticinlinevoidsetup_rename_conflict_info(enum rename_type rename_type, 216struct diff_filepair *pair1, 217struct diff_filepair *pair2, 218const char*branch1, 219const char*branch2, 220struct stage_data *dst_entry1, 221struct stage_data *dst_entry2, 222struct merge_options *o, 223struct stage_data *src_entry1, 224struct stage_data *src_entry2) 225{ 226struct rename_conflict_info *ci =xcalloc(1,sizeof(struct rename_conflict_info)); 227 ci->rename_type = rename_type; 228 ci->pair1 = pair1; 229 ci->branch1 = branch1; 230 ci->branch2 = branch2; 231 232 ci->dst_entry1 = dst_entry1; 233 dst_entry1->rename_conflict_info = ci; 234 dst_entry1->processed =0; 235 236assert(!pair2 == !dst_entry2); 237if(dst_entry2) { 238 ci->dst_entry2 = dst_entry2; 239 ci->pair2 = pair2; 240 dst_entry2->rename_conflict_info = ci; 241} 242 243if(rename_type == RENAME_TWO_FILES_TO_ONE) { 244/* 245 * For each rename, there could have been 246 * modifications on the side of history where that 247 * file was not renamed. 248 */ 249int ostage1 = o->branch1 == branch1 ?3:2; 250int ostage2 = ostage1 ^1; 251 252 ci->ren1_other.path = pair1->one->path; 253oidcpy(&ci->ren1_other.oid, &src_entry1->stages[ostage1].oid); 254 ci->ren1_other.mode = src_entry1->stages[ostage1].mode; 255 256 ci->ren2_other.path = pair2->one->path; 257oidcpy(&ci->ren2_other.oid, &src_entry2->stages[ostage2].oid); 258 ci->ren2_other.mode = src_entry2->stages[ostage2].mode; 259} 260} 261 262static intshow(struct merge_options *o,int v) 263{ 264return(!o->call_depth && o->verbosity >= v) || o->verbosity >=5; 265} 266 267__attribute__((format(printf,3,4))) 268static voidoutput(struct merge_options *o,int v,const char*fmt, ...) 269{ 270va_list ap; 271 272if(!show(o, v)) 273return; 274 275strbuf_addchars(&o->obuf,' ', o->call_depth *2); 276 277va_start(ap, fmt); 278strbuf_vaddf(&o->obuf, fmt, ap); 279va_end(ap); 280 281strbuf_addch(&o->obuf,'\n'); 282if(!o->buffer_output) 283flush_output(o); 284} 285 286static voidoutput_commit_title(struct merge_options *o,struct commit *commit) 287{ 288strbuf_addchars(&o->obuf,' ', o->call_depth *2); 289if(commit->util) 290strbuf_addf(&o->obuf,"virtual%s\n", 291merge_remote_util(commit)->name); 292else{ 293strbuf_add_unique_abbrev(&o->obuf, &commit->object.oid, 294 DEFAULT_ABBREV); 295strbuf_addch(&o->obuf,' '); 296if(parse_commit(commit) !=0) 297strbuf_addstr(&o->obuf,_("(bad commit)\n")); 298else{ 299const char*title; 300const char*msg =get_commit_buffer(commit, NULL); 301int len =find_commit_subject(msg, &title); 302if(len) 303strbuf_addf(&o->obuf,"%.*s\n", len, title); 304unuse_commit_buffer(commit, msg); 305} 306} 307flush_output(o); 308} 309 310static intadd_cacheinfo(struct merge_options *o, 311unsigned int mode,const struct object_id *oid, 312const char*path,int stage,int refresh,int options) 313{ 314struct cache_entry *ce; 315int ret; 316 317 ce =make_cache_entry(mode, oid ? oid->hash : null_sha1, path, stage,0); 318if(!ce) 319returnerr(o,_("add_cacheinfo failed for path '%s'; merge aborting."), path); 320 321 ret =add_cache_entry(ce, options); 322if(refresh) { 323struct cache_entry *nce; 324 325 nce =refresh_cache_entry(ce, CE_MATCH_REFRESH | CE_MATCH_IGNORE_MISSING); 326if(!nce) 327returnerr(o,_("add_cacheinfo failed to refresh for path '%s'; merge aborting."), path); 328if(nce != ce) 329 ret =add_cache_entry(nce, options); 330} 331return ret; 332} 333 334static voidinit_tree_desc_from_tree(struct tree_desc *desc,struct tree *tree) 335{ 336parse_tree(tree); 337init_tree_desc(desc, tree->buffer, tree->size); 338} 339 340static intgit_merge_trees(struct merge_options *o, 341struct tree *common, 342struct tree *head, 343struct tree *merge) 344{ 345int rc; 346struct tree_desc t[3]; 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) 945if(add_cacheinfo(o, mode, oid, path,0, update_wd, 946 ADD_CACHE_OK_TO_ADD)) 947return-1; 948return ret; 949} 950 951static intupdate_file(struct merge_options *o, 952int clean, 953const struct object_id *oid, 954unsigned mode, 955const char*path) 956{ 957returnupdate_file_flags(o, oid, mode, path, o->call_depth || clean, !o->call_depth); 958} 959 960/* Low level file merging, update and removal */ 961 962struct merge_file_info { 963struct object_id oid; 964unsigned mode; 965unsigned clean:1, 966 merge:1; 967}; 968 969static intmerge_3way(struct merge_options *o, 970 mmbuffer_t *result_buf, 971const struct diff_filespec *one, 972const struct diff_filespec *a, 973const struct diff_filespec *b, 974const char*branch1, 975const char*branch2) 976{ 977 mmfile_t orig, src1, src2; 978struct ll_merge_options ll_opts = {0}; 979char*base_name, *name1, *name2; 980int merge_status; 981 982 ll_opts.renormalize = o->renormalize; 983 ll_opts.xdl_opts = o->xdl_opts; 984 985if(o->call_depth) { 986 ll_opts.virtual_ancestor =1; 987 ll_opts.variant =0; 988}else{ 989switch(o->recursive_variant) { 990case MERGE_RECURSIVE_OURS: 991 ll_opts.variant = XDL_MERGE_FAVOR_OURS; 992break; 993case MERGE_RECURSIVE_THEIRS: 994 ll_opts.variant = XDL_MERGE_FAVOR_THEIRS; 995break; 996default: 997 ll_opts.variant =0; 998break; 999}1000}10011002if(strcmp(a->path, b->path) ||1003(o->ancestor != NULL &&strcmp(a->path, one->path) !=0)) {1004 base_name = o->ancestor == NULL ? NULL :1005mkpathdup("%s:%s", o->ancestor, one->path);1006 name1 =mkpathdup("%s:%s", branch1, a->path);1007 name2 =mkpathdup("%s:%s", branch2, b->path);1008}else{1009 base_name = o->ancestor == NULL ? NULL :1010mkpathdup("%s", o->ancestor);1011 name1 =mkpathdup("%s", branch1);1012 name2 =mkpathdup("%s", branch2);1013}10141015read_mmblob(&orig, &one->oid);1016read_mmblob(&src1, &a->oid);1017read_mmblob(&src2, &b->oid);10181019 merge_status =ll_merge(result_buf, a->path, &orig, base_name,1020&src1, name1, &src2, name2, &ll_opts);10211022free(base_name);1023free(name1);1024free(name2);1025free(orig.ptr);1026free(src1.ptr);1027free(src2.ptr);1028return merge_status;1029}10301031static intmerge_file_1(struct merge_options *o,1032const struct diff_filespec *one,1033const struct diff_filespec *a,1034const struct diff_filespec *b,1035const char*branch1,1036const char*branch2,1037struct merge_file_info *result)1038{1039 result->merge =0;1040 result->clean =1;10411042if((S_IFMT & a->mode) != (S_IFMT & b->mode)) {1043 result->clean =0;1044if(S_ISREG(a->mode)) {1045 result->mode = a->mode;1046oidcpy(&result->oid, &a->oid);1047}else{1048 result->mode = b->mode;1049oidcpy(&result->oid, &b->oid);1050}1051}else{1052if(!oid_eq(&a->oid, &one->oid) && !oid_eq(&b->oid, &one->oid))1053 result->merge =1;10541055/*1056 * Merge modes1057 */1058if(a->mode == b->mode || a->mode == one->mode)1059 result->mode = b->mode;1060else{1061 result->mode = a->mode;1062if(b->mode != one->mode) {1063 result->clean =0;1064 result->merge =1;1065}1066}10671068if(oid_eq(&a->oid, &b->oid) ||oid_eq(&a->oid, &one->oid))1069oidcpy(&result->oid, &b->oid);1070else if(oid_eq(&b->oid, &one->oid))1071oidcpy(&result->oid, &a->oid);1072else if(S_ISREG(a->mode)) {1073 mmbuffer_t result_buf;1074int ret =0, merge_status;10751076 merge_status =merge_3way(o, &result_buf, one, a, b,1077 branch1, branch2);10781079if((merge_status <0) || !result_buf.ptr)1080 ret =err(o,_("Failed to execute internal merge"));10811082if(!ret &&1083write_object_file(result_buf.ptr, result_buf.size,1084 blob_type, &result->oid))1085 ret =err(o,_("Unable to add%sto database"),1086 a->path);10871088free(result_buf.ptr);1089if(ret)1090return ret;1091 result->clean = (merge_status ==0);1092}else if(S_ISGITLINK(a->mode)) {1093 result->clean =merge_submodule(&result->oid,1094 one->path,1095&one->oid,1096&a->oid,1097&b->oid,1098!o->call_depth);1099}else if(S_ISLNK(a->mode)) {1100switch(o->recursive_variant) {1101case MERGE_RECURSIVE_NORMAL:1102oidcpy(&result->oid, &a->oid);1103if(!oid_eq(&a->oid, &b->oid))1104 result->clean =0;1105break;1106case MERGE_RECURSIVE_OURS:1107oidcpy(&result->oid, &a->oid);1108break;1109case MERGE_RECURSIVE_THEIRS:1110oidcpy(&result->oid, &b->oid);1111break;1112}1113}else1114die("BUG: unsupported object type in the tree");1115}11161117return0;1118}11191120static intmerge_file_special_markers(struct merge_options *o,1121const struct diff_filespec *one,1122const struct diff_filespec *a,1123const struct diff_filespec *b,1124const char*branch1,1125const char*filename1,1126const char*branch2,1127const char*filename2,1128struct merge_file_info *mfi)1129{1130char*side1 = NULL;1131char*side2 = NULL;1132int ret;11331134if(filename1)1135 side1 =xstrfmt("%s:%s", branch1, filename1);1136if(filename2)1137 side2 =xstrfmt("%s:%s", branch2, filename2);11381139 ret =merge_file_1(o, one, a, b,1140 side1 ? side1 : branch1,1141 side2 ? side2 : branch2, mfi);1142free(side1);1143free(side2);1144return ret;1145}11461147static intmerge_file_one(struct merge_options *o,1148const char*path,1149const struct object_id *o_oid,int o_mode,1150const struct object_id *a_oid,int a_mode,1151const struct object_id *b_oid,int b_mode,1152const char*branch1,1153const char*branch2,1154struct merge_file_info *mfi)1155{1156struct diff_filespec one, a, b;11571158 one.path = a.path = b.path = (char*)path;1159oidcpy(&one.oid, o_oid);1160 one.mode = o_mode;1161oidcpy(&a.oid, a_oid);1162 a.mode = a_mode;1163oidcpy(&b.oid, b_oid);1164 b.mode = b_mode;1165returnmerge_file_1(o, &one, &a, &b, branch1, branch2, mfi);1166}11671168static intconflict_rename_dir(struct merge_options *o,1169struct diff_filepair *pair,1170const char*rename_branch,1171const char*other_branch)1172{1173const struct diff_filespec *dest = pair->two;11741175if(!o->call_depth &&would_lose_untracked(dest->path)) {1176char*alt_path =unique_path(o, dest->path, rename_branch);11771178output(o,1,_("Error: Refusing to lose untracked file at%s; "1179"writing to%sinstead."),1180 dest->path, alt_path);1181/*1182 * Write the file in worktree at alt_path, but not in the1183 * index. Instead, write to dest->path for the index but1184 * only at the higher appropriate stage.1185 */1186if(update_file(o,0, &dest->oid, dest->mode, alt_path))1187return-1;1188free(alt_path);1189returnupdate_stages(o, dest->path, NULL,1190 rename_branch == o->branch1 ? dest : NULL,1191 rename_branch == o->branch1 ? NULL : dest);1192}11931194/* Update dest->path both in index and in worktree */1195if(update_file(o,1, &dest->oid, dest->mode, dest->path))1196return-1;1197return0;1198}11991200static inthandle_change_delete(struct merge_options *o,1201const char*path,const char*old_path,1202const struct object_id *o_oid,int o_mode,1203const struct object_id *changed_oid,1204int changed_mode,1205const char*change_branch,1206const char*delete_branch,1207const char*change,const char*change_past)1208{1209char*alt_path = NULL;1210const char*update_path = path;1211int ret =0;12121213if(dir_in_way(path, !o->call_depth,0) ||1214(!o->call_depth &&would_lose_untracked(path))) {1215 update_path = alt_path =unique_path(o, path, change_branch);1216}12171218if(o->call_depth) {1219/*1220 * We cannot arbitrarily accept either a_sha or b_sha as1221 * correct; since there is no true "middle point" between1222 * them, simply reuse the base version for virtual merge base.1223 */1224 ret =remove_file_from_cache(path);1225if(!ret)1226 ret =update_file(o,0, o_oid, o_mode, update_path);1227}else{1228if(!alt_path) {1229if(!old_path) {1230output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1231"and%sin%s. Version%sof%sleft in tree."),1232 change, path, delete_branch, change_past,1233 change_branch, change_branch, path);1234}else{1235output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1236"and%sto%sin%s. Version%sof%sleft in tree."),1237 change, old_path, delete_branch, change_past, path,1238 change_branch, change_branch, path);1239}1240}else{1241if(!old_path) {1242output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1243"and%sin%s. Version%sof%sleft in tree at%s."),1244 change, path, delete_branch, change_past,1245 change_branch, change_branch, path, alt_path);1246}else{1247output(o,1,_("CONFLICT (%s/delete):%sdeleted in%s"1248"and%sto%sin%s. Version%sof%sleft in tree at%s."),1249 change, old_path, delete_branch, change_past, path,1250 change_branch, change_branch, path, alt_path);1251}1252}1253/*1254 * No need to call update_file() on path when change_branch ==1255 * o->branch1 && !alt_path, since that would needlessly touch1256 * path. We could call update_file_flags() with update_cache=01257 * and update_wd=0, but that's a no-op.1258 */1259if(change_branch != o->branch1 || alt_path)1260 ret =update_file(o,0, changed_oid, changed_mode, update_path);1261}1262free(alt_path);12631264return ret;1265}12661267static intconflict_rename_delete(struct merge_options *o,1268struct diff_filepair *pair,1269const char*rename_branch,1270const char*delete_branch)1271{1272const struct diff_filespec *orig = pair->one;1273const struct diff_filespec *dest = pair->two;12741275if(handle_change_delete(o,1276 o->call_depth ? orig->path : dest->path,1277 o->call_depth ? NULL : orig->path,1278&orig->oid, orig->mode,1279&dest->oid, dest->mode,1280 rename_branch, delete_branch,1281_("rename"),_("renamed")))1282return-1;12831284if(o->call_depth)1285returnremove_file_from_cache(dest->path);1286else1287returnupdate_stages(o, dest->path, NULL,1288 rename_branch == o->branch1 ? dest : NULL,1289 rename_branch == o->branch1 ? NULL : dest);1290}12911292static struct diff_filespec *filespec_from_entry(struct diff_filespec *target,1293struct stage_data *entry,1294int stage)1295{1296struct object_id *oid = &entry->stages[stage].oid;1297unsigned mode = entry->stages[stage].mode;1298if(mode ==0||is_null_oid(oid))1299return NULL;1300oidcpy(&target->oid, oid);1301 target->mode = mode;1302return target;1303}13041305static inthandle_file(struct merge_options *o,1306struct diff_filespec *rename,1307int stage,1308struct rename_conflict_info *ci)1309{1310char*dst_name = rename->path;1311struct stage_data *dst_entry;1312const char*cur_branch, *other_branch;1313struct diff_filespec other;1314struct diff_filespec *add;1315int ret;13161317if(stage ==2) {1318 dst_entry = ci->dst_entry1;1319 cur_branch = ci->branch1;1320 other_branch = ci->branch2;1321}else{1322 dst_entry = ci->dst_entry2;1323 cur_branch = ci->branch2;1324 other_branch = ci->branch1;1325}13261327 add =filespec_from_entry(&other, dst_entry, stage ^1);1328if(add) {1329int ren_src_was_dirty =was_dirty(o, rename->path);1330char*add_name =unique_path(o, rename->path, other_branch);1331if(update_file(o,0, &add->oid, add->mode, add_name))1332return-1;13331334if(ren_src_was_dirty) {1335output(o,1,_("Refusing to lose dirty file at%s"),1336 rename->path);1337}1338/*1339 * Because the double negatives somehow keep confusing me...1340 * 1) update_wd iff !ren_src_was_dirty.1341 * 2) no_wd iff !update_wd1342 * 3) so, no_wd == !!ren_src_was_dirty == ren_src_was_dirty1343 */1344remove_file(o,0, rename->path, ren_src_was_dirty);1345 dst_name =unique_path(o, rename->path, cur_branch);1346}else{1347if(dir_in_way(rename->path, !o->call_depth,0)) {1348 dst_name =unique_path(o, rename->path, cur_branch);1349output(o,1,_("%sis a directory in%sadding as%sinstead"),1350 rename->path, other_branch, dst_name);1351}else if(!o->call_depth &&1352would_lose_untracked(rename->path)) {1353 dst_name =unique_path(o, rename->path, cur_branch);1354output(o,1,_("Refusing to lose untracked file at%s; "1355"adding as%sinstead"),1356 rename->path, dst_name);1357}1358}1359if((ret =update_file(o,0, &rename->oid, rename->mode, dst_name)))1360;/* fall through, do allow dst_name to be released */1361else if(stage ==2)1362 ret =update_stages(o, rename->path, NULL, rename, add);1363else1364 ret =update_stages(o, rename->path, NULL, add, rename);13651366if(dst_name != rename->path)1367free(dst_name);13681369return ret;1370}13711372static intconflict_rename_rename_1to2(struct merge_options *o,1373struct rename_conflict_info *ci)1374{1375/* One file was renamed in both branches, but to different names. */1376struct diff_filespec *one = ci->pair1->one;1377struct diff_filespec *a = ci->pair1->two;1378struct diff_filespec *b = ci->pair2->two;13791380output(o,1,_("CONFLICT (rename/rename): "1381"Rename\"%s\"->\"%s\"in branch\"%s\""1382"rename\"%s\"->\"%s\"in\"%s\"%s"),1383 one->path, a->path, ci->branch1,1384 one->path, b->path, ci->branch2,1385 o->call_depth ?_(" (left unresolved)") :"");1386if(o->call_depth) {1387struct merge_file_info mfi;1388struct diff_filespec other;1389struct diff_filespec *add;1390if(merge_file_one(o, one->path,1391&one->oid, one->mode,1392&a->oid, a->mode,1393&b->oid, b->mode,1394 ci->branch1, ci->branch2, &mfi))1395return-1;13961397/*1398 * FIXME: For rename/add-source conflicts (if we could detect1399 * such), this is wrong. We should instead find a unique1400 * pathname and then either rename the add-source file to that1401 * unique path, or use that unique path instead of src here.1402 */1403if(update_file(o,0, &mfi.oid, mfi.mode, one->path))1404return-1;14051406/*1407 * Above, we put the merged content at the merge-base's1408 * path. Now we usually need to delete both a->path and1409 * b->path. However, the rename on each side of the merge1410 * could also be involved in a rename/add conflict. In1411 * such cases, we should keep the added file around,1412 * resolving the conflict at that path in its favor.1413 */1414 add =filespec_from_entry(&other, ci->dst_entry1,2^1);1415if(add) {1416if(update_file(o,0, &add->oid, add->mode, a->path))1417return-1;1418}1419else1420remove_file_from_cache(a->path);1421 add =filespec_from_entry(&other, ci->dst_entry2,3^1);1422if(add) {1423if(update_file(o,0, &add->oid, add->mode, b->path))1424return-1;1425}1426else1427remove_file_from_cache(b->path);1428}else if(handle_file(o, a,2, ci) ||handle_file(o, b,3, ci))1429return-1;14301431return0;1432}14331434static intconflict_rename_rename_2to1(struct merge_options *o,1435struct rename_conflict_info *ci)1436{1437/* Two files, a & b, were renamed to the same thing, c. */1438struct diff_filespec *a = ci->pair1->one;1439struct diff_filespec *b = ci->pair2->one;1440struct diff_filespec *c1 = ci->pair1->two;1441struct diff_filespec *c2 = ci->pair2->two;1442char*path = c1->path;/* == c2->path */1443struct merge_file_info mfi_c1;1444struct merge_file_info mfi_c2;1445int ret;14461447output(o,1,_("CONFLICT (rename/rename): "1448"Rename%s->%sin%s. "1449"Rename%s->%sin%s"),1450 a->path, c1->path, ci->branch1,1451 b->path, c2->path, ci->branch2);14521453remove_file(o,1, a->path, o->call_depth ||would_lose_untracked(a->path));1454remove_file(o,1, b->path, o->call_depth ||would_lose_untracked(b->path));14551456if(merge_file_special_markers(o, a, c1, &ci->ren1_other,1457 o->branch1, c1->path,1458 o->branch2, ci->ren1_other.path, &mfi_c1) ||1459merge_file_special_markers(o, b, &ci->ren2_other, c2,1460 o->branch1, ci->ren2_other.path,1461 o->branch2, c2->path, &mfi_c2))1462return-1;14631464if(o->call_depth) {1465/*1466 * If mfi_c1.clean && mfi_c2.clean, then it might make1467 * sense to do a two-way merge of those results. But, I1468 * think in all cases, it makes sense to have the virtual1469 * merge base just undo the renames; they can be detected1470 * again later for the non-recursive merge.1471 */1472remove_file(o,0, path,0);1473 ret =update_file(o,0, &mfi_c1.oid, mfi_c1.mode, a->path);1474if(!ret)1475 ret =update_file(o,0, &mfi_c2.oid, mfi_c2.mode,1476 b->path);1477}else{1478char*new_path1 =unique_path(o, path, ci->branch1);1479char*new_path2 =unique_path(o, path, ci->branch2);1480output(o,1,_("Renaming%sto%sand%sto%sinstead"),1481 a->path, new_path1, b->path, new_path2);1482if(was_dirty(o, path))1483output(o,1,_("Refusing to lose dirty file at%s"),1484 path);1485else if(would_lose_untracked(path))1486/*1487 * Only way we get here is if both renames were from1488 * a directory rename AND user had an untracked file1489 * at the location where both files end up after the1490 * two directory renames. See testcase 10d of t6043.1491 */1492output(o,1,_("Refusing to lose untracked file at "1493"%s, even though it's in the way."),1494 path);1495else1496remove_file(o,0, path,0);1497 ret =update_file(o,0, &mfi_c1.oid, mfi_c1.mode, new_path1);1498if(!ret)1499 ret =update_file(o,0, &mfi_c2.oid, mfi_c2.mode,1500 new_path2);1501/*1502 * unpack_trees() actually populates the index for us for1503 * "normal" rename/rename(2to1) situtations so that the1504 * correct entries are at the higher stages, which would1505 * make the call below to update_stages_for_stage_data1506 * unnecessary. However, if either of the renames came1507 * from a directory rename, then unpack_trees() will not1508 * have gotten the right data loaded into the index, so we1509 * need to do so now. (While it'd be tempting to move this1510 * call to update_stages_for_stage_data() to1511 * apply_directory_rename_modifications(), that would break1512 * our intermediate calls to would_lose_untracked() since1513 * those rely on the current in-memory index. See also the1514 * big "NOTE" in update_stages()).1515 */1516if(update_stages_for_stage_data(o, path, ci->dst_entry1))1517 ret = -1;15181519free(new_path2);1520free(new_path1);1521}15221523return ret;1524}15251526/*1527 * Get the diff_filepairs changed between o_tree and tree.1528 */1529static struct diff_queue_struct *get_diffpairs(struct merge_options *o,1530struct tree *o_tree,1531struct tree *tree)1532{1533struct diff_queue_struct *ret;1534struct diff_options opts;15351536diff_setup(&opts);1537 opts.flags.recursive =1;1538 opts.flags.rename_empty =0;1539 opts.detect_rename = DIFF_DETECT_RENAME;1540 opts.rename_limit = o->merge_rename_limit >=0? o->merge_rename_limit :1541 o->diff_rename_limit >=0? o->diff_rename_limit :15421000;1543 opts.rename_score = o->rename_score;1544 opts.show_rename_progress = o->show_rename_progress;1545 opts.output_format = DIFF_FORMAT_NO_OUTPUT;1546diff_setup_done(&opts);1547diff_tree_oid(&o_tree->object.oid, &tree->object.oid,"", &opts);1548diffcore_std(&opts);1549if(opts.needed_rename_limit > o->needed_rename_limit)1550 o->needed_rename_limit = opts.needed_rename_limit;15511552 ret =xmalloc(sizeof(*ret));1553*ret = diff_queued_diff;15541555 opts.output_format = DIFF_FORMAT_NO_OUTPUT;1556 diff_queued_diff.nr =0;1557 diff_queued_diff.queue = NULL;1558diff_flush(&opts);1559return ret;1560}15611562static inttree_has_path(struct tree *tree,const char*path)1563{1564struct object_id hashy;1565unsigned int mode_o;15661567return!get_tree_entry(&tree->object.oid, path,1568&hashy, &mode_o);1569}15701571/*1572 * Return a new string that replaces the beginning portion (which matches1573 * entry->dir), with entry->new_dir. In perl-speak:1574 * new_path_name = (old_path =~ s/entry->dir/entry->new_dir/);1575 * NOTE:1576 * Caller must ensure that old_path starts with entry->dir + '/'.1577 */1578static char*apply_dir_rename(struct dir_rename_entry *entry,1579const char*old_path)1580{1581struct strbuf new_path = STRBUF_INIT;1582int oldlen, newlen;15831584if(entry->non_unique_new_dir)1585return NULL;15861587 oldlen =strlen(entry->dir);1588 newlen = entry->new_dir.len + (strlen(old_path) - oldlen) +1;1589strbuf_grow(&new_path, newlen);1590strbuf_addbuf(&new_path, &entry->new_dir);1591strbuf_addstr(&new_path, &old_path[oldlen]);15921593returnstrbuf_detach(&new_path, NULL);1594}15951596static voidget_renamed_dir_portion(const char*old_path,const char*new_path,1597char**old_dir,char**new_dir)1598{1599char*end_of_old, *end_of_new;1600int old_len, new_len;16011602*old_dir = NULL;1603*new_dir = NULL;16041605/*1606 * For1607 * "a/b/c/d/e/foo.c" -> "a/b/some/thing/else/e/foo.c"1608 * the "e/foo.c" part is the same, we just want to know that1609 * "a/b/c/d" was renamed to "a/b/some/thing/else"1610 * so, for this example, this function returns "a/b/c/d" in1611 * *old_dir and "a/b/some/thing/else" in *new_dir.1612 *1613 * Also, if the basename of the file changed, we don't care. We1614 * want to know which portion of the directory, if any, changed.1615 */1616 end_of_old =strrchr(old_path,'/');1617 end_of_new =strrchr(new_path,'/');16181619if(end_of_old == NULL || end_of_new == NULL)1620return;1621while(*--end_of_new == *--end_of_old &&1622 end_of_old != old_path &&1623 end_of_new != new_path)1624;/* Do nothing; all in the while loop */1625/*1626 * We've found the first non-matching character in the directory1627 * paths. That means the current directory we were comparing1628 * represents the rename. Move end_of_old and end_of_new back1629 * to the full directory name.1630 */1631if(*end_of_old =='/')1632 end_of_old++;1633if(*end_of_old !='/')1634 end_of_new++;1635 end_of_old =strchr(end_of_old,'/');1636 end_of_new =strchr(end_of_new,'/');16371638/*1639 * It may have been the case that old_path and new_path were the same1640 * directory all along. Don't claim a rename if they're the same.1641 */1642 old_len = end_of_old - old_path;1643 new_len = end_of_new - new_path;16441645if(old_len != new_len ||strncmp(old_path, new_path, old_len)) {1646*old_dir =xstrndup(old_path, old_len);1647*new_dir =xstrndup(new_path, new_len);1648}1649}16501651static voidremove_hashmap_entries(struct hashmap *dir_renames,1652struct string_list *items_to_remove)1653{1654int i;1655struct dir_rename_entry *entry;16561657for(i =0; i < items_to_remove->nr; i++) {1658 entry = items_to_remove->items[i].util;1659hashmap_remove(dir_renames, entry, NULL);1660}1661string_list_clear(items_to_remove,0);1662}16631664/*1665 * See if there is a directory rename for path, and if there are any file1666 * level conflicts for the renamed location. If there is a rename and1667 * there are no conflicts, return the new name. Otherwise, return NULL.1668 */1669static char*handle_path_level_conflicts(struct merge_options *o,1670const char*path,1671struct dir_rename_entry *entry,1672struct hashmap *collisions,1673struct tree *tree)1674{1675char*new_path = NULL;1676struct collision_entry *collision_ent;1677int clean =1;1678struct strbuf collision_paths = STRBUF_INIT;16791680/*1681 * entry has the mapping of old directory name to new directory name1682 * that we want to apply to path.1683 */1684 new_path =apply_dir_rename(entry, path);16851686if(!new_path) {1687/* This should only happen when entry->non_unique_new_dir set */1688if(!entry->non_unique_new_dir)1689BUG("entry->non_unqiue_dir not set and !new_path");1690output(o,1,_("CONFLICT (directory rename split): "1691"Unclear where to place%sbecause directory "1692"%swas renamed to multiple other directories, "1693"with no destination getting a majority of the "1694"files."),1695 path, entry->dir);1696 clean =0;1697return NULL;1698}16991700/*1701 * The caller needs to have ensured that it has pre-populated1702 * collisions with all paths that map to new_path. Do a quick check1703 * to ensure that's the case.1704 */1705 collision_ent =collision_find_entry(collisions, new_path);1706if(collision_ent == NULL)1707BUG("collision_ent is NULL");17081709/*1710 * Check for one-sided add/add/.../add conflicts, i.e.1711 * where implicit renames from the other side doing1712 * directory rename(s) can affect this side of history1713 * to put multiple paths into the same location. Warn1714 * and bail on directory renames for such paths.1715 */1716if(collision_ent->reported_already) {1717 clean =0;1718}else if(tree_has_path(tree, new_path)) {1719 collision_ent->reported_already =1;1720strbuf_add_separated_string_list(&collision_paths,", ",1721&collision_ent->source_files);1722output(o,1,_("CONFLICT (implicit dir rename): Existing "1723"file/dir at%sin the way of implicit "1724"directory rename(s) putting the following "1725"path(s) there:%s."),1726 new_path, collision_paths.buf);1727 clean =0;1728}else if(collision_ent->source_files.nr >1) {1729 collision_ent->reported_already =1;1730strbuf_add_separated_string_list(&collision_paths,", ",1731&collision_ent->source_files);1732output(o,1,_("CONFLICT (implicit dir rename): Cannot map "1733"more than one path to%s; implicit directory "1734"renames tried to put these paths there:%s"),1735 new_path, collision_paths.buf);1736 clean =0;1737}17381739/* Free memory we no longer need */1740strbuf_release(&collision_paths);1741if(!clean && new_path) {1742free(new_path);1743return NULL;1744}17451746return new_path;1747}17481749/*1750 * There are a couple things we want to do at the directory level:1751 * 1. Check for both sides renaming to the same thing, in order to avoid1752 * implicit renaming of files that should be left in place. (See1753 * testcase 6b in t6043 for details.)1754 * 2. Prune directory renames if there are still files left in the1755 * the original directory. These represent a partial directory rename,1756 * i.e. a rename where only some of the files within the directory1757 * were renamed elsewhere. (Technically, this could be done earlier1758 * in get_directory_renames(), except that would prevent us from1759 * doing the previous check and thus failing testcase 6b.)1760 * 3. Check for rename/rename(1to2) conflicts (at the directory level).1761 * In the future, we could potentially record this info as well and1762 * omit reporting rename/rename(1to2) conflicts for each path within1763 * the affected directories, thus cleaning up the merge output.1764 * NOTE: We do NOT check for rename/rename(2to1) conflicts at the1765 * directory level, because merging directories is fine. If it1766 * causes conflicts for files within those merged directories, then1767 * that should be detected at the individual path level.1768 */1769static voidhandle_directory_level_conflicts(struct merge_options *o,1770struct hashmap *dir_re_head,1771struct tree *head,1772struct hashmap *dir_re_merge,1773struct tree *merge)1774{1775struct hashmap_iter iter;1776struct dir_rename_entry *head_ent;1777struct dir_rename_entry *merge_ent;17781779struct string_list remove_from_head = STRING_LIST_INIT_NODUP;1780struct string_list remove_from_merge = STRING_LIST_INIT_NODUP;17811782hashmap_iter_init(dir_re_head, &iter);1783while((head_ent =hashmap_iter_next(&iter))) {1784 merge_ent =dir_rename_find_entry(dir_re_merge, head_ent->dir);1785if(merge_ent &&1786!head_ent->non_unique_new_dir &&1787!merge_ent->non_unique_new_dir &&1788!strbuf_cmp(&head_ent->new_dir, &merge_ent->new_dir)) {1789/* 1. Renamed identically; remove it from both sides */1790string_list_append(&remove_from_head,1791 head_ent->dir)->util = head_ent;1792strbuf_release(&head_ent->new_dir);1793string_list_append(&remove_from_merge,1794 merge_ent->dir)->util = merge_ent;1795strbuf_release(&merge_ent->new_dir);1796}else if(tree_has_path(head, head_ent->dir)) {1797/* 2. This wasn't a directory rename after all */1798string_list_append(&remove_from_head,1799 head_ent->dir)->util = head_ent;1800strbuf_release(&head_ent->new_dir);1801}1802}18031804remove_hashmap_entries(dir_re_head, &remove_from_head);1805remove_hashmap_entries(dir_re_merge, &remove_from_merge);18061807hashmap_iter_init(dir_re_merge, &iter);1808while((merge_ent =hashmap_iter_next(&iter))) {1809 head_ent =dir_rename_find_entry(dir_re_head, merge_ent->dir);1810if(tree_has_path(merge, merge_ent->dir)) {1811/* 2. This wasn't a directory rename after all */1812string_list_append(&remove_from_merge,1813 merge_ent->dir)->util = merge_ent;1814}else if(head_ent &&1815!head_ent->non_unique_new_dir &&1816!merge_ent->non_unique_new_dir) {1817/* 3. rename/rename(1to2) */1818/*1819 * We can assume it's not rename/rename(1to1) because1820 * that was case (1), already checked above. So we1821 * know that head_ent->new_dir and merge_ent->new_dir1822 * are different strings.1823 */1824output(o,1,_("CONFLICT (rename/rename): "1825"Rename directory%s->%sin%s. "1826"Rename directory%s->%sin%s"),1827 head_ent->dir, head_ent->new_dir.buf, o->branch1,1828 head_ent->dir, merge_ent->new_dir.buf, o->branch2);1829string_list_append(&remove_from_head,1830 head_ent->dir)->util = head_ent;1831strbuf_release(&head_ent->new_dir);1832string_list_append(&remove_from_merge,1833 merge_ent->dir)->util = merge_ent;1834strbuf_release(&merge_ent->new_dir);1835}1836}18371838remove_hashmap_entries(dir_re_head, &remove_from_head);1839remove_hashmap_entries(dir_re_merge, &remove_from_merge);1840}18411842static struct hashmap *get_directory_renames(struct diff_queue_struct *pairs,1843struct tree *tree)1844{1845struct hashmap *dir_renames;1846struct hashmap_iter iter;1847struct dir_rename_entry *entry;1848int i;18491850/*1851 * Typically, we think of a directory rename as all files from a1852 * certain directory being moved to a target directory. However,1853 * what if someone first moved two files from the original1854 * directory in one commit, and then renamed the directory1855 * somewhere else in a later commit? At merge time, we just know1856 * that files from the original directory went to two different1857 * places, and that the bulk of them ended up in the same place.1858 * We want each directory rename to represent where the bulk of the1859 * files from that directory end up; this function exists to find1860 * where the bulk of the files went.1861 *1862 * The first loop below simply iterates through the list of file1863 * renames, finding out how often each directory rename pair1864 * possibility occurs.1865 */1866 dir_renames =xmalloc(sizeof(*dir_renames));1867dir_rename_init(dir_renames);1868for(i =0; i < pairs->nr; ++i) {1869struct string_list_item *item;1870int*count;1871struct diff_filepair *pair = pairs->queue[i];1872char*old_dir, *new_dir;18731874/* File not part of directory rename if it wasn't renamed */1875if(pair->status !='R')1876continue;18771878get_renamed_dir_portion(pair->one->path, pair->two->path,1879&old_dir, &new_dir);1880if(!old_dir)1881/* Directory didn't change at all; ignore this one. */1882continue;18831884 entry =dir_rename_find_entry(dir_renames, old_dir);1885if(!entry) {1886 entry =xmalloc(sizeof(*entry));1887dir_rename_entry_init(entry, old_dir);1888hashmap_put(dir_renames, entry);1889}else{1890free(old_dir);1891}1892 item =string_list_lookup(&entry->possible_new_dirs, new_dir);1893if(!item) {1894 item =string_list_insert(&entry->possible_new_dirs,1895 new_dir);1896 item->util =xcalloc(1,sizeof(int));1897}else{1898free(new_dir);1899}1900 count = item->util;1901*count +=1;1902}19031904/*1905 * For each directory with files moved out of it, we find out which1906 * target directory received the most files so we can declare it to1907 * be the "winning" target location for the directory rename. This1908 * winner gets recorded in new_dir. If there is no winner1909 * (multiple target directories received the same number of files),1910 * we set non_unique_new_dir. Once we've determined the winner (or1911 * that there is no winner), we no longer need possible_new_dirs.1912 */1913hashmap_iter_init(dir_renames, &iter);1914while((entry =hashmap_iter_next(&iter))) {1915int max =0;1916int bad_max =0;1917char*best = NULL;19181919for(i =0; i < entry->possible_new_dirs.nr; i++) {1920int*count = entry->possible_new_dirs.items[i].util;19211922if(*count == max)1923 bad_max = max;1924else if(*count > max) {1925 max = *count;1926 best = entry->possible_new_dirs.items[i].string;1927}1928}1929if(bad_max == max)1930 entry->non_unique_new_dir =1;1931else{1932assert(entry->new_dir.len ==0);1933strbuf_addstr(&entry->new_dir, best);1934}1935/*1936 * The relevant directory sub-portion of the original full1937 * filepaths were xstrndup'ed before inserting into1938 * possible_new_dirs, and instead of manually iterating the1939 * list and free'ing each, just lie and tell1940 * possible_new_dirs that it did the strdup'ing so that it1941 * will free them for us.1942 */1943 entry->possible_new_dirs.strdup_strings =1;1944string_list_clear(&entry->possible_new_dirs,1);1945}19461947return dir_renames;1948}19491950static struct dir_rename_entry *check_dir_renamed(const char*path,1951struct hashmap *dir_renames)1952{1953char temp[PATH_MAX];1954char*end;1955struct dir_rename_entry *entry;19561957strcpy(temp, path);1958while((end =strrchr(temp,'/'))) {1959*end ='\0';1960 entry =dir_rename_find_entry(dir_renames, temp);1961if(entry)1962return entry;1963}1964return NULL;1965}19661967static voidcompute_collisions(struct hashmap *collisions,1968struct hashmap *dir_renames,1969struct diff_queue_struct *pairs)1970{1971int i;19721973/*1974 * Multiple files can be mapped to the same path due to directory1975 * renames done by the other side of history. Since that other1976 * side of history could have merged multiple directories into one,1977 * if our side of history added the same file basename to each of1978 * those directories, then all N of them would get implicitly1979 * renamed by the directory rename detection into the same path,1980 * and we'd get an add/add/.../add conflict, and all those adds1981 * from *this* side of history. This is not representable in the1982 * index, and users aren't going to easily be able to make sense of1983 * it. So we need to provide a good warning about what's1984 * happening, and fall back to no-directory-rename detection1985 * behavior for those paths.1986 *1987 * See testcases 9e and all of section 5 from t6043 for examples.1988 */1989collision_init(collisions);19901991for(i =0; i < pairs->nr; ++i) {1992struct dir_rename_entry *dir_rename_ent;1993struct collision_entry *collision_ent;1994char*new_path;1995struct diff_filepair *pair = pairs->queue[i];19961997if(pair->status !='A'&& pair->status !='R')1998continue;1999 dir_rename_ent =check_dir_renamed(pair->two->path,2000 dir_renames);2001if(!dir_rename_ent)2002continue;20032004 new_path =apply_dir_rename(dir_rename_ent, pair->two->path);2005if(!new_path)2006/*2007 * dir_rename_ent->non_unique_new_path is true, which2008 * means there is no directory rename for us to use,2009 * which means it won't cause us any additional2010 * collisions.2011 */2012continue;2013 collision_ent =collision_find_entry(collisions, new_path);2014if(!collision_ent) {2015 collision_ent =xcalloc(1,2016sizeof(struct collision_entry));2017hashmap_entry_init(collision_ent,strhash(new_path));2018hashmap_put(collisions, collision_ent);2019 collision_ent->target_file = new_path;2020}else{2021free(new_path);2022}2023string_list_insert(&collision_ent->source_files,2024 pair->two->path);2025}2026}20272028static char*check_for_directory_rename(struct merge_options *o,2029const char*path,2030struct tree *tree,2031struct hashmap *dir_renames,2032struct hashmap *dir_rename_exclusions,2033struct hashmap *collisions,2034int*clean_merge)2035{2036char*new_path = NULL;2037struct dir_rename_entry *entry =check_dir_renamed(path, dir_renames);2038struct dir_rename_entry *oentry = NULL;20392040if(!entry)2041return new_path;20422043/*2044 * This next part is a little weird. We do not want to do an2045 * implicit rename into a directory we renamed on our side, because2046 * that will result in a spurious rename/rename(1to2) conflict. An2047 * example:2048 * Base commit: dumbdir/afile, otherdir/bfile2049 * Side 1: smrtdir/afile, otherdir/bfile2050 * Side 2: dumbdir/afile, dumbdir/bfile2051 * Here, while working on Side 1, we could notice that otherdir was2052 * renamed/merged to dumbdir, and change the diff_filepair for2053 * otherdir/bfile into a rename into dumbdir/bfile. However, Side2054 * 2 will notice the rename from dumbdir to smrtdir, and do the2055 * transitive rename to move it from dumbdir/bfile to2056 * smrtdir/bfile. That gives us bfile in dumbdir vs being in2057 * smrtdir, a rename/rename(1to2) conflict. We really just want2058 * the file to end up in smrtdir. And the way to achieve that is2059 * to not let Side1 do the rename to dumbdir, since we know that is2060 * the source of one of our directory renames.2061 *2062 * That's why oentry and dir_rename_exclusions is here.2063 *2064 * As it turns out, this also prevents N-way transient rename2065 * confusion; See testcases 9c and 9d of t6043.2066 */2067 oentry =dir_rename_find_entry(dir_rename_exclusions, entry->new_dir.buf);2068if(oentry) {2069output(o,1,_("WARNING: Avoiding applying%s->%srename "2070"to%s, because%sitself was renamed."),2071 entry->dir, entry->new_dir.buf, path, entry->new_dir.buf);2072}else{2073 new_path =handle_path_level_conflicts(o, path, entry,2074 collisions, tree);2075*clean_merge &= (new_path != NULL);2076}20772078return new_path;2079}20802081static voidapply_directory_rename_modifications(struct merge_options *o,2082struct diff_filepair *pair,2083char*new_path,2084struct rename *re,2085struct tree *tree,2086struct tree *o_tree,2087struct tree *a_tree,2088struct tree *b_tree,2089struct string_list *entries,2090int*clean)2091{2092struct string_list_item *item;2093int stage = (tree == a_tree ?2:3);2094int update_wd;20952096/*2097 * In all cases where we can do directory rename detection,2098 * unpack_trees() will have read pair->two->path into the2099 * index and the working copy. We need to remove it so that2100 * we can instead place it at new_path. It is guaranteed to2101 * not be untracked (unpack_trees() would have errored out2102 * saying the file would have been overwritten), but it might2103 * be dirty, though.2104 */2105 update_wd = !was_dirty(o, pair->two->path);2106if(!update_wd)2107output(o,1,_("Refusing to lose dirty file at%s"),2108 pair->two->path);2109remove_file(o,1, pair->two->path, !update_wd);21102111/* Find or create a new re->dst_entry */2112 item =string_list_lookup(entries, new_path);2113if(item) {2114/*2115 * Since we're renaming on this side of history, and it's2116 * due to a directory rename on the other side of history2117 * (which we only allow when the directory in question no2118 * longer exists on the other side of history), the2119 * original entry for re->dst_entry is no longer2120 * necessary...2121 */2122 re->dst_entry->processed =1;21232124/*2125 * ...because we'll be using this new one.2126 */2127 re->dst_entry = item->util;2128}else{2129/*2130 * re->dst_entry is for the before-dir-rename path, and we2131 * need it to hold information for the after-dir-rename2132 * path. Before creating a new entry, we need to mark the2133 * old one as unnecessary (...unless it is shared by2134 * src_entry, i.e. this didn't use to be a rename, in which2135 * case we can just allow the normal processing to happen2136 * for it).2137 */2138if(pair->status =='R')2139 re->dst_entry->processed =1;21402141 re->dst_entry =insert_stage_data(new_path,2142 o_tree, a_tree, b_tree,2143 entries);2144 item =string_list_insert(entries, new_path);2145 item->util = re->dst_entry;2146}21472148/*2149 * Update the stage_data with the information about the path we are2150 * moving into place. That slot will be empty and available for us2151 * to write to because of the collision checks in2152 * handle_path_level_conflicts(). In other words,2153 * re->dst_entry->stages[stage].oid will be the null_oid, so it's2154 * open for us to write to.2155 *2156 * It may be tempting to actually update the index at this point as2157 * well, using update_stages_for_stage_data(), but as per the big2158 * "NOTE" in update_stages(), doing so will modify the current2159 * in-memory index which will break calls to would_lose_untracked()2160 * that we need to make. Instead, we need to just make sure that2161 * the various conflict_rename_*() functions update the index2162 * explicitly rather than relying on unpack_trees() to have done it.2163 */2164get_tree_entry(&tree->object.oid,2165 pair->two->path,2166&re->dst_entry->stages[stage].oid,2167&re->dst_entry->stages[stage].mode);21682169/* Update pair status */2170if(pair->status =='A') {2171/*2172 * Recording rename information for this add makes it look2173 * like a rename/delete conflict. Make sure we can2174 * correctly handle this as an add that was moved to a new2175 * directory instead of reporting a rename/delete conflict.2176 */2177 re->add_turned_into_rename =1;2178}2179/*2180 * We don't actually look at pair->status again, but it seems2181 * pedagogically correct to adjust it.2182 */2183 pair->status ='R';21842185/*2186 * Finally, record the new location.2187 */2188 pair->two->path = new_path;2189}21902191/*2192 * Get information of all renames which occurred in 'pairs', making use of2193 * any implicit directory renames inferred from the other side of history.2194 * We need the three trees in the merge ('o_tree', 'a_tree' and 'b_tree')2195 * to be able to associate the correct cache entries with the rename2196 * information; tree is always equal to either a_tree or b_tree.2197 */2198static struct string_list *get_renames(struct merge_options *o,2199struct diff_queue_struct *pairs,2200struct hashmap *dir_renames,2201struct hashmap *dir_rename_exclusions,2202struct tree *tree,2203struct tree *o_tree,2204struct tree *a_tree,2205struct tree *b_tree,2206struct string_list *entries,2207int*clean_merge)2208{2209int i;2210struct hashmap collisions;2211struct hashmap_iter iter;2212struct collision_entry *e;2213struct string_list *renames;22142215compute_collisions(&collisions, dir_renames, pairs);2216 renames =xcalloc(1,sizeof(struct string_list));22172218for(i =0; i < pairs->nr; ++i) {2219struct string_list_item *item;2220struct rename *re;2221struct diff_filepair *pair = pairs->queue[i];2222char*new_path;/* non-NULL only with directory renames */22232224if(pair->status !='A'&& pair->status !='R') {2225diff_free_filepair(pair);2226continue;2227}2228 new_path =check_for_directory_rename(o, pair->two->path, tree,2229 dir_renames,2230 dir_rename_exclusions,2231&collisions,2232 clean_merge);2233if(pair->status !='R'&& !new_path) {2234diff_free_filepair(pair);2235continue;2236}22372238 re =xmalloc(sizeof(*re));2239 re->processed =0;2240 re->add_turned_into_rename =0;2241 re->pair = pair;2242 item =string_list_lookup(entries, re->pair->one->path);2243if(!item)2244 re->src_entry =insert_stage_data(re->pair->one->path,2245 o_tree, a_tree, b_tree, entries);2246else2247 re->src_entry = item->util;22482249 item =string_list_lookup(entries, re->pair->two->path);2250if(!item)2251 re->dst_entry =insert_stage_data(re->pair->two->path,2252 o_tree, a_tree, b_tree, entries);2253else2254 re->dst_entry = item->util;2255 item =string_list_insert(renames, pair->one->path);2256 item->util = re;2257if(new_path)2258apply_directory_rename_modifications(o, pair, new_path,2259 re, tree, o_tree,2260 a_tree, b_tree,2261 entries,2262 clean_merge);2263}22642265hashmap_iter_init(&collisions, &iter);2266while((e =hashmap_iter_next(&iter))) {2267free(e->target_file);2268string_list_clear(&e->source_files,0);2269}2270hashmap_free(&collisions,1);2271return renames;2272}22732274static intprocess_renames(struct merge_options *o,2275struct string_list *a_renames,2276struct string_list *b_renames)2277{2278int clean_merge =1, i, j;2279struct string_list a_by_dst = STRING_LIST_INIT_NODUP;2280struct string_list b_by_dst = STRING_LIST_INIT_NODUP;2281const struct rename *sre;22822283for(i =0; i < a_renames->nr; i++) {2284 sre = a_renames->items[i].util;2285string_list_insert(&a_by_dst, sre->pair->two->path)->util2286= (void*)sre;2287}2288for(i =0; i < b_renames->nr; i++) {2289 sre = b_renames->items[i].util;2290string_list_insert(&b_by_dst, sre->pair->two->path)->util2291= (void*)sre;2292}22932294for(i =0, j =0; i < a_renames->nr || j < b_renames->nr;) {2295struct string_list *renames1, *renames2Dst;2296struct rename *ren1 = NULL, *ren2 = NULL;2297const char*branch1, *branch2;2298const char*ren1_src, *ren1_dst;2299struct string_list_item *lookup;23002301if(i >= a_renames->nr) {2302 ren2 = b_renames->items[j++].util;2303}else if(j >= b_renames->nr) {2304 ren1 = a_renames->items[i++].util;2305}else{2306int compare =strcmp(a_renames->items[i].string,2307 b_renames->items[j].string);2308if(compare <=0)2309 ren1 = a_renames->items[i++].util;2310if(compare >=0)2311 ren2 = b_renames->items[j++].util;2312}23132314/* TODO: refactor, so that 1/2 are not needed */2315if(ren1) {2316 renames1 = a_renames;2317 renames2Dst = &b_by_dst;2318 branch1 = o->branch1;2319 branch2 = o->branch2;2320}else{2321 renames1 = b_renames;2322 renames2Dst = &a_by_dst;2323 branch1 = o->branch2;2324 branch2 = o->branch1;2325SWAP(ren2, ren1);2326}23272328if(ren1->processed)2329continue;2330 ren1->processed =1;2331 ren1->dst_entry->processed =1;2332/* BUG: We should only mark src_entry as processed if we2333 * are not dealing with a rename + add-source case.2334 */2335 ren1->src_entry->processed =1;23362337 ren1_src = ren1->pair->one->path;2338 ren1_dst = ren1->pair->two->path;23392340if(ren2) {2341/* One file renamed on both sides */2342const char*ren2_src = ren2->pair->one->path;2343const char*ren2_dst = ren2->pair->two->path;2344enum rename_type rename_type;2345if(strcmp(ren1_src, ren2_src) !=0)2346die("BUG: ren1_src != ren2_src");2347 ren2->dst_entry->processed =1;2348 ren2->processed =1;2349if(strcmp(ren1_dst, ren2_dst) !=0) {2350 rename_type = RENAME_ONE_FILE_TO_TWO;2351 clean_merge =0;2352}else{2353 rename_type = RENAME_ONE_FILE_TO_ONE;2354/* BUG: We should only remove ren1_src in2355 * the base stage (think of rename +2356 * add-source cases).2357 */2358remove_file(o,1, ren1_src,1);2359update_entry(ren1->dst_entry,2360 ren1->pair->one,2361 ren1->pair->two,2362 ren2->pair->two);2363}2364setup_rename_conflict_info(rename_type,2365 ren1->pair,2366 ren2->pair,2367 branch1,2368 branch2,2369 ren1->dst_entry,2370 ren2->dst_entry,2371 o,2372 NULL,2373 NULL);2374}else if((lookup =string_list_lookup(renames2Dst, ren1_dst))) {2375/* Two different files renamed to the same thing */2376char*ren2_dst;2377 ren2 = lookup->util;2378 ren2_dst = ren2->pair->two->path;2379if(strcmp(ren1_dst, ren2_dst) !=0)2380die("BUG: ren1_dst != ren2_dst");23812382 clean_merge =0;2383 ren2->processed =1;2384/*2385 * BUG: We should only mark src_entry as processed2386 * if we are not dealing with a rename + add-source2387 * case.2388 */2389 ren2->src_entry->processed =1;23902391setup_rename_conflict_info(RENAME_TWO_FILES_TO_ONE,2392 ren1->pair,2393 ren2->pair,2394 branch1,2395 branch2,2396 ren1->dst_entry,2397 ren2->dst_entry,2398 o,2399 ren1->src_entry,2400 ren2->src_entry);24012402}else{2403/* Renamed in 1, maybe changed in 2 */2404/* we only use sha1 and mode of these */2405struct diff_filespec src_other, dst_other;2406int try_merge;24072408/*2409 * unpack_trees loads entries from common-commit2410 * into stage 1, from head-commit into stage 2, and2411 * from merge-commit into stage 3. We keep track2412 * of which side corresponds to the rename.2413 */2414int renamed_stage = a_renames == renames1 ?2:3;2415int other_stage = a_renames == renames1 ?3:2;24162417/* BUG: We should only remove ren1_src in the base2418 * stage and in other_stage (think of rename +2419 * add-source case).2420 */2421remove_file(o,1, ren1_src,2422 renamed_stage ==2|| !was_tracked(ren1_src));24232424oidcpy(&src_other.oid,2425&ren1->src_entry->stages[other_stage].oid);2426 src_other.mode = ren1->src_entry->stages[other_stage].mode;2427oidcpy(&dst_other.oid,2428&ren1->dst_entry->stages[other_stage].oid);2429 dst_other.mode = ren1->dst_entry->stages[other_stage].mode;2430 try_merge =0;24312432if(oid_eq(&src_other.oid, &null_oid) &&2433 ren1->add_turned_into_rename) {2434setup_rename_conflict_info(RENAME_DIR,2435 ren1->pair,2436 NULL,2437 branch1,2438 branch2,2439 ren1->dst_entry,2440 NULL,2441 o,2442 NULL,2443 NULL);2444}else if(oid_eq(&src_other.oid, &null_oid)) {2445setup_rename_conflict_info(RENAME_DELETE,2446 ren1->pair,2447 NULL,2448 branch1,2449 branch2,2450 ren1->dst_entry,2451 NULL,2452 o,2453 NULL,2454 NULL);2455}else if((dst_other.mode == ren1->pair->two->mode) &&2456oid_eq(&dst_other.oid, &ren1->pair->two->oid)) {2457/*2458 * Added file on the other side identical to2459 * the file being renamed: clean merge.2460 * Also, there is no need to overwrite the2461 * file already in the working copy, so call2462 * update_file_flags() instead of2463 * update_file().2464 */2465if(update_file_flags(o,2466&ren1->pair->two->oid,2467 ren1->pair->two->mode,2468 ren1_dst,24691,/* update_cache */24700/* update_wd */))2471 clean_merge = -1;2472}else if(!oid_eq(&dst_other.oid, &null_oid)) {2473 clean_merge =0;2474 try_merge =1;2475output(o,1,_("CONFLICT (rename/add): Rename%s->%sin%s. "2476"%sadded in%s"),2477 ren1_src, ren1_dst, branch1,2478 ren1_dst, branch2);2479if(o->call_depth) {2480struct merge_file_info mfi;2481if(merge_file_one(o, ren1_dst, &null_oid,0,2482&ren1->pair->two->oid,2483 ren1->pair->two->mode,2484&dst_other.oid,2485 dst_other.mode,2486 branch1, branch2, &mfi)) {2487 clean_merge = -1;2488goto cleanup_and_return;2489}2490output(o,1,_("Adding merged%s"), ren1_dst);2491if(update_file(o,0, &mfi.oid,2492 mfi.mode, ren1_dst))2493 clean_merge = -1;2494 try_merge =0;2495}else{2496char*new_path =unique_path(o, ren1_dst, branch2);2497output(o,1,_("Adding as%sinstead"), new_path);2498if(update_file(o,0, &dst_other.oid,2499 dst_other.mode, new_path))2500 clean_merge = -1;2501free(new_path);2502}2503}else2504 try_merge =1;25052506if(clean_merge <0)2507goto cleanup_and_return;2508if(try_merge) {2509struct diff_filespec *one, *a, *b;2510 src_other.path = (char*)ren1_src;25112512 one = ren1->pair->one;2513if(a_renames == renames1) {2514 a = ren1->pair->two;2515 b = &src_other;2516}else{2517 b = ren1->pair->two;2518 a = &src_other;2519}2520update_entry(ren1->dst_entry, one, a, b);2521setup_rename_conflict_info(RENAME_NORMAL,2522 ren1->pair,2523 NULL,2524 branch1,2525 NULL,2526 ren1->dst_entry,2527 NULL,2528 o,2529 NULL,2530 NULL);2531}2532}2533}2534cleanup_and_return:2535string_list_clear(&a_by_dst,0);2536string_list_clear(&b_by_dst,0);25372538return clean_merge;2539}25402541struct rename_info {2542struct string_list *head_renames;2543struct string_list *merge_renames;2544};25452546static voidinitial_cleanup_rename(struct diff_queue_struct *pairs,2547struct hashmap *dir_renames)2548{2549struct hashmap_iter iter;2550struct dir_rename_entry *e;25512552hashmap_iter_init(dir_renames, &iter);2553while((e =hashmap_iter_next(&iter))) {2554free(e->dir);2555strbuf_release(&e->new_dir);2556/* possible_new_dirs already cleared in get_directory_renames */2557}2558hashmap_free(dir_renames,1);2559free(dir_renames);25602561free(pairs->queue);2562free(pairs);2563}25642565static inthandle_renames(struct merge_options *o,2566struct tree *common,2567struct tree *head,2568struct tree *merge,2569struct string_list *entries,2570struct rename_info *ri)2571{2572struct diff_queue_struct *head_pairs, *merge_pairs;2573struct hashmap *dir_re_head, *dir_re_merge;2574int clean =1;25752576 ri->head_renames = NULL;2577 ri->merge_renames = NULL;25782579if(!o->detect_rename)2580return1;25812582 head_pairs =get_diffpairs(o, common, head);2583 merge_pairs =get_diffpairs(o, common, merge);25842585 dir_re_head =get_directory_renames(head_pairs, head);2586 dir_re_merge =get_directory_renames(merge_pairs, merge);25872588handle_directory_level_conflicts(o,2589 dir_re_head, head,2590 dir_re_merge, merge);25912592 ri->head_renames =get_renames(o, head_pairs,2593 dir_re_merge, dir_re_head, head,2594 common, head, merge, entries,2595&clean);2596if(clean <0)2597goto cleanup;2598 ri->merge_renames =get_renames(o, merge_pairs,2599 dir_re_head, dir_re_merge, merge,2600 common, head, merge, entries,2601&clean);2602if(clean <0)2603goto cleanup;2604 clean &=process_renames(o, ri->head_renames, ri->merge_renames);26052606cleanup:2607/*2608 * Some cleanup is deferred until cleanup_renames() because the2609 * data structures are still needed and referenced in2610 * process_entry(). But there are a few things we can free now.2611 */2612initial_cleanup_rename(head_pairs, dir_re_head);2613initial_cleanup_rename(merge_pairs, dir_re_merge);26142615return clean;2616}26172618static voidfinal_cleanup_rename(struct string_list *rename)2619{2620const struct rename *re;2621int i;26222623if(rename == NULL)2624return;26252626for(i =0; i < rename->nr; i++) {2627 re = rename->items[i].util;2628diff_free_filepair(re->pair);2629}2630string_list_clear(rename,1);2631free(rename);2632}26332634static voidfinal_cleanup_renames(struct rename_info *re_info)2635{2636final_cleanup_rename(re_info->head_renames);2637final_cleanup_rename(re_info->merge_renames);2638}26392640static struct object_id *stage_oid(const struct object_id *oid,unsigned mode)2641{2642return(is_null_oid(oid) || mode ==0) ? NULL: (struct object_id *)oid;2643}26442645static intread_oid_strbuf(struct merge_options *o,2646const struct object_id *oid,struct strbuf *dst)2647{2648void*buf;2649enum object_type type;2650unsigned long size;2651 buf =read_object_file(oid, &type, &size);2652if(!buf)2653returnerr(o,_("cannot read object%s"),oid_to_hex(oid));2654if(type != OBJ_BLOB) {2655free(buf);2656returnerr(o,_("object%sis not a blob"),oid_to_hex(oid));2657}2658strbuf_attach(dst, buf, size, size +1);2659return0;2660}26612662static intblob_unchanged(struct merge_options *opt,2663const struct object_id *o_oid,2664unsigned o_mode,2665const struct object_id *a_oid,2666unsigned a_mode,2667int renormalize,const char*path)2668{2669struct strbuf o = STRBUF_INIT;2670struct strbuf a = STRBUF_INIT;2671int ret =0;/* assume changed for safety */26722673if(a_mode != o_mode)2674return0;2675if(oid_eq(o_oid, a_oid))2676return1;2677if(!renormalize)2678return0;26792680assert(o_oid && a_oid);2681if(read_oid_strbuf(opt, o_oid, &o) ||read_oid_strbuf(opt, a_oid, &a))2682goto error_return;2683/*2684 * Note: binary | is used so that both renormalizations are2685 * performed. Comparison can be skipped if both files are2686 * unchanged since their sha1s have already been compared.2687 */2688if(renormalize_buffer(&the_index, path, o.buf, o.len, &o) |2689renormalize_buffer(&the_index, path, a.buf, a.len, &a))2690 ret = (o.len == a.len && !memcmp(o.buf, a.buf, o.len));26912692error_return:2693strbuf_release(&o);2694strbuf_release(&a);2695return ret;2696}26972698static inthandle_modify_delete(struct merge_options *o,2699const char*path,2700struct object_id *o_oid,int o_mode,2701struct object_id *a_oid,int a_mode,2702struct object_id *b_oid,int b_mode)2703{2704const char*modify_branch, *delete_branch;2705struct object_id *changed_oid;2706int changed_mode;27072708if(a_oid) {2709 modify_branch = o->branch1;2710 delete_branch = o->branch2;2711 changed_oid = a_oid;2712 changed_mode = a_mode;2713}else{2714 modify_branch = o->branch2;2715 delete_branch = o->branch1;2716 changed_oid = b_oid;2717 changed_mode = b_mode;2718}27192720returnhandle_change_delete(o,2721 path, NULL,2722 o_oid, o_mode,2723 changed_oid, changed_mode,2724 modify_branch, delete_branch,2725_("modify"),_("modified"));2726}27272728static intmerge_content(struct merge_options *o,2729const char*path,2730int file_in_way,2731struct object_id *o_oid,int o_mode,2732struct object_id *a_oid,int a_mode,2733struct object_id *b_oid,int b_mode,2734struct rename_conflict_info *rename_conflict_info)2735{2736const char*reason =_("content");2737const char*path1 = NULL, *path2 = NULL;2738struct merge_file_info mfi;2739struct diff_filespec one, a, b;2740unsigned df_conflict_remains =0;27412742if(!o_oid) {2743 reason =_("add/add");2744 o_oid = (struct object_id *)&null_oid;2745}2746 one.path = a.path = b.path = (char*)path;2747oidcpy(&one.oid, o_oid);2748 one.mode = o_mode;2749oidcpy(&a.oid, a_oid);2750 a.mode = a_mode;2751oidcpy(&b.oid, b_oid);2752 b.mode = b_mode;27532754if(rename_conflict_info) {2755struct diff_filepair *pair1 = rename_conflict_info->pair1;27562757 path1 = (o->branch1 == rename_conflict_info->branch1) ?2758 pair1->two->path : pair1->one->path;2759/* If rename_conflict_info->pair2 != NULL, we are in2760 * RENAME_ONE_FILE_TO_ONE case. Otherwise, we have a2761 * normal rename.2762 */2763 path2 = (rename_conflict_info->pair2 ||2764 o->branch2 == rename_conflict_info->branch1) ?2765 pair1->two->path : pair1->one->path;27662767if(dir_in_way(path, !o->call_depth,2768S_ISGITLINK(pair1->two->mode)))2769 df_conflict_remains =1;2770}2771if(merge_file_special_markers(o, &one, &a, &b,2772 o->branch1, path1,2773 o->branch2, path2, &mfi))2774return-1;27752776if(mfi.clean && !df_conflict_remains &&2777oid_eq(&mfi.oid, a_oid) && mfi.mode == a_mode) {2778int path_renamed_outside_HEAD;2779output(o,3,_("Skipped%s(merged same as existing)"), path);2780/*2781 * The content merge resulted in the same file contents we2782 * already had. We can return early if those file contents2783 * are recorded at the correct path (which may not be true2784 * if the merge involves a rename).2785 */2786 path_renamed_outside_HEAD = !path2 || !strcmp(path, path2);2787if(!path_renamed_outside_HEAD) {2788if(add_cacheinfo(o, mfi.mode, &mfi.oid, path,27890, (!o->call_depth),0))2790return-1;2791return mfi.clean;2792}2793}else2794output(o,2,_("Auto-merging%s"), path);27952796if(!mfi.clean) {2797if(S_ISGITLINK(mfi.mode))2798 reason =_("submodule");2799output(o,1,_("CONFLICT (%s): Merge conflict in%s"),2800 reason, path);2801if(rename_conflict_info && !df_conflict_remains)2802if(update_stages(o, path, &one, &a, &b))2803return-1;2804}28052806if(df_conflict_remains || file_in_way) {2807char*new_path;2808if(o->call_depth) {2809remove_file_from_cache(path);2810}else{2811if(!mfi.clean) {2812if(update_stages(o, path, &one, &a, &b))2813return-1;2814}else{2815int file_from_stage2 =was_tracked(path);2816struct diff_filespec merged;2817oidcpy(&merged.oid, &mfi.oid);2818 merged.mode = mfi.mode;28192820if(update_stages(o, path, NULL,2821 file_from_stage2 ? &merged : NULL,2822 file_from_stage2 ? NULL : &merged))2823return-1;2824}28252826}2827 new_path =unique_path(o, path, rename_conflict_info->branch1);2828output(o,1,_("Adding as%sinstead"), new_path);2829if(update_file(o,0, &mfi.oid, mfi.mode, new_path)) {2830free(new_path);2831return-1;2832}2833free(new_path);2834 mfi.clean =0;2835}else if(update_file(o, mfi.clean, &mfi.oid, mfi.mode, path))2836return-1;2837return mfi.clean;2838}28392840static intconflict_rename_normal(struct merge_options *o,2841const char*path,2842struct object_id *o_oid,unsigned int o_mode,2843struct object_id *a_oid,unsigned int a_mode,2844struct object_id *b_oid,unsigned int b_mode,2845struct rename_conflict_info *ci)2846{2847int clean_merge;2848int file_in_the_way =0;28492850if(was_dirty(o, path)) {2851 file_in_the_way =1;2852output(o,1,_("Refusing to lose dirty file at%s"), path);2853}28542855/* Merge the content and write it out */2856 clean_merge =merge_content(o, path, file_in_the_way,2857 o_oid, o_mode, a_oid, a_mode, b_oid, b_mode,2858 ci);2859if(clean_merge >0&& file_in_the_way)2860 clean_merge =0;2861return clean_merge;2862}28632864/* Per entry merge function */2865static intprocess_entry(struct merge_options *o,2866const char*path,struct stage_data *entry)2867{2868int clean_merge =1;2869int normalize = o->renormalize;2870unsigned o_mode = entry->stages[1].mode;2871unsigned a_mode = entry->stages[2].mode;2872unsigned b_mode = entry->stages[3].mode;2873struct object_id *o_oid =stage_oid(&entry->stages[1].oid, o_mode);2874struct object_id *a_oid =stage_oid(&entry->stages[2].oid, a_mode);2875struct object_id *b_oid =stage_oid(&entry->stages[3].oid, b_mode);28762877 entry->processed =1;2878if(entry->rename_conflict_info) {2879struct rename_conflict_info *conflict_info = entry->rename_conflict_info;2880switch(conflict_info->rename_type) {2881case RENAME_NORMAL:2882case RENAME_ONE_FILE_TO_ONE:2883 clean_merge =conflict_rename_normal(o,2884 path,2885 o_oid, o_mode,2886 a_oid, a_mode,2887 b_oid, b_mode,2888 conflict_info);2889break;2890case RENAME_DIR:2891 clean_merge =1;2892if(conflict_rename_dir(o,2893 conflict_info->pair1,2894 conflict_info->branch1,2895 conflict_info->branch2))2896 clean_merge = -1;2897break;2898case RENAME_DELETE:2899 clean_merge =0;2900if(conflict_rename_delete(o,2901 conflict_info->pair1,2902 conflict_info->branch1,2903 conflict_info->branch2))2904 clean_merge = -1;2905break;2906case RENAME_ONE_FILE_TO_TWO:2907 clean_merge =0;2908if(conflict_rename_rename_1to2(o, conflict_info))2909 clean_merge = -1;2910break;2911case RENAME_TWO_FILES_TO_ONE:2912 clean_merge =0;2913if(conflict_rename_rename_2to1(o, conflict_info))2914 clean_merge = -1;2915break;2916default:2917 entry->processed =0;2918break;2919}2920}else if(o_oid && (!a_oid || !b_oid)) {2921/* Case A: Deleted in one */2922if((!a_oid && !b_oid) ||2923(!b_oid &&blob_unchanged(o, o_oid, o_mode, a_oid, a_mode, normalize, path)) ||2924(!a_oid &&blob_unchanged(o, o_oid, o_mode, b_oid, b_mode, normalize, path))) {2925/* Deleted in both or deleted in one and2926 * unchanged in the other */2927if(a_oid)2928output(o,2,_("Removing%s"), path);2929/* do not touch working file if it did not exist */2930remove_file(o,1, path, !a_oid);2931}else{2932/* Modify/delete; deleted side may have put a directory in the way */2933 clean_merge =0;2934if(handle_modify_delete(o, path, o_oid, o_mode,2935 a_oid, a_mode, b_oid, b_mode))2936 clean_merge = -1;2937}2938}else if((!o_oid && a_oid && !b_oid) ||2939(!o_oid && !a_oid && b_oid)) {2940/* Case B: Added in one. */2941/* [nothing|directory] -> ([nothing|directory], file) */29422943const char*add_branch;2944const char*other_branch;2945unsigned mode;2946const struct object_id *oid;2947const char*conf;29482949if(a_oid) {2950 add_branch = o->branch1;2951 other_branch = o->branch2;2952 mode = a_mode;2953 oid = a_oid;2954 conf =_("file/directory");2955}else{2956 add_branch = o->branch2;2957 other_branch = o->branch1;2958 mode = b_mode;2959 oid = b_oid;2960 conf =_("directory/file");2961}2962if(dir_in_way(path,2963!o->call_depth && !S_ISGITLINK(a_mode),29640)) {2965char*new_path =unique_path(o, path, add_branch);2966 clean_merge =0;2967output(o,1,_("CONFLICT (%s): There is a directory with name%sin%s. "2968"Adding%sas%s"),2969 conf, path, other_branch, path, new_path);2970if(update_file(o,0, oid, mode, new_path))2971 clean_merge = -1;2972else if(o->call_depth)2973remove_file_from_cache(path);2974free(new_path);2975}else{2976output(o,2,_("Adding%s"), path);2977/* do not overwrite file if already present */2978if(update_file_flags(o, oid, mode, path,1, !a_oid))2979 clean_merge = -1;2980}2981}else if(a_oid && b_oid) {2982/* Case C: Added in both (check for same permissions) and */2983/* case D: Modified in both, but differently. */2984 clean_merge =merge_content(o, path,0/* file_in_way */,2985 o_oid, o_mode, a_oid, a_mode, b_oid, b_mode,2986 NULL);2987}else if(!o_oid && !a_oid && !b_oid) {2988/*2989 * this entry was deleted altogether. a_mode == 0 means2990 * we had that path and want to actively remove it.2991 */2992remove_file(o,1, path, !a_mode);2993}else2994die("BUG: fatal merge failure, shouldn't happen.");29952996return clean_merge;2997}29982999intmerge_trees(struct merge_options *o,3000struct tree *head,3001struct tree *merge,3002struct tree *common,3003struct tree **result)3004{3005int code, clean;30063007if(o->subtree_shift) {3008 merge =shift_tree_object(head, merge, o->subtree_shift);3009 common =shift_tree_object(head, common, o->subtree_shift);3010}30113012if(oid_eq(&common->object.oid, &merge->object.oid)) {3013struct strbuf sb = STRBUF_INIT;30143015if(!o->call_depth &&index_has_changes(&sb)) {3016err(o,_("Dirty index: cannot merge (dirty:%s)"),3017 sb.buf);3018return0;3019}3020output(o,0,_("Already up to date!"));3021*result = head;3022return1;3023}30243025 code =git_merge_trees(o, common, head, merge);30263027if(code !=0) {3028if(show(o,4) || o->call_depth)3029err(o,_("merging of trees%sand%sfailed"),3030oid_to_hex(&head->object.oid),3031oid_to_hex(&merge->object.oid));3032return-1;3033}30343035if(unmerged_cache()) {3036struct string_list *entries;3037struct rename_info re_info;3038int i;3039/*3040 * Only need the hashmap while processing entries, so3041 * initialize it here and free it when we are done running3042 * through the entries. Keeping it in the merge_options as3043 * opposed to decaring a local hashmap is for convenience3044 * so that we don't have to pass it to around.3045 */3046hashmap_init(&o->current_file_dir_set, path_hashmap_cmp, NULL,512);3047get_files_dirs(o, head);3048get_files_dirs(o, merge);30493050 entries =get_unmerged();3051 clean =handle_renames(o, common, head, merge, entries,3052&re_info);3053record_df_conflict_files(o, entries);3054if(clean <0)3055goto cleanup;3056for(i = entries->nr-1;0<= i; i--) {3057const char*path = entries->items[i].string;3058struct stage_data *e = entries->items[i].util;3059if(!e->processed) {3060int ret =process_entry(o, path, e);3061if(!ret)3062 clean =0;3063else if(ret <0) {3064 clean = ret;3065goto cleanup;3066}3067}3068}3069for(i =0; i < entries->nr; i++) {3070struct stage_data *e = entries->items[i].util;3071if(!e->processed)3072die("BUG: unprocessed path???%s",3073 entries->items[i].string);3074}30753076cleanup:3077final_cleanup_renames(&re_info);30783079string_list_clear(entries,1);3080free(entries);30813082hashmap_free(&o->current_file_dir_set,1);30833084if(clean <0)3085return clean;3086}3087else3088 clean =1;30893090if(o->call_depth && !(*result =write_tree_from_memory(o)))3091return-1;30923093return clean;3094}30953096static struct commit_list *reverse_commit_list(struct commit_list *list)3097{3098struct commit_list *next = NULL, *current, *backup;3099for(current = list; current; current = backup) {3100 backup = current->next;3101 current->next = next;3102 next = current;3103}3104return next;3105}31063107/*3108 * Merge the commits h1 and h2, return the resulting virtual3109 * commit object and a flag indicating the cleanness of the merge.3110 */3111intmerge_recursive(struct merge_options *o,3112struct commit *h1,3113struct commit *h2,3114struct commit_list *ca,3115struct commit **result)3116{3117struct commit_list *iter;3118struct commit *merged_common_ancestors;3119struct tree *mrtree;3120int clean;31213122if(show(o,4)) {3123output(o,4,_("Merging:"));3124output_commit_title(o, h1);3125output_commit_title(o, h2);3126}31273128if(!ca) {3129 ca =get_merge_bases(h1, h2);3130 ca =reverse_commit_list(ca);3131}31323133if(show(o,5)) {3134unsigned cnt =commit_list_count(ca);31353136output(o,5,Q_("found%ucommon ancestor:",3137"found%ucommon ancestors:", cnt), cnt);3138for(iter = ca; iter; iter = iter->next)3139output_commit_title(o, iter->item);3140}31413142 merged_common_ancestors =pop_commit(&ca);3143if(merged_common_ancestors == NULL) {3144/* if there is no common ancestor, use an empty tree */3145struct tree *tree;31463147 tree =lookup_tree(the_hash_algo->empty_tree);3148 merged_common_ancestors =make_virtual_commit(tree,"ancestor");3149}31503151for(iter = ca; iter; iter = iter->next) {3152const char*saved_b1, *saved_b2;3153 o->call_depth++;3154/*3155 * When the merge fails, the result contains files3156 * with conflict markers. The cleanness flag is3157 * ignored (unless indicating an error), it was never3158 * actually used, as result of merge_trees has always3159 * overwritten it: the committed "conflicts" were3160 * already resolved.3161 */3162discard_cache();3163 saved_b1 = o->branch1;3164 saved_b2 = o->branch2;3165 o->branch1 ="Temporary merge branch 1";3166 o->branch2 ="Temporary merge branch 2";3167if(merge_recursive(o, merged_common_ancestors, iter->item,3168 NULL, &merged_common_ancestors) <0)3169return-1;3170 o->branch1 = saved_b1;3171 o->branch2 = saved_b2;3172 o->call_depth--;31733174if(!merged_common_ancestors)3175returnerr(o,_("merge returned no commit"));3176}31773178discard_cache();3179if(!o->call_depth)3180read_cache();31813182 o->ancestor ="merged common ancestors";3183 clean =merge_trees(o, h1->tree, h2->tree, merged_common_ancestors->tree,3184&mrtree);3185if(clean <0) {3186flush_output(o);3187return clean;3188}31893190if(o->call_depth) {3191*result =make_virtual_commit(mrtree,"merged tree");3192commit_list_insert(h1, &(*result)->parents);3193commit_list_insert(h2, &(*result)->parents->next);3194}3195flush_output(o);3196if(!o->call_depth && o->buffer_output <2)3197strbuf_release(&o->obuf);3198if(show(o,2))3199diff_warn_rename_limit("merge.renamelimit",3200 o->needed_rename_limit,0);3201return clean;3202}32033204static struct commit *get_ref(const struct object_id *oid,const char*name)3205{3206struct object *object;32073208 object =deref_tag(parse_object(oid), name,strlen(name));3209if(!object)3210return NULL;3211if(object->type == OBJ_TREE)3212returnmake_virtual_commit((struct tree*)object, name);3213if(object->type != OBJ_COMMIT)3214return NULL;3215if(parse_commit((struct commit *)object))3216return NULL;3217return(struct commit *)object;3218}32193220intmerge_recursive_generic(struct merge_options *o,3221const struct object_id *head,3222const struct object_id *merge,3223int num_base_list,3224const struct object_id **base_list,3225struct commit **result)3226{3227int clean;3228struct lock_file lock = LOCK_INIT;3229struct commit *head_commit =get_ref(head, o->branch1);3230struct commit *next_commit =get_ref(merge, o->branch2);3231struct commit_list *ca = NULL;32323233if(base_list) {3234int i;3235for(i =0; i < num_base_list; ++i) {3236struct commit *base;3237if(!(base =get_ref(base_list[i],oid_to_hex(base_list[i]))))3238returnerr(o,_("Could not parse object '%s'"),3239oid_to_hex(base_list[i]));3240commit_list_insert(base, &ca);3241}3242}32433244hold_locked_index(&lock, LOCK_DIE_ON_ERROR);3245 clean =merge_recursive(o, head_commit, next_commit, ca,3246 result);3247if(clean <0) {3248rollback_lock_file(&lock);3249return clean;3250}32513252if(write_locked_index(&the_index, &lock,3253 COMMIT_LOCK | SKIP_IF_UNCHANGED))3254returnerr(o,_("Unable to write index."));32553256return clean ?0:1;3257}32583259static voidmerge_recursive_config(struct merge_options *o)3260{3261git_config_get_int("merge.verbosity", &o->verbosity);3262git_config_get_int("diff.renamelimit", &o->diff_rename_limit);3263git_config_get_int("merge.renamelimit", &o->merge_rename_limit);3264git_config(git_xmerge_config, NULL);3265}32663267voidinit_merge_options(struct merge_options *o)3268{3269const char*merge_verbosity;3270memset(o,0,sizeof(struct merge_options));3271 o->verbosity =2;3272 o->buffer_output =1;3273 o->diff_rename_limit = -1;3274 o->merge_rename_limit = -1;3275 o->renormalize =0;3276 o->detect_rename =1;3277merge_recursive_config(o);3278 merge_verbosity =getenv("GIT_MERGE_VERBOSITY");3279if(merge_verbosity)3280 o->verbosity =strtol(merge_verbosity, NULL,10);3281if(o->verbosity >=5)3282 o->buffer_output =0;3283strbuf_init(&o->obuf,0);3284string_list_init(&o->df_conflict_file_set,1);3285}32863287intparse_merge_opt(struct merge_options *o,const char*s)3288{3289const char*arg;32903291if(!s || !*s)3292return-1;3293if(!strcmp(s,"ours"))3294 o->recursive_variant = MERGE_RECURSIVE_OURS;3295else if(!strcmp(s,"theirs"))3296 o->recursive_variant = MERGE_RECURSIVE_THEIRS;3297else if(!strcmp(s,"subtree"))3298 o->subtree_shift ="";3299else if(skip_prefix(s,"subtree=", &arg))3300 o->subtree_shift = arg;3301else if(!strcmp(s,"patience"))3302 o->xdl_opts =DIFF_WITH_ALG(o, PATIENCE_DIFF);3303else if(!strcmp(s,"histogram"))3304 o->xdl_opts =DIFF_WITH_ALG(o, HISTOGRAM_DIFF);3305else if(skip_prefix(s,"diff-algorithm=", &arg)) {3306long value =parse_algorithm_value(arg);3307if(value <0)3308return-1;3309/* clear out previous settings */3310DIFF_XDL_CLR(o, NEED_MINIMAL);3311 o->xdl_opts &= ~XDF_DIFF_ALGORITHM_MASK;3312 o->xdl_opts |= value;3313}3314else if(!strcmp(s,"ignore-space-change"))3315DIFF_XDL_SET(o, IGNORE_WHITESPACE_CHANGE);3316else if(!strcmp(s,"ignore-all-space"))3317DIFF_XDL_SET(o, IGNORE_WHITESPACE);3318else if(!strcmp(s,"ignore-space-at-eol"))3319DIFF_XDL_SET(o, IGNORE_WHITESPACE_AT_EOL);3320else if(!strcmp(s,"ignore-cr-at-eol"))3321DIFF_XDL_SET(o, IGNORE_CR_AT_EOL);3322else if(!strcmp(s,"renormalize"))3323 o->renormalize =1;3324else if(!strcmp(s,"no-renormalize"))3325 o->renormalize =0;3326else if(!strcmp(s,"no-renames"))3327 o->detect_rename =0;3328else if(!strcmp(s,"find-renames")) {3329 o->detect_rename =1;3330 o->rename_score =0;3331}3332else if(skip_prefix(s,"find-renames=", &arg) ||3333skip_prefix(s,"rename-threshold=", &arg)) {3334if((o->rename_score =parse_rename_score(&arg)) == -1|| *arg !=0)3335return-1;3336 o->detect_rename =1;3337}3338else3339return-1;3340return0;3341}