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