merge-recursive.con commit merge-recursive: make "Auto-merging" comment show for other merges (05cf21e)
   1/*
   2 * Recursive Merge algorithm stolen from git-merge-recursive.py by
   3 * Fredrik Kuivinen.
   4 * The thieves were Alex Riesen and Johannes Schindelin, in June/July 2006
   5 */
   6#include "cache.h"
   7#include "config.h"
   8#include "advice.h"
   9#include "lockfile.h"
  10#include "cache-tree.h"
  11#include "commit.h"
  12#include "blob.h"
  13#include "builtin.h"
  14#include "tree-walk.h"
  15#include "diff.h"
  16#include "diffcore.h"
  17#include "tag.h"
  18#include "unpack-trees.h"
  19#include "string-list.h"
  20#include "xdiff-interface.h"
  21#include "ll-merge.h"
  22#include "attr.h"
  23#include "merge-recursive.h"
  24#include "dir.h"
  25#include "submodule.h"
  26
  27struct path_hashmap_entry {
  28        struct hashmap_entry e;
  29        char path[FLEX_ARRAY];
  30};
  31
  32static int path_hashmap_cmp(const void *cmp_data,
  33                            const void *entry,
  34                            const void *entry_or_key,
  35                            const void *keydata)
  36{
  37        const struct path_hashmap_entry *a = entry;
  38        const struct path_hashmap_entry *b = entry_or_key;
  39        const char *key = keydata;
  40
  41        if (ignore_case)
  42                return strcasecmp(a->path, key ? key : b->path);
  43        else
  44                return strcmp(a->path, key ? key : b->path);
  45}
  46
  47static unsigned int path_hash(const char *path)
  48{
  49        return ignore_case ? strihash(path) : strhash(path);
  50}
  51
  52static struct dir_rename_entry *dir_rename_find_entry(struct hashmap *hashmap,
  53                                                      char *dir)
  54{
  55        struct dir_rename_entry key;
  56
  57        if (dir == NULL)
  58                return NULL;
  59        hashmap_entry_init(&key, strhash(dir));
  60        key.dir = dir;
  61        return hashmap_get(hashmap, &key, NULL);
  62}
  63
  64static int dir_rename_cmp(const void *unused_cmp_data,
  65                          const void *entry,
  66                          const void *entry_or_key,
  67                          const void *unused_keydata)
  68{
  69        const struct dir_rename_entry *e1 = entry;
  70        const struct dir_rename_entry *e2 = entry_or_key;
  71
  72        return strcmp(e1->dir, e2->dir);
  73}
  74
  75static void dir_rename_init(struct hashmap *map)
  76{
  77        hashmap_init(map, dir_rename_cmp, NULL, 0);
  78}
  79
  80static void dir_rename_entry_init(struct dir_rename_entry *entry,
  81                                  char *directory)
  82{
  83        hashmap_entry_init(entry, strhash(directory));
  84        entry->dir = directory;
  85        entry->non_unique_new_dir = 0;
  86        strbuf_init(&entry->new_dir, 0);
  87        string_list_init(&entry->possible_new_dirs, 0);
  88}
  89
  90static struct collision_entry *collision_find_entry(struct hashmap *hashmap,
  91                                                    char *target_file)
  92{
  93        struct collision_entry key;
  94
  95        hashmap_entry_init(&key, strhash(target_file));
  96        key.target_file = target_file;
  97        return hashmap_get(hashmap, &key, NULL);
  98}
  99
 100static int collision_cmp(void *unused_cmp_data,
 101                         const struct collision_entry *e1,
 102                         const struct collision_entry *e2,
 103                         const void *unused_keydata)
 104{
 105        return strcmp(e1->target_file, e2->target_file);
 106}
 107
 108static void collision_init(struct hashmap *map)
 109{
 110        hashmap_init(map, (hashmap_cmp_fn) collision_cmp, NULL, 0);
 111}
 112
 113static void flush_output(struct merge_options *o)
 114{
 115        if (o->buffer_output < 2 && o->obuf.len) {
 116                fputs(o->obuf.buf, stdout);
 117                strbuf_reset(&o->obuf);
 118        }
 119}
 120
 121static int err(struct merge_options *o, const char *err, ...)
 122{
 123        va_list params;
 124
 125        if (o->buffer_output < 2)
 126                flush_output(o);
 127        else {
 128                strbuf_complete(&o->obuf, '\n');
 129                strbuf_addstr(&o->obuf, "error: ");
 130        }
 131        va_start(params, err);
 132        strbuf_vaddf(&o->obuf, err, params);
 133        va_end(params);
 134        if (o->buffer_output > 1)
 135                strbuf_addch(&o->obuf, '\n');
 136        else {
 137                error("%s", o->obuf.buf);
 138                strbuf_reset(&o->obuf);
 139        }
 140
 141        return -1;
 142}
 143
 144static struct tree *shift_tree_object(struct tree *one, struct tree *two,
 145                                      const char *subtree_shift)
 146{
 147        struct object_id shifted;
 148
 149        if (!*subtree_shift) {
 150                shift_tree(&one->object.oid, &two->object.oid, &shifted, 0);
 151        } else {
 152                shift_tree_by(&one->object.oid, &two->object.oid, &shifted,
 153                              subtree_shift);
 154        }
 155        if (!oidcmp(&two->object.oid, &shifted))
 156                return two;
 157        return lookup_tree(&shifted);
 158}
 159
 160static struct commit *make_virtual_commit(struct tree *tree, const char *comment)
 161{
 162        struct commit *commit = alloc_commit_node();
 163
 164        set_merge_remote_desc(commit, comment, (struct object *)commit);
 165        commit->tree = tree;
 166        commit->object.parsed = 1;
 167        return commit;
 168}
 169
 170/*
 171 * Since we use get_tree_entry(), which does not put the read object into
 172 * the object pool, we cannot rely on a == b.
 173 */
 174static int oid_eq(const struct object_id *a, const struct object_id *b)
 175{
 176        if (!a && !b)
 177                return 2;
 178        return a && b && oidcmp(a, b) == 0;
 179}
 180
 181enum rename_type {
 182        RENAME_NORMAL = 0,
 183        RENAME_DIR,
 184        RENAME_DELETE,
 185        RENAME_ONE_FILE_TO_ONE,
 186        RENAME_ONE_FILE_TO_TWO,
 187        RENAME_TWO_FILES_TO_ONE
 188};
 189
 190struct rename_conflict_info {
 191        enum rename_type rename_type;
 192        struct diff_filepair *pair1;
 193        struct diff_filepair *pair2;
 194        const char *branch1;
 195        const char *branch2;
 196        struct stage_data *dst_entry1;
 197        struct stage_data *dst_entry2;
 198        struct diff_filespec ren1_other;
 199        struct diff_filespec ren2_other;
 200};
 201
 202/*
 203 * Since we want to write the index eventually, we cannot reuse the index
 204 * for these (temporary) data.
 205 */
 206struct stage_data {
 207        struct {
 208                unsigned mode;
 209                struct object_id oid;
 210        } stages[4];
 211        struct rename_conflict_info *rename_conflict_info;
 212        unsigned processed:1;
 213};
 214
 215static inline void setup_rename_conflict_info(enum rename_type rename_type,
 216                                              struct diff_filepair *pair1,
 217                                              struct diff_filepair *pair2,
 218                                              const char *branch1,
 219                                              const char *branch2,
 220                                              struct stage_data *dst_entry1,
 221                                              struct stage_data *dst_entry2,
 222                                              struct merge_options *o,
 223                                              struct stage_data *src_entry1,
 224                                              struct stage_data *src_entry2)
 225{
 226        struct rename_conflict_info *ci = xcalloc(1, sizeof(struct rename_conflict_info));
 227        ci->rename_type = rename_type;
 228        ci->pair1 = pair1;
 229        ci->branch1 = branch1;
 230        ci->branch2 = branch2;
 231
 232        ci->dst_entry1 = dst_entry1;
 233        dst_entry1->rename_conflict_info = ci;
 234        dst_entry1->processed = 0;
 235
 236        assert(!pair2 == !dst_entry2);
 237        if (dst_entry2) {
 238                ci->dst_entry2 = dst_entry2;
 239                ci->pair2 = pair2;
 240                dst_entry2->rename_conflict_info = ci;
 241        }
 242
 243        if (rename_type == RENAME_TWO_FILES_TO_ONE) {
 244                /*
 245                 * For each rename, there could have been
 246                 * modifications on the side of history where that
 247                 * file was not renamed.
 248                 */
 249                int ostage1 = o->branch1 == branch1 ? 3 : 2;
 250                int ostage2 = ostage1 ^ 1;
 251
 252                ci->ren1_other.path = pair1->one->path;
 253                oidcpy(&ci->ren1_other.oid, &src_entry1->stages[ostage1].oid);
 254                ci->ren1_other.mode = src_entry1->stages[ostage1].mode;
 255
 256                ci->ren2_other.path = pair2->one->path;
 257                oidcpy(&ci->ren2_other.oid, &src_entry2->stages[ostage2].oid);
 258                ci->ren2_other.mode = src_entry2->stages[ostage2].mode;
 259        }
 260}
 261
 262static int show(struct merge_options *o, int v)
 263{
 264        return (!o->call_depth && o->verbosity >= v) || o->verbosity >= 5;
 265}
 266
 267__attribute__((format (printf, 3, 4)))
 268static void output(struct merge_options *o, int v, const char *fmt, ...)
 269{
 270        va_list ap;
 271
 272        if (!show(o, v))
 273                return;
 274
 275        strbuf_addchars(&o->obuf, ' ', o->call_depth * 2);
 276
 277        va_start(ap, fmt);
 278        strbuf_vaddf(&o->obuf, fmt, ap);
 279        va_end(ap);
 280
 281        strbuf_addch(&o->obuf, '\n');
 282        if (!o->buffer_output)
 283                flush_output(o);
 284}
 285
 286static void output_commit_title(struct merge_options *o, struct commit *commit)
 287{
 288        strbuf_addchars(&o->obuf, ' ', o->call_depth * 2);
 289        if (commit->util)
 290                strbuf_addf(&o->obuf, "virtual %s\n",
 291                        merge_remote_util(commit)->name);
 292        else {
 293                strbuf_add_unique_abbrev(&o->obuf, &commit->object.oid,
 294                                         DEFAULT_ABBREV);
 295                strbuf_addch(&o->obuf, ' ');
 296                if (parse_commit(commit) != 0)
 297                        strbuf_addstr(&o->obuf, _("(bad commit)\n"));
 298                else {
 299                        const char *title;
 300                        const char *msg = get_commit_buffer(commit, NULL);
 301                        int len = find_commit_subject(msg, &title);
 302                        if (len)
 303                                strbuf_addf(&o->obuf, "%.*s\n", len, title);
 304                        unuse_commit_buffer(commit, msg);
 305                }
 306        }
 307        flush_output(o);
 308}
 309
 310static int add_cacheinfo(struct merge_options *o,
 311                unsigned int mode, const struct object_id *oid,
 312                const char *path, int stage, int refresh, int options)
 313{
 314        struct cache_entry *ce;
 315        int ret;
 316
 317        ce = make_cache_entry(mode, oid ? oid->hash : null_sha1, path, stage, 0);
 318        if (!ce)
 319                return err(o, _("add_cacheinfo failed for path '%s'; merge aborting."), path);
 320
 321        ret = add_cache_entry(ce, options);
 322        if (refresh) {
 323                struct cache_entry *nce;
 324
 325                nce = refresh_cache_entry(ce, CE_MATCH_REFRESH | CE_MATCH_IGNORE_MISSING);
 326                if (!nce)
 327                        return err(o, _("add_cacheinfo failed to refresh for path '%s'; merge aborting."), path);
 328                if (nce != ce)
 329                        ret = add_cache_entry(nce, options);
 330        }
 331        return ret;
 332}
 333
 334static void init_tree_desc_from_tree(struct tree_desc *desc, struct tree *tree)
 335{
 336        parse_tree(tree);
 337        init_tree_desc(desc, tree->buffer, tree->size);
 338}
 339
 340static int git_merge_trees(struct merge_options *o,
 341                           struct tree *common,
 342                           struct tree *head,
 343                           struct tree *merge)
 344{
 345        int rc;
 346        struct tree_desc t[3];
 347        struct index_state tmp_index = { NULL };
 348
 349        memset(&o->unpack_opts, 0, sizeof(o->unpack_opts));
 350        if (o->call_depth)
 351                o->unpack_opts.index_only = 1;
 352        else
 353                o->unpack_opts.update = 1;
 354        o->unpack_opts.merge = 1;
 355        o->unpack_opts.head_idx = 2;
 356        o->unpack_opts.fn = threeway_merge;
 357        o->unpack_opts.src_index = &the_index;
 358        o->unpack_opts.dst_index = &tmp_index;
 359        setup_unpack_trees_porcelain(&o->unpack_opts, "merge");
 360
 361        init_tree_desc_from_tree(t+0, common);
 362        init_tree_desc_from_tree(t+1, head);
 363        init_tree_desc_from_tree(t+2, merge);
 364
 365        rc = unpack_trees(3, t, &o->unpack_opts);
 366        cache_tree_free(&active_cache_tree);
 367
 368        /*
 369         * Update the_index to match the new results, AFTER saving a copy
 370         * in o->orig_index.  Update src_index to point to the saved copy.
 371         * (verify_uptodate() checks src_index, and the original index is
 372         * the one that had the necessary modification timestamps.)
 373         */
 374        o->orig_index = the_index;
 375        the_index = tmp_index;
 376        o->unpack_opts.src_index = &o->orig_index;
 377
 378        return rc;
 379}
 380
 381struct tree *write_tree_from_memory(struct merge_options *o)
 382{
 383        struct tree *result = NULL;
 384
 385        if (unmerged_cache()) {
 386                int i;
 387                fprintf(stderr, "BUG: There are unmerged index entries:\n");
 388                for (i = 0; i < active_nr; i++) {
 389                        const struct cache_entry *ce = active_cache[i];
 390                        if (ce_stage(ce))
 391                                fprintf(stderr, "BUG: %d %.*s\n", ce_stage(ce),
 392                                        (int)ce_namelen(ce), ce->name);
 393                }
 394                die("BUG: unmerged index entries in merge-recursive.c");
 395        }
 396
 397        if (!active_cache_tree)
 398                active_cache_tree = cache_tree();
 399
 400        if (!cache_tree_fully_valid(active_cache_tree) &&
 401            cache_tree_update(&the_index, 0) < 0) {
 402                err(o, _("error building trees"));
 403                return NULL;
 404        }
 405
 406        result = lookup_tree(&active_cache_tree->oid);
 407
 408        return result;
 409}
 410
 411static int save_files_dirs(const struct object_id *oid,
 412                struct strbuf *base, const char *path,
 413                unsigned int mode, int stage, void *context)
 414{
 415        struct path_hashmap_entry *entry;
 416        int baselen = base->len;
 417        struct merge_options *o = context;
 418
 419        strbuf_addstr(base, path);
 420
 421        FLEX_ALLOC_MEM(entry, path, base->buf, base->len);
 422        hashmap_entry_init(entry, path_hash(entry->path));
 423        hashmap_add(&o->current_file_dir_set, entry);
 424
 425        strbuf_setlen(base, baselen);
 426        return (S_ISDIR(mode) ? READ_TREE_RECURSIVE : 0);
 427}
 428
 429static void get_files_dirs(struct merge_options *o, struct tree *tree)
 430{
 431        struct pathspec match_all;
 432        memset(&match_all, 0, sizeof(match_all));
 433        read_tree_recursive(tree, "", 0, 0, &match_all, save_files_dirs, o);
 434}
 435
 436static int get_tree_entry_if_blob(const struct object_id *tree,
 437                                  const char *path,
 438                                  struct object_id *hashy,
 439                                  unsigned int *mode_o)
 440{
 441        int ret;
 442
 443        ret = get_tree_entry(tree, path, hashy, mode_o);
 444        if (S_ISDIR(*mode_o)) {
 445                oidcpy(hashy, &null_oid);
 446                *mode_o = 0;
 447        }
 448        return ret;
 449}
 450
 451/*
 452 * Returns an index_entry instance which doesn't have to correspond to
 453 * a real cache entry in Git's index.
 454 */
 455static struct stage_data *insert_stage_data(const char *path,
 456                struct tree *o, struct tree *a, struct tree *b,
 457                struct string_list *entries)
 458{
 459        struct string_list_item *item;
 460        struct stage_data *e = xcalloc(1, sizeof(struct stage_data));
 461        get_tree_entry_if_blob(&o->object.oid, path,
 462                               &e->stages[1].oid, &e->stages[1].mode);
 463        get_tree_entry_if_blob(&a->object.oid, path,
 464                               &e->stages[2].oid, &e->stages[2].mode);
 465        get_tree_entry_if_blob(&b->object.oid, path,
 466                               &e->stages[3].oid, &e->stages[3].mode);
 467        item = string_list_insert(entries, path);
 468        item->util = e;
 469        return e;
 470}
 471
 472/*
 473 * Create a dictionary mapping file names to stage_data objects. The
 474 * dictionary contains one entry for every path with a non-zero stage entry.
 475 */
 476static struct string_list *get_unmerged(void)
 477{
 478        struct string_list *unmerged = xcalloc(1, sizeof(struct string_list));
 479        int i;
 480
 481        unmerged->strdup_strings = 1;
 482
 483        for (i = 0; i < active_nr; i++) {
 484                struct string_list_item *item;
 485                struct stage_data *e;
 486                const struct cache_entry *ce = active_cache[i];
 487                if (!ce_stage(ce))
 488                        continue;
 489
 490                item = string_list_lookup(unmerged, ce->name);
 491                if (!item) {
 492                        item = string_list_insert(unmerged, ce->name);
 493                        item->util = xcalloc(1, sizeof(struct stage_data));
 494                }
 495                e = item->util;
 496                e->stages[ce_stage(ce)].mode = ce->ce_mode;
 497                oidcpy(&e->stages[ce_stage(ce)].oid, &ce->oid);
 498        }
 499
 500        return unmerged;
 501}
 502
 503static int string_list_df_name_compare(const char *one, const char *two)
 504{
 505        int onelen = strlen(one);
 506        int twolen = strlen(two);
 507        /*
 508         * Here we only care that entries for D/F conflicts are
 509         * adjacent, in particular with the file of the D/F conflict
 510         * appearing before files below the corresponding directory.
 511         * The order of the rest of the list is irrelevant for us.
 512         *
 513         * To achieve this, we sort with df_name_compare and provide
 514         * the mode S_IFDIR so that D/F conflicts will sort correctly.
 515         * We use the mode S_IFDIR for everything else for simplicity,
 516         * since in other cases any changes in their order due to
 517         * sorting cause no problems for us.
 518         */
 519        int cmp = df_name_compare(one, onelen, S_IFDIR,
 520                                  two, twolen, S_IFDIR);
 521        /*
 522         * Now that 'foo' and 'foo/bar' compare equal, we have to make sure
 523         * that 'foo' comes before 'foo/bar'.
 524         */
 525        if (cmp)
 526                return cmp;
 527        return onelen - twolen;
 528}
 529
 530static void record_df_conflict_files(struct merge_options *o,
 531                                     struct string_list *entries)
 532{
 533        /* If there is a D/F conflict and the file for such a conflict
 534         * currently exist in the working tree, we want to allow it to be
 535         * removed to make room for the corresponding directory if needed.
 536         * The files underneath the directories of such D/F conflicts will
 537         * be processed before the corresponding file involved in the D/F
 538         * conflict.  If the D/F directory ends up being removed by the
 539         * merge, then we won't have to touch the D/F file.  If the D/F
 540         * directory needs to be written to the working copy, then the D/F
 541         * file will simply be removed (in make_room_for_path()) to make
 542         * room for the necessary paths.  Note that if both the directory
 543         * and the file need to be present, then the D/F file will be
 544         * reinstated with a new unique name at the time it is processed.
 545         */
 546        struct string_list df_sorted_entries = STRING_LIST_INIT_NODUP;
 547        const char *last_file = NULL;
 548        int last_len = 0;
 549        int i;
 550
 551        /*
 552         * If we're merging merge-bases, we don't want to bother with
 553         * any working directory changes.
 554         */
 555        if (o->call_depth)
 556                return;
 557
 558        /* Ensure D/F conflicts are adjacent in the entries list. */
 559        for (i = 0; i < entries->nr; i++) {
 560                struct string_list_item *next = &entries->items[i];
 561                string_list_append(&df_sorted_entries, next->string)->util =
 562                                   next->util;
 563        }
 564        df_sorted_entries.cmp = string_list_df_name_compare;
 565        string_list_sort(&df_sorted_entries);
 566
 567        string_list_clear(&o->df_conflict_file_set, 1);
 568        for (i = 0; i < df_sorted_entries.nr; i++) {
 569                const char *path = df_sorted_entries.items[i].string;
 570                int len = strlen(path);
 571                struct stage_data *e = df_sorted_entries.items[i].util;
 572
 573                /*
 574                 * Check if last_file & path correspond to a D/F conflict;
 575                 * i.e. whether path is last_file+'/'+<something>.
 576                 * If so, record that it's okay to remove last_file to make
 577                 * room for path and friends if needed.
 578                 */
 579                if (last_file &&
 580                    len > last_len &&
 581                    memcmp(path, last_file, last_len) == 0 &&
 582                    path[last_len] == '/') {
 583                        string_list_insert(&o->df_conflict_file_set, last_file);
 584                }
 585
 586                /*
 587                 * Determine whether path could exist as a file in the
 588                 * working directory as a possible D/F conflict.  This
 589                 * will only occur when it exists in stage 2 as a
 590                 * file.
 591                 */
 592                if (S_ISREG(e->stages[2].mode) || S_ISLNK(e->stages[2].mode)) {
 593                        last_file = path;
 594                        last_len = len;
 595                } else {
 596                        last_file = NULL;
 597                }
 598        }
 599        string_list_clear(&df_sorted_entries, 0);
 600}
 601
 602struct rename {
 603        struct diff_filepair *pair;
 604        /*
 605         * Purpose of src_entry and dst_entry:
 606         *
 607         * If 'before' is renamed to 'after' then src_entry will contain
 608         * the versions of 'before' from the merge_base, HEAD, and MERGE in
 609         * stages 1, 2, and 3; dst_entry will contain the respective
 610         * versions of 'after' in corresponding locations.  Thus, we have a
 611         * total of six modes and oids, though some will be null.  (Stage 0
 612         * is ignored; we're interested in handling conflicts.)
 613         *
 614         * Since we don't turn on break-rewrites by default, neither
 615         * src_entry nor dst_entry can have all three of their stages have
 616         * non-null oids, meaning at most four of the six will be non-null.
 617         * Also, since this is a rename, both src_entry and dst_entry will
 618         * have at least one non-null oid, meaning at least two will be
 619         * non-null.  Of the six oids, a typical rename will have three be
 620         * non-null.  Only two implies a rename/delete, and four implies a
 621         * rename/add.
 622         */
 623        struct stage_data *src_entry;
 624        struct stage_data *dst_entry;
 625        unsigned add_turned_into_rename:1;
 626        unsigned processed:1;
 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_cache(path))
 647                        return -1;
 648        if (o)
 649                if (add_cacheinfo(opt, o->mode, &o->oid, path, 1, 0, options))
 650                        return -1;
 651        if (a)
 652                if (add_cacheinfo(opt, a->mode, &a->oid, path, 2, 0, options))
 653                        return -1;
 654        if (b)
 655                if (add_cacheinfo(opt, b->mode, &b->oid, path, 3, 0, options))
 656                        return -1;
 657        return 0;
 658}
 659
 660static int update_stages_for_stage_data(struct merge_options *opt,
 661                                        const char *path,
 662                                        const struct stage_data *stage_data)
 663{
 664        struct diff_filespec o, a, b;
 665
 666        o.mode = stage_data->stages[1].mode;
 667        oidcpy(&o.oid, &stage_data->stages[1].oid);
 668
 669        a.mode = stage_data->stages[2].mode;
 670        oidcpy(&a.oid, &stage_data->stages[2].oid);
 671
 672        b.mode = stage_data->stages[3].mode;
 673        oidcpy(&b.oid, &stage_data->stages[3].oid);
 674
 675        return update_stages(opt, path,
 676                             is_null_oid(&o.oid) ? NULL : &o,
 677                             is_null_oid(&a.oid) ? NULL : &a,
 678                             is_null_oid(&b.oid) ? NULL : &b);
 679}
 680
 681static void update_entry(struct stage_data *entry,
 682                         struct diff_filespec *o,
 683                         struct diff_filespec *a,
 684                         struct diff_filespec *b)
 685{
 686        entry->processed = 0;
 687        entry->stages[1].mode = o->mode;
 688        entry->stages[2].mode = a->mode;
 689        entry->stages[3].mode = b->mode;
 690        oidcpy(&entry->stages[1].oid, &o->oid);
 691        oidcpy(&entry->stages[2].oid, &a->oid);
 692        oidcpy(&entry->stages[3].oid, &b->oid);
 693}
 694
 695static int remove_file(struct merge_options *o, int clean,
 696                       const char *path, int no_wd)
 697{
 698        int update_cache = o->call_depth || clean;
 699        int update_working_directory = !o->call_depth && !no_wd;
 700
 701        if (update_cache) {
 702                if (remove_file_from_cache(path))
 703                        return -1;
 704        }
 705        if (update_working_directory) {
 706                if (ignore_case) {
 707                        struct cache_entry *ce;
 708                        ce = cache_file_exists(path, strlen(path), ignore_case);
 709                        if (ce && ce_stage(ce) == 0 && strcmp(path, ce->name))
 710                                return 0;
 711                }
 712                if (remove_path(path))
 713                        return -1;
 714        }
 715        return 0;
 716}
 717
 718/* add a string to a strbuf, but converting "/" to "_" */
 719static void add_flattened_path(struct strbuf *out, const char *s)
 720{
 721        size_t i = out->len;
 722        strbuf_addstr(out, s);
 723        for (; i < out->len; i++)
 724                if (out->buf[i] == '/')
 725                        out->buf[i] = '_';
 726}
 727
 728static char *unique_path(struct merge_options *o, const char *path, const char *branch)
 729{
 730        struct path_hashmap_entry *entry;
 731        struct strbuf newpath = STRBUF_INIT;
 732        int suffix = 0;
 733        size_t base_len;
 734
 735        strbuf_addf(&newpath, "%s~", path);
 736        add_flattened_path(&newpath, branch);
 737
 738        base_len = newpath.len;
 739        while (hashmap_get_from_hash(&o->current_file_dir_set,
 740                                     path_hash(newpath.buf), newpath.buf) ||
 741               (!o->call_depth && file_exists(newpath.buf))) {
 742                strbuf_setlen(&newpath, base_len);
 743                strbuf_addf(&newpath, "_%d", suffix++);
 744        }
 745
 746        FLEX_ALLOC_MEM(entry, path, newpath.buf, newpath.len);
 747        hashmap_entry_init(entry, path_hash(entry->path));
 748        hashmap_add(&o->current_file_dir_set, entry);
 749        return strbuf_detach(&newpath, NULL);
 750}
 751
 752/**
 753 * Check whether a directory in the index is in the way of an incoming
 754 * file.  Return 1 if so.  If check_working_copy is non-zero, also
 755 * check the working directory.  If empty_ok is non-zero, also return
 756 * 0 in the case where the working-tree dir exists but is empty.
 757 */
 758static int dir_in_way(const char *path, int check_working_copy, int empty_ok)
 759{
 760        int pos;
 761        struct strbuf dirpath = STRBUF_INIT;
 762        struct stat st;
 763
 764        strbuf_addstr(&dirpath, path);
 765        strbuf_addch(&dirpath, '/');
 766
 767        pos = cache_name_pos(dirpath.buf, dirpath.len);
 768
 769        if (pos < 0)
 770                pos = -1 - pos;
 771        if (pos < active_nr &&
 772            !strncmp(dirpath.buf, active_cache[pos]->name, dirpath.len)) {
 773                strbuf_release(&dirpath);
 774                return 1;
 775        }
 776
 777        strbuf_release(&dirpath);
 778        return check_working_copy && !lstat(path, &st) && S_ISDIR(st.st_mode) &&
 779                !(empty_ok && is_empty_dir(path));
 780}
 781
 782/*
 783 * Returns whether path was tracked in the index before the merge started
 784 */
 785static int was_tracked(struct merge_options *o, const char *path)
 786{
 787        int pos = index_name_pos(&o->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(const char *path)
 797{
 798        /*
 799         * This may look like it can be simplified to:
 800         *   return !was_tracked(o, path) && file_exists(path)
 801         * but it can't.  This function needs to know whether path was in
 802         * the working tree due to EITHER having been tracked in the index
 803         * before the merge OR having been put into the working copy and
 804         * index by unpack_trees().  Due to that either-or requirement, we
 805         * check the current index instead of the original one.
 806         *
 807         * Note that we do not need to worry about merge-recursive itself
 808         * updating the index after unpack_trees() and before calling this
 809         * function, because we strictly require all code paths in
 810         * merge-recursive to update the working tree first and the index
 811         * second.  Doing otherwise would break
 812         * update_file()/would_lose_untracked(); see every comment in this
 813         * file which mentions "update_stages".
 814         */
 815        int pos = cache_name_pos(path, strlen(path));
 816
 817        if (pos < 0)
 818                pos = -1 - pos;
 819        while (pos < active_nr &&
 820               !strcmp(path, active_cache[pos]->name)) {
 821                /*
 822                 * If stage #0, it is definitely tracked.
 823                 * If it has stage #2 then it was tracked
 824                 * before this merge started.  All other
 825                 * cases the path was not tracked.
 826                 */
 827                switch (ce_stage(active_cache[pos])) {
 828                case 0:
 829                case 2:
 830                        return 0;
 831                }
 832                pos++;
 833        }
 834        return file_exists(path);
 835}
 836
 837static int was_dirty(struct merge_options *o, const char *path)
 838{
 839        struct cache_entry *ce;
 840        int dirty = 1;
 841
 842        if (o->call_depth || !was_tracked(o, path))
 843                return !dirty;
 844
 845        ce = index_file_exists(o->unpack_opts.src_index,
 846                               path, strlen(path), ignore_case);
 847        dirty = verify_uptodate(ce, &o->unpack_opts) != 0;
 848        return dirty;
 849}
 850
 851static int make_room_for_path(struct merge_options *o, const char *path)
 852{
 853        int status, i;
 854        const char *msg = _("failed to create path '%s'%s");
 855
 856        /* Unlink any D/F conflict files that are in the way */
 857        for (i = 0; i < o->df_conflict_file_set.nr; i++) {
 858                const char *df_path = o->df_conflict_file_set.items[i].string;
 859                size_t pathlen = strlen(path);
 860                size_t df_pathlen = strlen(df_path);
 861                if (df_pathlen < pathlen &&
 862                    path[df_pathlen] == '/' &&
 863                    strncmp(path, df_path, df_pathlen) == 0) {
 864                        output(o, 3,
 865                               _("Removing %s to make room for subdirectory\n"),
 866                               df_path);
 867                        unlink(df_path);
 868                        unsorted_string_list_delete_item(&o->df_conflict_file_set,
 869                                                         i, 0);
 870                        break;
 871                }
 872        }
 873
 874        /* Make sure leading directories are created */
 875        status = safe_create_leading_directories_const(path);
 876        if (status) {
 877                if (status == SCLD_EXISTS)
 878                        /* something else exists */
 879                        return err(o, msg, path, _(": perhaps a D/F conflict?"));
 880                return err(o, msg, path, "");
 881        }
 882
 883        /*
 884         * Do not unlink a file in the work tree if we are not
 885         * tracking it.
 886         */
 887        if (would_lose_untracked(path))
 888                return err(o, _("refusing to lose untracked file at '%s'"),
 889                             path);
 890
 891        /* Successful unlink is good.. */
 892        if (!unlink(path))
 893                return 0;
 894        /* .. and so is no existing file */
 895        if (errno == ENOENT)
 896                return 0;
 897        /* .. but not some other error (who really cares what?) */
 898        return err(o, msg, path, _(": perhaps a D/F conflict?"));
 899}
 900
 901static int update_file_flags(struct merge_options *o,
 902                             const struct object_id *oid,
 903                             unsigned mode,
 904                             const char *path,
 905                             int update_cache,
 906                             int update_wd)
 907{
 908        int ret = 0;
 909
 910        if (o->call_depth)
 911                update_wd = 0;
 912
 913        if (update_wd) {
 914                enum object_type type;
 915                void *buf;
 916                unsigned long size;
 917
 918                if (S_ISGITLINK(mode)) {
 919                        /*
 920                         * We may later decide to recursively descend into
 921                         * the submodule directory and update its index
 922                         * and/or work tree, but we do not do that now.
 923                         */
 924                        update_wd = 0;
 925                        goto update_index;
 926                }
 927
 928                buf = read_object_file(oid, &type, &size);
 929                if (!buf)
 930                        return err(o, _("cannot read object %s '%s'"), oid_to_hex(oid), path);
 931                if (type != OBJ_BLOB) {
 932                        ret = err(o, _("blob expected for %s '%s'"), oid_to_hex(oid), path);
 933                        goto free_buf;
 934                }
 935                if (S_ISREG(mode)) {
 936                        struct strbuf strbuf = STRBUF_INIT;
 937                        if (convert_to_working_tree(path, buf, size, &strbuf)) {
 938                                free(buf);
 939                                size = strbuf.len;
 940                                buf = strbuf_detach(&strbuf, NULL);
 941                        }
 942                }
 943
 944                if (make_room_for_path(o, path) < 0) {
 945                        update_wd = 0;
 946                        goto free_buf;
 947                }
 948                if (S_ISREG(mode) || (!has_symlinks && S_ISLNK(mode))) {
 949                        int fd;
 950                        if (mode & 0100)
 951                                mode = 0777;
 952                        else
 953                                mode = 0666;
 954                        fd = open(path, O_WRONLY | O_TRUNC | O_CREAT, mode);
 955                        if (fd < 0) {
 956                                ret = err(o, _("failed to open '%s': %s"),
 957                                          path, strerror(errno));
 958                                goto free_buf;
 959                        }
 960                        write_in_full(fd, buf, size);
 961                        close(fd);
 962                } else if (S_ISLNK(mode)) {
 963                        char *lnk = xmemdupz(buf, size);
 964                        safe_create_leading_directories_const(path);
 965                        unlink(path);
 966                        if (symlink(lnk, path))
 967                                ret = err(o, _("failed to symlink '%s': %s"),
 968                                        path, strerror(errno));
 969                        free(lnk);
 970                } else
 971                        ret = err(o,
 972                                  _("do not know what to do with %06o %s '%s'"),
 973                                  mode, oid_to_hex(oid), path);
 974 free_buf:
 975                free(buf);
 976        }
 977 update_index:
 978        if (!ret && update_cache)
 979                if (add_cacheinfo(o, mode, oid, path, 0, update_wd,
 980                                  ADD_CACHE_OK_TO_ADD))
 981                        return -1;
 982        return ret;
 983}
 984
 985static int update_file(struct merge_options *o,
 986                       int clean,
 987                       const struct object_id *oid,
 988                       unsigned mode,
 989                       const char *path)
 990{
 991        return update_file_flags(o, oid, mode, path, o->call_depth || clean, !o->call_depth);
 992}
 993
 994/* Low level file merging, update and removal */
 995
 996struct merge_file_info {
 997        struct object_id oid;
 998        unsigned mode;
 999        unsigned clean:1,
1000                 merge:1;
1001};
1002
1003static int merge_3way(struct merge_options *o,
1004                      mmbuffer_t *result_buf,
1005                      const struct diff_filespec *one,
1006                      const struct diff_filespec *a,
1007                      const struct diff_filespec *b,
1008                      const char *branch1,
1009                      const char *branch2)
1010{
1011        mmfile_t orig, src1, src2;
1012        struct ll_merge_options ll_opts = {0};
1013        char *base_name, *name1, *name2;
1014        int merge_status;
1015
1016        ll_opts.renormalize = o->renormalize;
1017        ll_opts.xdl_opts = o->xdl_opts;
1018
1019        if (o->call_depth) {
1020                ll_opts.virtual_ancestor = 1;
1021                ll_opts.variant = 0;
1022        } else {
1023                switch (o->recursive_variant) {
1024                case MERGE_RECURSIVE_OURS:
1025                        ll_opts.variant = XDL_MERGE_FAVOR_OURS;
1026                        break;
1027                case MERGE_RECURSIVE_THEIRS:
1028                        ll_opts.variant = XDL_MERGE_FAVOR_THEIRS;
1029                        break;
1030                default:
1031                        ll_opts.variant = 0;
1032                        break;
1033                }
1034        }
1035
1036        if (strcmp(a->path, b->path) ||
1037            (o->ancestor != NULL && strcmp(a->path, one->path) != 0)) {
1038                base_name = o->ancestor == NULL ? NULL :
1039                        mkpathdup("%s:%s", o->ancestor, one->path);
1040                name1 = mkpathdup("%s:%s", branch1, a->path);
1041                name2 = mkpathdup("%s:%s", branch2, b->path);
1042        } else {
1043                base_name = o->ancestor == NULL ? NULL :
1044                        mkpathdup("%s", o->ancestor);
1045                name1 = mkpathdup("%s", branch1);
1046                name2 = mkpathdup("%s", branch2);
1047        }
1048
1049        read_mmblob(&orig, &one->oid);
1050        read_mmblob(&src1, &a->oid);
1051        read_mmblob(&src2, &b->oid);
1052
1053        merge_status = ll_merge(result_buf, a->path, &orig, base_name,
1054                                &src1, name1, &src2, name2, &ll_opts);
1055
1056        free(base_name);
1057        free(name1);
1058        free(name2);
1059        free(orig.ptr);
1060        free(src1.ptr);
1061        free(src2.ptr);
1062        return merge_status;
1063}
1064
1065static int merge_file_1(struct merge_options *o,
1066                        const struct diff_filespec *one,
1067                        const struct diff_filespec *a,
1068                        const struct diff_filespec *b,
1069                        const char *filename,
1070                        const char *branch1,
1071                        const char *branch2,
1072                        struct merge_file_info *result)
1073{
1074        result->merge = 0;
1075        result->clean = 1;
1076
1077        if ((S_IFMT & a->mode) != (S_IFMT & b->mode)) {
1078                result->clean = 0;
1079                if (S_ISREG(a->mode)) {
1080                        result->mode = a->mode;
1081                        oidcpy(&result->oid, &a->oid);
1082                } else {
1083                        result->mode = b->mode;
1084                        oidcpy(&result->oid, &b->oid);
1085                }
1086        } else {
1087                if (!oid_eq(&a->oid, &one->oid) && !oid_eq(&b->oid, &one->oid))
1088                        result->merge = 1;
1089
1090                /*
1091                 * Merge modes
1092                 */
1093                if (a->mode == b->mode || a->mode == one->mode)
1094                        result->mode = b->mode;
1095                else {
1096                        result->mode = a->mode;
1097                        if (b->mode != one->mode) {
1098                                result->clean = 0;
1099                                result->merge = 1;
1100                        }
1101                }
1102
1103                if (oid_eq(&a->oid, &b->oid) || oid_eq(&a->oid, &one->oid))
1104                        oidcpy(&result->oid, &b->oid);
1105                else if (oid_eq(&b->oid, &one->oid))
1106                        oidcpy(&result->oid, &a->oid);
1107                else if (S_ISREG(a->mode)) {
1108                        mmbuffer_t result_buf;
1109                        int ret = 0, merge_status;
1110
1111                        merge_status = merge_3way(o, &result_buf, one, a, b,
1112                                                  branch1, branch2);
1113
1114                        if ((merge_status < 0) || !result_buf.ptr)
1115                                ret = err(o, _("Failed to execute internal merge"));
1116
1117                        if (!ret &&
1118                            write_object_file(result_buf.ptr, result_buf.size,
1119                                              blob_type, &result->oid))
1120                                ret = err(o, _("Unable to add %s to database"),
1121                                          a->path);
1122
1123                        free(result_buf.ptr);
1124                        if (ret)
1125                                return ret;
1126                        result->clean = (merge_status == 0);
1127                } else if (S_ISGITLINK(a->mode)) {
1128                        result->clean = merge_submodule(&result->oid,
1129                                                       one->path,
1130                                                       &one->oid,
1131                                                       &a->oid,
1132                                                       &b->oid,
1133                                                       !o->call_depth);
1134                } else if (S_ISLNK(a->mode)) {
1135                        switch (o->recursive_variant) {
1136                        case MERGE_RECURSIVE_NORMAL:
1137                                oidcpy(&result->oid, &a->oid);
1138                                if (!oid_eq(&a->oid, &b->oid))
1139                                        result->clean = 0;
1140                                break;
1141                        case MERGE_RECURSIVE_OURS:
1142                                oidcpy(&result->oid, &a->oid);
1143                                break;
1144                        case MERGE_RECURSIVE_THEIRS:
1145                                oidcpy(&result->oid, &b->oid);
1146                                break;
1147                        }
1148                } else
1149                        die("BUG: unsupported object type in the tree");
1150        }
1151
1152        if (result->merge)
1153                output(o, 2, _("Auto-merging %s"), filename);
1154
1155        return 0;
1156}
1157
1158static int merge_file_special_markers(struct merge_options *o,
1159                                      const struct diff_filespec *one,
1160                                      const struct diff_filespec *a,
1161                                      const struct diff_filespec *b,
1162                                      const char *target_filename,
1163                                      const char *branch1,
1164                                      const char *filename1,
1165                                      const char *branch2,
1166                                      const char *filename2,
1167                                      struct merge_file_info *mfi)
1168{
1169        char *side1 = NULL;
1170        char *side2 = NULL;
1171        int ret;
1172
1173        if (filename1)
1174                side1 = xstrfmt("%s:%s", branch1, filename1);
1175        if (filename2)
1176                side2 = xstrfmt("%s:%s", branch2, filename2);
1177
1178        ret = merge_file_1(o, one, a, b, target_filename,
1179                           side1 ? side1 : branch1,
1180                           side2 ? side2 : branch2, mfi);
1181
1182        free(side1);
1183        free(side2);
1184        return ret;
1185}
1186
1187static int merge_file_one(struct merge_options *o,
1188                          const char *path,
1189                          const struct object_id *o_oid, int o_mode,
1190                          const struct object_id *a_oid, int a_mode,
1191                          const struct object_id *b_oid, int b_mode,
1192                          const char *branch1,
1193                          const char *branch2,
1194                          struct merge_file_info *mfi)
1195{
1196        struct diff_filespec one, a, b;
1197
1198        one.path = a.path = b.path = (char *)path;
1199        oidcpy(&one.oid, o_oid);
1200        one.mode = o_mode;
1201        oidcpy(&a.oid, a_oid);
1202        a.mode = a_mode;
1203        oidcpy(&b.oid, b_oid);
1204        b.mode = b_mode;
1205        return merge_file_1(o, &one, &a, &b, path, branch1, branch2, mfi);
1206}
1207
1208static int conflict_rename_dir(struct merge_options *o,
1209                               struct diff_filepair *pair,
1210                               const char *rename_branch,
1211                               const char *other_branch)
1212{
1213        const struct diff_filespec *dest = pair->two;
1214
1215        if (!o->call_depth && would_lose_untracked(dest->path)) {
1216                char *alt_path = unique_path(o, dest->path, rename_branch);
1217
1218                output(o, 1, _("Error: Refusing to lose untracked file at %s; "
1219                               "writing to %s instead."),
1220                       dest->path, alt_path);
1221                /*
1222                 * Write the file in worktree at alt_path, but not in the
1223                 * index.  Instead, write to dest->path for the index but
1224                 * only at the higher appropriate stage.
1225                 */
1226                if (update_file(o, 0, &dest->oid, dest->mode, alt_path))
1227                        return -1;
1228                free(alt_path);
1229                return update_stages(o, dest->path, NULL,
1230                                     rename_branch == o->branch1 ? dest : NULL,
1231                                     rename_branch == o->branch1 ? NULL : dest);
1232        }
1233
1234        /* Update dest->path both in index and in worktree */
1235        if (update_file(o, 1, &dest->oid, dest->mode, dest->path))
1236                return -1;
1237        return 0;
1238}
1239
1240static int handle_change_delete(struct merge_options *o,
1241                                 const char *path, const char *old_path,
1242                                 const struct object_id *o_oid, int o_mode,
1243                                 const struct object_id *changed_oid,
1244                                 int changed_mode,
1245                                 const char *change_branch,
1246                                 const char *delete_branch,
1247                                 const char *change, const char *change_past)
1248{
1249        char *alt_path = NULL;
1250        const char *update_path = path;
1251        int ret = 0;
1252
1253        if (dir_in_way(path, !o->call_depth, 0) ||
1254            (!o->call_depth && would_lose_untracked(path))) {
1255                update_path = alt_path = unique_path(o, path, change_branch);
1256        }
1257
1258        if (o->call_depth) {
1259                /*
1260                 * We cannot arbitrarily accept either a_sha or b_sha as
1261                 * correct; since there is no true "middle point" between
1262                 * them, simply reuse the base version for virtual merge base.
1263                 */
1264                ret = remove_file_from_cache(path);
1265                if (!ret)
1266                        ret = update_file(o, 0, o_oid, o_mode, update_path);
1267        } else {
1268                if (!alt_path) {
1269                        if (!old_path) {
1270                                output(o, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1271                                       "and %s in %s. Version %s of %s left in tree."),
1272                                       change, path, delete_branch, change_past,
1273                                       change_branch, change_branch, path);
1274                        } else {
1275                                output(o, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1276                                       "and %s to %s in %s. Version %s of %s left in tree."),
1277                                       change, old_path, delete_branch, change_past, path,
1278                                       change_branch, change_branch, path);
1279                        }
1280                } else {
1281                        if (!old_path) {
1282                                output(o, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1283                                       "and %s in %s. Version %s of %s left in tree at %s."),
1284                                       change, path, delete_branch, change_past,
1285                                       change_branch, change_branch, path, alt_path);
1286                        } else {
1287                                output(o, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1288                                       "and %s to %s in %s. Version %s of %s left in tree at %s."),
1289                                       change, old_path, delete_branch, change_past, path,
1290                                       change_branch, change_branch, path, alt_path);
1291                        }
1292                }
1293                /*
1294                 * No need to call update_file() on path when change_branch ==
1295                 * o->branch1 && !alt_path, since that would needlessly touch
1296                 * path.  We could call update_file_flags() with update_cache=0
1297                 * and update_wd=0, but that's a no-op.
1298                 */
1299                if (change_branch != o->branch1 || alt_path)
1300                        ret = update_file(o, 0, changed_oid, changed_mode, update_path);
1301        }
1302        free(alt_path);
1303
1304        return ret;
1305}
1306
1307static int conflict_rename_delete(struct merge_options *o,
1308                                   struct diff_filepair *pair,
1309                                   const char *rename_branch,
1310                                   const char *delete_branch)
1311{
1312        const struct diff_filespec *orig = pair->one;
1313        const struct diff_filespec *dest = pair->two;
1314
1315        if (handle_change_delete(o,
1316                                 o->call_depth ? orig->path : dest->path,
1317                                 o->call_depth ? NULL : orig->path,
1318                                 &orig->oid, orig->mode,
1319                                 &dest->oid, dest->mode,
1320                                 rename_branch, delete_branch,
1321                                 _("rename"), _("renamed")))
1322                return -1;
1323
1324        if (o->call_depth)
1325                return remove_file_from_cache(dest->path);
1326        else
1327                return update_stages(o, dest->path, NULL,
1328                                     rename_branch == o->branch1 ? dest : NULL,
1329                                     rename_branch == o->branch1 ? NULL : dest);
1330}
1331
1332static struct diff_filespec *filespec_from_entry(struct diff_filespec *target,
1333                                                 struct stage_data *entry,
1334                                                 int stage)
1335{
1336        struct object_id *oid = &entry->stages[stage].oid;
1337        unsigned mode = entry->stages[stage].mode;
1338        if (mode == 0 || is_null_oid(oid))
1339                return NULL;
1340        oidcpy(&target->oid, oid);
1341        target->mode = mode;
1342        return target;
1343}
1344
1345static int handle_file(struct merge_options *o,
1346                        struct diff_filespec *rename,
1347                        int stage,
1348                        struct rename_conflict_info *ci)
1349{
1350        char *dst_name = rename->path;
1351        struct stage_data *dst_entry;
1352        const char *cur_branch, *other_branch;
1353        struct diff_filespec other;
1354        struct diff_filespec *add;
1355        int ret;
1356
1357        if (stage == 2) {
1358                dst_entry = ci->dst_entry1;
1359                cur_branch = ci->branch1;
1360                other_branch = ci->branch2;
1361        } else {
1362                dst_entry = ci->dst_entry2;
1363                cur_branch = ci->branch2;
1364                other_branch = ci->branch1;
1365        }
1366
1367        add = filespec_from_entry(&other, dst_entry, stage ^ 1);
1368        if (add) {
1369                int ren_src_was_dirty = was_dirty(o, rename->path);
1370                char *add_name = unique_path(o, rename->path, other_branch);
1371                if (update_file(o, 0, &add->oid, add->mode, add_name))
1372                        return -1;
1373
1374                if (ren_src_was_dirty) {
1375                        output(o, 1, _("Refusing to lose dirty file at %s"),
1376                               rename->path);
1377                }
1378                /*
1379                 * Because the double negatives somehow keep confusing me...
1380                 *    1) update_wd iff !ren_src_was_dirty.
1381                 *    2) no_wd iff !update_wd
1382                 *    3) so, no_wd == !!ren_src_was_dirty == ren_src_was_dirty
1383                 */
1384                remove_file(o, 0, rename->path, ren_src_was_dirty);
1385                dst_name = unique_path(o, rename->path, cur_branch);
1386        } else {
1387                if (dir_in_way(rename->path, !o->call_depth, 0)) {
1388                        dst_name = unique_path(o, rename->path, cur_branch);
1389                        output(o, 1, _("%s is a directory in %s adding as %s instead"),
1390                               rename->path, other_branch, dst_name);
1391                } else if (!o->call_depth &&
1392                           would_lose_untracked(rename->path)) {
1393                        dst_name = unique_path(o, rename->path, cur_branch);
1394                        output(o, 1, _("Refusing to lose untracked file at %s; "
1395                                       "adding as %s instead"),
1396                               rename->path, dst_name);
1397                }
1398        }
1399        if ((ret = update_file(o, 0, &rename->oid, rename->mode, dst_name)))
1400                ; /* fall through, do allow dst_name to be released */
1401        else if (stage == 2)
1402                ret = update_stages(o, rename->path, NULL, rename, add);
1403        else
1404                ret = update_stages(o, rename->path, NULL, add, rename);
1405
1406        if (dst_name != rename->path)
1407                free(dst_name);
1408
1409        return ret;
1410}
1411
1412static int conflict_rename_rename_1to2(struct merge_options *o,
1413                                        struct rename_conflict_info *ci)
1414{
1415        /* One file was renamed in both branches, but to different names. */
1416        struct diff_filespec *one = ci->pair1->one;
1417        struct diff_filespec *a = ci->pair1->two;
1418        struct diff_filespec *b = ci->pair2->two;
1419
1420        output(o, 1, _("CONFLICT (rename/rename): "
1421               "Rename \"%s\"->\"%s\" in branch \"%s\" "
1422               "rename \"%s\"->\"%s\" in \"%s\"%s"),
1423               one->path, a->path, ci->branch1,
1424               one->path, b->path, ci->branch2,
1425               o->call_depth ? _(" (left unresolved)") : "");
1426        if (o->call_depth) {
1427                struct merge_file_info mfi;
1428                struct diff_filespec other;
1429                struct diff_filespec *add;
1430                if (merge_file_one(o, one->path,
1431                                 &one->oid, one->mode,
1432                                 &a->oid, a->mode,
1433                                 &b->oid, b->mode,
1434                                 ci->branch1, ci->branch2, &mfi))
1435                        return -1;
1436
1437                /*
1438                 * FIXME: For rename/add-source conflicts (if we could detect
1439                 * such), this is wrong.  We should instead find a unique
1440                 * pathname and then either rename the add-source file to that
1441                 * unique path, or use that unique path instead of src here.
1442                 */
1443                if (update_file(o, 0, &mfi.oid, mfi.mode, one->path))
1444                        return -1;
1445
1446                /*
1447                 * Above, we put the merged content at the merge-base's
1448                 * path.  Now we usually need to delete both a->path and
1449                 * b->path.  However, the rename on each side of the merge
1450                 * could also be involved in a rename/add conflict.  In
1451                 * such cases, we should keep the added file around,
1452                 * resolving the conflict at that path in its favor.
1453                 */
1454                add = filespec_from_entry(&other, ci->dst_entry1, 2 ^ 1);
1455                if (add) {
1456                        if (update_file(o, 0, &add->oid, add->mode, a->path))
1457                                return -1;
1458                }
1459                else
1460                        remove_file_from_cache(a->path);
1461                add = filespec_from_entry(&other, ci->dst_entry2, 3 ^ 1);
1462                if (add) {
1463                        if (update_file(o, 0, &add->oid, add->mode, b->path))
1464                                return -1;
1465                }
1466                else
1467                        remove_file_from_cache(b->path);
1468        } else if (handle_file(o, a, 2, ci) || handle_file(o, b, 3, ci))
1469                return -1;
1470
1471        return 0;
1472}
1473
1474static int conflict_rename_rename_2to1(struct merge_options *o,
1475                                        struct rename_conflict_info *ci)
1476{
1477        /* Two files, a & b, were renamed to the same thing, c. */
1478        struct diff_filespec *a = ci->pair1->one;
1479        struct diff_filespec *b = ci->pair2->one;
1480        struct diff_filespec *c1 = ci->pair1->two;
1481        struct diff_filespec *c2 = ci->pair2->two;
1482        char *path = c1->path; /* == c2->path */
1483        char *path_side_1_desc;
1484        char *path_side_2_desc;
1485        struct merge_file_info mfi_c1;
1486        struct merge_file_info mfi_c2;
1487        int ret;
1488
1489        output(o, 1, _("CONFLICT (rename/rename): "
1490               "Rename %s->%s in %s. "
1491               "Rename %s->%s in %s"),
1492               a->path, c1->path, ci->branch1,
1493               b->path, c2->path, ci->branch2);
1494
1495        remove_file(o, 1, a->path, o->call_depth || would_lose_untracked(a->path));
1496        remove_file(o, 1, b->path, o->call_depth || would_lose_untracked(b->path));
1497
1498        path_side_1_desc = xstrfmt("%s (was %s)", path, a->path);
1499        path_side_2_desc = xstrfmt("%s (was %s)", path, b->path);
1500        if (merge_file_special_markers(o, a, c1, &ci->ren1_other,
1501                                       path_side_1_desc,
1502                                       o->branch1, c1->path,
1503                                       o->branch2, ci->ren1_other.path, &mfi_c1) ||
1504            merge_file_special_markers(o, b, &ci->ren2_other, c2,
1505                                       path_side_2_desc,
1506                                       o->branch1, ci->ren2_other.path,
1507                                       o->branch2, c2->path, &mfi_c2))
1508                return -1;
1509        free(path_side_1_desc);
1510        free(path_side_2_desc);
1511
1512        if (o->call_depth) {
1513                /*
1514                 * If mfi_c1.clean && mfi_c2.clean, then it might make
1515                 * sense to do a two-way merge of those results.  But, I
1516                 * think in all cases, it makes sense to have the virtual
1517                 * merge base just undo the renames; they can be detected
1518                 * again later for the non-recursive merge.
1519                 */
1520                remove_file(o, 0, path, 0);
1521                ret = update_file(o, 0, &mfi_c1.oid, mfi_c1.mode, a->path);
1522                if (!ret)
1523                        ret = update_file(o, 0, &mfi_c2.oid, mfi_c2.mode,
1524                                          b->path);
1525        } else {
1526                char *new_path1 = unique_path(o, path, ci->branch1);
1527                char *new_path2 = unique_path(o, path, ci->branch2);
1528                output(o, 1, _("Renaming %s to %s and %s to %s instead"),
1529                       a->path, new_path1, b->path, new_path2);
1530                if (was_dirty(o, path))
1531                        output(o, 1, _("Refusing to lose dirty file at %s"),
1532                               path);
1533                else if (would_lose_untracked(path))
1534                        /*
1535                         * Only way we get here is if both renames were from
1536                         * a directory rename AND user had an untracked file
1537                         * at the location where both files end up after the
1538                         * two directory renames.  See testcase 10d of t6043.
1539                         */
1540                        output(o, 1, _("Refusing to lose untracked file at "
1541                                       "%s, even though it's in the way."),
1542                               path);
1543                else
1544                        remove_file(o, 0, path, 0);
1545                ret = update_file(o, 0, &mfi_c1.oid, mfi_c1.mode, new_path1);
1546                if (!ret)
1547                        ret = update_file(o, 0, &mfi_c2.oid, mfi_c2.mode,
1548                                          new_path2);
1549                /*
1550                 * unpack_trees() actually populates the index for us for
1551                 * "normal" rename/rename(2to1) situtations so that the
1552                 * correct entries are at the higher stages, which would
1553                 * make the call below to update_stages_for_stage_data
1554                 * unnecessary.  However, if either of the renames came
1555                 * from a directory rename, then unpack_trees() will not
1556                 * have gotten the right data loaded into the index, so we
1557                 * need to do so now.  (While it'd be tempting to move this
1558                 * call to update_stages_for_stage_data() to
1559                 * apply_directory_rename_modifications(), that would break
1560                 * our intermediate calls to would_lose_untracked() since
1561                 * those rely on the current in-memory index.  See also the
1562                 * big "NOTE" in update_stages()).
1563                 */
1564                if (update_stages_for_stage_data(o, path, ci->dst_entry1))
1565                        ret = -1;
1566
1567                free(new_path2);
1568                free(new_path1);
1569        }
1570
1571        return ret;
1572}
1573
1574/*
1575 * Get the diff_filepairs changed between o_tree and tree.
1576 */
1577static struct diff_queue_struct *get_diffpairs(struct merge_options *o,
1578                                               struct tree *o_tree,
1579                                               struct tree *tree)
1580{
1581        struct diff_queue_struct *ret;
1582        struct diff_options opts;
1583
1584        diff_setup(&opts);
1585        opts.flags.recursive = 1;
1586        opts.flags.rename_empty = 0;
1587        opts.detect_rename = DIFF_DETECT_RENAME;
1588        opts.rename_limit = o->merge_rename_limit >= 0 ? o->merge_rename_limit :
1589                            o->diff_rename_limit >= 0 ? o->diff_rename_limit :
1590                            1000;
1591        opts.rename_score = o->rename_score;
1592        opts.show_rename_progress = o->show_rename_progress;
1593        opts.output_format = DIFF_FORMAT_NO_OUTPUT;
1594        diff_setup_done(&opts);
1595        diff_tree_oid(&o_tree->object.oid, &tree->object.oid, "", &opts);
1596        diffcore_std(&opts);
1597        if (opts.needed_rename_limit > o->needed_rename_limit)
1598                o->needed_rename_limit = opts.needed_rename_limit;
1599
1600        ret = xmalloc(sizeof(*ret));
1601        *ret = diff_queued_diff;
1602
1603        opts.output_format = DIFF_FORMAT_NO_OUTPUT;
1604        diff_queued_diff.nr = 0;
1605        diff_queued_diff.queue = NULL;
1606        diff_flush(&opts);
1607        return ret;
1608}
1609
1610static int tree_has_path(struct tree *tree, const char *path)
1611{
1612        struct object_id hashy;
1613        unsigned int mode_o;
1614
1615        return !get_tree_entry(&tree->object.oid, path,
1616                               &hashy, &mode_o);
1617}
1618
1619/*
1620 * Return a new string that replaces the beginning portion (which matches
1621 * entry->dir), with entry->new_dir.  In perl-speak:
1622 *   new_path_name = (old_path =~ s/entry->dir/entry->new_dir/);
1623 * NOTE:
1624 *   Caller must ensure that old_path starts with entry->dir + '/'.
1625 */
1626static char *apply_dir_rename(struct dir_rename_entry *entry,
1627                              const char *old_path)
1628{
1629        struct strbuf new_path = STRBUF_INIT;
1630        int oldlen, newlen;
1631
1632        if (entry->non_unique_new_dir)
1633                return NULL;
1634
1635        oldlen = strlen(entry->dir);
1636        newlen = entry->new_dir.len + (strlen(old_path) - oldlen) + 1;
1637        strbuf_grow(&new_path, newlen);
1638        strbuf_addbuf(&new_path, &entry->new_dir);
1639        strbuf_addstr(&new_path, &old_path[oldlen]);
1640
1641        return strbuf_detach(&new_path, NULL);
1642}
1643
1644static void get_renamed_dir_portion(const char *old_path, const char *new_path,
1645                                    char **old_dir, char **new_dir)
1646{
1647        char *end_of_old, *end_of_new;
1648        int old_len, new_len;
1649
1650        *old_dir = NULL;
1651        *new_dir = NULL;
1652
1653        /*
1654         * For
1655         *    "a/b/c/d/e/foo.c" -> "a/b/some/thing/else/e/foo.c"
1656         * the "e/foo.c" part is the same, we just want to know that
1657         *    "a/b/c/d" was renamed to "a/b/some/thing/else"
1658         * so, for this example, this function returns "a/b/c/d" in
1659         * *old_dir and "a/b/some/thing/else" in *new_dir.
1660         *
1661         * Also, if the basename of the file changed, we don't care.  We
1662         * want to know which portion of the directory, if any, changed.
1663         */
1664        end_of_old = strrchr(old_path, '/');
1665        end_of_new = strrchr(new_path, '/');
1666
1667        if (end_of_old == NULL || end_of_new == NULL)
1668                return;
1669        while (*--end_of_new == *--end_of_old &&
1670               end_of_old != old_path &&
1671               end_of_new != new_path)
1672                ; /* Do nothing; all in the while loop */
1673        /*
1674         * We've found the first non-matching character in the directory
1675         * paths.  That means the current directory we were comparing
1676         * represents the rename.  Move end_of_old and end_of_new back
1677         * to the full directory name.
1678         */
1679        if (*end_of_old == '/')
1680                end_of_old++;
1681        if (*end_of_old != '/')
1682                end_of_new++;
1683        end_of_old = strchr(end_of_old, '/');
1684        end_of_new = strchr(end_of_new, '/');
1685
1686        /*
1687         * It may have been the case that old_path and new_path were the same
1688         * directory all along.  Don't claim a rename if they're the same.
1689         */
1690        old_len = end_of_old - old_path;
1691        new_len = end_of_new - new_path;
1692
1693        if (old_len != new_len || strncmp(old_path, new_path, old_len)) {
1694                *old_dir = xstrndup(old_path, old_len);
1695                *new_dir = xstrndup(new_path, new_len);
1696        }
1697}
1698
1699static void remove_hashmap_entries(struct hashmap *dir_renames,
1700                                   struct string_list *items_to_remove)
1701{
1702        int i;
1703        struct dir_rename_entry *entry;
1704
1705        for (i = 0; i < items_to_remove->nr; i++) {
1706                entry = items_to_remove->items[i].util;
1707                hashmap_remove(dir_renames, entry, NULL);
1708        }
1709        string_list_clear(items_to_remove, 0);
1710}
1711
1712/*
1713 * See if there is a directory rename for path, and if there are any file
1714 * level conflicts for the renamed location.  If there is a rename and
1715 * there are no conflicts, return the new name.  Otherwise, return NULL.
1716 */
1717static char *handle_path_level_conflicts(struct merge_options *o,
1718                                         const char *path,
1719                                         struct dir_rename_entry *entry,
1720                                         struct hashmap *collisions,
1721                                         struct tree *tree)
1722{
1723        char *new_path = NULL;
1724        struct collision_entry *collision_ent;
1725        int clean = 1;
1726        struct strbuf collision_paths = STRBUF_INIT;
1727
1728        /*
1729         * entry has the mapping of old directory name to new directory name
1730         * that we want to apply to path.
1731         */
1732        new_path = apply_dir_rename(entry, path);
1733
1734        if (!new_path) {
1735                /* This should only happen when entry->non_unique_new_dir set */
1736                if (!entry->non_unique_new_dir)
1737                        BUG("entry->non_unqiue_dir not set and !new_path");
1738                output(o, 1, _("CONFLICT (directory rename split): "
1739                               "Unclear where to place %s because directory "
1740                               "%s was renamed to multiple other directories, "
1741                               "with no destination getting a majority of the "
1742                               "files."),
1743                       path, entry->dir);
1744                clean = 0;
1745                return NULL;
1746        }
1747
1748        /*
1749         * The caller needs to have ensured that it has pre-populated
1750         * collisions with all paths that map to new_path.  Do a quick check
1751         * to ensure that's the case.
1752         */
1753        collision_ent = collision_find_entry(collisions, new_path);
1754        if (collision_ent == NULL)
1755                BUG("collision_ent is NULL");
1756
1757        /*
1758         * Check for one-sided add/add/.../add conflicts, i.e.
1759         * where implicit renames from the other side doing
1760         * directory rename(s) can affect this side of history
1761         * to put multiple paths into the same location.  Warn
1762         * and bail on directory renames for such paths.
1763         */
1764        if (collision_ent->reported_already) {
1765                clean = 0;
1766        } else if (tree_has_path(tree, new_path)) {
1767                collision_ent->reported_already = 1;
1768                strbuf_add_separated_string_list(&collision_paths, ", ",
1769                                                 &collision_ent->source_files);
1770                output(o, 1, _("CONFLICT (implicit dir rename): Existing "
1771                               "file/dir at %s in the way of implicit "
1772                               "directory rename(s) putting the following "
1773                               "path(s) there: %s."),
1774                       new_path, collision_paths.buf);
1775                clean = 0;
1776        } else if (collision_ent->source_files.nr > 1) {
1777                collision_ent->reported_already = 1;
1778                strbuf_add_separated_string_list(&collision_paths, ", ",
1779                                                 &collision_ent->source_files);
1780                output(o, 1, _("CONFLICT (implicit dir rename): Cannot map "
1781                               "more than one path to %s; implicit directory "
1782                               "renames tried to put these paths there: %s"),
1783                       new_path, collision_paths.buf);
1784                clean = 0;
1785        }
1786
1787        /* Free memory we no longer need */
1788        strbuf_release(&collision_paths);
1789        if (!clean && new_path) {
1790                free(new_path);
1791                return NULL;
1792        }
1793
1794        return new_path;
1795}
1796
1797/*
1798 * There are a couple things we want to do at the directory level:
1799 *   1. Check for both sides renaming to the same thing, in order to avoid
1800 *      implicit renaming of files that should be left in place.  (See
1801 *      testcase 6b in t6043 for details.)
1802 *   2. Prune directory renames if there are still files left in the
1803 *      the original directory.  These represent a partial directory rename,
1804 *      i.e. a rename where only some of the files within the directory
1805 *      were renamed elsewhere.  (Technically, this could be done earlier
1806 *      in get_directory_renames(), except that would prevent us from
1807 *      doing the previous check and thus failing testcase 6b.)
1808 *   3. Check for rename/rename(1to2) conflicts (at the directory level).
1809 *      In the future, we could potentially record this info as well and
1810 *      omit reporting rename/rename(1to2) conflicts for each path within
1811 *      the affected directories, thus cleaning up the merge output.
1812 *   NOTE: We do NOT check for rename/rename(2to1) conflicts at the
1813 *         directory level, because merging directories is fine.  If it
1814 *         causes conflicts for files within those merged directories, then
1815 *         that should be detected at the individual path level.
1816 */
1817static void handle_directory_level_conflicts(struct merge_options *o,
1818                                             struct hashmap *dir_re_head,
1819                                             struct tree *head,
1820                                             struct hashmap *dir_re_merge,
1821                                             struct tree *merge)
1822{
1823        struct hashmap_iter iter;
1824        struct dir_rename_entry *head_ent;
1825        struct dir_rename_entry *merge_ent;
1826
1827        struct string_list remove_from_head = STRING_LIST_INIT_NODUP;
1828        struct string_list remove_from_merge = STRING_LIST_INIT_NODUP;
1829
1830        hashmap_iter_init(dir_re_head, &iter);
1831        while ((head_ent = hashmap_iter_next(&iter))) {
1832                merge_ent = dir_rename_find_entry(dir_re_merge, head_ent->dir);
1833                if (merge_ent &&
1834                    !head_ent->non_unique_new_dir &&
1835                    !merge_ent->non_unique_new_dir &&
1836                    !strbuf_cmp(&head_ent->new_dir, &merge_ent->new_dir)) {
1837                        /* 1. Renamed identically; remove it from both sides */
1838                        string_list_append(&remove_from_head,
1839                                           head_ent->dir)->util = head_ent;
1840                        strbuf_release(&head_ent->new_dir);
1841                        string_list_append(&remove_from_merge,
1842                                           merge_ent->dir)->util = merge_ent;
1843                        strbuf_release(&merge_ent->new_dir);
1844                } else if (tree_has_path(head, head_ent->dir)) {
1845                        /* 2. This wasn't a directory rename after all */
1846                        string_list_append(&remove_from_head,
1847                                           head_ent->dir)->util = head_ent;
1848                        strbuf_release(&head_ent->new_dir);
1849                }
1850        }
1851
1852        remove_hashmap_entries(dir_re_head, &remove_from_head);
1853        remove_hashmap_entries(dir_re_merge, &remove_from_merge);
1854
1855        hashmap_iter_init(dir_re_merge, &iter);
1856        while ((merge_ent = hashmap_iter_next(&iter))) {
1857                head_ent = dir_rename_find_entry(dir_re_head, merge_ent->dir);
1858                if (tree_has_path(merge, merge_ent->dir)) {
1859                        /* 2. This wasn't a directory rename after all */
1860                        string_list_append(&remove_from_merge,
1861                                           merge_ent->dir)->util = merge_ent;
1862                } else if (head_ent &&
1863                           !head_ent->non_unique_new_dir &&
1864                           !merge_ent->non_unique_new_dir) {
1865                        /* 3. rename/rename(1to2) */
1866                        /*
1867                         * We can assume it's not rename/rename(1to1) because
1868                         * that was case (1), already checked above.  So we
1869                         * know that head_ent->new_dir and merge_ent->new_dir
1870                         * are different strings.
1871                         */
1872                        output(o, 1, _("CONFLICT (rename/rename): "
1873                                       "Rename directory %s->%s in %s. "
1874                                       "Rename directory %s->%s in %s"),
1875                               head_ent->dir, head_ent->new_dir.buf, o->branch1,
1876                               head_ent->dir, merge_ent->new_dir.buf, o->branch2);
1877                        string_list_append(&remove_from_head,
1878                                           head_ent->dir)->util = head_ent;
1879                        strbuf_release(&head_ent->new_dir);
1880                        string_list_append(&remove_from_merge,
1881                                           merge_ent->dir)->util = merge_ent;
1882                        strbuf_release(&merge_ent->new_dir);
1883                }
1884        }
1885
1886        remove_hashmap_entries(dir_re_head, &remove_from_head);
1887        remove_hashmap_entries(dir_re_merge, &remove_from_merge);
1888}
1889
1890static struct hashmap *get_directory_renames(struct diff_queue_struct *pairs,
1891                                             struct tree *tree)
1892{
1893        struct hashmap *dir_renames;
1894        struct hashmap_iter iter;
1895        struct dir_rename_entry *entry;
1896        int i;
1897
1898        /*
1899         * Typically, we think of a directory rename as all files from a
1900         * certain directory being moved to a target directory.  However,
1901         * what if someone first moved two files from the original
1902         * directory in one commit, and then renamed the directory
1903         * somewhere else in a later commit?  At merge time, we just know
1904         * that files from the original directory went to two different
1905         * places, and that the bulk of them ended up in the same place.
1906         * We want each directory rename to represent where the bulk of the
1907         * files from that directory end up; this function exists to find
1908         * where the bulk of the files went.
1909         *
1910         * The first loop below simply iterates through the list of file
1911         * renames, finding out how often each directory rename pair
1912         * possibility occurs.
1913         */
1914        dir_renames = xmalloc(sizeof(*dir_renames));
1915        dir_rename_init(dir_renames);
1916        for (i = 0; i < pairs->nr; ++i) {
1917                struct string_list_item *item;
1918                int *count;
1919                struct diff_filepair *pair = pairs->queue[i];
1920                char *old_dir, *new_dir;
1921
1922                /* File not part of directory rename if it wasn't renamed */
1923                if (pair->status != 'R')
1924                        continue;
1925
1926                get_renamed_dir_portion(pair->one->path, pair->two->path,
1927                                        &old_dir,        &new_dir);
1928                if (!old_dir)
1929                        /* Directory didn't change at all; ignore this one. */
1930                        continue;
1931
1932                entry = dir_rename_find_entry(dir_renames, old_dir);
1933                if (!entry) {
1934                        entry = xmalloc(sizeof(*entry));
1935                        dir_rename_entry_init(entry, old_dir);
1936                        hashmap_put(dir_renames, entry);
1937                } else {
1938                        free(old_dir);
1939                }
1940                item = string_list_lookup(&entry->possible_new_dirs, new_dir);
1941                if (!item) {
1942                        item = string_list_insert(&entry->possible_new_dirs,
1943                                                  new_dir);
1944                        item->util = xcalloc(1, sizeof(int));
1945                } else {
1946                        free(new_dir);
1947                }
1948                count = item->util;
1949                *count += 1;
1950        }
1951
1952        /*
1953         * For each directory with files moved out of it, we find out which
1954         * target directory received the most files so we can declare it to
1955         * be the "winning" target location for the directory rename.  This
1956         * winner gets recorded in new_dir.  If there is no winner
1957         * (multiple target directories received the same number of files),
1958         * we set non_unique_new_dir.  Once we've determined the winner (or
1959         * that there is no winner), we no longer need possible_new_dirs.
1960         */
1961        hashmap_iter_init(dir_renames, &iter);
1962        while ((entry = hashmap_iter_next(&iter))) {
1963                int max = 0;
1964                int bad_max = 0;
1965                char *best = NULL;
1966
1967                for (i = 0; i < entry->possible_new_dirs.nr; i++) {
1968                        int *count = entry->possible_new_dirs.items[i].util;
1969
1970                        if (*count == max)
1971                                bad_max = max;
1972                        else if (*count > max) {
1973                                max = *count;
1974                                best = entry->possible_new_dirs.items[i].string;
1975                        }
1976                }
1977                if (bad_max == max)
1978                        entry->non_unique_new_dir = 1;
1979                else {
1980                        assert(entry->new_dir.len == 0);
1981                        strbuf_addstr(&entry->new_dir, best);
1982                }
1983                /*
1984                 * The relevant directory sub-portion of the original full
1985                 * filepaths were xstrndup'ed before inserting into
1986                 * possible_new_dirs, and instead of manually iterating the
1987                 * list and free'ing each, just lie and tell
1988                 * possible_new_dirs that it did the strdup'ing so that it
1989                 * will free them for us.
1990                 */
1991                entry->possible_new_dirs.strdup_strings = 1;
1992                string_list_clear(&entry->possible_new_dirs, 1);
1993        }
1994
1995        return dir_renames;
1996}
1997
1998static struct dir_rename_entry *check_dir_renamed(const char *path,
1999                                                  struct hashmap *dir_renames)
2000{
2001        char temp[PATH_MAX];
2002        char *end;
2003        struct dir_rename_entry *entry;
2004
2005        strcpy(temp, path);
2006        while ((end = strrchr(temp, '/'))) {
2007                *end = '\0';
2008                entry = dir_rename_find_entry(dir_renames, temp);
2009                if (entry)
2010                        return entry;
2011        }
2012        return NULL;
2013}
2014
2015static void compute_collisions(struct hashmap *collisions,
2016                               struct hashmap *dir_renames,
2017                               struct diff_queue_struct *pairs)
2018{
2019        int i;
2020
2021        /*
2022         * Multiple files can be mapped to the same path due to directory
2023         * renames done by the other side of history.  Since that other
2024         * side of history could have merged multiple directories into one,
2025         * if our side of history added the same file basename to each of
2026         * those directories, then all N of them would get implicitly
2027         * renamed by the directory rename detection into the same path,
2028         * and we'd get an add/add/.../add conflict, and all those adds
2029         * from *this* side of history.  This is not representable in the
2030         * index, and users aren't going to easily be able to make sense of
2031         * it.  So we need to provide a good warning about what's
2032         * happening, and fall back to no-directory-rename detection
2033         * behavior for those paths.
2034         *
2035         * See testcases 9e and all of section 5 from t6043 for examples.
2036         */
2037        collision_init(collisions);
2038
2039        for (i = 0; i < pairs->nr; ++i) {
2040                struct dir_rename_entry *dir_rename_ent;
2041                struct collision_entry *collision_ent;
2042                char *new_path;
2043                struct diff_filepair *pair = pairs->queue[i];
2044
2045                if (pair->status != 'A' && pair->status != 'R')
2046                        continue;
2047                dir_rename_ent = check_dir_renamed(pair->two->path,
2048                                                   dir_renames);
2049                if (!dir_rename_ent)
2050                        continue;
2051
2052                new_path = apply_dir_rename(dir_rename_ent, pair->two->path);
2053                if (!new_path)
2054                        /*
2055                         * dir_rename_ent->non_unique_new_path is true, which
2056                         * means there is no directory rename for us to use,
2057                         * which means it won't cause us any additional
2058                         * collisions.
2059                         */
2060                        continue;
2061                collision_ent = collision_find_entry(collisions, new_path);
2062                if (!collision_ent) {
2063                        collision_ent = xcalloc(1,
2064                                                sizeof(struct collision_entry));
2065                        hashmap_entry_init(collision_ent, strhash(new_path));
2066                        hashmap_put(collisions, collision_ent);
2067                        collision_ent->target_file = new_path;
2068                } else {
2069                        free(new_path);
2070                }
2071                string_list_insert(&collision_ent->source_files,
2072                                   pair->two->path);
2073        }
2074}
2075
2076static char *check_for_directory_rename(struct merge_options *o,
2077                                        const char *path,
2078                                        struct tree *tree,
2079                                        struct hashmap *dir_renames,
2080                                        struct hashmap *dir_rename_exclusions,
2081                                        struct hashmap *collisions,
2082                                        int *clean_merge)
2083{
2084        char *new_path = NULL;
2085        struct dir_rename_entry *entry = check_dir_renamed(path, dir_renames);
2086        struct dir_rename_entry *oentry = NULL;
2087
2088        if (!entry)
2089                return new_path;
2090
2091        /*
2092         * This next part is a little weird.  We do not want to do an
2093         * implicit rename into a directory we renamed on our side, because
2094         * that will result in a spurious rename/rename(1to2) conflict.  An
2095         * example:
2096         *   Base commit: dumbdir/afile, otherdir/bfile
2097         *   Side 1:      smrtdir/afile, otherdir/bfile
2098         *   Side 2:      dumbdir/afile, dumbdir/bfile
2099         * Here, while working on Side 1, we could notice that otherdir was
2100         * renamed/merged to dumbdir, and change the diff_filepair for
2101         * otherdir/bfile into a rename into dumbdir/bfile.  However, Side
2102         * 2 will notice the rename from dumbdir to smrtdir, and do the
2103         * transitive rename to move it from dumbdir/bfile to
2104         * smrtdir/bfile.  That gives us bfile in dumbdir vs being in
2105         * smrtdir, a rename/rename(1to2) conflict.  We really just want
2106         * the file to end up in smrtdir.  And the way to achieve that is
2107         * to not let Side1 do the rename to dumbdir, since we know that is
2108         * the source of one of our directory renames.
2109         *
2110         * That's why oentry and dir_rename_exclusions is here.
2111         *
2112         * As it turns out, this also prevents N-way transient rename
2113         * confusion; See testcases 9c and 9d of t6043.
2114         */
2115        oentry = dir_rename_find_entry(dir_rename_exclusions, entry->new_dir.buf);
2116        if (oentry) {
2117                output(o, 1, _("WARNING: Avoiding applying %s -> %s rename "
2118                               "to %s, because %s itself was renamed."),
2119                       entry->dir, entry->new_dir.buf, path, entry->new_dir.buf);
2120        } else {
2121                new_path = handle_path_level_conflicts(o, path, entry,
2122                                                       collisions, tree);
2123                *clean_merge &= (new_path != NULL);
2124        }
2125
2126        return new_path;
2127}
2128
2129static void apply_directory_rename_modifications(struct merge_options *o,
2130                                                 struct diff_filepair *pair,
2131                                                 char *new_path,
2132                                                 struct rename *re,
2133                                                 struct tree *tree,
2134                                                 struct tree *o_tree,
2135                                                 struct tree *a_tree,
2136                                                 struct tree *b_tree,
2137                                                 struct string_list *entries,
2138                                                 int *clean)
2139{
2140        struct string_list_item *item;
2141        int stage = (tree == a_tree ? 2 : 3);
2142        int update_wd;
2143
2144        /*
2145         * In all cases where we can do directory rename detection,
2146         * unpack_trees() will have read pair->two->path into the
2147         * index and the working copy.  We need to remove it so that
2148         * we can instead place it at new_path.  It is guaranteed to
2149         * not be untracked (unpack_trees() would have errored out
2150         * saying the file would have been overwritten), but it might
2151         * be dirty, though.
2152         */
2153        update_wd = !was_dirty(o, pair->two->path);
2154        if (!update_wd)
2155                output(o, 1, _("Refusing to lose dirty file at %s"),
2156                       pair->two->path);
2157        remove_file(o, 1, pair->two->path, !update_wd);
2158
2159        /* Find or create a new re->dst_entry */
2160        item = string_list_lookup(entries, new_path);
2161        if (item) {
2162                /*
2163                 * Since we're renaming on this side of history, and it's
2164                 * due to a directory rename on the other side of history
2165                 * (which we only allow when the directory in question no
2166                 * longer exists on the other side of history), the
2167                 * original entry for re->dst_entry is no longer
2168                 * necessary...
2169                 */
2170                re->dst_entry->processed = 1;
2171
2172                /*
2173                 * ...because we'll be using this new one.
2174                 */
2175                re->dst_entry = item->util;
2176        } else {
2177                /*
2178                 * re->dst_entry is for the before-dir-rename path, and we
2179                 * need it to hold information for the after-dir-rename
2180                 * path.  Before creating a new entry, we need to mark the
2181                 * old one as unnecessary (...unless it is shared by
2182                 * src_entry, i.e. this didn't use to be a rename, in which
2183                 * case we can just allow the normal processing to happen
2184                 * for it).
2185                 */
2186                if (pair->status == 'R')
2187                        re->dst_entry->processed = 1;
2188
2189                re->dst_entry = insert_stage_data(new_path,
2190                                                  o_tree, a_tree, b_tree,
2191                                                  entries);
2192                item = string_list_insert(entries, new_path);
2193                item->util = re->dst_entry;
2194        }
2195
2196        /*
2197         * Update the stage_data with the information about the path we are
2198         * moving into place.  That slot will be empty and available for us
2199         * to write to because of the collision checks in
2200         * handle_path_level_conflicts().  In other words,
2201         * re->dst_entry->stages[stage].oid will be the null_oid, so it's
2202         * open for us to write to.
2203         *
2204         * It may be tempting to actually update the index at this point as
2205         * well, using update_stages_for_stage_data(), but as per the big
2206         * "NOTE" in update_stages(), doing so will modify the current
2207         * in-memory index which will break calls to would_lose_untracked()
2208         * that we need to make.  Instead, we need to just make sure that
2209         * the various conflict_rename_*() functions update the index
2210         * explicitly rather than relying on unpack_trees() to have done it.
2211         */
2212        get_tree_entry(&tree->object.oid,
2213                       pair->two->path,
2214                       &re->dst_entry->stages[stage].oid,
2215                       &re->dst_entry->stages[stage].mode);
2216
2217        /* Update pair status */
2218        if (pair->status == 'A') {
2219                /*
2220                 * Recording rename information for this add makes it look
2221                 * like a rename/delete conflict.  Make sure we can
2222                 * correctly handle this as an add that was moved to a new
2223                 * directory instead of reporting a rename/delete conflict.
2224                 */
2225                re->add_turned_into_rename = 1;
2226        }
2227        /*
2228         * We don't actually look at pair->status again, but it seems
2229         * pedagogically correct to adjust it.
2230         */
2231        pair->status = 'R';
2232
2233        /*
2234         * Finally, record the new location.
2235         */
2236        pair->two->path = new_path;
2237}
2238
2239/*
2240 * Get information of all renames which occurred in 'pairs', making use of
2241 * any implicit directory renames inferred from the other side of history.
2242 * We need the three trees in the merge ('o_tree', 'a_tree' and 'b_tree')
2243 * to be able to associate the correct cache entries with the rename
2244 * information; tree is always equal to either a_tree or b_tree.
2245 */
2246static struct string_list *get_renames(struct merge_options *o,
2247                                       struct diff_queue_struct *pairs,
2248                                       struct hashmap *dir_renames,
2249                                       struct hashmap *dir_rename_exclusions,
2250                                       struct tree *tree,
2251                                       struct tree *o_tree,
2252                                       struct tree *a_tree,
2253                                       struct tree *b_tree,
2254                                       struct string_list *entries,
2255                                       int *clean_merge)
2256{
2257        int i;
2258        struct hashmap collisions;
2259        struct hashmap_iter iter;
2260        struct collision_entry *e;
2261        struct string_list *renames;
2262
2263        compute_collisions(&collisions, dir_renames, pairs);
2264        renames = xcalloc(1, sizeof(struct string_list));
2265
2266        for (i = 0; i < pairs->nr; ++i) {
2267                struct string_list_item *item;
2268                struct rename *re;
2269                struct diff_filepair *pair = pairs->queue[i];
2270                char *new_path; /* non-NULL only with directory renames */
2271
2272                if (pair->status != 'A' && pair->status != 'R') {
2273                        diff_free_filepair(pair);
2274                        continue;
2275                }
2276                new_path = check_for_directory_rename(o, pair->two->path, tree,
2277                                                      dir_renames,
2278                                                      dir_rename_exclusions,
2279                                                      &collisions,
2280                                                      clean_merge);
2281                if (pair->status != 'R' && !new_path) {
2282                        diff_free_filepair(pair);
2283                        continue;
2284                }
2285
2286                re = xmalloc(sizeof(*re));
2287                re->processed = 0;
2288                re->add_turned_into_rename = 0;
2289                re->pair = pair;
2290                item = string_list_lookup(entries, re->pair->one->path);
2291                if (!item)
2292                        re->src_entry = insert_stage_data(re->pair->one->path,
2293                                        o_tree, a_tree, b_tree, entries);
2294                else
2295                        re->src_entry = item->util;
2296
2297                item = string_list_lookup(entries, re->pair->two->path);
2298                if (!item)
2299                        re->dst_entry = insert_stage_data(re->pair->two->path,
2300                                        o_tree, a_tree, b_tree, entries);
2301                else
2302                        re->dst_entry = item->util;
2303                item = string_list_insert(renames, pair->one->path);
2304                item->util = re;
2305                if (new_path)
2306                        apply_directory_rename_modifications(o, pair, new_path,
2307                                                             re, tree, o_tree,
2308                                                             a_tree, b_tree,
2309                                                             entries,
2310                                                             clean_merge);
2311        }
2312
2313        hashmap_iter_init(&collisions, &iter);
2314        while ((e = hashmap_iter_next(&iter))) {
2315                free(e->target_file);
2316                string_list_clear(&e->source_files, 0);
2317        }
2318        hashmap_free(&collisions, 1);
2319        return renames;
2320}
2321
2322static int process_renames(struct merge_options *o,
2323                           struct string_list *a_renames,
2324                           struct string_list *b_renames)
2325{
2326        int clean_merge = 1, i, j;
2327        struct string_list a_by_dst = STRING_LIST_INIT_NODUP;
2328        struct string_list b_by_dst = STRING_LIST_INIT_NODUP;
2329        const struct rename *sre;
2330
2331        for (i = 0; i < a_renames->nr; i++) {
2332                sre = a_renames->items[i].util;
2333                string_list_insert(&a_by_dst, sre->pair->two->path)->util
2334                        = (void *)sre;
2335        }
2336        for (i = 0; i < b_renames->nr; i++) {
2337                sre = b_renames->items[i].util;
2338                string_list_insert(&b_by_dst, sre->pair->two->path)->util
2339                        = (void *)sre;
2340        }
2341
2342        for (i = 0, j = 0; i < a_renames->nr || j < b_renames->nr;) {
2343                struct string_list *renames1, *renames2Dst;
2344                struct rename *ren1 = NULL, *ren2 = NULL;
2345                const char *branch1, *branch2;
2346                const char *ren1_src, *ren1_dst;
2347                struct string_list_item *lookup;
2348
2349                if (i >= a_renames->nr) {
2350                        ren2 = b_renames->items[j++].util;
2351                } else if (j >= b_renames->nr) {
2352                        ren1 = a_renames->items[i++].util;
2353                } else {
2354                        int compare = strcmp(a_renames->items[i].string,
2355                                             b_renames->items[j].string);
2356                        if (compare <= 0)
2357                                ren1 = a_renames->items[i++].util;
2358                        if (compare >= 0)
2359                                ren2 = b_renames->items[j++].util;
2360                }
2361
2362                /* TODO: refactor, so that 1/2 are not needed */
2363                if (ren1) {
2364                        renames1 = a_renames;
2365                        renames2Dst = &b_by_dst;
2366                        branch1 = o->branch1;
2367                        branch2 = o->branch2;
2368                } else {
2369                        renames1 = b_renames;
2370                        renames2Dst = &a_by_dst;
2371                        branch1 = o->branch2;
2372                        branch2 = o->branch1;
2373                        SWAP(ren2, ren1);
2374                }
2375
2376                if (ren1->processed)
2377                        continue;
2378                ren1->processed = 1;
2379                ren1->dst_entry->processed = 1;
2380                /* BUG: We should only mark src_entry as processed if we
2381                 * are not dealing with a rename + add-source case.
2382                 */
2383                ren1->src_entry->processed = 1;
2384
2385                ren1_src = ren1->pair->one->path;
2386                ren1_dst = ren1->pair->two->path;
2387
2388                if (ren2) {
2389                        /* One file renamed on both sides */
2390                        const char *ren2_src = ren2->pair->one->path;
2391                        const char *ren2_dst = ren2->pair->two->path;
2392                        enum rename_type rename_type;
2393                        if (strcmp(ren1_src, ren2_src) != 0)
2394                                die("BUG: ren1_src != ren2_src");
2395                        ren2->dst_entry->processed = 1;
2396                        ren2->processed = 1;
2397                        if (strcmp(ren1_dst, ren2_dst) != 0) {
2398                                rename_type = RENAME_ONE_FILE_TO_TWO;
2399                                clean_merge = 0;
2400                        } else {
2401                                rename_type = RENAME_ONE_FILE_TO_ONE;
2402                                /* BUG: We should only remove ren1_src in
2403                                 * the base stage (think of rename +
2404                                 * add-source cases).
2405                                 */
2406                                remove_file(o, 1, ren1_src, 1);
2407                                update_entry(ren1->dst_entry,
2408                                             ren1->pair->one,
2409                                             ren1->pair->two,
2410                                             ren2->pair->two);
2411                        }
2412                        setup_rename_conflict_info(rename_type,
2413                                                   ren1->pair,
2414                                                   ren2->pair,
2415                                                   branch1,
2416                                                   branch2,
2417                                                   ren1->dst_entry,
2418                                                   ren2->dst_entry,
2419                                                   o,
2420                                                   NULL,
2421                                                   NULL);
2422                } else if ((lookup = string_list_lookup(renames2Dst, ren1_dst))) {
2423                        /* Two different files renamed to the same thing */
2424                        char *ren2_dst;
2425                        ren2 = lookup->util;
2426                        ren2_dst = ren2->pair->two->path;
2427                        if (strcmp(ren1_dst, ren2_dst) != 0)
2428                                die("BUG: ren1_dst != ren2_dst");
2429
2430                        clean_merge = 0;
2431                        ren2->processed = 1;
2432                        /*
2433                         * BUG: We should only mark src_entry as processed
2434                         * if we are not dealing with a rename + add-source
2435                         * case.
2436                         */
2437                        ren2->src_entry->processed = 1;
2438
2439                        setup_rename_conflict_info(RENAME_TWO_FILES_TO_ONE,
2440                                                   ren1->pair,
2441                                                   ren2->pair,
2442                                                   branch1,
2443                                                   branch2,
2444                                                   ren1->dst_entry,
2445                                                   ren2->dst_entry,
2446                                                   o,
2447                                                   ren1->src_entry,
2448                                                   ren2->src_entry);
2449
2450                } else {
2451                        /* Renamed in 1, maybe changed in 2 */
2452                        /* we only use sha1 and mode of these */
2453                        struct diff_filespec src_other, dst_other;
2454                        int try_merge;
2455
2456                        /*
2457                         * unpack_trees loads entries from common-commit
2458                         * into stage 1, from head-commit into stage 2, and
2459                         * from merge-commit into stage 3.  We keep track
2460                         * of which side corresponds to the rename.
2461                         */
2462                        int renamed_stage = a_renames == renames1 ? 2 : 3;
2463                        int other_stage =   a_renames == renames1 ? 3 : 2;
2464
2465                        /* BUG: We should only remove ren1_src in the base
2466                         * stage and in other_stage (think of rename +
2467                         * add-source case).
2468                         */
2469                        remove_file(o, 1, ren1_src,
2470                                    renamed_stage == 2 || !was_tracked(o, ren1_src));
2471
2472                        oidcpy(&src_other.oid,
2473                               &ren1->src_entry->stages[other_stage].oid);
2474                        src_other.mode = ren1->src_entry->stages[other_stage].mode;
2475                        oidcpy(&dst_other.oid,
2476                               &ren1->dst_entry->stages[other_stage].oid);
2477                        dst_other.mode = ren1->dst_entry->stages[other_stage].mode;
2478                        try_merge = 0;
2479
2480                        if (oid_eq(&src_other.oid, &null_oid) &&
2481                            ren1->add_turned_into_rename) {
2482                                setup_rename_conflict_info(RENAME_DIR,
2483                                                           ren1->pair,
2484                                                           NULL,
2485                                                           branch1,
2486                                                           branch2,
2487                                                           ren1->dst_entry,
2488                                                           NULL,
2489                                                           o,
2490                                                           NULL,
2491                                                           NULL);
2492                        } else if (oid_eq(&src_other.oid, &null_oid)) {
2493                                setup_rename_conflict_info(RENAME_DELETE,
2494                                                           ren1->pair,
2495                                                           NULL,
2496                                                           branch1,
2497                                                           branch2,
2498                                                           ren1->dst_entry,
2499                                                           NULL,
2500                                                           o,
2501                                                           NULL,
2502                                                           NULL);
2503                        } else if ((dst_other.mode == ren1->pair->two->mode) &&
2504                                   oid_eq(&dst_other.oid, &ren1->pair->two->oid)) {
2505                                /*
2506                                 * Added file on the other side identical to
2507                                 * the file being renamed: clean merge.
2508                                 * Also, there is no need to overwrite the
2509                                 * file already in the working copy, so call
2510                                 * update_file_flags() instead of
2511                                 * update_file().
2512                                 */
2513                                if (update_file_flags(o,
2514                                                      &ren1->pair->two->oid,
2515                                                      ren1->pair->two->mode,
2516                                                      ren1_dst,
2517                                                      1, /* update_cache */
2518                                                      0  /* update_wd    */))
2519                                        clean_merge = -1;
2520                        } else if (!oid_eq(&dst_other.oid, &null_oid)) {
2521                                clean_merge = 0;
2522                                try_merge = 1;
2523                                output(o, 1, _("CONFLICT (rename/add): Rename %s->%s in %s. "
2524                                       "%s added in %s"),
2525                                       ren1_src, ren1_dst, branch1,
2526                                       ren1_dst, branch2);
2527                                if (o->call_depth) {
2528                                        struct merge_file_info mfi;
2529                                        if (merge_file_one(o, ren1_dst, &null_oid, 0,
2530                                                           &ren1->pair->two->oid,
2531                                                           ren1->pair->two->mode,
2532                                                           &dst_other.oid,
2533                                                           dst_other.mode,
2534                                                           branch1, branch2, &mfi)) {
2535                                                clean_merge = -1;
2536                                                goto cleanup_and_return;
2537                                        }
2538                                        output(o, 1, _("Adding merged %s"), ren1_dst);
2539                                        if (update_file(o, 0, &mfi.oid,
2540                                                        mfi.mode, ren1_dst))
2541                                                clean_merge = -1;
2542                                        try_merge = 0;
2543                                } else {
2544                                        char *new_path = unique_path(o, ren1_dst, branch2);
2545                                        output(o, 1, _("Adding as %s instead"), new_path);
2546                                        if (update_file(o, 0, &dst_other.oid,
2547                                                        dst_other.mode, new_path))
2548                                                clean_merge = -1;
2549                                        free(new_path);
2550                                }
2551                        } else
2552                                try_merge = 1;
2553
2554                        if (clean_merge < 0)
2555                                goto cleanup_and_return;
2556                        if (try_merge) {
2557                                struct diff_filespec *one, *a, *b;
2558                                src_other.path = (char *)ren1_src;
2559
2560                                one = ren1->pair->one;
2561                                if (a_renames == renames1) {
2562                                        a = ren1->pair->two;
2563                                        b = &src_other;
2564                                } else {
2565                                        b = ren1->pair->two;
2566                                        a = &src_other;
2567                                }
2568                                update_entry(ren1->dst_entry, one, a, b);
2569                                setup_rename_conflict_info(RENAME_NORMAL,
2570                                                           ren1->pair,
2571                                                           NULL,
2572                                                           branch1,
2573                                                           NULL,
2574                                                           ren1->dst_entry,
2575                                                           NULL,
2576                                                           o,
2577                                                           NULL,
2578                                                           NULL);
2579                        }
2580                }
2581        }
2582cleanup_and_return:
2583        string_list_clear(&a_by_dst, 0);
2584        string_list_clear(&b_by_dst, 0);
2585
2586        return clean_merge;
2587}
2588
2589struct rename_info {
2590        struct string_list *head_renames;
2591        struct string_list *merge_renames;
2592};
2593
2594static void initial_cleanup_rename(struct diff_queue_struct *pairs,
2595                                   struct hashmap *dir_renames)
2596{
2597        struct hashmap_iter iter;
2598        struct dir_rename_entry *e;
2599
2600        hashmap_iter_init(dir_renames, &iter);
2601        while ((e = hashmap_iter_next(&iter))) {
2602                free(e->dir);
2603                strbuf_release(&e->new_dir);
2604                /* possible_new_dirs already cleared in get_directory_renames */
2605        }
2606        hashmap_free(dir_renames, 1);
2607        free(dir_renames);
2608
2609        free(pairs->queue);
2610        free(pairs);
2611}
2612
2613static int handle_renames(struct merge_options *o,
2614                          struct tree *common,
2615                          struct tree *head,
2616                          struct tree *merge,
2617                          struct string_list *entries,
2618                          struct rename_info *ri)
2619{
2620        struct diff_queue_struct *head_pairs, *merge_pairs;
2621        struct hashmap *dir_re_head, *dir_re_merge;
2622        int clean = 1;
2623
2624        ri->head_renames = NULL;
2625        ri->merge_renames = NULL;
2626
2627        if (!o->detect_rename)
2628                return 1;
2629
2630        head_pairs = get_diffpairs(o, common, head);
2631        merge_pairs = get_diffpairs(o, common, merge);
2632
2633        dir_re_head = get_directory_renames(head_pairs, head);
2634        dir_re_merge = get_directory_renames(merge_pairs, merge);
2635
2636        handle_directory_level_conflicts(o,
2637                                         dir_re_head, head,
2638                                         dir_re_merge, merge);
2639
2640        ri->head_renames  = get_renames(o, head_pairs,
2641                                        dir_re_merge, dir_re_head, head,
2642                                        common, head, merge, entries,
2643                                        &clean);
2644        if (clean < 0)
2645                goto cleanup;
2646        ri->merge_renames = get_renames(o, merge_pairs,
2647                                        dir_re_head, dir_re_merge, merge,
2648                                        common, head, merge, entries,
2649                                        &clean);
2650        if (clean < 0)
2651                goto cleanup;
2652        clean &= process_renames(o, ri->head_renames, ri->merge_renames);
2653
2654cleanup:
2655        /*
2656         * Some cleanup is deferred until cleanup_renames() because the
2657         * data structures are still needed and referenced in
2658         * process_entry().  But there are a few things we can free now.
2659         */
2660        initial_cleanup_rename(head_pairs, dir_re_head);
2661        initial_cleanup_rename(merge_pairs, dir_re_merge);
2662
2663        return clean;
2664}
2665
2666static void final_cleanup_rename(struct string_list *rename)
2667{
2668        const struct rename *re;
2669        int i;
2670
2671        if (rename == NULL)
2672                return;
2673
2674        for (i = 0; i < rename->nr; i++) {
2675                re = rename->items[i].util;
2676                diff_free_filepair(re->pair);
2677        }
2678        string_list_clear(rename, 1);
2679        free(rename);
2680}
2681
2682static void final_cleanup_renames(struct rename_info *re_info)
2683{
2684        final_cleanup_rename(re_info->head_renames);
2685        final_cleanup_rename(re_info->merge_renames);
2686}
2687
2688static struct object_id *stage_oid(const struct object_id *oid, unsigned mode)
2689{
2690        return (is_null_oid(oid) || mode == 0) ? NULL: (struct object_id *)oid;
2691}
2692
2693static int read_oid_strbuf(struct merge_options *o,
2694        const struct object_id *oid, struct strbuf *dst)
2695{
2696        void *buf;
2697        enum object_type type;
2698        unsigned long size;
2699        buf = read_object_file(oid, &type, &size);
2700        if (!buf)
2701                return err(o, _("cannot read object %s"), oid_to_hex(oid));
2702        if (type != OBJ_BLOB) {
2703                free(buf);
2704                return err(o, _("object %s is not a blob"), oid_to_hex(oid));
2705        }
2706        strbuf_attach(dst, buf, size, size + 1);
2707        return 0;
2708}
2709
2710static int blob_unchanged(struct merge_options *opt,
2711                          const struct object_id *o_oid,
2712                          unsigned o_mode,
2713                          const struct object_id *a_oid,
2714                          unsigned a_mode,
2715                          int renormalize, const char *path)
2716{
2717        struct strbuf o = STRBUF_INIT;
2718        struct strbuf a = STRBUF_INIT;
2719        int ret = 0; /* assume changed for safety */
2720
2721        if (a_mode != o_mode)
2722                return 0;
2723        if (oid_eq(o_oid, a_oid))
2724                return 1;
2725        if (!renormalize)
2726                return 0;
2727
2728        assert(o_oid && a_oid);
2729        if (read_oid_strbuf(opt, o_oid, &o) || read_oid_strbuf(opt, a_oid, &a))
2730                goto error_return;
2731        /*
2732         * Note: binary | is used so that both renormalizations are
2733         * performed.  Comparison can be skipped if both files are
2734         * unchanged since their sha1s have already been compared.
2735         */
2736        if (renormalize_buffer(&the_index, path, o.buf, o.len, &o) |
2737            renormalize_buffer(&the_index, path, a.buf, a.len, &a))
2738                ret = (o.len == a.len && !memcmp(o.buf, a.buf, o.len));
2739
2740error_return:
2741        strbuf_release(&o);
2742        strbuf_release(&a);
2743        return ret;
2744}
2745
2746static int handle_modify_delete(struct merge_options *o,
2747                                 const char *path,
2748                                 struct object_id *o_oid, int o_mode,
2749                                 struct object_id *a_oid, int a_mode,
2750                                 struct object_id *b_oid, int b_mode)
2751{
2752        const char *modify_branch, *delete_branch;
2753        struct object_id *changed_oid;
2754        int changed_mode;
2755
2756        if (a_oid) {
2757                modify_branch = o->branch1;
2758                delete_branch = o->branch2;
2759                changed_oid = a_oid;
2760                changed_mode = a_mode;
2761        } else {
2762                modify_branch = o->branch2;
2763                delete_branch = o->branch1;
2764                changed_oid = b_oid;
2765                changed_mode = b_mode;
2766        }
2767
2768        return handle_change_delete(o,
2769                                    path, NULL,
2770                                    o_oid, o_mode,
2771                                    changed_oid, changed_mode,
2772                                    modify_branch, delete_branch,
2773                                    _("modify"), _("modified"));
2774}
2775
2776static int merge_content(struct merge_options *o,
2777                         const char *path,
2778                         int is_dirty,
2779                         struct object_id *o_oid, int o_mode,
2780                         struct object_id *a_oid, int a_mode,
2781                         struct object_id *b_oid, int b_mode,
2782                         struct rename_conflict_info *rename_conflict_info)
2783{
2784        const char *reason = _("content");
2785        const char *path1 = NULL, *path2 = NULL;
2786        struct merge_file_info mfi;
2787        struct diff_filespec one, a, b;
2788        unsigned df_conflict_remains = 0;
2789
2790        if (!o_oid) {
2791                reason = _("add/add");
2792                o_oid = (struct object_id *)&null_oid;
2793        }
2794        one.path = a.path = b.path = (char *)path;
2795        oidcpy(&one.oid, o_oid);
2796        one.mode = o_mode;
2797        oidcpy(&a.oid, a_oid);
2798        a.mode = a_mode;
2799        oidcpy(&b.oid, b_oid);
2800        b.mode = b_mode;
2801
2802        if (rename_conflict_info) {
2803                struct diff_filepair *pair1 = rename_conflict_info->pair1;
2804
2805                path1 = (o->branch1 == rename_conflict_info->branch1) ?
2806                        pair1->two->path : pair1->one->path;
2807                /* If rename_conflict_info->pair2 != NULL, we are in
2808                 * RENAME_ONE_FILE_TO_ONE case.  Otherwise, we have a
2809                 * normal rename.
2810                 */
2811                path2 = (rename_conflict_info->pair2 ||
2812                         o->branch2 == rename_conflict_info->branch1) ?
2813                        pair1->two->path : pair1->one->path;
2814
2815                if (dir_in_way(path, !o->call_depth,
2816                               S_ISGITLINK(pair1->two->mode)))
2817                        df_conflict_remains = 1;
2818        }
2819        if (merge_file_special_markers(o, &one, &a, &b, path,
2820                                       o->branch1, path1,
2821                                       o->branch2, path2, &mfi))
2822                return -1;
2823
2824        if (mfi.clean && !df_conflict_remains &&
2825            oid_eq(&mfi.oid, a_oid) && mfi.mode == a_mode) {
2826                int path_renamed_outside_HEAD;
2827                output(o, 3, _("Skipped %s (merged same as existing)"), path);
2828                /*
2829                 * The content merge resulted in the same file contents we
2830                 * already had.  We can return early if those file contents
2831                 * are recorded at the correct path (which may not be true
2832                 * if the merge involves a rename).
2833                 */
2834                path_renamed_outside_HEAD = !path2 || !strcmp(path, path2);
2835                if (!path_renamed_outside_HEAD) {
2836                        if (add_cacheinfo(o, mfi.mode, &mfi.oid, path,
2837                                          0, (!o->call_depth && !is_dirty), 0))
2838                                return -1;
2839                        return mfi.clean;
2840                }
2841        }
2842
2843        if (!mfi.clean) {
2844                if (S_ISGITLINK(mfi.mode))
2845                        reason = _("submodule");
2846                output(o, 1, _("CONFLICT (%s): Merge conflict in %s"),
2847                                reason, path);
2848                if (rename_conflict_info && !df_conflict_remains)
2849                        if (update_stages(o, path, &one, &a, &b))
2850                                return -1;
2851        }
2852
2853        if (df_conflict_remains || is_dirty) {
2854                char *new_path;
2855                if (o->call_depth) {
2856                        remove_file_from_cache(path);
2857                } else {
2858                        if (!mfi.clean) {
2859                                if (update_stages(o, path, &one, &a, &b))
2860                                        return -1;
2861                        } else {
2862                                int file_from_stage2 = was_tracked(o, path);
2863                                struct diff_filespec merged;
2864                                oidcpy(&merged.oid, &mfi.oid);
2865                                merged.mode = mfi.mode;
2866
2867                                if (update_stages(o, path, NULL,
2868                                                  file_from_stage2 ? &merged : NULL,
2869                                                  file_from_stage2 ? NULL : &merged))
2870                                        return -1;
2871                        }
2872
2873                }
2874                new_path = unique_path(o, path, rename_conflict_info->branch1);
2875                if (is_dirty) {
2876                        output(o, 1, _("Refusing to lose dirty file at %s"),
2877                               path);
2878                }
2879                output(o, 1, _("Adding as %s instead"), new_path);
2880                if (update_file(o, 0, &mfi.oid, mfi.mode, new_path)) {
2881                        free(new_path);
2882                        return -1;
2883                }
2884                free(new_path);
2885                mfi.clean = 0;
2886        } else if (update_file(o, mfi.clean, &mfi.oid, mfi.mode, path))
2887                return -1;
2888        return !is_dirty && mfi.clean;
2889}
2890
2891static int conflict_rename_normal(struct merge_options *o,
2892                                  const char *path,
2893                                  struct object_id *o_oid, unsigned int o_mode,
2894                                  struct object_id *a_oid, unsigned int a_mode,
2895                                  struct object_id *b_oid, unsigned int b_mode,
2896                                  struct rename_conflict_info *ci)
2897{
2898        /* Merge the content and write it out */
2899        return merge_content(o, path, was_dirty(o, path),
2900                             o_oid, o_mode, a_oid, a_mode, b_oid, b_mode,
2901                             ci);
2902}
2903
2904/* Per entry merge function */
2905static int process_entry(struct merge_options *o,
2906                         const char *path, struct stage_data *entry)
2907{
2908        int clean_merge = 1;
2909        int normalize = o->renormalize;
2910        unsigned o_mode = entry->stages[1].mode;
2911        unsigned a_mode = entry->stages[2].mode;
2912        unsigned b_mode = entry->stages[3].mode;
2913        struct object_id *o_oid = stage_oid(&entry->stages[1].oid, o_mode);
2914        struct object_id *a_oid = stage_oid(&entry->stages[2].oid, a_mode);
2915        struct object_id *b_oid = stage_oid(&entry->stages[3].oid, b_mode);
2916
2917        entry->processed = 1;
2918        if (entry->rename_conflict_info) {
2919                struct rename_conflict_info *conflict_info = entry->rename_conflict_info;
2920                switch (conflict_info->rename_type) {
2921                case RENAME_NORMAL:
2922                case RENAME_ONE_FILE_TO_ONE:
2923                        clean_merge = conflict_rename_normal(o,
2924                                                             path,
2925                                                             o_oid, o_mode,
2926                                                             a_oid, a_mode,
2927                                                             b_oid, b_mode,
2928                                                             conflict_info);
2929                        break;
2930                case RENAME_DIR:
2931                        clean_merge = 1;
2932                        if (conflict_rename_dir(o,
2933                                                conflict_info->pair1,
2934                                                conflict_info->branch1,
2935                                                conflict_info->branch2))
2936                                clean_merge = -1;
2937                        break;
2938                case RENAME_DELETE:
2939                        clean_merge = 0;
2940                        if (conflict_rename_delete(o,
2941                                                   conflict_info->pair1,
2942                                                   conflict_info->branch1,
2943                                                   conflict_info->branch2))
2944                                clean_merge = -1;
2945                        break;
2946                case RENAME_ONE_FILE_TO_TWO:
2947                        clean_merge = 0;
2948                        if (conflict_rename_rename_1to2(o, conflict_info))
2949                                clean_merge = -1;
2950                        break;
2951                case RENAME_TWO_FILES_TO_ONE:
2952                        clean_merge = 0;
2953                        if (conflict_rename_rename_2to1(o, conflict_info))
2954                                clean_merge = -1;
2955                        break;
2956                default:
2957                        entry->processed = 0;
2958                        break;
2959                }
2960        } else if (o_oid && (!a_oid || !b_oid)) {
2961                /* Case A: Deleted in one */
2962                if ((!a_oid && !b_oid) ||
2963                    (!b_oid && blob_unchanged(o, o_oid, o_mode, a_oid, a_mode, normalize, path)) ||
2964                    (!a_oid && blob_unchanged(o, o_oid, o_mode, b_oid, b_mode, normalize, path))) {
2965                        /* Deleted in both or deleted in one and
2966                         * unchanged in the other */
2967                        if (a_oid)
2968                                output(o, 2, _("Removing %s"), path);
2969                        /* do not touch working file if it did not exist */
2970                        remove_file(o, 1, path, !a_oid);
2971                } else {
2972                        /* Modify/delete; deleted side may have put a directory in the way */
2973                        clean_merge = 0;
2974                        if (handle_modify_delete(o, path, o_oid, o_mode,
2975                                                 a_oid, a_mode, b_oid, b_mode))
2976                                clean_merge = -1;
2977                }
2978        } else if ((!o_oid && a_oid && !b_oid) ||
2979                   (!o_oid && !a_oid && b_oid)) {
2980                /* Case B: Added in one. */
2981                /* [nothing|directory] -> ([nothing|directory], file) */
2982
2983                const char *add_branch;
2984                const char *other_branch;
2985                unsigned mode;
2986                const struct object_id *oid;
2987                const char *conf;
2988
2989                if (a_oid) {
2990                        add_branch = o->branch1;
2991                        other_branch = o->branch2;
2992                        mode = a_mode;
2993                        oid = a_oid;
2994                        conf = _("file/directory");
2995                } else {
2996                        add_branch = o->branch2;
2997                        other_branch = o->branch1;
2998                        mode = b_mode;
2999                        oid = b_oid;
3000                        conf = _("directory/file");
3001                }
3002                if (dir_in_way(path,
3003                               !o->call_depth && !S_ISGITLINK(a_mode),
3004                               0)) {
3005                        char *new_path = unique_path(o, path, add_branch);
3006                        clean_merge = 0;
3007                        output(o, 1, _("CONFLICT (%s): There is a directory with name %s in %s. "
3008                               "Adding %s as %s"),
3009                               conf, path, other_branch, path, new_path);
3010                        if (update_file(o, 0, oid, mode, new_path))
3011                                clean_merge = -1;
3012                        else if (o->call_depth)
3013                                remove_file_from_cache(path);
3014                        free(new_path);
3015                } else {
3016                        output(o, 2, _("Adding %s"), path);
3017                        /* do not overwrite file if already present */
3018                        if (update_file_flags(o, oid, mode, path, 1, !a_oid))
3019                                clean_merge = -1;
3020                }
3021        } else if (a_oid && b_oid) {
3022                /* Case C: Added in both (check for same permissions) and */
3023                /* case D: Modified in both, but differently. */
3024                int is_dirty = 0; /* unpack_trees would have bailed if dirty */
3025                clean_merge = merge_content(o, path, is_dirty,
3026                                            o_oid, o_mode, a_oid, a_mode, b_oid, b_mode,
3027                                            NULL);
3028        } else if (!o_oid && !a_oid && !b_oid) {
3029                /*
3030                 * this entry was deleted altogether. a_mode == 0 means
3031                 * we had that path and want to actively remove it.
3032                 */
3033                remove_file(o, 1, path, !a_mode);
3034        } else
3035                die("BUG: fatal merge failure, shouldn't happen.");
3036
3037        return clean_merge;
3038}
3039
3040int merge_trees(struct merge_options *o,
3041                struct tree *head,
3042                struct tree *merge,
3043                struct tree *common,
3044                struct tree **result)
3045{
3046        int code, clean;
3047
3048        if (o->subtree_shift) {
3049                merge = shift_tree_object(head, merge, o->subtree_shift);
3050                common = shift_tree_object(head, common, o->subtree_shift);
3051        }
3052
3053        if (oid_eq(&common->object.oid, &merge->object.oid)) {
3054                struct strbuf sb = STRBUF_INIT;
3055
3056                if (!o->call_depth && index_has_changes(&sb)) {
3057                        err(o, _("Dirty index: cannot merge (dirty: %s)"),
3058                            sb.buf);
3059                        return 0;
3060                }
3061                output(o, 0, _("Already up to date!"));
3062                *result = head;
3063                return 1;
3064        }
3065
3066        code = git_merge_trees(o, common, head, merge);
3067
3068        if (code != 0) {
3069                if (show(o, 4) || o->call_depth)
3070                        err(o, _("merging of trees %s and %s failed"),
3071                            oid_to_hex(&head->object.oid),
3072                            oid_to_hex(&merge->object.oid));
3073                return -1;
3074        }
3075
3076        if (unmerged_cache()) {
3077                struct string_list *entries;
3078                struct rename_info re_info;
3079                int i;
3080                /*
3081                 * Only need the hashmap while processing entries, so
3082                 * initialize it here and free it when we are done running
3083                 * through the entries. Keeping it in the merge_options as
3084                 * opposed to decaring a local hashmap is for convenience
3085                 * so that we don't have to pass it to around.
3086                 */
3087                hashmap_init(&o->current_file_dir_set, path_hashmap_cmp, NULL, 512);
3088                get_files_dirs(o, head);
3089                get_files_dirs(o, merge);
3090
3091                entries = get_unmerged();
3092                clean = handle_renames(o, common, head, merge, entries,
3093                                       &re_info);
3094                record_df_conflict_files(o, entries);
3095                if (clean < 0)
3096                        goto cleanup;
3097                for (i = entries->nr-1; 0 <= i; i--) {
3098                        const char *path = entries->items[i].string;
3099                        struct stage_data *e = entries->items[i].util;
3100                        if (!e->processed) {
3101                                int ret = process_entry(o, path, e);
3102                                if (!ret)
3103                                        clean = 0;
3104                                else if (ret < 0) {
3105                                        clean = ret;
3106                                        goto cleanup;
3107                                }
3108                        }
3109                }
3110                for (i = 0; i < entries->nr; i++) {
3111                        struct stage_data *e = entries->items[i].util;
3112                        if (!e->processed)
3113                                die("BUG: unprocessed path??? %s",
3114                                    entries->items[i].string);
3115                }
3116
3117cleanup:
3118                final_cleanup_renames(&re_info);
3119
3120                string_list_clear(entries, 1);
3121                free(entries);
3122
3123                hashmap_free(&o->current_file_dir_set, 1);
3124
3125                if (clean < 0)
3126                        return clean;
3127        }
3128        else
3129                clean = 1;
3130
3131        /* Free the extra index left from git_merge_trees() */
3132        /*
3133         * FIXME: Need to also free data allocated by
3134         * setup_unpack_trees_porcelain() tucked away in o->unpack_opts.msgs,
3135         * but the problem is that only half of it refers to dynamically
3136         * allocated data, while the other half points at static strings.
3137         */
3138        discard_index(&o->orig_index);
3139
3140        if (o->call_depth && !(*result = write_tree_from_memory(o)))
3141                return -1;
3142
3143        return clean;
3144}
3145
3146static struct commit_list *reverse_commit_list(struct commit_list *list)
3147{
3148        struct commit_list *next = NULL, *current, *backup;
3149        for (current = list; current; current = backup) {
3150                backup = current->next;
3151                current->next = next;
3152                next = current;
3153        }
3154        return next;
3155}
3156
3157/*
3158 * Merge the commits h1 and h2, return the resulting virtual
3159 * commit object and a flag indicating the cleanness of the merge.
3160 */
3161int merge_recursive(struct merge_options *o,
3162                    struct commit *h1,
3163                    struct commit *h2,
3164                    struct commit_list *ca,
3165                    struct commit **result)
3166{
3167        struct commit_list *iter;
3168        struct commit *merged_common_ancestors;
3169        struct tree *mrtree;
3170        int clean;
3171
3172        if (show(o, 4)) {
3173                output(o, 4, _("Merging:"));
3174                output_commit_title(o, h1);
3175                output_commit_title(o, h2);
3176        }
3177
3178        if (!ca) {
3179                ca = get_merge_bases(h1, h2);
3180                ca = reverse_commit_list(ca);
3181        }
3182
3183        if (show(o, 5)) {
3184                unsigned cnt = commit_list_count(ca);
3185
3186                output(o, 5, Q_("found %u common ancestor:",
3187                                "found %u common ancestors:", cnt), cnt);
3188                for (iter = ca; iter; iter = iter->next)
3189                        output_commit_title(o, iter->item);
3190        }
3191
3192        merged_common_ancestors = pop_commit(&ca);
3193        if (merged_common_ancestors == NULL) {
3194                /* if there is no common ancestor, use an empty tree */
3195                struct tree *tree;
3196
3197                tree = lookup_tree(the_hash_algo->empty_tree);
3198                merged_common_ancestors = make_virtual_commit(tree, "ancestor");
3199        }
3200
3201        for (iter = ca; iter; iter = iter->next) {
3202                const char *saved_b1, *saved_b2;
3203                o->call_depth++;
3204                /*
3205                 * When the merge fails, the result contains files
3206                 * with conflict markers. The cleanness flag is
3207                 * ignored (unless indicating an error), it was never
3208                 * actually used, as result of merge_trees has always
3209                 * overwritten it: the committed "conflicts" were
3210                 * already resolved.
3211                 */
3212                discard_cache();
3213                saved_b1 = o->branch1;
3214                saved_b2 = o->branch2;
3215                o->branch1 = "Temporary merge branch 1";
3216                o->branch2 = "Temporary merge branch 2";
3217                if (merge_recursive(o, merged_common_ancestors, iter->item,
3218                                    NULL, &merged_common_ancestors) < 0)
3219                        return -1;
3220                o->branch1 = saved_b1;
3221                o->branch2 = saved_b2;
3222                o->call_depth--;
3223
3224                if (!merged_common_ancestors)
3225                        return err(o, _("merge returned no commit"));
3226        }
3227
3228        discard_cache();
3229        if (!o->call_depth)
3230                read_cache();
3231
3232        o->ancestor = "merged common ancestors";
3233        clean = merge_trees(o, h1->tree, h2->tree, merged_common_ancestors->tree,
3234                            &mrtree);
3235        if (clean < 0) {
3236                flush_output(o);
3237                return clean;
3238        }
3239
3240        if (o->call_depth) {
3241                *result = make_virtual_commit(mrtree, "merged tree");
3242                commit_list_insert(h1, &(*result)->parents);
3243                commit_list_insert(h2, &(*result)->parents->next);
3244        }
3245        flush_output(o);
3246        if (!o->call_depth && o->buffer_output < 2)
3247                strbuf_release(&o->obuf);
3248        if (show(o, 2))
3249                diff_warn_rename_limit("merge.renamelimit",
3250                                       o->needed_rename_limit, 0);
3251        return clean;
3252}
3253
3254static struct commit *get_ref(const struct object_id *oid, const char *name)
3255{
3256        struct object *object;
3257
3258        object = deref_tag(parse_object(oid), name, strlen(name));
3259        if (!object)
3260                return NULL;
3261        if (object->type == OBJ_TREE)
3262                return make_virtual_commit((struct tree*)object, name);
3263        if (object->type != OBJ_COMMIT)
3264                return NULL;
3265        if (parse_commit((struct commit *)object))
3266                return NULL;
3267        return (struct commit *)object;
3268}
3269
3270int merge_recursive_generic(struct merge_options *o,
3271                            const struct object_id *head,
3272                            const struct object_id *merge,
3273                            int num_base_list,
3274                            const struct object_id **base_list,
3275                            struct commit **result)
3276{
3277        int clean;
3278        struct lock_file lock = LOCK_INIT;
3279        struct commit *head_commit = get_ref(head, o->branch1);
3280        struct commit *next_commit = get_ref(merge, o->branch2);
3281        struct commit_list *ca = NULL;
3282
3283        if (base_list) {
3284                int i;
3285                for (i = 0; i < num_base_list; ++i) {
3286                        struct commit *base;
3287                        if (!(base = get_ref(base_list[i], oid_to_hex(base_list[i]))))
3288                                return err(o, _("Could not parse object '%s'"),
3289                                        oid_to_hex(base_list[i]));
3290                        commit_list_insert(base, &ca);
3291                }
3292        }
3293
3294        hold_locked_index(&lock, LOCK_DIE_ON_ERROR);
3295        clean = merge_recursive(o, head_commit, next_commit, ca,
3296                        result);
3297        if (clean < 0) {
3298                rollback_lock_file(&lock);
3299                return clean;
3300        }
3301
3302        if (write_locked_index(&the_index, &lock,
3303                               COMMIT_LOCK | SKIP_IF_UNCHANGED))
3304                return err(o, _("Unable to write index."));
3305
3306        return clean ? 0 : 1;
3307}
3308
3309static void merge_recursive_config(struct merge_options *o)
3310{
3311        git_config_get_int("merge.verbosity", &o->verbosity);
3312        git_config_get_int("diff.renamelimit", &o->diff_rename_limit);
3313        git_config_get_int("merge.renamelimit", &o->merge_rename_limit);
3314        git_config(git_xmerge_config, NULL);
3315}
3316
3317void init_merge_options(struct merge_options *o)
3318{
3319        const char *merge_verbosity;
3320        memset(o, 0, sizeof(struct merge_options));
3321        o->verbosity = 2;
3322        o->buffer_output = 1;
3323        o->diff_rename_limit = -1;
3324        o->merge_rename_limit = -1;
3325        o->renormalize = 0;
3326        o->detect_rename = 1;
3327        merge_recursive_config(o);
3328        merge_verbosity = getenv("GIT_MERGE_VERBOSITY");
3329        if (merge_verbosity)
3330                o->verbosity = strtol(merge_verbosity, NULL, 10);
3331        if (o->verbosity >= 5)
3332                o->buffer_output = 0;
3333        strbuf_init(&o->obuf, 0);
3334        string_list_init(&o->df_conflict_file_set, 1);
3335}
3336
3337int parse_merge_opt(struct merge_options *o, const char *s)
3338{
3339        const char *arg;
3340
3341        if (!s || !*s)
3342                return -1;
3343        if (!strcmp(s, "ours"))
3344                o->recursive_variant = MERGE_RECURSIVE_OURS;
3345        else if (!strcmp(s, "theirs"))
3346                o->recursive_variant = MERGE_RECURSIVE_THEIRS;
3347        else if (!strcmp(s, "subtree"))
3348                o->subtree_shift = "";
3349        else if (skip_prefix(s, "subtree=", &arg))
3350                o->subtree_shift = arg;
3351        else if (!strcmp(s, "patience"))
3352                o->xdl_opts = DIFF_WITH_ALG(o, PATIENCE_DIFF);
3353        else if (!strcmp(s, "histogram"))
3354                o->xdl_opts = DIFF_WITH_ALG(o, HISTOGRAM_DIFF);
3355        else if (skip_prefix(s, "diff-algorithm=", &arg)) {
3356                long value = parse_algorithm_value(arg);
3357                if (value < 0)
3358                        return -1;
3359                /* clear out previous settings */
3360                DIFF_XDL_CLR(o, NEED_MINIMAL);
3361                o->xdl_opts &= ~XDF_DIFF_ALGORITHM_MASK;
3362                o->xdl_opts |= value;
3363        }
3364        else if (!strcmp(s, "ignore-space-change"))
3365                DIFF_XDL_SET(o, IGNORE_WHITESPACE_CHANGE);
3366        else if (!strcmp(s, "ignore-all-space"))
3367                DIFF_XDL_SET(o, IGNORE_WHITESPACE);
3368        else if (!strcmp(s, "ignore-space-at-eol"))
3369                DIFF_XDL_SET(o, IGNORE_WHITESPACE_AT_EOL);
3370        else if (!strcmp(s, "ignore-cr-at-eol"))
3371                DIFF_XDL_SET(o, IGNORE_CR_AT_EOL);
3372        else if (!strcmp(s, "renormalize"))
3373                o->renormalize = 1;
3374        else if (!strcmp(s, "no-renormalize"))
3375                o->renormalize = 0;
3376        else if (!strcmp(s, "no-renames"))
3377                o->detect_rename = 0;
3378        else if (!strcmp(s, "find-renames")) {
3379                o->detect_rename = 1;
3380                o->rename_score = 0;
3381        }
3382        else if (skip_prefix(s, "find-renames=", &arg) ||
3383                 skip_prefix(s, "rename-threshold=", &arg)) {
3384                if ((o->rename_score = parse_rename_score(&arg)) == -1 || *arg != 0)
3385                        return -1;
3386                o->detect_rename = 1;
3387        }
3388        else
3389                return -1;
3390        return 0;
3391}