1/* 2 * Recursive Merge algorithm stolen from git-merge-recursive.py by 3 * Fredrik Kuivinen. 4 * The thieves were Alex Riesen and Johannes Schindelin, in June/July 2006 5 */ 6#include "cache.h" 7#include "config.h" 8#include "advice.h" 9#include "lockfile.h" 10#include "cache-tree.h" 11#include "object-store.h" 12#include "repository.h" 13#include "commit.h" 14#include "blob.h" 15#include "builtin.h" 16#include "tree-walk.h" 17#include "diff.h" 18#include "diffcore.h" 19#include "tag.h" 20#include "alloc.h" 21#include "unpack-trees.h" 22#include "string-list.h" 23#include "xdiff-interface.h" 24#include "ll-merge.h" 25#include "attr.h" 26#include "merge-recursive.h" 27#include "dir.h" 28#include "submodule.h" 29#include "revision.h" 30#include "commit-reach.h" 31 32struct path_hashmap_entry { 33 struct hashmap_entry e; 34 char path[FLEX_ARRAY]; 35}; 36 37static int path_hashmap_cmp(const void *cmp_data, 38 const void *entry, 39 const void *entry_or_key, 40 const void *keydata) 41{ 42 const struct path_hashmap_entry *a = entry; 43 const struct path_hashmap_entry *b = entry_or_key; 44 const char *key = keydata; 45 46 if (ignore_case) 47 return strcasecmp(a->path, key ? key : b->path); 48 else 49 return strcmp(a->path, key ? key : b->path); 50} 51 52static unsigned int path_hash(const char *path) 53{ 54 return ignore_case ? strihash(path) : strhash(path); 55} 56 57static struct dir_rename_entry *dir_rename_find_entry(struct hashmap *hashmap, 58 char *dir) 59{ 60 struct dir_rename_entry key; 61 62 if (dir == NULL) 63 return NULL; 64 hashmap_entry_init(&key, strhash(dir)); 65 key.dir = dir; 66 return hashmap_get(hashmap, &key, NULL); 67} 68 69static int dir_rename_cmp(const void *unused_cmp_data, 70 const void *entry, 71 const void *entry_or_key, 72 const void *unused_keydata) 73{ 74 const struct dir_rename_entry *e1 = entry; 75 const struct dir_rename_entry *e2 = entry_or_key; 76 77 return strcmp(e1->dir, e2->dir); 78} 79 80static void dir_rename_init(struct hashmap *map) 81{ 82 hashmap_init(map, dir_rename_cmp, NULL, 0); 83} 84 85static void dir_rename_entry_init(struct dir_rename_entry *entry, 86 char *directory) 87{ 88 hashmap_entry_init(entry, strhash(directory)); 89 entry->dir = directory; 90 entry->non_unique_new_dir = 0; 91 strbuf_init(&entry->new_dir, 0); 92 string_list_init(&entry->possible_new_dirs, 0); 93} 94 95static struct collision_entry *collision_find_entry(struct hashmap *hashmap, 96 char *target_file) 97{ 98 struct collision_entry key; 99 100 hashmap_entry_init(&key, strhash(target_file)); 101 key.target_file = target_file; 102 return hashmap_get(hashmap, &key, NULL); 103} 104 105static int collision_cmp(void *unused_cmp_data, 106 const struct collision_entry *e1, 107 const struct collision_entry *e2, 108 const void *unused_keydata) 109{ 110 return strcmp(e1->target_file, e2->target_file); 111} 112 113static void collision_init(struct hashmap *map) 114{ 115 hashmap_init(map, (hashmap_cmp_fn) collision_cmp, NULL, 0); 116} 117 118static void flush_output(struct merge_options *opt) 119{ 120 if (opt->buffer_output < 2 && opt->obuf.len) { 121 fputs(opt->obuf.buf, stdout); 122 strbuf_reset(&opt->obuf); 123 } 124} 125 126static int err(struct merge_options *opt, const char *err, ...) 127{ 128 va_list params; 129 130 if (opt->buffer_output < 2) 131 flush_output(opt); 132 else { 133 strbuf_complete(&opt->obuf, '\n'); 134 strbuf_addstr(&opt->obuf, "error: "); 135 } 136 va_start(params, err); 137 strbuf_vaddf(&opt->obuf, err, params); 138 va_end(params); 139 if (opt->buffer_output > 1) 140 strbuf_addch(&opt->obuf, '\n'); 141 else { 142 error("%s", opt->obuf.buf); 143 strbuf_reset(&opt->obuf); 144 } 145 146 return -1; 147} 148 149static struct tree *shift_tree_object(struct repository *repo, 150 struct tree *one, struct tree *two, 151 const char *subtree_shift) 152{ 153 struct object_id shifted; 154 155 if (!*subtree_shift) { 156 shift_tree(&one->object.oid, &two->object.oid, &shifted, 0); 157 } else { 158 shift_tree_by(&one->object.oid, &two->object.oid, &shifted, 159 subtree_shift); 160 } 161 if (oideq(&two->object.oid, &shifted)) 162 return two; 163 return lookup_tree(repo, &shifted); 164} 165 166static struct commit *make_virtual_commit(struct repository *repo, 167 struct tree *tree, 168 const char *comment) 169{ 170 struct commit *commit = alloc_commit_node(repo); 171 172 set_merge_remote_desc(commit, comment, (struct object *)commit); 173 commit->maybe_tree = tree; 174 commit->object.parsed = 1; 175 return commit; 176} 177 178/* 179 * Since we use get_tree_entry(), which does not put the read object into 180 * the object pool, we cannot rely on a == b. 181 */ 182static int oid_eq(const struct object_id *a, const struct object_id *b) 183{ 184 if (!a && !b) 185 return 2; 186 return a && b && oideq(a, b); 187} 188 189enum rename_type { 190 RENAME_NORMAL = 0, 191 RENAME_VIA_DIR, 192 RENAME_ADD, 193 RENAME_DELETE, 194 RENAME_ONE_FILE_TO_ONE, 195 RENAME_ONE_FILE_TO_TWO, 196 RENAME_TWO_FILES_TO_ONE 197}; 198 199/* 200 * Since we want to write the index eventually, we cannot reuse the index 201 * for these (temporary) data. 202 */ 203struct stage_data { 204 struct diff_filespec stages[4]; /* mostly for oid & mode; maybe path */ 205 struct rename_conflict_info *rename_conflict_info; 206 unsigned processed:1; 207}; 208 209struct rename { 210 unsigned processed:1; 211 struct diff_filepair *pair; 212 const char *branch; /* branch that the rename occurred on */ 213 /* 214 * If directory rename detection affected this rename, what was its 215 * original type ('A' or 'R') and it's original destination before 216 * the directory rename (otherwise, '\0' and NULL for these two vars). 217 */ 218 char dir_rename_original_type; 219 char *dir_rename_original_dest; 220 /* 221 * Purpose of src_entry and dst_entry: 222 * 223 * If 'before' is renamed to 'after' then src_entry will contain 224 * the versions of 'before' from the merge_base, HEAD, and MERGE in 225 * stages 1, 2, and 3; dst_entry will contain the respective 226 * versions of 'after' in corresponding locations. Thus, we have a 227 * total of six modes and oids, though some will be null. (Stage 0 228 * is ignored; we're interested in handling conflicts.) 229 * 230 * Since we don't turn on break-rewrites by default, neither 231 * src_entry nor dst_entry can have all three of their stages have 232 * non-null oids, meaning at most four of the six will be non-null. 233 * Also, since this is a rename, both src_entry and dst_entry will 234 * have at least one non-null oid, meaning at least two will be 235 * non-null. Of the six oids, a typical rename will have three be 236 * non-null. Only two implies a rename/delete, and four implies a 237 * rename/add. 238 */ 239 struct stage_data *src_entry; 240 struct stage_data *dst_entry; 241}; 242 243struct rename_conflict_info { 244 enum rename_type rename_type; 245 struct rename *ren1; 246 struct rename *ren2; 247}; 248 249static inline void setup_rename_conflict_info(enum rename_type rename_type, 250 struct merge_options *opt, 251 struct rename *ren1, 252 struct rename *ren2) 253{ 254 struct rename_conflict_info *ci; 255 256 /* 257 * When we have two renames involved, it's easiest to get the 258 * correct things into stage 2 and 3, and to make sure that the 259 * content merge puts HEAD before the other branch if we just 260 * ensure that branch1 == opt->branch1. So, simply flip arguments 261 * around if we don't have that. 262 */ 263 if (ren2 && ren1->branch != opt->branch1) { 264 setup_rename_conflict_info(rename_type, opt, ren2, ren1); 265 return; 266 } 267 268 ci = xcalloc(1, sizeof(struct rename_conflict_info)); 269 ci->rename_type = rename_type; 270 ci->ren1 = ren1; 271 ci->ren2 = ren2; 272 273 ci->ren1->dst_entry->processed = 0; 274 ci->ren1->dst_entry->rename_conflict_info = ci; 275 if (ren2) { 276 ci->ren2->dst_entry->rename_conflict_info = ci; 277 } 278} 279 280static int show(struct merge_options *opt, int v) 281{ 282 return (!opt->call_depth && opt->verbosity >= v) || opt->verbosity >= 5; 283} 284 285__attribute__((format (printf, 3, 4))) 286static void output(struct merge_options *opt, int v, const char *fmt, ...) 287{ 288 va_list ap; 289 290 if (!show(opt, v)) 291 return; 292 293 strbuf_addchars(&opt->obuf, ' ', opt->call_depth * 2); 294 295 va_start(ap, fmt); 296 strbuf_vaddf(&opt->obuf, fmt, ap); 297 va_end(ap); 298 299 strbuf_addch(&opt->obuf, '\n'); 300 if (!opt->buffer_output) 301 flush_output(opt); 302} 303 304static void output_commit_title(struct merge_options *opt, struct commit *commit) 305{ 306 struct merge_remote_desc *desc; 307 308 strbuf_addchars(&opt->obuf, ' ', opt->call_depth * 2); 309 desc = merge_remote_util(commit); 310 if (desc) 311 strbuf_addf(&opt->obuf, "virtual %s\n", desc->name); 312 else { 313 strbuf_add_unique_abbrev(&opt->obuf, &commit->object.oid, 314 DEFAULT_ABBREV); 315 strbuf_addch(&opt->obuf, ' '); 316 if (parse_commit(commit) != 0) 317 strbuf_addstr(&opt->obuf, _("(bad commit)\n")); 318 else { 319 const char *title; 320 const char *msg = get_commit_buffer(commit, NULL); 321 int len = find_commit_subject(msg, &title); 322 if (len) 323 strbuf_addf(&opt->obuf, "%.*s\n", len, title); 324 unuse_commit_buffer(commit, msg); 325 } 326 } 327 flush_output(opt); 328} 329 330static int add_cacheinfo(struct merge_options *opt, 331 const struct diff_filespec *blob, 332 const char *path, int stage, int refresh, int options) 333{ 334 struct index_state *istate = opt->repo->index; 335 struct cache_entry *ce; 336 int ret; 337 338 ce = make_cache_entry(istate, blob->mode, &blob->oid, path, stage, 0); 339 if (!ce) 340 return err(opt, _("add_cacheinfo failed for path '%s'; merge aborting."), path); 341 342 ret = add_index_entry(istate, ce, options); 343 if (refresh) { 344 struct cache_entry *nce; 345 346 nce = refresh_cache_entry(istate, ce, 347 CE_MATCH_REFRESH | CE_MATCH_IGNORE_MISSING); 348 if (!nce) 349 return err(opt, _("add_cacheinfo failed to refresh for path '%s'; merge aborting."), path); 350 if (nce != ce) 351 ret = add_index_entry(istate, nce, options); 352 } 353 return ret; 354} 355 356static void init_tree_desc_from_tree(struct tree_desc *desc, struct tree *tree) 357{ 358 parse_tree(tree); 359 init_tree_desc(desc, tree->buffer, tree->size); 360} 361 362static int unpack_trees_start(struct merge_options *opt, 363 struct tree *common, 364 struct tree *head, 365 struct tree *merge) 366{ 367 int rc; 368 struct tree_desc t[3]; 369 struct index_state tmp_index = { NULL }; 370 371 memset(&opt->unpack_opts, 0, sizeof(opt->unpack_opts)); 372 if (opt->call_depth) 373 opt->unpack_opts.index_only = 1; 374 else 375 opt->unpack_opts.update = 1; 376 opt->unpack_opts.merge = 1; 377 opt->unpack_opts.head_idx = 2; 378 opt->unpack_opts.fn = threeway_merge; 379 opt->unpack_opts.src_index = opt->repo->index; 380 opt->unpack_opts.dst_index = &tmp_index; 381 opt->unpack_opts.aggressive = !merge_detect_rename(opt); 382 setup_unpack_trees_porcelain(&opt->unpack_opts, "merge"); 383 384 init_tree_desc_from_tree(t+0, common); 385 init_tree_desc_from_tree(t+1, head); 386 init_tree_desc_from_tree(t+2, merge); 387 388 rc = unpack_trees(3, t, &opt->unpack_opts); 389 cache_tree_free(&opt->repo->index->cache_tree); 390 391 /* 392 * Update opt->repo->index to match the new results, AFTER saving a copy 393 * in opt->orig_index. Update src_index to point to the saved copy. 394 * (verify_uptodate() checks src_index, and the original index is 395 * the one that had the necessary modification timestamps.) 396 */ 397 opt->orig_index = *opt->repo->index; 398 *opt->repo->index = tmp_index; 399 opt->unpack_opts.src_index = &opt->orig_index; 400 401 return rc; 402} 403 404static void unpack_trees_finish(struct merge_options *opt) 405{ 406 discard_index(&opt->orig_index); 407 clear_unpack_trees_porcelain(&opt->unpack_opts); 408} 409 410struct tree *write_tree_from_memory(struct merge_options *opt) 411{ 412 struct tree *result = NULL; 413 struct index_state *istate = opt->repo->index; 414 415 if (unmerged_index(istate)) { 416 int i; 417 fprintf(stderr, "BUG: There are unmerged index entries:\n"); 418 for (i = 0; i < istate->cache_nr; i++) { 419 const struct cache_entry *ce = istate->cache[i]; 420 if (ce_stage(ce)) 421 fprintf(stderr, "BUG: %d %.*s\n", ce_stage(ce), 422 (int)ce_namelen(ce), ce->name); 423 } 424 BUG("unmerged index entries in merge-recursive.c"); 425 } 426 427 if (!istate->cache_tree) 428 istate->cache_tree = cache_tree(); 429 430 if (!cache_tree_fully_valid(istate->cache_tree) && 431 cache_tree_update(istate, 0) < 0) { 432 err(opt, _("error building trees")); 433 return NULL; 434 } 435 436 result = lookup_tree(opt->repo, &istate->cache_tree->oid); 437 438 return result; 439} 440 441static int save_files_dirs(const struct object_id *oid, 442 struct strbuf *base, const char *path, 443 unsigned int mode, int stage, void *context) 444{ 445 struct path_hashmap_entry *entry; 446 int baselen = base->len; 447 struct merge_options *opt = context; 448 449 strbuf_addstr(base, path); 450 451 FLEX_ALLOC_MEM(entry, path, base->buf, base->len); 452 hashmap_entry_init(entry, path_hash(entry->path)); 453 hashmap_add(&opt->current_file_dir_set, entry); 454 455 strbuf_setlen(base, baselen); 456 return (S_ISDIR(mode) ? READ_TREE_RECURSIVE : 0); 457} 458 459static void get_files_dirs(struct merge_options *opt, struct tree *tree) 460{ 461 struct pathspec match_all; 462 memset(&match_all, 0, sizeof(match_all)); 463 read_tree_recursive(the_repository, tree, "", 0, 0, 464 &match_all, save_files_dirs, opt); 465} 466 467static int get_tree_entry_if_blob(const struct object_id *tree, 468 const char *path, 469 struct diff_filespec *dfs) 470{ 471 int ret; 472 473 ret = get_tree_entry(tree, path, &dfs->oid, &dfs->mode); 474 if (S_ISDIR(dfs->mode)) { 475 oidcpy(&dfs->oid, &null_oid); 476 dfs->mode = 0; 477 } 478 return ret; 479} 480 481/* 482 * Returns an index_entry instance which doesn't have to correspond to 483 * a real cache entry in Git's index. 484 */ 485static struct stage_data *insert_stage_data(const char *path, 486 struct tree *o, struct tree *a, struct tree *b, 487 struct string_list *entries) 488{ 489 struct string_list_item *item; 490 struct stage_data *e = xcalloc(1, sizeof(struct stage_data)); 491 get_tree_entry_if_blob(&o->object.oid, path, &e->stages[1]); 492 get_tree_entry_if_blob(&a->object.oid, path, &e->stages[2]); 493 get_tree_entry_if_blob(&b->object.oid, path, &e->stages[3]); 494 item = string_list_insert(entries, path); 495 item->util = e; 496 return e; 497} 498 499/* 500 * Create a dictionary mapping file names to stage_data objects. The 501 * dictionary contains one entry for every path with a non-zero stage entry. 502 */ 503static struct string_list *get_unmerged(struct index_state *istate) 504{ 505 struct string_list *unmerged = xcalloc(1, sizeof(struct string_list)); 506 int i; 507 508 unmerged->strdup_strings = 1; 509 510 for (i = 0; i < istate->cache_nr; i++) { 511 struct string_list_item *item; 512 struct stage_data *e; 513 const struct cache_entry *ce = istate->cache[i]; 514 if (!ce_stage(ce)) 515 continue; 516 517 item = string_list_lookup(unmerged, ce->name); 518 if (!item) { 519 item = string_list_insert(unmerged, ce->name); 520 item->util = xcalloc(1, sizeof(struct stage_data)); 521 } 522 e = item->util; 523 e->stages[ce_stage(ce)].mode = ce->ce_mode; 524 oidcpy(&e->stages[ce_stage(ce)].oid, &ce->oid); 525 } 526 527 return unmerged; 528} 529 530static int string_list_df_name_compare(const char *one, const char *two) 531{ 532 int onelen = strlen(one); 533 int twolen = strlen(two); 534 /* 535 * Here we only care that entries for D/F conflicts are 536 * adjacent, in particular with the file of the D/F conflict 537 * appearing before files below the corresponding directory. 538 * The order of the rest of the list is irrelevant for us. 539 * 540 * To achieve this, we sort with df_name_compare and provide 541 * the mode S_IFDIR so that D/F conflicts will sort correctly. 542 * We use the mode S_IFDIR for everything else for simplicity, 543 * since in other cases any changes in their order due to 544 * sorting cause no problems for us. 545 */ 546 int cmp = df_name_compare(one, onelen, S_IFDIR, 547 two, twolen, S_IFDIR); 548 /* 549 * Now that 'foo' and 'foo/bar' compare equal, we have to make sure 550 * that 'foo' comes before 'foo/bar'. 551 */ 552 if (cmp) 553 return cmp; 554 return onelen - twolen; 555} 556 557static void record_df_conflict_files(struct merge_options *opt, 558 struct string_list *entries) 559{ 560 /* If there is a D/F conflict and the file for such a conflict 561 * currently exists in the working tree, we want to allow it to be 562 * removed to make room for the corresponding directory if needed. 563 * The files underneath the directories of such D/F conflicts will 564 * be processed before the corresponding file involved in the D/F 565 * conflict. If the D/F directory ends up being removed by the 566 * merge, then we won't have to touch the D/F file. If the D/F 567 * directory needs to be written to the working copy, then the D/F 568 * file will simply be removed (in make_room_for_path()) to make 569 * room for the necessary paths. Note that if both the directory 570 * and the file need to be present, then the D/F file will be 571 * reinstated with a new unique name at the time it is processed. 572 */ 573 struct string_list df_sorted_entries = STRING_LIST_INIT_NODUP; 574 const char *last_file = NULL; 575 int last_len = 0; 576 int i; 577 578 /* 579 * If we're merging merge-bases, we don't want to bother with 580 * any working directory changes. 581 */ 582 if (opt->call_depth) 583 return; 584 585 /* Ensure D/F conflicts are adjacent in the entries list. */ 586 for (i = 0; i < entries->nr; i++) { 587 struct string_list_item *next = &entries->items[i]; 588 string_list_append(&df_sorted_entries, next->string)->util = 589 next->util; 590 } 591 df_sorted_entries.cmp = string_list_df_name_compare; 592 string_list_sort(&df_sorted_entries); 593 594 string_list_clear(&opt->df_conflict_file_set, 1); 595 for (i = 0; i < df_sorted_entries.nr; i++) { 596 const char *path = df_sorted_entries.items[i].string; 597 int len = strlen(path); 598 struct stage_data *e = df_sorted_entries.items[i].util; 599 600 /* 601 * Check if last_file & path correspond to a D/F conflict; 602 * i.e. whether path is last_file+'/'+<something>. 603 * If so, record that it's okay to remove last_file to make 604 * room for path and friends if needed. 605 */ 606 if (last_file && 607 len > last_len && 608 memcmp(path, last_file, last_len) == 0 && 609 path[last_len] == '/') { 610 string_list_insert(&opt->df_conflict_file_set, last_file); 611 } 612 613 /* 614 * Determine whether path could exist as a file in the 615 * working directory as a possible D/F conflict. This 616 * will only occur when it exists in stage 2 as a 617 * file. 618 */ 619 if (S_ISREG(e->stages[2].mode) || S_ISLNK(e->stages[2].mode)) { 620 last_file = path; 621 last_len = len; 622 } else { 623 last_file = NULL; 624 } 625 } 626 string_list_clear(&df_sorted_entries, 0); 627} 628 629static int update_stages(struct merge_options *opt, const char *path, 630 const struct diff_filespec *o, 631 const struct diff_filespec *a, 632 const struct diff_filespec *b) 633{ 634 635 /* 636 * NOTE: It is usually a bad idea to call update_stages on a path 637 * before calling update_file on that same path, since it can 638 * sometimes lead to spurious "refusing to lose untracked file..." 639 * messages from update_file (via make_room_for path via 640 * would_lose_untracked). Instead, reverse the order of the calls 641 * (executing update_file first and then update_stages). 642 */ 643 int clear = 1; 644 int options = ADD_CACHE_OK_TO_ADD | ADD_CACHE_SKIP_DFCHECK; 645 if (clear) 646 if (remove_file_from_index(opt->repo->index, path)) 647 return -1; 648 if (o) 649 if (add_cacheinfo(opt, o, path, 1, 0, options)) 650 return -1; 651 if (a) 652 if (add_cacheinfo(opt, a, path, 2, 0, options)) 653 return -1; 654 if (b) 655 if (add_cacheinfo(opt, b, path, 3, 0, options)) 656 return -1; 657 return 0; 658} 659 660static void update_entry(struct stage_data *entry, 661 struct diff_filespec *o, 662 struct diff_filespec *a, 663 struct diff_filespec *b) 664{ 665 entry->processed = 0; 666 entry->stages[1].mode = o->mode; 667 entry->stages[2].mode = a->mode; 668 entry->stages[3].mode = b->mode; 669 oidcpy(&entry->stages[1].oid, &o->oid); 670 oidcpy(&entry->stages[2].oid, &a->oid); 671 oidcpy(&entry->stages[3].oid, &b->oid); 672} 673 674static int remove_file(struct merge_options *opt, int clean, 675 const char *path, int no_wd) 676{ 677 int update_cache = opt->call_depth || clean; 678 int update_working_directory = !opt->call_depth && !no_wd; 679 680 if (update_cache) { 681 if (remove_file_from_index(opt->repo->index, path)) 682 return -1; 683 } 684 if (update_working_directory) { 685 if (ignore_case) { 686 struct cache_entry *ce; 687 ce = index_file_exists(opt->repo->index, path, strlen(path), 688 ignore_case); 689 if (ce && ce_stage(ce) == 0 && strcmp(path, ce->name)) 690 return 0; 691 } 692 if (remove_path(path)) 693 return -1; 694 } 695 return 0; 696} 697 698/* add a string to a strbuf, but converting "/" to "_" */ 699static void add_flattened_path(struct strbuf *out, const char *s) 700{ 701 size_t i = out->len; 702 strbuf_addstr(out, s); 703 for (; i < out->len; i++) 704 if (out->buf[i] == '/') 705 out->buf[i] = '_'; 706} 707 708static char *unique_path(struct merge_options *opt, const char *path, const char *branch) 709{ 710 struct path_hashmap_entry *entry; 711 struct strbuf newpath = STRBUF_INIT; 712 int suffix = 0; 713 size_t base_len; 714 715 strbuf_addf(&newpath, "%s~", path); 716 add_flattened_path(&newpath, branch); 717 718 base_len = newpath.len; 719 while (hashmap_get_from_hash(&opt->current_file_dir_set, 720 path_hash(newpath.buf), newpath.buf) || 721 (!opt->call_depth && file_exists(newpath.buf))) { 722 strbuf_setlen(&newpath, base_len); 723 strbuf_addf(&newpath, "_%d", suffix++); 724 } 725 726 FLEX_ALLOC_MEM(entry, path, newpath.buf, newpath.len); 727 hashmap_entry_init(entry, path_hash(entry->path)); 728 hashmap_add(&opt->current_file_dir_set, entry); 729 return strbuf_detach(&newpath, NULL); 730} 731 732/** 733 * Check whether a directory in the index is in the way of an incoming 734 * file. Return 1 if so. If check_working_copy is non-zero, also 735 * check the working directory. If empty_ok is non-zero, also return 736 * 0 in the case where the working-tree dir exists but is empty. 737 */ 738static int dir_in_way(struct index_state *istate, const char *path, 739 int check_working_copy, int empty_ok) 740{ 741 int pos; 742 struct strbuf dirpath = STRBUF_INIT; 743 struct stat st; 744 745 strbuf_addstr(&dirpath, path); 746 strbuf_addch(&dirpath, '/'); 747 748 pos = index_name_pos(istate, dirpath.buf, dirpath.len); 749 750 if (pos < 0) 751 pos = -1 - pos; 752 if (pos < istate->cache_nr && 753 !strncmp(dirpath.buf, istate->cache[pos]->name, dirpath.len)) { 754 strbuf_release(&dirpath); 755 return 1; 756 } 757 758 strbuf_release(&dirpath); 759 return check_working_copy && !lstat(path, &st) && S_ISDIR(st.st_mode) && 760 !(empty_ok && is_empty_dir(path)); 761} 762 763/* 764 * Returns whether path was tracked in the index before the merge started, 765 * and its oid and mode match the specified values 766 */ 767static int was_tracked_and_matches(struct merge_options *opt, const char *path, 768 const struct diff_filespec *blob) 769{ 770 int pos = index_name_pos(&opt->orig_index, path, strlen(path)); 771 struct cache_entry *ce; 772 773 if (0 > pos) 774 /* we were not tracking this path before the merge */ 775 return 0; 776 777 /* See if the file we were tracking before matches */ 778 ce = opt->orig_index.cache[pos]; 779 return (oid_eq(&ce->oid, &blob->oid) && ce->ce_mode == blob->mode); 780} 781 782/* 783 * Returns whether path was tracked in the index before the merge started 784 */ 785static int was_tracked(struct merge_options *opt, const char *path) 786{ 787 int pos = index_name_pos(&opt->orig_index, path, strlen(path)); 788 789 if (0 <= pos) 790 /* we were tracking this path before the merge */ 791 return 1; 792 793 return 0; 794} 795 796static int would_lose_untracked(struct merge_options *opt, const char *path) 797{ 798 struct index_state *istate = opt->repo->index; 799 800 /* 801 * This may look like it can be simplified to: 802 * return !was_tracked(opt, path) && file_exists(path) 803 * but it can't. This function needs to know whether path was in 804 * the working tree due to EITHER having been tracked in the index 805 * before the merge OR having been put into the working copy and 806 * index by unpack_trees(). Due to that either-or requirement, we 807 * check the current index instead of the original one. 808 * 809 * Note that we do not need to worry about merge-recursive itself 810 * updating the index after unpack_trees() and before calling this 811 * function, because we strictly require all code paths in 812 * merge-recursive to update the working tree first and the index 813 * second. Doing otherwise would break 814 * update_file()/would_lose_untracked(); see every comment in this 815 * file which mentions "update_stages". 816 */ 817 int pos = index_name_pos(istate, path, strlen(path)); 818 819 if (pos < 0) 820 pos = -1 - pos; 821 while (pos < istate->cache_nr && 822 !strcmp(path, istate->cache[pos]->name)) { 823 /* 824 * If stage #0, it is definitely tracked. 825 * If it has stage #2 then it was tracked 826 * before this merge started. All other 827 * cases the path was not tracked. 828 */ 829 switch (ce_stage(istate->cache[pos])) { 830 case 0: 831 case 2: 832 return 0; 833 } 834 pos++; 835 } 836 return file_exists(path); 837} 838 839static int was_dirty(struct merge_options *opt, const char *path) 840{ 841 struct cache_entry *ce; 842 int dirty = 1; 843 844 if (opt->call_depth || !was_tracked(opt, path)) 845 return !dirty; 846 847 ce = index_file_exists(opt->unpack_opts.src_index, 848 path, strlen(path), ignore_case); 849 dirty = verify_uptodate(ce, &opt->unpack_opts) != 0; 850 return dirty; 851} 852 853static int make_room_for_path(struct merge_options *opt, const char *path) 854{ 855 int status, i; 856 const char *msg = _("failed to create path '%s'%s"); 857 858 /* Unlink any D/F conflict files that are in the way */ 859 for (i = 0; i < opt->df_conflict_file_set.nr; i++) { 860 const char *df_path = opt->df_conflict_file_set.items[i].string; 861 size_t pathlen = strlen(path); 862 size_t df_pathlen = strlen(df_path); 863 if (df_pathlen < pathlen && 864 path[df_pathlen] == '/' && 865 strncmp(path, df_path, df_pathlen) == 0) { 866 output(opt, 3, 867 _("Removing %s to make room for subdirectory\n"), 868 df_path); 869 unlink(df_path); 870 unsorted_string_list_delete_item(&opt->df_conflict_file_set, 871 i, 0); 872 break; 873 } 874 } 875 876 /* Make sure leading directories are created */ 877 status = safe_create_leading_directories_const(path); 878 if (status) { 879 if (status == SCLD_EXISTS) 880 /* something else exists */ 881 return err(opt, msg, path, _(": perhaps a D/F conflict?")); 882 return err(opt, msg, path, ""); 883 } 884 885 /* 886 * Do not unlink a file in the work tree if we are not 887 * tracking it. 888 */ 889 if (would_lose_untracked(opt, path)) 890 return err(opt, _("refusing to lose untracked file at '%s'"), 891 path); 892 893 /* Successful unlink is good.. */ 894 if (!unlink(path)) 895 return 0; 896 /* .. and so is no existing file */ 897 if (errno == ENOENT) 898 return 0; 899 /* .. but not some other error (who really cares what?) */ 900 return err(opt, msg, path, _(": perhaps a D/F conflict?")); 901} 902 903static int update_file_flags(struct merge_options *opt, 904 const struct diff_filespec *contents, 905 const char *path, 906 int update_cache, 907 int update_wd) 908{ 909 int ret = 0; 910 911 if (opt->call_depth) 912 update_wd = 0; 913 914 if (update_wd) { 915 enum object_type type; 916 void *buf; 917 unsigned long size; 918 919 if (S_ISGITLINK(contents->mode)) { 920 /* 921 * We may later decide to recursively descend into 922 * the submodule directory and update its index 923 * and/or work tree, but we do not do that now. 924 */ 925 update_wd = 0; 926 goto update_index; 927 } 928 929 buf = read_object_file(&contents->oid, &type, &size); 930 if (!buf) 931 return err(opt, _("cannot read object %s '%s'"), 932 oid_to_hex(&contents->oid), path); 933 if (type != OBJ_BLOB) { 934 ret = err(opt, _("blob expected for %s '%s'"), 935 oid_to_hex(&contents->oid), path); 936 goto free_buf; 937 } 938 if (S_ISREG(contents->mode)) { 939 struct strbuf strbuf = STRBUF_INIT; 940 if (convert_to_working_tree(opt->repo->index, path, buf, size, &strbuf)) { 941 free(buf); 942 size = strbuf.len; 943 buf = strbuf_detach(&strbuf, NULL); 944 } 945 } 946 947 if (make_room_for_path(opt, path) < 0) { 948 update_wd = 0; 949 goto free_buf; 950 } 951 if (S_ISREG(contents->mode) || 952 (!has_symlinks && S_ISLNK(contents->mode))) { 953 int fd; 954 int mode = (contents->mode & 0100 ? 0777 : 0666); 955 956 fd = open(path, O_WRONLY | O_TRUNC | O_CREAT, mode); 957 if (fd < 0) { 958 ret = err(opt, _("failed to open '%s': %s"), 959 path, strerror(errno)); 960 goto free_buf; 961 } 962 write_in_full(fd, buf, size); 963 close(fd); 964 } else if (S_ISLNK(contents->mode)) { 965 char *lnk = xmemdupz(buf, size); 966 safe_create_leading_directories_const(path); 967 unlink(path); 968 if (symlink(lnk, path)) 969 ret = err(opt, _("failed to symlink '%s': %s"), 970 path, strerror(errno)); 971 free(lnk); 972 } else 973 ret = err(opt, 974 _("do not know what to do with %06o %s '%s'"), 975 contents->mode, oid_to_hex(&contents->oid), path); 976 free_buf: 977 free(buf); 978 } 979update_index: 980 if (!ret && update_cache) 981 if (add_cacheinfo(opt, contents, path, 0, update_wd, 982 ADD_CACHE_OK_TO_ADD)) 983 return -1; 984 return ret; 985} 986 987static int update_file(struct merge_options *opt, 988 int clean, 989 const struct diff_filespec *contents, 990 const char *path) 991{ 992 return update_file_flags(opt, contents, path, 993 opt->call_depth || clean, !opt->call_depth); 994} 995 996/* Low level file merging, update and removal */ 997 998struct merge_file_info { 999 struct diff_filespec blob; /* mostly use oid & mode; sometimes path */1000 unsigned clean:1,1001 merge:1;1002};10031004static int merge_3way(struct merge_options *opt,1005 mmbuffer_t *result_buf,1006 const struct diff_filespec *o,1007 const struct diff_filespec *a,1008 const struct diff_filespec *b,1009 const char *branch1,1010 const char *branch2,1011 const int extra_marker_size)1012{1013 mmfile_t orig, src1, src2;1014 struct ll_merge_options ll_opts = {0};1015 char *base_name, *name1, *name2;1016 int merge_status;10171018 ll_opts.renormalize = opt->renormalize;1019 ll_opts.extra_marker_size = extra_marker_size;1020 ll_opts.xdl_opts = opt->xdl_opts;10211022 if (opt->call_depth) {1023 ll_opts.virtual_ancestor = 1;1024 ll_opts.variant = 0;1025 } else {1026 switch (opt->recursive_variant) {1027 case MERGE_RECURSIVE_OURS:1028 ll_opts.variant = XDL_MERGE_FAVOR_OURS;1029 break;1030 case MERGE_RECURSIVE_THEIRS:1031 ll_opts.variant = XDL_MERGE_FAVOR_THEIRS;1032 break;1033 default:1034 ll_opts.variant = 0;1035 break;1036 }1037 }10381039 assert(a->path && b->path);1040 if (strcmp(a->path, b->path) ||1041 (opt->ancestor != NULL && strcmp(a->path, o->path) != 0)) {1042 base_name = opt->ancestor == NULL ? NULL :1043 mkpathdup("%s:%s", opt->ancestor, o->path);1044 name1 = mkpathdup("%s:%s", branch1, a->path);1045 name2 = mkpathdup("%s:%s", branch2, b->path);1046 } else {1047 base_name = opt->ancestor == NULL ? NULL :1048 mkpathdup("%s", opt->ancestor);1049 name1 = mkpathdup("%s", branch1);1050 name2 = mkpathdup("%s", branch2);1051 }10521053 read_mmblob(&orig, &o->oid);1054 read_mmblob(&src1, &a->oid);1055 read_mmblob(&src2, &b->oid);10561057 merge_status = ll_merge(result_buf, a->path, &orig, base_name,1058 &src1, name1, &src2, name2,1059 opt->repo->index, &ll_opts);10601061 free(base_name);1062 free(name1);1063 free(name2);1064 free(orig.ptr);1065 free(src1.ptr);1066 free(src2.ptr);1067 return merge_status;1068}10691070static int find_first_merges(struct repository *repo,1071 struct object_array *result, const char *path,1072 struct commit *a, struct commit *b)1073{1074 int i, j;1075 struct object_array merges = OBJECT_ARRAY_INIT;1076 struct commit *commit;1077 int contains_another;10781079 char merged_revision[42];1080 const char *rev_args[] = { "rev-list", "--merges", "--ancestry-path",1081 "--all", merged_revision, NULL };1082 struct rev_info revs;1083 struct setup_revision_opt rev_opts;10841085 memset(result, 0, sizeof(struct object_array));1086 memset(&rev_opts, 0, sizeof(rev_opts));10871088 /* get all revisions that merge commit a */1089 xsnprintf(merged_revision, sizeof(merged_revision), "^%s",1090 oid_to_hex(&a->object.oid));1091 repo_init_revisions(repo, &revs, NULL);1092 rev_opts.submodule = path;1093 /* FIXME: can't handle linked worktrees in submodules yet */1094 revs.single_worktree = path != NULL;1095 setup_revisions(ARRAY_SIZE(rev_args)-1, rev_args, &revs, &rev_opts);10961097 /* save all revisions from the above list that contain b */1098 if (prepare_revision_walk(&revs))1099 die("revision walk setup failed");1100 while ((commit = get_revision(&revs)) != NULL) {1101 struct object *o = &(commit->object);1102 if (in_merge_bases(b, commit))1103 add_object_array(o, NULL, &merges);1104 }1105 reset_revision_walk();11061107 /* Now we've got all merges that contain a and b. Prune all1108 * merges that contain another found merge and save them in1109 * result.1110 */1111 for (i = 0; i < merges.nr; i++) {1112 struct commit *m1 = (struct commit *) merges.objects[i].item;11131114 contains_another = 0;1115 for (j = 0; j < merges.nr; j++) {1116 struct commit *m2 = (struct commit *) merges.objects[j].item;1117 if (i != j && in_merge_bases(m2, m1)) {1118 contains_another = 1;1119 break;1120 }1121 }11221123 if (!contains_another)1124 add_object_array(merges.objects[i].item, NULL, result);1125 }11261127 object_array_clear(&merges);1128 return result->nr;1129}11301131static void print_commit(struct commit *commit)1132{1133 struct strbuf sb = STRBUF_INIT;1134 struct pretty_print_context ctx = {0};1135 ctx.date_mode.type = DATE_NORMAL;1136 format_commit_message(commit, " %h: %m %s", &sb, &ctx);1137 fprintf(stderr, "%s\n", sb.buf);1138 strbuf_release(&sb);1139}11401141static int is_valid(const struct diff_filespec *dfs)1142{1143 return dfs->mode != 0 && !is_null_oid(&dfs->oid);1144}11451146static int merge_submodule(struct merge_options *opt,1147 struct object_id *result, const char *path,1148 const struct object_id *base, const struct object_id *a,1149 const struct object_id *b)1150{1151 struct commit *commit_base, *commit_a, *commit_b;1152 int parent_count;1153 struct object_array merges;11541155 int i;1156 int search = !opt->call_depth;11571158 /* store a in result in case we fail */1159 oidcpy(result, a);11601161 /* we can not handle deletion conflicts */1162 if (is_null_oid(base))1163 return 0;1164 if (is_null_oid(a))1165 return 0;1166 if (is_null_oid(b))1167 return 0;11681169 if (add_submodule_odb(path)) {1170 output(opt, 1, _("Failed to merge submodule %s (not checked out)"), path);1171 return 0;1172 }11731174 if (!(commit_base = lookup_commit_reference(opt->repo, base)) ||1175 !(commit_a = lookup_commit_reference(opt->repo, a)) ||1176 !(commit_b = lookup_commit_reference(opt->repo, b))) {1177 output(opt, 1, _("Failed to merge submodule %s (commits not present)"), path);1178 return 0;1179 }11801181 /* check whether both changes are forward */1182 if (!in_merge_bases(commit_base, commit_a) ||1183 !in_merge_bases(commit_base, commit_b)) {1184 output(opt, 1, _("Failed to merge submodule %s (commits don't follow merge-base)"), path);1185 return 0;1186 }11871188 /* Case #1: a is contained in b or vice versa */1189 if (in_merge_bases(commit_a, commit_b)) {1190 oidcpy(result, b);1191 if (show(opt, 3)) {1192 output(opt, 3, _("Fast-forwarding submodule %s to the following commit:"), path);1193 output_commit_title(opt, commit_b);1194 } else if (show(opt, 2))1195 output(opt, 2, _("Fast-forwarding submodule %s"), path);1196 else1197 ; /* no output */11981199 return 1;1200 }1201 if (in_merge_bases(commit_b, commit_a)) {1202 oidcpy(result, a);1203 if (show(opt, 3)) {1204 output(opt, 3, _("Fast-forwarding submodule %s to the following commit:"), path);1205 output_commit_title(opt, commit_a);1206 } else if (show(opt, 2))1207 output(opt, 2, _("Fast-forwarding submodule %s"), path);1208 else1209 ; /* no output */12101211 return 1;1212 }12131214 /*1215 * Case #2: There are one or more merges that contain a and b in1216 * the submodule. If there is only one, then present it as a1217 * suggestion to the user, but leave it marked unmerged so the1218 * user needs to confirm the resolution.1219 */12201221 /* Skip the search if makes no sense to the calling context. */1222 if (!search)1223 return 0;12241225 /* find commit which merges them */1226 parent_count = find_first_merges(opt->repo, &merges, path,1227 commit_a, commit_b);1228 switch (parent_count) {1229 case 0:1230 output(opt, 1, _("Failed to merge submodule %s (merge following commits not found)"), path);1231 break;12321233 case 1:1234 output(opt, 1, _("Failed to merge submodule %s (not fast-forward)"), path);1235 output(opt, 2, _("Found a possible merge resolution for the submodule:\n"));1236 print_commit((struct commit *) merges.objects[0].item);1237 output(opt, 2, _(1238 "If this is correct simply add it to the index "1239 "for example\n"1240 "by using:\n\n"1241 " git update-index --cacheinfo 160000 %s \"%s\"\n\n"1242 "which will accept this suggestion.\n"),1243 oid_to_hex(&merges.objects[0].item->oid), path);1244 break;12451246 default:1247 output(opt, 1, _("Failed to merge submodule %s (multiple merges found)"), path);1248 for (i = 0; i < merges.nr; i++)1249 print_commit((struct commit *) merges.objects[i].item);1250 }12511252 object_array_clear(&merges);1253 return 0;1254}12551256static int merge_mode_and_contents(struct merge_options *opt,1257 const struct diff_filespec *o,1258 const struct diff_filespec *a,1259 const struct diff_filespec *b,1260 const char *filename,1261 const char *branch1,1262 const char *branch2,1263 const int extra_marker_size,1264 struct merge_file_info *result)1265{1266 if (opt->branch1 != branch1) {1267 /*1268 * It's weird getting a reverse merge with HEAD on the bottom1269 * side of the conflict markers and the other branch on the1270 * top. Fix that.1271 */1272 return merge_mode_and_contents(opt, o, b, a,1273 filename,1274 branch2, branch1,1275 extra_marker_size, result);1276 }12771278 result->merge = 0;1279 result->clean = 1;12801281 if ((S_IFMT & a->mode) != (S_IFMT & b->mode)) {1282 result->clean = 0;1283 if (S_ISREG(a->mode)) {1284 result->blob.mode = a->mode;1285 oidcpy(&result->blob.oid, &a->oid);1286 } else {1287 result->blob.mode = b->mode;1288 oidcpy(&result->blob.oid, &b->oid);1289 }1290 } else {1291 if (!oid_eq(&a->oid, &o->oid) && !oid_eq(&b->oid, &o->oid))1292 result->merge = 1;12931294 /*1295 * Merge modes1296 */1297 if (a->mode == b->mode || a->mode == o->mode)1298 result->blob.mode = b->mode;1299 else {1300 result->blob.mode = a->mode;1301 if (b->mode != o->mode) {1302 result->clean = 0;1303 result->merge = 1;1304 }1305 }13061307 if (oid_eq(&a->oid, &b->oid) || oid_eq(&a->oid, &o->oid))1308 oidcpy(&result->blob.oid, &b->oid);1309 else if (oid_eq(&b->oid, &o->oid))1310 oidcpy(&result->blob.oid, &a->oid);1311 else if (S_ISREG(a->mode)) {1312 mmbuffer_t result_buf;1313 int ret = 0, merge_status;13141315 merge_status = merge_3way(opt, &result_buf, o, a, b,1316 branch1, branch2,1317 extra_marker_size);13181319 if ((merge_status < 0) || !result_buf.ptr)1320 ret = err(opt, _("Failed to execute internal merge"));13211322 if (!ret &&1323 write_object_file(result_buf.ptr, result_buf.size,1324 blob_type, &result->blob.oid))1325 ret = err(opt, _("Unable to add %s to database"),1326 a->path);13271328 free(result_buf.ptr);1329 if (ret)1330 return ret;1331 result->clean = (merge_status == 0);1332 } else if (S_ISGITLINK(a->mode)) {1333 result->clean = merge_submodule(opt, &result->blob.oid,1334 o->path,1335 &o->oid,1336 &a->oid,1337 &b->oid);1338 } else if (S_ISLNK(a->mode)) {1339 switch (opt->recursive_variant) {1340 case MERGE_RECURSIVE_NORMAL:1341 oidcpy(&result->blob.oid, &a->oid);1342 if (!oid_eq(&a->oid, &b->oid))1343 result->clean = 0;1344 break;1345 case MERGE_RECURSIVE_OURS:1346 oidcpy(&result->blob.oid, &a->oid);1347 break;1348 case MERGE_RECURSIVE_THEIRS:1349 oidcpy(&result->blob.oid, &b->oid);1350 break;1351 }1352 } else1353 BUG("unsupported object type in the tree");1354 }13551356 if (result->merge)1357 output(opt, 2, _("Auto-merging %s"), filename);13581359 return 0;1360}13611362static int handle_rename_via_dir(struct merge_options *opt,1363 struct rename_conflict_info *ci)1364{1365 /*1366 * Handle file adds that need to be renamed due to directory rename1367 * detection. This differs from handle_rename_normal, because1368 * there is no content merge to do; just move the file into the1369 * desired final location.1370 */1371 const struct rename *ren = ci->ren1;1372 const struct diff_filespec *dest = ren->pair->two;13731374 if (!opt->call_depth && would_lose_untracked(opt, dest->path)) {1375 char *alt_path = unique_path(opt, dest->path, ren->branch);13761377 output(opt, 1, _("Error: Refusing to lose untracked file at %s; "1378 "writing to %s instead."),1379 dest->path, alt_path);1380 /*1381 * Write the file in worktree at alt_path, but not in the1382 * index. Instead, write to dest->path for the index but1383 * only at the higher appropriate stage.1384 */1385 if (update_file(opt, 0, dest, alt_path))1386 return -1;1387 free(alt_path);1388 return update_stages(opt, dest->path, NULL,1389 ren->branch == opt->branch1 ? dest : NULL,1390 ren->branch == opt->branch1 ? NULL : dest);1391 }13921393 /* Update dest->path both in index and in worktree */1394 if (update_file(opt, 1, dest, dest->path))1395 return -1;1396 return 0;1397}13981399static int handle_change_delete(struct merge_options *opt,1400 const char *path, const char *old_path,1401 const struct diff_filespec *o,1402 const struct diff_filespec *changed,1403 const char *change_branch,1404 const char *delete_branch,1405 const char *change, const char *change_past)1406{1407 char *alt_path = NULL;1408 const char *update_path = path;1409 int ret = 0;14101411 if (dir_in_way(opt->repo->index, path, !opt->call_depth, 0) ||1412 (!opt->call_depth && would_lose_untracked(opt, path))) {1413 update_path = alt_path = unique_path(opt, path, change_branch);1414 }14151416 if (opt->call_depth) {1417 /*1418 * We cannot arbitrarily accept either a_sha or b_sha as1419 * correct; since there is no true "middle point" between1420 * them, simply reuse the base version for virtual merge base.1421 */1422 ret = remove_file_from_index(opt->repo->index, path);1423 if (!ret)1424 ret = update_file(opt, 0, o, update_path);1425 } else {1426 /*1427 * Despite the four nearly duplicate messages and argument1428 * lists below and the ugliness of the nested if-statements,1429 * having complete messages makes the job easier for1430 * translators.1431 *1432 * The slight variance among the cases is due to the fact1433 * that:1434 * 1) directory/file conflicts (in effect if1435 * !alt_path) could cause us to need to write the1436 * file to a different path.1437 * 2) renames (in effect if !old_path) could mean that1438 * there are two names for the path that the user1439 * may know the file by.1440 */1441 if (!alt_path) {1442 if (!old_path) {1443 output(opt, 1, _("CONFLICT (%s/delete): %s deleted in %s "1444 "and %s in %s. Version %s of %s left in tree."),1445 change, path, delete_branch, change_past,1446 change_branch, change_branch, path);1447 } else {1448 output(opt, 1, _("CONFLICT (%s/delete): %s deleted in %s "1449 "and %s to %s in %s. Version %s of %s left in tree."),1450 change, old_path, delete_branch, change_past, path,1451 change_branch, change_branch, path);1452 }1453 } else {1454 if (!old_path) {1455 output(opt, 1, _("CONFLICT (%s/delete): %s deleted in %s "1456 "and %s in %s. Version %s of %s left in tree at %s."),1457 change, path, delete_branch, change_past,1458 change_branch, change_branch, path, alt_path);1459 } else {1460 output(opt, 1, _("CONFLICT (%s/delete): %s deleted in %s "1461 "and %s to %s in %s. Version %s of %s left in tree at %s."),1462 change, old_path, delete_branch, change_past, path,1463 change_branch, change_branch, path, alt_path);1464 }1465 }1466 /*1467 * No need to call update_file() on path when change_branch ==1468 * opt->branch1 && !alt_path, since that would needlessly touch1469 * path. We could call update_file_flags() with update_cache=01470 * and update_wd=0, but that's a no-op.1471 */1472 if (change_branch != opt->branch1 || alt_path)1473 ret = update_file(opt, 0, changed, update_path);1474 }1475 free(alt_path);14761477 return ret;1478}14791480static int handle_rename_delete(struct merge_options *opt,1481 struct rename_conflict_info *ci)1482{1483 const struct rename *ren = ci->ren1;1484 const struct diff_filespec *orig = ren->pair->one;1485 const struct diff_filespec *dest = ren->pair->two;1486 const char *rename_branch = ren->branch;1487 const char *delete_branch = (opt->branch1 == ren->branch ?1488 opt->branch2 : opt->branch1);14891490 if (handle_change_delete(opt,1491 opt->call_depth ? orig->path : dest->path,1492 opt->call_depth ? NULL : orig->path,1493 orig, dest,1494 rename_branch, delete_branch,1495 _("rename"), _("renamed")))1496 return -1;14971498 if (opt->call_depth)1499 return remove_file_from_index(opt->repo->index, dest->path);1500 else1501 return update_stages(opt, dest->path, NULL,1502 rename_branch == opt->branch1 ? dest : NULL,1503 rename_branch == opt->branch1 ? NULL : dest);1504}15051506static int handle_file_collision(struct merge_options *opt,1507 const char *collide_path,1508 const char *prev_path1,1509 const char *prev_path2,1510 const char *branch1, const char *branch2,1511 struct diff_filespec *a,1512 struct diff_filespec *b)1513{1514 struct merge_file_info mfi;1515 struct diff_filespec null;1516 char *alt_path = NULL;1517 const char *update_path = collide_path;15181519 /*1520 * It's easiest to get the correct things into stage 2 and 3, and1521 * to make sure that the content merge puts HEAD before the other1522 * branch if we just ensure that branch1 == opt->branch1. So, simply1523 * flip arguments around if we don't have that.1524 */1525 if (branch1 != opt->branch1) {1526 return handle_file_collision(opt, collide_path,1527 prev_path2, prev_path1,1528 branch2, branch1,1529 b, a);1530 }15311532 /*1533 * In the recursive case, we just opt to undo renames1534 */1535 if (opt->call_depth && (prev_path1 || prev_path2)) {1536 /* Put first file (a->oid, a->mode) in its original spot */1537 if (prev_path1) {1538 if (update_file(opt, 1, a, prev_path1))1539 return -1;1540 } else {1541 if (update_file(opt, 1, a, collide_path))1542 return -1;1543 }15441545 /* Put second file (b->oid, b->mode) in its original spot */1546 if (prev_path2) {1547 if (update_file(opt, 1, b, prev_path2))1548 return -1;1549 } else {1550 if (update_file(opt, 1, b, collide_path))1551 return -1;1552 }15531554 /* Don't leave something at collision path if unrenaming both */1555 if (prev_path1 && prev_path2)1556 remove_file(opt, 1, collide_path, 0);15571558 return 0;1559 }15601561 /* Remove rename sources if rename/add or rename/rename(2to1) */1562 if (prev_path1)1563 remove_file(opt, 1, prev_path1,1564 opt->call_depth || would_lose_untracked(opt, prev_path1));1565 if (prev_path2)1566 remove_file(opt, 1, prev_path2,1567 opt->call_depth || would_lose_untracked(opt, prev_path2));15681569 /*1570 * Remove the collision path, if it wouldn't cause dirty contents1571 * or an untracked file to get lost. We'll either overwrite with1572 * merged contents, or just write out to differently named files.1573 */1574 if (was_dirty(opt, collide_path)) {1575 output(opt, 1, _("Refusing to lose dirty file at %s"),1576 collide_path);1577 update_path = alt_path = unique_path(opt, collide_path, "merged");1578 } else if (would_lose_untracked(opt, collide_path)) {1579 /*1580 * Only way we get here is if both renames were from1581 * a directory rename AND user had an untracked file1582 * at the location where both files end up after the1583 * two directory renames. See testcase 10d of t6043.1584 */1585 output(opt, 1, _("Refusing to lose untracked file at "1586 "%s, even though it's in the way."),1587 collide_path);1588 update_path = alt_path = unique_path(opt, collide_path, "merged");1589 } else {1590 /*1591 * FIXME: It's possible that the two files are identical1592 * and that the current working copy happens to match, in1593 * which case we are unnecessarily touching the working1594 * tree file. It's not a likely enough scenario that I1595 * want to code up the checks for it and a better fix is1596 * available if we restructure how unpack_trees() and1597 * merge-recursive interoperate anyway, so punting for1598 * now...1599 */1600 remove_file(opt, 0, collide_path, 0);1601 }16021603 /* Store things in diff_filespecs for functions that need it */1604 null.path = (char *)collide_path;1605 oidcpy(&null.oid, &null_oid);1606 null.mode = 0;16071608 if (merge_mode_and_contents(opt, &null, a, b, collide_path,1609 branch1, branch2, opt->call_depth * 2, &mfi))1610 return -1;1611 mfi.clean &= !alt_path;1612 if (update_file(opt, mfi.clean, &mfi.blob, update_path))1613 return -1;1614 if (!mfi.clean && !opt->call_depth &&1615 update_stages(opt, collide_path, NULL, a, b))1616 return -1;1617 free(alt_path);1618 /*1619 * FIXME: If both a & b both started with conflicts (only possible1620 * if they came from a rename/rename(2to1)), but had IDENTICAL1621 * contents including those conflicts, then in the next line we claim1622 * it was clean. If someone cares about this case, we should have the1623 * caller notify us if we started with conflicts.1624 */1625 return mfi.clean;1626}16271628static int handle_rename_add(struct merge_options *opt,1629 struct rename_conflict_info *ci)1630{1631 /* a was renamed to c, and a separate c was added. */1632 struct diff_filespec *a = ci->ren1->pair->one;1633 struct diff_filespec *c = ci->ren1->pair->two;1634 char *path = c->path;1635 char *prev_path_desc;1636 struct merge_file_info mfi;16371638 const char *rename_branch = ci->ren1->branch;1639 const char *add_branch = (opt->branch1 == rename_branch ?1640 opt->branch2 : opt->branch1);1641 int other_stage = (ci->ren1->branch == opt->branch1 ? 3 : 2);16421643 output(opt, 1, _("CONFLICT (rename/add): "1644 "Rename %s->%s in %s. Added %s in %s"),1645 a->path, c->path, rename_branch,1646 c->path, add_branch);16471648 prev_path_desc = xstrfmt("version of %s from %s", path, a->path);1649 if (merge_mode_and_contents(opt, a, c,1650 &ci->ren1->src_entry->stages[other_stage],1651 prev_path_desc,1652 opt->branch1, opt->branch2,1653 1 + opt->call_depth * 2, &mfi))1654 return -1;1655 free(prev_path_desc);16561657 ci->ren1->dst_entry->stages[other_stage].path = mfi.blob.path = c->path;1658 return handle_file_collision(opt,1659 c->path, a->path, NULL,1660 rename_branch, add_branch,1661 &mfi.blob,1662 &ci->ren1->dst_entry->stages[other_stage]);1663}16641665static char *find_path_for_conflict(struct merge_options *opt,1666 const char *path,1667 const char *branch1,1668 const char *branch2)1669{1670 char *new_path = NULL;1671 if (dir_in_way(opt->repo->index, path, !opt->call_depth, 0)) {1672 new_path = unique_path(opt, path, branch1);1673 output(opt, 1, _("%s is a directory in %s adding "1674 "as %s instead"),1675 path, branch2, new_path);1676 } else if (would_lose_untracked(opt, path)) {1677 new_path = unique_path(opt, path, branch1);1678 output(opt, 1, _("Refusing to lose untracked file"1679 " at %s; adding as %s instead"),1680 path, new_path);1681 }16821683 return new_path;1684}16851686static int handle_rename_rename_1to2(struct merge_options *opt,1687 struct rename_conflict_info *ci)1688{1689 /* One file was renamed in both branches, but to different names. */1690 struct merge_file_info mfi;1691 struct diff_filespec *add;1692 struct diff_filespec *o = ci->ren1->pair->one;1693 struct diff_filespec *a = ci->ren1->pair->two;1694 struct diff_filespec *b = ci->ren2->pair->two;1695 char *path_desc;16961697 output(opt, 1, _("CONFLICT (rename/rename): "1698 "Rename \"%s\"->\"%s\" in branch \"%s\" "1699 "rename \"%s\"->\"%s\" in \"%s\"%s"),1700 o->path, a->path, ci->ren1->branch,1701 o->path, b->path, ci->ren2->branch,1702 opt->call_depth ? _(" (left unresolved)") : "");17031704 path_desc = xstrfmt("%s and %s, both renamed from %s",1705 a->path, b->path, o->path);1706 if (merge_mode_and_contents(opt, o, a, b, path_desc,1707 ci->ren1->branch, ci->ren2->branch,1708 opt->call_depth * 2, &mfi))1709 return -1;1710 free(path_desc);17111712 if (opt->call_depth) {1713 /*1714 * FIXME: For rename/add-source conflicts (if we could detect1715 * such), this is wrong. We should instead find a unique1716 * pathname and then either rename the add-source file to that1717 * unique path, or use that unique path instead of src here.1718 */1719 if (update_file(opt, 0, &mfi.blob, o->path))1720 return -1;17211722 /*1723 * Above, we put the merged content at the merge-base's1724 * path. Now we usually need to delete both a->path and1725 * b->path. However, the rename on each side of the merge1726 * could also be involved in a rename/add conflict. In1727 * such cases, we should keep the added file around,1728 * resolving the conflict at that path in its favor.1729 */1730 add = &ci->ren1->dst_entry->stages[2 ^ 1];1731 if (is_valid(add)) {1732 if (update_file(opt, 0, add, a->path))1733 return -1;1734 }1735 else1736 remove_file_from_index(opt->repo->index, a->path);1737 add = &ci->ren2->dst_entry->stages[3 ^ 1];1738 if (is_valid(add)) {1739 if (update_file(opt, 0, add, b->path))1740 return -1;1741 }1742 else1743 remove_file_from_index(opt->repo->index, b->path);1744 } else {1745 /*1746 * For each destination path, we need to see if there is a1747 * rename/add collision. If not, we can write the file out1748 * to the specified location.1749 */1750 add = &ci->ren1->dst_entry->stages[2 ^ 1];1751 if (is_valid(add)) {1752 add->path = mfi.blob.path = a->path;1753 if (handle_file_collision(opt, a->path,1754 NULL, NULL,1755 ci->ren1->branch,1756 ci->ren2->branch,1757 &mfi.blob, add) < 0)1758 return -1;1759 } else {1760 char *new_path = find_path_for_conflict(opt, a->path,1761 ci->ren1->branch,1762 ci->ren2->branch);1763 if (update_file(opt, 0, &mfi.blob,1764 new_path ? new_path : a->path))1765 return -1;1766 free(new_path);1767 if (update_stages(opt, a->path, NULL, a, NULL))1768 return -1;1769 }17701771 add = &ci->ren2->dst_entry->stages[3 ^ 1];1772 if (is_valid(add)) {1773 add->path = mfi.blob.path = b->path;1774 if (handle_file_collision(opt, b->path,1775 NULL, NULL,1776 ci->ren1->branch,1777 ci->ren2->branch,1778 add, &mfi.blob) < 0)1779 return -1;1780 } else {1781 char *new_path = find_path_for_conflict(opt, b->path,1782 ci->ren2->branch,1783 ci->ren1->branch);1784 if (update_file(opt, 0, &mfi.blob,1785 new_path ? new_path : b->path))1786 return -1;1787 free(new_path);1788 if (update_stages(opt, b->path, NULL, NULL, b))1789 return -1;1790 }1791 }17921793 return 0;1794}17951796static int handle_rename_rename_2to1(struct merge_options *opt,1797 struct rename_conflict_info *ci)1798{1799 /* Two files, a & b, were renamed to the same thing, c. */1800 struct diff_filespec *a = ci->ren1->pair->one;1801 struct diff_filespec *b = ci->ren2->pair->one;1802 struct diff_filespec *c1 = ci->ren1->pair->two;1803 struct diff_filespec *c2 = ci->ren2->pair->two;1804 char *path = c1->path; /* == c2->path */1805 char *path_side_1_desc;1806 char *path_side_2_desc;1807 struct merge_file_info mfi_c1;1808 struct merge_file_info mfi_c2;1809 int ostage1, ostage2;18101811 output(opt, 1, _("CONFLICT (rename/rename): "1812 "Rename %s->%s in %s. "1813 "Rename %s->%s in %s"),1814 a->path, c1->path, ci->ren1->branch,1815 b->path, c2->path, ci->ren2->branch);18161817 path_side_1_desc = xstrfmt("version of %s from %s", path, a->path);1818 path_side_2_desc = xstrfmt("version of %s from %s", path, b->path);1819 ostage1 = ci->ren1->branch == opt->branch1 ? 3 : 2;1820 ostage2 = ostage1 ^ 1;1821 ci->ren1->src_entry->stages[ostage1].path = a->path;1822 ci->ren2->src_entry->stages[ostage2].path = b->path;1823 if (merge_mode_and_contents(opt, a, c1,1824 &ci->ren1->src_entry->stages[ostage1],1825 path_side_1_desc,1826 opt->branch1, opt->branch2,1827 1 + opt->call_depth * 2, &mfi_c1) ||1828 merge_mode_and_contents(opt, b,1829 &ci->ren2->src_entry->stages[ostage2],1830 c2, path_side_2_desc,1831 opt->branch1, opt->branch2,1832 1 + opt->call_depth * 2, &mfi_c2))1833 return -1;1834 free(path_side_1_desc);1835 free(path_side_2_desc);1836 mfi_c1.blob.path = path;1837 mfi_c2.blob.path = path;18381839 return handle_file_collision(opt, path, a->path, b->path,1840 ci->ren1->branch, ci->ren2->branch,1841 &mfi_c1.blob, &mfi_c2.blob);1842}18431844/*1845 * Get the diff_filepairs changed between o_tree and tree.1846 */1847static struct diff_queue_struct *get_diffpairs(struct merge_options *opt,1848 struct tree *o_tree,1849 struct tree *tree)1850{1851 struct diff_queue_struct *ret;1852 struct diff_options opts;18531854 repo_diff_setup(opt->repo, &opts);1855 opts.flags.recursive = 1;1856 opts.flags.rename_empty = 0;1857 opts.detect_rename = merge_detect_rename(opt);1858 /*1859 * We do not have logic to handle the detection of copies. In1860 * fact, it may not even make sense to add such logic: would we1861 * really want a change to a base file to be propagated through1862 * multiple other files by a merge?1863 */1864 if (opts.detect_rename > DIFF_DETECT_RENAME)1865 opts.detect_rename = DIFF_DETECT_RENAME;1866 opts.rename_limit = opt->merge_rename_limit >= 0 ? opt->merge_rename_limit :1867 opt->diff_rename_limit >= 0 ? opt->diff_rename_limit :1868 1000;1869 opts.rename_score = opt->rename_score;1870 opts.show_rename_progress = opt->show_rename_progress;1871 opts.output_format = DIFF_FORMAT_NO_OUTPUT;1872 diff_setup_done(&opts);1873 diff_tree_oid(&o_tree->object.oid, &tree->object.oid, "", &opts);1874 diffcore_std(&opts);1875 if (opts.needed_rename_limit > opt->needed_rename_limit)1876 opt->needed_rename_limit = opts.needed_rename_limit;18771878 ret = xmalloc(sizeof(*ret));1879 *ret = diff_queued_diff;18801881 opts.output_format = DIFF_FORMAT_NO_OUTPUT;1882 diff_queued_diff.nr = 0;1883 diff_queued_diff.queue = NULL;1884 diff_flush(&opts);1885 return ret;1886}18871888static int tree_has_path(struct tree *tree, const char *path)1889{1890 struct object_id hashy;1891 unsigned short mode_o;18921893 return !get_tree_entry(&tree->object.oid, path,1894 &hashy, &mode_o);1895}18961897/*1898 * Return a new string that replaces the beginning portion (which matches1899 * entry->dir), with entry->new_dir. In perl-speak:1900 * new_path_name = (old_path =~ s/entry->dir/entry->new_dir/);1901 * NOTE:1902 * Caller must ensure that old_path starts with entry->dir + '/'.1903 */1904static char *apply_dir_rename(struct dir_rename_entry *entry,1905 const char *old_path)1906{1907 struct strbuf new_path = STRBUF_INIT;1908 int oldlen, newlen;19091910 if (entry->non_unique_new_dir)1911 return NULL;19121913 oldlen = strlen(entry->dir);1914 newlen = entry->new_dir.len + (strlen(old_path) - oldlen) + 1;1915 strbuf_grow(&new_path, newlen);1916 strbuf_addbuf(&new_path, &entry->new_dir);1917 strbuf_addstr(&new_path, &old_path[oldlen]);19181919 return strbuf_detach(&new_path, NULL);1920}19211922static void get_renamed_dir_portion(const char *old_path, const char *new_path,1923 char **old_dir, char **new_dir)1924{1925 char *end_of_old, *end_of_new;1926 int old_len, new_len;19271928 *old_dir = NULL;1929 *new_dir = NULL;19301931 /*1932 * For1933 * "a/b/c/d/e/foo.c" -> "a/b/some/thing/else/e/foo.c"1934 * the "e/foo.c" part is the same, we just want to know that1935 * "a/b/c/d" was renamed to "a/b/some/thing/else"1936 * so, for this example, this function returns "a/b/c/d" in1937 * *old_dir and "a/b/some/thing/else" in *new_dir.1938 *1939 * Also, if the basename of the file changed, we don't care. We1940 * want to know which portion of the directory, if any, changed.1941 */1942 end_of_old = strrchr(old_path, '/');1943 end_of_new = strrchr(new_path, '/');19441945 if (end_of_old == NULL || end_of_new == NULL)1946 return;1947 while (*--end_of_new == *--end_of_old &&1948 end_of_old != old_path &&1949 end_of_new != new_path)1950 ; /* Do nothing; all in the while loop */1951 /*1952 * We've found the first non-matching character in the directory1953 * paths. That means the current directory we were comparing1954 * represents the rename. Move end_of_old and end_of_new back1955 * to the full directory name.1956 */1957 if (*end_of_old == '/')1958 end_of_old++;1959 if (*end_of_old != '/')1960 end_of_new++;1961 end_of_old = strchr(end_of_old, '/');1962 end_of_new = strchr(end_of_new, '/');19631964 /*1965 * It may have been the case that old_path and new_path were the same1966 * directory all along. Don't claim a rename if they're the same.1967 */1968 old_len = end_of_old - old_path;1969 new_len = end_of_new - new_path;19701971 if (old_len != new_len || strncmp(old_path, new_path, old_len)) {1972 *old_dir = xstrndup(old_path, old_len);1973 *new_dir = xstrndup(new_path, new_len);1974 }1975}19761977static void remove_hashmap_entries(struct hashmap *dir_renames,1978 struct string_list *items_to_remove)1979{1980 int i;1981 struct dir_rename_entry *entry;19821983 for (i = 0; i < items_to_remove->nr; i++) {1984 entry = items_to_remove->items[i].util;1985 hashmap_remove(dir_renames, entry, NULL);1986 }1987 string_list_clear(items_to_remove, 0);1988}19891990/*1991 * See if there is a directory rename for path, and if there are any file1992 * level conflicts for the renamed location. If there is a rename and1993 * there are no conflicts, return the new name. Otherwise, return NULL.1994 */1995static char *handle_path_level_conflicts(struct merge_options *opt,1996 const char *path,1997 struct dir_rename_entry *entry,1998 struct hashmap *collisions,1999 struct tree *tree)2000{2001 char *new_path = NULL;2002 struct collision_entry *collision_ent;2003 int clean = 1;2004 struct strbuf collision_paths = STRBUF_INIT;20052006 /*2007 * entry has the mapping of old directory name to new directory name2008 * that we want to apply to path.2009 */2010 new_path = apply_dir_rename(entry, path);20112012 if (!new_path) {2013 /* This should only happen when entry->non_unique_new_dir set */2014 if (!entry->non_unique_new_dir)2015 BUG("entry->non_unqiue_dir not set and !new_path");2016 output(opt, 1, _("CONFLICT (directory rename split): "2017 "Unclear where to place %s because directory "2018 "%s was renamed to multiple other directories, "2019 "with no destination getting a majority of the "2020 "files."),2021 path, entry->dir);2022 clean = 0;2023 return NULL;2024 }20252026 /*2027 * The caller needs to have ensured that it has pre-populated2028 * collisions with all paths that map to new_path. Do a quick check2029 * to ensure that's the case.2030 */2031 collision_ent = collision_find_entry(collisions, new_path);2032 if (collision_ent == NULL)2033 BUG("collision_ent is NULL");20342035 /*2036 * Check for one-sided add/add/.../add conflicts, i.e.2037 * where implicit renames from the other side doing2038 * directory rename(s) can affect this side of history2039 * to put multiple paths into the same location. Warn2040 * and bail on directory renames for such paths.2041 */2042 if (collision_ent->reported_already) {2043 clean = 0;2044 } else if (tree_has_path(tree, new_path)) {2045 collision_ent->reported_already = 1;2046 strbuf_add_separated_string_list(&collision_paths, ", ",2047 &collision_ent->source_files);2048 output(opt, 1, _("CONFLICT (implicit dir rename): Existing "2049 "file/dir at %s in the way of implicit "2050 "directory rename(s) putting the following "2051 "path(s) there: %s."),2052 new_path, collision_paths.buf);2053 clean = 0;2054 } else if (collision_ent->source_files.nr > 1) {2055 collision_ent->reported_already = 1;2056 strbuf_add_separated_string_list(&collision_paths, ", ",2057 &collision_ent->source_files);2058 output(opt, 1, _("CONFLICT (implicit dir rename): Cannot map "2059 "more than one path to %s; implicit directory "2060 "renames tried to put these paths there: %s"),2061 new_path, collision_paths.buf);2062 clean = 0;2063 }20642065 /* Free memory we no longer need */2066 strbuf_release(&collision_paths);2067 if (!clean && new_path) {2068 free(new_path);2069 return NULL;2070 }20712072 return new_path;2073}20742075/*2076 * There are a couple things we want to do at the directory level:2077 * 1. Check for both sides renaming to the same thing, in order to avoid2078 * implicit renaming of files that should be left in place. (See2079 * testcase 6b in t6043 for details.)2080 * 2. Prune directory renames if there are still files left in the2081 * the original directory. These represent a partial directory rename,2082 * i.e. a rename where only some of the files within the directory2083 * were renamed elsewhere. (Technically, this could be done earlier2084 * in get_directory_renames(), except that would prevent us from2085 * doing the previous check and thus failing testcase 6b.)2086 * 3. Check for rename/rename(1to2) conflicts (at the directory level).2087 * In the future, we could potentially record this info as well and2088 * omit reporting rename/rename(1to2) conflicts for each path within2089 * the affected directories, thus cleaning up the merge output.2090 * NOTE: We do NOT check for rename/rename(2to1) conflicts at the2091 * directory level, because merging directories is fine. If it2092 * causes conflicts for files within those merged directories, then2093 * that should be detected at the individual path level.2094 */2095static void handle_directory_level_conflicts(struct merge_options *opt,2096 struct hashmap *dir_re_head,2097 struct tree *head,2098 struct hashmap *dir_re_merge,2099 struct tree *merge)2100{2101 struct hashmap_iter iter;2102 struct dir_rename_entry *head_ent;2103 struct dir_rename_entry *merge_ent;21042105 struct string_list remove_from_head = STRING_LIST_INIT_NODUP;2106 struct string_list remove_from_merge = STRING_LIST_INIT_NODUP;21072108 hashmap_iter_init(dir_re_head, &iter);2109 while ((head_ent = hashmap_iter_next(&iter))) {2110 merge_ent = dir_rename_find_entry(dir_re_merge, head_ent->dir);2111 if (merge_ent &&2112 !head_ent->non_unique_new_dir &&2113 !merge_ent->non_unique_new_dir &&2114 !strbuf_cmp(&head_ent->new_dir, &merge_ent->new_dir)) {2115 /* 1. Renamed identically; remove it from both sides */2116 string_list_append(&remove_from_head,2117 head_ent->dir)->util = head_ent;2118 strbuf_release(&head_ent->new_dir);2119 string_list_append(&remove_from_merge,2120 merge_ent->dir)->util = merge_ent;2121 strbuf_release(&merge_ent->new_dir);2122 } else if (tree_has_path(head, head_ent->dir)) {2123 /* 2. This wasn't a directory rename after all */2124 string_list_append(&remove_from_head,2125 head_ent->dir)->util = head_ent;2126 strbuf_release(&head_ent->new_dir);2127 }2128 }21292130 remove_hashmap_entries(dir_re_head, &remove_from_head);2131 remove_hashmap_entries(dir_re_merge, &remove_from_merge);21322133 hashmap_iter_init(dir_re_merge, &iter);2134 while ((merge_ent = hashmap_iter_next(&iter))) {2135 head_ent = dir_rename_find_entry(dir_re_head, merge_ent->dir);2136 if (tree_has_path(merge, merge_ent->dir)) {2137 /* 2. This wasn't a directory rename after all */2138 string_list_append(&remove_from_merge,2139 merge_ent->dir)->util = merge_ent;2140 } else if (head_ent &&2141 !head_ent->non_unique_new_dir &&2142 !merge_ent->non_unique_new_dir) {2143 /* 3. rename/rename(1to2) */2144 /*2145 * We can assume it's not rename/rename(1to1) because2146 * that was case (1), already checked above. So we2147 * know that head_ent->new_dir and merge_ent->new_dir2148 * are different strings.2149 */2150 output(opt, 1, _("CONFLICT (rename/rename): "2151 "Rename directory %s->%s in %s. "2152 "Rename directory %s->%s in %s"),2153 head_ent->dir, head_ent->new_dir.buf, opt->branch1,2154 head_ent->dir, merge_ent->new_dir.buf, opt->branch2);2155 string_list_append(&remove_from_head,2156 head_ent->dir)->util = head_ent;2157 strbuf_release(&head_ent->new_dir);2158 string_list_append(&remove_from_merge,2159 merge_ent->dir)->util = merge_ent;2160 strbuf_release(&merge_ent->new_dir);2161 }2162 }21632164 remove_hashmap_entries(dir_re_head, &remove_from_head);2165 remove_hashmap_entries(dir_re_merge, &remove_from_merge);2166}21672168static struct hashmap *get_directory_renames(struct diff_queue_struct *pairs)2169{2170 struct hashmap *dir_renames;2171 struct hashmap_iter iter;2172 struct dir_rename_entry *entry;2173 int i;21742175 /*2176 * Typically, we think of a directory rename as all files from a2177 * certain directory being moved to a target directory. However,2178 * what if someone first moved two files from the original2179 * directory in one commit, and then renamed the directory2180 * somewhere else in a later commit? At merge time, we just know2181 * that files from the original directory went to two different2182 * places, and that the bulk of them ended up in the same place.2183 * We want each directory rename to represent where the bulk of the2184 * files from that directory end up; this function exists to find2185 * where the bulk of the files went.2186 *2187 * The first loop below simply iterates through the list of file2188 * renames, finding out how often each directory rename pair2189 * possibility occurs.2190 */2191 dir_renames = xmalloc(sizeof(*dir_renames));2192 dir_rename_init(dir_renames);2193 for (i = 0; i < pairs->nr; ++i) {2194 struct string_list_item *item;2195 int *count;2196 struct diff_filepair *pair = pairs->queue[i];2197 char *old_dir, *new_dir;21982199 /* File not part of directory rename if it wasn't renamed */2200 if (pair->status != 'R')2201 continue;22022203 get_renamed_dir_portion(pair->one->path, pair->two->path,2204 &old_dir, &new_dir);2205 if (!old_dir)2206 /* Directory didn't change at all; ignore this one. */2207 continue;22082209 entry = dir_rename_find_entry(dir_renames, old_dir);2210 if (!entry) {2211 entry = xmalloc(sizeof(*entry));2212 dir_rename_entry_init(entry, old_dir);2213 hashmap_put(dir_renames, entry);2214 } else {2215 free(old_dir);2216 }2217 item = string_list_lookup(&entry->possible_new_dirs, new_dir);2218 if (!item) {2219 item = string_list_insert(&entry->possible_new_dirs,2220 new_dir);2221 item->util = xcalloc(1, sizeof(int));2222 } else {2223 free(new_dir);2224 }2225 count = item->util;2226 *count += 1;2227 }22282229 /*2230 * For each directory with files moved out of it, we find out which2231 * target directory received the most files so we can declare it to2232 * be the "winning" target location for the directory rename. This2233 * winner gets recorded in new_dir. If there is no winner2234 * (multiple target directories received the same number of files),2235 * we set non_unique_new_dir. Once we've determined the winner (or2236 * that there is no winner), we no longer need possible_new_dirs.2237 */2238 hashmap_iter_init(dir_renames, &iter);2239 while ((entry = hashmap_iter_next(&iter))) {2240 int max = 0;2241 int bad_max = 0;2242 char *best = NULL;22432244 for (i = 0; i < entry->possible_new_dirs.nr; i++) {2245 int *count = entry->possible_new_dirs.items[i].util;22462247 if (*count == max)2248 bad_max = max;2249 else if (*count > max) {2250 max = *count;2251 best = entry->possible_new_dirs.items[i].string;2252 }2253 }2254 if (bad_max == max)2255 entry->non_unique_new_dir = 1;2256 else {2257 assert(entry->new_dir.len == 0);2258 strbuf_addstr(&entry->new_dir, best);2259 }2260 /*2261 * The relevant directory sub-portion of the original full2262 * filepaths were xstrndup'ed before inserting into2263 * possible_new_dirs, and instead of manually iterating the2264 * list and free'ing each, just lie and tell2265 * possible_new_dirs that it did the strdup'ing so that it2266 * will free them for us.2267 */2268 entry->possible_new_dirs.strdup_strings = 1;2269 string_list_clear(&entry->possible_new_dirs, 1);2270 }22712272 return dir_renames;2273}22742275static struct dir_rename_entry *check_dir_renamed(const char *path,2276 struct hashmap *dir_renames)2277{2278 char *temp = xstrdup(path);2279 char *end;2280 struct dir_rename_entry *entry = NULL;22812282 while ((end = strrchr(temp, '/'))) {2283 *end = '\0';2284 entry = dir_rename_find_entry(dir_renames, temp);2285 if (entry)2286 break;2287 }2288 free(temp);2289 return entry;2290}22912292static void compute_collisions(struct hashmap *collisions,2293 struct hashmap *dir_renames,2294 struct diff_queue_struct *pairs)2295{2296 int i;22972298 /*2299 * Multiple files can be mapped to the same path due to directory2300 * renames done by the other side of history. Since that other2301 * side of history could have merged multiple directories into one,2302 * if our side of history added the same file basename to each of2303 * those directories, then all N of them would get implicitly2304 * renamed by the directory rename detection into the same path,2305 * and we'd get an add/add/.../add conflict, and all those adds2306 * from *this* side of history. This is not representable in the2307 * index, and users aren't going to easily be able to make sense of2308 * it. So we need to provide a good warning about what's2309 * happening, and fall back to no-directory-rename detection2310 * behavior for those paths.2311 *2312 * See testcases 9e and all of section 5 from t6043 for examples.2313 */2314 collision_init(collisions);23152316 for (i = 0; i < pairs->nr; ++i) {2317 struct dir_rename_entry *dir_rename_ent;2318 struct collision_entry *collision_ent;2319 char *new_path;2320 struct diff_filepair *pair = pairs->queue[i];23212322 if (pair->status != 'A' && pair->status != 'R')2323 continue;2324 dir_rename_ent = check_dir_renamed(pair->two->path,2325 dir_renames);2326 if (!dir_rename_ent)2327 continue;23282329 new_path = apply_dir_rename(dir_rename_ent, pair->two->path);2330 if (!new_path)2331 /*2332 * dir_rename_ent->non_unique_new_path is true, which2333 * means there is no directory rename for us to use,2334 * which means it won't cause us any additional2335 * collisions.2336 */2337 continue;2338 collision_ent = collision_find_entry(collisions, new_path);2339 if (!collision_ent) {2340 collision_ent = xcalloc(1,2341 sizeof(struct collision_entry));2342 hashmap_entry_init(collision_ent, strhash(new_path));2343 hashmap_put(collisions, collision_ent);2344 collision_ent->target_file = new_path;2345 } else {2346 free(new_path);2347 }2348 string_list_insert(&collision_ent->source_files,2349 pair->two->path);2350 }2351}23522353static char *check_for_directory_rename(struct merge_options *opt,2354 const char *path,2355 struct tree *tree,2356 struct hashmap *dir_renames,2357 struct hashmap *dir_rename_exclusions,2358 struct hashmap *collisions,2359 int *clean_merge)2360{2361 char *new_path = NULL;2362 struct dir_rename_entry *entry = check_dir_renamed(path, dir_renames);2363 struct dir_rename_entry *oentry = NULL;23642365 if (!entry)2366 return new_path;23672368 /*2369 * This next part is a little weird. We do not want to do an2370 * implicit rename into a directory we renamed on our side, because2371 * that will result in a spurious rename/rename(1to2) conflict. An2372 * example:2373 * Base commit: dumbdir/afile, otherdir/bfile2374 * Side 1: smrtdir/afile, otherdir/bfile2375 * Side 2: dumbdir/afile, dumbdir/bfile2376 * Here, while working on Side 1, we could notice that otherdir was2377 * renamed/merged to dumbdir, and change the diff_filepair for2378 * otherdir/bfile into a rename into dumbdir/bfile. However, Side2379 * 2 will notice the rename from dumbdir to smrtdir, and do the2380 * transitive rename to move it from dumbdir/bfile to2381 * smrtdir/bfile. That gives us bfile in dumbdir vs being in2382 * smrtdir, a rename/rename(1to2) conflict. We really just want2383 * the file to end up in smrtdir. And the way to achieve that is2384 * to not let Side1 do the rename to dumbdir, since we know that is2385 * the source of one of our directory renames.2386 *2387 * That's why oentry and dir_rename_exclusions is here.2388 *2389 * As it turns out, this also prevents N-way transient rename2390 * confusion; See testcases 9c and 9d of t6043.2391 */2392 oentry = dir_rename_find_entry(dir_rename_exclusions, entry->new_dir.buf);2393 if (oentry) {2394 output(opt, 1, _("WARNING: Avoiding applying %s -> %s rename "2395 "to %s, because %s itself was renamed."),2396 entry->dir, entry->new_dir.buf, path, entry->new_dir.buf);2397 } else {2398 new_path = handle_path_level_conflicts(opt, path, entry,2399 collisions, tree);2400 *clean_merge &= (new_path != NULL);2401 }24022403 return new_path;2404}24052406static void apply_directory_rename_modifications(struct merge_options *opt,2407 struct diff_filepair *pair,2408 char *new_path,2409 struct rename *re,2410 struct tree *tree,2411 struct tree *o_tree,2412 struct tree *a_tree,2413 struct tree *b_tree,2414 struct string_list *entries)2415{2416 struct string_list_item *item;2417 int stage = (tree == a_tree ? 2 : 3);2418 int update_wd;24192420 /*2421 * In all cases where we can do directory rename detection,2422 * unpack_trees() will have read pair->two->path into the2423 * index and the working copy. We need to remove it so that2424 * we can instead place it at new_path. It is guaranteed to2425 * not be untracked (unpack_trees() would have errored out2426 * saying the file would have been overwritten), but it might2427 * be dirty, though.2428 */2429 update_wd = !was_dirty(opt, pair->two->path);2430 if (!update_wd)2431 output(opt, 1, _("Refusing to lose dirty file at %s"),2432 pair->two->path);2433 remove_file(opt, 1, pair->two->path, !update_wd);24342435 /* Find or create a new re->dst_entry */2436 item = string_list_lookup(entries, new_path);2437 if (item) {2438 /*2439 * Since we're renaming on this side of history, and it's2440 * due to a directory rename on the other side of history2441 * (which we only allow when the directory in question no2442 * longer exists on the other side of history), the2443 * original entry for re->dst_entry is no longer2444 * necessary...2445 */2446 re->dst_entry->processed = 1;24472448 /*2449 * ...because we'll be using this new one.2450 */2451 re->dst_entry = item->util;2452 } else {2453 /*2454 * re->dst_entry is for the before-dir-rename path, and we2455 * need it to hold information for the after-dir-rename2456 * path. Before creating a new entry, we need to mark the2457 * old one as unnecessary (...unless it is shared by2458 * src_entry, i.e. this didn't use to be a rename, in which2459 * case we can just allow the normal processing to happen2460 * for it).2461 */2462 if (pair->status == 'R')2463 re->dst_entry->processed = 1;24642465 re->dst_entry = insert_stage_data(new_path,2466 o_tree, a_tree, b_tree,2467 entries);2468 item = string_list_insert(entries, new_path);2469 item->util = re->dst_entry;2470 }24712472 /*2473 * Update the stage_data with the information about the path we are2474 * moving into place. That slot will be empty and available for us2475 * to write to because of the collision checks in2476 * handle_path_level_conflicts(). In other words,2477 * re->dst_entry->stages[stage].oid will be the null_oid, so it's2478 * open for us to write to.2479 *2480 * It may be tempting to actually update the index at this point as2481 * well, using update_stages_for_stage_data(), but as per the big2482 * "NOTE" in update_stages(), doing so will modify the current2483 * in-memory index which will break calls to would_lose_untracked()2484 * that we need to make. Instead, we need to just make sure that2485 * the various handle_rename_*() functions update the index2486 * explicitly rather than relying on unpack_trees() to have done it.2487 */2488 get_tree_entry(&tree->object.oid,2489 pair->two->path,2490 &re->dst_entry->stages[stage].oid,2491 &re->dst_entry->stages[stage].mode);24922493 /*2494 * Record the original change status (or 'type' of change). If it2495 * was originally an add ('A'), this lets us differentiate later2496 * between a RENAME_DELETE conflict and RENAME_VIA_DIR (they2497 * otherwise look the same). If it was originally a rename ('R'),2498 * this lets us remember and report accurately about the transitive2499 * renaming that occurred via the directory rename detection. Also,2500 * record the original destination name.2501 */2502 re->dir_rename_original_type = pair->status;2503 re->dir_rename_original_dest = pair->two->path;25042505 /*2506 * We don't actually look at pair->status again, but it seems2507 * pedagogically correct to adjust it.2508 */2509 pair->status = 'R';25102511 /*2512 * Finally, record the new location.2513 */2514 pair->two->path = new_path;2515}25162517/*2518 * Get information of all renames which occurred in 'pairs', making use of2519 * any implicit directory renames inferred from the other side of history.2520 * We need the three trees in the merge ('o_tree', 'a_tree' and 'b_tree')2521 * to be able to associate the correct cache entries with the rename2522 * information; tree is always equal to either a_tree or b_tree.2523 */2524static struct string_list *get_renames(struct merge_options *opt,2525 const char *branch,2526 struct diff_queue_struct *pairs,2527 struct hashmap *dir_renames,2528 struct hashmap *dir_rename_exclusions,2529 struct tree *tree,2530 struct tree *o_tree,2531 struct tree *a_tree,2532 struct tree *b_tree,2533 struct string_list *entries,2534 int *clean_merge)2535{2536 int i;2537 struct hashmap collisions;2538 struct hashmap_iter iter;2539 struct collision_entry *e;2540 struct string_list *renames;25412542 compute_collisions(&collisions, dir_renames, pairs);2543 renames = xcalloc(1, sizeof(struct string_list));25442545 for (i = 0; i < pairs->nr; ++i) {2546 struct string_list_item *item;2547 struct rename *re;2548 struct diff_filepair *pair = pairs->queue[i];2549 char *new_path; /* non-NULL only with directory renames */25502551 if (pair->status != 'A' && pair->status != 'R') {2552 diff_free_filepair(pair);2553 continue;2554 }2555 new_path = check_for_directory_rename(opt, pair->two->path, tree,2556 dir_renames,2557 dir_rename_exclusions,2558 &collisions,2559 clean_merge);2560 if (pair->status != 'R' && !new_path) {2561 diff_free_filepair(pair);2562 continue;2563 }25642565 re = xmalloc(sizeof(*re));2566 re->processed = 0;2567 re->pair = pair;2568 re->branch = branch;2569 re->dir_rename_original_type = '\0';2570 re->dir_rename_original_dest = NULL;2571 item = string_list_lookup(entries, re->pair->one->path);2572 if (!item)2573 re->src_entry = insert_stage_data(re->pair->one->path,2574 o_tree, a_tree, b_tree, entries);2575 else2576 re->src_entry = item->util;25772578 item = string_list_lookup(entries, re->pair->two->path);2579 if (!item)2580 re->dst_entry = insert_stage_data(re->pair->two->path,2581 o_tree, a_tree, b_tree, entries);2582 else2583 re->dst_entry = item->util;2584 item = string_list_insert(renames, pair->one->path);2585 item->util = re;2586 if (new_path)2587 apply_directory_rename_modifications(opt, pair, new_path,2588 re, tree, o_tree,2589 a_tree, b_tree,2590 entries);2591 }25922593 hashmap_iter_init(&collisions, &iter);2594 while ((e = hashmap_iter_next(&iter))) {2595 free(e->target_file);2596 string_list_clear(&e->source_files, 0);2597 }2598 hashmap_free(&collisions, 1);2599 return renames;2600}26012602static int process_renames(struct merge_options *opt,2603 struct string_list *a_renames,2604 struct string_list *b_renames)2605{2606 int clean_merge = 1, i, j;2607 struct string_list a_by_dst = STRING_LIST_INIT_NODUP;2608 struct string_list b_by_dst = STRING_LIST_INIT_NODUP;2609 const struct rename *sre;26102611 for (i = 0; i < a_renames->nr; i++) {2612 sre = a_renames->items[i].util;2613 string_list_insert(&a_by_dst, sre->pair->two->path)->util2614 = (void *)sre;2615 }2616 for (i = 0; i < b_renames->nr; i++) {2617 sre = b_renames->items[i].util;2618 string_list_insert(&b_by_dst, sre->pair->two->path)->util2619 = (void *)sre;2620 }26212622 for (i = 0, j = 0; i < a_renames->nr || j < b_renames->nr;) {2623 struct string_list *renames1, *renames2Dst;2624 struct rename *ren1 = NULL, *ren2 = NULL;2625 const char *ren1_src, *ren1_dst;2626 struct string_list_item *lookup;26272628 if (i >= a_renames->nr) {2629 ren2 = b_renames->items[j++].util;2630 } else if (j >= b_renames->nr) {2631 ren1 = a_renames->items[i++].util;2632 } else {2633 int compare = strcmp(a_renames->items[i].string,2634 b_renames->items[j].string);2635 if (compare <= 0)2636 ren1 = a_renames->items[i++].util;2637 if (compare >= 0)2638 ren2 = b_renames->items[j++].util;2639 }26402641 /* TODO: refactor, so that 1/2 are not needed */2642 if (ren1) {2643 renames1 = a_renames;2644 renames2Dst = &b_by_dst;2645 } else {2646 renames1 = b_renames;2647 renames2Dst = &a_by_dst;2648 SWAP(ren2, ren1);2649 }26502651 if (ren1->processed)2652 continue;2653 ren1->processed = 1;2654 ren1->dst_entry->processed = 1;2655 /* BUG: We should only mark src_entry as processed if we2656 * are not dealing with a rename + add-source case.2657 */2658 ren1->src_entry->processed = 1;26592660 ren1_src = ren1->pair->one->path;2661 ren1_dst = ren1->pair->two->path;26622663 if (ren2) {2664 /* One file renamed on both sides */2665 const char *ren2_src = ren2->pair->one->path;2666 const char *ren2_dst = ren2->pair->two->path;2667 enum rename_type rename_type;2668 if (strcmp(ren1_src, ren2_src) != 0)2669 BUG("ren1_src != ren2_src");2670 ren2->dst_entry->processed = 1;2671 ren2->processed = 1;2672 if (strcmp(ren1_dst, ren2_dst) != 0) {2673 rename_type = RENAME_ONE_FILE_TO_TWO;2674 clean_merge = 0;2675 } else {2676 rename_type = RENAME_ONE_FILE_TO_ONE;2677 /* BUG: We should only remove ren1_src in2678 * the base stage (think of rename +2679 * add-source cases).2680 */2681 remove_file(opt, 1, ren1_src, 1);2682 update_entry(ren1->dst_entry,2683 ren1->pair->one,2684 ren1->pair->two,2685 ren2->pair->two);2686 }2687 setup_rename_conflict_info(rename_type, opt, ren1, ren2);2688 } else if ((lookup = string_list_lookup(renames2Dst, ren1_dst))) {2689 /* Two different files renamed to the same thing */2690 char *ren2_dst;2691 ren2 = lookup->util;2692 ren2_dst = ren2->pair->two->path;2693 if (strcmp(ren1_dst, ren2_dst) != 0)2694 BUG("ren1_dst != ren2_dst");26952696 clean_merge = 0;2697 ren2->processed = 1;2698 /*2699 * BUG: We should only mark src_entry as processed2700 * if we are not dealing with a rename + add-source2701 * case.2702 */2703 ren2->src_entry->processed = 1;27042705 setup_rename_conflict_info(RENAME_TWO_FILES_TO_ONE,2706 opt, ren1, ren2);2707 } else {2708 /* Renamed in 1, maybe changed in 2 */2709 /* we only use sha1 and mode of these */2710 struct diff_filespec src_other, dst_other;2711 int try_merge;27122713 /*2714 * unpack_trees loads entries from common-commit2715 * into stage 1, from head-commit into stage 2, and2716 * from merge-commit into stage 3. We keep track2717 * of which side corresponds to the rename.2718 */2719 int renamed_stage = a_renames == renames1 ? 2 : 3;2720 int other_stage = a_renames == renames1 ? 3 : 2;27212722 /* BUG: We should only remove ren1_src in the base2723 * stage and in other_stage (think of rename +2724 * add-source case).2725 */2726 remove_file(opt, 1, ren1_src,2727 renamed_stage == 2 || !was_tracked(opt, ren1_src));27282729 oidcpy(&src_other.oid,2730 &ren1->src_entry->stages[other_stage].oid);2731 src_other.mode = ren1->src_entry->stages[other_stage].mode;2732 oidcpy(&dst_other.oid,2733 &ren1->dst_entry->stages[other_stage].oid);2734 dst_other.mode = ren1->dst_entry->stages[other_stage].mode;2735 try_merge = 0;27362737 if (oid_eq(&src_other.oid, &null_oid) &&2738 ren1->dir_rename_original_type == 'A') {2739 setup_rename_conflict_info(RENAME_VIA_DIR,2740 opt, ren1, NULL);2741 } else if (oid_eq(&src_other.oid, &null_oid)) {2742 setup_rename_conflict_info(RENAME_DELETE,2743 opt, ren1, NULL);2744 } else if ((dst_other.mode == ren1->pair->two->mode) &&2745 oid_eq(&dst_other.oid, &ren1->pair->two->oid)) {2746 /*2747 * Added file on the other side identical to2748 * the file being renamed: clean merge.2749 * Also, there is no need to overwrite the2750 * file already in the working copy, so call2751 * update_file_flags() instead of2752 * update_file().2753 */2754 if (update_file_flags(opt,2755 ren1->pair->two,2756 ren1_dst,2757 1, /* update_cache */2758 0 /* update_wd */))2759 clean_merge = -1;2760 } else if (!oid_eq(&dst_other.oid, &null_oid)) {2761 /*2762 * Probably not a clean merge, but it's2763 * premature to set clean_merge to 0 here,2764 * because if the rename merges cleanly and2765 * the merge exactly matches the newly added2766 * file, then the merge will be clean.2767 */2768 setup_rename_conflict_info(RENAME_ADD,2769 opt, ren1, NULL);2770 } else2771 try_merge = 1;27722773 if (clean_merge < 0)2774 goto cleanup_and_return;2775 if (try_merge) {2776 struct diff_filespec *o, *a, *b;2777 src_other.path = (char *)ren1_src;27782779 o = ren1->pair->one;2780 if (a_renames == renames1) {2781 a = ren1->pair->two;2782 b = &src_other;2783 } else {2784 b = ren1->pair->two;2785 a = &src_other;2786 }2787 update_entry(ren1->dst_entry, o, a, b);2788 setup_rename_conflict_info(RENAME_NORMAL,2789 opt, ren1, NULL);2790 }2791 }2792 }2793cleanup_and_return:2794 string_list_clear(&a_by_dst, 0);2795 string_list_clear(&b_by_dst, 0);27962797 return clean_merge;2798}27992800struct rename_info {2801 struct string_list *head_renames;2802 struct string_list *merge_renames;2803};28042805static void initial_cleanup_rename(struct diff_queue_struct *pairs,2806 struct hashmap *dir_renames)2807{2808 struct hashmap_iter iter;2809 struct dir_rename_entry *e;28102811 hashmap_iter_init(dir_renames, &iter);2812 while ((e = hashmap_iter_next(&iter))) {2813 free(e->dir);2814 strbuf_release(&e->new_dir);2815 /* possible_new_dirs already cleared in get_directory_renames */2816 }2817 hashmap_free(dir_renames, 1);2818 free(dir_renames);28192820 free(pairs->queue);2821 free(pairs);2822}28232824static int detect_and_process_renames(struct merge_options *opt,2825 struct tree *common,2826 struct tree *head,2827 struct tree *merge,2828 struct string_list *entries,2829 struct rename_info *ri)2830{2831 struct diff_queue_struct *head_pairs, *merge_pairs;2832 struct hashmap *dir_re_head, *dir_re_merge;2833 int clean = 1;28342835 ri->head_renames = NULL;2836 ri->merge_renames = NULL;28372838 if (!merge_detect_rename(opt))2839 return 1;28402841 head_pairs = get_diffpairs(opt, common, head);2842 merge_pairs = get_diffpairs(opt, common, merge);28432844 if (opt->detect_directory_renames) {2845 dir_re_head = get_directory_renames(head_pairs);2846 dir_re_merge = get_directory_renames(merge_pairs);28472848 handle_directory_level_conflicts(opt,2849 dir_re_head, head,2850 dir_re_merge, merge);2851 } else {2852 dir_re_head = xmalloc(sizeof(*dir_re_head));2853 dir_re_merge = xmalloc(sizeof(*dir_re_merge));2854 dir_rename_init(dir_re_head);2855 dir_rename_init(dir_re_merge);2856 }28572858 ri->head_renames = get_renames(opt, opt->branch1, head_pairs,2859 dir_re_merge, dir_re_head, head,2860 common, head, merge, entries,2861 &clean);2862 if (clean < 0)2863 goto cleanup;2864 ri->merge_renames = get_renames(opt, opt->branch2, merge_pairs,2865 dir_re_head, dir_re_merge, merge,2866 common, head, merge, entries,2867 &clean);2868 if (clean < 0)2869 goto cleanup;2870 clean &= process_renames(opt, ri->head_renames, ri->merge_renames);28712872cleanup:2873 /*2874 * Some cleanup is deferred until cleanup_renames() because the2875 * data structures are still needed and referenced in2876 * process_entry(). But there are a few things we can free now.2877 */2878 initial_cleanup_rename(head_pairs, dir_re_head);2879 initial_cleanup_rename(merge_pairs, dir_re_merge);28802881 return clean;2882}28832884static void final_cleanup_rename(struct string_list *rename)2885{2886 const struct rename *re;2887 int i;28882889 if (rename == NULL)2890 return;28912892 for (i = 0; i < rename->nr; i++) {2893 re = rename->items[i].util;2894 diff_free_filepair(re->pair);2895 }2896 string_list_clear(rename, 1);2897 free(rename);2898}28992900static void final_cleanup_renames(struct rename_info *re_info)2901{2902 final_cleanup_rename(re_info->head_renames);2903 final_cleanup_rename(re_info->merge_renames);2904}29052906static int read_oid_strbuf(struct merge_options *opt,2907 const struct object_id *oid,2908 struct strbuf *dst)2909{2910 void *buf;2911 enum object_type type;2912 unsigned long size;2913 buf = read_object_file(oid, &type, &size);2914 if (!buf)2915 return err(opt, _("cannot read object %s"), oid_to_hex(oid));2916 if (type != OBJ_BLOB) {2917 free(buf);2918 return err(opt, _("object %s is not a blob"), oid_to_hex(oid));2919 }2920 strbuf_attach(dst, buf, size, size + 1);2921 return 0;2922}29232924static int blob_unchanged(struct merge_options *opt,2925 const struct diff_filespec *o,2926 const struct diff_filespec *a,2927 int renormalize, const char *path)2928{2929 struct strbuf obuf = STRBUF_INIT;2930 struct strbuf abuf = STRBUF_INIT;2931 int ret = 0; /* assume changed for safety */2932 const struct index_state *idx = opt->repo->index;29332934 if (a->mode != o->mode)2935 return 0;2936 if (oid_eq(&o->oid, &a->oid))2937 return 1;2938 if (!renormalize)2939 return 0;29402941 if (read_oid_strbuf(opt, &o->oid, &obuf) ||2942 read_oid_strbuf(opt, &a->oid, &abuf))2943 goto error_return;2944 /*2945 * Note: binary | is used so that both renormalizations are2946 * performed. Comparison can be skipped if both files are2947 * unchanged since their sha1s have already been compared.2948 */2949 if (renormalize_buffer(idx, path, obuf.buf, obuf.len, &obuf) |2950 renormalize_buffer(idx, path, abuf.buf, abuf.len, &abuf))2951 ret = (obuf.len == abuf.len && !memcmp(obuf.buf, abuf.buf, obuf.len));29522953error_return:2954 strbuf_release(&obuf);2955 strbuf_release(&abuf);2956 return ret;2957}29582959static int handle_modify_delete(struct merge_options *opt,2960 const char *path,2961 const struct diff_filespec *o,2962 const struct diff_filespec *a,2963 const struct diff_filespec *b)2964{2965 const char *modify_branch, *delete_branch;2966 const struct diff_filespec *changed;29672968 if (is_valid(a)) {2969 modify_branch = opt->branch1;2970 delete_branch = opt->branch2;2971 changed = a;2972 } else {2973 modify_branch = opt->branch2;2974 delete_branch = opt->branch1;2975 changed = b;2976 }29772978 return handle_change_delete(opt,2979 path, NULL,2980 o, changed,2981 modify_branch, delete_branch,2982 _("modify"), _("modified"));2983}29842985static int handle_content_merge(struct merge_options *opt,2986 const char *path,2987 int is_dirty,2988 const struct diff_filespec *o,2989 const struct diff_filespec *a,2990 const struct diff_filespec *b,2991 struct rename_conflict_info *ci)2992{2993 const char *reason = _("content");2994 struct merge_file_info mfi;2995 unsigned df_conflict_remains = 0;29962997 if (!is_valid(o))2998 reason = _("add/add");29993000 assert(o->path && a->path && b->path);3001 if (ci && dir_in_way(opt->repo->index, path, !opt->call_depth,3002 S_ISGITLINK(ci->ren1->pair->two->mode)))3003 df_conflict_remains = 1;30043005 if (merge_mode_and_contents(opt, o, a, b, path,3006 opt->branch1, opt->branch2,3007 opt->call_depth * 2, &mfi))3008 return -1;30093010 /*3011 * We can skip updating the working tree file iff:3012 * a) The merge is clean3013 * b) The merge matches what was in HEAD (content, mode, pathname)3014 * c) The target path is usable (i.e. not involved in D/F conflict)3015 */3016 if (mfi.clean && was_tracked_and_matches(opt, path, &mfi.blob) &&3017 !df_conflict_remains) {3018 int pos;3019 struct cache_entry *ce;30203021 output(opt, 3, _("Skipped %s (merged same as existing)"), path);3022 if (add_cacheinfo(opt, &mfi.blob, path,3023 0, (!opt->call_depth && !is_dirty), 0))3024 return -1;3025 /*3026 * However, add_cacheinfo() will delete the old cache entry3027 * and add a new one. We need to copy over any skip_worktree3028 * flag to avoid making the file appear as if it were3029 * deleted by the user.3030 */3031 pos = index_name_pos(&opt->orig_index, path, strlen(path));3032 ce = opt->orig_index.cache[pos];3033 if (ce_skip_worktree(ce)) {3034 pos = index_name_pos(opt->repo->index, path, strlen(path));3035 ce = opt->repo->index->cache[pos];3036 ce->ce_flags |= CE_SKIP_WORKTREE;3037 }3038 return mfi.clean;3039 }30403041 if (!mfi.clean) {3042 if (S_ISGITLINK(mfi.blob.mode))3043 reason = _("submodule");3044 output(opt, 1, _("CONFLICT (%s): Merge conflict in %s"),3045 reason, path);3046 if (ci && !df_conflict_remains)3047 if (update_stages(opt, path, o, a, b))3048 return -1;3049 }30503051 if (df_conflict_remains || is_dirty) {3052 char *new_path;3053 if (opt->call_depth) {3054 remove_file_from_index(opt->repo->index, path);3055 } else {3056 if (!mfi.clean) {3057 if (update_stages(opt, path, o, a, b))3058 return -1;3059 } else {3060 int file_from_stage2 = was_tracked(opt, path);30613062 if (update_stages(opt, path, NULL,3063 file_from_stage2 ? &mfi.blob : NULL,3064 file_from_stage2 ? NULL : &mfi.blob))3065 return -1;3066 }30673068 }3069 new_path = unique_path(opt, path, ci->ren1->branch);3070 if (is_dirty) {3071 output(opt, 1, _("Refusing to lose dirty file at %s"),3072 path);3073 }3074 output(opt, 1, _("Adding as %s instead"), new_path);3075 if (update_file(opt, 0, &mfi.blob, new_path)) {3076 free(new_path);3077 return -1;3078 }3079 free(new_path);3080 mfi.clean = 0;3081 } else if (update_file(opt, mfi.clean, &mfi.blob, path))3082 return -1;3083 return !is_dirty && mfi.clean;3084}30853086static int handle_rename_normal(struct merge_options *opt,3087 const char *path,3088 const struct diff_filespec *o,3089 const struct diff_filespec *a,3090 const struct diff_filespec *b,3091 struct rename_conflict_info *ci)3092{3093 /* Merge the content and write it out */3094 return handle_content_merge(opt, path, was_dirty(opt, path),3095 o, a, b, ci);3096}30973098/* Per entry merge function */3099static int process_entry(struct merge_options *opt,3100 const char *path, struct stage_data *entry)3101{3102 int clean_merge = 1;3103 int normalize = opt->renormalize;31043105 struct diff_filespec *o = &entry->stages[1];3106 struct diff_filespec *a = &entry->stages[2];3107 struct diff_filespec *b = &entry->stages[3];3108 int o_valid = is_valid(o);3109 int a_valid = is_valid(a);3110 int b_valid = is_valid(b);3111 o->path = a->path = b->path = (char*)path;31123113 entry->processed = 1;3114 if (entry->rename_conflict_info) {3115 struct rename_conflict_info *ci = entry->rename_conflict_info;3116 struct diff_filespec *temp;31173118 /*3119 * For cases with a single rename, {o,a,b}->path have all been3120 * set to the rename target path; we need to set two of these3121 * back to the rename source.3122 * For rename/rename conflicts, we'll manually fix paths below.3123 */3124 temp = (opt->branch1 == ci->ren1->branch) ? b : a;3125 o->path = temp->path = ci->ren1->pair->one->path;3126 if (ci->ren2) {3127 assert(opt->branch1 == ci->ren1->branch);3128 }31293130 switch (ci->rename_type) {3131 case RENAME_NORMAL:3132 case RENAME_ONE_FILE_TO_ONE:3133 clean_merge = handle_rename_normal(opt, path, o, a, b,3134 ci);3135 break;3136 case RENAME_VIA_DIR:3137 clean_merge = 1;3138 if (handle_rename_via_dir(opt, ci))3139 clean_merge = -1;3140 break;3141 case RENAME_ADD:3142 /*3143 * Probably unclean merge, but if the renamed file3144 * merges cleanly and the result can then be3145 * two-way merged cleanly with the added file, I3146 * guess it's a clean merge?3147 */3148 clean_merge = handle_rename_add(opt, ci);3149 break;3150 case RENAME_DELETE:3151 clean_merge = 0;3152 if (handle_rename_delete(opt, ci))3153 clean_merge = -1;3154 break;3155 case RENAME_ONE_FILE_TO_TWO:3156 /*3157 * Manually fix up paths; note:3158 * ren[12]->pair->one->path are equal.3159 */3160 o->path = ci->ren1->pair->one->path;3161 a->path = ci->ren1->pair->two->path;3162 b->path = ci->ren2->pair->two->path;31633164 clean_merge = 0;3165 if (handle_rename_rename_1to2(opt, ci))3166 clean_merge = -1;3167 break;3168 case RENAME_TWO_FILES_TO_ONE:3169 /*3170 * Manually fix up paths; note,3171 * ren[12]->pair->two->path are actually equal.3172 */3173 o->path = NULL;3174 a->path = ci->ren1->pair->two->path;3175 b->path = ci->ren2->pair->two->path;31763177 /*3178 * Probably unclean merge, but if the two renamed3179 * files merge cleanly and the two resulting files3180 * can then be two-way merged cleanly, I guess it's3181 * a clean merge?3182 */3183 clean_merge = handle_rename_rename_2to1(opt, ci);3184 break;3185 default:3186 entry->processed = 0;3187 break;3188 }3189 } else if (o_valid && (!a_valid || !b_valid)) {3190 /* Case A: Deleted in one */3191 if ((!a_valid && !b_valid) ||3192 (!b_valid && blob_unchanged(opt, o, a, normalize, path)) ||3193 (!a_valid && blob_unchanged(opt, o, b, normalize, path))) {3194 /* Deleted in both or deleted in one and3195 * unchanged in the other */3196 if (a_valid)3197 output(opt, 2, _("Removing %s"), path);3198 /* do not touch working file if it did not exist */3199 remove_file(opt, 1, path, !a_valid);3200 } else {3201 /* Modify/delete; deleted side may have put a directory in the way */3202 clean_merge = 0;3203 if (handle_modify_delete(opt, path, o, a, b))3204 clean_merge = -1;3205 }3206 } else if ((!o_valid && a_valid && !b_valid) ||3207 (!o_valid && !a_valid && b_valid)) {3208 /* Case B: Added in one. */3209 /* [nothing|directory] -> ([nothing|directory], file) */32103211 const char *add_branch;3212 const char *other_branch;3213 const char *conf;3214 const struct diff_filespec *contents;32153216 if (a_valid) {3217 add_branch = opt->branch1;3218 other_branch = opt->branch2;3219 contents = a;3220 conf = _("file/directory");3221 } else {3222 add_branch = opt->branch2;3223 other_branch = opt->branch1;3224 contents = b;3225 conf = _("directory/file");3226 }3227 if (dir_in_way(opt->repo->index, path,3228 !opt->call_depth && !S_ISGITLINK(a->mode),3229 0)) {3230 char *new_path = unique_path(opt, path, add_branch);3231 clean_merge = 0;3232 output(opt, 1, _("CONFLICT (%s): There is a directory with name %s in %s. "3233 "Adding %s as %s"),3234 conf, path, other_branch, path, new_path);3235 if (update_file(opt, 0, contents, new_path))3236 clean_merge = -1;3237 else if (opt->call_depth)3238 remove_file_from_index(opt->repo->index, path);3239 free(new_path);3240 } else {3241 output(opt, 2, _("Adding %s"), path);3242 /* do not overwrite file if already present */3243 if (update_file_flags(opt, contents, path, 1, !a_valid))3244 clean_merge = -1;3245 }3246 } else if (a_valid && b_valid) {3247 if (!o_valid) {3248 /* Case C: Added in both (check for same permissions) */3249 output(opt, 1,3250 _("CONFLICT (add/add): Merge conflict in %s"),3251 path);3252 clean_merge = handle_file_collision(opt,3253 path, NULL, NULL,3254 opt->branch1,3255 opt->branch2,3256 a, b);3257 } else {3258 /* case D: Modified in both, but differently. */3259 int is_dirty = 0; /* unpack_trees would have bailed if dirty */3260 clean_merge = handle_content_merge(opt, path, is_dirty,3261 o, a, b, NULL);3262 }3263 } else if (!o_valid && !a_valid && !b_valid) {3264 /*3265 * this entry was deleted altogether. a_mode == 0 means3266 * we had that path and want to actively remove it.3267 */3268 remove_file(opt, 1, path, !a->mode);3269 } else3270 BUG("fatal merge failure, shouldn't happen.");32713272 return clean_merge;3273}32743275int merge_trees(struct merge_options *opt,3276 struct tree *head,3277 struct tree *merge,3278 struct tree *common,3279 struct tree **result)3280{3281 struct index_state *istate = opt->repo->index;3282 int code, clean;3283 struct strbuf sb = STRBUF_INIT;32843285 if (!opt->call_depth && repo_index_has_changes(opt->repo, head, &sb)) {3286 err(opt, _("Your local changes to the following files would be overwritten by merge:\n %s"),3287 sb.buf);3288 return -1;3289 }32903291 if (opt->subtree_shift) {3292 merge = shift_tree_object(opt->repo, head, merge, opt->subtree_shift);3293 common = shift_tree_object(opt->repo, head, common, opt->subtree_shift);3294 }32953296 if (oid_eq(&common->object.oid, &merge->object.oid)) {3297 output(opt, 0, _("Already up to date!"));3298 *result = head;3299 return 1;3300 }33013302 code = unpack_trees_start(opt, common, head, merge);33033304 if (code != 0) {3305 if (show(opt, 4) || opt->call_depth)3306 err(opt, _("merging of trees %s and %s failed"),3307 oid_to_hex(&head->object.oid),3308 oid_to_hex(&merge->object.oid));3309 unpack_trees_finish(opt);3310 return -1;3311 }33123313 if (unmerged_index(istate)) {3314 struct string_list *entries;3315 struct rename_info re_info;3316 int i;3317 /*3318 * Only need the hashmap while processing entries, so3319 * initialize it here and free it when we are done running3320 * through the entries. Keeping it in the merge_options as3321 * opposed to decaring a local hashmap is for convenience3322 * so that we don't have to pass it to around.3323 */3324 hashmap_init(&opt->current_file_dir_set, path_hashmap_cmp, NULL, 512);3325 get_files_dirs(opt, head);3326 get_files_dirs(opt, merge);33273328 entries = get_unmerged(opt->repo->index);3329 clean = detect_and_process_renames(opt, common, head, merge,3330 entries, &re_info);3331 record_df_conflict_files(opt, entries);3332 if (clean < 0)3333 goto cleanup;3334 for (i = entries->nr-1; 0 <= i; i--) {3335 const char *path = entries->items[i].string;3336 struct stage_data *e = entries->items[i].util;3337 if (!e->processed) {3338 int ret = process_entry(opt, path, e);3339 if (!ret)3340 clean = 0;3341 else if (ret < 0) {3342 clean = ret;3343 goto cleanup;3344 }3345 }3346 }3347 for (i = 0; i < entries->nr; i++) {3348 struct stage_data *e = entries->items[i].util;3349 if (!e->processed)3350 BUG("unprocessed path??? %s",3351 entries->items[i].string);3352 }33533354 cleanup:3355 final_cleanup_renames(&re_info);33563357 string_list_clear(entries, 1);3358 free(entries);33593360 hashmap_free(&opt->current_file_dir_set, 1);33613362 if (clean < 0) {3363 unpack_trees_finish(opt);3364 return clean;3365 }3366 }3367 else3368 clean = 1;33693370 unpack_trees_finish(opt);33713372 if (opt->call_depth && !(*result = write_tree_from_memory(opt)))3373 return -1;33743375 return clean;3376}33773378static struct commit_list *reverse_commit_list(struct commit_list *list)3379{3380 struct commit_list *next = NULL, *current, *backup;3381 for (current = list; current; current = backup) {3382 backup = current->next;3383 current->next = next;3384 next = current;3385 }3386 return next;3387}33883389/*3390 * Merge the commits h1 and h2, return the resulting virtual3391 * commit object and a flag indicating the cleanness of the merge.3392 */3393int merge_recursive(struct merge_options *opt,3394 struct commit *h1,3395 struct commit *h2,3396 struct commit_list *ca,3397 struct commit **result)3398{3399 struct commit_list *iter;3400 struct commit *merged_common_ancestors;3401 struct tree *mrtree;3402 int clean;34033404 if (show(opt, 4)) {3405 output(opt, 4, _("Merging:"));3406 output_commit_title(opt, h1);3407 output_commit_title(opt, h2);3408 }34093410 if (!ca) {3411 ca = get_merge_bases(h1, h2);3412 ca = reverse_commit_list(ca);3413 }34143415 if (show(opt, 5)) {3416 unsigned cnt = commit_list_count(ca);34173418 output(opt, 5, Q_("found %u common ancestor:",3419 "found %u common ancestors:", cnt), cnt);3420 for (iter = ca; iter; iter = iter->next)3421 output_commit_title(opt, iter->item);3422 }34233424 merged_common_ancestors = pop_commit(&ca);3425 if (merged_common_ancestors == NULL) {3426 /* if there is no common ancestor, use an empty tree */3427 struct tree *tree;34283429 tree = lookup_tree(opt->repo, opt->repo->hash_algo->empty_tree);3430 merged_common_ancestors = make_virtual_commit(opt->repo, tree, "ancestor");3431 }34323433 for (iter = ca; iter; iter = iter->next) {3434 const char *saved_b1, *saved_b2;3435 opt->call_depth++;3436 /*3437 * When the merge fails, the result contains files3438 * with conflict markers. The cleanness flag is3439 * ignored (unless indicating an error), it was never3440 * actually used, as result of merge_trees has always3441 * overwritten it: the committed "conflicts" were3442 * already resolved.3443 */3444 discard_index(opt->repo->index);3445 saved_b1 = opt->branch1;3446 saved_b2 = opt->branch2;3447 opt->branch1 = "Temporary merge branch 1";3448 opt->branch2 = "Temporary merge branch 2";3449 if (merge_recursive(opt, merged_common_ancestors, iter->item,3450 NULL, &merged_common_ancestors) < 0)3451 return -1;3452 opt->branch1 = saved_b1;3453 opt->branch2 = saved_b2;3454 opt->call_depth--;34553456 if (!merged_common_ancestors)3457 return err(opt, _("merge returned no commit"));3458 }34593460 discard_index(opt->repo->index);3461 if (!opt->call_depth)3462 repo_read_index(opt->repo);34633464 opt->ancestor = "merged common ancestors";3465 clean = merge_trees(opt, get_commit_tree(h1), get_commit_tree(h2),3466 get_commit_tree(merged_common_ancestors),3467 &mrtree);3468 if (clean < 0) {3469 flush_output(opt);3470 return clean;3471 }34723473 if (opt->call_depth) {3474 *result = make_virtual_commit(opt->repo, mrtree, "merged tree");3475 commit_list_insert(h1, &(*result)->parents);3476 commit_list_insert(h2, &(*result)->parents->next);3477 }3478 flush_output(opt);3479 if (!opt->call_depth && opt->buffer_output < 2)3480 strbuf_release(&opt->obuf);3481 if (show(opt, 2))3482 diff_warn_rename_limit("merge.renamelimit",3483 opt->needed_rename_limit, 0);3484 return clean;3485}34863487static struct commit *get_ref(struct repository *repo, const struct object_id *oid,3488 const char *name)3489{3490 struct object *object;34913492 object = deref_tag(repo, parse_object(repo, oid),3493 name, strlen(name));3494 if (!object)3495 return NULL;3496 if (object->type == OBJ_TREE)3497 return make_virtual_commit(repo, (struct tree*)object, name);3498 if (object->type != OBJ_COMMIT)3499 return NULL;3500 if (parse_commit((struct commit *)object))3501 return NULL;3502 return (struct commit *)object;3503}35043505int merge_recursive_generic(struct merge_options *opt,3506 const struct object_id *head,3507 const struct object_id *merge,3508 int num_base_list,3509 const struct object_id **base_list,3510 struct commit **result)3511{3512 int clean;3513 struct lock_file lock = LOCK_INIT;3514 struct commit *head_commit = get_ref(opt->repo, head, opt->branch1);3515 struct commit *next_commit = get_ref(opt->repo, merge, opt->branch2);3516 struct commit_list *ca = NULL;35173518 if (base_list) {3519 int i;3520 for (i = 0; i < num_base_list; ++i) {3521 struct commit *base;3522 if (!(base = get_ref(opt->repo, base_list[i], oid_to_hex(base_list[i]))))3523 return err(opt, _("Could not parse object '%s'"),3524 oid_to_hex(base_list[i]));3525 commit_list_insert(base, &ca);3526 }3527 }35283529 repo_hold_locked_index(opt->repo, &lock, LOCK_DIE_ON_ERROR);3530 clean = merge_recursive(opt, head_commit, next_commit, ca,3531 result);3532 if (clean < 0) {3533 rollback_lock_file(&lock);3534 return clean;3535 }35363537 if (write_locked_index(opt->repo->index, &lock,3538 COMMIT_LOCK | SKIP_IF_UNCHANGED))3539 return err(opt, _("Unable to write index."));35403541 return clean ? 0 : 1;3542}35433544static void merge_recursive_config(struct merge_options *opt)3545{3546 char *value = NULL;3547 git_config_get_int("merge.verbosity", &opt->verbosity);3548 git_config_get_int("diff.renamelimit", &opt->diff_rename_limit);3549 git_config_get_int("merge.renamelimit", &opt->merge_rename_limit);3550 if (!git_config_get_string("diff.renames", &value)) {3551 opt->diff_detect_rename = git_config_rename("diff.renames", value);3552 free(value);3553 }3554 if (!git_config_get_string("merge.renames", &value)) {3555 opt->merge_detect_rename = git_config_rename("merge.renames", value);3556 free(value);3557 }3558 git_config(git_xmerge_config, NULL);3559}35603561void init_merge_options(struct merge_options *opt,3562 struct repository *repo)3563{3564 const char *merge_verbosity;3565 memset(opt, 0, sizeof(struct merge_options));3566 opt->repo = repo;3567 opt->verbosity = 2;3568 opt->buffer_output = 1;3569 opt->diff_rename_limit = -1;3570 opt->merge_rename_limit = -1;3571 opt->renormalize = 0;3572 opt->diff_detect_rename = -1;3573 opt->merge_detect_rename = -1;3574 opt->detect_directory_renames = 1;3575 merge_recursive_config(opt);3576 merge_verbosity = getenv("GIT_MERGE_VERBOSITY");3577 if (merge_verbosity)3578 opt->verbosity = strtol(merge_verbosity, NULL, 10);3579 if (opt->verbosity >= 5)3580 opt->buffer_output = 0;3581 strbuf_init(&opt->obuf, 0);3582 string_list_init(&opt->df_conflict_file_set, 1);3583}35843585int parse_merge_opt(struct merge_options *opt, const char *s)3586{3587 const char *arg;35883589 if (!s || !*s)3590 return -1;3591 if (!strcmp(s, "ours"))3592 opt->recursive_variant = MERGE_RECURSIVE_OURS;3593 else if (!strcmp(s, "theirs"))3594 opt->recursive_variant = MERGE_RECURSIVE_THEIRS;3595 else if (!strcmp(s, "subtree"))3596 opt->subtree_shift = "";3597 else if (skip_prefix(s, "subtree=", &arg))3598 opt->subtree_shift = arg;3599 else if (!strcmp(s, "patience"))3600 opt->xdl_opts = DIFF_WITH_ALG(opt, PATIENCE_DIFF);3601 else if (!strcmp(s, "histogram"))3602 opt->xdl_opts = DIFF_WITH_ALG(opt, HISTOGRAM_DIFF);3603 else if (skip_prefix(s, "diff-algorithm=", &arg)) {3604 long value = parse_algorithm_value(arg);3605 if (value < 0)3606 return -1;3607 /* clear out previous settings */3608 DIFF_XDL_CLR(opt, NEED_MINIMAL);3609 opt->xdl_opts &= ~XDF_DIFF_ALGORITHM_MASK;3610 opt->xdl_opts |= value;3611 }3612 else if (!strcmp(s, "ignore-space-change"))3613 DIFF_XDL_SET(opt, IGNORE_WHITESPACE_CHANGE);3614 else if (!strcmp(s, "ignore-all-space"))3615 DIFF_XDL_SET(opt, IGNORE_WHITESPACE);3616 else if (!strcmp(s, "ignore-space-at-eol"))3617 DIFF_XDL_SET(opt, IGNORE_WHITESPACE_AT_EOL);3618 else if (!strcmp(s, "ignore-cr-at-eol"))3619 DIFF_XDL_SET(opt, IGNORE_CR_AT_EOL);3620 else if (!strcmp(s, "renormalize"))3621 opt->renormalize = 1;3622 else if (!strcmp(s, "no-renormalize"))3623 opt->renormalize = 0;3624 else if (!strcmp(s, "no-renames"))3625 opt->merge_detect_rename = 0;3626 else if (!strcmp(s, "find-renames")) {3627 opt->merge_detect_rename = 1;3628 opt->rename_score = 0;3629 }3630 else if (skip_prefix(s, "find-renames=", &arg) ||3631 skip_prefix(s, "rename-threshold=", &arg)) {3632 if ((opt->rename_score = parse_rename_score(&arg)) == -1 || *arg != 0)3633 return -1;3634 opt->merge_detect_rename = 1;3635 }3636 /*3637 * Please update $__git_merge_strategy_options in3638 * git-completion.bash when you add new options3639 */3640 else3641 return -1;3642 return 0;3643}