merge-recursive.c 34.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Recursive Merge algorithm stolen from git-merge-recursive.py by
 * Fredrik Kuivinen.
 * The thieves were Alex Riesen and Johannes Schindelin, in June/July 2006
 */
#include <stdarg.h>
#include <string.h>
#include <assert.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>
#include "cache.h"
#include "cache-tree.h"
#include "commit.h"
#include "blob.h"
#include "tree-walk.h"
#include "diff.h"
#include "diffcore.h"
#include "run-command.h"
#include "tag.h"
22
#include "unpack-trees.h"
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
#include "path-list.h"

/*
 * A virtual commit has
 * - (const char *)commit->util set to the name, and
 * - *(int *)commit->object.sha1 set to the virtual id.
 */

static unsigned commit_list_count(const struct commit_list *l)
{
	unsigned c = 0;
	for (; l; l = l->next )
		c++;
	return c;
}

static struct commit *make_virtual_commit(struct tree *tree, const char *comment)
{
	struct commit *commit = xcalloc(1, sizeof(struct commit));
	static unsigned virtual_id = 1;
	commit->tree = tree;
	commit->util = (void*)comment;
	*(int*)commit->object.sha1 = virtual_id++;
46 47
	/* avoid warnings */
	commit->object.parsed = 1;
48 49 50 51
	return commit;
}

/*
52 53
 * Since we use get_tree_entry(), which does not put the read object into
 * the object pool, we cannot rely on a == b.
54 55 56
 */
static int sha_eq(const unsigned char *a, const unsigned char *b)
{
57
	if (!a && !b)
58 59 60 61 62
		return 2;
	return a && b && memcmp(a, b, 20) == 0;
}

/*
63 64
 * Since we want to write the index eventually, we cannot reuse the index
 * for these (temporary) data.
65 66 67 68 69 70 71 72 73 74 75
 */
struct stage_data
{
	struct
	{
		unsigned mode;
		unsigned char sha[20];
	} stages[4];
	unsigned processed:1;
};

76 77
static struct path_list current_file_set = {NULL, 0, 0, 1};
static struct path_list current_directory_set = {NULL, 0, 0, 1};
78 79 80 81 82 83 84

static int output_indent = 0;

static void output(const char *fmt, ...)
{
	va_list args;
	int i;
85
	for (i = output_indent; i--;)
86 87 88 89 90 91 92
		fputs("  ", stdout);
	va_start(args, fmt);
	vfprintf(stdout, fmt, args);
	va_end(args);
	fputc('\n', stdout);
}

93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
static void output_commit_title(struct commit *commit)
{
	int i;
	for (i = output_indent; i--;)
		fputs("  ", stdout);
	if (commit->util)
		printf("virtual %s\n", (char *)commit->util);
	else {
		printf("%s ", sha1_to_hex(commit->object.sha1));
		if (parse_commit(commit) != 0)
			printf("(bad commit)\n");
		else {
			const char *s;
			int len;
			for (s = commit->buffer; *s; s++)
				if (*s == '\n' && s[1] == '\n') {
					s += 2;
					break;
				}
			for (len = 0; s[len] && '\n' != s[len]; len++)
				; /* do nothing */
			printf("%.*s\n", len, s);
		}
	}
}

119
static const char *current_index_file = NULL;
120 121 122 123
static const char *original_index_file;
static const char *temporary_index_file;
static int cache_dirty = 0;

124
static int flush_cache(void)
125 126 127
{
	/* flush temporary index */
	struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
128
	int fd = hold_lock_file_for_update(lock, current_index_file, 1);
129 130
	if (write_cache(fd, active_cache, active_nr) ||
			close(fd) || commit_lock_file(lock))
131
		die ("unable to write %s", current_index_file);
132 133 134 135 136 137 138
	discard_cache();
	cache_dirty = 0;
	return 0;
}

static void setup_index(int temp)
{
139
	current_index_file = temp ? temporary_index_file: original_index_file;
140 141 142 143
	if (cache_dirty) {
		discard_cache();
		cache_dirty = 0;
	}
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
	unlink(temporary_index_file);
	discard_cache();
}

static struct cache_entry *make_cache_entry(unsigned int mode,
		const unsigned char *sha1, const char *path, int stage, int refresh)
{
	int size, len;
	struct cache_entry *ce;

	if (!verify_path(path))
		return NULL;

	len = strlen(path);
	size = cache_entry_size(len);
	ce = xcalloc(1, size);

	memcpy(ce->sha1, sha1, 20);
	memcpy(ce->name, path, len);
	ce->ce_flags = create_ce_flags(len, stage);
	ce->ce_mode = create_ce_mode(mode);

	if (refresh)
		return refresh_cache_entry(ce, 0);

	return ce;
}

static int add_cacheinfo(unsigned int mode, const unsigned char *sha1,
		const char *path, int stage, int refresh, int options)
{
	struct cache_entry *ce;
	if (!cache_dirty)
177
		read_cache_from(current_index_file);
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
	cache_dirty++;
	ce = make_cache_entry(mode, sha1 ? sha1 : null_sha1, path, stage, refresh);
	if (!ce)
		return error("cache_addinfo failed: %s", strerror(cache_errno));
	return add_cache_entry(ce, options);
}

/*
 * This is a global variable which is used in a number of places but
 * only written to in the 'merge' function.
 *
 * index_only == 1    => Don't leave any non-stage 0 entries in the cache and
 *                       don't update the working directory.
 *               0    => Leave unmerged entries in the cache and update
 *                       the working directory.
 */
static int index_only = 0;

196
static int git_read_tree(struct tree *tree)
197
{
198
	int rc;
199 200 201
	struct object_list *trees = NULL;
	struct unpack_trees_options opts;

202 203
	if (cache_dirty)
		die("read-tree with dirty cache");
204 205 206 207 208 209 210 211 212 213

	memset(&opts, 0, sizeof(opts));
	object_list_append(&tree->object, &trees);
	rc = unpack_trees(trees, &opts);
	cache_tree_free(&active_cache_tree);

	if (rc == 0)
		cache_dirty = 1;

	return rc;
214 215
}

