]> git.ipfire.org Git - thirdparty/git.git/blame - merge-recursive.c
Git 2.36.6
[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"
4615a8cb
EN
7#include "merge-recursive.h"
8
1c4b6604 9#include "advice.h"
4615a8cb
EN
10#include "alloc.h"
11#include "attr.h"
9047ebbc
MV
12#include "blob.h"
13#include "builtin.h"
4615a8cb
EN
14#include "cache-tree.h"
15#include "commit.h"
16#include "commit-reach.h"
17#include "config.h"
9047ebbc
MV
18#include "diff.h"
19#include "diffcore.h"
4615a8cb
EN
20#include "dir.h"
21#include "ll-merge.h"
22#include "lockfile.h"
23#include "object-store.h"
24#include "repository.h"
25#include "revision.h"
26#include "string-list.h"
10a0d6ae 27#include "submodule-config.h"
4615a8cb 28#include "submodule.h"
9047ebbc 29#include "tag.h"
4615a8cb 30#include "tree-walk.h"
9047ebbc 31#include "unpack-trees.h"
9047ebbc 32#include "xdiff-interface.h"
9047ebbc 33
5bf7e577
EN
34struct merge_options_internal {
35 int call_depth;
36 int needed_rename_limit;
37 struct hashmap current_file_dir_set;
38 struct string_list df_conflict_file_set;
39 struct unpack_trees_options unpack_opts;
40 struct index_state orig_index;
41};
9047ebbc 42
fc65b00d
KW
43struct path_hashmap_entry {
44 struct hashmap_entry e;
45 char path[FLEX_ARRAY];
46};
47
48static int path_hashmap_cmp(const void *cmp_data,
939af16e
EW
49 const struct hashmap_entry *eptr,
50 const struct hashmap_entry *entry_or_key,
fc65b00d
KW
51 const void *keydata)
52{
939af16e 53 const struct path_hashmap_entry *a, *b;
fc65b00d
KW
54 const char *key = keydata;
55
939af16e
EW
56 a = container_of(eptr, const struct path_hashmap_entry, e);
57 b = container_of(entry_or_key, const struct path_hashmap_entry, e);
58
2dee7e61 59 return fspathcmp(a->path, key ? key : b->path);
fc65b00d
KW
60}
61
7c0a6c8e
EN
62/*
63 * For dir_rename_entry, directory names are stored as a full path from the
64 * toplevel of the repository and do not include a trailing '/'. Also:
65 *
66 * dir: original name of directory being renamed
67 * non_unique_new_dir: if true, could not determine new_dir
68 * new_dir: final name of directory being renamed
69 * possible_new_dirs: temporary used to help determine new_dir; see comments
70 * in get_directory_renames() for details
71 */
72struct dir_rename_entry {
5efabc7e 73 struct hashmap_entry ent;
7c0a6c8e
EN
74 char *dir;
75 unsigned non_unique_new_dir:1;
76 struct strbuf new_dir;
77 struct string_list possible_new_dirs;
78};
79
7fe40b88
EN
80static struct dir_rename_entry *dir_rename_find_entry(struct hashmap *hashmap,
81 char *dir)
82{
83 struct dir_rename_entry key;
84
85 if (dir == NULL)
86 return NULL;
d22245a2 87 hashmap_entry_init(&key.ent, strhash(dir));
7fe40b88 88 key.dir = dir;
404ab78e 89 return hashmap_get_entry(hashmap, &key, ent, NULL);
7fe40b88
EN
90}
91
92static int dir_rename_cmp(const void *unused_cmp_data,
939af16e
EW
93 const struct hashmap_entry *eptr,
94 const struct hashmap_entry *entry_or_key,
7fe40b88
EN
95 const void *unused_keydata)
96{
939af16e
EW
97 const struct dir_rename_entry *e1, *e2;
98
99 e1 = container_of(eptr, const struct dir_rename_entry, ent);
100 e2 = container_of(entry_or_key, const struct dir_rename_entry, ent);
7fe40b88
EN
101
102 return strcmp(e1->dir, e2->dir);
103}
104
105static void dir_rename_init(struct hashmap *map)
106{
107 hashmap_init(map, dir_rename_cmp, NULL, 0);
108}
109
110static void dir_rename_entry_init(struct dir_rename_entry *entry,
111 char *directory)
112{
d22245a2 113 hashmap_entry_init(&entry->ent, strhash(directory));
7fe40b88
EN
114 entry->dir = directory;
115 entry->non_unique_new_dir = 0;
116 strbuf_init(&entry->new_dir, 0);
bc40dfb1 117 string_list_init_nodup(&entry->possible_new_dirs);
7fe40b88
EN
118}
119
7c0a6c8e 120struct collision_entry {
5efabc7e 121 struct hashmap_entry ent;
7c0a6c8e
EN
122 char *target_file;
123 struct string_list source_files;
124 unsigned reported_already:1;
125};
126
e95ab70a
EN
127static struct collision_entry *collision_find_entry(struct hashmap *hashmap,
128 char *target_file)
129{
130 struct collision_entry key;
131
d22245a2 132 hashmap_entry_init(&key.ent, strhash(target_file));
e95ab70a 133 key.target_file = target_file;
404ab78e 134 return hashmap_get_entry(hashmap, &key, ent, NULL);
e95ab70a
EN
135}
136
939af16e
EW
137static int collision_cmp(const void *unused_cmp_data,
138 const struct hashmap_entry *eptr,
139 const struct hashmap_entry *entry_or_key,
e95ab70a
EN
140 const void *unused_keydata)
141{
939af16e
EW
142 const struct collision_entry *e1, *e2;
143
144 e1 = container_of(eptr, const struct collision_entry, ent);
145 e2 = container_of(entry_or_key, const struct collision_entry, ent);
146
e95ab70a
EN
147 return strcmp(e1->target_file, e2->target_file);
148}
149
150static void collision_init(struct hashmap *map)
151{
939af16e 152 hashmap_init(map, collision_cmp, NULL, 0);
e95ab70a
EN
153}
154
259ccb6c 155static void flush_output(struct merge_options *opt)
bc9204d4 156{
259ccb6c
EN
157 if (opt->buffer_output < 2 && opt->obuf.len) {
158 fputs(opt->obuf.buf, stdout);
159 strbuf_reset(&opt->obuf);
bc9204d4
JS
160 }
161}
162
48ca53ca 163__attribute__((format (printf, 2, 3)))
259ccb6c 164static int err(struct merge_options *opt, const char *err, ...)
bc9204d4
JS
165{
166 va_list params;
167
259ccb6c
EN
168 if (opt->buffer_output < 2)
169 flush_output(opt);
f1e2426b 170 else {
259ccb6c
EN
171 strbuf_complete(&opt->obuf, '\n');
172 strbuf_addstr(&opt->obuf, "error: ");
f1e2426b 173 }
bc9204d4 174 va_start(params, err);
259ccb6c 175 strbuf_vaddf(&opt->obuf, err, params);
bc9204d4 176 va_end(params);
259ccb6c
EN
177 if (opt->buffer_output > 1)
178 strbuf_addch(&opt->obuf, '\n');
f1e2426b 179 else {
259ccb6c
EN
180 error("%s", opt->obuf.buf);
181 strbuf_reset(&opt->obuf);
f1e2426b 182 }
bc9204d4
JS
183
184 return -1;
185}
186
d7cf3a96
NTND
187static struct tree *shift_tree_object(struct repository *repo,
188 struct tree *one, struct tree *two,
85e51b78 189 const char *subtree_shift)
9047ebbc 190{
f2fd0760 191 struct object_id shifted;
9047ebbc 192
85e51b78 193 if (!*subtree_shift) {
90d34051 194 shift_tree(repo, &one->object.oid, &two->object.oid, &shifted, 0);
85e51b78 195 } else {
90d34051 196 shift_tree_by(repo, &one->object.oid, &two->object.oid, &shifted,
85e51b78
JH
197 subtree_shift);
198 }
4a7e27e9 199 if (oideq(&two->object.oid, &shifted))
9047ebbc 200 return two;
d7cf3a96 201 return lookup_tree(repo, &shifted);
9047ebbc
MV
202}
203
a133c40b
NTND
204static inline void set_commit_tree(struct commit *c, struct tree *t)
205{
206 c->maybe_tree = t;
207}
208
d7cf3a96
NTND
209static struct commit *make_virtual_commit(struct repository *repo,
210 struct tree *tree,
211 const char *comment)
9047ebbc 212{
d7cf3a96 213 struct commit *commit = alloc_commit_node(repo);
ae8e4c9c 214
a2571653 215 set_merge_remote_desc(commit, comment, (struct object *)commit);
a133c40b 216 set_commit_tree(commit, tree);
9047ebbc
MV
217 commit->object.parsed = 1;
218 return commit;
219}
220
25c39363
EN
221enum rename_type {
222 RENAME_NORMAL = 0,
5455c338 223 RENAME_VIA_DIR,
7f867165 224 RENAME_ADD,
25c39363 225 RENAME_DELETE,
4f66dade 226 RENAME_ONE_FILE_TO_ONE,
461f5041
EN
227 RENAME_ONE_FILE_TO_TWO,
228 RENAME_TWO_FILES_TO_ONE
25c39363
EN
229};
230
9047ebbc
MV
231/*
232 * Since we want to write the index eventually, we cannot reuse the index
233 * for these (temporary) data.
234 */
9cba13ca 235struct stage_data {
8daec1df 236 struct diff_filespec stages[4]; /* mostly for oid & mode; maybe path */
4f66dade 237 struct rename_conflict_info *rename_conflict_info;
9047ebbc
MV
238 unsigned processed:1;
239};
240
967d6be7 241struct rename {
6d169fd3 242 unsigned processed:1;
967d6be7 243 struct diff_filepair *pair;
c336ab85 244 const char *branch; /* branch that the rename occurred on */
6d169fd3
EN
245 /*
246 * If directory rename detection affected this rename, what was its
247 * original type ('A' or 'R') and it's original destination before
248 * the directory rename (otherwise, '\0' and NULL for these two vars).
249 */
250 char dir_rename_original_type;
251 char *dir_rename_original_dest;
967d6be7
EN
252 /*
253 * Purpose of src_entry and dst_entry:
254 *
255 * If 'before' is renamed to 'after' then src_entry will contain
256 * the versions of 'before' from the merge_base, HEAD, and MERGE in
257 * stages 1, 2, and 3; dst_entry will contain the respective
258 * versions of 'after' in corresponding locations. Thus, we have a
259 * total of six modes and oids, though some will be null. (Stage 0
260 * is ignored; we're interested in handling conflicts.)
261 *
262 * Since we don't turn on break-rewrites by default, neither
263 * src_entry nor dst_entry can have all three of their stages have
264 * non-null oids, meaning at most four of the six will be non-null.
265 * Also, since this is a rename, both src_entry and dst_entry will
266 * have at least one non-null oid, meaning at least two will be
267 * non-null. Of the six oids, a typical rename will have three be
268 * non-null. Only two implies a rename/delete, and four implies a
269 * rename/add.
270 */
271 struct stage_data *src_entry;
272 struct stage_data *dst_entry;
967d6be7
EN
273};
274
275struct rename_conflict_info {
276 enum rename_type rename_type;
e9cd1b5c
EN
277 struct rename *ren1;
278 struct rename *ren2;
967d6be7
EN
279};
280
4f66dade 281static inline void setup_rename_conflict_info(enum rename_type rename_type,
e9cd1b5c
EN
282 struct merge_options *opt,
283 struct rename *ren1,
c336ab85 284 struct rename *ren2)
25c39363 285{
4f445453
EN
286 struct rename_conflict_info *ci;
287
288 /*
289 * When we have two renames involved, it's easiest to get the
290 * correct things into stage 2 and 3, and to make sure that the
291 * content merge puts HEAD before the other branch if we just
259ccb6c 292 * ensure that branch1 == opt->branch1. So, simply flip arguments
4f445453
EN
293 * around if we don't have that.
294 */
c336ab85
EN
295 if (ren2 && ren1->branch != opt->branch1) {
296 setup_rename_conflict_info(rename_type, opt, ren2, ren1);
4f445453
EN
297 return;
298 }
299
ca56dadb 300 CALLOC_ARRAY(ci, 1);
25c39363 301 ci->rename_type = rename_type;
e9cd1b5c
EN
302 ci->ren1 = ren1;
303 ci->ren2 = ren2;
25c39363 304
e9cd1b5c
EN
305 ci->ren1->dst_entry->processed = 0;
306 ci->ren1->dst_entry->rename_conflict_info = ci;
e9cd1b5c
EN
307 if (ren2) {
308 ci->ren2->dst_entry->rename_conflict_info = ci;
25c39363
EN
309 }
310}
311
259ccb6c 312static int show(struct merge_options *opt, int v)
9047ebbc 313{
5bf7e577
EN
314 return (!opt->priv->call_depth && opt->verbosity >= v) ||
315 opt->verbosity >= 5;
9047ebbc
MV
316}
317
28bea9e5 318__attribute__((format (printf, 3, 4)))
259ccb6c 319static void output(struct merge_options *opt, int v, const char *fmt, ...)
9047ebbc 320{
9047ebbc
MV
321 va_list ap;
322
259ccb6c 323 if (!show(opt, v))
9047ebbc
MV
324 return;
325
5bf7e577 326 strbuf_addchars(&opt->obuf, ' ', opt->priv->call_depth * 2);
9047ebbc
MV
327
328 va_start(ap, fmt);
259ccb6c 329 strbuf_vaddf(&opt->obuf, fmt, ap);
9047ebbc
MV
330 va_end(ap);
331
259ccb6c
EN
332 strbuf_addch(&opt->obuf, '\n');
333 if (!opt->buffer_output)
334 flush_output(opt);
9047ebbc
MV
335}
336
155b517d
JT
337static void repo_output_commit_title(struct merge_options *opt,
338 struct repository *repo,
339 struct commit *commit)
9047ebbc 340{
e2e5ac23
NTND
341 struct merge_remote_desc *desc;
342
5bf7e577 343 strbuf_addchars(&opt->obuf, ' ', opt->priv->call_depth * 2);
e2e5ac23
NTND
344 desc = merge_remote_util(commit);
345 if (desc)
259ccb6c 346 strbuf_addf(&opt->obuf, "virtual %s\n", desc->name);
9047ebbc 347 else {
155b517d
JT
348 strbuf_repo_add_unique_abbrev(&opt->obuf, repo,
349 &commit->object.oid,
350 DEFAULT_ABBREV);
259ccb6c 351 strbuf_addch(&opt->obuf, ' ');
155b517d 352 if (repo_parse_commit(repo, commit) != 0)
259ccb6c 353 strbuf_addstr(&opt->obuf, _("(bad commit)\n"));
9047ebbc 354 else {
49b7120e 355 const char *title;
155b517d 356 const char *msg = repo_get_commit_buffer(repo, commit, NULL);
bc6b8fc1 357 int len = find_commit_subject(msg, &title);
49b7120e 358 if (len)
259ccb6c 359 strbuf_addf(&opt->obuf, "%.*s\n", len, title);
155b517d 360 repo_unuse_commit_buffer(repo, commit, msg);
9047ebbc
MV
361 }
362 }
259ccb6c 363 flush_output(opt);
9047ebbc
MV
364}
365
155b517d
JT
366static void output_commit_title(struct merge_options *opt, struct commit *commit)
367{
368 repo_output_commit_title(opt, the_repository, commit);
369}
370
259ccb6c 371static int add_cacheinfo(struct merge_options *opt,
8daec1df 372 const struct diff_filespec *blob,
d90e759f 373 const char *path, int stage, int refresh, int options)
9047ebbc 374{
259ccb6c 375 struct index_state *istate = opt->repo->index;
9047ebbc 376 struct cache_entry *ce;
1335d76e
JH
377 int ret;
378
8daec1df 379 ce = make_cache_entry(istate, blob->mode, &blob->oid, path, stage, 0);
9047ebbc 380 if (!ce)
259ccb6c 381 return err(opt, _("add_cacheinfo failed for path '%s'; merge aborting."), path);
1335d76e 382
0d6caa2d 383 ret = add_index_entry(istate, ce, options);
1335d76e
JH
384 if (refresh) {
385 struct cache_entry *nce;
386
0d6caa2d
NTND
387 nce = refresh_cache_entry(istate, ce,
388 CE_MATCH_REFRESH | CE_MATCH_IGNORE_MISSING);
55e9f0e5 389 if (!nce)
259ccb6c 390 return err(opt, _("add_cacheinfo failed to refresh for path '%s'; merge aborting."), path);
1335d76e 391 if (nce != ce)
0d6caa2d 392 ret = add_index_entry(istate, nce, options);
1335d76e
JH
393 }
394 return ret;
9047ebbc
MV
395}
396
7c0a6c8e
EN
397static inline int merge_detect_rename(struct merge_options *opt)
398{
8599ab45 399 return (opt->detect_renames >= 0) ? opt->detect_renames : 1;
7c0a6c8e
EN
400}
401
9047ebbc
MV
402static void init_tree_desc_from_tree(struct tree_desc *desc, struct tree *tree)
403{
404 parse_tree(tree);
405 init_tree_desc(desc, tree->buffer, tree->size);
406}
407
259ccb6c 408static int unpack_trees_start(struct merge_options *opt,
3f1c1c36
EN
409 struct tree *common,
410 struct tree *head,
411 struct tree *merge)
9047ebbc
MV
412{
413 int rc;
414 struct tree_desc t[3];
a35edc84 415 struct index_state tmp_index = { NULL };
9047ebbc 416
5bf7e577
EN
417 memset(&opt->priv->unpack_opts, 0, sizeof(opt->priv->unpack_opts));
418 if (opt->priv->call_depth)
419 opt->priv->unpack_opts.index_only = 1;
491a7575 420 else {
5bf7e577 421 opt->priv->unpack_opts.update = 1;
491a7575 422 /* FIXME: should only do this if !overwrite_ignore */
04988c8d 423 opt->priv->unpack_opts.preserve_ignored = 0;
491a7575 424 }
5bf7e577
EN
425 opt->priv->unpack_opts.merge = 1;
426 opt->priv->unpack_opts.head_idx = 2;
427 opt->priv->unpack_opts.fn = threeway_merge;
428 opt->priv->unpack_opts.src_index = opt->repo->index;
429 opt->priv->unpack_opts.dst_index = &tmp_index;
430 opt->priv->unpack_opts.aggressive = !merge_detect_rename(opt);
431 setup_unpack_trees_porcelain(&opt->priv->unpack_opts, "merge");
9047ebbc
MV
432
433 init_tree_desc_from_tree(t+0, common);
434 init_tree_desc_from_tree(t+1, head);
435 init_tree_desc_from_tree(t+2, merge);
436
5bf7e577 437 rc = unpack_trees(3, t, &opt->priv->unpack_opts);
259ccb6c 438 cache_tree_free(&opt->repo->index->cache_tree);
a35edc84 439
64b1abe9 440 /*
5bf7e577
EN
441 * Update opt->repo->index to match the new results, AFTER saving a
442 * copy in opt->priv->orig_index. Update src_index to point to the
443 * saved copy. (verify_uptodate() checks src_index, and the original
444 * index is the one that had the necessary modification timestamps.)
64b1abe9 445 */
5bf7e577 446 opt->priv->orig_index = *opt->repo->index;
259ccb6c 447 *opt->repo->index = tmp_index;
5bf7e577 448 opt->priv->unpack_opts.src_index = &opt->priv->orig_index;
a35edc84 449
9047ebbc
MV
450 return rc;
451}
452
259ccb6c 453static void unpack_trees_finish(struct merge_options *opt)
3f1c1c36 454{
5bf7e577
EN
455 discard_index(&opt->priv->orig_index);
456 clear_unpack_trees_porcelain(&opt->priv->unpack_opts);
9047ebbc
MV
457}
458
df46d77e 459static int save_files_dirs(const struct object_id *oid,
d90e759f 460 struct strbuf *base, const char *path,
47957485 461 unsigned int mode, void *context)
9047ebbc 462{
fc65b00d 463 struct path_hashmap_entry *entry;
6a0b0b6d 464 int baselen = base->len;
259ccb6c 465 struct merge_options *opt = context;
696ee23c 466
6a0b0b6d 467 strbuf_addstr(base, path);
9047ebbc 468
fc65b00d 469 FLEX_ALLOC_MEM(entry, path, base->buf, base->len);
74318423 470 hashmap_entry_init(&entry->e, fspathhash(entry->path));
5efabc7e 471 hashmap_add(&opt->priv->current_file_dir_set, &entry->e);
9047ebbc 472
6a0b0b6d 473 strbuf_setlen(base, baselen);
d3bee161 474 return (S_ISDIR(mode) ? READ_TREE_RECURSIVE : 0);
9047ebbc
MV
475}
476
259ccb6c 477static void get_files_dirs(struct merge_options *opt, struct tree *tree)
9047ebbc 478{
f0096c06 479 struct pathspec match_all;
9a087274 480 memset(&match_all, 0, sizeof(match_all));
47957485
ÆAB
481 read_tree(opt->repo, tree,
482 &match_all, save_files_dirs, opt);
9047ebbc
MV
483}
484
34e7771b
NTND
485static int get_tree_entry_if_blob(struct repository *r,
486 const struct object_id *tree,
5b047ac0 487 const char *path,
8daec1df 488 struct diff_filespec *dfs)
5b047ac0
EN
489{
490 int ret;
491
34e7771b 492 ret = get_tree_entry(r, tree, path, &dfs->oid, &dfs->mode);
8daec1df 493 if (S_ISDIR(dfs->mode)) {
14228447 494 oidcpy(&dfs->oid, null_oid());
8daec1df 495 dfs->mode = 0;
5b047ac0
EN
496 }
497 return ret;
498}
499
9047ebbc
MV
500/*
501 * Returns an index_entry instance which doesn't have to correspond to
502 * a real cache entry in Git's index.
503 */
34e7771b
NTND
504static struct stage_data *insert_stage_data(struct repository *r,
505 const char *path,
9047ebbc
MV
506 struct tree *o, struct tree *a, struct tree *b,
507 struct string_list *entries)
508{
509 struct string_list_item *item;
510 struct stage_data *e = xcalloc(1, sizeof(struct stage_data));
34e7771b
NTND
511 get_tree_entry_if_blob(r, &o->object.oid, path, &e->stages[1]);
512 get_tree_entry_if_blob(r, &a->object.oid, path, &e->stages[2]);
513 get_tree_entry_if_blob(r, &b->object.oid, path, &e->stages[3]);
78a395d3 514 item = string_list_insert(entries, path);
9047ebbc
MV
515 item->util = e;
516 return e;
517}
518
519/*
520 * Create a dictionary mapping file names to stage_data objects. The
521 * dictionary contains one entry for every path with a non-zero stage entry.
522 */
0d6caa2d 523static struct string_list *get_unmerged(struct index_state *istate)
9047ebbc
MV
524{
525 struct string_list *unmerged = xcalloc(1, sizeof(struct string_list));
526 int i;
527
528 unmerged->strdup_strings = 1;
529
f7ef64be
DS
530 /* TODO: audit for interaction with sparse-index. */
531 ensure_full_index(istate);
0d6caa2d 532 for (i = 0; i < istate->cache_nr; i++) {
9047ebbc
MV
533 struct string_list_item *item;
534 struct stage_data *e;
0d6caa2d 535 const struct cache_entry *ce = istate->cache[i];
9047ebbc
MV
536 if (!ce_stage(ce))
537 continue;
538
e8c8b713 539 item = string_list_lookup(unmerged, ce->name);
9047ebbc 540 if (!item) {
78a395d3 541 item = string_list_insert(unmerged, ce->name);
9047ebbc
MV
542 item->util = xcalloc(1, sizeof(struct stage_data));
543 }
544 e = item->util;
545 e->stages[ce_stage(ce)].mode = ce->ce_mode;
99d1a986 546 oidcpy(&e->stages[ce_stage(ce)].oid, &ce->oid);
9047ebbc
MV
547 }
548
549 return unmerged;
550}
551
fa6ca111 552static int string_list_df_name_compare(const char *one, const char *two)
ef02b317 553{
fa6ca111
NTND
554 int onelen = strlen(one);
555 int twolen = strlen(two);
f0fd4d05
EN
556 /*
557 * Here we only care that entries for D/F conflicts are
558 * adjacent, in particular with the file of the D/F conflict
559 * appearing before files below the corresponding directory.
560 * The order of the rest of the list is irrelevant for us.
ef02b317 561 *
f0fd4d05
EN
562 * To achieve this, we sort with df_name_compare and provide
563 * the mode S_IFDIR so that D/F conflicts will sort correctly.
564 * We use the mode S_IFDIR for everything else for simplicity,
565 * since in other cases any changes in their order due to
566 * sorting cause no problems for us.
567 */
fa6ca111
NTND
568 int cmp = df_name_compare(one, onelen, S_IFDIR,
569 two, twolen, S_IFDIR);
f0fd4d05
EN
570 /*
571 * Now that 'foo' and 'foo/bar' compare equal, we have to make sure
572 * that 'foo' comes before 'foo/bar'.
ef02b317 573 */
f0fd4d05
EN
574 if (cmp)
575 return cmp;
576 return onelen - twolen;
577}
578
259ccb6c 579static void record_df_conflict_files(struct merge_options *opt,
70cc3d36 580 struct string_list *entries)
ef02b317 581{
70cc3d36 582 /* If there is a D/F conflict and the file for such a conflict
2d6bad91 583 * currently exists in the working tree, we want to allow it to be
edd2faf5
EN
584 * removed to make room for the corresponding directory if needed.
585 * The files underneath the directories of such D/F conflicts will
586 * be processed before the corresponding file involved in the D/F
587 * conflict. If the D/F directory ends up being removed by the
588 * merge, then we won't have to touch the D/F file. If the D/F
589 * directory needs to be written to the working copy, then the D/F
590 * file will simply be removed (in make_room_for_path()) to make
591 * room for the necessary paths. Note that if both the directory
592 * and the file need to be present, then the D/F file will be
593 * reinstated with a new unique name at the time it is processed.
ef02b317 594 */
af4941d4 595 struct string_list df_sorted_entries = STRING_LIST_INIT_NODUP;
ef02b317 596 const char *last_file = NULL;
c8516500 597 int last_len = 0;
ef02b317
EN
598 int i;
599
0b30e812
EN
600 /*
601 * If we're merging merge-bases, we don't want to bother with
602 * any working directory changes.
603 */
5bf7e577 604 if (opt->priv->call_depth)
0b30e812
EN
605 return;
606
f0fd4d05 607 /* Ensure D/F conflicts are adjacent in the entries list. */
ef02b317 608 for (i = 0; i < entries->nr; i++) {
f701aae0
EN
609 struct string_list_item *next = &entries->items[i];
610 string_list_append(&df_sorted_entries, next->string)->util =
611 next->util;
612 }
fa6ca111
NTND
613 df_sorted_entries.cmp = string_list_df_name_compare;
614 string_list_sort(&df_sorted_entries);
f0fd4d05 615
5bf7e577 616 string_list_clear(&opt->priv->df_conflict_file_set, 1);
f701aae0
EN
617 for (i = 0; i < df_sorted_entries.nr; i++) {
618 const char *path = df_sorted_entries.items[i].string;
ef02b317 619 int len = strlen(path);
f701aae0 620 struct stage_data *e = df_sorted_entries.items[i].util;
ef02b317
EN
621
622 /*
623 * Check if last_file & path correspond to a D/F conflict;
624 * i.e. whether path is last_file+'/'+<something>.
70cc3d36
EN
625 * If so, record that it's okay to remove last_file to make
626 * room for path and friends if needed.
ef02b317
EN
627 */
628 if (last_file &&
629 len > last_len &&
630 memcmp(path, last_file, last_len) == 0 &&
631 path[last_len] == '/') {
5bf7e577 632 string_list_insert(&opt->priv->df_conflict_file_set, last_file);
ef02b317
EN
633 }
634
635 /*
636 * Determine whether path could exist as a file in the
637 * working directory as a possible D/F conflict. This
638 * will only occur when it exists in stage 2 as a
639 * file.
640 */
641 if (S_ISREG(e->stages[2].mode) || S_ISLNK(e->stages[2].mode)) {
642 last_file = path;
643 last_len = len;
ef02b317
EN
644 } else {
645 last_file = NULL;
646 }
647 }
f701aae0 648 string_list_clear(&df_sorted_entries, 0);
ef02b317
EN
649}
650
bc9204d4
JS
651static int update_stages(struct merge_options *opt, const char *path,
652 const struct diff_filespec *o,
650467cf
EN
653 const struct diff_filespec *a,
654 const struct diff_filespec *b)
9047ebbc 655{
f53d3977
EN
656
657 /*
658 * NOTE: It is usually a bad idea to call update_stages on a path
659 * before calling update_file on that same path, since it can
660 * sometimes lead to spurious "refusing to lose untracked file..."
661 * messages from update_file (via make_room_for path via
662 * would_lose_untracked). Instead, reverse the order of the calls
663 * (executing update_file first and then update_stages).
664 */
650467cf
EN
665 int clear = 1;
666 int options = ADD_CACHE_OK_TO_ADD | ADD_CACHE_SKIP_DFCHECK;
9047ebbc 667 if (clear)
0d6caa2d 668 if (remove_file_from_index(opt->repo->index, path))
9047ebbc
MV
669 return -1;
670 if (o)
8daec1df 671 if (add_cacheinfo(opt, o, path, 1, 0, options))
9047ebbc
MV
672 return -1;
673 if (a)
8daec1df 674 if (add_cacheinfo(opt, a, path, 2, 0, options))
9047ebbc
MV
675 return -1;
676 if (b)
8daec1df 677 if (add_cacheinfo(opt, b, path, 3, 0, options))
9047ebbc
MV
678 return -1;
679 return 0;
680}
681
b8ddf164
EN
682static void update_entry(struct stage_data *entry,
683 struct diff_filespec *o,
684 struct diff_filespec *a,
685 struct diff_filespec *b)
2ff739f9 686{
2ff739f9
EN
687 entry->processed = 0;
688 entry->stages[1].mode = o->mode;
689 entry->stages[2].mode = a->mode;
690 entry->stages[3].mode = b->mode;
fd429e98 691 oidcpy(&entry->stages[1].oid, &o->oid);
692 oidcpy(&entry->stages[2].oid, &a->oid);
693 oidcpy(&entry->stages[3].oid, &b->oid);
2ff739f9
EN
694}
695
259ccb6c 696static int remove_file(struct merge_options *opt, int clean,
b7fa51da 697 const char *path, int no_wd)
9047ebbc 698{
5bf7e577
EN
699 int update_cache = opt->priv->call_depth || clean;
700 int update_working_directory = !opt->priv->call_depth && !no_wd;
9047ebbc
MV
701
702 if (update_cache) {
259ccb6c 703 if (remove_file_from_index(opt->repo->index, path))
9047ebbc
MV
704 return -1;
705 }
706 if (update_working_directory) {
ae352c7f
DT
707 if (ignore_case) {
708 struct cache_entry *ce;
259ccb6c 709 ce = index_file_exists(opt->repo->index, path, strlen(path),
0d6caa2d 710 ignore_case);
4cba2b01 711 if (ce && ce_stage(ce) == 0 && strcmp(path, ce->name))
ae352c7f
DT
712 return 0;
713 }
25755e84 714 if (remove_path(path))
9047ebbc 715 return -1;
9047ebbc
MV
716 }
717 return 0;
718}
719
45bc131d
JK
720/* add a string to a strbuf, but converting "/" to "_" */
721static void add_flattened_path(struct strbuf *out, const char *s)
722{
723 size_t i = out->len;
724 strbuf_addstr(out, s);
725 for (; i < out->len; i++)
726 if (out->buf[i] == '/')
727 out->buf[i] = '_';
728}
729
4d7101e2
EN
730static char *unique_path(struct merge_options *opt,
731 const char *path,
732 const char *branch)
9047ebbc 733{
fc65b00d 734 struct path_hashmap_entry *entry;
45bc131d 735 struct strbuf newpath = STRBUF_INIT;
9047ebbc 736 int suffix = 0;
45bc131d
JK
737 size_t base_len;
738
739 strbuf_addf(&newpath, "%s~", path);
740 add_flattened_path(&newpath, branch);
741
742 base_len = newpath.len;
5bf7e577 743 while (hashmap_get_from_hash(&opt->priv->current_file_dir_set,
74318423 744 fspathhash(newpath.buf), newpath.buf) ||
5bf7e577 745 (!opt->priv->call_depth && file_exists(newpath.buf))) {
45bc131d
JK
746 strbuf_setlen(&newpath, base_len);
747 strbuf_addf(&newpath, "_%d", suffix++);
748 }
749
fc65b00d 750 FLEX_ALLOC_MEM(entry, path, newpath.buf, newpath.len);
74318423 751 hashmap_entry_init(&entry->e, fspathhash(entry->path));
5efabc7e 752 hashmap_add(&opt->priv->current_file_dir_set, &entry->e);
45bc131d 753 return strbuf_detach(&newpath, NULL);
9047ebbc
MV
754}
755
5423d2e7
DT
756/**
757 * Check whether a directory in the index is in the way of an incoming
758 * file. Return 1 if so. If check_working_copy is non-zero, also
759 * check the working directory. If empty_ok is non-zero, also return
760 * 0 in the case where the working-tree dir exists but is empty.
761 */
0d6caa2d
NTND
762static int dir_in_way(struct index_state *istate, const char *path,
763 int check_working_copy, int empty_ok)
f2507b4e 764{
b4600fbe
JK
765 int pos;
766 struct strbuf dirpath = STRBUF_INIT;
f2507b4e
EN
767 struct stat st;
768
b4600fbe
JK
769 strbuf_addstr(&dirpath, path);
770 strbuf_addch(&dirpath, '/');
f2507b4e 771
0d6caa2d 772 pos = index_name_pos(istate, dirpath.buf, dirpath.len);
f2507b4e
EN
773
774 if (pos < 0)
775 pos = -1 - pos;
0d6caa2d
NTND
776 if (pos < istate->cache_nr &&
777 !strncmp(dirpath.buf, istate->cache[pos]->name, dirpath.len)) {
b4600fbe 778 strbuf_release(&dirpath);
f2507b4e
EN
779 return 1;
780 }
781
b4600fbe 782 strbuf_release(&dirpath);
5423d2e7 783 return check_working_copy && !lstat(path, &st) && S_ISDIR(st.st_mode) &&
83e3ad3b
JT
784 !(empty_ok && is_empty_dir(path)) &&
785 !has_symlink_leading_path(path, strlen(path));
f2507b4e
EN
786}
787
1de70dbd
EN
788/*
789 * Returns whether path was tracked in the index before the merge started,
790 * and its oid and mode match the specified values
791 */
259ccb6c 792static int was_tracked_and_matches(struct merge_options *opt, const char *path,
8daec1df 793 const struct diff_filespec *blob)
60c91181 794{
5bf7e577 795 int pos = index_name_pos(&opt->priv->orig_index, path, strlen(path));
1de70dbd
EN
796 struct cache_entry *ce;
797
798 if (0 > pos)
799 /* we were not tracking this path before the merge */
800 return 0;
801
802 /* See if the file we were tracking before matches */
5bf7e577 803 ce = opt->priv->orig_index.cache[pos];
763a59e7 804 return (oideq(&ce->oid, &blob->oid) && ce->ce_mode == blob->mode);
1de70dbd
EN
805}
806
a35edc84
EN
807/*
808 * Returns whether path was tracked in the index before the merge started
809 */
259ccb6c 810static int was_tracked(struct merge_options *opt, const char *path)
60c91181 811{
5bf7e577 812 int pos = index_name_pos(&opt->priv->orig_index, path, strlen(path));
60c91181 813
f8d83fb6 814 if (0 <= pos)
a35edc84 815 /* we were tracking this path before the merge */
f8d83fb6
JS
816 return 1;
817
aacb82de 818 return 0;
60c91181
JH
819}
820
259ccb6c 821static int would_lose_untracked(struct merge_options *opt, const char *path)
9047ebbc 822{
259ccb6c 823 struct index_state *istate = opt->repo->index;
0d6caa2d 824
a35edc84
EN
825 /*
826 * This may look like it can be simplified to:
259ccb6c 827 * return !was_tracked(opt, path) && file_exists(path)
a35edc84
EN
828 * but it can't. This function needs to know whether path was in
829 * the working tree due to EITHER having been tracked in the index
830 * before the merge OR having been put into the working copy and
831 * index by unpack_trees(). Due to that either-or requirement, we
832 * check the current index instead of the original one.
833 *
834 * Note that we do not need to worry about merge-recursive itself
835 * updating the index after unpack_trees() and before calling this
836 * function, because we strictly require all code paths in
837 * merge-recursive to update the working tree first and the index
838 * second. Doing otherwise would break
839 * update_file()/would_lose_untracked(); see every comment in this
840 * file which mentions "update_stages".
841 */
0d6caa2d 842 int pos = index_name_pos(istate, path, strlen(path));
a35edc84
EN
843
844 if (pos < 0)
845 pos = -1 - pos;
0d6caa2d
NTND
846 while (pos < istate->cache_nr &&
847 !strcmp(path, istate->cache[pos]->name)) {
a35edc84
EN
848 /*
849 * If stage #0, it is definitely tracked.
850 * If it has stage #2 then it was tracked
851 * before this merge started. All other
852 * cases the path was not tracked.
853 */
0d6caa2d 854 switch (ce_stage(istate->cache[pos])) {
a35edc84
EN
855 case 0:
856 case 2:
857 return 0;
858 }
859 pos++;
860 }
861 return file_exists(path);
60c91181
JH
862}
863
259ccb6c 864static int was_dirty(struct merge_options *opt, const char *path)
64b1abe9
EN
865{
866 struct cache_entry *ce;
867 int dirty = 1;
868
5bf7e577 869 if (opt->priv->call_depth || !was_tracked(opt, path))
64b1abe9
EN
870 return !dirty;
871
5bf7e577 872 ce = index_file_exists(opt->priv->unpack_opts.src_index,
277292d5 873 path, strlen(path), ignore_case);
5bf7e577 874 dirty = verify_uptodate(ce, &opt->priv->unpack_opts) != 0;
64b1abe9 875 return dirty;
60c91181
JH
876}
877
259ccb6c 878static int make_room_for_path(struct merge_options *opt, const char *path)
9047ebbc 879{
ed0148a5 880 int status, i;
55653a68 881 const char *msg = _("failed to create path '%s'%s");
9047ebbc 882
ed0148a5 883 /* Unlink any D/F conflict files that are in the way */
5bf7e577
EN
884 for (i = 0; i < opt->priv->df_conflict_file_set.nr; i++) {
885 const char *df_path = opt->priv->df_conflict_file_set.items[i].string;
ed0148a5
EN
886 size_t pathlen = strlen(path);
887 size_t df_pathlen = strlen(df_path);
888 if (df_pathlen < pathlen &&
889 path[df_pathlen] == '/' &&
890 strncmp(path, df_path, df_pathlen) == 0) {
259ccb6c 891 output(opt, 3,
55653a68 892 _("Removing %s to make room for subdirectory\n"),
ed0148a5
EN
893 df_path);
894 unlink(df_path);
5bf7e577 895 unsorted_string_list_delete_item(&opt->priv->df_conflict_file_set,
ed0148a5
EN
896 i, 0);
897 break;
898 }
899 }
900
901 /* Make sure leading directories are created */
9047ebbc
MV
902 status = safe_create_leading_directories_const(path);
903 if (status) {
6003303a 904 if (status == SCLD_EXISTS)
9047ebbc 905 /* something else exists */
259ccb6c
EN
906 return err(opt, msg, path, _(": perhaps a D/F conflict?"));
907 return err(opt, msg, path, "");
9047ebbc
MV
908 }
909
60c91181
JH
910 /*
911 * Do not unlink a file in the work tree if we are not
912 * tracking it.
913 */
259ccb6c
EN
914 if (would_lose_untracked(opt, path))
915 return err(opt, _("refusing to lose untracked file at '%s'"),
d90e759f 916 path);
60c91181 917
9047ebbc
MV
918 /* Successful unlink is good.. */
919 if (!unlink(path))
920 return 0;
921 /* .. and so is no existing file */
922 if (errno == ENOENT)
923 return 0;
924 /* .. but not some other error (who really cares what?) */
259ccb6c 925 return err(opt, msg, path, _(": perhaps a D/F conflict?"));
9047ebbc
MV
926}
927
259ccb6c 928static int update_file_flags(struct merge_options *opt,
8daec1df 929 const struct diff_filespec *contents,
75456f96
JS
930 const char *path,
931 int update_cache,
932 int update_wd)
9047ebbc 933{
6003303a
JS
934 int ret = 0;
935
5bf7e577 936 if (opt->priv->call_depth)
9047ebbc
MV
937 update_wd = 0;
938
939 if (update_wd) {
940 enum object_type type;
941 void *buf;
942 unsigned long size;
943
8daec1df 944 if (S_ISGITLINK(contents->mode)) {
0c44c943
JH
945 /*
946 * We may later decide to recursively descend into
947 * the submodule directory and update its index
948 * and/or work tree, but we do not do that now.
949 */
68d03e4a 950 update_wd = 0;
0c44c943 951 goto update_index;
68d03e4a 952 }
9047ebbc 953
8daec1df 954 buf = read_object_file(&contents->oid, &type, &size);
f836bf39
EN
955 if (!buf) {
956 ret = err(opt, _("cannot read object %s '%s'"),
957 oid_to_hex(&contents->oid), path);
958 goto free_buf;
959 }
6003303a 960 if (type != OBJ_BLOB) {
8daec1df
EN
961 ret = err(opt, _("blob expected for %s '%s'"),
962 oid_to_hex(&contents->oid), path);
6003303a
JS
963 goto free_buf;
964 }
8daec1df 965 if (S_ISREG(contents->mode)) {
f285a2d7 966 struct strbuf strbuf = STRBUF_INIT;
4d7101e2 967 if (convert_to_working_tree(opt->repo->index,
ab90ecae 968 path, buf, size, &strbuf, NULL)) {
9047ebbc
MV
969 free(buf);
970 size = strbuf.len;
971 buf = strbuf_detach(&strbuf, NULL);
972 }
973 }
974
259ccb6c 975 if (make_room_for_path(opt, path) < 0) {
9047ebbc 976 update_wd = 0;
75456f96 977 goto free_buf;
9047ebbc 978 }
8daec1df
EN
979 if (S_ISREG(contents->mode) ||
980 (!has_symlinks && S_ISLNK(contents->mode))) {
9047ebbc 981 int fd;
8daec1df
EN
982 int mode = (contents->mode & 0100 ? 0777 : 0666);
983
9047ebbc 984 fd = open(path, O_WRONLY | O_TRUNC | O_CREAT, mode);
6003303a 985 if (fd < 0) {
259ccb6c 986 ret = err(opt, _("failed to open '%s': %s"),
bc9204d4 987 path, strerror(errno));
6003303a
JS
988 goto free_buf;
989 }
f633ea2c 990 write_in_full(fd, buf, size);
9047ebbc 991 close(fd);
8daec1df 992 } else if (S_ISLNK(contents->mode)) {
9047ebbc
MV
993 char *lnk = xmemdupz(buf, size);
994 safe_create_leading_directories_const(path);
995 unlink(path);
304dcf26 996 if (symlink(lnk, path))
259ccb6c 997 ret = err(opt, _("failed to symlink '%s': %s"),
d90e759f 998 path, strerror(errno));
9047ebbc
MV
999 free(lnk);
1000 } else
259ccb6c 1001 ret = err(opt,
bc9204d4 1002 _("do not know what to do with %06o %s '%s'"),
8daec1df 1003 contents->mode, oid_to_hex(&contents->oid), path);
93665365 1004 free_buf:
9047ebbc
MV
1005 free(buf);
1006 }
93665365 1007update_index:
fb1c18fc
EN
1008 if (!ret && update_cache) {
1009 int refresh = (!opt->priv->call_depth &&
1010 contents->mode != S_IFGITLINK);
1011 if (add_cacheinfo(opt, contents, path, 0, refresh,
fd53b7ff
EN
1012 ADD_CACHE_OK_TO_ADD))
1013 return -1;
fb1c18fc 1014 }
6003303a 1015 return ret;
9047ebbc
MV
1016}
1017
259ccb6c 1018static int update_file(struct merge_options *opt,
75456f96 1019 int clean,
8daec1df 1020 const struct diff_filespec *contents,
75456f96 1021 const char *path)
9047ebbc 1022{
8daec1df 1023 return update_file_flags(opt, contents, path,
5bf7e577 1024 opt->priv->call_depth || clean, !opt->priv->call_depth);
9047ebbc
MV
1025}
1026
1027/* Low level file merging, update and removal */
1028
9cba13ca 1029struct merge_file_info {
8daec1df 1030 struct diff_filespec blob; /* mostly use oid & mode; sometimes path */
9047ebbc
MV
1031 unsigned clean:1,
1032 merge:1;
1033};
1034
259ccb6c 1035static int merge_3way(struct merge_options *opt,
b7fa51da 1036 mmbuffer_t *result_buf,
e3de888c 1037 const struct diff_filespec *o,
0c059420
EN
1038 const struct diff_filespec *a,
1039 const struct diff_filespec *b,
9047ebbc 1040 const char *branch1,
b2a7942b
EN
1041 const char *branch2,
1042 const int extra_marker_size)
9047ebbc
MV
1043{
1044 mmfile_t orig, src1, src2;
712516bc 1045 struct ll_merge_options ll_opts = {0};
139ef37a 1046 char *base, *name1, *name2;
35f69671 1047 enum ll_merge_result merge_status;
8cc5b290 1048
259ccb6c 1049 ll_opts.renormalize = opt->renormalize;
b2a7942b 1050 ll_opts.extra_marker_size = extra_marker_size;
259ccb6c 1051 ll_opts.xdl_opts = opt->xdl_opts;
712516bc 1052
5bf7e577 1053 if (opt->priv->call_depth) {
712516bc
JN
1054 ll_opts.virtual_ancestor = 1;
1055 ll_opts.variant = 0;
1056 } else {
259ccb6c 1057 switch (opt->recursive_variant) {
f3081dae 1058 case MERGE_VARIANT_OURS:
712516bc 1059 ll_opts.variant = XDL_MERGE_FAVOR_OURS;
8cc5b290 1060 break;
f3081dae 1061 case MERGE_VARIANT_THEIRS:
712516bc 1062 ll_opts.variant = XDL_MERGE_FAVOR_THEIRS;
8cc5b290
AP
1063 break;
1064 default:
712516bc 1065 ll_opts.variant = 0;
8cc5b290
AP
1066 break;
1067 }
1068 }
9047ebbc 1069
139ef37a
EN
1070 assert(a->path && b->path && o->path && opt->ancestor);
1071 if (strcmp(a->path, b->path) || strcmp(a->path, o->path) != 0) {
1072 base = mkpathdup("%s:%s", opt->ancestor, o->path);
4e2d094d
RJ
1073 name1 = mkpathdup("%s:%s", branch1, a->path);
1074 name2 = mkpathdup("%s:%s", branch2, b->path);
606475f3 1075 } else {
139ef37a 1076 base = mkpathdup("%s", opt->ancestor);
4e2d094d
RJ
1077 name1 = mkpathdup("%s", branch1);
1078 name2 = mkpathdup("%s", branch2);
606475f3 1079 }
9047ebbc 1080
e3de888c 1081 read_mmblob(&orig, &o->oid);
d449347d 1082 read_mmblob(&src1, &a->oid);
1083 read_mmblob(&src2, &b->oid);
9047ebbc 1084
816147e7
EN
1085 /*
1086 * FIXME: Using a->path for normalization rules in ll_merge could be
1087 * wrong if we renamed from a->path to b->path. We should use the
1088 * target path for where the file will be written.
1089 */
139ef37a 1090 merge_status = ll_merge(result_buf, a->path, &orig, base,
32eaa468 1091 &src1, name1, &src2, name2,
259ccb6c 1092 opt->repo->index, &ll_opts);
35f69671
EN
1093 if (merge_status == LL_MERGE_BINARY_CONFLICT)
1094 warning("Cannot merge binary files: %s (%s vs. %s)",
1095 a->path, name1, name2);
9047ebbc 1096
139ef37a 1097 free(base);
9047ebbc
MV
1098 free(name1);
1099 free(name2);
1100 free(orig.ptr);
1101 free(src1.ptr);
1102 free(src2.ptr);
1103 return merge_status;
1104}
1105
0d6caa2d
NTND
1106static int find_first_merges(struct repository *repo,
1107 struct object_array *result, const char *path,
d90e759f 1108 struct commit *a, struct commit *b)
18cfc088
SB
1109{
1110 int i, j;
1111 struct object_array merges = OBJECT_ARRAY_INIT;
1112 struct commit *commit;
1113 int contains_another;
1114
db1ba2a2 1115 char merged_revision[GIT_MAX_HEXSZ + 2];
18cfc088
SB
1116 const char *rev_args[] = { "rev-list", "--merges", "--ancestry-path",
1117 "--all", merged_revision, NULL };
1118 struct rev_info revs;
1119 struct setup_revision_opt rev_opts;
1120
1121 memset(result, 0, sizeof(struct object_array));
1122 memset(&rev_opts, 0, sizeof(rev_opts));
1123
1124 /* get all revisions that merge commit a */
1125 xsnprintf(merged_revision, sizeof(merged_revision), "^%s",
d90e759f 1126 oid_to_hex(&a->object.oid));
0d6caa2d 1127 repo_init_revisions(repo, &revs, NULL);
18cfc088
SB
1128 /* FIXME: can't handle linked worktrees in submodules yet */
1129 revs.single_worktree = path != NULL;
1130 setup_revisions(ARRAY_SIZE(rev_args)-1, rev_args, &revs, &rev_opts);
1131
1132 /* save all revisions from the above list that contain b */
1133 if (prepare_revision_walk(&revs))
1134 die("revision walk setup failed");
1135 while ((commit = get_revision(&revs)) != NULL) {
1136 struct object *o = &(commit->object);
10a0d6ae 1137 if (repo_in_merge_bases(repo, b, commit))
18cfc088
SB
1138 add_object_array(o, NULL, &merges);
1139 }
1140 reset_revision_walk();
1141
1142 /* Now we've got all merges that contain a and b. Prune all
1143 * merges that contain another found merge and save them in
1144 * result.
1145 */
1146 for (i = 0; i < merges.nr; i++) {
1147 struct commit *m1 = (struct commit *) merges.objects[i].item;
1148
1149 contains_another = 0;
1150 for (j = 0; j < merges.nr; j++) {
1151 struct commit *m2 = (struct commit *) merges.objects[j].item;
10a0d6ae 1152 if (i != j && repo_in_merge_bases(repo, m2, m1)) {
18cfc088
SB
1153 contains_another = 1;
1154 break;
1155 }
1156 }
1157
1158 if (!contains_another)
1159 add_object_array(merges.objects[i].item, NULL, result);
1160 }
1161
1162 object_array_clear(&merges);
1163 return result->nr;
1164}
1165
155b517d 1166static void print_commit(struct repository *repo, struct commit *commit)
18cfc088
SB
1167{
1168 struct strbuf sb = STRBUF_INIT;
1169 struct pretty_print_context ctx = {0};
1170 ctx.date_mode.type = DATE_NORMAL;
816147e7
EN
1171 /* FIXME: Merge this with output_commit_title() */
1172 assert(!merge_remote_util(commit));
155b517d 1173 repo_format_commit_message(repo, commit, " %h: %m %s", &sb, &ctx);
18cfc088
SB
1174 fprintf(stderr, "%s\n", sb.buf);
1175 strbuf_release(&sb);
1176}
1177
8daec1df
EN
1178static int is_valid(const struct diff_filespec *dfs)
1179{
1180 return dfs->mode != 0 && !is_null_oid(&dfs->oid);
1181}
1182
259ccb6c 1183static int merge_submodule(struct merge_options *opt,
325f3a8e 1184 struct object_id *result, const char *path,
18cfc088 1185 const struct object_id *base, const struct object_id *a,
325f3a8e 1186 const struct object_id *b)
18cfc088 1187{
10a0d6ae
JT
1188 struct repository subrepo;
1189 int ret = 0;
18cfc088
SB
1190 struct commit *commit_base, *commit_a, *commit_b;
1191 int parent_count;
1192 struct object_array merges;
1193
1194 int i;
5bf7e577 1195 int search = !opt->priv->call_depth;
18cfc088
SB
1196
1197 /* store a in result in case we fail */
816147e7
EN
1198 /* FIXME: This is the WRONG resolution for the recursive case when
1199 * we need to be careful to avoid accidentally matching either side.
1200 * Should probably use o instead there, much like we do for merging
1201 * binaries.
1202 */
18cfc088
SB
1203 oidcpy(result, a);
1204
1205 /* we can not handle deletion conflicts */
1206 if (is_null_oid(base))
1207 return 0;
1208 if (is_null_oid(a))
1209 return 0;
1210 if (is_null_oid(b))
1211 return 0;
1212
10a0d6ae
JT
1213 if (repo_submodule_init(&subrepo, opt->repo, path, null_oid())) {
1214 output(opt, 1, _("Failed to merge submodule %s (not checked out)"), path);
18cfc088
SB
1215 return 0;
1216 }
1217
10a0d6ae
JT
1218 if (!(commit_base = lookup_commit_reference(&subrepo, base)) ||
1219 !(commit_a = lookup_commit_reference(&subrepo, a)) ||
1220 !(commit_b = lookup_commit_reference(&subrepo, b))) {
1221 output(opt, 1, _("Failed to merge submodule %s (commits not present)"), path);
1222 goto cleanup;
1223 }
1224
18cfc088 1225 /* check whether both changes are forward */
10a0d6ae
JT
1226 if (!repo_in_merge_bases(&subrepo, commit_base, commit_a) ||
1227 !repo_in_merge_bases(&subrepo, commit_base, commit_b)) {
259ccb6c 1228 output(opt, 1, _("Failed to merge submodule %s (commits don't follow merge-base)"), path);
10a0d6ae 1229 goto cleanup;
18cfc088
SB
1230 }
1231
1232 /* Case #1: a is contained in b or vice versa */
10a0d6ae 1233 if (repo_in_merge_bases(&subrepo, commit_a, commit_b)) {
18cfc088 1234 oidcpy(result, b);
259ccb6c
EN
1235 if (show(opt, 3)) {
1236 output(opt, 3, _("Fast-forwarding submodule %s to the following commit:"), path);
155b517d 1237 repo_output_commit_title(opt, &subrepo, commit_b);
259ccb6c
EN
1238 } else if (show(opt, 2))
1239 output(opt, 2, _("Fast-forwarding submodule %s"), path);
76f42125
LM
1240 else
1241 ; /* no output */
1242
10a0d6ae
JT
1243 ret = 1;
1244 goto cleanup;
18cfc088 1245 }
10a0d6ae 1246 if (repo_in_merge_bases(&subrepo, commit_b, commit_a)) {
18cfc088 1247 oidcpy(result, a);
259ccb6c
EN
1248 if (show(opt, 3)) {
1249 output(opt, 3, _("Fast-forwarding submodule %s to the following commit:"), path);
155b517d 1250 repo_output_commit_title(opt, &subrepo, commit_a);
259ccb6c
EN
1251 } else if (show(opt, 2))
1252 output(opt, 2, _("Fast-forwarding submodule %s"), path);
76f42125
LM
1253 else
1254 ; /* no output */
1255
10a0d6ae
JT
1256 ret = 1;
1257 goto cleanup;
18cfc088
SB
1258 }
1259
1260 /*
1261 * Case #2: There are one or more merges that contain a and b in
1262 * the submodule. If there is only one, then present it as a
1263 * suggestion to the user, but leave it marked unmerged so the
1264 * user needs to confirm the resolution.
1265 */
1266
1267 /* Skip the search if makes no sense to the calling context. */
1268 if (!search)
10a0d6ae 1269 goto cleanup;
18cfc088
SB
1270
1271 /* find commit which merges them */
10a0d6ae 1272 parent_count = find_first_merges(&subrepo, &merges, path,
0d6caa2d 1273 commit_a, commit_b);
18cfc088
SB
1274 switch (parent_count) {
1275 case 0:
259ccb6c 1276 output(opt, 1, _("Failed to merge submodule %s (merge following commits not found)"), path);
18cfc088
SB
1277 break;
1278
1279 case 1:
259ccb6c
EN
1280 output(opt, 1, _("Failed to merge submodule %s (not fast-forward)"), path);
1281 output(opt, 2, _("Found a possible merge resolution for the submodule:\n"));
155b517d 1282 print_commit(&subrepo, (struct commit *) merges.objects[0].item);
259ccb6c 1283 output(opt, 2, _(
d90e759f
EN
1284 "If this is correct simply add it to the index "
1285 "for example\n"
1286 "by using:\n\n"
1287 " git update-index --cacheinfo 160000 %s \"%s\"\n\n"
1288 "which will accept this suggestion.\n"),
1289 oid_to_hex(&merges.objects[0].item->oid), path);
18cfc088
SB
1290 break;
1291
1292 default:
259ccb6c 1293 output(opt, 1, _("Failed to merge submodule %s (multiple merges found)"), path);
18cfc088 1294 for (i = 0; i < merges.nr; i++)
155b517d 1295 print_commit(&subrepo, (struct commit *) merges.objects[i].item);
18cfc088
SB
1296 }
1297
1298 object_array_clear(&merges);
10a0d6ae
JT
1299cleanup:
1300 repo_clear(&subrepo);
1301 return ret;
18cfc088
SB
1302}
1303
259ccb6c 1304static int merge_mode_and_contents(struct merge_options *opt,
e3de888c 1305 const struct diff_filespec *o,
d9573556
EN
1306 const struct diff_filespec *a,
1307 const struct diff_filespec *b,
1308 const char *filename,
1309 const char *branch1,
1310 const char *branch2,
b2a7942b 1311 const int extra_marker_size,
d9573556 1312 struct merge_file_info *result)
9047ebbc 1313{
259ccb6c 1314 if (opt->branch1 != branch1) {
4f445453
EN
1315 /*
1316 * It's weird getting a reverse merge with HEAD on the bottom
1317 * side of the conflict markers and the other branch on the
1318 * top. Fix that.
1319 */
e3de888c 1320 return merge_mode_and_contents(opt, o, b, a,
4f445453 1321 filename,
b2a7942b
EN
1322 branch2, branch1,
1323 extra_marker_size, result);
4f445453
EN
1324 }
1325
3c8a51e8
JS
1326 result->merge = 0;
1327 result->clean = 1;
9047ebbc
MV
1328
1329 if ((S_IFMT & a->mode) != (S_IFMT & b->mode)) {
3c8a51e8 1330 result->clean = 0;
816147e7
EN
1331 /*
1332 * FIXME: This is a bad resolution for recursive case; for
1333 * the recursive case we want something that is unlikely to
1334 * accidentally match either side. Also, while it makes
1335 * sense to prefer regular files over symlinks, it doesn't
1336 * make sense to prefer regular files over submodules.
1337 */
9047ebbc 1338 if (S_ISREG(a->mode)) {
8daec1df
EN
1339 result->blob.mode = a->mode;
1340 oidcpy(&result->blob.oid, &a->oid);
9047ebbc 1341 } else {
8daec1df
EN
1342 result->blob.mode = b->mode;
1343 oidcpy(&result->blob.oid, &b->oid);
9047ebbc
MV
1344 }
1345 } else {
763a59e7 1346 if (!oideq(&a->oid, &o->oid) && !oideq(&b->oid, &o->oid))
3c8a51e8 1347 result->merge = 1;
9047ebbc
MV
1348
1349 /*
1350 * Merge modes
1351 */
e3de888c 1352 if (a->mode == b->mode || a->mode == o->mode)
8daec1df 1353 result->blob.mode = b->mode;
9047ebbc 1354 else {
8daec1df 1355 result->blob.mode = a->mode;
e3de888c 1356 if (b->mode != o->mode) {
3c8a51e8
JS
1357 result->clean = 0;
1358 result->merge = 1;
9047ebbc
MV
1359 }
1360 }
1361
763a59e7 1362 if (oideq(&a->oid, &b->oid) || oideq(&a->oid, &o->oid))
8daec1df 1363 oidcpy(&result->blob.oid, &b->oid);
763a59e7 1364 else if (oideq(&b->oid, &o->oid))
8daec1df 1365 oidcpy(&result->blob.oid, &a->oid);
9047ebbc
MV
1366 else if (S_ISREG(a->mode)) {
1367 mmbuffer_t result_buf;
6003303a 1368 int ret = 0, merge_status;
9047ebbc 1369
e3de888c 1370 merge_status = merge_3way(opt, &result_buf, o, a, b,
b2a7942b
EN
1371 branch1, branch2,
1372 extra_marker_size);
9047ebbc
MV
1373
1374 if ((merge_status < 0) || !result_buf.ptr)
259ccb6c 1375 ret = err(opt, _("Failed to execute internal merge"));
9047ebbc 1376
a09c985e
PO
1377 if (!ret &&
1378 write_object_file(result_buf.ptr, result_buf.size,
c80d226a 1379 OBJ_BLOB, &result->blob.oid))
259ccb6c 1380 ret = err(opt, _("Unable to add %s to database"),
bc9204d4 1381 a->path);
9047ebbc
MV
1382
1383 free(result_buf.ptr);
6003303a
JS
1384 if (ret)
1385 return ret;
816147e7 1386 /* FIXME: bug, what if modes didn't match? */
3c8a51e8 1387 result->clean = (merge_status == 0);
9047ebbc 1388 } else if (S_ISGITLINK(a->mode)) {
8daec1df 1389 result->clean = merge_submodule(opt, &result->blob.oid,
e3de888c
EN
1390 o->path,
1391 &o->oid,
d90e759f
EN
1392 &a->oid,
1393 &b->oid);
9047ebbc 1394 } else if (S_ISLNK(a->mode)) {
259ccb6c 1395 switch (opt->recursive_variant) {
f3081dae 1396 case MERGE_VARIANT_NORMAL:
8daec1df 1397 oidcpy(&result->blob.oid, &a->oid);
763a59e7 1398 if (!oideq(&a->oid, &b->oid))
fd48b464
JH
1399 result->clean = 0;
1400 break;
f3081dae 1401 case MERGE_VARIANT_OURS:
8daec1df 1402 oidcpy(&result->blob.oid, &a->oid);
fd48b464 1403 break;
f3081dae 1404 case MERGE_VARIANT_THEIRS:
8daec1df 1405 oidcpy(&result->blob.oid, &b->oid);
fd48b464
JH
1406 break;
1407 }
ef1177d1 1408 } else
033abf97 1409 BUG("unsupported object type in the tree");
9047ebbc
MV
1410 }
1411
05cf21eb 1412 if (result->merge)
259ccb6c 1413 output(opt, 2, _("Auto-merging %s"), filename);
05cf21eb 1414
3c8a51e8 1415 return 0;
9047ebbc
MV
1416}
1417
259ccb6c 1418static int handle_rename_via_dir(struct merge_options *opt,
e2d563df 1419 struct rename_conflict_info *ci)
9c0743fe 1420{
5455c338
EN
1421 /*
1422 * Handle file adds that need to be renamed due to directory rename
1423 * detection. This differs from handle_rename_normal, because
1424 * there is no content merge to do; just move the file into the
1425 * desired final location.
1426 */
e2d563df
EN
1427 const struct rename *ren = ci->ren1;
1428 const struct diff_filespec *dest = ren->pair->two;
8c8e5bd6 1429 char *file_path = dest->path;
8e012516
DS
1430 int mark_conflicted = (opt->detect_directory_renames ==
1431 MERGE_DIRECTORY_RENAMES_CONFLICT);
8c8e5bd6 1432 assert(ren->dir_rename_original_dest);
9c0743fe 1433
5bf7e577 1434 if (!opt->priv->call_depth && would_lose_untracked(opt, dest->path)) {
8c8e5bd6
EN
1435 mark_conflicted = 1;
1436 file_path = unique_path(opt, dest->path, ren->branch);
259ccb6c 1437 output(opt, 1, _("Error: Refusing to lose untracked file at %s; "
8c8e5bd6
EN
1438 "writing to %s instead."),
1439 dest->path, file_path);
1440 }
79c47598 1441
8c8e5bd6 1442 if (mark_conflicted) {
79c47598 1443 /*
8c8e5bd6
EN
1444 * Write the file in worktree at file_path. In the index,
1445 * only record the file at dest->path in the appropriate
1446 * higher stage.
79c47598 1447 */
8c8e5bd6 1448 if (update_file(opt, 0, dest, file_path))
79c47598 1449 return -1;
8c8e5bd6
EN
1450 if (file_path != dest->path)
1451 free(file_path);
1452 if (update_stages(opt, dest->path, NULL,
1453 ren->branch == opt->branch1 ? dest : NULL,
1454 ren->branch == opt->branch1 ? NULL : dest))
1455 return -1;
1456 return 0; /* not clean, but conflicted */
1457 } else {
1458 /* Update dest->path both in index and in worktree */
1459 if (update_file(opt, 1, dest, dest->path))
1460 return -1;
1461 return 1; /* clean */
79c47598 1462 }
6bdaead1
EN
1463}
1464
259ccb6c 1465static int handle_change_delete(struct merge_options *opt,
d90e759f 1466 const char *path, const char *old_path,
8daec1df
EN
1467 const struct diff_filespec *o,
1468 const struct diff_filespec *changed,
d90e759f
EN
1469 const char *change_branch,
1470 const char *delete_branch,
1471 const char *change, const char *change_past)
b7033252 1472{
b26d87f2
MM
1473 char *alt_path = NULL;
1474 const char *update_path = path;
75456f96 1475 int ret = 0;
b26d87f2 1476
5bf7e577
EN
1477 if (dir_in_way(opt->repo->index, path, !opt->priv->call_depth, 0) ||
1478 (!opt->priv->call_depth && would_lose_untracked(opt, path))) {
259ccb6c 1479 update_path = alt_path = unique_path(opt, path, change_branch);
b7033252
EN
1480 }
1481
5bf7e577 1482 if (opt->priv->call_depth) {
b7033252
EN
1483 /*
1484 * We cannot arbitrarily accept either a_sha or b_sha as
1485 * correct; since there is no true "middle point" between
1486 * them, simply reuse the base version for virtual merge base.
1487 */
259ccb6c 1488 ret = remove_file_from_index(opt->repo->index, path);
75456f96 1489 if (!ret)
8daec1df 1490 ret = update_file(opt, 0, o, update_path);
b7033252 1491 } else {
5b26c3c9
EN
1492 /*
1493 * Despite the four nearly duplicate messages and argument
1494 * lists below and the ugliness of the nested if-statements,
1495 * having complete messages makes the job easier for
1496 * translators.
1497 *
1498 * The slight variance among the cases is due to the fact
1499 * that:
1500 * 1) directory/file conflicts (in effect if
1501 * !alt_path) could cause us to need to write the
1502 * file to a different path.
1503 * 2) renames (in effect if !old_path) could mean that
1504 * there are two names for the path that the user
1505 * may know the file by.
1506 */
b26d87f2
MM
1507 if (!alt_path) {
1508 if (!old_path) {
259ccb6c 1509 output(opt, 1, _("CONFLICT (%s/delete): %s deleted in %s "
b26d87f2
MM
1510 "and %s in %s. Version %s of %s left in tree."),
1511 change, path, delete_branch, change_past,
1512 change_branch, change_branch, path);
1513 } else {
259ccb6c 1514 output(opt, 1, _("CONFLICT (%s/delete): %s deleted in %s "
b26d87f2
MM
1515 "and %s to %s in %s. Version %s of %s left in tree."),
1516 change, old_path, delete_branch, change_past, path,
1517 change_branch, change_branch, path);
1518 }
55653a68 1519 } else {
b26d87f2 1520 if (!old_path) {
259ccb6c 1521 output(opt, 1, _("CONFLICT (%s/delete): %s deleted in %s "
b26d87f2
MM
1522 "and %s in %s. Version %s of %s left in tree at %s."),
1523 change, path, delete_branch, change_past,
1524 change_branch, change_branch, path, alt_path);
1525 } else {
259ccb6c 1526 output(opt, 1, _("CONFLICT (%s/delete): %s deleted in %s "
b26d87f2
MM
1527 "and %s to %s in %s. Version %s of %s left in tree at %s."),
1528 change, old_path, delete_branch, change_past, path,
1529 change_branch, change_branch, path, alt_path);
1530 }
55653a68 1531 }
35a74abf 1532 /*
b26d87f2 1533 * No need to call update_file() on path when change_branch ==
259ccb6c 1534 * opt->branch1 && !alt_path, since that would needlessly touch
b26d87f2
MM
1535 * path. We could call update_file_flags() with update_cache=0
1536 * and update_wd=0, but that's a no-op.
35a74abf 1537 */
259ccb6c 1538 if (change_branch != opt->branch1 || alt_path)
8daec1df 1539 ret = update_file(opt, 0, changed, update_path);
b7033252 1540 }
b26d87f2 1541 free(alt_path);
75456f96
JS
1542
1543 return ret;
b7033252
EN
1544}
1545
259ccb6c 1546static int handle_rename_delete(struct merge_options *opt,
e2d563df 1547 struct rename_conflict_info *ci)
9047ebbc 1548{
e2d563df
EN
1549 const struct rename *ren = ci->ren1;
1550 const struct diff_filespec *orig = ren->pair->one;
1551 const struct diff_filespec *dest = ren->pair->two;
1552 const char *rename_branch = ren->branch;
1553 const char *delete_branch = (opt->branch1 == ren->branch ?
1554 opt->branch2 : opt->branch1);
6ef2cb00 1555
259ccb6c 1556 if (handle_change_delete(opt,
5bf7e577
EN
1557 opt->priv->call_depth ? orig->path : dest->path,
1558 opt->priv->call_depth ? NULL : orig->path,
8daec1df 1559 orig, dest,
b26d87f2 1560 rename_branch, delete_branch,
75456f96
JS
1561 _("rename"), _("renamed")))
1562 return -1;
e03acb8b 1563
5bf7e577 1564 if (opt->priv->call_depth)
259ccb6c 1565 return remove_file_from_index(opt->repo->index, dest->path);
75456f96 1566 else
259ccb6c
EN
1567 return update_stages(opt, dest->path, NULL,
1568 rename_branch == opt->branch1 ? dest : NULL,
1569 rename_branch == opt->branch1 ? NULL : dest);
6ef2cb00
EN
1570}
1571
259ccb6c 1572static int handle_file_collision(struct merge_options *opt,
37b65ce3
EN
1573 const char *collide_path,
1574 const char *prev_path1,
1575 const char *prev_path2,
1576 const char *branch1, const char *branch2,
8daec1df
EN
1577 struct diff_filespec *a,
1578 struct diff_filespec *b)
3672c971 1579{
37b65ce3 1580 struct merge_file_info mfi;
8daec1df 1581 struct diff_filespec null;
37b65ce3
EN
1582 char *alt_path = NULL;
1583 const char *update_path = collide_path;
3672c971 1584
7f867165
EN
1585 /*
1586 * It's easiest to get the correct things into stage 2 and 3, and
1587 * to make sure that the content merge puts HEAD before the other
259ccb6c 1588 * branch if we just ensure that branch1 == opt->branch1. So, simply
7f867165
EN
1589 * flip arguments around if we don't have that.
1590 */
259ccb6c
EN
1591 if (branch1 != opt->branch1) {
1592 return handle_file_collision(opt, collide_path,
7f867165
EN
1593 prev_path2, prev_path1,
1594 branch2, branch1,
8daec1df 1595 b, a);
9047ebbc 1596 }
3672c971 1597
37b65ce3
EN
1598 /* Remove rename sources if rename/add or rename/rename(2to1) */
1599 if (prev_path1)
259ccb6c 1600 remove_file(opt, 1, prev_path1,
5bf7e577 1601 opt->priv->call_depth || would_lose_untracked(opt, prev_path1));
37b65ce3 1602 if (prev_path2)
259ccb6c 1603 remove_file(opt, 1, prev_path2,
5bf7e577 1604 opt->priv->call_depth || would_lose_untracked(opt, prev_path2));
37b65ce3
EN
1605
1606 /*
1607 * Remove the collision path, if it wouldn't cause dirty contents
1608 * or an untracked file to get lost. We'll either overwrite with
1609 * merged contents, or just write out to differently named files.
1610 */
259ccb6c
EN
1611 if (was_dirty(opt, collide_path)) {
1612 output(opt, 1, _("Refusing to lose dirty file at %s"),
37b65ce3 1613 collide_path);
259ccb6c
EN
1614 update_path = alt_path = unique_path(opt, collide_path, "merged");
1615 } else if (would_lose_untracked(opt, collide_path)) {
18797a3b 1616 /*
37b65ce3
EN
1617 * Only way we get here is if both renames were from
1618 * a directory rename AND user had an untracked file
1619 * at the location where both files end up after the
1620 * two directory renames. See testcase 10d of t6043.
18797a3b 1621 */
259ccb6c 1622 output(opt, 1, _("Refusing to lose untracked file at "
37b65ce3
EN
1623 "%s, even though it's in the way."),
1624 collide_path);
259ccb6c 1625 update_path = alt_path = unique_path(opt, collide_path, "merged");
3672c971 1626 } else {
37b65ce3
EN
1627 /*
1628 * FIXME: It's possible that the two files are identical
1629 * and that the current working copy happens to match, in
1630 * which case we are unnecessarily touching the working
1631 * tree file. It's not a likely enough scenario that I
1632 * want to code up the checks for it and a better fix is
1633 * available if we restructure how unpack_trees() and
1634 * merge-recursive interoperate anyway, so punting for
1635 * now...
1636 */
259ccb6c 1637 remove_file(opt, 0, collide_path, 0);
9047ebbc 1638 }
3672c971 1639
37b65ce3 1640 /* Store things in diff_filespecs for functions that need it */
8daec1df 1641 null.path = (char *)collide_path;
14228447 1642 oidcpy(&null.oid, null_oid());
37b65ce3 1643 null.mode = 0;
8daec1df
EN
1644
1645 if (merge_mode_and_contents(opt, &null, a, b, collide_path,
5bf7e577 1646 branch1, branch2, opt->priv->call_depth * 2, &mfi))
37b65ce3
EN
1647 return -1;
1648 mfi.clean &= !alt_path;
8daec1df 1649 if (update_file(opt, mfi.clean, &mfi.blob, update_path))
37b65ce3 1650 return -1;
5bf7e577 1651 if (!mfi.clean && !opt->priv->call_depth &&
8daec1df 1652 update_stages(opt, collide_path, NULL, a, b))
37b65ce3
EN
1653 return -1;
1654 free(alt_path);
1655 /*
1656 * FIXME: If both a & b both started with conflicts (only possible
1657 * if they came from a rename/rename(2to1)), but had IDENTICAL
1658 * contents including those conflicts, then in the next line we claim
1659 * it was clean. If someone cares about this case, we should have the
1660 * caller notify us if we started with conflicts.
1661 */
1662 return mfi.clean;
1663}
7f867165 1664
259ccb6c 1665static int handle_rename_add(struct merge_options *opt,
7f867165
EN
1666 struct rename_conflict_info *ci)
1667{
1668 /* a was renamed to c, and a separate c was added. */
e9cd1b5c
EN
1669 struct diff_filespec *a = ci->ren1->pair->one;
1670 struct diff_filespec *c = ci->ren1->pair->two;
7f867165
EN
1671 char *path = c->path;
1672 char *prev_path_desc;
1673 struct merge_file_info mfi;
1674
c336ab85
EN
1675 const char *rename_branch = ci->ren1->branch;
1676 const char *add_branch = (opt->branch1 == rename_branch ?
1677 opt->branch2 : opt->branch1);
1678 int other_stage = (ci->ren1->branch == opt->branch1 ? 3 : 2);
7f867165 1679
259ccb6c 1680 output(opt, 1, _("CONFLICT (rename/add): "
7f867165 1681 "Rename %s->%s in %s. Added %s in %s"),
c336ab85
EN
1682 a->path, c->path, rename_branch,
1683 c->path, add_branch);
7f867165
EN
1684
1685 prev_path_desc = xstrfmt("version of %s from %s", path, a->path);
481de8a2 1686 ci->ren1->src_entry->stages[other_stage].path = a->path;
8daec1df
EN
1687 if (merge_mode_and_contents(opt, a, c,
1688 &ci->ren1->src_entry->stages[other_stage],
3f9c92ec 1689 prev_path_desc,
259ccb6c 1690 opt->branch1, opt->branch2,
5bf7e577 1691 1 + opt->priv->call_depth * 2, &mfi))
7f867165
EN
1692 return -1;
1693 free(prev_path_desc);
1694
8daec1df 1695 ci->ren1->dst_entry->stages[other_stage].path = mfi.blob.path = c->path;
259ccb6c 1696 return handle_file_collision(opt,
7f867165 1697 c->path, a->path, NULL,
c336ab85 1698 rename_branch, add_branch,
8daec1df
EN
1699 &mfi.blob,
1700 &ci->ren1->dst_entry->stages[other_stage]);
7f867165 1701}
37b65ce3 1702
259ccb6c 1703static char *find_path_for_conflict(struct merge_options *opt,
80cee6e3
DS
1704 const char *path,
1705 const char *branch1,
1706 const char *branch2)
1707{
1708 char *new_path = NULL;
5bf7e577 1709 if (dir_in_way(opt->repo->index, path, !opt->priv->call_depth, 0)) {
259ccb6c
EN
1710 new_path = unique_path(opt, path, branch1);
1711 output(opt, 1, _("%s is a directory in %s adding "
80cee6e3
DS
1712 "as %s instead"),
1713 path, branch2, new_path);
259ccb6c
EN
1714 } else if (would_lose_untracked(opt, path)) {
1715 new_path = unique_path(opt, path, branch1);
1716 output(opt, 1, _("Refusing to lose untracked file"
80cee6e3
DS
1717 " at %s; adding as %s instead"),
1718 path, new_path);
1719 }
1720
1721 return new_path;
3672c971
EN
1722}
1723
ee798742 1724/*
4c616c2b 1725 * Toggle the stage number between "ours" and "theirs" (2 and 3).
ee798742
JK
1726 */
1727static inline int flip_stage(int stage)
1728{
4c616c2b 1729 return (2 + 3) - stage;
ee798742
JK
1730}
1731
259ccb6c 1732static int handle_rename_rename_1to2(struct merge_options *opt,
8ebe7b05 1733 struct rename_conflict_info *ci)
9047ebbc 1734{
09c01f85 1735 /* One file was renamed in both branches, but to different names. */
48c9cb9d 1736 struct merge_file_info mfi;
48c9cb9d 1737 struct diff_filespec *add;
e9cd1b5c
EN
1738 struct diff_filespec *o = ci->ren1->pair->one;
1739 struct diff_filespec *a = ci->ren1->pair->two;
1740 struct diff_filespec *b = ci->ren2->pair->two;
48c9cb9d 1741 char *path_desc;
4f66dade 1742
259ccb6c 1743 output(opt, 1, _("CONFLICT (rename/rename): "
4f66dade 1744 "Rename \"%s\"->\"%s\" in branch \"%s\" "
55653a68 1745 "rename \"%s\"->\"%s\" in \"%s\"%s"),
c336ab85
EN
1746 o->path, a->path, ci->ren1->branch,
1747 o->path, b->path, ci->ren2->branch,
5bf7e577 1748 opt->priv->call_depth ? _(" (left unresolved)") : "");
75456f96 1749
48c9cb9d 1750 path_desc = xstrfmt("%s and %s, both renamed from %s",
e3de888c
EN
1751 a->path, b->path, o->path);
1752 if (merge_mode_and_contents(opt, o, a, b, path_desc,
c336ab85 1753 ci->ren1->branch, ci->ren2->branch,
5bf7e577 1754 opt->priv->call_depth * 2, &mfi))
48c9cb9d
EN
1755 return -1;
1756 free(path_desc);
1757
80205040
EN
1758 if (opt->priv->call_depth)
1759 remove_file_from_index(opt->repo->index, o->path);
07413c5a 1760
80205040
EN
1761 /*
1762 * For each destination path, we need to see if there is a
1763 * rename/add collision. If not, we can write the file out
1764 * to the specified location.
1765 */
1766 add = &ci->ren1->dst_entry->stages[flip_stage(2)];
1767 if (is_valid(add)) {
1768 add->path = mfi.blob.path = a->path;
1769 if (handle_file_collision(opt, a->path,
1770 NULL, NULL,
1771 ci->ren1->branch,
1772 ci->ren2->branch,
1773 &mfi.blob, add) < 0)
1774 return -1;
48c9cb9d 1775 } else {
80205040
EN
1776 char *new_path = find_path_for_conflict(opt, a->path,
1777 ci->ren1->branch,
1778 ci->ren2->branch);
1779 if (update_file(opt, 0, &mfi.blob,
1780 new_path ? new_path : a->path))
1781 return -1;
1782 free(new_path);
1783 if (!opt->priv->call_depth &&
1784 update_stages(opt, a->path, NULL, a, NULL))
1785 return -1;
1786 }
48c9cb9d 1787
95983da6
EN
1788 if (!mfi.clean && mfi.blob.mode == a->mode &&
1789 oideq(&mfi.blob.oid, &a->oid)) {
1790 /*
1791 * Getting here means we were attempting to merge a binary
1792 * blob. Since we can't merge binaries, the merge algorithm
1793 * just takes one side. But we don't want to copy the
1794 * contents of one side to both paths; we'd rather use the
1795 * original content at the given path for each path.
1796 */
1797 oidcpy(&mfi.blob.oid, &b->oid);
1798 mfi.blob.mode = b->mode;
1799 }
80205040
EN
1800 add = &ci->ren2->dst_entry->stages[flip_stage(3)];
1801 if (is_valid(add)) {
1802 add->path = mfi.blob.path = b->path;
1803 if (handle_file_collision(opt, b->path,
1804 NULL, NULL,
1805 ci->ren1->branch,
1806 ci->ren2->branch,
1807 add, &mfi.blob) < 0)
1808 return -1;
1809 } else {
1810 char *new_path = find_path_for_conflict(opt, b->path,
1811 ci->ren2->branch,
1812 ci->ren1->branch);
1813 if (update_file(opt, 0, &mfi.blob,
1814 new_path ? new_path : b->path))
1815 return -1;
1816 free(new_path);
1817 if (!opt->priv->call_depth &&
1818 update_stages(opt, b->path, NULL, NULL, b))
1819 return -1;
48c9cb9d 1820 }
75456f96
JS
1821
1822 return 0;
9047ebbc
MV
1823}
1824
259ccb6c 1825static int handle_rename_rename_2to1(struct merge_options *opt,
8ebe7b05 1826 struct rename_conflict_info *ci)
9047ebbc 1827{
461f5041 1828 /* Two files, a & b, were renamed to the same thing, c. */
e9cd1b5c
EN
1829 struct diff_filespec *a = ci->ren1->pair->one;
1830 struct diff_filespec *b = ci->ren2->pair->one;
1831 struct diff_filespec *c1 = ci->ren1->pair->two;
1832 struct diff_filespec *c2 = ci->ren2->pair->two;
461f5041 1833 char *path = c1->path; /* == c2->path */
05cf21eb
EN
1834 char *path_side_1_desc;
1835 char *path_side_2_desc;
434b8525
EN
1836 struct merge_file_info mfi_c1;
1837 struct merge_file_info mfi_c2;
8daec1df 1838 int ostage1, ostage2;
461f5041 1839
259ccb6c 1840 output(opt, 1, _("CONFLICT (rename/rename): "
461f5041 1841 "Rename %s->%s in %s. "
55653a68 1842 "Rename %s->%s in %s"),
c336ab85
EN
1843 a->path, c1->path, ci->ren1->branch,
1844 b->path, c2->path, ci->ren2->branch);
461f5041 1845
2b168ef3
EN
1846 path_side_1_desc = xstrfmt("version of %s from %s", path, a->path);
1847 path_side_2_desc = xstrfmt("version of %s from %s", path, b->path);
8daec1df 1848 ostage1 = ci->ren1->branch == opt->branch1 ? 3 : 2;
ee798742 1849 ostage2 = flip_stage(ostage1);
8daec1df
EN
1850 ci->ren1->src_entry->stages[ostage1].path = a->path;
1851 ci->ren2->src_entry->stages[ostage2].path = b->path;
1852 if (merge_mode_and_contents(opt, a, c1,
1853 &ci->ren1->src_entry->stages[ostage1],
1854 path_side_1_desc,
259ccb6c 1855 opt->branch1, opt->branch2,
5bf7e577 1856 1 + opt->priv->call_depth * 2, &mfi_c1) ||
8daec1df
EN
1857 merge_mode_and_contents(opt, b,
1858 &ci->ren2->src_entry->stages[ostage2],
1859 c2, path_side_2_desc,
259ccb6c 1860 opt->branch1, opt->branch2,
5bf7e577 1861 1 + opt->priv->call_depth * 2, &mfi_c2))
75456f96 1862 return -1;
05cf21eb
EN
1863 free(path_side_1_desc);
1864 free(path_side_2_desc);
8daec1df
EN
1865 mfi_c1.blob.path = path;
1866 mfi_c2.blob.path = path;
434b8525 1867
259ccb6c 1868 return handle_file_collision(opt, path, a->path, b->path,
c336ab85 1869 ci->ren1->branch, ci->ren2->branch,
8daec1df 1870 &mfi_c1.blob, &mfi_c2.blob);
9047ebbc
MV
1871}
1872
9ba91557 1873/*
e5257b2a 1874 * Get the diff_filepairs changed between o_tree and tree.
9ba91557 1875 */
259ccb6c 1876static struct diff_queue_struct *get_diffpairs(struct merge_options *opt,
e5257b2a
EN
1877 struct tree *o_tree,
1878 struct tree *tree)
9ba91557 1879{
e5257b2a 1880 struct diff_queue_struct *ret;
9ba91557
EN
1881 struct diff_options opts;
1882
259ccb6c 1883 repo_diff_setup(opt->repo, &opts);
9ba91557
EN
1884 opts.flags.recursive = 1;
1885 opts.flags.rename_empty = 0;
259ccb6c 1886 opts.detect_rename = merge_detect_rename(opt);
85b46030
BP
1887 /*
1888 * We do not have logic to handle the detection of copies. In
1889 * fact, it may not even make sense to add such logic: would we
1890 * really want a change to a base file to be propagated through
1891 * multiple other files by a merge?
1892 */
1893 if (opts.detect_rename > DIFF_DETECT_RENAME)
1894 opts.detect_rename = DIFF_DETECT_RENAME;
94b82d56 1895 opts.rename_limit = (opt->rename_limit >= 0) ? opt->rename_limit : 7000;
259ccb6c
EN
1896 opts.rename_score = opt->rename_score;
1897 opts.show_rename_progress = opt->show_rename_progress;
9ba91557
EN
1898 opts.output_format = DIFF_FORMAT_NO_OUTPUT;
1899 diff_setup_done(&opts);
1900 diff_tree_oid(&o_tree->object.oid, &tree->object.oid, "", &opts);
1901 diffcore_std(&opts);
5bf7e577
EN
1902 if (opts.needed_rename_limit > opt->priv->needed_rename_limit)
1903 opt->priv->needed_rename_limit = opts.needed_rename_limit;
e5257b2a
EN
1904
1905 ret = xmalloc(sizeof(*ret));
1906 *ret = diff_queued_diff;
1907
1908 opts.output_format = DIFF_FORMAT_NO_OUTPUT;
1909 diff_queued_diff.nr = 0;
1910 diff_queued_diff.queue = NULL;
1911 diff_flush(&opts);
1912 return ret;
1913}
1914
34e7771b
NTND
1915static int tree_has_path(struct repository *r, struct tree *tree,
1916 const char *path)
96e7ffbd
EN
1917{
1918 struct object_id hashy;
5ec1e728 1919 unsigned short mode_o;
96e7ffbd 1920
34e7771b 1921 return !get_tree_entry(r,
50ddb089 1922 &tree->object.oid, path,
96e7ffbd
EN
1923 &hashy, &mode_o);
1924}
1925
e95ab70a
EN
1926/*
1927 * Return a new string that replaces the beginning portion (which matches
1928 * entry->dir), with entry->new_dir. In perl-speak:
1929 * new_path_name = (old_path =~ s/entry->dir/entry->new_dir/);
1930 * NOTE:
1931 * Caller must ensure that old_path starts with entry->dir + '/'.
1932 */
1933static char *apply_dir_rename(struct dir_rename_entry *entry,
1934 const char *old_path)
1935{
1936 struct strbuf new_path = STRBUF_INIT;
1937 int oldlen, newlen;
1938
1939 if (entry->non_unique_new_dir)
1940 return NULL;
1941
1942 oldlen = strlen(entry->dir);
49b8133a
EN
1943 if (entry->new_dir.len == 0)
1944 /*
1945 * If someone renamed/merged a subdirectory into the root
1946 * directory (e.g. 'some/subdir' -> ''), then we want to
1947 * avoid returning
1948 * '' + '/filename'
1949 * as the rename; we need to make old_path + oldlen advance
1950 * past the '/' character.
1951 */
1952 oldlen++;
e95ab70a
EN
1953 newlen = entry->new_dir.len + (strlen(old_path) - oldlen) + 1;
1954 strbuf_grow(&new_path, newlen);
1955 strbuf_addbuf(&new_path, &entry->new_dir);
1956 strbuf_addstr(&new_path, &old_path[oldlen]);
1957
1958 return strbuf_detach(&new_path, NULL);
1959}
1960
7fe40b88
EN
1961static void get_renamed_dir_portion(const char *old_path, const char *new_path,
1962 char **old_dir, char **new_dir)
1963{
1964 char *end_of_old, *end_of_new;
7fe40b88 1965
d3eebaad 1966 /* Default return values: NULL, meaning no rename */
7fe40b88
EN
1967 *old_dir = NULL;
1968 *new_dir = NULL;
1969
1970 /*
1971 * For
1972 * "a/b/c/d/e/foo.c" -> "a/b/some/thing/else/e/foo.c"
1973 * the "e/foo.c" part is the same, we just want to know that
1974 * "a/b/c/d" was renamed to "a/b/some/thing/else"
1975 * so, for this example, this function returns "a/b/c/d" in
1976 * *old_dir and "a/b/some/thing/else" in *new_dir.
d3eebaad
EN
1977 */
1978
1979 /*
1980 * If the basename of the file changed, we don't care. We want
1981 * to know which portion of the directory, if any, changed.
7fe40b88
EN
1982 */
1983 end_of_old = strrchr(old_path, '/');
1984 end_of_new = strrchr(new_path, '/');
1985
49b8133a
EN
1986 /*
1987 * If end_of_old is NULL, old_path wasn't in a directory, so there
1988 * could not be a directory rename (our rule elsewhere that a
1989 * directory which still exists is not considered to have been
1990 * renamed means the root directory can never be renamed -- because
1991 * the root directory always exists).
1992 */
1993 if (end_of_old == NULL)
1994 return; /* Note: *old_dir and *new_dir are still NULL */
1995
1996 /*
1997 * If new_path contains no directory (end_of_new is NULL), then we
1998 * have a rename of old_path's directory to the root directory.
1999 */
2000 if (end_of_new == NULL) {
2001 *old_dir = xstrndup(old_path, end_of_old - old_path);
2002 *new_dir = xstrdup("");
7fe40b88 2003 return;
49b8133a 2004 }
d3eebaad
EN
2005
2006 /* Find the first non-matching character traversing backwards */
7fe40b88
EN
2007 while (*--end_of_new == *--end_of_old &&
2008 end_of_old != old_path &&
2009 end_of_new != new_path)
2010 ; /* Do nothing; all in the while loop */
d3eebaad 2011
7fe40b88 2012 /*
d3eebaad
EN
2013 * If both got back to the beginning of their strings, then the
2014 * directory didn't change at all, only the basename did.
7fe40b88 2015 */
d3eebaad
EN
2016 if (end_of_old == old_path && end_of_new == new_path &&
2017 *end_of_old == *end_of_new)
49b8133a 2018 return; /* Note: *old_dir and *new_dir are still NULL */
7fe40b88
EN
2019
2020 /*
49b8133a
EN
2021 * If end_of_new got back to the beginning of its string, and
2022 * end_of_old got back to the beginning of some subdirectory, then
2023 * we have a rename/merge of a subdirectory into the root, which
2024 * needs slightly special handling.
2025 *
2026 * Note: There is no need to consider the opposite case, with a
2027 * rename/merge of the root directory into some subdirectory
2028 * because as noted above the root directory always exists so it
2029 * cannot be considered to be renamed.
7fe40b88 2030 */
49b8133a
EN
2031 if (end_of_new == new_path &&
2032 end_of_old != old_path && end_of_old[-1] == '/') {
2033 *old_dir = xstrndup(old_path, --end_of_old - old_path);
2034 *new_dir = xstrdup("");
2035 return;
7fe40b88 2036 }
7fe40b88
EN
2037
2038 /*
d3eebaad
EN
2039 * We've found the first non-matching character in the directory
2040 * paths. That means the current characters we were looking at
2041 * were part of the first non-matching subdir name going back from
2042 * the end of the strings. Get the whole name by advancing both
2043 * end_of_old and end_of_new to the NEXT '/' character. That will
2044 * represent the entire directory rename.
2045 *
2046 * The reason for the increment is cases like
2047 * a/b/star/foo/whatever.c -> a/b/tar/foo/random.c
2048 * After dropping the basename and going back to the first
2049 * non-matching character, we're now comparing:
2050 * a/b/s and a/b/
2051 * and we want to be comparing:
2052 * a/b/star/ and a/b/tar/
2053 * but without the pre-increment, the one on the right would stay
2054 * a/b/.
7fe40b88 2055 */
d3eebaad
EN
2056 end_of_old = strchr(++end_of_old, '/');
2057 end_of_new = strchr(++end_of_new, '/');
7fe40b88 2058
d3eebaad
EN
2059 /* Copy the old and new directories into *old_dir and *new_dir. */
2060 *old_dir = xstrndup(old_path, end_of_old - old_path);
2061 *new_dir = xstrndup(new_path, end_of_new - new_path);
7fe40b88
EN
2062}
2063
96e7ffbd
EN
2064static void remove_hashmap_entries(struct hashmap *dir_renames,
2065 struct string_list *items_to_remove)
2066{
2067 int i;
2068 struct dir_rename_entry *entry;
2069
2070 for (i = 0; i < items_to_remove->nr; i++) {
2071 entry = items_to_remove->items[i].util;
28ee7941 2072 hashmap_remove(dir_renames, &entry->ent, NULL);
96e7ffbd
EN
2073 }
2074 string_list_clear(items_to_remove, 0);
2075}
2076
f6f77559
EN
2077/*
2078 * See if there is a directory rename for path, and if there are any file
2079 * level conflicts for the renamed location. If there is a rename and
2080 * there are no conflicts, return the new name. Otherwise, return NULL.
2081 */
259ccb6c 2082static char *handle_path_level_conflicts(struct merge_options *opt,
f6f77559
EN
2083 const char *path,
2084 struct dir_rename_entry *entry,
2085 struct hashmap *collisions,
2086 struct tree *tree)
2087{
2088 char *new_path = NULL;
2089 struct collision_entry *collision_ent;
2090 int clean = 1;
2091 struct strbuf collision_paths = STRBUF_INIT;
2092
2093 /*
2094 * entry has the mapping of old directory name to new directory name
2095 * that we want to apply to path.
2096 */
2097 new_path = apply_dir_rename(entry, path);
2098
2099 if (!new_path) {
2100 /* This should only happen when entry->non_unique_new_dir set */
2101 if (!entry->non_unique_new_dir)
2102 BUG("entry->non_unqiue_dir not set and !new_path");
259ccb6c 2103 output(opt, 1, _("CONFLICT (directory rename split): "
f6f77559
EN
2104 "Unclear where to place %s because directory "
2105 "%s was renamed to multiple other directories, "
2106 "with no destination getting a majority of the "
2107 "files."),
2108 path, entry->dir);
2109 clean = 0;
2110 return NULL;
2111 }
2112
2113 /*
2114 * The caller needs to have ensured that it has pre-populated
2115 * collisions with all paths that map to new_path. Do a quick check
2116 * to ensure that's the case.
2117 */
2118 collision_ent = collision_find_entry(collisions, new_path);
2119 if (collision_ent == NULL)
2120 BUG("collision_ent is NULL");
2121
2122 /*
2123 * Check for one-sided add/add/.../add conflicts, i.e.
2124 * where implicit renames from the other side doing
2125 * directory rename(s) can affect this side of history
2126 * to put multiple paths into the same location. Warn
2127 * and bail on directory renames for such paths.
2128 */
2129 if (collision_ent->reported_already) {
2130 clean = 0;
34e7771b 2131 } else if (tree_has_path(opt->repo, tree, new_path)) {
f6f77559
EN
2132 collision_ent->reported_already = 1;
2133 strbuf_add_separated_string_list(&collision_paths, ", ",
2134 &collision_ent->source_files);
259ccb6c 2135 output(opt, 1, _("CONFLICT (implicit dir rename): Existing "
f6f77559
EN
2136 "file/dir at %s in the way of implicit "
2137 "directory rename(s) putting the following "
2138 "path(s) there: %s."),
2139 new_path, collision_paths.buf);
2140 clean = 0;
2141 } else if (collision_ent->source_files.nr > 1) {
2142 collision_ent->reported_already = 1;
2143 strbuf_add_separated_string_list(&collision_paths, ", ",
2144 &collision_ent->source_files);
259ccb6c 2145 output(opt, 1, _("CONFLICT (implicit dir rename): Cannot map "
f6f77559
EN
2146 "more than one path to %s; implicit directory "
2147 "renames tried to put these paths there: %s"),
2148 new_path, collision_paths.buf);
2149 clean = 0;
2150 }
2151
2152 /* Free memory we no longer need */
2153 strbuf_release(&collision_paths);
2154 if (!clean && new_path) {
2155 free(new_path);
2156 return NULL;
2157 }
2158
2159 return new_path;
2160}
2161
96e7ffbd
EN
2162/*
2163 * There are a couple things we want to do at the directory level:
2164 * 1. Check for both sides renaming to the same thing, in order to avoid
2165 * implicit renaming of files that should be left in place. (See
2166 * testcase 6b in t6043 for details.)
2167 * 2. Prune directory renames if there are still files left in the
abcb66c6 2168 * original directory. These represent a partial directory rename,
96e7ffbd
EN
2169 * i.e. a rename where only some of the files within the directory
2170 * were renamed elsewhere. (Technically, this could be done earlier
2171 * in get_directory_renames(), except that would prevent us from
2172 * doing the previous check and thus failing testcase 6b.)
2173 * 3. Check for rename/rename(1to2) conflicts (at the directory level).
2174 * In the future, we could potentially record this info as well and
2175 * omit reporting rename/rename(1to2) conflicts for each path within
2176 * the affected directories, thus cleaning up the merge output.
2177 * NOTE: We do NOT check for rename/rename(2to1) conflicts at the
2178 * directory level, because merging directories is fine. If it
2179 * causes conflicts for files within those merged directories, then
2180 * that should be detected at the individual path level.
2181 */
259ccb6c 2182static void handle_directory_level_conflicts(struct merge_options *opt,
96e7ffbd
EN
2183 struct hashmap *dir_re_head,
2184 struct tree *head,
2185 struct hashmap *dir_re_merge,
2186 struct tree *merge)
2187{
2188 struct hashmap_iter iter;
2189 struct dir_rename_entry *head_ent;
2190 struct dir_rename_entry *merge_ent;
2191
2192 struct string_list remove_from_head = STRING_LIST_INIT_NODUP;
2193 struct string_list remove_from_merge = STRING_LIST_INIT_NODUP;
2194
87571c3f 2195 hashmap_for_each_entry(dir_re_head, &iter, head_ent,
87571c3f 2196 ent /* member name */) {
96e7ffbd
EN
2197 merge_ent = dir_rename_find_entry(dir_re_merge, head_ent->dir);
2198 if (merge_ent &&
2199 !head_ent->non_unique_new_dir &&
2200 !merge_ent->non_unique_new_dir &&
2201 !strbuf_cmp(&head_ent->new_dir, &merge_ent->new_dir)) {
2202 /* 1. Renamed identically; remove it from both sides */
2203 string_list_append(&remove_from_head,
2204 head_ent->dir)->util = head_ent;
2205 strbuf_release(&head_ent->new_dir);
2206 string_list_append(&remove_from_merge,
2207 merge_ent->dir)->util = merge_ent;
2208 strbuf_release(&merge_ent->new_dir);
34e7771b 2209 } else if (tree_has_path(opt->repo, head, head_ent->dir)) {
96e7ffbd
EN
2210 /* 2. This wasn't a directory rename after all */
2211 string_list_append(&remove_from_head,
2212 head_ent->dir)->util = head_ent;
2213 strbuf_release(&head_ent->new_dir);
2214 }
2215 }
2216
2217 remove_hashmap_entries(dir_re_head, &remove_from_head);
2218 remove_hashmap_entries(dir_re_merge, &remove_from_merge);
2219
87571c3f 2220 hashmap_for_each_entry(dir_re_merge, &iter, merge_ent,
87571c3f 2221 ent /* member name */) {
96e7ffbd 2222 head_ent = dir_rename_find_entry(dir_re_head, merge_ent->dir);
34e7771b 2223 if (tree_has_path(opt->repo, merge, merge_ent->dir)) {
96e7ffbd
EN
2224 /* 2. This wasn't a directory rename after all */
2225 string_list_append(&remove_from_merge,
2226 merge_ent->dir)->util = merge_ent;
2227 } else if (head_ent &&
2228 !head_ent->non_unique_new_dir &&
2229 !merge_ent->non_unique_new_dir) {
2230 /* 3. rename/rename(1to2) */
2231 /*
2232 * We can assume it's not rename/rename(1to1) because
2233 * that was case (1), already checked above. So we
2234 * know that head_ent->new_dir and merge_ent->new_dir
2235 * are different strings.
2236 */
259ccb6c 2237 output(opt, 1, _("CONFLICT (rename/rename): "
96e7ffbd
EN
2238 "Rename directory %s->%s in %s. "
2239 "Rename directory %s->%s in %s"),
259ccb6c
EN
2240 head_ent->dir, head_ent->new_dir.buf, opt->branch1,
2241 head_ent->dir, merge_ent->new_dir.buf, opt->branch2);
96e7ffbd
EN
2242 string_list_append(&remove_from_head,
2243 head_ent->dir)->util = head_ent;
2244 strbuf_release(&head_ent->new_dir);
2245 string_list_append(&remove_from_merge,
2246 merge_ent->dir)->util = merge_ent;
2247 strbuf_release(&merge_ent->new_dir);
2248 }
2249 }
2250
2251 remove_hashmap_entries(dir_re_head, &remove_from_head);
2252 remove_hashmap_entries(dir_re_merge, &remove_from_merge);
2253}
2254
b53c5028 2255static struct hashmap *get_directory_renames(struct diff_queue_struct *pairs)
7fe40b88
EN
2256{
2257 struct hashmap *dir_renames;
2258 struct hashmap_iter iter;
2259 struct dir_rename_entry *entry;
2260 int i;
2261
2262 /*
2263 * Typically, we think of a directory rename as all files from a
2264 * certain directory being moved to a target directory. However,
2265 * what if someone first moved two files from the original
2266 * directory in one commit, and then renamed the directory
2267 * somewhere else in a later commit? At merge time, we just know
2268 * that files from the original directory went to two different
2269 * places, and that the bulk of them ended up in the same place.
2270 * We want each directory rename to represent where the bulk of the
2271 * files from that directory end up; this function exists to find
2272 * where the bulk of the files went.
2273 *
2274 * The first loop below simply iterates through the list of file
2275 * renames, finding out how often each directory rename pair
2276 * possibility occurs.
2277 */
2278 dir_renames = xmalloc(sizeof(*dir_renames));
2279 dir_rename_init(dir_renames);
2280 for (i = 0; i < pairs->nr; ++i) {
2281 struct string_list_item *item;
2282 int *count;
2283 struct diff_filepair *pair = pairs->queue[i];
2284 char *old_dir, *new_dir;
2285
2286 /* File not part of directory rename if it wasn't renamed */
2287 if (pair->status != 'R')
2288 continue;
2289
2290 get_renamed_dir_portion(pair->one->path, pair->two->path,
2291 &old_dir, &new_dir);
2292 if (!old_dir)
2293 /* Directory didn't change at all; ignore this one. */
2294 continue;
2295
2296 entry = dir_rename_find_entry(dir_renames, old_dir);
2297 if (!entry) {
2298 entry = xmalloc(sizeof(*entry));
2299 dir_rename_entry_init(entry, old_dir);
26b455f2 2300 hashmap_put(dir_renames, &entry->ent);
7fe40b88
EN
2301 } else {
2302 free(old_dir);
2303 }
2304 item = string_list_lookup(&entry->possible_new_dirs, new_dir);
2305 if (!item) {
2306 item = string_list_insert(&entry->possible_new_dirs,
2307 new_dir);
2308 item->util = xcalloc(1, sizeof(int));
2309 } else {
2310 free(new_dir);
2311 }
2312 count = item->util;
2313 *count += 1;
2314 }
2315
2316 /*
2317 * For each directory with files moved out of it, we find out which
2318 * target directory received the most files so we can declare it to
2319 * be the "winning" target location for the directory rename. This
2320 * winner gets recorded in new_dir. If there is no winner
2321 * (multiple target directories received the same number of files),
2322 * we set non_unique_new_dir. Once we've determined the winner (or
2323 * that there is no winner), we no longer need possible_new_dirs.
2324 */
87571c3f 2325 hashmap_for_each_entry(dir_renames, &iter, entry,
87571c3f 2326 ent /* member name */) {
7fe40b88
EN
2327 int max = 0;
2328 int bad_max = 0;
2329 char *best = NULL;
2330
2331 for (i = 0; i < entry->possible_new_dirs.nr; i++) {
2332 int *count = entry->possible_new_dirs.items[i].util;
2333
2334 if (*count == max)
2335 bad_max = max;
2336 else if (*count > max) {
2337 max = *count;
2338 best = entry->possible_new_dirs.items[i].string;
2339 }
2340 }
2341 if (bad_max == max)
2342 entry->non_unique_new_dir = 1;
2343 else {
2344 assert(entry->new_dir.len == 0);
2345 strbuf_addstr(&entry->new_dir, best);
2346 }
2347 /*
2348 * The relevant directory sub-portion of the original full
2349 * filepaths were xstrndup'ed before inserting into
2350 * possible_new_dirs, and instead of manually iterating the
2351 * list and free'ing each, just lie and tell
2352 * possible_new_dirs that it did the strdup'ing so that it
2353 * will free them for us.
2354 */
2355 entry->possible_new_dirs.strdup_strings = 1;
2356 string_list_clear(&entry->possible_new_dirs, 1);
2357 }
2358
2359 return dir_renames;
2360}
2361
e95ab70a
EN
2362static struct dir_rename_entry *check_dir_renamed(const char *path,
2363 struct hashmap *dir_renames)
2364{
9da2d037 2365 char *temp = xstrdup(path);
e95ab70a 2366 char *end;
c3b9bc94 2367 struct dir_rename_entry *entry = NULL;
e95ab70a 2368
e95ab70a
EN
2369 while ((end = strrchr(temp, '/'))) {
2370 *end = '\0';
2371 entry = dir_rename_find_entry(dir_renames, temp);
2372 if (entry)
9da2d037 2373 break;
e95ab70a 2374 }
9da2d037
RS
2375 free(temp);
2376 return entry;
e95ab70a
EN
2377}
2378
2379static void compute_collisions(struct hashmap *collisions,
2380 struct hashmap *dir_renames,
2381 struct diff_queue_struct *pairs)
2382{
2383 int i;
2384
2385 /*
2386 * Multiple files can be mapped to the same path due to directory
2387 * renames done by the other side of history. Since that other
2388 * side of history could have merged multiple directories into one,
2389 * if our side of history added the same file basename to each of
2390 * those directories, then all N of them would get implicitly
2391 * renamed by the directory rename detection into the same path,
2392 * and we'd get an add/add/.../add conflict, and all those adds
2393 * from *this* side of history. This is not representable in the
2394 * index, and users aren't going to easily be able to make sense of
2395 * it. So we need to provide a good warning about what's
2396 * happening, and fall back to no-directory-rename detection
2397 * behavior for those paths.
2398 *
2399 * See testcases 9e and all of section 5 from t6043 for examples.
2400 */
2401 collision_init(collisions);
2402
2403 for (i = 0; i < pairs->nr; ++i) {
2404 struct dir_rename_entry *dir_rename_ent;
2405 struct collision_entry *collision_ent;
2406 char *new_path;
2407 struct diff_filepair *pair = pairs->queue[i];
2408
6e7e027f 2409 if (pair->status != 'A' && pair->status != 'R')
e95ab70a
EN
2410 continue;
2411 dir_rename_ent = check_dir_renamed(pair->two->path,
2412 dir_renames);
2413 if (!dir_rename_ent)
2414 continue;
2415
2416 new_path = apply_dir_rename(dir_rename_ent, pair->two->path);
2417 if (!new_path)
2418 /*
2419 * dir_rename_ent->non_unique_new_path is true, which
2420 * means there is no directory rename for us to use,
2421 * which means it won't cause us any additional
2422 * collisions.
2423 */
2424 continue;
2425 collision_ent = collision_find_entry(collisions, new_path);
2426 if (!collision_ent) {
ca56dadb 2427 CALLOC_ARRAY(collision_ent, 1);
d22245a2
EW
2428 hashmap_entry_init(&collision_ent->ent,
2429 strhash(new_path));
26b455f2 2430 hashmap_put(collisions, &collision_ent->ent);
e95ab70a
EN
2431 collision_ent->target_file = new_path;
2432 } else {
2433 free(new_path);
2434 }
2435 string_list_insert(&collision_ent->source_files,
2436 pair->two->path);
2437 }
2438}
2439
259ccb6c 2440static char *check_for_directory_rename(struct merge_options *opt,
f6f77559
EN
2441 const char *path,
2442 struct tree *tree,
2443 struct hashmap *dir_renames,
2444 struct hashmap *dir_rename_exclusions,
2445 struct hashmap *collisions,
2446 int *clean_merge)
2447{
2448 char *new_path = NULL;
2449 struct dir_rename_entry *entry = check_dir_renamed(path, dir_renames);
2450 struct dir_rename_entry *oentry = NULL;
2451
2452 if (!entry)
2453 return new_path;
2454
2455 /*
2456 * This next part is a little weird. We do not want to do an
2457 * implicit rename into a directory we renamed on our side, because
2458 * that will result in a spurious rename/rename(1to2) conflict. An
2459 * example:
2460 * Base commit: dumbdir/afile, otherdir/bfile
2461 * Side 1: smrtdir/afile, otherdir/bfile
2462 * Side 2: dumbdir/afile, dumbdir/bfile
2463 * Here, while working on Side 1, we could notice that otherdir was
2464 * renamed/merged to dumbdir, and change the diff_filepair for
2465 * otherdir/bfile into a rename into dumbdir/bfile. However, Side
2466 * 2 will notice the rename from dumbdir to smrtdir, and do the
2467 * transitive rename to move it from dumbdir/bfile to
2468 * smrtdir/bfile. That gives us bfile in dumbdir vs being in
2469 * smrtdir, a rename/rename(1to2) conflict. We really just want
2470 * the file to end up in smrtdir. And the way to achieve that is
2471 * to not let Side1 do the rename to dumbdir, since we know that is
2472 * the source of one of our directory renames.
2473 *
2474 * That's why oentry and dir_rename_exclusions is here.
2475 *
2476 * As it turns out, this also prevents N-way transient rename
2477 * confusion; See testcases 9c and 9d of t6043.
2478 */
2479 oentry = dir_rename_find_entry(dir_rename_exclusions, entry->new_dir.buf);
2480 if (oentry) {
259ccb6c 2481 output(opt, 1, _("WARNING: Avoiding applying %s -> %s rename "
f6f77559
EN
2482 "to %s, because %s itself was renamed."),
2483 entry->dir, entry->new_dir.buf, path, entry->new_dir.buf);
2484 } else {
259ccb6c 2485 new_path = handle_path_level_conflicts(opt, path, entry,
f6f77559
EN
2486 collisions, tree);
2487 *clean_merge &= (new_path != NULL);
2488 }
2489
2490 return new_path;
2491}
2492
259ccb6c 2493static void apply_directory_rename_modifications(struct merge_options *opt,
9c0743fe
EN
2494 struct diff_filepair *pair,
2495 char *new_path,
2496 struct rename *re,
2497 struct tree *tree,
2498 struct tree *o_tree,
2499 struct tree *a_tree,
2500 struct tree *b_tree,
b53c5028 2501 struct string_list *entries)
9c0743fe
EN
2502{
2503 struct string_list_item *item;
2504 int stage = (tree == a_tree ? 2 : 3);
18797a3b 2505 int update_wd;
9c0743fe
EN
2506
2507 /*
2508 * In all cases where we can do directory rename detection,
2509 * unpack_trees() will have read pair->two->path into the
2510 * index and the working copy. We need to remove it so that
2511 * we can instead place it at new_path. It is guaranteed to
2512 * not be untracked (unpack_trees() would have errored out
2513 * saying the file would have been overwritten), but it might
2514 * be dirty, though.
2515 */
259ccb6c 2516 update_wd = !was_dirty(opt, pair->two->path);
18797a3b 2517 if (!update_wd)
259ccb6c 2518 output(opt, 1, _("Refusing to lose dirty file at %s"),
18797a3b 2519 pair->two->path);
259ccb6c 2520 remove_file(opt, 1, pair->two->path, !update_wd);
9c0743fe
EN
2521
2522 /* Find or create a new re->dst_entry */
2523 item = string_list_lookup(entries, new_path);
2524 if (item) {
2525 /*
2526 * Since we're renaming on this side of history, and it's
2527 * due to a directory rename on the other side of history
2528 * (which we only allow when the directory in question no
2529 * longer exists on the other side of history), the
2530 * original entry for re->dst_entry is no longer
2531 * necessary...
2532 */
2533 re->dst_entry->processed = 1;
2534
2535 /*
2536 * ...because we'll be using this new one.
2537 */
2538 re->dst_entry = item->util;
2539 } else {
2540 /*
2541 * re->dst_entry is for the before-dir-rename path, and we
2542 * need it to hold information for the after-dir-rename
2543 * path. Before creating a new entry, we need to mark the
2544 * old one as unnecessary (...unless it is shared by
2545 * src_entry, i.e. this didn't use to be a rename, in which
2546 * case we can just allow the normal processing to happen
2547 * for it).
2548 */
2549 if (pair->status == 'R')
2550 re->dst_entry->processed = 1;
2551
34e7771b 2552 re->dst_entry = insert_stage_data(opt->repo, new_path,
9c0743fe
EN
2553 o_tree, a_tree, b_tree,
2554 entries);
2555 item = string_list_insert(entries, new_path);
2556 item->util = re->dst_entry;
2557 }
2558
2559 /*
2560 * Update the stage_data with the information about the path we are
2561 * moving into place. That slot will be empty and available for us
2562 * to write to because of the collision checks in
2563 * handle_path_level_conflicts(). In other words,
2564 * re->dst_entry->stages[stage].oid will be the null_oid, so it's
2565 * open for us to write to.
2566 *
2567 * It may be tempting to actually update the index at this point as
2568 * well, using update_stages_for_stage_data(), but as per the big
2569 * "NOTE" in update_stages(), doing so will modify the current
2570 * in-memory index which will break calls to would_lose_untracked()
2571 * that we need to make. Instead, we need to just make sure that
8ebe7b05 2572 * the various handle_rename_*() functions update the index
9c0743fe
EN
2573 * explicitly rather than relying on unpack_trees() to have done it.
2574 */
50ddb089
NTND
2575 get_tree_entry(opt->repo,
2576 &tree->object.oid,
9c0743fe
EN
2577 pair->two->path,
2578 &re->dst_entry->stages[stage].oid,
2579 &re->dst_entry->stages[stage].mode);
2580
6d169fd3
EN
2581 /*
2582 * Record the original change status (or 'type' of change). If it
2583 * was originally an add ('A'), this lets us differentiate later
2584 * between a RENAME_DELETE conflict and RENAME_VIA_DIR (they
2585 * otherwise look the same). If it was originally a rename ('R'),
2586 * this lets us remember and report accurately about the transitive
2587 * renaming that occurred via the directory rename detection. Also,
2588 * record the original destination name.
2589 */
2590 re->dir_rename_original_type = pair->status;
2591 re->dir_rename_original_dest = pair->two->path;
2592
9c0743fe
EN
2593 /*
2594 * We don't actually look at pair->status again, but it seems
2595 * pedagogically correct to adjust it.
2596 */
2597 pair->status = 'R';
2598
2599 /*
2600 * Finally, record the new location.
2601 */
2602 pair->two->path = new_path;
2603}
2604
e5257b2a
EN
2605/*
2606 * Get information of all renames which occurred in 'pairs', making use of
2607 * any implicit directory renames inferred from the other side of history.
2608 * We need the three trees in the merge ('o_tree', 'a_tree' and 'b_tree')
2609 * to be able to associate the correct cache entries with the rename
2610 * information; tree is always equal to either a_tree or b_tree.
2611 */
259ccb6c 2612static struct string_list *get_renames(struct merge_options *opt,
c336ab85 2613 const char *branch,
e5257b2a 2614 struct diff_queue_struct *pairs,
e95ab70a 2615 struct hashmap *dir_renames,
f6f77559 2616 struct hashmap *dir_rename_exclusions,
e5257b2a
EN
2617 struct tree *tree,
2618 struct tree *o_tree,
2619 struct tree *a_tree,
2620 struct tree *b_tree,
f6f77559
EN
2621 struct string_list *entries,
2622 int *clean_merge)
e5257b2a
EN
2623{
2624 int i;
e95ab70a
EN
2625 struct hashmap collisions;
2626 struct hashmap_iter iter;
2627 struct collision_entry *e;
e5257b2a
EN
2628 struct string_list *renames;
2629
e95ab70a 2630 compute_collisions(&collisions, dir_renames, pairs);
ca56dadb 2631 CALLOC_ARRAY(renames, 1);
e5257b2a
EN
2632
2633 for (i = 0; i < pairs->nr; ++i) {
9ba91557
EN
2634 struct string_list_item *item;
2635 struct rename *re;
e5257b2a 2636 struct diff_filepair *pair = pairs->queue[i];
f6f77559 2637 char *new_path; /* non-NULL only with directory renames */
9ba91557 2638
6e7e027f 2639 if (pair->status != 'A' && pair->status != 'R') {
9ba91557
EN
2640 diff_free_filepair(pair);
2641 continue;
2642 }
259ccb6c 2643 new_path = check_for_directory_rename(opt, pair->two->path, tree,
f6f77559
EN
2644 dir_renames,
2645 dir_rename_exclusions,
2646 &collisions,
2647 clean_merge);
2648 if (pair->status != 'R' && !new_path) {
2649 diff_free_filepair(pair);
2650 continue;
2651 }
2652
9ba91557
EN
2653 re = xmalloc(sizeof(*re));
2654 re->processed = 0;
2655 re->pair = pair;
c336ab85 2656 re->branch = branch;
6d169fd3
EN
2657 re->dir_rename_original_type = '\0';
2658 re->dir_rename_original_dest = NULL;
9ba91557
EN
2659 item = string_list_lookup(entries, re->pair->one->path);
2660 if (!item)
34e7771b
NTND
2661 re->src_entry = insert_stage_data(opt->repo,
2662 re->pair->one->path,
9ba91557
EN
2663 o_tree, a_tree, b_tree, entries);
2664 else
2665 re->src_entry = item->util;
2666
2667 item = string_list_lookup(entries, re->pair->two->path);
2668 if (!item)
34e7771b
NTND
2669 re->dst_entry = insert_stage_data(opt->repo,
2670 re->pair->two->path,
9ba91557
EN
2671 o_tree, a_tree, b_tree, entries);
2672 else
2673 re->dst_entry = item->util;
2674 item = string_list_insert(renames, pair->one->path);
2675 item->util = re;
9c0743fe 2676 if (new_path)
259ccb6c 2677 apply_directory_rename_modifications(opt, pair, new_path,
9c0743fe
EN
2678 re, tree, o_tree,
2679 a_tree, b_tree,
b53c5028 2680 entries);
9ba91557 2681 }
e95ab70a 2682
87571c3f 2683 hashmap_for_each_entry(&collisions, &iter, e,
87571c3f 2684 ent /* member name */) {
e95ab70a
EN
2685 free(e->target_file);
2686 string_list_clear(&e->source_files, 0);
2687 }
6da1a258 2688 hashmap_clear_and_free(&collisions, struct collision_entry, ent);
9ba91557
EN
2689 return renames;
2690}
2691
259ccb6c 2692static int process_renames(struct merge_options *opt,
8a2fce18
MV
2693 struct string_list *a_renames,
2694 struct string_list *b_renames)
9047ebbc
MV
2695{
2696 int clean_merge = 1, i, j;
183113a5
TF
2697 struct string_list a_by_dst = STRING_LIST_INIT_NODUP;
2698 struct string_list b_by_dst = STRING_LIST_INIT_NODUP;
9047ebbc
MV
2699 const struct rename *sre;
2700
816147e7
EN
2701 /*
2702 * FIXME: As string-list.h notes, it's O(n^2) to build a sorted
2703 * string_list one-by-one, but O(n log n) to build it unsorted and
2704 * then sort it. Note that as we build the list, we do not need to
2705 * check if the existing destination path is already in the list,
2706 * because the structure of diffcore_rename guarantees we won't
2707 * have duplicates.
2708 */
9047ebbc
MV
2709 for (i = 0; i < a_renames->nr; i++) {
2710 sre = a_renames->items[i].util;
78a395d3 2711 string_list_insert(&a_by_dst, sre->pair->two->path)->util
0a6b8712 2712 = (void *)sre;
9047ebbc
MV
2713 }
2714 for (i = 0; i < b_renames->nr; i++) {
2715 sre = b_renames->items[i].util;
78a395d3 2716 string_list_insert(&b_by_dst, sre->pair->two->path)->util
0a6b8712 2717 = (void *)sre;
9047ebbc
MV
2718 }
2719
2720 for (i = 0, j = 0; i < a_renames->nr || j < b_renames->nr;) {
8e24cbae 2721 struct string_list *renames1, *renames2Dst;
9047ebbc 2722 struct rename *ren1 = NULL, *ren2 = NULL;
9047ebbc 2723 const char *ren1_src, *ren1_dst;
461f5041 2724 struct string_list_item *lookup;
9047ebbc
MV
2725
2726 if (i >= a_renames->nr) {
9047ebbc
MV
2727 ren2 = b_renames->items[j++].util;
2728 } else if (j >= b_renames->nr) {
9047ebbc
MV
2729 ren1 = a_renames->items[i++].util;
2730 } else {
8e24cbae
BK
2731 int compare = strcmp(a_renames->items[i].string,
2732 b_renames->items[j].string);
9047ebbc
MV
2733 if (compare <= 0)
2734 ren1 = a_renames->items[i++].util;
2735 if (compare >= 0)
2736 ren2 = b_renames->items[j++].util;
2737 }
2738
2739 /* TODO: refactor, so that 1/2 are not needed */
2740 if (ren1) {
2741 renames1 = a_renames;
9047ebbc 2742 renames2Dst = &b_by_dst;
9047ebbc 2743 } else {
9047ebbc 2744 renames1 = b_renames;
9047ebbc 2745 renames2Dst = &a_by_dst;
35d803bc 2746 SWAP(ren2, ren1);
9047ebbc 2747 }
9047ebbc 2748
9047ebbc
MV
2749 if (ren1->processed)
2750 continue;
2751 ren1->processed = 1;
9047ebbc 2752 ren1->dst_entry->processed = 1;
7769a75e
EN
2753 /* BUG: We should only mark src_entry as processed if we
2754 * are not dealing with a rename + add-source case.
2755 */
9047ebbc 2756 ren1->src_entry->processed = 1;
9047ebbc
MV
2757
2758 ren1_src = ren1->pair->one->path;
2759 ren1_dst = ren1->pair->two->path;
2760
2761 if (ren2) {
461f5041 2762 /* One file renamed on both sides */
9047ebbc
MV
2763 const char *ren2_src = ren2->pair->one->path;
2764 const char *ren2_dst = ren2->pair->two->path;
4f66dade 2765 enum rename_type rename_type;
9047ebbc 2766 if (strcmp(ren1_src, ren2_src) != 0)
033abf97 2767 BUG("ren1_src != ren2_src");
9047ebbc
MV
2768 ren2->dst_entry->processed = 1;
2769 ren2->processed = 1;
2770 if (strcmp(ren1_dst, ren2_dst) != 0) {
4f66dade 2771 rename_type = RENAME_ONE_FILE_TO_TWO;
461f5041 2772 clean_merge = 0;
9047ebbc 2773 } else {
4f66dade 2774 rename_type = RENAME_ONE_FILE_TO_ONE;
7769a75e
EN
2775 /* BUG: We should only remove ren1_src in
2776 * the base stage (think of rename +
2777 * add-source cases).
2778 */
259ccb6c 2779 remove_file(opt, 1, ren1_src, 1);
b8ddf164
EN
2780 update_entry(ren1->dst_entry,
2781 ren1->pair->one,
2782 ren1->pair->two,
2783 ren2->pair->two);
9047ebbc 2784 }
c336ab85 2785 setup_rename_conflict_info(rename_type, opt, ren1, ren2);
461f5041
EN
2786 } else if ((lookup = string_list_lookup(renames2Dst, ren1_dst))) {
2787 /* Two different files renamed to the same thing */
2788 char *ren2_dst;
2789 ren2 = lookup->util;
2790 ren2_dst = ren2->pair->two->path;
2791 if (strcmp(ren1_dst, ren2_dst) != 0)
033abf97 2792 BUG("ren1_dst != ren2_dst");
461f5041
EN
2793
2794 clean_merge = 0;
2795 ren2->processed = 1;
2796 /*
2797 * BUG: We should only mark src_entry as processed
2798 * if we are not dealing with a rename + add-source
2799 * case.
2800 */
2801 ren2->src_entry->processed = 1;
2802
2803 setup_rename_conflict_info(RENAME_TWO_FILES_TO_ONE,
c336ab85 2804 opt, ren1, ren2);
9047ebbc
MV
2805 } else {
2806 /* Renamed in 1, maybe changed in 2 */
9047ebbc
MV
2807 /* we only use sha1 and mode of these */
2808 struct diff_filespec src_other, dst_other;
41d70bd6 2809 int try_merge;
9047ebbc 2810
41d70bd6
EN
2811 /*
2812 * unpack_trees loads entries from common-commit
2813 * into stage 1, from head-commit into stage 2, and
2814 * from merge-commit into stage 3. We keep track
2815 * of which side corresponds to the rename.
2816 */
2817 int renamed_stage = a_renames == renames1 ? 2 : 3;
2818 int other_stage = a_renames == renames1 ? 3 : 2;
9047ebbc 2819
3585d0ea
EN
2820 /*
2821 * Directory renames have a funny corner case...
2822 */
2823 int renamed_to_self = !strcmp(ren1_src, ren1_dst);
2824
7769a75e
EN
2825 /* BUG: We should only remove ren1_src in the base
2826 * stage and in other_stage (think of rename +
2827 * add-source case).
2828 */
3585d0ea
EN
2829 if (!renamed_to_self)
2830 remove_file(opt, 1, ren1_src,
2831 renamed_stage == 2 ||
2832 !was_tracked(opt, ren1_src));
9047ebbc 2833
fd429e98 2834 oidcpy(&src_other.oid,
2835 &ren1->src_entry->stages[other_stage].oid);
41d70bd6 2836 src_other.mode = ren1->src_entry->stages[other_stage].mode;
fd429e98 2837 oidcpy(&dst_other.oid,
2838 &ren1->dst_entry->stages[other_stage].oid);
41d70bd6 2839 dst_other.mode = ren1->dst_entry->stages[other_stage].mode;
9047ebbc
MV
2840 try_merge = 0;
2841
14228447 2842 if (oideq(&src_other.oid, null_oid()) &&
6d169fd3 2843 ren1->dir_rename_original_type == 'A') {
5455c338 2844 setup_rename_conflict_info(RENAME_VIA_DIR,
c336ab85 2845 opt, ren1, NULL);
3585d0ea
EN
2846 } else if (renamed_to_self) {
2847 setup_rename_conflict_info(RENAME_NORMAL,
2848 opt, ren1, NULL);
14228447 2849 } else if (oideq(&src_other.oid, null_oid())) {
4f66dade 2850 setup_rename_conflict_info(RENAME_DELETE,
c336ab85 2851 opt, ren1, NULL);
d5af5105 2852 } else if ((dst_other.mode == ren1->pair->two->mode) &&
763a59e7 2853 oideq(&dst_other.oid, &ren1->pair->two->oid)) {
35a74abf
EN
2854 /*
2855 * Added file on the other side identical to
2856 * the file being renamed: clean merge.
2857 * Also, there is no need to overwrite the
2858 * file already in the working copy, so call
2859 * update_file_flags() instead of
2860 * update_file().
2861 */
259ccb6c 2862 if (update_file_flags(opt,
8daec1df 2863 ren1->pair->two,
75456f96
JS
2864 ren1_dst,
2865 1, /* update_cache */
2866 0 /* update_wd */))
2867 clean_merge = -1;
14228447 2868 } else if (!oideq(&dst_other.oid, null_oid())) {
7f867165
EN
2869 /*
2870 * Probably not a clean merge, but it's
2871 * premature to set clean_merge to 0 here,
2872 * because if the rename merges cleanly and
2873 * the merge exactly matches the newly added
2874 * file, then the merge will be clean.
2875 */
2876 setup_rename_conflict_info(RENAME_ADD,
c336ab85 2877 opt, ren1, NULL);
9047ebbc
MV
2878 } else
2879 try_merge = 1;
2880
75456f96
JS
2881 if (clean_merge < 0)
2882 goto cleanup_and_return;
9047ebbc 2883 if (try_merge) {
e3de888c 2884 struct diff_filespec *o, *a, *b;
9047ebbc
MV
2885 src_other.path = (char *)ren1_src;
2886
e3de888c 2887 o = ren1->pair->one;
9047ebbc
MV
2888 if (a_renames == renames1) {
2889 a = ren1->pair->two;
2890 b = &src_other;
2891 } else {
2892 b = ren1->pair->two;
2893 a = &src_other;
2894 }
e3de888c 2895 update_entry(ren1->dst_entry, o, a, b);
4f66dade 2896 setup_rename_conflict_info(RENAME_NORMAL,
c336ab85 2897 opt, ren1, NULL);
9047ebbc
MV
2898 }
2899 }
2900 }
75456f96 2901cleanup_and_return:
9047ebbc
MV
2902 string_list_clear(&a_by_dst, 0);
2903 string_list_clear(&b_by_dst, 0);
2904
2905 return clean_merge;
2906}
2907
f172589e
EN
2908struct rename_info {
2909 struct string_list *head_renames;
2910 struct string_list *merge_renames;
2911};
2912
7fe40b88
EN
2913static void initial_cleanup_rename(struct diff_queue_struct *pairs,
2914 struct hashmap *dir_renames)
ffc16c49 2915{
7fe40b88
EN
2916 struct hashmap_iter iter;
2917 struct dir_rename_entry *e;
2918
87571c3f 2919 hashmap_for_each_entry(dir_renames, &iter, e,
87571c3f 2920 ent /* member name */) {
7fe40b88
EN
2921 free(e->dir);
2922 strbuf_release(&e->new_dir);
2923 /* possible_new_dirs already cleared in get_directory_renames */
2924 }
6da1a258 2925 hashmap_clear_and_free(dir_renames, struct dir_rename_entry, ent);
7fe40b88
EN
2926 free(dir_renames);
2927
ffc16c49
EN
2928 free(pairs->queue);
2929 free(pairs);
2930}
2931
259ccb6c 2932static int detect_and_process_renames(struct merge_options *opt,
8ebe7b05
EN
2933 struct tree *common,
2934 struct tree *head,
2935 struct tree *merge,
2936 struct string_list *entries,
2937 struct rename_info *ri)
f172589e 2938{
e5257b2a 2939 struct diff_queue_struct *head_pairs, *merge_pairs;
7fe40b88 2940 struct hashmap *dir_re_head, *dir_re_merge;
f6f77559 2941 int clean = 1;
e5257b2a 2942
3992ff0c
EN
2943 ri->head_renames = NULL;
2944 ri->merge_renames = NULL;
2945
259ccb6c 2946 if (!merge_detect_rename(opt))
3992ff0c
EN
2947 return 1;
2948
259ccb6c
EN
2949 head_pairs = get_diffpairs(opt, common, head);
2950 merge_pairs = get_diffpairs(opt, common, merge);
e5257b2a 2951
8e012516
DS
2952 if ((opt->detect_directory_renames == MERGE_DIRECTORY_RENAMES_TRUE) ||
2953 (opt->detect_directory_renames == MERGE_DIRECTORY_RENAMES_CONFLICT &&
5bf7e577 2954 !opt->priv->call_depth)) {
b53c5028
JK
2955 dir_re_head = get_directory_renames(head_pairs);
2956 dir_re_merge = get_directory_renames(merge_pairs);
7fe40b88 2957
259ccb6c 2958 handle_directory_level_conflicts(opt,
5fdddd9b
EN
2959 dir_re_head, head,
2960 dir_re_merge, merge);
2961 } else {
2962 dir_re_head = xmalloc(sizeof(*dir_re_head));
2963 dir_re_merge = xmalloc(sizeof(*dir_re_merge));
2964 dir_rename_init(dir_re_head);
2965 dir_rename_init(dir_re_merge);
2966 }
96e7ffbd 2967
c336ab85 2968 ri->head_renames = get_renames(opt, opt->branch1, head_pairs,
f6f77559
EN
2969 dir_re_merge, dir_re_head, head,
2970 common, head, merge, entries,
2971 &clean);
2972 if (clean < 0)
2973 goto cleanup;
c336ab85 2974 ri->merge_renames = get_renames(opt, opt->branch2, merge_pairs,
f6f77559
EN
2975 dir_re_head, dir_re_merge, merge,
2976 common, head, merge, entries,
2977 &clean);
2978 if (clean < 0)
2979 goto cleanup;
259ccb6c 2980 clean &= process_renames(opt, ri->head_renames, ri->merge_renames);
f6f77559
EN
2981
2982cleanup:
e5257b2a
EN
2983 /*
2984 * Some cleanup is deferred until cleanup_renames() because the
2985 * data structures are still needed and referenced in
2986 * process_entry(). But there are a few things we can free now.
2987 */
7fe40b88
EN
2988 initial_cleanup_rename(head_pairs, dir_re_head);
2989 initial_cleanup_rename(merge_pairs, dir_re_merge);
e5257b2a
EN
2990
2991 return clean;
f172589e
EN
2992}
2993
ffc16c49 2994static void final_cleanup_rename(struct string_list *rename)
f172589e 2995{
9cfee25a
EN
2996 const struct rename *re;
2997 int i;
f172589e 2998
3992ff0c
EN
2999 if (rename == NULL)
3000 return;
3001
9cfee25a
EN
3002 for (i = 0; i < rename->nr; i++) {
3003 re = rename->items[i].util;
3004 diff_free_filepair(re->pair);
3005 }
3006 string_list_clear(rename, 1);
3007 free(rename);
3008}
3009
ffc16c49 3010static void final_cleanup_renames(struct rename_info *re_info)
9cfee25a 3011{
ffc16c49
EN
3012 final_cleanup_rename(re_info->head_renames);
3013 final_cleanup_rename(re_info->merge_renames);
f172589e
EN
3014}
3015
259ccb6c 3016static int read_oid_strbuf(struct merge_options *opt,
d90e759f
EN
3017 const struct object_id *oid,
3018 struct strbuf *dst)
331a1838
EB
3019{
3020 void *buf;
3021 enum object_type type;
3022 unsigned long size;
b4f5aca4 3023 buf = read_object_file(oid, &type, &size);
331a1838 3024 if (!buf)
259ccb6c 3025 return err(opt, _("cannot read object %s"), oid_to_hex(oid));
331a1838
EB
3026 if (type != OBJ_BLOB) {
3027 free(buf);
259ccb6c 3028 return err(opt, _("object %s is not a blob"), oid_to_hex(oid));
331a1838
EB
3029 }
3030 strbuf_attach(dst, buf, size, size + 1);
3031 return 0;
3032}
3033
bc9204d4 3034static int blob_unchanged(struct merge_options *opt,
8daec1df
EN
3035 const struct diff_filespec *o,
3036 const struct diff_filespec *a,
3e7589b7 3037 int renormalize, const char *path)
331a1838 3038{
93a02c55
EN
3039 struct strbuf obuf = STRBUF_INIT;
3040 struct strbuf abuf = STRBUF_INIT;
331a1838 3041 int ret = 0; /* assume changed for safety */
847a9e5d 3042 struct index_state *idx = opt->repo->index;
331a1838 3043
8daec1df 3044 if (a->mode != o->mode)
72fac66b 3045 return 0;
763a59e7 3046 if (oideq(&o->oid, &a->oid))
331a1838 3047 return 1;
3e7589b7 3048 if (!renormalize)
331a1838
EB
3049 return 0;
3050
8daec1df
EN
3051 if (read_oid_strbuf(opt, &o->oid, &obuf) ||
3052 read_oid_strbuf(opt, &a->oid, &abuf))
331a1838
EB
3053 goto error_return;
3054 /*
3055 * Note: binary | is used so that both renormalizations are
3056 * performed. Comparison can be skipped if both files are
3057 * unchanged since their sha1s have already been compared.
3058 */
93a02c55
EN
3059 if (renormalize_buffer(idx, path, obuf.buf, obuf.len, &obuf) |
3060 renormalize_buffer(idx, path, abuf.buf, abuf.len, &abuf))
3061 ret = (obuf.len == abuf.len && !memcmp(obuf.buf, abuf.buf, obuf.len));
331a1838
EB
3062
3063error_return:
93a02c55
EN
3064 strbuf_release(&obuf);
3065 strbuf_release(&abuf);
331a1838
EB
3066 return ret;
3067}
3068
259ccb6c 3069static int handle_modify_delete(struct merge_options *opt,
d90e759f 3070 const char *path,
8daec1df
EN
3071 const struct diff_filespec *o,
3072 const struct diff_filespec *a,
3073 const struct diff_filespec *b)
5e3ce663 3074{
b26d87f2 3075 const char *modify_branch, *delete_branch;
8daec1df 3076 const struct diff_filespec *changed;
b26d87f2 3077
8daec1df 3078 if (is_valid(a)) {
259ccb6c
EN
3079 modify_branch = opt->branch1;
3080 delete_branch = opt->branch2;
8daec1df 3081 changed = a;
b26d87f2 3082 } else {
259ccb6c
EN
3083 modify_branch = opt->branch2;
3084 delete_branch = opt->branch1;
8daec1df 3085 changed = b;
b26d87f2
MM
3086 }
3087
259ccb6c 3088 return handle_change_delete(opt,
b26d87f2 3089 path, NULL,
8daec1df 3090 o, changed,
b26d87f2 3091 modify_branch, delete_branch,
75456f96 3092 _("modify"), _("modified"));
5e3ce663
EN
3093}
3094
e62d1123
EN
3095static int handle_content_merge(struct merge_file_info *mfi,
3096 struct merge_options *opt,
d9573556
EN
3097 const char *path,
3098 int is_dirty,
8daec1df
EN
3099 const struct diff_filespec *o,
3100 const struct diff_filespec *a,
3101 const struct diff_filespec *b,
043622b2 3102 struct rename_conflict_info *ci)
0c4918d1 3103{
55653a68 3104 const char *reason = _("content");
4ab9a157 3105 unsigned df_conflict_remains = 0;
0c4918d1 3106
8daec1df 3107 if (!is_valid(o))
55653a68 3108 reason = _("add/add");
8daec1df
EN
3109
3110 assert(o->path && a->path && b->path);
5bf7e577 3111 if (ci && dir_in_way(opt->repo->index, path, !opt->priv->call_depth,
8daec1df
EN
3112 S_ISGITLINK(ci->ren1->pair->two->mode)))
3113 df_conflict_remains = 1;
3114
3115 if (merge_mode_and_contents(opt, o, a, b, path,
259ccb6c 3116 opt->branch1, opt->branch2,
5bf7e577 3117 opt->priv->call_depth * 2, mfi))
3c8a51e8 3118 return -1;
4ab9a157 3119
1de70dbd
EN
3120 /*
3121 * We can skip updating the working tree file iff:
3122 * a) The merge is clean
3123 * b) The merge matches what was in HEAD (content, mode, pathname)
3124 * c) The target path is usable (i.e. not involved in D/F conflict)
3125 */
e62d1123 3126 if (mfi->clean && was_tracked_and_matches(opt, path, &mfi->blob) &&
1de70dbd 3127 !df_conflict_remains) {
2b75fb60
EN
3128 int pos;
3129 struct cache_entry *ce;
3130
259ccb6c 3131 output(opt, 3, _("Skipped %s (merged same as existing)"), path);
e62d1123 3132 if (add_cacheinfo(opt, &mfi->blob, path,
5bf7e577 3133 0, (!opt->priv->call_depth && !is_dirty), 0))
1de70dbd 3134 return -1;
2b75fb60
EN
3135 /*
3136 * However, add_cacheinfo() will delete the old cache entry
3137 * and add a new one. We need to copy over any skip_worktree
3138 * flag to avoid making the file appear as if it were
3139 * deleted by the user.
3140 */
5bf7e577
EN
3141 pos = index_name_pos(&opt->priv->orig_index, path, strlen(path));
3142 ce = opt->priv->orig_index.cache[pos];
2b75fb60 3143 if (ce_skip_worktree(ce)) {
259ccb6c
EN
3144 pos = index_name_pos(opt->repo->index, path, strlen(path));
3145 ce = opt->repo->index->cache[pos];
2b75fb60
EN
3146 ce->ce_flags |= CE_SKIP_WORKTREE;
3147 }
e62d1123 3148 return mfi->clean;
05cf21eb 3149 }
0c4918d1 3150
e62d1123
EN
3151 if (!mfi->clean) {
3152 if (S_ISGITLINK(mfi->blob.mode))
55653a68 3153 reason = _("submodule");
259ccb6c 3154 output(opt, 1, _("CONFLICT (%s): Merge conflict in %s"),
0c4918d1 3155 reason, path);
043622b2 3156 if (ci && !df_conflict_remains)
8daec1df 3157 if (update_stages(opt, path, o, a, b))
75456f96 3158 return -1;
0c4918d1
EN
3159 }
3160
bd42380e 3161 if (df_conflict_remains || is_dirty) {
3d6b8e88 3162 char *new_path;
5bf7e577 3163 if (opt->priv->call_depth) {
259ccb6c 3164 remove_file_from_index(opt->repo->index, path);
51931bf0 3165 } else {
e62d1123 3166 if (!mfi->clean) {
8daec1df 3167 if (update_stages(opt, path, o, a, b))
75456f96
JS
3168 return -1;
3169 } else {
259ccb6c 3170 int file_from_stage2 = was_tracked(opt, path);
51931bf0 3171
259ccb6c 3172 if (update_stages(opt, path, NULL,
e62d1123
EN
3173 file_from_stage2 ? &mfi->blob : NULL,
3174 file_from_stage2 ? NULL : &mfi->blob))
75456f96 3175 return -1;
51931bf0
EN
3176 }
3177
3178 }
c336ab85 3179 new_path = unique_path(opt, path, ci->ren1->branch);
bd42380e 3180 if (is_dirty) {
259ccb6c 3181 output(opt, 1, _("Refusing to lose dirty file at %s"),
bd42380e
EN
3182 path);
3183 }
259ccb6c 3184 output(opt, 1, _("Adding as %s instead"), new_path);
e62d1123 3185 if (update_file(opt, 0, &mfi->blob, new_path)) {
75456f96
JS
3186 free(new_path);
3187 return -1;
3188 }
3d6b8e88 3189 free(new_path);
e62d1123
EN
3190 mfi->clean = 0;
3191 } else if (update_file(opt, mfi->clean, &mfi->blob, path))
75456f96 3192 return -1;
e62d1123 3193 return !is_dirty && mfi->clean;
0c4918d1
EN
3194}
3195
259ccb6c 3196static int handle_rename_normal(struct merge_options *opt,
8ebe7b05 3197 const char *path,
8daec1df
EN
3198 const struct diff_filespec *o,
3199 const struct diff_filespec *a,
3200 const struct diff_filespec *b,
8ebe7b05 3201 struct rename_conflict_info *ci)
64b1abe9 3202{
8c8e5bd6 3203 struct rename *ren = ci->ren1;
e62d1123 3204 struct merge_file_info mfi;
8c8e5bd6 3205 int clean;
8c8e5bd6 3206
64b1abe9 3207 /* Merge the content and write it out */
8c8e5bd6
EN
3208 clean = handle_content_merge(&mfi, opt, path, was_dirty(opt, path),
3209 o, a, b, ci);
3210
8e012516
DS
3211 if (clean &&
3212 opt->detect_directory_renames == MERGE_DIRECTORY_RENAMES_CONFLICT &&
8c8e5bd6
EN
3213 ren->dir_rename_original_dest) {
3214 if (update_stages(opt, path,
3585d0ea 3215 &mfi.blob, &mfi.blob, &mfi.blob))
8c8e5bd6
EN
3216 return -1;
3217 clean = 0; /* not clean, but conflicted */
3218 }
3219 return clean;
3220}
3221
3222static void dir_rename_warning(const char *msg,
3223 int is_add,
3224 int clean,
3225 struct merge_options *opt,
3226 struct rename *ren)
3227{
3228 const char *other_branch;
3229 other_branch = (ren->branch == opt->branch1 ?
3230 opt->branch2 : opt->branch1);
3231 if (is_add) {
3232 output(opt, clean ? 2 : 1, msg,
3233 ren->pair->one->path, ren->branch,
3234 other_branch, ren->pair->two->path);
3235 return;
3236 }
3237 output(opt, clean ? 2 : 1, msg,
3238 ren->pair->one->path, ren->dir_rename_original_dest, ren->branch,
3239 other_branch, ren->pair->two->path);
3240}
3241static int warn_about_dir_renamed_entries(struct merge_options *opt,
3242 struct rename *ren)
3243{
3244 const char *msg;
3245 int clean = 1, is_add;
3246
3247 if (!ren)
3248 return clean;
3249
3250 /* Return early if ren was not affected/created by a directory rename */
3251 if (!ren->dir_rename_original_dest)
3252 return clean;
3253
3254 /* Sanity checks */
8e012516 3255 assert(opt->detect_directory_renames > MERGE_DIRECTORY_RENAMES_NONE);
8c8e5bd6
EN
3256 assert(ren->dir_rename_original_type == 'A' ||
3257 ren->dir_rename_original_type == 'R');
3258
3259 /* Check whether to treat directory renames as a conflict */
8e012516 3260 clean = (opt->detect_directory_renames == MERGE_DIRECTORY_RENAMES_TRUE);
8c8e5bd6
EN
3261
3262 is_add = (ren->dir_rename_original_type == 'A');
3263 if (ren->dir_rename_original_type == 'A' && clean) {
3264 msg = _("Path updated: %s added in %s inside a "
3265 "directory that was renamed in %s; moving it to %s.");
3266 } else if (ren->dir_rename_original_type == 'A' && !clean) {
3267 msg = _("CONFLICT (file location): %s added in %s "
3268 "inside a directory that was renamed in %s, "
3269 "suggesting it should perhaps be moved to %s.");
3270 } else if (ren->dir_rename_original_type == 'R' && clean) {
3271 msg = _("Path updated: %s renamed to %s in %s, inside a "
3272 "directory that was renamed in %s; moving it to %s.");
3273 } else if (ren->dir_rename_original_type == 'R' && !clean) {
3274 msg = _("CONFLICT (file location): %s renamed to %s in %s, "
3275 "inside a directory that was renamed in %s, "
3276 "suggesting it should perhaps be moved to %s.");
3277 } else {
3278 BUG("Impossible dir_rename_original_type/clean combination");
3279 }
3280 dir_rename_warning(msg, is_add, clean, opt, ren);
3281
3282 return clean;
0c4918d1
EN
3283}
3284
9047ebbc 3285/* Per entry merge function */
259ccb6c 3286static int process_entry(struct merge_options *opt,
8a2fce18 3287 const char *path, struct stage_data *entry)
9047ebbc 3288{
9047ebbc 3289 int clean_merge = 1;
259ccb6c 3290 int normalize = opt->renormalize;
8daec1df
EN
3291
3292 struct diff_filespec *o = &entry->stages[1];
3293 struct diff_filespec *a = &entry->stages[2];
3294 struct diff_filespec *b = &entry->stages[3];
3295 int o_valid = is_valid(o);
3296 int a_valid = is_valid(a);
3297 int b_valid = is_valid(b);
3298 o->path = a->path = b->path = (char*)path;
9047ebbc 3299
37348937 3300 entry->processed = 1;
4f66dade 3301 if (entry->rename_conflict_info) {
043622b2 3302 struct rename_conflict_info *ci = entry->rename_conflict_info;
8daec1df 3303 struct diff_filespec *temp;
8c8e5bd6
EN
3304 int path_clean;
3305
3306 path_clean = warn_about_dir_renamed_entries(opt, ci->ren1);
3307 path_clean &= warn_about_dir_renamed_entries(opt, ci->ren2);
8daec1df
EN
3308
3309 /*
3310 * For cases with a single rename, {o,a,b}->path have all been
3311 * set to the rename target path; we need to set two of these
3312 * back to the rename source.
3313 * For rename/rename conflicts, we'll manually fix paths below.
3314 */
3315 temp = (opt->branch1 == ci->ren1->branch) ? b : a;
3316 o->path = temp->path = ci->ren1->pair->one->path;
3317 if (ci->ren2) {
3318 assert(opt->branch1 == ci->ren1->branch);
3319 }
3320
043622b2 3321 switch (ci->rename_type) {
882fd11a 3322 case RENAME_NORMAL:
4f66dade 3323 case RENAME_ONE_FILE_TO_ONE:
8daec1df 3324 clean_merge = handle_rename_normal(opt, path, o, a, b,
043622b2 3325 ci);
882fd11a 3326 break;
5455c338 3327 case RENAME_VIA_DIR:
8c8e5bd6 3328 clean_merge = handle_rename_via_dir(opt, ci);
882fd11a 3329 break;
7f867165
EN
3330 case RENAME_ADD:
3331 /*
3332 * Probably unclean merge, but if the renamed file
3333 * merges cleanly and the result can then be
3334 * two-way merged cleanly with the added file, I
3335 * guess it's a clean merge?
3336 */
043622b2 3337 clean_merge = handle_rename_add(opt, ci);
7f867165 3338 break;
3b130adf
EN
3339 case RENAME_DELETE:
3340 clean_merge = 0;
e2d563df 3341 if (handle_rename_delete(opt, ci))
75456f96 3342 clean_merge = -1;
3b130adf 3343 break;
07413c5a 3344 case RENAME_ONE_FILE_TO_TWO:
8daec1df
EN
3345 /*
3346 * Manually fix up paths; note:
3347 * ren[12]->pair->one->path are equal.
3348 */
3349 o->path = ci->ren1->pair->one->path;
3350 a->path = ci->ren1->pair->two->path;
3351 b->path = ci->ren2->pair->two->path;
3352
07413c5a 3353 clean_merge = 0;
043622b2 3354 if (handle_rename_rename_1to2(opt, ci))
75456f96 3355 clean_merge = -1;
07413c5a 3356 break;
461f5041 3357 case RENAME_TWO_FILES_TO_ONE:
8daec1df
EN
3358 /*
3359 * Manually fix up paths; note,
3360 * ren[12]->pair->two->path are actually equal.
3361 */
3362 o->path = NULL;
3363 a->path = ci->ren1->pair->two->path;
3364 b->path = ci->ren2->pair->two->path;
3365
bbafc9c4
EN
3366 /*
3367 * Probably unclean merge, but if the two renamed
3368 * files merge cleanly and the two resulting files
3369 * can then be two-way merged cleanly, I guess it's
3370 * a clean merge?
3371 */
043622b2 3372 clean_merge = handle_rename_rename_2to1(opt, ci);
07413c5a
EN
3373 break;
3374 default:
3375 entry->processed = 0;
3376 break;
3377 }
8c8e5bd6
EN
3378 if (path_clean < clean_merge)
3379 clean_merge = path_clean;
8daec1df 3380 } else if (o_valid && (!a_valid || !b_valid)) {
edd2faf5 3381 /* Case A: Deleted in one */
8daec1df
EN
3382 if ((!a_valid && !b_valid) ||
3383 (!b_valid && blob_unchanged(opt, o, a, normalize, path)) ||
3384 (!a_valid && blob_unchanged(opt, o, b, normalize, path))) {
edd2faf5
EN
3385 /* Deleted in both or deleted in one and
3386 * unchanged in the other */
8daec1df 3387 if (a_valid)
259ccb6c 3388 output(opt, 2, _("Removing %s"), path);
edd2faf5 3389 /* do not touch working file if it did not exist */
8daec1df 3390 remove_file(opt, 1, path, !a_valid);
edd2faf5
EN
3391 } else {
3392 /* Modify/delete; deleted side may have put a directory in the way */
edd2faf5 3393 clean_merge = 0;
8daec1df 3394 if (handle_modify_delete(opt, path, o, a, b))
75456f96 3395 clean_merge = -1;
3d6b8e88 3396 }
8daec1df
EN
3397 } else if ((!o_valid && a_valid && !b_valid) ||
3398 (!o_valid && !a_valid && b_valid)) {
edd2faf5
EN
3399 /* Case B: Added in one. */
3400 /* [nothing|directory] -> ([nothing|directory], file) */
3401
9c0bbb50
EN
3402 const char *add_branch;
3403 const char *other_branch;
9c0bbb50 3404 const char *conf;
8daec1df 3405 const struct diff_filespec *contents;
37348937 3406
8daec1df 3407 if (a_valid) {
259ccb6c
EN
3408 add_branch = opt->branch1;
3409 other_branch = opt->branch2;
8daec1df 3410 contents = a;
55653a68 3411 conf = _("file/directory");
9c0bbb50 3412 } else {
259ccb6c
EN
3413 add_branch = opt->branch2;
3414 other_branch = opt->branch1;
8daec1df 3415 contents = b;
55653a68 3416 conf = _("directory/file");
9c0bbb50 3417 }
259ccb6c 3418 if (dir_in_way(opt->repo->index, path,
5bf7e577 3419 !opt->priv->call_depth && !S_ISGITLINK(a->mode),
c641ca67 3420 0)) {
259ccb6c 3421 char *new_path = unique_path(opt, path, add_branch);
9c0bbb50 3422 clean_merge = 0;
259ccb6c 3423 output(opt, 1, _("CONFLICT (%s): There is a directory with name %s in %s. "
55653a68 3424 "Adding %s as %s"),
9c0bbb50 3425 conf, path, other_branch, path, new_path);
8daec1df 3426 if (update_file(opt, 0, contents, new_path))
75456f96 3427 clean_merge = -1;
5bf7e577 3428 else if (opt->priv->call_depth)
259ccb6c 3429 remove_file_from_index(opt->repo->index, path);
3d6b8e88 3430 free(new_path);
9c0bbb50 3431 } else {
259ccb6c 3432 output(opt, 2, _("Adding %s"), path);
35a74abf 3433 /* do not overwrite file if already present */
8daec1df 3434 if (update_file_flags(opt, contents, path, 1, !a_valid))
75456f96 3435 clean_merge = -1;
9c0bbb50 3436 }
8daec1df
EN
3437 } else if (a_valid && b_valid) {
3438 if (!o_valid) {
dcf28150 3439 /* Case C: Added in both (check for same permissions) */
259ccb6c 3440 output(opt, 1,
dcf28150
EN
3441 _("CONFLICT (add/add): Merge conflict in %s"),
3442 path);
259ccb6c 3443 clean_merge = handle_file_collision(opt,
dcf28150 3444 path, NULL, NULL,
259ccb6c
EN
3445 opt->branch1,
3446 opt->branch2,
8daec1df 3447 a, b);
dcf28150
EN
3448 } else {
3449 /* case D: Modified in both, but differently. */
e62d1123 3450 struct merge_file_info mfi;
dcf28150 3451 int is_dirty = 0; /* unpack_trees would have bailed if dirty */
e62d1123 3452 clean_merge = handle_content_merge(&mfi, opt, path,
dcf28150 3453 is_dirty,
8daec1df 3454 o, a, b, NULL);
dcf28150 3455 }
8daec1df 3456 } else if (!o_valid && !a_valid && !b_valid) {
edd2faf5
EN
3457 /*
3458 * this entry was deleted altogether. a_mode == 0 means
3459 * we had that path and want to actively remove it.
3460 */
8daec1df 3461 remove_file(opt, 1, path, !a->mode);
edd2faf5 3462 } else
033abf97 3463 BUG("fatal merge failure, shouldn't happen.");
37348937
EN
3464
3465 return clean_merge;
3466}
3467
98a1d3d8
EN
3468static int merge_trees_internal(struct merge_options *opt,
3469 struct tree *head,
3470 struct tree *merge,
ff1bfa2c 3471 struct tree *merge_base,
98a1d3d8 3472 struct tree **result)
9047ebbc 3473{
259ccb6c 3474 struct index_state *istate = opt->repo->index;
9047ebbc
MV
3475 int code, clean;
3476
259ccb6c 3477 if (opt->subtree_shift) {
ff1bfa2c
EN
3478 merge = shift_tree_object(opt->repo, head, merge,
3479 opt->subtree_shift);
3480 merge_base = shift_tree_object(opt->repo, head, merge_base,
3481 opt->subtree_shift);
9047ebbc
MV
3482 }
3483
763a59e7 3484 if (oideq(&merge_base->object.oid, &merge->object.oid)) {
80cde95e 3485 output(opt, 0, _("Already up to date."));
9047ebbc
MV
3486 *result = head;
3487 return 1;
3488 }
3489
ff1bfa2c 3490 code = unpack_trees_start(opt, merge_base, head, merge);
9047ebbc 3491
fadd069d 3492 if (code != 0) {
5bf7e577 3493 if (show(opt, 4) || opt->priv->call_depth)
259ccb6c 3494 err(opt, _("merging of trees %s and %s failed"),
f2fd0760 3495 oid_to_hex(&head->object.oid),
3496 oid_to_hex(&merge->object.oid));
259ccb6c 3497 unpack_trees_finish(opt);
6003303a 3498 return -1;
fadd069d 3499 }
9047ebbc 3500
0d6caa2d 3501 if (unmerged_index(istate)) {
f172589e
EN
3502 struct string_list *entries;
3503 struct rename_info re_info;
9047ebbc 3504 int i;
fc65b00d
KW
3505 /*
3506 * Only need the hashmap while processing entries, so
3507 * initialize it here and free it when we are done running
3508 * through the entries. Keeping it in the merge_options as
3509 * opposed to decaring a local hashmap is for convenience
3510 * so that we don't have to pass it to around.
3511 */
5bf7e577 3512 hashmap_init(&opt->priv->current_file_dir_set, path_hashmap_cmp,
4d7101e2 3513 NULL, 512);
259ccb6c
EN
3514 get_files_dirs(opt, head);
3515 get_files_dirs(opt, merge);
9047ebbc 3516
259ccb6c 3517 entries = get_unmerged(opt->repo->index);
ff1bfa2c 3518 clean = detect_and_process_renames(opt, merge_base, head, merge,
8ebe7b05 3519 entries, &re_info);
259ccb6c 3520 record_df_conflict_files(opt, entries);
75456f96 3521 if (clean < 0)
e336bdc5 3522 goto cleanup;
edd2faf5 3523 for (i = entries->nr-1; 0 <= i; i--) {
9047ebbc
MV
3524 const char *path = entries->items[i].string;
3525 struct stage_data *e = entries->items[i].util;
75456f96 3526 if (!e->processed) {
259ccb6c 3527 int ret = process_entry(opt, path, e);
75456f96
JS
3528 if (!ret)
3529 clean = 0;
e336bdc5
KW
3530 else if (ret < 0) {
3531 clean = ret;
3532 goto cleanup;
3533 }
75456f96 3534 }
9047ebbc 3535 }
7edba4c4
JH
3536 for (i = 0; i < entries->nr; i++) {
3537 struct stage_data *e = entries->items[i].util;
3538 if (!e->processed)
033abf97 3539 BUG("unprocessed path??? %s",
7edba4c4
JH
3540 entries->items[i].string);
3541 }
9047ebbc 3542
93665365 3543 cleanup:
ffc16c49 3544 final_cleanup_renames(&re_info);
f172589e 3545
9047ebbc 3546 string_list_clear(entries, 1);
f172589e 3547 free(entries);
9047ebbc 3548
6da1a258 3549 hashmap_clear_and_free(&opt->priv->current_file_dir_set,
c8e424c9 3550 struct path_hashmap_entry, e);
fc65b00d 3551
3f1c1c36 3552 if (clean < 0) {
259ccb6c 3553 unpack_trees_finish(opt);
e336bdc5 3554 return clean;
3f1c1c36 3555 }
9047ebbc
MV
3556 }
3557 else
3558 clean = 1;
3559
259ccb6c 3560 unpack_trees_finish(opt);
a35edc84 3561
5bf7e577 3562 if (opt->priv->call_depth &&
724dd767 3563 !(*result = write_in_core_index_as_tree(opt->repo)))
fbc87eb5 3564 return -1;
9047ebbc
MV
3565
3566 return clean;
3567}
3568
9047ebbc 3569/*
56e74342
EN
3570 * Merge the commits h1 and h2, returning a flag (int) indicating the
3571 * cleanness of the merge. Also, if opt->priv->call_depth, create a
3572 * virtual commit and write its location to *result.
9047ebbc 3573 */
98a1d3d8
EN
3574static int merge_recursive_internal(struct merge_options *opt,
3575 struct commit *h1,
3576 struct commit *h2,
ff1bfa2c 3577 struct commit_list *merge_bases,
98a1d3d8 3578 struct commit **result)
9047ebbc
MV
3579{
3580 struct commit_list *iter;
ff1bfa2c 3581 struct commit *merged_merge_bases;
bab56877 3582 struct tree *result_tree;
9047ebbc 3583 int clean;
743474cb
EN
3584 const char *ancestor_name;
3585 struct strbuf merge_base_abbrev = STRBUF_INIT;
9047ebbc 3586
259ccb6c
EN
3587 if (show(opt, 4)) {
3588 output(opt, 4, _("Merging:"));
3589 output_commit_title(opt, h1);
3590 output_commit_title(opt, h2);
9047ebbc
MV
3591 }
3592
ff1bfa2c
EN
3593 if (!merge_bases) {
3594 merge_bases = get_merge_bases(h1, h2);
3595 merge_bases = reverse_commit_list(merge_bases);
9047ebbc
MV
3596 }
3597
259ccb6c 3598 if (show(opt, 5)) {
ff1bfa2c 3599 unsigned cnt = commit_list_count(merge_bases);
e0453cd8 3600
259ccb6c 3601 output(opt, 5, Q_("found %u common ancestor:",
e0453cd8 3602 "found %u common ancestors:", cnt), cnt);
ff1bfa2c 3603 for (iter = merge_bases; iter; iter = iter->next)
259ccb6c 3604 output_commit_title(opt, iter->item);
9047ebbc
MV
3605 }
3606
ff1bfa2c
EN
3607 merged_merge_bases = pop_commit(&merge_bases);
3608 if (merged_merge_bases == NULL) {
03f622c8
JN
3609 /* if there is no common ancestor, use an empty tree */
3610 struct tree *tree;
9047ebbc 3611
259ccb6c 3612 tree = lookup_tree(opt->repo, opt->repo->hash_algo->empty_tree);
ff1bfa2c
EN
3613 merged_merge_bases = make_virtual_commit(opt->repo, tree,
3614 "ancestor");
743474cb 3615 ancestor_name = "empty tree";
b6570477 3616 } else if (opt->ancestor && !opt->priv->call_depth) {
8e4ec337 3617 ancestor_name = opt->ancestor;
ff1bfa2c 3618 } else if (merge_bases) {
743474cb
EN
3619 ancestor_name = "merged common ancestors";
3620 } else {
3621 strbuf_add_unique_abbrev(&merge_base_abbrev,
ff1bfa2c 3622 &merged_merge_bases->object.oid,
743474cb
EN
3623 DEFAULT_ABBREV);
3624 ancestor_name = merge_base_abbrev.buf;
9047ebbc
MV
3625 }
3626
ff1bfa2c 3627 for (iter = merge_bases; iter; iter = iter->next) {
8a2fce18 3628 const char *saved_b1, *saved_b2;
5bf7e577 3629 opt->priv->call_depth++;
9047ebbc
MV
3630 /*
3631 * When the merge fails, the result contains files
3632 * with conflict markers. The cleanness flag is
de8946de
JS
3633 * ignored (unless indicating an error), it was never
3634 * actually used, as result of merge_trees has always
3635 * overwritten it: the committed "conflicts" were
3636 * already resolved.
9047ebbc 3637 */
259ccb6c
EN
3638 discard_index(opt->repo->index);
3639 saved_b1 = opt->branch1;
3640 saved_b2 = opt->branch2;
3641 opt->branch1 = "Temporary merge branch 1";
3642 opt->branch2 = "Temporary merge branch 2";
ff1bfa2c
EN
3643 if (merge_recursive_internal(opt, merged_merge_bases, iter->item,
3644 NULL, &merged_merge_bases) < 0)
de8946de 3645 return -1;
259ccb6c
EN
3646 opt->branch1 = saved_b1;
3647 opt->branch2 = saved_b2;
5bf7e577 3648 opt->priv->call_depth--;
9047ebbc 3649
ff1bfa2c 3650 if (!merged_merge_bases)
259ccb6c 3651 return err(opt, _("merge returned no commit"));
9047ebbc
MV
3652 }
3653
816147e7
EN
3654 /*
3655 * FIXME: Since merge_recursive_internal() is only ever called by
3656 * places that ensure the index is loaded first
3657 * (e.g. builtin/merge.c, rebase/sequencer, etc.), in the common
3658 * case where the merge base was unique that means when we get here
3659 * we immediately discard the index and re-read it, which is a
3660 * complete waste of time. We should only be discarding and
3661 * re-reading if we were forced to recurse.
3662 */
259ccb6c 3663 discard_index(opt->repo->index);
5bf7e577 3664 if (!opt->priv->call_depth)
259ccb6c 3665 repo_read_index(opt->repo);
9047ebbc 3666
743474cb 3667 opt->ancestor = ancestor_name;
98a1d3d8
EN
3668 clean = merge_trees_internal(opt,
3669 repo_get_commit_tree(opt->repo, h1),
3670 repo_get_commit_tree(opt->repo, h2),
3671 repo_get_commit_tree(opt->repo,
ff1bfa2c 3672 merged_merge_bases),
bab56877 3673 &result_tree);
743474cb 3674 strbuf_release(&merge_base_abbrev);
b6570477 3675 opt->ancestor = NULL; /* avoid accidental re-use of opt->ancestor */
6999bc70 3676 if (clean < 0) {
259ccb6c 3677 flush_output(opt);
de8946de 3678 return clean;
6999bc70 3679 }
9047ebbc 3680
5bf7e577 3681 if (opt->priv->call_depth) {
bab56877
EN
3682 *result = make_virtual_commit(opt->repo, result_tree,
3683 "merged tree");
9047ebbc
MV
3684 commit_list_insert(h1, &(*result)->parents);
3685 commit_list_insert(h2, &(*result)->parents->next);
3686 }
9047ebbc
MV
3687 return clean;
3688}
3689
98a1d3d8
EN
3690static int merge_start(struct merge_options *opt, struct tree *head)
3691{
3692 struct strbuf sb = STRBUF_INIT;
3693
45ef16f7
EN
3694 /* Sanity checks on opt */
3695 assert(opt->repo);
3696
3697 assert(opt->branch1 && opt->branch2);
3698
3699 assert(opt->detect_renames >= -1 &&
3700 opt->detect_renames <= DIFF_DETECT_COPY);
3701 assert(opt->detect_directory_renames >= MERGE_DIRECTORY_RENAMES_NONE &&
3702 opt->detect_directory_renames <= MERGE_DIRECTORY_RENAMES_TRUE);
3703 assert(opt->rename_limit >= -1);
3704 assert(opt->rename_score >= 0 && opt->rename_score <= MAX_SCORE);
3705 assert(opt->show_rename_progress >= 0 && opt->show_rename_progress <= 1);
3706
3707 assert(opt->xdl_opts >= 0);
3708 assert(opt->recursive_variant >= MERGE_VARIANT_NORMAL &&
3709 opt->recursive_variant <= MERGE_VARIANT_THEIRS);
3710
3711 assert(opt->verbosity >= 0 && opt->verbosity <= 5);
3712 assert(opt->buffer_output <= 2);
3713 assert(opt->obuf.len == 0);
3714
3715 assert(opt->priv == NULL);
3716
6054d1aa
EN
3717 /* Not supported; option specific to merge-ort */
3718 assert(!opt->record_conflict_msgs_as_headers);
3719 assert(!opt->msg_header_prefix);
3720
45ef16f7 3721 /* Sanity check on repo state; index must match head */
98a1d3d8
EN
3722 if (repo_index_has_changes(opt->repo, head, &sb)) {
3723 err(opt, _("Your local changes to the following files would be overwritten by merge:\n %s"),
3724 sb.buf);
3725 strbuf_release(&sb);
3726 return -1;
3727 }
3728
ca56dadb 3729 CALLOC_ARRAY(opt->priv, 1);
bc40dfb1 3730 string_list_init_dup(&opt->priv->df_conflict_file_set);
98a1d3d8
EN
3731 return 0;
3732}
3733
3734static void merge_finalize(struct merge_options *opt)
3735{
259ccb6c 3736 flush_output(opt);
5bf7e577 3737 if (!opt->priv->call_depth && opt->buffer_output < 2)
259ccb6c
EN
3738 strbuf_release(&opt->obuf);
3739 if (show(opt, 2))
f31027c9 3740 diff_warn_rename_limit("merge.renamelimit",
5bf7e577
EN
3741 opt->priv->needed_rename_limit, 0);
3742 FREE_AND_NULL(opt->priv);
98a1d3d8
EN
3743}
3744
3745int merge_trees(struct merge_options *opt,
3746 struct tree *head,
3747 struct tree *merge,
ff1bfa2c 3748 struct tree *merge_base)
98a1d3d8
EN
3749{
3750 int clean;
b4db8a2b 3751 struct tree *ignored;
98a1d3d8
EN
3752
3753 assert(opt->ancestor != NULL);
3754
3755 if (merge_start(opt, head))
3756 return -1;
ff1bfa2c 3757 clean = merge_trees_internal(opt, head, merge, merge_base, &ignored);
98a1d3d8
EN
3758 merge_finalize(opt);
3759
3760 return clean;
3761}
3762
3763int merge_recursive(struct merge_options *opt,
3764 struct commit *h1,
3765 struct commit *h2,
ff1bfa2c 3766 struct commit_list *merge_bases,
98a1d3d8
EN
3767 struct commit **result)
3768{
3769 int clean;
3770
8e4ec337
EN
3771 assert(opt->ancestor == NULL ||
3772 !strcmp(opt->ancestor, "constructed merge base"));
98a1d3d8 3773
a3380639
DS
3774 prepare_repo_settings(opt->repo);
3775 opt->repo->settings.command_requires_full_index = 1;
3776
98a1d3d8
EN
3777 if (merge_start(opt, repo_get_commit_tree(opt->repo, h1)))
3778 return -1;
ff1bfa2c 3779 clean = merge_recursive_internal(opt, h1, h2, merge_bases, result);
98a1d3d8
EN
3780 merge_finalize(opt);
3781
9047ebbc
MV
3782 return clean;
3783}
3784
4d7101e2
EN
3785static struct commit *get_ref(struct repository *repo,
3786 const struct object_id *oid,
d7cf3a96 3787 const char *name)
73118f89
SB
3788{
3789 struct object *object;
3790
d7cf3a96
NTND
3791 object = deref_tag(repo, parse_object(repo, oid),
3792 name, strlen(name));
73118f89
SB
3793 if (!object)
3794 return NULL;
3795 if (object->type == OBJ_TREE)
d7cf3a96 3796 return make_virtual_commit(repo, (struct tree*)object, name);
73118f89
SB
3797 if (object->type != OBJ_COMMIT)
3798 return NULL;
3799 if (parse_commit((struct commit *)object))
3800 return NULL;
3801 return (struct commit *)object;
3802}
3803
259ccb6c 3804int merge_recursive_generic(struct merge_options *opt,
4e8161a8 3805 const struct object_id *head,
3806 const struct object_id *merge,
ff1bfa2c
EN
3807 int num_merge_bases,
3808 const struct object_id **merge_bases,
8a2fce18 3809 struct commit **result)
73118f89 3810{
03b86647 3811 int clean;
837e34eb 3812 struct lock_file lock = LOCK_INIT;
259ccb6c
EN
3813 struct commit *head_commit = get_ref(opt->repo, head, opt->branch1);
3814 struct commit *next_commit = get_ref(opt->repo, merge, opt->branch2);
73118f89
SB
3815 struct commit_list *ca = NULL;
3816
ff1bfa2c 3817 if (merge_bases) {
73118f89 3818 int i;
ff1bfa2c 3819 for (i = 0; i < num_merge_bases; ++i) {
73118f89 3820 struct commit *base;
ff1bfa2c
EN
3821 if (!(base = get_ref(opt->repo, merge_bases[i],
3822 oid_to_hex(merge_bases[i]))))
259ccb6c 3823 return err(opt, _("Could not parse object '%s'"),
ff1bfa2c 3824 oid_to_hex(merge_bases[i]));
73118f89
SB
3825 commit_list_insert(base, &ca);
3826 }
8e4ec337
EN
3827 if (num_merge_bases == 1)
3828 opt->ancestor = "constructed merge base";
73118f89
SB
3829 }
3830
259ccb6c
EN
3831 repo_hold_locked_index(opt->repo, &lock, LOCK_DIE_ON_ERROR);
3832 clean = merge_recursive(opt, head_commit, next_commit, ca,
d90e759f 3833 result);
51d3f43d
3834 if (clean < 0) {
3835 rollback_lock_file(&lock);
de8946de 3836 return clean;
51d3f43d 3837 }
de8946de 3838
259ccb6c 3839 if (write_locked_index(opt->repo->index, &lock,
61000814 3840 COMMIT_LOCK | SKIP_IF_UNCHANGED))
259ccb6c 3841 return err(opt, _("Unable to write index."));
73118f89
SB
3842
3843 return clean ? 0 : 1;
3844}
3845
259ccb6c 3846static void merge_recursive_config(struct merge_options *opt)
9047ebbc 3847{
85b46030 3848 char *value = NULL;
8d552258 3849 int renormalize = 0;
259ccb6c 3850 git_config_get_int("merge.verbosity", &opt->verbosity);
8599ab45
EN
3851 git_config_get_int("diff.renamelimit", &opt->rename_limit);
3852 git_config_get_int("merge.renamelimit", &opt->rename_limit);
8d552258
EN
3853 git_config_get_bool("merge.renormalize", &renormalize);
3854 opt->renormalize = renormalize;
85b46030 3855 if (!git_config_get_string("diff.renames", &value)) {
8599ab45 3856 opt->detect_renames = git_config_rename("diff.renames", value);
85b46030
BP
3857 free(value);
3858 }
3859 if (!git_config_get_string("merge.renames", &value)) {
8599ab45 3860 opt->detect_renames = git_config_rename("merge.renames", value);
85b46030
BP
3861 free(value);
3862 }
8c8e5bd6
EN
3863 if (!git_config_get_string("merge.directoryrenames", &value)) {
3864 int boolval = git_parse_maybe_bool(value);
3865 if (0 <= boolval) {
8e012516
DS
3866 opt->detect_directory_renames = boolval ?
3867 MERGE_DIRECTORY_RENAMES_TRUE :
3868 MERGE_DIRECTORY_RENAMES_NONE;
8c8e5bd6 3869 } else if (!strcasecmp(value, "conflict")) {
8e012516
DS
3870 opt->detect_directory_renames =
3871 MERGE_DIRECTORY_RENAMES_CONFLICT;
8c8e5bd6 3872 } /* avoid erroring on values from future versions of git */
85b46030
BP
3873 free(value);
3874 }
0e7bcb1b 3875 git_config(git_xmerge_config, NULL);
9047ebbc
MV
3876}
3877
259ccb6c 3878void init_merge_options(struct merge_options *opt,
0d6caa2d 3879 struct repository *repo)
9047ebbc 3880{
80486220 3881 const char *merge_verbosity;
259ccb6c 3882 memset(opt, 0, sizeof(struct merge_options));
a779fb82 3883
259ccb6c 3884 opt->repo = repo;
a779fb82
EN
3885
3886 opt->detect_renames = -1;
3887 opt->detect_directory_renames = MERGE_DIRECTORY_RENAMES_CONFLICT;
3888 opt->rename_limit = -1;
3889
259ccb6c
EN
3890 opt->verbosity = 2;
3891 opt->buffer_output = 1;
a779fb82
EN
3892 strbuf_init(&opt->obuf, 0);
3893
259ccb6c 3894 opt->renormalize = 0;
a779fb82 3895
259ccb6c 3896 merge_recursive_config(opt);
80486220
AO
3897 merge_verbosity = getenv("GIT_MERGE_VERBOSITY");
3898 if (merge_verbosity)
259ccb6c
EN
3899 opt->verbosity = strtol(merge_verbosity, NULL, 10);
3900 if (opt->verbosity >= 5)
3901 opt->buffer_output = 0;
9047ebbc 3902}
635a7bb1 3903
259ccb6c 3904int parse_merge_opt(struct merge_options *opt, const char *s)
635a7bb1 3905{
95b567c7
JK
3906 const char *arg;
3907
635a7bb1
JN
3908 if (!s || !*s)
3909 return -1;
3910 if (!strcmp(s, "ours"))
f3081dae 3911 opt->recursive_variant = MERGE_VARIANT_OURS;
635a7bb1 3912 else if (!strcmp(s, "theirs"))
f3081dae 3913 opt->recursive_variant = MERGE_VARIANT_THEIRS;
635a7bb1 3914 else if (!strcmp(s, "subtree"))
259ccb6c 3915 opt->subtree_shift = "";
95b567c7 3916 else if (skip_prefix(s, "subtree=", &arg))
259ccb6c 3917 opt->subtree_shift = arg;
58a1ece4 3918 else if (!strcmp(s, "patience"))
259ccb6c 3919 opt->xdl_opts = DIFF_WITH_ALG(opt, PATIENCE_DIFF);
8c912eea 3920 else if (!strcmp(s, "histogram"))
259ccb6c 3921 opt->xdl_opts = DIFF_WITH_ALG(opt, HISTOGRAM_DIFF);
95b567c7
JK
3922 else if (skip_prefix(s, "diff-algorithm=", &arg)) {
3923 long value = parse_algorithm_value(arg);
07924d4d
MP
3924 if (value < 0)
3925 return -1;
3926 /* clear out previous settings */
259ccb6c
EN
3927 DIFF_XDL_CLR(opt, NEED_MINIMAL);
3928 opt->xdl_opts &= ~XDF_DIFF_ALGORITHM_MASK;
3929 opt->xdl_opts |= value;
07924d4d 3930 }
4e5dd044 3931 else if (!strcmp(s, "ignore-space-change"))
259ccb6c 3932 DIFF_XDL_SET(opt, IGNORE_WHITESPACE_CHANGE);
4e5dd044 3933 else if (!strcmp(s, "ignore-all-space"))
259ccb6c 3934 DIFF_XDL_SET(opt, IGNORE_WHITESPACE);
4e5dd044 3935 else if (!strcmp(s, "ignore-space-at-eol"))
259ccb6c 3936 DIFF_XDL_SET(opt, IGNORE_WHITESPACE_AT_EOL);
e9282f02 3937 else if (!strcmp(s, "ignore-cr-at-eol"))
259ccb6c 3938 DIFF_XDL_SET(opt, IGNORE_CR_AT_EOL);
635a7bb1 3939 else if (!strcmp(s, "renormalize"))
259ccb6c 3940 opt->renormalize = 1;
635a7bb1 3941 else if (!strcmp(s, "no-renormalize"))
259ccb6c 3942 opt->renormalize = 0;
d2b11eca 3943 else if (!strcmp(s, "no-renames"))
8599ab45 3944 opt->detect_renames = 0;
87892f60 3945 else if (!strcmp(s, "find-renames")) {
8599ab45 3946 opt->detect_renames = 1;
259ccb6c 3947 opt->rename_score = 0;
87892f60 3948 }
1b47ad16
FGA
3949 else if (skip_prefix(s, "find-renames=", &arg) ||
3950 skip_prefix(s, "rename-threshold=", &arg)) {
259ccb6c 3951 if ((opt->rename_score = parse_rename_score(&arg)) == -1 || *arg != 0)
10ae7526 3952 return -1;
8599ab45 3953 opt->detect_renames = 1;
10ae7526 3954 }
5a59a230
NTND
3955 /*
3956 * Please update $__git_merge_strategy_options in
3957 * git-completion.bash when you add new options
3958 */
635a7bb1
JN
3959 else
3960 return -1;
3961 return 0;
3962}