merge-recursive.con commit diffcore-rename: fall back to -C when -C -C busts the rename limit (f31027c)
   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 "advice.h"
   7#include "cache.h"
   8#include "cache-tree.h"
   9#include "commit.h"
  10#include "blob.h"
  11#include "builtin.h"
  12#include "tree-walk.h"
  13#include "diff.h"
  14#include "diffcore.h"
  15#include "tag.h"
  16#include "unpack-trees.h"
  17#include "string-list.h"
  18#include "xdiff-interface.h"
  19#include "ll-merge.h"
  20#include "attr.h"
  21#include "merge-recursive.h"
  22#include "dir.h"
  23#include "submodule.h"
  24
  25static struct tree *shift_tree_object(struct tree *one, struct tree *two,
  26                                      const char *subtree_shift)
  27{
  28        unsigned char shifted[20];
  29
  30        if (!*subtree_shift) {
  31                shift_tree(one->object.sha1, two->object.sha1, shifted, 0);
  32        } else {
  33                shift_tree_by(one->object.sha1, two->object.sha1, shifted,
  34                              subtree_shift);
  35        }
  36        if (!hashcmp(two->object.sha1, shifted))
  37                return two;
  38        return lookup_tree(shifted);
  39}
  40
  41/*
  42 * A virtual commit has (const char *)commit->util set to the name.
  43 */
  44
  45static struct commit *make_virtual_commit(struct tree *tree, const char *comment)
  46{
  47        struct commit *commit = xcalloc(1, sizeof(struct commit));
  48        commit->tree = tree;
  49        commit->util = (void*)comment;
  50        /* avoid warnings */
  51        commit->object.parsed = 1;
  52        return commit;
  53}
  54
  55/*
  56 * Since we use get_tree_entry(), which does not put the read object into
  57 * the object pool, we cannot rely on a == b.
  58 */
  59static int sha_eq(const unsigned char *a, const unsigned char *b)
  60{
  61        if (!a && !b)
  62                return 2;
  63        return a && b && hashcmp(a, b) == 0;
  64}
  65
  66enum rename_type {
  67        RENAME_NORMAL = 0,
  68        RENAME_DELETE,
  69        RENAME_ONE_FILE_TO_TWO
  70};
  71
  72struct rename_df_conflict_info {
  73        enum rename_type rename_type;
  74        struct diff_filepair *pair1;
  75        struct diff_filepair *pair2;
  76        const char *branch1;
  77        const char *branch2;
  78        struct stage_data *dst_entry1;
  79        struct stage_data *dst_entry2;
  80};
  81
  82/*
  83 * Since we want to write the index eventually, we cannot reuse the index
  84 * for these (temporary) data.
  85 */
  86struct stage_data {
  87        struct {
  88                unsigned mode;
  89                unsigned char sha[20];
  90        } stages[4];
  91        struct rename_df_conflict_info *rename_df_conflict_info;
  92        unsigned processed:1;
  93};
  94
  95static inline void setup_rename_df_conflict_info(enum rename_type rename_type,
  96                                                 struct diff_filepair *pair1,
  97                                                 struct diff_filepair *pair2,
  98                                                 const char *branch1,
  99                                                 const char *branch2,
 100                                                 struct stage_data *dst_entry1,
 101                                                 struct stage_data *dst_entry2)
 102{
 103        struct rename_df_conflict_info *ci = xcalloc(1, sizeof(struct rename_df_conflict_info));
 104        ci->rename_type = rename_type;
 105        ci->pair1 = pair1;
 106        ci->branch1 = branch1;
 107        ci->branch2 = branch2;
 108
 109        ci->dst_entry1 = dst_entry1;
 110        dst_entry1->rename_df_conflict_info = ci;
 111        dst_entry1->processed = 0;
 112
 113        assert(!pair2 == !dst_entry2);
 114        if (dst_entry2) {
 115                ci->dst_entry2 = dst_entry2;
 116                ci->pair2 = pair2;
 117                dst_entry2->rename_df_conflict_info = ci;
 118                dst_entry2->processed = 0;
 119        }
 120}
 121
 122static int show(struct merge_options *o, int v)
 123{
 124        return (!o->call_depth && o->verbosity >= v) || o->verbosity >= 5;
 125}
 126
 127static void flush_output(struct merge_options *o)
 128{
 129        if (o->obuf.len) {
 130                fputs(o->obuf.buf, stdout);
 131                strbuf_reset(&o->obuf);
 132        }
 133}
 134
 135__attribute__((format (printf, 3, 4)))
 136static void output(struct merge_options *o, int v, const char *fmt, ...)
 137{
 138        va_list ap;
 139
 140        if (!show(o, v))
 141                return;
 142
 143        strbuf_grow(&o->obuf, o->call_depth * 2 + 2);
 144        memset(o->obuf.buf + o->obuf.len, ' ', o->call_depth * 2);
 145        strbuf_setlen(&o->obuf, o->obuf.len + o->call_depth * 2);
 146
 147        va_start(ap, fmt);
 148        strbuf_vaddf(&o->obuf, fmt, ap);
 149        va_end(ap);
 150
 151        strbuf_add(&o->obuf, "\n", 1);
 152        if (!o->buffer_output)
 153                flush_output(o);
 154}
 155
 156static void output_commit_title(struct merge_options *o, struct commit *commit)
 157{
 158        int i;
 159        flush_output(o);
 160        for (i = o->call_depth; i--;)
 161                fputs("  ", stdout);
 162        if (commit->util)
 163                printf("virtual %s\n", (char *)commit->util);
 164        else {
 165                printf("%s ", find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV));
 166                if (parse_commit(commit) != 0)
 167                        printf("(bad commit)\n");
 168                else {
 169                        const char *title;
 170                        int len = find_commit_subject(commit->buffer, &title);
 171                        if (len)
 172                                printf("%.*s\n", len, title);
 173                }
 174        }
 175}
 176
 177static int add_cacheinfo(unsigned int mode, const unsigned char *sha1,
 178                const char *path, int stage, int refresh, int options)
 179{
 180        struct cache_entry *ce;
 181        ce = make_cache_entry(mode, sha1 ? sha1 : null_sha1, path, stage, refresh);
 182        if (!ce)
 183                return error("addinfo_cache failed for path '%s'", path);
 184        return add_cache_entry(ce, options);
 185}
 186
 187static void init_tree_desc_from_tree(struct tree_desc *desc, struct tree *tree)
 188{
 189        parse_tree(tree);
 190        init_tree_desc(desc, tree->buffer, tree->size);
 191}
 192
 193static int git_merge_trees(int index_only,
 194                           struct tree *common,
 195                           struct tree *head,
 196                           struct tree *merge)
 197{
 198        int rc;
 199        struct tree_desc t[3];
 200        struct unpack_trees_options opts;
 201
 202        memset(&opts, 0, sizeof(opts));
 203        if (index_only)
 204                opts.index_only = 1;
 205        else
 206                opts.update = 1;
 207        opts.merge = 1;
 208        opts.head_idx = 2;
 209        opts.fn = threeway_merge;
 210        opts.src_index = &the_index;
 211        opts.dst_index = &the_index;
 212        setup_unpack_trees_porcelain(&opts, "merge");
 213
 214        init_tree_desc_from_tree(t+0, common);
 215        init_tree_desc_from_tree(t+1, head);
 216        init_tree_desc_from_tree(t+2, merge);
 217
 218        rc = unpack_trees(3, t, &opts);
 219        cache_tree_free(&active_cache_tree);
 220        return rc;
 221}
 222
 223struct tree *write_tree_from_memory(struct merge_options *o)
 224{
 225        struct tree *result = NULL;
 226
 227        if (unmerged_cache()) {
 228                int i;
 229                fprintf(stderr, "BUG: There are unmerged index entries:\n");
 230                for (i = 0; i < active_nr; i++) {
 231                        struct cache_entry *ce = active_cache[i];
 232                        if (ce_stage(ce))
 233                                fprintf(stderr, "BUG: %d %.*s", ce_stage(ce),
 234                                        (int)ce_namelen(ce), ce->name);
 235                }
 236                die("Bug in merge-recursive.c");
 237        }
 238
 239        if (!active_cache_tree)
 240                active_cache_tree = cache_tree();
 241
 242        if (!cache_tree_fully_valid(active_cache_tree) &&
 243            cache_tree_update(active_cache_tree,
 244                              active_cache, active_nr, 0, 0) < 0)
 245                die("error building trees");
 246
 247        result = lookup_tree(active_cache_tree->sha1);
 248
 249        return result;
 250}
 251
 252static int save_files_dirs(const unsigned char *sha1,
 253                const char *base, int baselen, const char *path,
 254                unsigned int mode, int stage, void *context)
 255{
 256        int len = strlen(path);
 257        char *newpath = xmalloc(baselen + len + 1);
 258        struct merge_options *o = context;
 259
 260        memcpy(newpath, base, baselen);
 261        memcpy(newpath + baselen, path, len);
 262        newpath[baselen + len] = '\0';
 263
 264        if (S_ISDIR(mode))
 265                string_list_insert(&o->current_directory_set, newpath);
 266        else
 267                string_list_insert(&o->current_file_set, newpath);
 268        free(newpath);
 269
 270        return (S_ISDIR(mode) ? READ_TREE_RECURSIVE : 0);
 271}
 272
 273static int get_files_dirs(struct merge_options *o, struct tree *tree)
 274{
 275        int n;
 276        if (read_tree_recursive(tree, "", 0, 0, NULL, save_files_dirs, o))
 277                return 0;
 278        n = o->current_file_set.nr + o->current_directory_set.nr;
 279        return n;
 280}
 281
 282/*
 283 * Returns an index_entry instance which doesn't have to correspond to
 284 * a real cache entry in Git's index.
 285 */
 286static struct stage_data *insert_stage_data(const char *path,
 287                struct tree *o, struct tree *a, struct tree *b,
 288                struct string_list *entries)
 289{
 290        struct string_list_item *item;
 291        struct stage_data *e = xcalloc(1, sizeof(struct stage_data));
 292        get_tree_entry(o->object.sha1, path,
 293                        e->stages[1].sha, &e->stages[1].mode);
 294        get_tree_entry(a->object.sha1, path,
 295                        e->stages[2].sha, &e->stages[2].mode);
 296        get_tree_entry(b->object.sha1, path,
 297                        e->stages[3].sha, &e->stages[3].mode);
 298        item = string_list_insert(entries, path);
 299        item->util = e;
 300        return e;
 301}
 302
 303/*
 304 * Create a dictionary mapping file names to stage_data objects. The
 305 * dictionary contains one entry for every path with a non-zero stage entry.
 306 */
 307static struct string_list *get_unmerged(void)
 308{
 309        struct string_list *unmerged = xcalloc(1, sizeof(struct string_list));
 310        int i;
 311
 312        unmerged->strdup_strings = 1;
 313
 314        for (i = 0; i < active_nr; i++) {
 315                struct string_list_item *item;
 316                struct stage_data *e;
 317                struct cache_entry *ce = active_cache[i];
 318                if (!ce_stage(ce))
 319                        continue;
 320
 321                item = string_list_lookup(unmerged, ce->name);
 322                if (!item) {
 323                        item = string_list_insert(unmerged, ce->name);
 324                        item->util = xcalloc(1, sizeof(struct stage_data));
 325                }
 326                e = item->util;
 327                e->stages[ce_stage(ce)].mode = ce->ce_mode;
 328                hashcpy(e->stages[ce_stage(ce)].sha, ce->sha1);
 329        }
 330
 331        return unmerged;
 332}
 333
 334static void make_room_for_directories_of_df_conflicts(struct merge_options *o,
 335                                                      struct string_list *entries)
 336{
 337        /* If there are D/F conflicts, and the paths currently exist
 338         * in the working copy as a file, we want to remove them to
 339         * make room for the corresponding directory.  Such paths will
 340         * later be processed in process_df_entry() at the end.  If
 341         * the corresponding directory ends up being removed by the
 342         * merge, then the file will be reinstated at that time;
 343         * otherwise, if the file is not supposed to be removed by the
 344         * merge, the contents of the file will be placed in another
 345         * unique filename.
 346         *
 347         * NOTE: This function relies on the fact that entries for a
 348         * D/F conflict will appear adjacent in the index, with the
 349         * entries for the file appearing before entries for paths
 350         * below the corresponding directory.
 351         */
 352        const char *last_file = NULL;
 353        int last_len = 0;
 354        struct stage_data *last_e;
 355        int i;
 356
 357        for (i = 0; i < entries->nr; i++) {
 358                const char *path = entries->items[i].string;
 359                int len = strlen(path);
 360                struct stage_data *e = entries->items[i].util;
 361
 362                /*
 363                 * Check if last_file & path correspond to a D/F conflict;
 364                 * i.e. whether path is last_file+'/'+<something>.
 365                 * If so, remove last_file to make room for path and friends.
 366                 */
 367                if (last_file &&
 368                    len > last_len &&
 369                    memcmp(path, last_file, last_len) == 0 &&
 370                    path[last_len] == '/') {
 371                        output(o, 3, "Removing %s to make room for subdirectory; may re-add later.", last_file);
 372                        unlink(last_file);
 373                }
 374
 375                /*
 376                 * Determine whether path could exist as a file in the
 377                 * working directory as a possible D/F conflict.  This
 378                 * will only occur when it exists in stage 2 as a
 379                 * file.
 380                 */
 381                if (S_ISREG(e->stages[2].mode) || S_ISLNK(e->stages[2].mode)) {
 382                        last_file = path;
 383                        last_len = len;
 384                        last_e = e;
 385                } else {
 386                        last_file = NULL;
 387                }
 388        }
 389}
 390
 391struct rename {
 392        struct diff_filepair *pair;
 393        struct stage_data *src_entry;
 394        struct stage_data *dst_entry;
 395        unsigned processed:1;
 396};
 397
 398/*
 399 * Get information of all renames which occurred between 'o_tree' and
 400 * 'tree'. We need the three trees in the merge ('o_tree', 'a_tree' and
 401 * 'b_tree') to be able to associate the correct cache entries with
 402 * the rename information. 'tree' is always equal to either a_tree or b_tree.
 403 */
 404static struct string_list *get_renames(struct merge_options *o,
 405                                       struct tree *tree,
 406                                       struct tree *o_tree,
 407                                       struct tree *a_tree,
 408                                       struct tree *b_tree,
 409                                       struct string_list *entries)
 410{
 411        int i;
 412        struct string_list *renames;
 413        struct diff_options opts;
 414
 415        renames = xcalloc(1, sizeof(struct string_list));
 416        diff_setup(&opts);
 417        DIFF_OPT_SET(&opts, RECURSIVE);
 418        opts.detect_rename = DIFF_DETECT_RENAME;
 419        opts.rename_limit = o->merge_rename_limit >= 0 ? o->merge_rename_limit :
 420                            o->diff_rename_limit >= 0 ? o->diff_rename_limit :
 421                            1000;
 422        opts.rename_score = o->rename_score;
 423        opts.show_rename_progress = o->show_rename_progress;
 424        opts.output_format = DIFF_FORMAT_NO_OUTPUT;
 425        if (diff_setup_done(&opts) < 0)
 426                die("diff setup failed");
 427        diff_tree_sha1(o_tree->object.sha1, tree->object.sha1, "", &opts);
 428        diffcore_std(&opts);
 429        if (opts.needed_rename_limit > o->needed_rename_limit)
 430                o->needed_rename_limit = opts.needed_rename_limit;
 431        for (i = 0; i < diff_queued_diff.nr; ++i) {
 432                struct string_list_item *item;
 433                struct rename *re;
 434                struct diff_filepair *pair = diff_queued_diff.queue[i];
 435                if (pair->status != 'R') {
 436                        diff_free_filepair(pair);
 437                        continue;
 438                }
 439                re = xmalloc(sizeof(*re));
 440                re->processed = 0;
 441                re->pair = pair;
 442                item = string_list_lookup(entries, re->pair->one->path);
 443                if (!item)
 444                        re->src_entry = insert_stage_data(re->pair->one->path,
 445                                        o_tree, a_tree, b_tree, entries);
 446                else
 447                        re->src_entry = item->util;
 448
 449                item = string_list_lookup(entries, re->pair->two->path);
 450                if (!item)
 451                        re->dst_entry = insert_stage_data(re->pair->two->path,
 452                                        o_tree, a_tree, b_tree, entries);
 453                else
 454                        re->dst_entry = item->util;
 455                item = string_list_insert(renames, pair->one->path);
 456                item->util = re;
 457        }
 458        opts.output_format = DIFF_FORMAT_NO_OUTPUT;
 459        diff_queued_diff.nr = 0;
 460        diff_flush(&opts);
 461        return renames;
 462}
 463
 464static int update_stages_options(const char *path, struct diff_filespec *o,
 465                         struct diff_filespec *a, struct diff_filespec *b,
 466                         int clear, int options)
 467{
 468        if (clear)
 469                if (remove_file_from_cache(path))
 470                        return -1;
 471        if (o)
 472                if (add_cacheinfo(o->mode, o->sha1, path, 1, 0, options))
 473                        return -1;
 474        if (a)
 475                if (add_cacheinfo(a->mode, a->sha1, path, 2, 0, options))
 476                        return -1;
 477        if (b)
 478                if (add_cacheinfo(b->mode, b->sha1, path, 3, 0, options))
 479                        return -1;
 480        return 0;
 481}
 482
 483static int update_stages(const char *path, struct diff_filespec *o,
 484                         struct diff_filespec *a, struct diff_filespec *b,
 485                         int clear)
 486{
 487        int options = ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE;
 488        return update_stages_options(path, o, a, b, clear, options);
 489}
 490
 491static int update_stages_and_entry(const char *path,
 492                                   struct stage_data *entry,
 493                                   struct diff_filespec *o,
 494                                   struct diff_filespec *a,
 495                                   struct diff_filespec *b,
 496                                   int clear)
 497{
 498        int options;
 499
 500        entry->processed = 0;
 501        entry->stages[1].mode = o->mode;
 502        entry->stages[2].mode = a->mode;
 503        entry->stages[3].mode = b->mode;
 504        hashcpy(entry->stages[1].sha, o->sha1);
 505        hashcpy(entry->stages[2].sha, a->sha1);
 506        hashcpy(entry->stages[3].sha, b->sha1);
 507        options = ADD_CACHE_OK_TO_ADD | ADD_CACHE_SKIP_DFCHECK;
 508        return update_stages_options(path, o, a, b, clear, options);
 509}
 510
 511static int remove_file(struct merge_options *o, int clean,
 512                       const char *path, int no_wd)
 513{
 514        int update_cache = o->call_depth || clean;
 515        int update_working_directory = !o->call_depth && !no_wd;
 516
 517        if (update_cache) {
 518                if (remove_file_from_cache(path))
 519                        return -1;
 520        }
 521        if (update_working_directory) {
 522                if (remove_path(path))
 523                        return -1;
 524        }
 525        return 0;
 526}
 527
 528static char *unique_path(struct merge_options *o, const char *path, const char *branch)
 529{
 530        char *newpath = xmalloc(strlen(path) + 1 + strlen(branch) + 8 + 1);
 531        int suffix = 0;
 532        struct stat st;
 533        char *p = newpath + strlen(path);
 534        strcpy(newpath, path);
 535        *(p++) = '~';
 536        strcpy(p, branch);
 537        for (; *p; ++p)
 538                if ('/' == *p)
 539                        *p = '_';
 540        while (string_list_has_string(&o->current_file_set, newpath) ||
 541               string_list_has_string(&o->current_directory_set, newpath) ||
 542               lstat(newpath, &st) == 0)
 543                sprintf(p, "_%d", suffix++);
 544
 545        string_list_insert(&o->current_file_set, newpath);
 546        return newpath;
 547}
 548
 549static void flush_buffer(int fd, const char *buf, unsigned long size)
 550{
 551        while (size > 0) {
 552                long ret = write_in_full(fd, buf, size);
 553                if (ret < 0) {
 554                        /* Ignore epipe */
 555                        if (errno == EPIPE)
 556                                break;
 557                        die_errno("merge-recursive");
 558                } else if (!ret) {
 559                        die("merge-recursive: disk full?");
 560                }
 561                size -= ret;
 562                buf += ret;
 563        }
 564}
 565
 566static int would_lose_untracked(const char *path)
 567{
 568        int pos = cache_name_pos(path, strlen(path));
 569
 570        if (pos < 0)
 571                pos = -1 - pos;
 572        while (pos < active_nr &&
 573               !strcmp(path, active_cache[pos]->name)) {
 574                /*
 575                 * If stage #0, it is definitely tracked.
 576                 * If it has stage #2 then it was tracked
 577                 * before this merge started.  All other
 578                 * cases the path was not tracked.
 579                 */
 580                switch (ce_stage(active_cache[pos])) {
 581                case 0:
 582                case 2:
 583                        return 0;
 584                }
 585                pos++;
 586        }
 587        return file_exists(path);
 588}
 589
 590static int make_room_for_path(const char *path)
 591{
 592        int status;
 593        const char *msg = "failed to create path '%s'%s";
 594
 595        status = safe_create_leading_directories_const(path);
 596        if (status) {
 597                if (status == -3) {
 598                        /* something else exists */
 599                        error(msg, path, ": perhaps a D/F conflict?");
 600                        return -1;
 601                }
 602                die(msg, path, "");
 603        }
 604
 605        /*
 606         * Do not unlink a file in the work tree if we are not
 607         * tracking it.
 608         */
 609        if (would_lose_untracked(path))
 610                return error("refusing to lose untracked file at '%s'",
 611                             path);
 612
 613        /* Successful unlink is good.. */
 614        if (!unlink(path))
 615                return 0;
 616        /* .. and so is no existing file */
 617        if (errno == ENOENT)
 618                return 0;
 619        /* .. but not some other error (who really cares what?) */
 620        return error(msg, path, ": perhaps a D/F conflict?");
 621}
 622
 623static void update_file_flags(struct merge_options *o,
 624                              const unsigned char *sha,
 625                              unsigned mode,
 626                              const char *path,
 627                              int update_cache,
 628                              int update_wd)
 629{
 630        if (o->call_depth)
 631                update_wd = 0;
 632
 633        if (update_wd) {
 634                enum object_type type;
 635                void *buf;
 636                unsigned long size;
 637
 638                if (S_ISGITLINK(mode)) {
 639                        /*
 640                         * We may later decide to recursively descend into
 641                         * the submodule directory and update its index
 642                         * and/or work tree, but we do not do that now.
 643                         */
 644                        update_wd = 0;
 645                        goto update_index;
 646                }
 647
 648                buf = read_sha1_file(sha, &type, &size);
 649                if (!buf)
 650                        die("cannot read object %s '%s'", sha1_to_hex(sha), path);
 651                if (type != OBJ_BLOB)
 652                        die("blob expected for %s '%s'", sha1_to_hex(sha), path);
 653                if (S_ISREG(mode)) {
 654                        struct strbuf strbuf = STRBUF_INIT;
 655                        if (convert_to_working_tree(path, buf, size, &strbuf)) {
 656                                free(buf);
 657                                size = strbuf.len;
 658                                buf = strbuf_detach(&strbuf, NULL);
 659                        }
 660                }
 661
 662                if (make_room_for_path(path) < 0) {
 663                        update_wd = 0;
 664                        free(buf);
 665                        goto update_index;
 666                }
 667                if (S_ISREG(mode) || (!has_symlinks && S_ISLNK(mode))) {
 668                        int fd;
 669                        if (mode & 0100)
 670                                mode = 0777;
 671                        else
 672                                mode = 0666;
 673                        fd = open(path, O_WRONLY | O_TRUNC | O_CREAT, mode);
 674                        if (fd < 0)
 675                                die_errno("failed to open '%s'", path);
 676                        flush_buffer(fd, buf, size);
 677                        close(fd);
 678                } else if (S_ISLNK(mode)) {
 679                        char *lnk = xmemdupz(buf, size);
 680                        safe_create_leading_directories_const(path);
 681                        unlink(path);
 682                        if (symlink(lnk, path))
 683                                die_errno("failed to symlink '%s'", path);
 684                        free(lnk);
 685                } else
 686                        die("do not know what to do with %06o %s '%s'",
 687                            mode, sha1_to_hex(sha), path);
 688                free(buf);
 689        }
 690 update_index:
 691        if (update_cache)
 692                add_cacheinfo(mode, sha, path, 0, update_wd, ADD_CACHE_OK_TO_ADD);
 693}
 694
 695static void update_file(struct merge_options *o,
 696                        int clean,
 697                        const unsigned char *sha,
 698                        unsigned mode,
 699                        const char *path)
 700{
 701        update_file_flags(o, sha, mode, path, o->call_depth || clean, !o->call_depth);
 702}
 703
 704/* Low level file merging, update and removal */
 705
 706struct merge_file_info {
 707        unsigned char sha[20];
 708        unsigned mode;
 709        unsigned clean:1,
 710                 merge:1;
 711};
 712
 713static int merge_3way(struct merge_options *o,
 714                      mmbuffer_t *result_buf,
 715                      struct diff_filespec *one,
 716                      struct diff_filespec *a,
 717                      struct diff_filespec *b,
 718                      const char *branch1,
 719                      const char *branch2)
 720{
 721        mmfile_t orig, src1, src2;
 722        struct ll_merge_options ll_opts = {0};
 723        char *base_name, *name1, *name2;
 724        int merge_status;
 725
 726        ll_opts.renormalize = o->renormalize;
 727        ll_opts.xdl_opts = o->xdl_opts;
 728
 729        if (o->call_depth) {
 730                ll_opts.virtual_ancestor = 1;
 731                ll_opts.variant = 0;
 732        } else {
 733                switch (o->recursive_variant) {
 734                case MERGE_RECURSIVE_OURS:
 735                        ll_opts.variant = XDL_MERGE_FAVOR_OURS;
 736                        break;
 737                case MERGE_RECURSIVE_THEIRS:
 738                        ll_opts.variant = XDL_MERGE_FAVOR_THEIRS;
 739                        break;
 740                default:
 741                        ll_opts.variant = 0;
 742                        break;
 743                }
 744        }
 745
 746        if (strcmp(a->path, b->path) ||
 747            (o->ancestor != NULL && strcmp(a->path, one->path) != 0)) {
 748                base_name = o->ancestor == NULL ? NULL :
 749                        xstrdup(mkpath("%s:%s", o->ancestor, one->path));
 750                name1 = xstrdup(mkpath("%s:%s", branch1, a->path));
 751                name2 = xstrdup(mkpath("%s:%s", branch2, b->path));
 752        } else {
 753                base_name = o->ancestor == NULL ? NULL :
 754                        xstrdup(mkpath("%s", o->ancestor));
 755                name1 = xstrdup(mkpath("%s", branch1));
 756                name2 = xstrdup(mkpath("%s", branch2));
 757        }
 758
 759        read_mmblob(&orig, one->sha1);
 760        read_mmblob(&src1, a->sha1);
 761        read_mmblob(&src2, b->sha1);
 762
 763        merge_status = ll_merge(result_buf, a->path, &orig, base_name,
 764                                &src1, name1, &src2, name2, &ll_opts);
 765
 766        free(name1);
 767        free(name2);
 768        free(orig.ptr);
 769        free(src1.ptr);
 770        free(src2.ptr);
 771        return merge_status;
 772}
 773
 774static struct merge_file_info merge_file(struct merge_options *o,
 775                                         struct diff_filespec *one,
 776                                         struct diff_filespec *a,
 777                                         struct diff_filespec *b,
 778                                         const char *branch1,
 779                                         const char *branch2)
 780{
 781        struct merge_file_info result;
 782        result.merge = 0;
 783        result.clean = 1;
 784
 785        if ((S_IFMT & a->mode) != (S_IFMT & b->mode)) {
 786                result.clean = 0;
 787                if (S_ISREG(a->mode)) {
 788                        result.mode = a->mode;
 789                        hashcpy(result.sha, a->sha1);
 790                } else {
 791                        result.mode = b->mode;
 792                        hashcpy(result.sha, b->sha1);
 793                }
 794        } else {
 795                if (!sha_eq(a->sha1, one->sha1) && !sha_eq(b->sha1, one->sha1))
 796                        result.merge = 1;
 797
 798                /*
 799                 * Merge modes
 800                 */
 801                if (a->mode == b->mode || a->mode == one->mode)
 802                        result.mode = b->mode;
 803                else {
 804                        result.mode = a->mode;
 805                        if (b->mode != one->mode) {
 806                                result.clean = 0;
 807                                result.merge = 1;
 808                        }
 809                }
 810
 811                if (sha_eq(a->sha1, b->sha1) || sha_eq(a->sha1, one->sha1))
 812                        hashcpy(result.sha, b->sha1);
 813                else if (sha_eq(b->sha1, one->sha1))
 814                        hashcpy(result.sha, a->sha1);
 815                else if (S_ISREG(a->mode)) {
 816                        mmbuffer_t result_buf;
 817                        int merge_status;
 818
 819                        merge_status = merge_3way(o, &result_buf, one, a, b,
 820                                                  branch1, branch2);
 821
 822                        if ((merge_status < 0) || !result_buf.ptr)
 823                                die("Failed to execute internal merge");
 824
 825                        if (write_sha1_file(result_buf.ptr, result_buf.size,
 826                                            blob_type, result.sha))
 827                                die("Unable to add %s to database",
 828                                    a->path);
 829
 830                        free(result_buf.ptr);
 831                        result.clean = (merge_status == 0);
 832                } else if (S_ISGITLINK(a->mode)) {
 833                        result.clean = merge_submodule(result.sha, one->path, one->sha1,
 834                                                       a->sha1, b->sha1);
 835                } else if (S_ISLNK(a->mode)) {
 836                        hashcpy(result.sha, a->sha1);
 837
 838                        if (!sha_eq(a->sha1, b->sha1))
 839                                result.clean = 0;
 840                } else {
 841                        die("unsupported object type in the tree");
 842                }
 843        }
 844
 845        return result;
 846}
 847
 848static void conflict_rename_delete(struct merge_options *o,
 849                                   struct diff_filepair *pair,
 850                                   const char *rename_branch,
 851                                   const char *other_branch)
 852{
 853        char *dest_name = pair->two->path;
 854        int df_conflict = 0;
 855        struct stat st;
 856
 857        output(o, 1, "CONFLICT (rename/delete): Rename %s->%s in %s "
 858               "and deleted in %s",
 859               pair->one->path, pair->two->path, rename_branch,
 860               other_branch);
 861        if (!o->call_depth)
 862                update_stages(dest_name, NULL,
 863                              rename_branch == o->branch1 ? pair->two : NULL,
 864                              rename_branch == o->branch1 ? NULL : pair->two,
 865                              1);
 866        if (lstat(dest_name, &st) == 0 && S_ISDIR(st.st_mode)) {
 867                dest_name = unique_path(o, dest_name, rename_branch);
 868                df_conflict = 1;
 869        }
 870        update_file(o, 0, pair->two->sha1, pair->two->mode, dest_name);
 871        if (df_conflict)
 872                free(dest_name);
 873}
 874
 875static void conflict_rename_rename_1to2(struct merge_options *o,
 876                                        struct diff_filepair *pair1,
 877                                        const char *branch1,
 878                                        struct diff_filepair *pair2,
 879                                        const char *branch2)
 880{
 881        /* One file was renamed in both branches, but to different names. */
 882        char *del[2];
 883        int delp = 0;
 884        const char *ren1_dst = pair1->two->path;
 885        const char *ren2_dst = pair2->two->path;
 886        const char *dst_name1 = ren1_dst;
 887        const char *dst_name2 = ren2_dst;
 888        struct stat st;
 889        if (lstat(ren1_dst, &st) == 0 && S_ISDIR(st.st_mode)) {
 890                dst_name1 = del[delp++] = unique_path(o, ren1_dst, branch1);
 891                output(o, 1, "%s is a directory in %s adding as %s instead",
 892                       ren1_dst, branch2, dst_name1);
 893        }
 894        if (lstat(ren2_dst, &st) == 0 && S_ISDIR(st.st_mode)) {
 895                dst_name2 = del[delp++] = unique_path(o, ren2_dst, branch2);
 896                output(o, 1, "%s is a directory in %s adding as %s instead",
 897                       ren2_dst, branch1, dst_name2);
 898        }
 899        if (o->call_depth) {
 900                remove_file_from_cache(dst_name1);
 901                remove_file_from_cache(dst_name2);
 902                /*
 903                 * Uncomment to leave the conflicting names in the resulting tree
 904                 *
 905                 * update_file(o, 0, pair1->two->sha1, pair1->two->mode, dst_name1);
 906                 * update_file(o, 0, pair2->two->sha1, pair2->two->mode, dst_name2);
 907                 */
 908        } else {
 909                update_stages(ren1_dst, NULL, pair1->two, NULL, 1);
 910                update_stages(ren2_dst, NULL, NULL, pair2->two, 1);
 911
 912                update_file(o, 0, pair1->two->sha1, pair1->two->mode, dst_name1);
 913                update_file(o, 0, pair2->two->sha1, pair2->two->mode, dst_name2);
 914        }
 915        while (delp--)
 916                free(del[delp]);
 917}
 918
 919static void conflict_rename_rename_2to1(struct merge_options *o,
 920                                        struct rename *ren1,
 921                                        const char *branch1,
 922                                        struct rename *ren2,
 923                                        const char *branch2)
 924{
 925        /* Two files were renamed to the same thing. */
 926        char *new_path1 = unique_path(o, ren1->pair->two->path, branch1);
 927        char *new_path2 = unique_path(o, ren2->pair->two->path, branch2);
 928        output(o, 1, "Renaming %s to %s and %s to %s instead",
 929               ren1->pair->one->path, new_path1,
 930               ren2->pair->one->path, new_path2);
 931        remove_file(o, 0, ren1->pair->two->path, 0);
 932        update_file(o, 0, ren1->pair->two->sha1, ren1->pair->two->mode, new_path1);
 933        update_file(o, 0, ren2->pair->two->sha1, ren2->pair->two->mode, new_path2);
 934        free(new_path2);
 935        free(new_path1);
 936}
 937
 938static int process_renames(struct merge_options *o,
 939                           struct string_list *a_renames,
 940                           struct string_list *b_renames)
 941{
 942        int clean_merge = 1, i, j;
 943        struct string_list a_by_dst = STRING_LIST_INIT_NODUP;
 944        struct string_list b_by_dst = STRING_LIST_INIT_NODUP;
 945        const struct rename *sre;
 946
 947        for (i = 0; i < a_renames->nr; i++) {
 948                sre = a_renames->items[i].util;
 949                string_list_insert(&a_by_dst, sre->pair->two->path)->util
 950                        = sre->dst_entry;
 951        }
 952        for (i = 0; i < b_renames->nr; i++) {
 953                sre = b_renames->items[i].util;
 954                string_list_insert(&b_by_dst, sre->pair->two->path)->util
 955                        = sre->dst_entry;
 956        }
 957
 958        for (i = 0, j = 0; i < a_renames->nr || j < b_renames->nr;) {
 959                char *src;
 960                struct string_list *renames1, *renames2Dst;
 961                struct rename *ren1 = NULL, *ren2 = NULL;
 962                const char *branch1, *branch2;
 963                const char *ren1_src, *ren1_dst;
 964
 965                if (i >= a_renames->nr) {
 966                        ren2 = b_renames->items[j++].util;
 967                } else if (j >= b_renames->nr) {
 968                        ren1 = a_renames->items[i++].util;
 969                } else {
 970                        int compare = strcmp(a_renames->items[i].string,
 971                                             b_renames->items[j].string);
 972                        if (compare <= 0)
 973                                ren1 = a_renames->items[i++].util;
 974                        if (compare >= 0)
 975                                ren2 = b_renames->items[j++].util;
 976                }
 977
 978                /* TODO: refactor, so that 1/2 are not needed */
 979                if (ren1) {
 980                        renames1 = a_renames;
 981                        renames2Dst = &b_by_dst;
 982                        branch1 = o->branch1;
 983                        branch2 = o->branch2;
 984                } else {
 985                        struct rename *tmp;
 986                        renames1 = b_renames;
 987                        renames2Dst = &a_by_dst;
 988                        branch1 = o->branch2;
 989                        branch2 = o->branch1;
 990                        tmp = ren2;
 991                        ren2 = ren1;
 992                        ren1 = tmp;
 993                }
 994                src = ren1->pair->one->path;
 995
 996                ren1->dst_entry->processed = 1;
 997                ren1->src_entry->processed = 1;
 998
 999                if (ren1->processed)
1000                        continue;
1001                ren1->processed = 1;
1002
1003                ren1_src = ren1->pair->one->path;
1004                ren1_dst = ren1->pair->two->path;
1005
1006                if (ren2) {
1007                        const char *ren2_src = ren2->pair->one->path;
1008                        const char *ren2_dst = ren2->pair->two->path;
1009                        /* Renamed in 1 and renamed in 2 */
1010                        if (strcmp(ren1_src, ren2_src) != 0)
1011                                die("ren1.src != ren2.src");
1012                        ren2->dst_entry->processed = 1;
1013                        ren2->processed = 1;
1014                        if (strcmp(ren1_dst, ren2_dst) != 0) {
1015                                setup_rename_df_conflict_info(RENAME_ONE_FILE_TO_TWO,
1016                                                              ren1->pair,
1017                                                              ren2->pair,
1018                                                              branch1,
1019                                                              branch2,
1020                                                              ren1->dst_entry,
1021                                                              ren2->dst_entry);
1022                        } else {
1023                                remove_file(o, 1, ren1_src, 1);
1024                                update_stages_and_entry(ren1_dst,
1025                                                        ren1->dst_entry,
1026                                                        ren1->pair->one,
1027                                                        ren1->pair->two,
1028                                                        ren2->pair->two,
1029                                                        1 /* clear */);
1030                        }
1031                } else {
1032                        /* Renamed in 1, maybe changed in 2 */
1033                        struct string_list_item *item;
1034                        /* we only use sha1 and mode of these */
1035                        struct diff_filespec src_other, dst_other;
1036                        int try_merge;
1037
1038                        /*
1039                         * unpack_trees loads entries from common-commit
1040                         * into stage 1, from head-commit into stage 2, and
1041                         * from merge-commit into stage 3.  We keep track
1042                         * of which side corresponds to the rename.
1043                         */
1044                        int renamed_stage = a_renames == renames1 ? 2 : 3;
1045                        int other_stage =   a_renames == renames1 ? 3 : 2;
1046
1047                        remove_file(o, 1, ren1_src, o->call_depth || renamed_stage == 2);
1048
1049                        hashcpy(src_other.sha1, ren1->src_entry->stages[other_stage].sha);
1050                        src_other.mode = ren1->src_entry->stages[other_stage].mode;
1051                        hashcpy(dst_other.sha1, ren1->dst_entry->stages[other_stage].sha);
1052                        dst_other.mode = ren1->dst_entry->stages[other_stage].mode;
1053                        try_merge = 0;
1054
1055                        if (sha_eq(src_other.sha1, null_sha1)) {
1056                                if (string_list_has_string(&o->current_directory_set, ren1_dst)) {
1057                                        ren1->dst_entry->processed = 0;
1058                                        setup_rename_df_conflict_info(RENAME_DELETE,
1059                                                                      ren1->pair,
1060                                                                      NULL,
1061                                                                      branch1,
1062                                                                      branch2,
1063                                                                      ren1->dst_entry,
1064                                                                      NULL);
1065                                } else {
1066                                        clean_merge = 0;
1067                                        conflict_rename_delete(o, ren1->pair, branch1, branch2);
1068                                }
1069                        } else if ((dst_other.mode == ren1->pair->two->mode) &&
1070                                   sha_eq(dst_other.sha1, ren1->pair->two->sha1)) {
1071                                /* Added file on the other side
1072                                   identical to the file being
1073                                   renamed: clean merge */
1074                                update_file(o, 1, ren1->pair->two->sha1, ren1->pair->two->mode, ren1_dst);
1075                        } else if (!sha_eq(dst_other.sha1, null_sha1)) {
1076                                const char *new_path;
1077                                clean_merge = 0;
1078                                try_merge = 1;
1079                                output(o, 1, "CONFLICT (rename/add): Rename %s->%s in %s. "
1080                                       "%s added in %s",
1081                                       ren1_src, ren1_dst, branch1,
1082                                       ren1_dst, branch2);
1083                                if (o->call_depth) {
1084                                        struct merge_file_info mfi;
1085                                        struct diff_filespec one, a, b;
1086
1087                                        one.path = a.path = b.path =
1088                                                (char *)ren1_dst;
1089                                        hashcpy(one.sha1, null_sha1);
1090                                        one.mode = 0;
1091                                        hashcpy(a.sha1, ren1->pair->two->sha1);
1092                                        a.mode = ren1->pair->two->mode;
1093                                        hashcpy(b.sha1, dst_other.sha1);
1094                                        b.mode = dst_other.mode;
1095                                        mfi = merge_file(o, &one, &a, &b,
1096                                                         branch1,
1097                                                         branch2);
1098                                        output(o, 1, "Adding merged %s", ren1_dst);
1099                                        update_file(o, 0,
1100                                                    mfi.sha,
1101                                                    mfi.mode,
1102                                                    ren1_dst);
1103                                        try_merge = 0;
1104                                } else {
1105                                        new_path = unique_path(o, ren1_dst, branch2);
1106                                        output(o, 1, "Adding as %s instead", new_path);
1107                                        update_file(o, 0, dst_other.sha1, dst_other.mode, new_path);
1108                                }
1109                        } else if ((item = string_list_lookup(renames2Dst, ren1_dst))) {
1110                                ren2 = item->util;
1111                                clean_merge = 0;
1112                                ren2->processed = 1;
1113                                output(o, 1, "CONFLICT (rename/rename): "
1114                                       "Rename %s->%s in %s. "
1115                                       "Rename %s->%s in %s",
1116                                       ren1_src, ren1_dst, branch1,
1117                                       ren2->pair->one->path, ren2->pair->two->path, branch2);
1118                                conflict_rename_rename_2to1(o, ren1, branch1, ren2, branch2);
1119                        } else
1120                                try_merge = 1;
1121
1122                        if (try_merge) {
1123                                struct diff_filespec *one, *a, *b;
1124                                src_other.path = (char *)ren1_src;
1125
1126                                one = ren1->pair->one;
1127                                if (a_renames == renames1) {
1128                                        a = ren1->pair->two;
1129                                        b = &src_other;
1130                                } else {
1131                                        b = ren1->pair->two;
1132                                        a = &src_other;
1133                                }
1134                                update_stages_and_entry(ren1_dst, ren1->dst_entry, one, a, b, 1);
1135                                if (string_list_has_string(&o->current_directory_set, ren1_dst)) {
1136                                        setup_rename_df_conflict_info(RENAME_NORMAL,
1137                                                                      ren1->pair,
1138                                                                      NULL,
1139                                                                      branch1,
1140                                                                      NULL,
1141                                                                      ren1->dst_entry,
1142                                                                      NULL);
1143                                }
1144                        }
1145                }
1146        }
1147        string_list_clear(&a_by_dst, 0);
1148        string_list_clear(&b_by_dst, 0);
1149
1150        return clean_merge;
1151}
1152
1153static unsigned char *stage_sha(const unsigned char *sha, unsigned mode)
1154{
1155        return (is_null_sha1(sha) || mode == 0) ? NULL: (unsigned char *)sha;
1156}
1157
1158static int read_sha1_strbuf(const unsigned char *sha1, struct strbuf *dst)
1159{
1160        void *buf;
1161        enum object_type type;
1162        unsigned long size;
1163        buf = read_sha1_file(sha1, &type, &size);
1164        if (!buf)
1165                return error("cannot read object %s", sha1_to_hex(sha1));
1166        if (type != OBJ_BLOB) {
1167                free(buf);
1168                return error("object %s is not a blob", sha1_to_hex(sha1));
1169        }
1170        strbuf_attach(dst, buf, size, size + 1);
1171        return 0;
1172}
1173
1174static int blob_unchanged(const unsigned char *o_sha,
1175                          const unsigned char *a_sha,
1176                          int renormalize, const char *path)
1177{
1178        struct strbuf o = STRBUF_INIT;
1179        struct strbuf a = STRBUF_INIT;
1180        int ret = 0; /* assume changed for safety */
1181
1182        if (sha_eq(o_sha, a_sha))
1183                return 1;
1184        if (!renormalize)
1185                return 0;
1186
1187        assert(o_sha && a_sha);
1188        if (read_sha1_strbuf(o_sha, &o) || read_sha1_strbuf(a_sha, &a))
1189                goto error_return;
1190        /*
1191         * Note: binary | is used so that both renormalizations are
1192         * performed.  Comparison can be skipped if both files are
1193         * unchanged since their sha1s have already been compared.
1194         */
1195        if (renormalize_buffer(path, o.buf, o.len, &o) |
1196            renormalize_buffer(path, a.buf, o.len, &a))
1197                ret = (o.len == a.len && !memcmp(o.buf, a.buf, o.len));
1198
1199error_return:
1200        strbuf_release(&o);
1201        strbuf_release(&a);
1202        return ret;
1203}
1204
1205static void handle_delete_modify(struct merge_options *o,
1206                                 const char *path,
1207                                 const char *new_path,
1208                                 unsigned char *a_sha, int a_mode,
1209                                 unsigned char *b_sha, int b_mode)
1210{
1211        if (!a_sha) {
1212                output(o, 1, "CONFLICT (delete/modify): %s deleted in %s "
1213                       "and modified in %s. Version %s of %s left in tree%s%s.",
1214                       path, o->branch1,
1215                       o->branch2, o->branch2, path,
1216                       path == new_path ? "" : " at ",
1217                       path == new_path ? "" : new_path);
1218                update_file(o, 0, b_sha, b_mode, new_path);
1219        } else {
1220                output(o, 1, "CONFLICT (delete/modify): %s deleted in %s "
1221                       "and modified in %s. Version %s of %s left in tree%s%s.",
1222                       path, o->branch2,
1223                       o->branch1, o->branch1, path,
1224                       path == new_path ? "" : " at ",
1225                       path == new_path ? "" : new_path);
1226                update_file(o, 0, a_sha, a_mode, new_path);
1227        }
1228}
1229
1230static int merge_content(struct merge_options *o,
1231                         const char *path,
1232                         unsigned char *o_sha, int o_mode,
1233                         unsigned char *a_sha, int a_mode,
1234                         unsigned char *b_sha, int b_mode,
1235                         const char *df_rename_conflict_branch)
1236{
1237        const char *reason = "content";
1238        struct merge_file_info mfi;
1239        struct diff_filespec one, a, b;
1240        struct stat st;
1241        unsigned df_conflict_remains = 0;
1242
1243        if (!o_sha) {
1244                reason = "add/add";
1245                o_sha = (unsigned char *)null_sha1;
1246        }
1247        one.path = a.path = b.path = (char *)path;
1248        hashcpy(one.sha1, o_sha);
1249        one.mode = o_mode;
1250        hashcpy(a.sha1, a_sha);
1251        a.mode = a_mode;
1252        hashcpy(b.sha1, b_sha);
1253        b.mode = b_mode;
1254
1255        mfi = merge_file(o, &one, &a, &b, o->branch1, o->branch2);
1256        if (df_rename_conflict_branch &&
1257            lstat(path, &st) == 0 && S_ISDIR(st.st_mode)) {
1258                df_conflict_remains = 1;
1259        }
1260
1261        if (mfi.clean && !df_conflict_remains &&
1262            sha_eq(mfi.sha, a_sha) && mfi.mode == a.mode)
1263                output(o, 3, "Skipped %s (merged same as existing)", path);
1264        else
1265                output(o, 2, "Auto-merging %s", path);
1266
1267        if (!mfi.clean) {
1268                if (S_ISGITLINK(mfi.mode))
1269                        reason = "submodule";
1270                output(o, 1, "CONFLICT (%s): Merge conflict in %s",
1271                                reason, path);
1272        }
1273
1274        if (df_conflict_remains) {
1275                const char *new_path;
1276                update_file_flags(o, mfi.sha, mfi.mode, path,
1277                                  o->call_depth || mfi.clean, 0);
1278                new_path = unique_path(o, path, df_rename_conflict_branch);
1279                mfi.clean = 0;
1280                output(o, 1, "Adding as %s instead", new_path);
1281                update_file_flags(o, mfi.sha, mfi.mode, new_path, 0, 1);
1282        } else {
1283                update_file(o, mfi.clean, mfi.sha, mfi.mode, path);
1284        }
1285        return mfi.clean;
1286
1287}
1288
1289/* Per entry merge function */
1290static int process_entry(struct merge_options *o,
1291                         const char *path, struct stage_data *entry)
1292{
1293        /*
1294        printf("processing entry, clean cache: %s\n", index_only ? "yes": "no");
1295        print_index_entry("\tpath: ", entry);
1296        */
1297        int clean_merge = 1;
1298        int normalize = o->renormalize;
1299        unsigned o_mode = entry->stages[1].mode;
1300        unsigned a_mode = entry->stages[2].mode;
1301        unsigned b_mode = entry->stages[3].mode;
1302        unsigned char *o_sha = stage_sha(entry->stages[1].sha, o_mode);
1303        unsigned char *a_sha = stage_sha(entry->stages[2].sha, a_mode);
1304        unsigned char *b_sha = stage_sha(entry->stages[3].sha, b_mode);
1305
1306        if (entry->rename_df_conflict_info)
1307                return 1; /* Such cases are handled elsewhere. */
1308
1309        entry->processed = 1;
1310        if (o_sha && (!a_sha || !b_sha)) {
1311                /* Case A: Deleted in one */
1312                if ((!a_sha && !b_sha) ||
1313                    (!b_sha && blob_unchanged(o_sha, a_sha, normalize, path)) ||
1314                    (!a_sha && blob_unchanged(o_sha, b_sha, normalize, path))) {
1315                        /* Deleted in both or deleted in one and
1316                         * unchanged in the other */
1317                        if (a_sha)
1318                                output(o, 2, "Removing %s", path);
1319                        /* do not touch working file if it did not exist */
1320                        remove_file(o, 1, path, !a_sha);
1321                } else if (string_list_has_string(&o->current_directory_set,
1322                                                  path)) {
1323                        entry->processed = 0;
1324                        return 1; /* Assume clean until processed */
1325                } else {
1326                        /* Deleted in one and changed in the other */
1327                        clean_merge = 0;
1328                        handle_delete_modify(o, path, path,
1329                                             a_sha, a_mode, b_sha, b_mode);
1330                }
1331
1332        } else if ((!o_sha && a_sha && !b_sha) ||
1333                   (!o_sha && !a_sha && b_sha)) {
1334                /* Case B: Added in one. */
1335                unsigned mode;
1336                const unsigned char *sha;
1337
1338                if (a_sha) {
1339                        mode = a_mode;
1340                        sha = a_sha;
1341                } else {
1342                        mode = b_mode;
1343                        sha = b_sha;
1344                }
1345                if (string_list_has_string(&o->current_directory_set, path)) {
1346                        /* Handle D->F conflicts after all subfiles */
1347                        entry->processed = 0;
1348                        return 1; /* Assume clean until processed */
1349                } else {
1350                        output(o, 2, "Adding %s", path);
1351                        update_file(o, 1, sha, mode, path);
1352                }
1353        } else if (a_sha && b_sha) {
1354                /* Case C: Added in both (check for same permissions) and */
1355                /* case D: Modified in both, but differently. */
1356                clean_merge = merge_content(o, path,
1357                                            o_sha, o_mode, a_sha, a_mode, b_sha, b_mode,
1358                                            NULL);
1359        } else if (!o_sha && !a_sha && !b_sha) {
1360                /*
1361                 * this entry was deleted altogether. a_mode == 0 means
1362                 * we had that path and want to actively remove it.
1363                 */
1364                remove_file(o, 1, path, !a_mode);
1365        } else
1366                die("Fatal merge failure, shouldn't happen.");
1367
1368        return clean_merge;
1369}
1370
1371/*
1372 * Per entry merge function for D/F (and/or rename) conflicts.  In the
1373 * cases we can cleanly resolve D/F conflicts, process_entry() can
1374 * clean out all the files below the directory for us.  All D/F
1375 * conflict cases must be handled here at the end to make sure any
1376 * directories that can be cleaned out, are.
1377 *
1378 * Some rename conflicts may also be handled here that don't necessarily
1379 * involve D/F conflicts, since the code to handle them is generic enough
1380 * to handle those rename conflicts with or without D/F conflicts also
1381 * being involved.
1382 */
1383static int process_df_entry(struct merge_options *o,
1384                            const char *path, struct stage_data *entry)
1385{
1386        int clean_merge = 1;
1387        unsigned o_mode = entry->stages[1].mode;
1388        unsigned a_mode = entry->stages[2].mode;
1389        unsigned b_mode = entry->stages[3].mode;
1390        unsigned char *o_sha = stage_sha(entry->stages[1].sha, o_mode);
1391        unsigned char *a_sha = stage_sha(entry->stages[2].sha, a_mode);
1392        unsigned char *b_sha = stage_sha(entry->stages[3].sha, b_mode);
1393        struct stat st;
1394
1395        entry->processed = 1;
1396        if (entry->rename_df_conflict_info) {
1397                struct rename_df_conflict_info *conflict_info = entry->rename_df_conflict_info;
1398                char *src;
1399                switch (conflict_info->rename_type) {
1400                case RENAME_NORMAL:
1401                        clean_merge = merge_content(o, path,
1402                                                    o_sha, o_mode, a_sha, a_mode, b_sha, b_mode,
1403                                                    conflict_info->branch1);
1404                        break;
1405                case RENAME_DELETE:
1406                        clean_merge = 0;
1407                        conflict_rename_delete(o, conflict_info->pair1,
1408                                               conflict_info->branch1,
1409                                               conflict_info->branch2);
1410                        break;
1411                case RENAME_ONE_FILE_TO_TWO:
1412                        src = conflict_info->pair1->one->path;
1413                        clean_merge = 0;
1414                        output(o, 1, "CONFLICT (rename/rename): "
1415                               "Rename \"%s\"->\"%s\" in branch \"%s\" "
1416                               "rename \"%s\"->\"%s\" in \"%s\"%s",
1417                               src, conflict_info->pair1->two->path, conflict_info->branch1,
1418                               src, conflict_info->pair2->two->path, conflict_info->branch2,
1419                               o->call_depth ? " (left unresolved)" : "");
1420                        if (o->call_depth) {
1421                                remove_file_from_cache(src);
1422                                update_file(o, 0, conflict_info->pair1->one->sha1,
1423                                            conflict_info->pair1->one->mode, src);
1424                        }
1425                        conflict_rename_rename_1to2(o, conflict_info->pair1,
1426                                                    conflict_info->branch1,
1427                                                    conflict_info->pair2,
1428                                                    conflict_info->branch2);
1429                        conflict_info->dst_entry2->processed = 1;
1430                        break;
1431                default:
1432                        entry->processed = 0;
1433                        break;
1434                }
1435        } else if (o_sha && (!a_sha || !b_sha)) {
1436                /* Modify/delete; deleted side may have put a directory in the way */
1437                const char *new_path = path;
1438                if (lstat(path, &st) == 0 && S_ISDIR(st.st_mode))
1439                        new_path = unique_path(o, path, a_sha ? o->branch1 : o->branch2);
1440                clean_merge = 0;
1441                handle_delete_modify(o, path, new_path,
1442                                     a_sha, a_mode, b_sha, b_mode);
1443        } else if (!o_sha && !!a_sha != !!b_sha) {
1444                /* directory -> (directory, file) */
1445                const char *add_branch;
1446                const char *other_branch;
1447                unsigned mode;
1448                const unsigned char *sha;
1449                const char *conf;
1450
1451                if (a_sha) {
1452                        add_branch = o->branch1;
1453                        other_branch = o->branch2;
1454                        mode = a_mode;
1455                        sha = a_sha;
1456                        conf = "file/directory";
1457                } else {
1458                        add_branch = o->branch2;
1459                        other_branch = o->branch1;
1460                        mode = b_mode;
1461                        sha = b_sha;
1462                        conf = "directory/file";
1463                }
1464                if (lstat(path, &st) == 0 && S_ISDIR(st.st_mode)) {
1465                        const char *new_path = unique_path(o, path, add_branch);
1466                        clean_merge = 0;
1467                        output(o, 1, "CONFLICT (%s): There is a directory with name %s in %s. "
1468                               "Adding %s as %s",
1469                               conf, path, other_branch, path, new_path);
1470                        update_file(o, 0, sha, mode, new_path);
1471                } else {
1472                        output(o, 2, "Adding %s", path);
1473                        update_file(o, 1, sha, mode, path);
1474                }
1475        } else {
1476                entry->processed = 0;
1477                return 1; /* not handled; assume clean until processed */
1478        }
1479
1480        return clean_merge;
1481}
1482
1483int merge_trees(struct merge_options *o,
1484                struct tree *head,
1485                struct tree *merge,
1486                struct tree *common,
1487                struct tree **result)
1488{
1489        int code, clean;
1490
1491        if (o->subtree_shift) {
1492                merge = shift_tree_object(head, merge, o->subtree_shift);
1493                common = shift_tree_object(head, common, o->subtree_shift);
1494        }
1495
1496        if (sha_eq(common->object.sha1, merge->object.sha1)) {
1497                output(o, 0, "Already up-to-date!");
1498                *result = head;
1499                return 1;
1500        }
1501
1502        code = git_merge_trees(o->call_depth, common, head, merge);
1503
1504        if (code != 0) {
1505                if (show(o, 4) || o->call_depth)
1506                        die("merging of trees %s and %s failed",
1507                            sha1_to_hex(head->object.sha1),
1508                            sha1_to_hex(merge->object.sha1));
1509                else
1510                        exit(128);
1511        }
1512
1513        if (unmerged_cache()) {
1514                struct string_list *entries, *re_head, *re_merge;
1515                int i;
1516                string_list_clear(&o->current_file_set, 1);
1517                string_list_clear(&o->current_directory_set, 1);
1518                get_files_dirs(o, head);
1519                get_files_dirs(o, merge);
1520
1521                entries = get_unmerged();
1522                make_room_for_directories_of_df_conflicts(o, entries);
1523                re_head  = get_renames(o, head, common, head, merge, entries);
1524                re_merge = get_renames(o, merge, common, head, merge, entries);
1525                clean = process_renames(o, re_head, re_merge);
1526                for (i = 0; i < entries->nr; i++) {
1527                        const char *path = entries->items[i].string;
1528                        struct stage_data *e = entries->items[i].util;
1529                        if (!e->processed
1530                                && !process_entry(o, path, e))
1531                                clean = 0;
1532                }
1533                for (i = 0; i < entries->nr; i++) {
1534                        const char *path = entries->items[i].string;
1535                        struct stage_data *e = entries->items[i].util;
1536                        if (!e->processed
1537                                && !process_df_entry(o, path, e))
1538                                clean = 0;
1539                }
1540                for (i = 0; i < entries->nr; i++) {
1541                        struct stage_data *e = entries->items[i].util;
1542                        if (!e->processed)
1543                                die("Unprocessed path??? %s",
1544                                    entries->items[i].string);
1545                }
1546
1547                string_list_clear(re_merge, 0);
1548                string_list_clear(re_head, 0);
1549                string_list_clear(entries, 1);
1550
1551        }
1552        else
1553                clean = 1;
1554
1555        if (o->call_depth)
1556                *result = write_tree_from_memory(o);
1557
1558        return clean;
1559}
1560
1561static struct commit_list *reverse_commit_list(struct commit_list *list)
1562{
1563        struct commit_list *next = NULL, *current, *backup;
1564        for (current = list; current; current = backup) {
1565                backup = current->next;
1566                current->next = next;
1567                next = current;
1568        }
1569        return next;
1570}
1571
1572/*
1573 * Merge the commits h1 and h2, return the resulting virtual
1574 * commit object and a flag indicating the cleanness of the merge.
1575 */
1576int merge_recursive(struct merge_options *o,
1577                    struct commit *h1,
1578                    struct commit *h2,
1579                    struct commit_list *ca,
1580                    struct commit **result)
1581{
1582        struct commit_list *iter;
1583        struct commit *merged_common_ancestors;
1584        struct tree *mrtree = mrtree;
1585        int clean;
1586
1587        if (show(o, 4)) {
1588                output(o, 4, "Merging:");
1589                output_commit_title(o, h1);
1590                output_commit_title(o, h2);
1591        }
1592
1593        if (!ca) {
1594                ca = get_merge_bases(h1, h2, 1);
1595                ca = reverse_commit_list(ca);
1596        }
1597
1598        if (show(o, 5)) {
1599                output(o, 5, "found %u common ancestor(s):", commit_list_count(ca));
1600                for (iter = ca; iter; iter = iter->next)
1601                        output_commit_title(o, iter->item);
1602        }
1603
1604        merged_common_ancestors = pop_commit(&ca);
1605        if (merged_common_ancestors == NULL) {
1606                /* if there is no common ancestor, make an empty tree */
1607                struct tree *tree = xcalloc(1, sizeof(struct tree));
1608
1609                tree->object.parsed = 1;
1610                tree->object.type = OBJ_TREE;
1611                pretend_sha1_file(NULL, 0, OBJ_TREE, tree->object.sha1);
1612                merged_common_ancestors = make_virtual_commit(tree, "ancestor");
1613        }
1614
1615        for (iter = ca; iter; iter = iter->next) {
1616                const char *saved_b1, *saved_b2;
1617                o->call_depth++;
1618                /*
1619                 * When the merge fails, the result contains files
1620                 * with conflict markers. The cleanness flag is
1621                 * ignored, it was never actually used, as result of
1622                 * merge_trees has always overwritten it: the committed
1623                 * "conflicts" were already resolved.
1624                 */
1625                discard_cache();
1626                saved_b1 = o->branch1;
1627                saved_b2 = o->branch2;
1628                o->branch1 = "Temporary merge branch 1";
1629                o->branch2 = "Temporary merge branch 2";
1630                merge_recursive(o, merged_common_ancestors, iter->item,
1631                                NULL, &merged_common_ancestors);
1632                o->branch1 = saved_b1;
1633                o->branch2 = saved_b2;
1634                o->call_depth--;
1635
1636                if (!merged_common_ancestors)
1637                        die("merge returned no commit");
1638        }
1639
1640        discard_cache();
1641        if (!o->call_depth)
1642                read_cache();
1643
1644        o->ancestor = "merged common ancestors";
1645        clean = merge_trees(o, h1->tree, h2->tree, merged_common_ancestors->tree,
1646                            &mrtree);
1647
1648        if (o->call_depth) {
1649                *result = make_virtual_commit(mrtree, "merged tree");
1650                commit_list_insert(h1, &(*result)->parents);
1651                commit_list_insert(h2, &(*result)->parents->next);
1652        }
1653        flush_output(o);
1654        if (show(o, 2))
1655                diff_warn_rename_limit("merge.renamelimit",
1656                                       o->needed_rename_limit, 0);
1657        return clean;
1658}
1659
1660static struct commit *get_ref(const unsigned char *sha1, const char *name)
1661{
1662        struct object *object;
1663
1664        object = deref_tag(parse_object(sha1), name, strlen(name));
1665        if (!object)
1666                return NULL;
1667        if (object->type == OBJ_TREE)
1668                return make_virtual_commit((struct tree*)object, name);
1669        if (object->type != OBJ_COMMIT)
1670                return NULL;
1671        if (parse_commit((struct commit *)object))
1672                return NULL;
1673        return (struct commit *)object;
1674}
1675
1676int merge_recursive_generic(struct merge_options *o,
1677                            const unsigned char *head,
1678                            const unsigned char *merge,
1679                            int num_base_list,
1680                            const unsigned char **base_list,
1681                            struct commit **result)
1682{
1683        int clean, index_fd;
1684        struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
1685        struct commit *head_commit = get_ref(head, o->branch1);
1686        struct commit *next_commit = get_ref(merge, o->branch2);
1687        struct commit_list *ca = NULL;
1688
1689        if (base_list) {
1690                int i;
1691                for (i = 0; i < num_base_list; ++i) {
1692                        struct commit *base;
1693                        if (!(base = get_ref(base_list[i], sha1_to_hex(base_list[i]))))
1694                                return error("Could not parse object '%s'",
1695                                        sha1_to_hex(base_list[i]));
1696                        commit_list_insert(base, &ca);
1697                }
1698        }
1699
1700        index_fd = hold_locked_index(lock, 1);
1701        clean = merge_recursive(o, head_commit, next_commit, ca,
1702                        result);
1703        if (active_cache_changed &&
1704                        (write_cache(index_fd, active_cache, active_nr) ||
1705                         commit_locked_index(lock)))
1706                return error("Unable to write index.");
1707
1708        return clean ? 0 : 1;
1709}
1710
1711static int merge_recursive_config(const char *var, const char *value, void *cb)
1712{
1713        struct merge_options *o = cb;
1714        if (!strcasecmp(var, "merge.verbosity")) {
1715                o->verbosity = git_config_int(var, value);
1716                return 0;
1717        }
1718        if (!strcasecmp(var, "diff.renamelimit")) {
1719                o->diff_rename_limit = git_config_int(var, value);
1720                return 0;
1721        }
1722        if (!strcasecmp(var, "merge.renamelimit")) {
1723                o->merge_rename_limit = git_config_int(var, value);
1724                return 0;
1725        }
1726        return git_xmerge_config(var, value, cb);
1727}
1728
1729void init_merge_options(struct merge_options *o)
1730{
1731        memset(o, 0, sizeof(struct merge_options));
1732        o->verbosity = 2;
1733        o->buffer_output = 1;
1734        o->diff_rename_limit = -1;
1735        o->merge_rename_limit = -1;
1736        o->renormalize = 0;
1737        git_config(merge_recursive_config, o);
1738        if (getenv("GIT_MERGE_VERBOSITY"))
1739                o->verbosity =
1740                        strtol(getenv("GIT_MERGE_VERBOSITY"), NULL, 10);
1741        if (o->verbosity >= 5)
1742                o->buffer_output = 0;
1743        strbuf_init(&o->obuf, 0);
1744        memset(&o->current_file_set, 0, sizeof(struct string_list));
1745        o->current_file_set.strdup_strings = 1;
1746        memset(&o->current_directory_set, 0, sizeof(struct string_list));
1747        o->current_directory_set.strdup_strings = 1;
1748}
1749
1750int parse_merge_opt(struct merge_options *o, const char *s)
1751{
1752        if (!s || !*s)
1753                return -1;
1754        if (!strcmp(s, "ours"))
1755                o->recursive_variant = MERGE_RECURSIVE_OURS;
1756        else if (!strcmp(s, "theirs"))
1757                o->recursive_variant = MERGE_RECURSIVE_THEIRS;
1758        else if (!strcmp(s, "subtree"))
1759                o->subtree_shift = "";
1760        else if (!prefixcmp(s, "subtree="))
1761                o->subtree_shift = s + strlen("subtree=");
1762        else if (!strcmp(s, "patience"))
1763                o->xdl_opts |= XDF_PATIENCE_DIFF;
1764        else if (!strcmp(s, "ignore-space-change"))
1765                o->xdl_opts |= XDF_IGNORE_WHITESPACE_CHANGE;
1766        else if (!strcmp(s, "ignore-all-space"))
1767                o->xdl_opts |= XDF_IGNORE_WHITESPACE;
1768        else if (!strcmp(s, "ignore-space-at-eol"))
1769                o->xdl_opts |= XDF_IGNORE_WHITESPACE_AT_EOL;
1770        else if (!strcmp(s, "renormalize"))
1771                o->renormalize = 1;
1772        else if (!strcmp(s, "no-renormalize"))
1773                o->renormalize = 0;
1774        else if (!prefixcmp(s, "rename-threshold=")) {
1775                const char *score = s + strlen("rename-threshold=");
1776                if ((o->rename_score = parse_rename_score(&score)) == -1 || *score != 0)
1777                        return -1;
1778        }
1779        else
1780                return -1;
1781        return 0;
1782}