216
static int git_merge_trees(int index_only,
217 218 219 220
			   struct tree *common,
			   struct tree *head,
			   struct tree *merge)
{
221
	int rc;
222 223 224 225
	struct object_list *trees = NULL;
	struct unpack_trees_options opts;

	if (!cache_dirty) {
226
		read_cache_from(current_index_file);
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
		cache_dirty = 1;
	}

	memset(&opts, 0, sizeof(opts));
	if (index_only)
		opts.index_only = 1;
	else
		opts.update = 1;
	opts.merge = 1;
	opts.head_idx = 2;
	opts.fn = threeway_merge;

	object_list_append(&common->object, &trees);
	object_list_append(&head->object, &trees);
	object_list_append(&merge->object, &trees);

	rc = unpack_trees(trees, &opts);
	cache_tree_free(&active_cache_tree);

	cache_dirty = 1;

	return rc;
249 250
}

251
static struct tree *git_write_tree(void)
252
{
253 254
	struct tree *result = NULL;

255
	if (cache_dirty) {
256
		unsigned i;
257 258 259 260 261
		for (i = 0; i < active_nr; i++) {
			struct cache_entry *ce = active_cache[i];
			if (ce_stage(ce))
				return NULL;
		}
262
	} else
263
		read_cache_from(current_index_file);
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278

	if (!active_cache_tree)
		active_cache_tree = cache_tree();

	if (!cache_tree_fully_valid(active_cache_tree) &&
			cache_tree_update(active_cache_tree,
				active_cache, active_nr, 0, 0) < 0)
		die("error building trees");

	result = lookup_tree(active_cache_tree->sha1);

	flush_cache();
	cache_dirty = 0;

	return result;
279 280 281 282 283 284 285 286 287 288 289 290 291
}

static int save_files_dirs(const unsigned char *sha1,
		const char *base, int baselen, const char *path,
		unsigned int mode, int stage)
{
	int len = strlen(path);
	char *newpath = malloc(baselen + len + 1);
	memcpy(newpath, base, baselen);
	memcpy(newpath + baselen, path, len);
	newpath[baselen + len] = '\0';

	if (S_ISDIR(mode))
292
		path_list_insert(newpath, &current_directory_set);
293
	else
294
		path_list_insert(newpath, &current_file_set);
295 296 297 298 299
	free(newpath);

	return READ_TREE_RECURSIVE;
}

300
static int get_files_dirs(struct tree *tree)
301 302
{
	int n;
303
	if (read_tree_recursive(tree, "", 0, 0, NULL, save_files_dirs) != 0)
304
		return 0;
305
	n = current_file_set.nr + current_directory_set.nr;
306 307 308 309 310 311 312
	return n;
}

/*
 * Returns a index_entry instance which doesn't have to correspond to
 * a real cache entry in Git's index.
 */
313 314 315
static struct stage_data *insert_stage_data(const char *path,
		struct tree *o, struct tree *a, struct tree *b,
		struct path_list *entries)
316
{
317
	struct path_list_item *item;
318 319 320 321 322 323 324
	struct stage_data *e = xcalloc(1, sizeof(struct stage_data));
	get_tree_entry(o->object.sha1, path,
			e->stages[1].sha, &e->stages[1].mode);
	get_tree_entry(a->object.sha1, path,
			e->stages[2].sha, &e->stages[2].mode);
	get_tree_entry(b->object.sha1, path,
			e->stages[3].sha, &e->stages[3].mode);
325 326
	item = path_list_insert(path, entries);
	item->util = e;
327 328 329 330
	return e;
}

/*
331
 * Create a dictionary mapping file names to stage_data objects. The
332 333
 * dictionary contains one entry for every path with a non-zero stage entry.
 */
334
static struct path_list *get_unmerged(void)
335 336 337 338 339 340
{
	struct path_list *unmerged = xcalloc(1, sizeof(struct path_list));
	int i;

	unmerged->strdup_paths = 1;
	if (!cache_dirty) {
341
		read_cache_from(current_index_file);
342 343 344
		cache_dirty++;
	}
	for (i = 0; i < active_nr; i++) {
345 346
		struct path_list_item *item;
		struct stage_data *e;
347 348 349 350
		struct cache_entry *ce = active_cache[i];
		if (!ce_stage(ce))
			continue;

351 352 353 354 355 356
		item = path_list_lookup(ce->name, unmerged);
		if (!item) {
			item = path_list_insert(ce->name, unmerged);
			item->util = xcalloc(1, sizeof(struct stage_data));
		}
		e = item->util;
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
		e->stages[ce_stage(ce)].mode = ntohl(ce->ce_mode);
		memcpy(e->stages[ce_stage(ce)].sha, ce->sha1, 20);
	}

	return unmerged;
}

struct rename
{
	struct diff_filepair *pair;
	struct stage_data *src_entry;
	struct stage_data *dst_entry;
	unsigned processed:1;
};

/*
373 374 375 376
 * Get information of all renames which occured between 'o_tree' and
 * 'tree'. We need the three trees in the merge ('o_tree', 'a_tree' and
 * 'b_tree') to be able to associate the correct cache entries with
 * the rename information. 'tree' is always equal to either a_tree or b_tree.
377 378
 */
static struct path_list *get_renames(struct tree *tree,
379 380 381
					struct tree *o_tree,
					struct tree *a_tree,
					struct tree *b_tree,
382 383
					struct path_list *entries)
{
384 385 386 387 388
	int i;
	struct path_list *renames;
	struct diff_options opts;

