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