	renames = xcalloc(1, sizeof(struct path_list));
389 390 391 392 393 394
	diff_setup(&opts);
	opts.recursive = 1;
	opts.detect_rename = DIFF_DETECT_RENAME;
	opts.output_format = DIFF_FORMAT_NO_OUTPUT;
	if (diff_setup_done(&opts) < 0)
		die("diff setup failed");
395
	diff_tree_sha1(o_tree->object.sha1, tree->object.sha1, "", &opts);
396 397
	diffcore_std(&opts);
	for (i = 0; i < diff_queued_diff.nr; ++i) {
398
		struct path_list_item *item;
399 400 401 402 403 404 405 406 407
		struct rename *re;
		struct diff_filepair *pair = diff_queued_diff.queue[i];
		if (pair->status != 'R') {
			diff_free_filepair(pair);
			continue;
		}
		re = xmalloc(sizeof(*re));
		re->processed = 0;
		re->pair = pair;
408 409 410
		item = path_list_lookup(re->pair->one->path, entries);
		if (!item)
			re->src_entry = insert_stage_data(re->pair->one->path,
411
					o_tree, a_tree, b_tree, entries);
412 413 414 415 416 417
		else
			re->src_entry = item->util;

		item = path_list_lookup(re->pair->two->path, entries);
		if (!item)
			re->dst_entry = insert_stage_data(re->pair->two->path,
418
					o_tree, a_tree, b_tree, entries);
419 420 421
		else
			re->dst_entry = item->util;
		item = path_list_insert(pair->one->path, renames);
422 423 424 425 426 427 428 429
		item->util = re;
	}
	opts.output_format = DIFF_FORMAT_NO_OUTPUT;
	diff_queued_diff.nr = 0;
	diff_flush(&opts);
	return renames;
}

430 431
int update_stages(const char *path, struct diff_filespec *o,
		struct diff_filespec *a, struct diff_filespec *b, int clear)
432 433
{
	int options = ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE;
434 435
	if (clear)
		if (remove_file_from_cache(path))
436
			return -1;
437 438
	if (o)
		if (add_cacheinfo(o->mode, o->sha1, path, 1, 0, options))
439
			return -1;
440 441
	if (a)
		if (add_cacheinfo(a->mode, a->sha1, path, 2, 0, options))
442
			return -1;
443 444
	if (b)
		if (add_cacheinfo(b->mode, b->sha1, path, 3, 0, options))
445 446 447 448 449 450
			return -1;
	return 0;
}

static int remove_path(const char *name)
{
451 452
	int ret, len;
	char *slash, *dirs;
453 454

	ret = unlink(name);
455
	if (ret)
456
		return ret;
457 458
	len = strlen(name);
	dirs = malloc(len+1);
459 460
	memcpy(dirs, name, len);
	dirs[len] = '\0';
461
	while ((slash = strrchr(name, '/'))) {
462 463
		*slash = '\0';
		len = slash - name;
464
		if (rmdir(name) != 0)
465 466 467 468 469 470 471 472
			break;
	}
	free(dirs);
	return ret;
}

int remove_file(int clean, const char *path)
{
473 474
	int update_cache = index_only || clean;
	int update_working_directory = !index_only;
475

476
	if (update_cache) {
477
		if (!cache_dirty)
478
			read_cache_from(current_index_file);
479 480 481 482
		cache_dirty++;
		if (remove_file_from_cache(path))
			return -1;
	}
483
	if (update_working_directory)
484 485
	{
		unlink(path);
486
		if (errno != ENOENT || errno != EISDIR)
487 488 489 490 491 492 493 494 495
			return -1;
		remove_path(path);
	}
	return 0;
}

static char *unique_path(const char *path, const char *branch)
{
	char *newpath = xmalloc(strlen(path) + 1 + strlen(branch) + 8 + 1);
496 497
	int suffix = 0;
	struct stat st;
498
	char *p = newpath + strlen(path);
499
	strcpy(newpath, path);
500
	*(p++) = '~';
501
	strcpy(p, branch);
502 503
	for (; *p; ++p)
		if ('/' == *p)
504
			*p = '_';
505 506
	while (path_list_has_path(&current_file_set, newpath) ||
	       path_list_has_path(&current_directory_set, newpath) ||
507
	       lstat(newpath, &st) == 0)
508
		sprintf(p, "_%d", suffix++);
509

510
	path_list_insert(newpath, &current_file_set);
511 512 513
	return newpath;
}

514
static int mkdir_p(const char *path, unsigned long mode)
515
{
516
	/* path points to cache entries, so strdup before messing with it */
517
	char *buf = strdup(path);
518
	int result = safe_create_leading_directories(buf);
519
	free(buf);
520
	return result;
521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
}

static void flush_buffer(int fd, const char *buf, unsigned long size)
{
	while (size > 0) {
		long ret = xwrite(fd, buf, size);
		if (ret < 0) {
			/* Ignore epipe */
			if (errno == EPIPE)
				break;
			die("merge-recursive: %s", strerror(errno));
		} else if (!ret) {
			die("merge-recursive: disk full?");
		}
		size -= ret;
		buf += ret;
	}
}

void update_file_flags(const unsigned char *sha,
541 542 543 544
		       unsigned mode,
		       const char *path,
		       int update_cache,
		       int update_wd)
545
{
546 547
	if (index_only)
		update_wd = 0;
548

549
	if (update_wd) {
550 551 552 553 554 555 556
		char type[20];
		void *buf;
		unsigned long size;

		buf = read_sha1_file(sha, type, &size);
		if (!buf)
			die("cannot read object %s '%s'", sha1_to_hex(sha), path);
557
		if (strcmp(type, blob_type) != 0)
558 559
			die("blob expected for %s '%s'", sha1_to_hex(sha), path);

560 561 562
		if (S_ISREG(mode)) {
			int fd;
			if (mkdir_p(path, 0777))
563 564
				die("failed to create path %s: %s", path, strerror(errno));
			unlink(path);
565
			if (mode & 0100)
566 567 568
				mode = 0777;
			else
				mode = 0666;
569 570
			fd = open(path, O_WRONLY | O_TRUNC | O_CREAT, mode);
			if (fd < 0)
571 572 573
				die("failed to open %s: %s", path, strerror(errno));
			flush_buffer(fd, buf, size);
			close(fd);
574 575 576 577 578 579 580
		} else if (S_ISLNK(mode)) {
			char *lnk = malloc(size + 1);
			memcpy(lnk, buf, size);
			lnk[size] = '\0';
			mkdir_p(path, 0777);
			unlink(lnk);
			symlink(lnk, path);
581 582 583 584
		} else
			die("do not know what to do with %06o %s '%s'",
			    mode, sha1_to_hex(sha), path);
	}
585 586
	if (update_cache)
		add_cacheinfo(mode, sha, path, 0, update_wd, ADD_CACHE_OK_TO_ADD);
587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
}

void update_file(int clean,
		const unsigned char *sha,
		unsigned mode,
		const char *path)
{
	update_file_flags(sha, mode, path, index_only || clean, !index_only);
}

/* Low level file merging, update and removal */

struct merge_file_info
{
	unsigned char sha[20];
	unsigned mode;
	unsigned clean:1,
		 merge:1;
};

static char *git_unpack_file(const unsigned char *sha1, char *path)
{
	void *buf;
	char type[20];
	unsigned long size;
	int fd;

	buf = read_sha1_file(sha1, type, &size);
	if (!buf || strcmp(type, blob_type))
		die("unable to read blob object %s", sha1_to_hex(sha1));

	strcpy(path, ".merge_file_XXXXXX");
	fd = mkstemp(path);
	if (fd < 0)
		die("unable to create temp-file");
	flush_buffer(fd, buf, size);
	close(fd);
	return path;
}

627 628
static struct merge_file_info merge_file(struct diff_filespec *o,
		struct diff_filespec *a, struct diff_filespec *b,
629
		const char *branch1, const char *branch2)
630 631 632 633 634
{
	struct merge_file_info result;
	result.merge = 0;
	result.clean = 1;

635
	if ((S_IFMT & a->mode) != (S_IFMT & b->mode)) {
636
		result.clean = 0;
637 638 639
		if (S_ISREG(a->mode)) {
			result.mode = a->mode;
			memcpy(result.sha, a->sha1, 20);
640
		} else {
641 642
			result.mode = b->mode;
			memcpy(result.sha, b->sha1, 20);
643 644
		}
	} else {
645
		if (!sha_eq(a->sha1, o->sha1) && !sha_eq(b->sha1, o->sha1))
646 647
			result.merge = 1;

648
		result.mode = a->mode == o->mode ? b->mode: a->mode;
649

650 651 652 653 654 655 656
		if (sha_eq(a->sha1, o->sha1))
			memcpy(result.sha, b->sha1, 20);
		else if (sha_eq(b->sha1, o->sha1))
			memcpy(result.sha, a->sha1, 20);
		else if (S_ISREG(a->mode)) {
			int code = 1, fd;
			struct stat st;
657 658 659 660 661
			char orig[PATH_MAX];
			char src1[PATH_MAX];
			char src2[PATH_MAX];
			const char *argv[] = {
				"merge", "-L", NULL, "-L", NULL, "-L", NULL,
662
				NULL, NULL, NULL,
663 664 665
				NULL
			};
			char *la, *lb, *lo;
666 667 668 669 670

			git_unpack_file(o->sha1, orig);
			git_unpack_file(a->sha1, src1);
			git_unpack_file(b->sha1, src2);

671 672
			argv[2] = la = strdup(mkpath("%s/%s", branch1, a->path));
			argv[6] = lb = strdup(mkpath("%s/%s", branch2, b->path));
673
			argv[4] = lo = strdup(mkpath("orig/%s", o->path));
674 675 676
			argv[7] = src1;
			argv[8] = orig;
			argv[9] = src2,
677 678 679 680 681 682

			code = run_command_v(10, argv);

			free(la);
			free(lb);
			free(lo);
683
			if (code && code < -256) {
684 685 686
				die("Failed to execute 'merge'. merge(1) is used as the "
				    "file-level merge tool. Is 'merge' in your path?");
			}
687
			fd = open(src1, O_RDONLY);
688 689 690 691 692 693 694 695 696 697 698
			if (fd < 0 || fstat(fd, &st) < 0 ||
					index_fd(result.sha, fd, &st, 1,
						"blob"))
				die("Unable to add %s to database", src1);

			unlink(orig);
			unlink(src1);
			unlink(src2);

			result.clean = WEXITSTATUS(code) == 0;
		} else {
699
			if (!(S_ISLNK(a->mode) || S_ISLNK(b->mode)))
700 701
				die("cannot merge modes?");

702
			memcpy(result.sha, a->sha1, 20);
703

704
			if (!sha_eq(a->sha1, b->sha1))
705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720
				result.clean = 0;
		}
	}

	return result;
}

static void conflict_rename_rename(struct rename *ren1,
				   const char *branch1,
				   struct rename *ren2,
				   const char *branch2)
{
	char *del[2];
	int delp = 0;
	const char *ren1_dst = ren1->pair->two->path;
	const char *ren2_dst = ren2->pair->two->path;
721 722 723 724
	const char *dst_name1 = ren1_dst;
	const char *dst_name2 = ren2_dst;
	if (path_list_has_path(&current_directory_set, ren1_dst)) {
		dst_name1 = del[delp++] = unique_path(ren1_dst, branch1);
725
		output("%s is a directory in %s adding as %s instead",
726
		       ren1_dst, branch2, dst_name1);
727 728
		remove_file(0, ren1_dst);
	}
729 730
	if (path_list_has_path(&current_directory_set, ren2_dst)) {
		dst_name2 = del[delp++] = unique_path(ren2_dst, branch2);
731
		output("%s is a directory in %s adding as %s instead",
732
		       ren2_dst, branch1, dst_name2);
733 734
		remove_file(0, ren2_dst);
	}
735 736
	update_stages(dst_name1, NULL, ren1->pair->two, NULL, 1);
	update_stages(dst_name2, NULL, NULL, ren2->pair->two, 1);
737
	while (delp--)
738 739 740 741 742 743
		free(del[delp]);
}

static void conflict_rename_dir(struct rename *ren1,
				const char *branch1)
{
744 745
	char *new_path = unique_path(ren1->pair->two->path, branch1);
	output("Renaming %s to %s instead", ren1->pair->one->path, new_path);
746
	remove_file(0, ren1->pair->two->path);
747 748
	update_file(0, ren1->pair->two->sha1, ren1->pair->two->mode, new_path);
	free(new_path);
749 750 751 752 753 754 755
}

static void conflict_rename_rename_2(struct rename *ren1,
				     const char *branch1,
				     struct rename *ren2,
				     const char *branch2)
{
756 757
	char *new_path1 = unique_path(ren1->pair->two->path, branch1);
	char *new_path2 = unique_path(ren2->pair->two->path, branch2);
758
	output("Renaming %s to %s and %s to %s instead",
759 760
	       ren1->pair->one->path, new_path1,
	       ren2->pair->one->path, new_path2);
761
	remove_file(0, ren1->pair->two->path);
762 763 764 765
	update_file(0, ren1->pair->two->sha1, ren1->pair->two->mode, new_path1);
	update_file(0, ren2->pair->two->sha1, ren2->pair->two->mode, new_path2);
	free(new_path2);
	free(new_path1);
766 767
}

768 769 770 771
static int process_renames(struct path_list *a_renames,
			   struct path_list *b_renames,
			   const char *a_branch,
			   const char *b_branch)
772
{
773 774
	int clean_merge = 1, i, j;
	struct path_list a_by_dst = {NULL, 0, 0, 0}, b_by_dst = {NULL, 0, 0, 0};
775 776
	const struct rename *sre;

777 778 779
	for (i = 0; i < a_renames->nr; i++) {
		sre = a_renames->items[i].util;
		path_list_insert(sre->pair->two->path, &a_by_dst)->util
780 781
			= sre->dst_entry;
	}
782 783 784
	for (i = 0; i < b_renames->nr; i++) {
		sre = b_renames->items[i].util;
		path_list_insert(sre->pair->two->path, &b_by_dst)->util
785 786 787
			= sre->dst_entry;
	}

788
	for (i = 0, j = 0; i < a_renames->nr || j < b_renames->nr;) {
789 790
		int compare;
		char *src;
791
		struct path_list *renames1, *renames2, *renames2Dst;
792
		struct rename *ren1 = NULL, *ren2 = NULL;
793
		const char *branch1, *branch2;
794 795
		const char *ren1_src, *ren1_dst;

796
		if (i >= a_renames->nr) {
797
			compare = 1;
798 799
			ren2 = b_renames->items[j++].util;
		} else if (j >= b_renames->nr) {
800
			compare = -1;
801
			ren1 = a_renames->items[i++].util;
802
		} else {
803 804
			compare = strcmp(a_renames->items[i].path,
					b_renames->items[j].path);
805 806 807 808
			if (compare <= 0)
				ren1 = a_renames->items[i++].util;
			if (compare >= 0)
				ren2 = b_renames->items[j++].util;
809 810
		}

811
		/* TODO: refactor, so that 1/2 are not needed */
812
		if (ren1) {
813 814 815 816 817
			renames1 = a_renames;
			renames2 = b_renames;
			renames2Dst = &b_by_dst;
			branch1 = a_branch;
			branch2 = b_branch;
818
		} else {
819
			struct rename *tmp;
820 821 822 823 824
			renames1 = b_renames;
			renames2 = a_renames;
			renames2Dst = &a_by_dst;
			branch1 = b_branch;
			branch2 = a_branch;
825
			tmp = ren2;
826 827 828
			ren2 = ren1;
			ren1 = tmp;
		}
829
		src = ren1->pair->one->path;
830 831 832 833

		ren1->dst_entry->processed = 1;
		ren1->src_entry->processed = 1;

834
		if (ren1->processed)
835 836 837
			continue;
		ren1->processed = 1;

838 839
		ren1_src = ren1->pair->one->path;
		ren1_dst = ren1->pair->two->path;
840

841
		if (ren2) {
842 843 844 845 846 847 848 849
			const char *ren2_src = ren2->pair->one->path;
			const char *ren2_dst = ren2->pair->two->path;
			/* Renamed in 1 and renamed in 2 */
			if (strcmp(ren1_src, ren2_src) != 0)
				die("ren1.src != ren2.src");
			ren2->dst_entry->processed = 1;
			ren2->processed = 1;
			if (strcmp(ren1_dst, ren2_dst) != 0) {
850
				clean_merge = 0;
851 852 853
				output("CONFLICT (rename/rename): "
				       "Rename %s->%s in branch %s "
				       "rename %s->%s in %s",
854 855 856
				       src, ren1_dst, branch1,
				       src, ren2_dst, branch2);
				conflict_rename_rename(ren1, branch1, ren2, branch2);
857 858
			} else {
				struct merge_file_info mfi;
859
				remove_file(1, ren1_src);
860 861 862
				mfi = merge_file(ren1->pair->one,
						 ren1->pair->two,
						 ren2->pair->two,
863 864
						 branch1,
						 branch2);
865
				if (mfi.merge || !mfi.clean)
866 867
					output("Renaming %s->%s", src, ren1_dst);

868
				if (mfi.merge)
869 870
					output("Auto-merging %s", ren1_dst);

871
				if (!mfi.clean) {
872 873
					output("CONFLICT (content): merge conflict in %s",
					       ren1_dst);
874
					clean_merge = 0;
875

876
					if (!index_only)
877
						update_stages(ren1_dst,
878 879 880
							      ren1->pair->one,
							      ren1->pair->two,
							      ren2->pair->two,
881 882 883 884 885 886
							      1 /* clear */);
				}
				update_file(mfi.clean, mfi.sha, mfi.mode, ren1_dst);
			}
		} else {
			/* Renamed in 1, maybe changed in 2 */
887 888 889
			struct path_list_item *item;
			/* we only use sha1 and mode of these */
			struct diff_filespec src_other, dst_other;
890
			int try_merge, stage = a_renames == renames1 ? 3: 2;
891

892
			remove_file(1, ren1_src);
893

894 895 896 897 898 899
			memcpy(src_other.sha1,
					ren1->src_entry->stages[stage].sha, 20);
			src_other.mode = ren1->src_entry->stages[stage].mode;
			memcpy(dst_other.sha1,
					ren1->dst_entry->stages[stage].sha, 20);
			dst_other.mode = ren1->dst_entry->stages[stage].mode;
900

901
			try_merge = 0;
902

903 904
			if (path_list_has_path(&current_directory_set, ren1_dst)) {
				clean_merge = 0;
905 906
				output("CONFLICT (rename/directory): Rename %s->%s in %s "
				       " directory %s added in %s",
907 908 909
				       ren1_src, ren1_dst, branch1,
				       ren1_dst, branch2);
				conflict_rename_dir(ren1, branch1);
910
			} else if (sha_eq(src_other.sha1, null_sha1)) {
911
				clean_merge = 0;
912 913
				output("CONFLICT (rename/delete): Rename %s->%s in %s "
				       "and deleted in %s",
914 915
				       ren1_src, ren1_dst, branch1,
				       branch2);
916
				update_file(0, ren1->pair->two->sha1, ren1->pair->two->mode, ren1_dst);
917
			} else if (!sha_eq(dst_other.sha1, null_sha1)) {
918 919 920
				const char *new_path;
				clean_merge = 0;
				try_merge = 1;
921 922
				output("CONFLICT (rename/add): Rename %s->%s in %s. "
				       "%s added in %s",
923 924 925 926 927
				       ren1_src, ren1_dst, branch1,
				       ren1_dst, branch2);
				new_path = unique_path(ren1_dst, branch2);
				output("Adding as %s instead", new_path);
				update_file(0, dst_other.sha1, dst_other.mode, new_path);
928 929
			} else if ((item = path_list_lookup(ren1_dst, renames2Dst))) {
				ren2 = item->util;
930
				clean_merge = 0;
931 932 933
				ren2->processed = 1;
				output("CONFLICT (rename/rename): Rename %s->%s in %s. "
				       "Rename %s->%s in %s",
934 935 936
				       ren1_src, ren1_dst, branch1,
				       ren2->pair->one->path, ren2->pair->two->path, branch2);
				conflict_rename_rename_2(ren1, branch1, ren2, branch2);
937
			} else
938
				try_merge = 1;
939

940
			if (try_merge) {
941
				struct diff_filespec *o, *a, *b;
942
				struct merge_file_info mfi;
943 944 945
				src_other.path = (char *)ren1_src;

				o = ren1->pair->one;
946
				if (a_renames == renames1) {
947 948 949 950 951 952 953
					a = ren1->pair->two;
					b = &src_other;
				} else {
					b = ren1->pair->two;
					a = &src_other;
				}
				mfi = merge_file(o, a, b,
954
						a_branch, b_branch);
955

956
				if (mfi.merge || !mfi.clean)
957
					output("Renaming %s => %s", ren1_src, ren1_dst);
958
				if (mfi.merge)
959
					output("Auto-merging %s", ren1_dst);
960
				if (!mfi.clean) {
961 962
					output("CONFLICT (rename/modify): Merge conflict in %s",
					       ren1_dst);
963
					clean_merge = 0;
964

965
					if (!index_only)
966
						update_stages(ren1_dst,
967
								o, a, b, 1);
968 969 970 971 972
				}
				update_file(mfi.clean, mfi.sha, mfi.mode, ren1_dst);
			}
		}
	}
973 974
	path_list_clear(&a_by_dst, 0);
	path_list_clear(&b_by_dst, 0);
975 976 977

	if (cache_dirty)
		flush_cache();
978
	return clean_merge;
979 980 981 982 983 984 985 986 987
}

static unsigned char *has_sha(const unsigned char *sha)
{
	return memcmp(sha, null_sha1, 20) == 0 ? NULL: (unsigned char *)sha;
}

/* Per entry merge function */
static int process_entry(const char *path, struct stage_data *entry,
988 989
			 const char *branch1,
			 const char *branch2)
990 991 992 993 994
{
	/*
	printf("processing entry, clean cache: %s\n", index_only ? "yes": "no");
	print_index_entry("\tpath: ", entry);
	*/
995 996 997 998 999 1000 1001 1002 1003
	int clean_merge = 1;
	unsigned char *o_sha = has_sha(entry->stages[1].sha);
	unsigned char *a_sha = has_sha(entry->stages[2].sha);
	unsigned char *b_sha = has_sha(entry->stages[3].sha);
	unsigned o_mode = entry->stages[1].mode;
	unsigned a_mode = entry->stages[2].mode;
	unsigned b_mode = entry->stages[3].mode;

	if (o_sha && (!a_sha || !b_sha)) {
1004
		/* Case A: Deleted in one */
1005 1006 1007
		if ((!a_sha && !b_sha) ||
		    (sha_eq(a_sha, o_sha) && !b_sha) ||
		    (!a_sha && sha_eq(b_sha, o_sha))) {
1008 1009
			/* Deleted in both or deleted in one and
			 * unchanged in the other */
1010
			if (a_sha)
1011 1012 1013 1014
				output("Removing %s", path);
			remove_file(1, path);
		} else {
			/* Deleted in one and changed in the other */
1015 1016
			clean_merge = 0;
			if (!a_sha) {
1017 1018
				output("CONFLICT (delete/modify): %s deleted in %s "
				       "and modified in %s. Version %s of %s left in tree.",
1019 1020
				       path, branch1,
				       branch2, branch2, path);
1021
				update_file(0, b_sha, b_mode, path);
1022 1023 1024
			} else {
				output("CONFLICT (delete/modify): %s deleted in %s "
				       "and modified in %s. Version %s of %s left in tree.",
1025 1026
				       path, branch2,
				       branch1, branch1, path);
1027
				update_file(0, a_sha, a_mode, path);
1028 1029 1030
			}
		}

1031 1032
	} else if ((!o_sha && a_sha && !b_sha) ||
		   (!o_sha && !a_sha && b_sha)) {
1033
		/* Case B: Added in one. */
1034 1035
		const char *add_branch;
		const char *other_branch;
1036 1037 1038 1039
		unsigned mode;
		const unsigned char *sha;
		const char *conf;

1040
		if (a_sha) {
1041 1042
			add_branch = branch1;
			other_branch = branch2;
1043 1044
			mode = a_mode;
			sha = a_sha;
1045 1046
			conf = "file/directory";
		} else {
1047 1048
			add_branch = branch2;
			other_branch = branch1;
1049 1050
			mode = b_mode;
			sha = b_sha;
1051 1052
			conf = "directory/file";
		}
1053 1054 1055
		if (path_list_has_path(&current_directory_set, path)) {
			const char *new_path = unique_path(path, add_branch);
			clean_merge = 0;
1056 1057
			output("CONFLICT (%s): There is a directory with name %s in %s. "
			       "Adding %s as %s",
1058
			       conf, path, other_branch, path, new_path);
1059
			remove_file(0, path);
1060
			update_file(0, sha, mode, new_path);
1061 1062 1063 1064
		} else {
			output("Adding %s", path);
			update_file(1, sha, mode, path);
		}
1065
	} else if (!o_sha && a_sha && b_sha) {
1066
		/* Case C: Added in both (check for same permissions). */
1067 1068 1069
		if (sha_eq(a_sha, b_sha)) {
			if (a_mode != b_mode) {
				clean_merge = 0;
1070 1071
				output("CONFLICT: File %s added identically in both branches, "
				       "but permissions conflict %06o->%06o",
1072 1073 1074
				       path, a_mode, b_mode);
				output("CONFLICT: adding with permission: %06o", a_mode);
				update_file(0, a_sha, a_mode, path);
1075 1076 1077 1078 1079
			} else {
				/* This case is handled by git-read-tree */
				assert(0 && "This case must be handled by git-read-tree");
			}
		} else {
1080 1081
			const char *new_path1, *new_path2;
			clean_merge = 0;
1082 1083
			new_path1 = unique_path(path, branch1);
			new_path2 = unique_path(path, branch2);
1084 1085
			output("CONFLICT (add/add): File %s added non-identically "
			       "in both branches. Adding as %s and %s instead.",
1086
			       path, new_path1, new_path2);
1087
			remove_file(0, path);
1088 1089
			update_file(0, a_sha, a_mode, new_path1);
			update_file(0, b_sha, b_mode, new_path2);
1090 1091
		}

1092
	} else if (o_sha && a_sha && b_sha) {
1093 1094
		/* case D: Modified in both, but differently. */
		struct merge_file_info mfi;
1095 1096 1097 1098
		struct diff_filespec o, a, b;

		output("Auto-merging %s", path);
		o.path = a.path = b.path = (char *)path;
1099 1100 1101 1102 1103 1104
		memcpy(o.sha1, o_sha, 20);
		o.mode = o_mode;
		memcpy(a.sha1, a_sha, 20);
		a.mode = a_mode;
		memcpy(b.sha1, b_sha, 20);
		b.mode = b_mode;
1105 1106

		mfi = merge_file(&o, &a, &b,
1107
				 branch1, branch2);
1108

1109
		if (mfi.clean)
1110 1111
			update_file(1, mfi.sha, mfi.mode, path);
		else {
1112
			clean_merge = 0;
1113 1114
			output("CONFLICT (content): Merge conflict in %s", path);

1115
			if (index_only)
1116 1117 1118
				update_file(0, mfi.sha, mfi.mode, path);
			else
				update_file_flags(mfi.sha, mfi.mode, path,
1119
					      0 /* update_cache */, 1 /* update_working_directory */);
1120 1121 1122 1123 1124 1125 1126
		}
	} else
		die("Fatal merge failure, shouldn't happen.");

	if (cache_dirty)
		flush_cache();

1127
	return clean_merge;
1128 1129
}

1130 1131 1132
static int merge_trees(struct tree *head,
		       struct tree *merge,
		       struct tree *common,
1133 1134
		       const char *branch1,
		       const char *branch2,
1135
		       struct tree **result)
1136
{
1137 1138
	int code, clean;
	if (sha_eq(common->object.sha1, merge->object.sha1)) {
1139
		output("Already uptodate!");
1140 1141
		*result = head;
		return 1;
1142 1143
	}

1144
	code = git_merge_trees(index_only, common, head, merge);
1145

1146
	if (code != 0)
1147 1148 1149 1150
		die("merging of trees %s and %s failed",
		    sha1_to_hex(head->object.sha1),
		    sha1_to_hex(merge->object.sha1));

1151
	*result = git_write_tree();
1152

1153 1154 1155
	if (!*result) {
		struct path_list *entries, *re_head, *re_merge;
		int i;
1156 1157
		path_list_clear(&current_file_set, 1);
		path_list_clear(&current_directory_set, 1);
1158 1159
		get_files_dirs(head);
		get_files_dirs(merge);
1160

1161
		entries = get_unmerged();
1162 1163
		re_head  = get_renames(head, common, head, merge, entries);
		re_merge = get_renames(merge, common, head, merge, entries);
1164
		clean = process_renames(re_head, re_merge,
1165
				branch1, branch2);
1166 1167 1168 1169 1170
		for (i = 0; i < entries->nr; i++) {
			const char *path = entries->items[i].path;
			struct stage_data *e = entries->items[i].util;
			if (e->processed)
				continue;
1171
			if (!process_entry(path, e, branch1, branch2))
1172
				clean = 0;
1173 1174
		}

1175 1176 1177
		path_list_clear(re_merge, 0);
		path_list_clear(re_head, 0);
		path_list_clear(entries, 1);
1178

1179 1180
		if (clean || index_only)
			*result = git_write_tree();
1181
		else
1182
			*result = NULL;
1183
	} else {
1184
		clean = 1;
1185 1186 1187
		printf("merging of trees %s and %s resulted in %s\n",
		       sha1_to_hex(head->object.sha1),
		       sha1_to_hex(merge->object.sha1),
1188
		       sha1_to_hex((*result)->object.sha1));
1189 1190
	}

1191
	return clean;
1192 1193
}

1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
static struct commit_list *reverse_commit_list(struct commit_list *list)
{
	struct commit_list *next = NULL, *current, *backup;
	for (current = list; current; current = backup) {
		backup = current->next;
		current->next = next;
		next = current;
	}
	return next;
}

1205 1206 1207 1208 1209
/*
 * Merge the commits h1 and h2, return the resulting virtual
 * commit object and a flag indicating the cleaness of the merge.
 */
static
1210
int merge(struct commit *h1,
1211
			  struct commit *h2,
1212 1213
			  const char *branch1,
			  const char *branch2,
1214
			  int call_depth /* =0 */,
1215 1216
			  struct commit *ancestor /* =None */,
			  struct commit **result)
1217 1218
{
	struct commit_list *ca = NULL, *iter;
1219
	struct commit *merged_common_ancestors;
1220 1221
	struct tree *mrtree;
	int clean;
1222 1223

	output("Merging:");
1224 1225
	output_commit_title(h1);
	output_commit_title(h2);
1226

1227
	if (ancestor)
1228 1229
		commit_list_insert(ancestor, &ca);
	else
1230
		ca = reverse_commit_list(get_merge_bases(h1, h2, 1));
1231 1232

	output("found %u common ancestor(s):", commit_list_count(ca));
1233 1234
	for (iter = ca; iter; iter = iter->next)
		output_commit_title(iter->item);
1235

1236
	merged_common_ancestors = pop_commit(&ca);
1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248
	if (merged_common_ancestors == NULL) {
		/* if there is no common ancestor, make an empty tree */
		struct tree *tree = xcalloc(1, sizeof(struct tree));
		unsigned char hdr[40];
		int hdrlen;

		tree->object.parsed = 1;
		tree->object.type = OBJ_TREE;
		write_sha1_file_prepare(NULL, 0, tree_type, tree->object.sha1,
					hdr, &hdrlen);
		merged_common_ancestors = make_virtual_commit(tree, "ancestor");
	}
1249 1250

	for (iter = ca; iter; iter = iter->next) {
1251
		output_indent = call_depth + 1;
1252 1253 1254 1255 1256 1257 1258
		/*
		 * When the merge fails, the result contains files
		 * with conflict markers. The cleanness flag is
		 * ignored, it was never acutally used, as result of
		 * merge_trees has always overwritten it: the commited
		 * "conflicts" were already resolved.
		 */
1259
		merge(merged_common_ancestors, iter->item,
1260 1261
		      "Temporary merge branch 1",
		      "Temporary merge branch 2",
1262
		      call_depth + 1,
1263
		      NULL,
1264 1265
		      &merged_common_ancestors);
		output_indent = call_depth;
1266

1267
		if (!merged_common_ancestors)
1268 1269 1270
			die("merge returned no commit");
	}

1271
	if (call_depth == 0) {
1272
		setup_index(0 /* $GIT_DIR/index */);
1273 1274
		index_only = 0;
	} else {
1275
		setup_index(1 /* temporary index */);
1276 1277 1278 1279
		git_read_tree(h1->tree);
		index_only = 1;
	}

1280
	clean = merge_trees(h1->tree, h2->tree, merged_common_ancestors->tree,
1281
			    branch1, branch2, &mrtree);
1282

1283 1284 1285 1286
	if (!ancestor && (clean || index_only)) {
		*result = make_virtual_commit(mrtree, "merged tree");
		commit_list_insert(h1, &(*result)->parents);
		commit_list_insert(h2, &(*result)->parents->next);
1287
	} else
1288
		*result = NULL;
1289

1290
	return clean;
1291 1292 1293 1294 1295 1296 1297 1298 1299 1300
}

static struct commit *get_ref(const char *ref)
{
	unsigned char sha1[20];
	struct object *object;

	if (get_sha1(ref, sha1))
		die("Could not resolve ref '%s'", ref);
	object = deref_tag(parse_object(sha1), ref, strlen(ref));
1301
	if (object->type != OBJ_COMMIT)
1302 1303 1304 1305 1306 1307 1308 1309 1310 1311
		return NULL;
	if (parse_commit((struct commit *)object))
		die("Could not parse commit '%s'", sha1_to_hex(object->sha1));
	return (struct commit *)object;
}

int main(int argc, char *argv[])
{
	static const char *bases[2];
	static unsigned bases_count = 0;
1312 1313 1314
	int i, clean;
	const char *branch1, *branch2;
	struct commit *result, *h1, *h2;
1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338

	original_index_file = getenv("GIT_INDEX_FILE");

	if (!original_index_file)
		original_index_file = strdup(git_path("index"));

	temporary_index_file = strdup(git_path("mrg-rcrsv-tmp-idx"));

	if (argc < 4)
		die("Usage: %s <base>... -- <head> <remote> ...\n", argv[0]);

	for (i = 1; i < argc; ++i) {
		if (!strcmp(argv[i], "--"))
			break;
		if (bases_count < sizeof(bases)/sizeof(*bases))
			bases[bases_count++] = argv[i];
	}
	if (argc - i != 3) /* "--" "<head>" "<remote>" */
		die("Not handling anything other than two heads merge.");

	branch1 = argv[++i];
	branch2 = argv[++i];
	printf("Merging %s with %s\n", branch1, branch2);

1339 1340
	h1 = get_ref(branch1);
	h2 = get_ref(branch2);
1341 1342 1343

	if (bases_count == 1) {
		struct commit *ancestor = get_ref(bases[0]);
1344
		clean = merge(h1, h2, branch1, branch2, 0, ancestor, &result);
1345
	} else
1346
		clean = merge(h1, h2, branch1, branch2, 0, NULL, &result);
1347 1348 1349 1350

	if (cache_dirty)
		flush_cache();

1351
	return clean ? 0: 1;
1352 1353 1354 1355 1356
}

/*
vim: sw=8 noet
*/