]> git.ipfire.org Git - thirdparty/git.git/blame - merge-recursive.c
merge_trees(): ensure that the callers release output buffer
[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"
1c4b6604 7#include "advice.h"
697cc8ef 8#include "lockfile.h"
9047ebbc
MV
9#include "cache-tree.h"
10#include "commit.h"
11#include "blob.h"
12#include "builtin.h"
13#include "tree-walk.h"
14#include "diff.h"
15#include "diffcore.h"
16#include "tag.h"
17#include "unpack-trees.h"
18#include "string-list.h"
19#include "xdiff-interface.h"
20#include "ll-merge.h"
9047ebbc
MV
21#include "attr.h"
22#include "merge-recursive.h"
9800c0df 23#include "dir.h"
68d03e4a 24#include "submodule.h"
9047ebbc 25
bc9204d4
JS
26static void flush_output(struct merge_options *o)
27{
f1e2426b 28 if (o->buffer_output < 2 && o->obuf.len) {
bc9204d4
JS
29 fputs(o->obuf.buf, stdout);
30 strbuf_reset(&o->obuf);
31 }
32}
33
34static int err(struct merge_options *o, const char *err, ...)
35{
36 va_list params;
37
f1e2426b
JS
38 if (o->buffer_output < 2)
39 flush_output(o);
40 else {
41 strbuf_complete(&o->obuf, '\n');
42 strbuf_addstr(&o->obuf, "error: ");
43 }
bc9204d4
JS
44 va_start(params, err);
45 strbuf_vaddf(&o->obuf, err, params);
46 va_end(params);
f1e2426b
JS
47 if (o->buffer_output > 1)
48 strbuf_addch(&o->obuf, '\n');
49 else {
50 error("%s", o->obuf.buf);
51 strbuf_reset(&o->obuf);
52 }
bc9204d4
JS
53
54 return -1;
55}
56
85e51b78
JH
57static struct tree *shift_tree_object(struct tree *one, struct tree *two,
58 const char *subtree_shift)
9047ebbc 59{
f2fd0760 60 struct object_id shifted;
9047ebbc 61
85e51b78 62 if (!*subtree_shift) {
82db3d44 63 shift_tree(&one->object.oid, &two->object.oid, &shifted, 0);
85e51b78 64 } else {
82db3d44 65 shift_tree_by(&one->object.oid, &two->object.oid, &shifted,
85e51b78
JH
66 subtree_shift);
67 }
f2fd0760 68 if (!oidcmp(&two->object.oid, &shifted))
9047ebbc 69 return two;
f2fd0760 70 return lookup_tree(shifted.hash);
9047ebbc
MV
71}
72
2af202be 73static struct commit *make_virtual_commit(struct tree *tree, const char *comment)
9047ebbc 74{
10322a0a 75 struct commit *commit = alloc_commit_node();
ae8e4c9c
JH
76 struct merge_remote_desc *desc = xmalloc(sizeof(*desc));
77
78 desc->name = comment;
79 desc->obj = (struct object *)commit;
9047ebbc 80 commit->tree = tree;
ae8e4c9c 81 commit->util = desc;
9047ebbc
MV
82 commit->object.parsed = 1;
83 return commit;
84}
85
86/*
87 * Since we use get_tree_entry(), which does not put the read object into
88 * the object pool, we cannot rely on a == b.
89 */
b4da9d62 90static int oid_eq(const struct object_id *a, const struct object_id *b)
9047ebbc
MV
91{
92 if (!a && !b)
93 return 2;
b4da9d62 94 return a && b && oidcmp(a, b) == 0;
9047ebbc
MV
95}
96
25c39363
EN
97enum rename_type {
98 RENAME_NORMAL = 0,
99 RENAME_DELETE,
4f66dade 100 RENAME_ONE_FILE_TO_ONE,
461f5041
EN
101 RENAME_ONE_FILE_TO_TWO,
102 RENAME_TWO_FILES_TO_ONE
25c39363
EN
103};
104
4f66dade 105struct rename_conflict_info {
25c39363
EN
106 enum rename_type rename_type;
107 struct diff_filepair *pair1;
108 struct diff_filepair *pair2;
109 const char *branch1;
110 const char *branch2;
111 struct stage_data *dst_entry1;
112 struct stage_data *dst_entry2;
232c635f
EN
113 struct diff_filespec ren1_other;
114 struct diff_filespec ren2_other;
25c39363
EN
115};
116
9047ebbc
MV
117/*
118 * Since we want to write the index eventually, we cannot reuse the index
119 * for these (temporary) data.
120 */
9cba13ca
JN
121struct stage_data {
122 struct {
9047ebbc 123 unsigned mode;
fd429e98 124 struct object_id oid;
9047ebbc 125 } stages[4];
4f66dade 126 struct rename_conflict_info *rename_conflict_info;
9047ebbc
MV
127 unsigned processed:1;
128};
129
4f66dade
EN
130static inline void setup_rename_conflict_info(enum rename_type rename_type,
131 struct diff_filepair *pair1,
132 struct diff_filepair *pair2,
133 const char *branch1,
134 const char *branch2,
135 struct stage_data *dst_entry1,
232c635f
EN
136 struct stage_data *dst_entry2,
137 struct merge_options *o,
138 struct stage_data *src_entry1,
139 struct stage_data *src_entry2)
25c39363 140{
4f66dade 141 struct rename_conflict_info *ci = xcalloc(1, sizeof(struct rename_conflict_info));
25c39363
EN
142 ci->rename_type = rename_type;
143 ci->pair1 = pair1;
144 ci->branch1 = branch1;
145 ci->branch2 = branch2;
146
147 ci->dst_entry1 = dst_entry1;
4f66dade 148 dst_entry1->rename_conflict_info = ci;
25c39363
EN
149 dst_entry1->processed = 0;
150
151 assert(!pair2 == !dst_entry2);
152 if (dst_entry2) {
153 ci->dst_entry2 = dst_entry2;
154 ci->pair2 = pair2;
4f66dade 155 dst_entry2->rename_conflict_info = ci;
25c39363 156 }
232c635f
EN
157
158 if (rename_type == RENAME_TWO_FILES_TO_ONE) {
159 /*
160 * For each rename, there could have been
161 * modifications on the side of history where that
162 * file was not renamed.
163 */
164 int ostage1 = o->branch1 == branch1 ? 3 : 2;
165 int ostage2 = ostage1 ^ 1;
166
167 ci->ren1_other.path = pair1->one->path;
fd429e98 168 oidcpy(&ci->ren1_other.oid, &src_entry1->stages[ostage1].oid);
232c635f
EN
169 ci->ren1_other.mode = src_entry1->stages[ostage1].mode;
170
171 ci->ren2_other.path = pair2->one->path;
fd429e98 172 oidcpy(&ci->ren2_other.oid, &src_entry2->stages[ostage2].oid);
232c635f 173 ci->ren2_other.mode = src_entry2->stages[ostage2].mode;
25c39363
EN
174 }
175}
176
8a2fce18 177static int show(struct merge_options *o, int v)
9047ebbc 178{
5033639c 179 return (!o->call_depth && o->verbosity >= v) || o->verbosity >= 5;
9047ebbc
MV
180}
181
28bea9e5 182__attribute__((format (printf, 3, 4)))
8a2fce18 183static void output(struct merge_options *o, int v, const char *fmt, ...)
9047ebbc 184{
9047ebbc
MV
185 va_list ap;
186
8a2fce18 187 if (!show(o, v))
9047ebbc
MV
188 return;
189
415792ed 190 strbuf_addchars(&o->obuf, ' ', o->call_depth * 2);
9047ebbc
MV
191
192 va_start(ap, fmt);
ebeb6090 193 strbuf_vaddf(&o->obuf, fmt, ap);
9047ebbc
MV
194 va_end(ap);
195
294b2680 196 strbuf_addch(&o->obuf, '\n');
8a2fce18 197 if (!o->buffer_output)
c7d84924 198 flush_output(o);
9047ebbc
MV
199}
200
5033639c 201static void output_commit_title(struct merge_options *o, struct commit *commit)
9047ebbc 202{
dde75cb0 203 strbuf_addchars(&o->obuf, ' ', o->call_depth * 2);
9047ebbc 204 if (commit->util)
dde75cb0
JS
205 strbuf_addf(&o->obuf, "virtual %s\n",
206 merge_remote_util(commit)->name);
9047ebbc 207 else {
dde75cb0
JS
208 strbuf_addf(&o->obuf, "%s ",
209 find_unique_abbrev(commit->object.oid.hash,
210 DEFAULT_ABBREV));
9047ebbc 211 if (parse_commit(commit) != 0)
dde75cb0 212 strbuf_addf(&o->obuf, _("(bad commit)\n"));
9047ebbc 213 else {
49b7120e 214 const char *title;
8597ea3a 215 const char *msg = get_commit_buffer(commit, NULL);
bc6b8fc1 216 int len = find_commit_subject(msg, &title);
49b7120e 217 if (len)
dde75cb0 218 strbuf_addf(&o->obuf, "%.*s\n", len, title);
bc6b8fc1 219 unuse_commit_buffer(commit, msg);
9047ebbc
MV
220 }
221 }
dde75cb0 222 flush_output(o);
9047ebbc
MV
223}
224
bc9204d4
JS
225static int add_cacheinfo(struct merge_options *o,
226 unsigned int mode, const struct object_id *oid,
9047ebbc
MV
227 const char *path, int stage, int refresh, int options)
228{
229 struct cache_entry *ce;
1335d76e
JH
230 int ret;
231
21bed620 232 ce = make_cache_entry(mode, oid ? oid->hash : null_sha1, path, stage, 0);
9047ebbc 233 if (!ce)
bc9204d4 234 return err(o, _("addinfo_cache failed for path '%s'"), path);
1335d76e
JH
235
236 ret = add_cache_entry(ce, options);
237 if (refresh) {
238 struct cache_entry *nce;
239
240 nce = refresh_cache_entry(ce, CE_MATCH_REFRESH | CE_MATCH_IGNORE_MISSING);
241 if (nce != ce)
242 ret = add_cache_entry(nce, options);
243 }
244 return ret;
9047ebbc
MV
245}
246
9047ebbc
MV
247static void init_tree_desc_from_tree(struct tree_desc *desc, struct tree *tree)
248{
249 parse_tree(tree);
250 init_tree_desc(desc, tree->buffer, tree->size);
251}
252
253static int git_merge_trees(int index_only,
254 struct tree *common,
255 struct tree *head,
256 struct tree *merge)
257{
258 int rc;
259 struct tree_desc t[3];
260 struct unpack_trees_options opts;
261
262 memset(&opts, 0, sizeof(opts));
263 if (index_only)
264 opts.index_only = 1;
265 else
266 opts.update = 1;
267 opts.merge = 1;
268 opts.head_idx = 2;
269 opts.fn = threeway_merge;
270 opts.src_index = &the_index;
271 opts.dst_index = &the_index;
e294030f 272 setup_unpack_trees_porcelain(&opts, "merge");
9047ebbc
MV
273
274 init_tree_desc_from_tree(t+0, common);
275 init_tree_desc_from_tree(t+1, head);
276 init_tree_desc_from_tree(t+2, merge);
277
278 rc = unpack_trees(3, t, &opts);
279 cache_tree_free(&active_cache_tree);
280 return rc;
281}
282
8a2fce18 283struct tree *write_tree_from_memory(struct merge_options *o)
9047ebbc
MV
284{
285 struct tree *result = NULL;
286
287 if (unmerged_cache()) {
288 int i;
19c6a4f8 289 fprintf(stderr, "BUG: There are unmerged index entries:\n");
9047ebbc 290 for (i = 0; i < active_nr; i++) {
9c5e6c80 291 const struct cache_entry *ce = active_cache[i];
9047ebbc 292 if (ce_stage(ce))
c43ba42e 293 fprintf(stderr, "BUG: %d %.*s\n", ce_stage(ce),
19c6a4f8 294 (int)ce_namelen(ce), ce->name);
9047ebbc 295 }
ef1177d1 296 die("BUG: unmerged index entries in merge-recursive.c");
9047ebbc
MV
297 }
298
299 if (!active_cache_tree)
300 active_cache_tree = cache_tree();
301
302 if (!cache_tree_fully_valid(active_cache_tree) &&
6003303a 303 cache_tree_update(&the_index, 0) < 0) {
bc9204d4 304 err(o, _("error building trees"));
6003303a
JS
305 return NULL;
306 }
9047ebbc
MV
307
308 result = lookup_tree(active_cache_tree->sha1);
309
310 return result;
311}
312
313static int save_files_dirs(const unsigned char *sha1,
6a0b0b6d 314 struct strbuf *base, const char *path,
9047ebbc
MV
315 unsigned int mode, int stage, void *context)
316{
6a0b0b6d 317 int baselen = base->len;
696ee23c
MV
318 struct merge_options *o = context;
319
6a0b0b6d 320 strbuf_addstr(base, path);
9047ebbc
MV
321
322 if (S_ISDIR(mode))
6a0b0b6d 323 string_list_insert(&o->current_directory_set, base->buf);
9047ebbc 324 else
6a0b0b6d 325 string_list_insert(&o->current_file_set, base->buf);
9047ebbc 326
6a0b0b6d 327 strbuf_setlen(base, baselen);
d3bee161 328 return (S_ISDIR(mode) ? READ_TREE_RECURSIVE : 0);
9047ebbc
MV
329}
330
696ee23c 331static int get_files_dirs(struct merge_options *o, struct tree *tree)
9047ebbc
MV
332{
333 int n;
f0096c06 334 struct pathspec match_all;
9a087274 335 memset(&match_all, 0, sizeof(match_all));
f0096c06 336 if (read_tree_recursive(tree, "", 0, 0, &match_all, save_files_dirs, o))
9047ebbc 337 return 0;
696ee23c 338 n = o->current_file_set.nr + o->current_directory_set.nr;
9047ebbc
MV
339 return n;
340}
341
342/*
343 * Returns an index_entry instance which doesn't have to correspond to
344 * a real cache entry in Git's index.
345 */
346static struct stage_data *insert_stage_data(const char *path,
347 struct tree *o, struct tree *a, struct tree *b,
348 struct string_list *entries)
349{
350 struct string_list_item *item;
351 struct stage_data *e = xcalloc(1, sizeof(struct stage_data));
ed1c9977 352 get_tree_entry(o->object.oid.hash, path,
fd429e98 353 e->stages[1].oid.hash, &e->stages[1].mode);
ed1c9977 354 get_tree_entry(a->object.oid.hash, path,
fd429e98 355 e->stages[2].oid.hash, &e->stages[2].mode);
ed1c9977 356 get_tree_entry(b->object.oid.hash, path,
fd429e98 357 e->stages[3].oid.hash, &e->stages[3].mode);
78a395d3 358 item = string_list_insert(entries, path);
9047ebbc
MV
359 item->util = e;
360 return e;
361}
362
363/*
364 * Create a dictionary mapping file names to stage_data objects. The
365 * dictionary contains one entry for every path with a non-zero stage entry.
366 */
367static struct string_list *get_unmerged(void)
368{
369 struct string_list *unmerged = xcalloc(1, sizeof(struct string_list));
370 int i;
371
372 unmerged->strdup_strings = 1;
373
374 for (i = 0; i < active_nr; i++) {
375 struct string_list_item *item;
376 struct stage_data *e;
9c5e6c80 377 const struct cache_entry *ce = active_cache[i];
9047ebbc
MV
378 if (!ce_stage(ce))
379 continue;
380
e8c8b713 381 item = string_list_lookup(unmerged, ce->name);
9047ebbc 382 if (!item) {
78a395d3 383 item = string_list_insert(unmerged, ce->name);
9047ebbc
MV
384 item->util = xcalloc(1, sizeof(struct stage_data));
385 }
386 e = item->util;
387 e->stages[ce_stage(ce)].mode = ce->ce_mode;
fd429e98 388 hashcpy(e->stages[ce_stage(ce)].oid.hash, ce->sha1);
9047ebbc
MV
389 }
390
391 return unmerged;
392}
393
f0fd4d05 394static int string_list_df_name_compare(const void *a, const void *b)
ef02b317 395{
f0fd4d05
EN
396 const struct string_list_item *one = a;
397 const struct string_list_item *two = b;
398 int onelen = strlen(one->string);
399 int twolen = strlen(two->string);
400 /*
401 * Here we only care that entries for D/F conflicts are
402 * adjacent, in particular with the file of the D/F conflict
403 * appearing before files below the corresponding directory.
404 * The order of the rest of the list is irrelevant for us.
ef02b317 405 *
f0fd4d05
EN
406 * To achieve this, we sort with df_name_compare and provide
407 * the mode S_IFDIR so that D/F conflicts will sort correctly.
408 * We use the mode S_IFDIR for everything else for simplicity,
409 * since in other cases any changes in their order due to
410 * sorting cause no problems for us.
411 */
412 int cmp = df_name_compare(one->string, onelen, S_IFDIR,
413 two->string, twolen, S_IFDIR);
414 /*
415 * Now that 'foo' and 'foo/bar' compare equal, we have to make sure
416 * that 'foo' comes before 'foo/bar'.
ef02b317 417 */
f0fd4d05
EN
418 if (cmp)
419 return cmp;
420 return onelen - twolen;
421}
422
70cc3d36
EN
423static void record_df_conflict_files(struct merge_options *o,
424 struct string_list *entries)
ef02b317 425{
70cc3d36 426 /* If there is a D/F conflict and the file for such a conflict
f7d650c0 427 * currently exist in the working tree, we want to allow it to be
edd2faf5
EN
428 * removed to make room for the corresponding directory if needed.
429 * The files underneath the directories of such D/F conflicts will
430 * be processed before the corresponding file involved in the D/F
431 * conflict. If the D/F directory ends up being removed by the
432 * merge, then we won't have to touch the D/F file. If the D/F
433 * directory needs to be written to the working copy, then the D/F
434 * file will simply be removed (in make_room_for_path()) to make
435 * room for the necessary paths. Note that if both the directory
436 * and the file need to be present, then the D/F file will be
437 * reinstated with a new unique name at the time it is processed.
ef02b317 438 */
f701aae0 439 struct string_list df_sorted_entries;
ef02b317 440 const char *last_file = NULL;
c8516500 441 int last_len = 0;
ef02b317
EN
442 int i;
443
0b30e812
EN
444 /*
445 * If we're merging merge-bases, we don't want to bother with
446 * any working directory changes.
447 */
448 if (o->call_depth)
449 return;
450
f0fd4d05 451 /* Ensure D/F conflicts are adjacent in the entries list. */
f701aae0 452 memset(&df_sorted_entries, 0, sizeof(struct string_list));
ef02b317 453 for (i = 0; i < entries->nr; i++) {
f701aae0
EN
454 struct string_list_item *next = &entries->items[i];
455 string_list_append(&df_sorted_entries, next->string)->util =
456 next->util;
457 }
458 qsort(df_sorted_entries.items, entries->nr, sizeof(*entries->items),
f0fd4d05
EN
459 string_list_df_name_compare);
460
70cc3d36 461 string_list_clear(&o->df_conflict_file_set, 1);
f701aae0
EN
462 for (i = 0; i < df_sorted_entries.nr; i++) {
463 const char *path = df_sorted_entries.items[i].string;
ef02b317 464 int len = strlen(path);
f701aae0 465 struct stage_data *e = df_sorted_entries.items[i].util;
ef02b317
EN
466
467 /*
468 * Check if last_file & path correspond to a D/F conflict;
469 * i.e. whether path is last_file+'/'+<something>.
70cc3d36
EN
470 * If so, record that it's okay to remove last_file to make
471 * room for path and friends if needed.
ef02b317
EN
472 */
473 if (last_file &&
474 len > last_len &&
475 memcmp(path, last_file, last_len) == 0 &&
476 path[last_len] == '/') {
70cc3d36 477 string_list_insert(&o->df_conflict_file_set, last_file);
ef02b317
EN
478 }
479
480 /*
481 * Determine whether path could exist as a file in the
482 * working directory as a possible D/F conflict. This
483 * will only occur when it exists in stage 2 as a
484 * file.
485 */
486 if (S_ISREG(e->stages[2].mode) || S_ISLNK(e->stages[2].mode)) {
487 last_file = path;
488 last_len = len;
ef02b317
EN
489 } else {
490 last_file = NULL;
491 }
492 }
f701aae0 493 string_list_clear(&df_sorted_entries, 0);
ef02b317
EN
494}
495
9cba13ca 496struct rename {
9047ebbc
MV
497 struct diff_filepair *pair;
498 struct stage_data *src_entry;
499 struct stage_data *dst_entry;
500 unsigned processed:1;
501};
502
503/*
504 * Get information of all renames which occurred between 'o_tree' and
505 * 'tree'. We need the three trees in the merge ('o_tree', 'a_tree' and
506 * 'b_tree') to be able to associate the correct cache entries with
507 * the rename information. 'tree' is always equal to either a_tree or b_tree.
508 */
8a2fce18
MV
509static struct string_list *get_renames(struct merge_options *o,
510 struct tree *tree,
511 struct tree *o_tree,
512 struct tree *a_tree,
513 struct tree *b_tree,
514 struct string_list *entries)
9047ebbc
MV
515{
516 int i;
517 struct string_list *renames;
518 struct diff_options opts;
519
520 renames = xcalloc(1, sizeof(struct string_list));
d2b11eca
FGA
521 if (!o->detect_rename)
522 return renames;
523
9047ebbc
MV
524 diff_setup(&opts);
525 DIFF_OPT_SET(&opts, RECURSIVE);
4f7cb99a 526 DIFF_OPT_CLR(&opts, RENAME_EMPTY);
9047ebbc 527 opts.detect_rename = DIFF_DETECT_RENAME;
8a2fce18
MV
528 opts.rename_limit = o->merge_rename_limit >= 0 ? o->merge_rename_limit :
529 o->diff_rename_limit >= 0 ? o->diff_rename_limit :
92c57e5c 530 1000;
10ae7526 531 opts.rename_score = o->rename_score;
99bfc669 532 opts.show_rename_progress = o->show_rename_progress;
9047ebbc 533 opts.output_format = DIFF_FORMAT_NO_OUTPUT;
28452655 534 diff_setup_done(&opts);
ed1c9977 535 diff_tree_sha1(o_tree->object.oid.hash, tree->object.oid.hash, "", &opts);
9047ebbc 536 diffcore_std(&opts);
bf0ab10f
JK
537 if (opts.needed_rename_limit > o->needed_rename_limit)
538 o->needed_rename_limit = opts.needed_rename_limit;
9047ebbc
MV
539 for (i = 0; i < diff_queued_diff.nr; ++i) {
540 struct string_list_item *item;
541 struct rename *re;
542 struct diff_filepair *pair = diff_queued_diff.queue[i];
543 if (pair->status != 'R') {
544 diff_free_filepair(pair);
545 continue;
546 }
547 re = xmalloc(sizeof(*re));
548 re->processed = 0;
549 re->pair = pair;
e8c8b713 550 item = string_list_lookup(entries, re->pair->one->path);
9047ebbc
MV
551 if (!item)
552 re->src_entry = insert_stage_data(re->pair->one->path,
553 o_tree, a_tree, b_tree, entries);
554 else
555 re->src_entry = item->util;
556
e8c8b713 557 item = string_list_lookup(entries, re->pair->two->path);
9047ebbc
MV
558 if (!item)
559 re->dst_entry = insert_stage_data(re->pair->two->path,
560 o_tree, a_tree, b_tree, entries);
561 else
562 re->dst_entry = item->util;
78a395d3 563 item = string_list_insert(renames, pair->one->path);
9047ebbc
MV
564 item->util = re;
565 }
566 opts.output_format = DIFF_FORMAT_NO_OUTPUT;
567 diff_queued_diff.nr = 0;
568 diff_flush(&opts);
569 return renames;
570}
571
bc9204d4
JS
572static int update_stages(struct merge_options *opt, const char *path,
573 const struct diff_filespec *o,
650467cf
EN
574 const struct diff_filespec *a,
575 const struct diff_filespec *b)
9047ebbc 576{
f53d3977
EN
577
578 /*
579 * NOTE: It is usually a bad idea to call update_stages on a path
580 * before calling update_file on that same path, since it can
581 * sometimes lead to spurious "refusing to lose untracked file..."
582 * messages from update_file (via make_room_for path via
583 * would_lose_untracked). Instead, reverse the order of the calls
584 * (executing update_file first and then update_stages).
585 */
650467cf
EN
586 int clear = 1;
587 int options = ADD_CACHE_OK_TO_ADD | ADD_CACHE_SKIP_DFCHECK;
9047ebbc
MV
588 if (clear)
589 if (remove_file_from_cache(path))
590 return -1;
591 if (o)
bc9204d4 592 if (add_cacheinfo(opt, o->mode, &o->oid, path, 1, 0, options))
9047ebbc
MV
593 return -1;
594 if (a)
bc9204d4 595 if (add_cacheinfo(opt, a->mode, &a->oid, path, 2, 0, options))
9047ebbc
MV
596 return -1;
597 if (b)
bc9204d4 598 if (add_cacheinfo(opt, b->mode, &b->oid, path, 3, 0, options))
9047ebbc
MV
599 return -1;
600 return 0;
601}
602
b8ddf164
EN
603static void update_entry(struct stage_data *entry,
604 struct diff_filespec *o,
605 struct diff_filespec *a,
606 struct diff_filespec *b)
2ff739f9 607{
2ff739f9
EN
608 entry->processed = 0;
609 entry->stages[1].mode = o->mode;
610 entry->stages[2].mode = a->mode;
611 entry->stages[3].mode = b->mode;
fd429e98 612 oidcpy(&entry->stages[1].oid, &o->oid);
613 oidcpy(&entry->stages[2].oid, &a->oid);
614 oidcpy(&entry->stages[3].oid, &b->oid);
2ff739f9
EN
615}
616
b7fa51da
MV
617static int remove_file(struct merge_options *o, int clean,
618 const char *path, int no_wd)
9047ebbc 619{
b7fa51da
MV
620 int update_cache = o->call_depth || clean;
621 int update_working_directory = !o->call_depth && !no_wd;
9047ebbc
MV
622
623 if (update_cache) {
624 if (remove_file_from_cache(path))
625 return -1;
626 }
627 if (update_working_directory) {
ae352c7f
DT
628 if (ignore_case) {
629 struct cache_entry *ce;
630 ce = cache_file_exists(path, strlen(path), ignore_case);
631 if (ce && ce_stage(ce) == 0)
632 return 0;
633 }
25755e84 634 if (remove_path(path))
9047ebbc 635 return -1;
9047ebbc
MV
636 }
637 return 0;
638}
639
45bc131d
JK
640/* add a string to a strbuf, but converting "/" to "_" */
641static void add_flattened_path(struct strbuf *out, const char *s)
642{
643 size_t i = out->len;
644 strbuf_addstr(out, s);
645 for (; i < out->len; i++)
646 if (out->buf[i] == '/')
647 out->buf[i] = '_';
648}
649
696ee23c 650static char *unique_path(struct merge_options *o, const char *path, const char *branch)
9047ebbc 651{
45bc131d 652 struct strbuf newpath = STRBUF_INIT;
9047ebbc 653 int suffix = 0;
45bc131d
JK
654 size_t base_len;
655
656 strbuf_addf(&newpath, "%s~", path);
657 add_flattened_path(&newpath, branch);
658
659 base_len = newpath.len;
660 while (string_list_has_string(&o->current_file_set, newpath.buf) ||
661 string_list_has_string(&o->current_directory_set, newpath.buf) ||
8e1b62f1 662 (!o->call_depth && file_exists(newpath.buf))) {
45bc131d
JK
663 strbuf_setlen(&newpath, base_len);
664 strbuf_addf(&newpath, "_%d", suffix++);
665 }
666
667 string_list_insert(&o->current_file_set, newpath.buf);
668 return strbuf_detach(&newpath, NULL);
9047ebbc
MV
669}
670
f2507b4e
EN
671static int dir_in_way(const char *path, int check_working_copy)
672{
b4600fbe
JK
673 int pos;
674 struct strbuf dirpath = STRBUF_INIT;
f2507b4e
EN
675 struct stat st;
676
b4600fbe
JK
677 strbuf_addstr(&dirpath, path);
678 strbuf_addch(&dirpath, '/');
f2507b4e 679
b4600fbe 680 pos = cache_name_pos(dirpath.buf, dirpath.len);
f2507b4e
EN
681
682 if (pos < 0)
683 pos = -1 - pos;
684 if (pos < active_nr &&
b4600fbe
JK
685 !strncmp(dirpath.buf, active_cache[pos]->name, dirpath.len)) {
686 strbuf_release(&dirpath);
f2507b4e
EN
687 return 1;
688 }
689
b4600fbe 690 strbuf_release(&dirpath);
f2507b4e
EN
691 return check_working_copy && !lstat(path, &st) && S_ISDIR(st.st_mode);
692}
693
aacb82de 694static int was_tracked(const char *path)
60c91181
JH
695{
696 int pos = cache_name_pos(path, strlen(path));
697
f8d83fb6
JS
698 if (0 <= pos)
699 /* we have been tracking this path */
700 return 1;
701
702 /*
703 * Look for an unmerged entry for the path,
704 * specifically stage #2, which would indicate
705 * that "our" side before the merge started
706 * had the path tracked (and resulted in a conflict).
707 */
708 for (pos = -1 - pos;
709 pos < active_nr && !strcmp(path, active_cache[pos]->name);
710 pos++)
711 if (ce_stage(active_cache[pos]) == 2)
aacb82de 712 return 1;
aacb82de 713 return 0;
60c91181
JH
714}
715
aacb82de 716static int would_lose_untracked(const char *path)
9047ebbc 717{
aacb82de 718 return !was_tracked(path) && file_exists(path);
60c91181
JH
719}
720
ed0148a5 721static int make_room_for_path(struct merge_options *o, const char *path)
9047ebbc 722{
ed0148a5 723 int status, i;
55653a68 724 const char *msg = _("failed to create path '%s'%s");
9047ebbc 725
ed0148a5
EN
726 /* Unlink any D/F conflict files that are in the way */
727 for (i = 0; i < o->df_conflict_file_set.nr; i++) {
728 const char *df_path = o->df_conflict_file_set.items[i].string;
729 size_t pathlen = strlen(path);
730 size_t df_pathlen = strlen(df_path);
731 if (df_pathlen < pathlen &&
732 path[df_pathlen] == '/' &&
733 strncmp(path, df_path, df_pathlen) == 0) {
734 output(o, 3,
55653a68 735 _("Removing %s to make room for subdirectory\n"),
ed0148a5
EN
736 df_path);
737 unlink(df_path);
738 unsorted_string_list_delete_item(&o->df_conflict_file_set,
739 i, 0);
740 break;
741 }
742 }
743
744 /* Make sure leading directories are created */
9047ebbc
MV
745 status = safe_create_leading_directories_const(path);
746 if (status) {
6003303a 747 if (status == SCLD_EXISTS)
9047ebbc 748 /* something else exists */
bc9204d4
JS
749 return err(o, msg, path, _(": perhaps a D/F conflict?"));
750 return err(o, msg, path, "");
9047ebbc
MV
751 }
752
60c91181
JH
753 /*
754 * Do not unlink a file in the work tree if we are not
755 * tracking it.
756 */
757 if (would_lose_untracked(path))
bc9204d4 758 return err(o, _("refusing to lose untracked file at '%s'"),
60c91181
JH
759 path);
760
9047ebbc
MV
761 /* Successful unlink is good.. */
762 if (!unlink(path))
763 return 0;
764 /* .. and so is no existing file */
765 if (errno == ENOENT)
766 return 0;
767 /* .. but not some other error (who really cares what?) */
bc9204d4 768 return err(o, msg, path, _(": perhaps a D/F conflict?"));
9047ebbc
MV
769}
770
75456f96
JS
771static int update_file_flags(struct merge_options *o,
772 const struct object_id *oid,
773 unsigned mode,
774 const char *path,
775 int update_cache,
776 int update_wd)
9047ebbc 777{
6003303a
JS
778 int ret = 0;
779
b7fa51da 780 if (o->call_depth)
9047ebbc
MV
781 update_wd = 0;
782
783 if (update_wd) {
784 enum object_type type;
785 void *buf;
786 unsigned long size;
787
68d03e4a 788 if (S_ISGITLINK(mode)) {
0c44c943
JH
789 /*
790 * We may later decide to recursively descend into
791 * the submodule directory and update its index
792 * and/or work tree, but we do not do that now.
793 */
68d03e4a 794 update_wd = 0;
0c44c943 795 goto update_index;
68d03e4a 796 }
9047ebbc 797
b4da9d62 798 buf = read_sha1_file(oid->hash, &type, &size);
9047ebbc 799 if (!buf)
bc9204d4 800 return err(o, _("cannot read object %s '%s'"), oid_to_hex(oid), path);
6003303a 801 if (type != OBJ_BLOB) {
bc9204d4 802 ret = err(o, _("blob expected for %s '%s'"), oid_to_hex(oid), path);
6003303a
JS
803 goto free_buf;
804 }
9047ebbc 805 if (S_ISREG(mode)) {
f285a2d7 806 struct strbuf strbuf = STRBUF_INIT;
9047ebbc
MV
807 if (convert_to_working_tree(path, buf, size, &strbuf)) {
808 free(buf);
809 size = strbuf.len;
810 buf = strbuf_detach(&strbuf, NULL);
811 }
812 }
813
ed0148a5 814 if (make_room_for_path(o, path) < 0) {
9047ebbc 815 update_wd = 0;
75456f96 816 goto free_buf;
9047ebbc
MV
817 }
818 if (S_ISREG(mode) || (!has_symlinks && S_ISLNK(mode))) {
819 int fd;
820 if (mode & 0100)
821 mode = 0777;
822 else
823 mode = 0666;
824 fd = open(path, O_WRONLY | O_TRUNC | O_CREAT, mode);
6003303a 825 if (fd < 0) {
bc9204d4
JS
826 ret = err(o, _("failed to open '%s': %s"),
827 path, strerror(errno));
6003303a
JS
828 goto free_buf;
829 }
f633ea2c 830 write_in_full(fd, buf, size);
9047ebbc
MV
831 close(fd);
832 } else if (S_ISLNK(mode)) {
833 char *lnk = xmemdupz(buf, size);
834 safe_create_leading_directories_const(path);
835 unlink(path);
304dcf26 836 if (symlink(lnk, path))
bc9204d4
JS
837 ret = err(o, _("failed to symlink '%s': %s"),
838 path, strerror(errno));
9047ebbc
MV
839 free(lnk);
840 } else
bc9204d4
JS
841 ret = err(o,
842 _("do not know what to do with %06o %s '%s'"),
843 mode, oid_to_hex(oid), path);
75456f96 844 free_buf:
9047ebbc
MV
845 free(buf);
846 }
847 update_index:
6003303a 848 if (!ret && update_cache)
bc9204d4 849 add_cacheinfo(o, mode, oid, path, 0, update_wd, ADD_CACHE_OK_TO_ADD);
6003303a 850 return ret;
9047ebbc
MV
851}
852
75456f96
JS
853static int update_file(struct merge_options *o,
854 int clean,
855 const struct object_id *oid,
856 unsigned mode,
857 const char *path)
9047ebbc 858{
75456f96 859 return update_file_flags(o, oid, mode, path, o->call_depth || clean, !o->call_depth);
9047ebbc
MV
860}
861
862/* Low level file merging, update and removal */
863
9cba13ca 864struct merge_file_info {
9b561499 865 struct object_id oid;
9047ebbc
MV
866 unsigned mode;
867 unsigned clean:1,
868 merge:1;
869};
870
b7fa51da
MV
871static int merge_3way(struct merge_options *o,
872 mmbuffer_t *result_buf,
0c059420
EN
873 const struct diff_filespec *one,
874 const struct diff_filespec *a,
875 const struct diff_filespec *b,
9047ebbc
MV
876 const char *branch1,
877 const char *branch2)
878{
879 mmfile_t orig, src1, src2;
712516bc 880 struct ll_merge_options ll_opts = {0};
4c5868f4 881 char *base_name, *name1, *name2;
9047ebbc 882 int merge_status;
8cc5b290 883
712516bc 884 ll_opts.renormalize = o->renormalize;
58a1ece4 885 ll_opts.xdl_opts = o->xdl_opts;
712516bc
JN
886
887 if (o->call_depth) {
888 ll_opts.virtual_ancestor = 1;
889 ll_opts.variant = 0;
890 } else {
8cc5b290
AP
891 switch (o->recursive_variant) {
892 case MERGE_RECURSIVE_OURS:
712516bc 893 ll_opts.variant = XDL_MERGE_FAVOR_OURS;
8cc5b290
AP
894 break;
895 case MERGE_RECURSIVE_THEIRS:
712516bc 896 ll_opts.variant = XDL_MERGE_FAVOR_THEIRS;
8cc5b290
AP
897 break;
898 default:
712516bc 899 ll_opts.variant = 0;
8cc5b290
AP
900 break;
901 }
902 }
9047ebbc 903
4c5868f4
JN
904 if (strcmp(a->path, b->path) ||
905 (o->ancestor != NULL && strcmp(a->path, one->path) != 0)) {
906 base_name = o->ancestor == NULL ? NULL :
4e2d094d
RJ
907 mkpathdup("%s:%s", o->ancestor, one->path);
908 name1 = mkpathdup("%s:%s", branch1, a->path);
909 name2 = mkpathdup("%s:%s", branch2, b->path);
606475f3 910 } else {
4c5868f4 911 base_name = o->ancestor == NULL ? NULL :
4e2d094d
RJ
912 mkpathdup("%s", o->ancestor);
913 name1 = mkpathdup("%s", branch1);
914 name2 = mkpathdup("%s", branch2);
606475f3 915 }
9047ebbc 916
a0d12c44 917 read_mmblob(&orig, one->oid.hash);
918 read_mmblob(&src1, a->oid.hash);
919 read_mmblob(&src2, b->oid.hash);
9047ebbc 920
4c5868f4 921 merge_status = ll_merge(result_buf, a->path, &orig, base_name,
712516bc 922 &src1, name1, &src2, name2, &ll_opts);
9047ebbc 923
4e2d094d 924 free(base_name);
9047ebbc
MV
925 free(name1);
926 free(name2);
927 free(orig.ptr);
928 free(src1.ptr);
929 free(src2.ptr);
930 return merge_status;
931}
932
3c8a51e8 933static int merge_file_1(struct merge_options *o,
6bdaead1
EN
934 const struct diff_filespec *one,
935 const struct diff_filespec *a,
936 const struct diff_filespec *b,
937 const char *branch1,
3c8a51e8
JS
938 const char *branch2,
939 struct merge_file_info *result)
9047ebbc 940{
3c8a51e8
JS
941 result->merge = 0;
942 result->clean = 1;
9047ebbc
MV
943
944 if ((S_IFMT & a->mode) != (S_IFMT & b->mode)) {
3c8a51e8 945 result->clean = 0;
9047ebbc 946 if (S_ISREG(a->mode)) {
3c8a51e8
JS
947 result->mode = a->mode;
948 oidcpy(&result->oid, &a->oid);
9047ebbc 949 } else {
3c8a51e8
JS
950 result->mode = b->mode;
951 oidcpy(&result->oid, &b->oid);
9047ebbc
MV
952 }
953 } else {
b4da9d62 954 if (!oid_eq(&a->oid, &one->oid) && !oid_eq(&b->oid, &one->oid))
3c8a51e8 955 result->merge = 1;
9047ebbc
MV
956
957 /*
958 * Merge modes
959 */
b7fa51da 960 if (a->mode == b->mode || a->mode == one->mode)
3c8a51e8 961 result->mode = b->mode;
9047ebbc 962 else {
3c8a51e8 963 result->mode = a->mode;
b7fa51da 964 if (b->mode != one->mode) {
3c8a51e8
JS
965 result->clean = 0;
966 result->merge = 1;
9047ebbc
MV
967 }
968 }
969
b4da9d62 970 if (oid_eq(&a->oid, &b->oid) || oid_eq(&a->oid, &one->oid))
3c8a51e8 971 oidcpy(&result->oid, &b->oid);
b4da9d62 972 else if (oid_eq(&b->oid, &one->oid))
3c8a51e8 973 oidcpy(&result->oid, &a->oid);
9047ebbc
MV
974 else if (S_ISREG(a->mode)) {
975 mmbuffer_t result_buf;
6003303a 976 int ret = 0, merge_status;
9047ebbc 977
b7fa51da 978 merge_status = merge_3way(o, &result_buf, one, a, b,
9047ebbc
MV
979 branch1, branch2);
980
981 if ((merge_status < 0) || !result_buf.ptr)
bc9204d4 982 ret = err(o, _("Failed to execute internal merge"));
9047ebbc 983
6003303a
JS
984 if (!ret && write_sha1_file(result_buf.ptr, result_buf.size,
985 blob_type, result->oid.hash))
bc9204d4
JS
986 ret = err(o, _("Unable to add %s to database"),
987 a->path);
9047ebbc
MV
988
989 free(result_buf.ptr);
6003303a
JS
990 if (ret)
991 return ret;
3c8a51e8 992 result->clean = (merge_status == 0);
9047ebbc 993 } else if (S_ISGITLINK(a->mode)) {
3c8a51e8 994 result->clean = merge_submodule(result->oid.hash,
a0d12c44 995 one->path,
996 one->oid.hash,
997 a->oid.hash,
998 b->oid.hash,
80988783 999 !o->call_depth);
9047ebbc 1000 } else if (S_ISLNK(a->mode)) {
3c8a51e8 1001 oidcpy(&result->oid, &a->oid);
9047ebbc 1002
b4da9d62 1003 if (!oid_eq(&a->oid, &b->oid))
3c8a51e8 1004 result->clean = 0;
ef1177d1 1005 } else
7e97e100 1006 die("BUG: unsupported object type in the tree");
9047ebbc
MV
1007 }
1008
3c8a51e8 1009 return 0;
9047ebbc
MV
1010}
1011
3c8a51e8 1012static int merge_file_special_markers(struct merge_options *o,
dac47415
EN
1013 const struct diff_filespec *one,
1014 const struct diff_filespec *a,
1015 const struct diff_filespec *b,
1016 const char *branch1,
1017 const char *filename1,
1018 const char *branch2,
3c8a51e8
JS
1019 const char *filename2,
1020 struct merge_file_info *mfi)
dac47415
EN
1021{
1022 char *side1 = NULL;
1023 char *side2 = NULL;
3c8a51e8 1024 int ret;
dac47415 1025
28310186
JK
1026 if (filename1)
1027 side1 = xstrfmt("%s:%s", branch1, filename1);
1028 if (filename2)
1029 side2 = xstrfmt("%s:%s", branch2, filename2);
dac47415 1030
3c8a51e8
JS
1031 ret = merge_file_1(o, one, a, b,
1032 side1 ? side1 : branch1,
1033 side2 ? side2 : branch2, mfi);
dac47415
EN
1034 free(side1);
1035 free(side2);
3c8a51e8 1036 return ret;
dac47415
EN
1037}
1038
3c8a51e8 1039static int merge_file_one(struct merge_options *o,
6bdaead1 1040 const char *path,
b4da9d62 1041 const struct object_id *o_oid, int o_mode,
1042 const struct object_id *a_oid, int a_mode,
1043 const struct object_id *b_oid, int b_mode,
6bdaead1 1044 const char *branch1,
3c8a51e8
JS
1045 const char *branch2,
1046 struct merge_file_info *mfi)
6bdaead1
EN
1047{
1048 struct diff_filespec one, a, b;
1049
1050 one.path = a.path = b.path = (char *)path;
b4da9d62 1051 oidcpy(&one.oid, o_oid);
6bdaead1 1052 one.mode = o_mode;
b4da9d62 1053 oidcpy(&a.oid, a_oid);
6bdaead1 1054 a.mode = a_mode;
b4da9d62 1055 oidcpy(&b.oid, b_oid);
6bdaead1 1056 b.mode = b_mode;
3c8a51e8 1057 return merge_file_1(o, &one, &a, &b, branch1, branch2, mfi);
6bdaead1
EN
1058}
1059
75456f96 1060static int handle_change_delete(struct merge_options *o,
b7033252 1061 const char *path,
b4da9d62 1062 const struct object_id *o_oid, int o_mode,
1063 const struct object_id *a_oid, int a_mode,
1064 const struct object_id *b_oid, int b_mode,
b7033252
EN
1065 const char *change, const char *change_past)
1066{
1067 char *renamed = NULL;
75456f96 1068 int ret = 0;
b7033252 1069 if (dir_in_way(path, !o->call_depth)) {
b4da9d62 1070 renamed = unique_path(o, path, a_oid ? o->branch1 : o->branch2);
b7033252
EN
1071 }
1072
1073 if (o->call_depth) {
1074 /*
1075 * We cannot arbitrarily accept either a_sha or b_sha as
1076 * correct; since there is no true "middle point" between
1077 * them, simply reuse the base version for virtual merge base.
1078 */
75456f96
JS
1079 ret = remove_file_from_cache(path);
1080 if (!ret)
1081 ret = update_file(o, 0, o_oid, o_mode,
1082 renamed ? renamed : path);
b4da9d62 1083 } else if (!a_oid) {
55653a68
JX
1084 if (!renamed) {
1085 output(o, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1086 "and %s in %s. Version %s of %s left in tree."),
1087 change, path, o->branch1, change_past,
1088 o->branch2, o->branch2, path);
75456f96 1089 ret = update_file(o, 0, b_oid, b_mode, path);
55653a68
JX
1090 } else {
1091 output(o, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1092 "and %s in %s. Version %s of %s left in tree at %s."),
1093 change, path, o->branch1, change_past,
1094 o->branch2, o->branch2, path, renamed);
75456f96 1095 ret = update_file(o, 0, b_oid, b_mode, renamed);
55653a68 1096 }
b7033252 1097 } else {
55653a68
JX
1098 if (!renamed) {
1099 output(o, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1100 "and %s in %s. Version %s of %s left in tree."),
1101 change, path, o->branch2, change_past,
1102 o->branch1, o->branch1, path);
1103 } else {
1104 output(o, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1105 "and %s in %s. Version %s of %s left in tree at %s."),
1106 change, path, o->branch2, change_past,
1107 o->branch1, o->branch1, path, renamed);
75456f96 1108 ret = update_file(o, 0, a_oid, a_mode, renamed);
55653a68 1109 }
35a74abf
EN
1110 /*
1111 * No need to call update_file() on path when !renamed, since
1112 * that would needlessly touch path. We could call
1113 * update_file_flags() with update_cache=0 and update_wd=0,
1114 * but that's a no-op.
1115 */
b7033252
EN
1116 }
1117 free(renamed);
75456f96
JS
1118
1119 return ret;
b7033252
EN
1120}
1121
75456f96 1122static int conflict_rename_delete(struct merge_options *o,
6ef2cb00
EN
1123 struct diff_filepair *pair,
1124 const char *rename_branch,
1125 const char *other_branch)
9047ebbc 1126{
e03acb8b
EN
1127 const struct diff_filespec *orig = pair->one;
1128 const struct diff_filespec *dest = pair->two;
b4da9d62 1129 const struct object_id *a_oid = NULL;
1130 const struct object_id *b_oid = NULL;
e03acb8b
EN
1131 int a_mode = 0;
1132 int b_mode = 0;
1133
1134 if (rename_branch == o->branch1) {
b4da9d62 1135 a_oid = &dest->oid;
e03acb8b
EN
1136 a_mode = dest->mode;
1137 } else {
b4da9d62 1138 b_oid = &dest->oid;
e03acb8b
EN
1139 b_mode = dest->mode;
1140 }
6ef2cb00 1141
75456f96
JS
1142 if (handle_change_delete(o,
1143 o->call_depth ? orig->path : dest->path,
1144 &orig->oid, orig->mode,
1145 a_oid, a_mode,
1146 b_oid, b_mode,
1147 _("rename"), _("renamed")))
1148 return -1;
e03acb8b 1149
75456f96
JS
1150 if (o->call_depth)
1151 return remove_file_from_cache(dest->path);
1152 else
bc9204d4 1153 return update_stages(o, dest->path, NULL,
75456f96
JS
1154 rename_branch == o->branch1 ? dest : NULL,
1155 rename_branch == o->branch1 ? NULL : dest);
6ef2cb00
EN
1156}
1157
1ac91b32
EN
1158static struct diff_filespec *filespec_from_entry(struct diff_filespec *target,
1159 struct stage_data *entry,
1160 int stage)
9047ebbc 1161{
b4da9d62 1162 struct object_id *oid = &entry->stages[stage].oid;
1ac91b32 1163 unsigned mode = entry->stages[stage].mode;
b4da9d62 1164 if (mode == 0 || is_null_oid(oid))
1ac91b32 1165 return NULL;
b4da9d62 1166 oidcpy(&target->oid, oid);
1ac91b32
EN
1167 target->mode = mode;
1168 return target;
1169}
1170
75456f96 1171static int handle_file(struct merge_options *o,
3672c971
EN
1172 struct diff_filespec *rename,
1173 int stage,
1174 struct rename_conflict_info *ci)
1175{
1176 char *dst_name = rename->path;
1177 struct stage_data *dst_entry;
1178 const char *cur_branch, *other_branch;
1179 struct diff_filespec other;
1180 struct diff_filespec *add;
75456f96 1181 int ret;
3672c971
EN
1182
1183 if (stage == 2) {
1184 dst_entry = ci->dst_entry1;
1185 cur_branch = ci->branch1;
1186 other_branch = ci->branch2;
1187 } else {
1188 dst_entry = ci->dst_entry2;
1189 cur_branch = ci->branch2;
1190 other_branch = ci->branch1;
9047ebbc 1191 }
3672c971
EN
1192
1193 add = filespec_from_entry(&other, dst_entry, stage ^ 1);
3672c971
EN
1194 if (add) {
1195 char *add_name = unique_path(o, rename->path, other_branch);
75456f96
JS
1196 if (update_file(o, 0, &add->oid, add->mode, add_name))
1197 return -1;
3672c971
EN
1198
1199 remove_file(o, 0, rename->path, 0);
1200 dst_name = unique_path(o, rename->path, cur_branch);
1201 } else {
1202 if (dir_in_way(rename->path, !o->call_depth)) {
1203 dst_name = unique_path(o, rename->path, cur_branch);
55653a68 1204 output(o, 1, _("%s is a directory in %s adding as %s instead"),
3672c971
EN
1205 rename->path, other_branch, dst_name);
1206 }
9047ebbc 1207 }
75456f96
JS
1208 if ((ret = update_file(o, 0, &rename->oid, rename->mode, dst_name)))
1209 ; /* fall through, do allow dst_name to be released */
1210 else if (stage == 2)
bc9204d4 1211 ret = update_stages(o, rename->path, NULL, rename, add);
f53d3977 1212 else
bc9204d4 1213 ret = update_stages(o, rename->path, NULL, add, rename);
3672c971
EN
1214
1215 if (dst_name != rename->path)
1216 free(dst_name);
75456f96
JS
1217
1218 return ret;
3672c971
EN
1219}
1220
75456f96 1221static int conflict_rename_rename_1to2(struct merge_options *o,
a99b7f22 1222 struct rename_conflict_info *ci)
9047ebbc 1223{
09c01f85 1224 /* One file was renamed in both branches, but to different names. */
a99b7f22
EN
1225 struct diff_filespec *one = ci->pair1->one;
1226 struct diff_filespec *a = ci->pair1->two;
1227 struct diff_filespec *b = ci->pair2->two;
4f66dade 1228
55653a68 1229 output(o, 1, _("CONFLICT (rename/rename): "
4f66dade 1230 "Rename \"%s\"->\"%s\" in branch \"%s\" "
55653a68 1231 "rename \"%s\"->\"%s\" in \"%s\"%s"),
a99b7f22
EN
1232 one->path, a->path, ci->branch1,
1233 one->path, b->path, ci->branch2,
55653a68 1234 o->call_depth ? _(" (left unresolved)") : "");
b7fa51da 1235 if (o->call_depth) {
c52ff85d 1236 struct merge_file_info mfi;
6d63070c
EN
1237 struct diff_filespec other;
1238 struct diff_filespec *add;
3c8a51e8 1239 if (merge_file_one(o, one->path,
b4da9d62 1240 &one->oid, one->mode,
1241 &a->oid, a->mode,
1242 &b->oid, b->mode,
3c8a51e8 1243 ci->branch1, ci->branch2, &mfi))
75456f96
JS
1244 return -1;
1245
9047ebbc 1246 /*
c52ff85d
EN
1247 * FIXME: For rename/add-source conflicts (if we could detect
1248 * such), this is wrong. We should instead find a unique
1249 * pathname and then either rename the add-source file to that
1250 * unique path, or use that unique path instead of src here.
9047ebbc 1251 */
75456f96
JS
1252 if (update_file(o, 0, &mfi.oid, mfi.mode, one->path))
1253 return -1;
07413c5a 1254
6d63070c
EN
1255 /*
1256 * Above, we put the merged content at the merge-base's
1257 * path. Now we usually need to delete both a->path and
1258 * b->path. However, the rename on each side of the merge
1259 * could also be involved in a rename/add conflict. In
1260 * such cases, we should keep the added file around,
1261 * resolving the conflict at that path in its favor.
1262 */
1263 add = filespec_from_entry(&other, ci->dst_entry1, 2 ^ 1);
75456f96
JS
1264 if (add) {
1265 if (update_file(o, 0, &add->oid, add->mode, a->path))
1266 return -1;
1267 }
6d63070c
EN
1268 else
1269 remove_file_from_cache(a->path);
1270 add = filespec_from_entry(&other, ci->dst_entry2, 3 ^ 1);
75456f96
JS
1271 if (add) {
1272 if (update_file(o, 0, &add->oid, add->mode, b->path))
1273 return -1;
1274 }
6d63070c
EN
1275 else
1276 remove_file_from_cache(b->path);
75456f96
JS
1277 } else if (handle_file(o, a, 2, ci) || handle_file(o, b, 3, ci))
1278 return -1;
1279
1280 return 0;
9047ebbc
MV
1281}
1282
75456f96 1283static int conflict_rename_rename_2to1(struct merge_options *o,
461f5041 1284 struct rename_conflict_info *ci)
9047ebbc 1285{
461f5041
EN
1286 /* Two files, a & b, were renamed to the same thing, c. */
1287 struct diff_filespec *a = ci->pair1->one;
1288 struct diff_filespec *b = ci->pair2->one;
1289 struct diff_filespec *c1 = ci->pair1->two;
1290 struct diff_filespec *c2 = ci->pair2->two;
1291 char *path = c1->path; /* == c2->path */
434b8525
EN
1292 struct merge_file_info mfi_c1;
1293 struct merge_file_info mfi_c2;
75456f96 1294 int ret;
461f5041 1295
55653a68 1296 output(o, 1, _("CONFLICT (rename/rename): "
461f5041 1297 "Rename %s->%s in %s. "
55653a68 1298 "Rename %s->%s in %s"),
461f5041
EN
1299 a->path, c1->path, ci->branch1,
1300 b->path, c2->path, ci->branch2);
1301
8e1b62f1
EN
1302 remove_file(o, 1, a->path, o->call_depth || would_lose_untracked(a->path));
1303 remove_file(o, 1, b->path, o->call_depth || would_lose_untracked(b->path));
461f5041 1304
3c8a51e8
JS
1305 if (merge_file_special_markers(o, a, c1, &ci->ren1_other,
1306 o->branch1, c1->path,
1307 o->branch2, ci->ren1_other.path, &mfi_c1) ||
1308 merge_file_special_markers(o, b, &ci->ren2_other, c2,
1309 o->branch1, ci->ren2_other.path,
1310 o->branch2, c2->path, &mfi_c2))
75456f96 1311 return -1;
434b8525 1312
0a6b8712 1313 if (o->call_depth) {
434b8525
EN
1314 /*
1315 * If mfi_c1.clean && mfi_c2.clean, then it might make
1316 * sense to do a two-way merge of those results. But, I
1317 * think in all cases, it makes sense to have the virtual
1318 * merge base just undo the renames; they can be detected
1319 * again later for the non-recursive merge.
1320 */
1321 remove_file(o, 0, path, 0);
75456f96
JS
1322 ret = update_file(o, 0, &mfi_c1.oid, mfi_c1.mode, a->path);
1323 if (!ret)
1324 ret = update_file(o, 0, &mfi_c2.oid, mfi_c2.mode,
1325 b->path);
0a6b8712 1326 } else {
461f5041
EN
1327 char *new_path1 = unique_path(o, path, ci->branch1);
1328 char *new_path2 = unique_path(o, path, ci->branch2);
55653a68 1329 output(o, 1, _("Renaming %s to %s and %s to %s instead"),
461f5041 1330 a->path, new_path1, b->path, new_path2);
0a6b8712 1331 remove_file(o, 0, path, 0);
75456f96
JS
1332 ret = update_file(o, 0, &mfi_c1.oid, mfi_c1.mode, new_path1);
1333 if (!ret)
1334 ret = update_file(o, 0, &mfi_c2.oid, mfi_c2.mode,
1335 new_path2);
0a6b8712
EN
1336 free(new_path2);
1337 free(new_path1);
1338 }
75456f96
JS
1339
1340 return ret;
9047ebbc
MV
1341}
1342
8a2fce18
MV
1343static int process_renames(struct merge_options *o,
1344 struct string_list *a_renames,
1345 struct string_list *b_renames)
9047ebbc
MV
1346{
1347 int clean_merge = 1, i, j;
183113a5
TF
1348 struct string_list a_by_dst = STRING_LIST_INIT_NODUP;
1349 struct string_list b_by_dst = STRING_LIST_INIT_NODUP;
9047ebbc
MV
1350 const struct rename *sre;
1351
1352 for (i = 0; i < a_renames->nr; i++) {
1353 sre = a_renames->items[i].util;
78a395d3 1354 string_list_insert(&a_by_dst, sre->pair->two->path)->util
0a6b8712 1355 = (void *)sre;
9047ebbc
MV
1356 }
1357 for (i = 0; i < b_renames->nr; i++) {
1358 sre = b_renames->items[i].util;
78a395d3 1359 string_list_insert(&b_by_dst, sre->pair->two->path)->util
0a6b8712 1360 = (void *)sre;
9047ebbc
MV
1361 }
1362
1363 for (i = 0, j = 0; i < a_renames->nr || j < b_renames->nr;) {
8e24cbae 1364 struct string_list *renames1, *renames2Dst;
9047ebbc
MV
1365 struct rename *ren1 = NULL, *ren2 = NULL;
1366 const char *branch1, *branch2;
1367 const char *ren1_src, *ren1_dst;
461f5041 1368 struct string_list_item *lookup;
9047ebbc
MV
1369
1370 if (i >= a_renames->nr) {
9047ebbc
MV
1371 ren2 = b_renames->items[j++].util;
1372 } else if (j >= b_renames->nr) {
9047ebbc
MV
1373 ren1 = a_renames->items[i++].util;
1374 } else {
8e24cbae
BK
1375 int compare = strcmp(a_renames->items[i].string,
1376 b_renames->items[j].string);
9047ebbc
MV
1377 if (compare <= 0)
1378 ren1 = a_renames->items[i++].util;
1379 if (compare >= 0)
1380 ren2 = b_renames->items[j++].util;
1381 }
1382
1383 /* TODO: refactor, so that 1/2 are not needed */
1384 if (ren1) {
1385 renames1 = a_renames;
9047ebbc 1386 renames2Dst = &b_by_dst;
8a2fce18
MV
1387 branch1 = o->branch1;
1388 branch2 = o->branch2;
9047ebbc
MV
1389 } else {
1390 struct rename *tmp;
1391 renames1 = b_renames;
9047ebbc 1392 renames2Dst = &a_by_dst;
8a2fce18
MV
1393 branch1 = o->branch2;
1394 branch2 = o->branch1;
9047ebbc
MV
1395 tmp = ren2;
1396 ren2 = ren1;
1397 ren1 = tmp;
1398 }
9047ebbc 1399
9047ebbc
MV
1400 if (ren1->processed)
1401 continue;
1402 ren1->processed = 1;
9047ebbc 1403 ren1->dst_entry->processed = 1;
7769a75e
EN
1404 /* BUG: We should only mark src_entry as processed if we
1405 * are not dealing with a rename + add-source case.
1406 */
9047ebbc 1407 ren1->src_entry->processed = 1;
9047ebbc
MV
1408
1409 ren1_src = ren1->pair->one->path;
1410 ren1_dst = ren1->pair->two->path;
1411
1412 if (ren2) {
461f5041 1413 /* One file renamed on both sides */
9047ebbc
MV
1414 const char *ren2_src = ren2->pair->one->path;
1415 const char *ren2_dst = ren2->pair->two->path;
4f66dade 1416 enum rename_type rename_type;
9047ebbc 1417 if (strcmp(ren1_src, ren2_src) != 0)
ef1177d1 1418 die("BUG: ren1_src != ren2_src");
9047ebbc
MV
1419 ren2->dst_entry->processed = 1;
1420 ren2->processed = 1;
1421 if (strcmp(ren1_dst, ren2_dst) != 0) {
4f66dade 1422 rename_type = RENAME_ONE_FILE_TO_TWO;
461f5041 1423 clean_merge = 0;
9047ebbc 1424 } else {
4f66dade 1425 rename_type = RENAME_ONE_FILE_TO_ONE;
7769a75e
EN
1426 /* BUG: We should only remove ren1_src in
1427 * the base stage (think of rename +
1428 * add-source cases).
1429 */
b7fa51da 1430 remove_file(o, 1, ren1_src, 1);
b8ddf164
EN
1431 update_entry(ren1->dst_entry,
1432 ren1->pair->one,
1433 ren1->pair->two,
1434 ren2->pair->two);
9047ebbc 1435 }
4f66dade
EN
1436 setup_rename_conflict_info(rename_type,
1437 ren1->pair,
1438 ren2->pair,
1439 branch1,
1440 branch2,
1441 ren1->dst_entry,
232c635f
EN
1442 ren2->dst_entry,
1443 o,
1444 NULL,
1445 NULL);
461f5041
EN
1446 } else if ((lookup = string_list_lookup(renames2Dst, ren1_dst))) {
1447 /* Two different files renamed to the same thing */
1448 char *ren2_dst;
1449 ren2 = lookup->util;
1450 ren2_dst = ren2->pair->two->path;
1451 if (strcmp(ren1_dst, ren2_dst) != 0)
ef1177d1 1452 die("BUG: ren1_dst != ren2_dst");
461f5041
EN
1453
1454 clean_merge = 0;
1455 ren2->processed = 1;
1456 /*
1457 * BUG: We should only mark src_entry as processed
1458 * if we are not dealing with a rename + add-source
1459 * case.
1460 */
1461 ren2->src_entry->processed = 1;
1462
1463 setup_rename_conflict_info(RENAME_TWO_FILES_TO_ONE,
1464 ren1->pair,
1465 ren2->pair,
1466 branch1,
1467 branch2,
1468 ren1->dst_entry,
232c635f
EN
1469 ren2->dst_entry,
1470 o,
1471 ren1->src_entry,
1472 ren2->src_entry);
1473
9047ebbc
MV
1474 } else {
1475 /* Renamed in 1, maybe changed in 2 */
9047ebbc
MV
1476 /* we only use sha1 and mode of these */
1477 struct diff_filespec src_other, dst_other;
41d70bd6 1478 int try_merge;
9047ebbc 1479
41d70bd6
EN
1480 /*
1481 * unpack_trees loads entries from common-commit
1482 * into stage 1, from head-commit into stage 2, and
1483 * from merge-commit into stage 3. We keep track
1484 * of which side corresponds to the rename.
1485 */
1486 int renamed_stage = a_renames == renames1 ? 2 : 3;
1487 int other_stage = a_renames == renames1 ? 3 : 2;
9047ebbc 1488
7769a75e
EN
1489 /* BUG: We should only remove ren1_src in the base
1490 * stage and in other_stage (think of rename +
1491 * add-source case).
1492 */
531357a4
EN
1493 remove_file(o, 1, ren1_src,
1494 renamed_stage == 2 || !was_tracked(ren1_src));
9047ebbc 1495
fd429e98 1496 oidcpy(&src_other.oid,
1497 &ren1->src_entry->stages[other_stage].oid);
41d70bd6 1498 src_other.mode = ren1->src_entry->stages[other_stage].mode;
fd429e98 1499 oidcpy(&dst_other.oid,
1500 &ren1->dst_entry->stages[other_stage].oid);
41d70bd6 1501 dst_other.mode = ren1->dst_entry->stages[other_stage].mode;
9047ebbc
MV
1502 try_merge = 0;
1503
b4da9d62 1504 if (oid_eq(&src_other.oid, &null_oid)) {
4f66dade
EN
1505 setup_rename_conflict_info(RENAME_DELETE,
1506 ren1->pair,
1507 NULL,
1508 branch1,
1509 branch2,
1510 ren1->dst_entry,
232c635f
EN
1511 NULL,
1512 o,
1513 NULL,
4f66dade 1514 NULL);
d5af5105 1515 } else if ((dst_other.mode == ren1->pair->two->mode) &&
b4da9d62 1516 oid_eq(&dst_other.oid, &ren1->pair->two->oid)) {
35a74abf
EN
1517 /*
1518 * Added file on the other side identical to
1519 * the file being renamed: clean merge.
1520 * Also, there is no need to overwrite the
1521 * file already in the working copy, so call
1522 * update_file_flags() instead of
1523 * update_file().
1524 */
75456f96
JS
1525 if (update_file_flags(o,
1526 &ren1->pair->two->oid,
1527 ren1->pair->two->mode,
1528 ren1_dst,
1529 1, /* update_cache */
1530 0 /* update_wd */))
1531 clean_merge = -1;
b4da9d62 1532 } else if (!oid_eq(&dst_other.oid, &null_oid)) {
9047ebbc
MV
1533 clean_merge = 0;
1534 try_merge = 1;
55653a68
JX
1535 output(o, 1, _("CONFLICT (rename/add): Rename %s->%s in %s. "
1536 "%s added in %s"),
9047ebbc
MV
1537 ren1_src, ren1_dst, branch1,
1538 ren1_dst, branch2);
c94736a2
JH
1539 if (o->call_depth) {
1540 struct merge_file_info mfi;
3c8a51e8
JS
1541 if (merge_file_one(o, ren1_dst, &null_oid, 0,
1542 &ren1->pair->two->oid,
1543 ren1->pair->two->mode,
1544 &dst_other.oid,
1545 dst_other.mode,
75456f96
JS
1546 branch1, branch2, &mfi)) {
1547 clean_merge = -1;
1548 goto cleanup_and_return;
1549 }
55653a68 1550 output(o, 1, _("Adding merged %s"), ren1_dst);
75456f96
JS
1551 if (update_file(o, 0, &mfi.oid,
1552 mfi.mode, ren1_dst))
1553 clean_merge = -1;
2a669c34 1554 try_merge = 0;
c94736a2 1555 } else {
3d6b8e88 1556 char *new_path = unique_path(o, ren1_dst, branch2);
55653a68 1557 output(o, 1, _("Adding as %s instead"), new_path);
75456f96
JS
1558 if (update_file(o, 0, &dst_other.oid,
1559 dst_other.mode, new_path))
1560 clean_merge = -1;
3d6b8e88 1561 free(new_path);
c94736a2 1562 }
9047ebbc
MV
1563 } else
1564 try_merge = 1;
1565
75456f96
JS
1566 if (clean_merge < 0)
1567 goto cleanup_and_return;
9047ebbc 1568 if (try_merge) {
8a2fce18 1569 struct diff_filespec *one, *a, *b;
9047ebbc
MV
1570 src_other.path = (char *)ren1_src;
1571
8a2fce18 1572 one = ren1->pair->one;
9047ebbc
MV
1573 if (a_renames == renames1) {
1574 a = ren1->pair->two;
1575 b = &src_other;
1576 } else {
1577 b = ren1->pair->two;
1578 a = &src_other;
1579 }
b8ddf164 1580 update_entry(ren1->dst_entry, one, a, b);
4f66dade
EN
1581 setup_rename_conflict_info(RENAME_NORMAL,
1582 ren1->pair,
1583 NULL,
1584 branch1,
1585 NULL,
1586 ren1->dst_entry,
232c635f
EN
1587 NULL,
1588 o,
1589 NULL,
4f66dade 1590 NULL);
9047ebbc
MV
1591 }
1592 }
1593 }
75456f96 1594cleanup_and_return:
9047ebbc
MV
1595 string_list_clear(&a_by_dst, 0);
1596 string_list_clear(&b_by_dst, 0);
1597
1598 return clean_merge;
1599}
1600
b4da9d62 1601static struct object_id *stage_oid(const struct object_id *oid, unsigned mode)
9047ebbc 1602{
b4da9d62 1603 return (is_null_oid(oid) || mode == 0) ? NULL: (struct object_id *)oid;
9047ebbc
MV
1604}
1605
bc9204d4
JS
1606static int read_oid_strbuf(struct merge_options *o,
1607 const struct object_id *oid, struct strbuf *dst)
331a1838
EB
1608{
1609 void *buf;
1610 enum object_type type;
1611 unsigned long size;
b4da9d62 1612 buf = read_sha1_file(oid->hash, &type, &size);
331a1838 1613 if (!buf)
bc9204d4 1614 return err(o, _("cannot read object %s"), oid_to_hex(oid));
331a1838
EB
1615 if (type != OBJ_BLOB) {
1616 free(buf);
bc9204d4 1617 return err(o, _("object %s is not a blob"), oid_to_hex(oid));
331a1838
EB
1618 }
1619 strbuf_attach(dst, buf, size, size + 1);
1620 return 0;
1621}
1622
bc9204d4
JS
1623static int blob_unchanged(struct merge_options *opt,
1624 const struct object_id *o_oid,
72fac66b 1625 unsigned o_mode,
b4da9d62 1626 const struct object_id *a_oid,
72fac66b 1627 unsigned a_mode,
3e7589b7 1628 int renormalize, const char *path)
331a1838
EB
1629{
1630 struct strbuf o = STRBUF_INIT;
1631 struct strbuf a = STRBUF_INIT;
1632 int ret = 0; /* assume changed for safety */
1633
72fac66b
JK
1634 if (a_mode != o_mode)
1635 return 0;
b4da9d62 1636 if (oid_eq(o_oid, a_oid))
331a1838 1637 return 1;
3e7589b7 1638 if (!renormalize)
331a1838
EB
1639 return 0;
1640
b4da9d62 1641 assert(o_oid && a_oid);
bc9204d4 1642 if (read_oid_strbuf(opt, o_oid, &o) || read_oid_strbuf(opt, a_oid, &a))
331a1838
EB
1643 goto error_return;
1644 /*
1645 * Note: binary | is used so that both renormalizations are
1646 * performed. Comparison can be skipped if both files are
1647 * unchanged since their sha1s have already been compared.
1648 */
1649 if (renormalize_buffer(path, o.buf, o.len, &o) |
422af49c 1650 renormalize_buffer(path, a.buf, a.len, &a))
331a1838
EB
1651 ret = (o.len == a.len && !memcmp(o.buf, a.buf, o.len));
1652
1653error_return:
1654 strbuf_release(&o);
1655 strbuf_release(&a);
1656 return ret;
1657}
1658
75456f96 1659static int handle_modify_delete(struct merge_options *o,
5e3ce663 1660 const char *path,
b4da9d62 1661 struct object_id *o_oid, int o_mode,
1662 struct object_id *a_oid, int a_mode,
1663 struct object_id *b_oid, int b_mode)
5e3ce663 1664{
75456f96
JS
1665 return handle_change_delete(o,
1666 path,
1667 o_oid, o_mode,
1668 a_oid, a_mode,
1669 b_oid, b_mode,
1670 _("modify"), _("modified"));
5e3ce663
EN
1671}
1672
0c4918d1
EN
1673static int merge_content(struct merge_options *o,
1674 const char *path,
b4da9d62 1675 struct object_id *o_oid, int o_mode,
1676 struct object_id *a_oid, int a_mode,
1677 struct object_id *b_oid, int b_mode,
4f66dade 1678 struct rename_conflict_info *rename_conflict_info)
0c4918d1 1679{
55653a68 1680 const char *reason = _("content");
5b448b85 1681 const char *path1 = NULL, *path2 = NULL;
0c4918d1
EN
1682 struct merge_file_info mfi;
1683 struct diff_filespec one, a, b;
4ab9a157 1684 unsigned df_conflict_remains = 0;
0c4918d1 1685
b4da9d62 1686 if (!o_oid) {
55653a68 1687 reason = _("add/add");
b4da9d62 1688 o_oid = (struct object_id *)&null_oid;
0c4918d1
EN
1689 }
1690 one.path = a.path = b.path = (char *)path;
b4da9d62 1691 oidcpy(&one.oid, o_oid);
0c4918d1 1692 one.mode = o_mode;
b4da9d62 1693 oidcpy(&a.oid, a_oid);
0c4918d1 1694 a.mode = a_mode;
b4da9d62 1695 oidcpy(&b.oid, b_oid);
0c4918d1
EN
1696 b.mode = b_mode;
1697
3c217c07 1698 if (rename_conflict_info) {
3c217c07
EN
1699 struct diff_filepair *pair1 = rename_conflict_info->pair1;
1700
1701 path1 = (o->branch1 == rename_conflict_info->branch1) ?
1702 pair1->two->path : pair1->one->path;
1703 /* If rename_conflict_info->pair2 != NULL, we are in
1704 * RENAME_ONE_FILE_TO_ONE case. Otherwise, we have a
1705 * normal rename.
1706 */
1707 path2 = (rename_conflict_info->pair2 ||
1708 o->branch2 == rename_conflict_info->branch1) ?
1709 pair1->two->path : pair1->one->path;
3c217c07
EN
1710
1711 if (dir_in_way(path, !o->call_depth))
1712 df_conflict_remains = 1;
4ab9a157 1713 }
3c8a51e8
JS
1714 if (merge_file_special_markers(o, &one, &a, &b,
1715 o->branch1, path1,
1716 o->branch2, path2, &mfi))
1717 return -1;
4ab9a157
EN
1718
1719 if (mfi.clean && !df_conflict_remains &&
b4da9d62 1720 oid_eq(&mfi.oid, a_oid) && mfi.mode == a_mode) {
5b448b85 1721 int path_renamed_outside_HEAD;
55653a68 1722 output(o, 3, _("Skipped %s (merged same as existing)"), path);
5b448b85
EN
1723 /*
1724 * The content merge resulted in the same file contents we
1725 * already had. We can return early if those file contents
1726 * are recorded at the correct path (which may not be true
1727 * if the merge involves a rename).
1728 */
1729 path_renamed_outside_HEAD = !path2 || !strcmp(path, path2);
1730 if (!path_renamed_outside_HEAD) {
bc9204d4 1731 add_cacheinfo(o, mfi.mode, &mfi.oid, path,
d45b7f40 1732 0, (!o->call_depth), 0);
5b448b85
EN
1733 return mfi.clean;
1734 }
1735 } else
55653a68 1736 output(o, 2, _("Auto-merging %s"), path);
0c4918d1
EN
1737
1738 if (!mfi.clean) {
1739 if (S_ISGITLINK(mfi.mode))
55653a68
JX
1740 reason = _("submodule");
1741 output(o, 1, _("CONFLICT (%s): Merge conflict in %s"),
0c4918d1 1742 reason, path);
4f66dade 1743 if (rename_conflict_info && !df_conflict_remains)
bc9204d4 1744 if (update_stages(o, path, &one, &a, &b))
75456f96 1745 return -1;
0c4918d1
EN
1746 }
1747
4ab9a157 1748 if (df_conflict_remains) {
3d6b8e88 1749 char *new_path;
51931bf0
EN
1750 if (o->call_depth) {
1751 remove_file_from_cache(path);
1752 } else {
75456f96 1753 if (!mfi.clean) {
bc9204d4 1754 if (update_stages(o, path, &one, &a, &b))
75456f96
JS
1755 return -1;
1756 } else {
51931bf0
EN
1757 int file_from_stage2 = was_tracked(path);
1758 struct diff_filespec merged;
9b561499 1759 oidcpy(&merged.oid, &mfi.oid);
51931bf0
EN
1760 merged.mode = mfi.mode;
1761
bc9204d4 1762 if (update_stages(o, path, NULL,
75456f96
JS
1763 file_from_stage2 ? &merged : NULL,
1764 file_from_stage2 ? NULL : &merged))
1765 return -1;
51931bf0
EN
1766 }
1767
1768 }
4f66dade 1769 new_path = unique_path(o, path, rename_conflict_info->branch1);
55653a68 1770 output(o, 1, _("Adding as %s instead"), new_path);
75456f96
JS
1771 if (update_file(o, 0, &mfi.oid, mfi.mode, new_path)) {
1772 free(new_path);
1773 return -1;
1774 }
3d6b8e88 1775 free(new_path);
51931bf0 1776 mfi.clean = 0;
75456f96
JS
1777 } else if (update_file(o, mfi.clean, &mfi.oid, mfi.mode, path))
1778 return -1;
0c4918d1 1779 return mfi.clean;
0c4918d1
EN
1780}
1781
9047ebbc 1782/* Per entry merge function */
8a2fce18
MV
1783static int process_entry(struct merge_options *o,
1784 const char *path, struct stage_data *entry)
9047ebbc 1785{
9047ebbc 1786 int clean_merge = 1;
1bc0ab7c 1787 int normalize = o->renormalize;
9047ebbc
MV
1788 unsigned o_mode = entry->stages[1].mode;
1789 unsigned a_mode = entry->stages[2].mode;
1790 unsigned b_mode = entry->stages[3].mode;
b4da9d62 1791 struct object_id *o_oid = stage_oid(&entry->stages[1].oid, o_mode);
1792 struct object_id *a_oid = stage_oid(&entry->stages[2].oid, a_mode);
1793 struct object_id *b_oid = stage_oid(&entry->stages[3].oid, b_mode);
9047ebbc 1794
37348937 1795 entry->processed = 1;
4f66dade
EN
1796 if (entry->rename_conflict_info) {
1797 struct rename_conflict_info *conflict_info = entry->rename_conflict_info;
07413c5a 1798 switch (conflict_info->rename_type) {
882fd11a 1799 case RENAME_NORMAL:
4f66dade 1800 case RENAME_ONE_FILE_TO_ONE:
882fd11a 1801 clean_merge = merge_content(o, path,
b4da9d62 1802 o_oid, o_mode, a_oid, a_mode, b_oid, b_mode,
4f66dade 1803 conflict_info);
882fd11a 1804 break;
3b130adf
EN
1805 case RENAME_DELETE:
1806 clean_merge = 0;
75456f96
JS
1807 if (conflict_rename_delete(o,
1808 conflict_info->pair1,
1809 conflict_info->branch1,
1810 conflict_info->branch2))
1811 clean_merge = -1;
3b130adf 1812 break;
07413c5a 1813 case RENAME_ONE_FILE_TO_TWO:
07413c5a 1814 clean_merge = 0;
75456f96
JS
1815 if (conflict_rename_rename_1to2(o, conflict_info))
1816 clean_merge = -1;
07413c5a 1817 break;
461f5041
EN
1818 case RENAME_TWO_FILES_TO_ONE:
1819 clean_merge = 0;
75456f96
JS
1820 if (conflict_rename_rename_2to1(o, conflict_info))
1821 clean_merge = -1;
07413c5a
EN
1822 break;
1823 default:
1824 entry->processed = 0;
1825 break;
1826 }
b4da9d62 1827 } else if (o_oid && (!a_oid || !b_oid)) {
edd2faf5 1828 /* Case A: Deleted in one */
b4da9d62 1829 if ((!a_oid && !b_oid) ||
bc9204d4
JS
1830 (!b_oid && blob_unchanged(o, o_oid, o_mode, a_oid, a_mode, normalize, path)) ||
1831 (!a_oid && blob_unchanged(o, o_oid, o_mode, b_oid, b_mode, normalize, path))) {
edd2faf5
EN
1832 /* Deleted in both or deleted in one and
1833 * unchanged in the other */
b4da9d62 1834 if (a_oid)
55653a68 1835 output(o, 2, _("Removing %s"), path);
edd2faf5 1836 /* do not touch working file if it did not exist */
b4da9d62 1837 remove_file(o, 1, path, !a_oid);
edd2faf5
EN
1838 } else {
1839 /* Modify/delete; deleted side may have put a directory in the way */
edd2faf5 1840 clean_merge = 0;
75456f96
JS
1841 if (handle_modify_delete(o, path, o_oid, o_mode,
1842 a_oid, a_mode, b_oid, b_mode))
1843 clean_merge = -1;
3d6b8e88 1844 }
b4da9d62 1845 } else if ((!o_oid && a_oid && !b_oid) ||
1846 (!o_oid && !a_oid && b_oid)) {
edd2faf5
EN
1847 /* Case B: Added in one. */
1848 /* [nothing|directory] -> ([nothing|directory], file) */
1849
9c0bbb50
EN
1850 const char *add_branch;
1851 const char *other_branch;
1852 unsigned mode;
b4da9d62 1853 const struct object_id *oid;
9c0bbb50 1854 const char *conf;
37348937 1855
b4da9d62 1856 if (a_oid) {
9c0bbb50
EN
1857 add_branch = o->branch1;
1858 other_branch = o->branch2;
1859 mode = a_mode;
b4da9d62 1860 oid = a_oid;
55653a68 1861 conf = _("file/directory");
9c0bbb50
EN
1862 } else {
1863 add_branch = o->branch2;
1864 other_branch = o->branch1;
1865 mode = b_mode;
b4da9d62 1866 oid = b_oid;
55653a68 1867 conf = _("directory/file");
9c0bbb50 1868 }
f2507b4e 1869 if (dir_in_way(path, !o->call_depth)) {
3d6b8e88 1870 char *new_path = unique_path(o, path, add_branch);
9c0bbb50 1871 clean_merge = 0;
55653a68
JX
1872 output(o, 1, _("CONFLICT (%s): There is a directory with name %s in %s. "
1873 "Adding %s as %s"),
9c0bbb50 1874 conf, path, other_branch, path, new_path);
75456f96
JS
1875 if (update_file(o, 0, oid, mode, new_path))
1876 clean_merge = -1;
1877 else if (o->call_depth)
7b1c610f 1878 remove_file_from_cache(path);
3d6b8e88 1879 free(new_path);
9c0bbb50 1880 } else {
55653a68 1881 output(o, 2, _("Adding %s"), path);
35a74abf 1882 /* do not overwrite file if already present */
75456f96
JS
1883 if (update_file_flags(o, oid, mode, path, 1, !a_oid))
1884 clean_merge = -1;
9c0bbb50 1885 }
b4da9d62 1886 } else if (a_oid && b_oid) {
edd2faf5
EN
1887 /* Case C: Added in both (check for same permissions) and */
1888 /* case D: Modified in both, but differently. */
4f66dade 1889 clean_merge = merge_content(o, path,
b4da9d62 1890 o_oid, o_mode, a_oid, a_mode, b_oid, b_mode,
edd2faf5 1891 NULL);
b4da9d62 1892 } else if (!o_oid && !a_oid && !b_oid) {
edd2faf5
EN
1893 /*
1894 * this entry was deleted altogether. a_mode == 0 means
1895 * we had that path and want to actively remove it.
1896 */
1897 remove_file(o, 1, path, !a_mode);
1898 } else
7e97e100 1899 die("BUG: fatal merge failure, shouldn't happen.");
37348937
EN
1900
1901 return clean_merge;
1902}
1903
8a2fce18
MV
1904int merge_trees(struct merge_options *o,
1905 struct tree *head,
9047ebbc
MV
1906 struct tree *merge,
1907 struct tree *common,
9047ebbc
MV
1908 struct tree **result)
1909{
1910 int code, clean;
1911
85e51b78
JH
1912 if (o->subtree_shift) {
1913 merge = shift_tree_object(head, merge, o->subtree_shift);
1914 common = shift_tree_object(head, common, o->subtree_shift);
9047ebbc
MV
1915 }
1916
b4da9d62 1917 if (oid_eq(&common->object.oid, &merge->object.oid)) {
55653a68 1918 output(o, 0, _("Already up-to-date!"));
9047ebbc
MV
1919 *result = head;
1920 return 1;
1921 }
1922
b7fa51da 1923 code = git_merge_trees(o->call_depth, common, head, merge);
9047ebbc 1924
fadd069d
JH
1925 if (code != 0) {
1926 if (show(o, 4) || o->call_depth)
bc9204d4 1927 err(o, _("merging of trees %s and %s failed"),
f2fd0760 1928 oid_to_hex(&head->object.oid),
1929 oid_to_hex(&merge->object.oid));
6003303a 1930 return -1;
fadd069d 1931 }
9047ebbc
MV
1932
1933 if (unmerged_cache()) {
1934 struct string_list *entries, *re_head, *re_merge;
1935 int i;
696ee23c
MV
1936 string_list_clear(&o->current_file_set, 1);
1937 string_list_clear(&o->current_directory_set, 1);
1938 get_files_dirs(o, head);
1939 get_files_dirs(o, merge);
9047ebbc
MV
1940
1941 entries = get_unmerged();
70cc3d36 1942 record_df_conflict_files(o, entries);
8a2fce18
MV
1943 re_head = get_renames(o, head, common, head, merge, entries);
1944 re_merge = get_renames(o, merge, common, head, merge, entries);
1945 clean = process_renames(o, re_head, re_merge);
75456f96
JS
1946 if (clean < 0)
1947 return clean;
edd2faf5 1948 for (i = entries->nr-1; 0 <= i; i--) {
9047ebbc
MV
1949 const char *path = entries->items[i].string;
1950 struct stage_data *e = entries->items[i].util;
75456f96
JS
1951 if (!e->processed) {
1952 int ret = process_entry(o, path, e);
1953 if (!ret)
1954 clean = 0;
1955 else if (ret < 0)
1956 return ret;
1957 }
9047ebbc 1958 }
7edba4c4
JH
1959 for (i = 0; i < entries->nr; i++) {
1960 struct stage_data *e = entries->items[i].util;
1961 if (!e->processed)
7e97e100 1962 die("BUG: unprocessed path??? %s",
7edba4c4
JH
1963 entries->items[i].string);
1964 }
9047ebbc
MV
1965
1966 string_list_clear(re_merge, 0);
1967 string_list_clear(re_head, 0);
1968 string_list_clear(entries, 1);
1969
473091e2
SB
1970 free(re_merge);
1971 free(re_head);
1972 free(entries);
9047ebbc
MV
1973 }
1974 else
1975 clean = 1;
1976
fbc87eb5
JS
1977 if (o->call_depth && !(*result = write_tree_from_memory(o)))
1978 return -1;
9047ebbc
MV
1979
1980 return clean;
1981}
1982
1983static struct commit_list *reverse_commit_list(struct commit_list *list)
1984{
1985 struct commit_list *next = NULL, *current, *backup;
1986 for (current = list; current; current = backup) {
1987 backup = current->next;
1988 current->next = next;
1989 next = current;
1990 }
1991 return next;
1992}
1993
1994/*
1995 * Merge the commits h1 and h2, return the resulting virtual
1996 * commit object and a flag indicating the cleanness of the merge.
1997 */
8a2fce18
MV
1998int merge_recursive(struct merge_options *o,
1999 struct commit *h1,
9047ebbc 2000 struct commit *h2,
9047ebbc
MV
2001 struct commit_list *ca,
2002 struct commit **result)
2003{
2004 struct commit_list *iter;
2005 struct commit *merged_common_ancestors;
2006 struct tree *mrtree = mrtree;
2007 int clean;
2008
8a2fce18 2009 if (show(o, 4)) {
55653a68 2010 output(o, 4, _("Merging:"));
5033639c
MV
2011 output_commit_title(o, h1);
2012 output_commit_title(o, h2);
9047ebbc
MV
2013 }
2014
2015 if (!ca) {
2ce406cc 2016 ca = get_merge_bases(h1, h2);
9047ebbc
MV
2017 ca = reverse_commit_list(ca);
2018 }
2019
8a2fce18 2020 if (show(o, 5)) {
e0453cd8
RT
2021 unsigned cnt = commit_list_count(ca);
2022
2023 output(o, 5, Q_("found %u common ancestor:",
2024 "found %u common ancestors:", cnt), cnt);
9047ebbc 2025 for (iter = ca; iter; iter = iter->next)
5033639c 2026 output_commit_title(o, iter->item);
9047ebbc
MV
2027 }
2028
2029 merged_common_ancestors = pop_commit(&ca);
2030 if (merged_common_ancestors == NULL) {
03f622c8
JN
2031 /* if there is no common ancestor, use an empty tree */
2032 struct tree *tree;
9047ebbc 2033
cba595bd 2034 tree = lookup_tree(EMPTY_TREE_SHA1_BIN);
9047ebbc
MV
2035 merged_common_ancestors = make_virtual_commit(tree, "ancestor");
2036 }
2037
2038 for (iter = ca; iter; iter = iter->next) {
8a2fce18 2039 const char *saved_b1, *saved_b2;
5033639c 2040 o->call_depth++;
9047ebbc
MV
2041 /*
2042 * When the merge fails, the result contains files
2043 * with conflict markers. The cleanness flag is
de8946de
JS
2044 * ignored (unless indicating an error), it was never
2045 * actually used, as result of merge_trees has always
2046 * overwritten it: the committed "conflicts" were
2047 * already resolved.
9047ebbc
MV
2048 */
2049 discard_cache();
8a2fce18
MV
2050 saved_b1 = o->branch1;
2051 saved_b2 = o->branch2;
2052 o->branch1 = "Temporary merge branch 1";
2053 o->branch2 = "Temporary merge branch 2";
de8946de
JS
2054 if (merge_recursive(o, merged_common_ancestors, iter->item,
2055 NULL, &merged_common_ancestors) < 0)
2056 return -1;
8a2fce18
MV
2057 o->branch1 = saved_b1;
2058 o->branch2 = saved_b2;
5033639c 2059 o->call_depth--;
9047ebbc
MV
2060
2061 if (!merged_common_ancestors)
bc9204d4 2062 return err(o, _("merge returned no commit"));
9047ebbc
MV
2063 }
2064
2065 discard_cache();
b7fa51da 2066 if (!o->call_depth)
9047ebbc 2067 read_cache();
9047ebbc 2068
7ca56aa0 2069 o->ancestor = "merged common ancestors";
8a2fce18
MV
2070 clean = merge_trees(o, h1->tree, h2->tree, merged_common_ancestors->tree,
2071 &mrtree);
de8946de
JS
2072 if (clean < 0)
2073 return clean;
9047ebbc 2074
b7fa51da 2075 if (o->call_depth) {
9047ebbc
MV
2076 *result = make_virtual_commit(mrtree, "merged tree");
2077 commit_list_insert(h1, &(*result)->parents);
2078 commit_list_insert(h2, &(*result)->parents->next);
2079 }
c7d84924 2080 flush_output(o);
548009c0
JS
2081 if (!o->call_depth && o->buffer_output < 2)
2082 strbuf_release(&o->obuf);
f31027c9
JH
2083 if (show(o, 2))
2084 diff_warn_rename_limit("merge.renamelimit",
2085 o->needed_rename_limit, 0);
9047ebbc
MV
2086 return clean;
2087}
2088
4e8161a8 2089static struct commit *get_ref(const struct object_id *oid, const char *name)
73118f89
SB
2090{
2091 struct object *object;
2092
4e8161a8 2093 object = deref_tag(parse_object(oid->hash), name, strlen(name));
73118f89
SB
2094 if (!object)
2095 return NULL;
2096 if (object->type == OBJ_TREE)
2097 return make_virtual_commit((struct tree*)object, name);
2098 if (object->type != OBJ_COMMIT)
2099 return NULL;
2100 if (parse_commit((struct commit *)object))
2101 return NULL;
2102 return (struct commit *)object;
2103}
2104
8a2fce18 2105int merge_recursive_generic(struct merge_options *o,
4e8161a8 2106 const struct object_id *head,
2107 const struct object_id *merge,
8a2fce18 2108 int num_base_list,
4e8161a8 2109 const struct object_id **base_list,
8a2fce18 2110 struct commit **result)
73118f89 2111{
03b86647 2112 int clean;
73118f89 2113 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
8a2fce18
MV
2114 struct commit *head_commit = get_ref(head, o->branch1);
2115 struct commit *next_commit = get_ref(merge, o->branch2);
73118f89
SB
2116 struct commit_list *ca = NULL;
2117
2118 if (base_list) {
2119 int i;
8a2fce18 2120 for (i = 0; i < num_base_list; ++i) {
73118f89 2121 struct commit *base;
4e8161a8 2122 if (!(base = get_ref(base_list[i], oid_to_hex(base_list[i]))))
bc9204d4 2123 return err(o, _("Could not parse object '%s'"),
4e8161a8 2124 oid_to_hex(base_list[i]));
73118f89
SB
2125 commit_list_insert(base, &ca);
2126 }
2127 }
2128
03b86647 2129 hold_locked_index(lock, 1);
8a2fce18
MV
2130 clean = merge_recursive(o, head_commit, next_commit, ca,
2131 result);
de8946de
JS
2132 if (clean < 0)
2133 return clean;
2134
73118f89 2135 if (active_cache_changed &&
03b86647 2136 write_locked_index(&the_index, lock, COMMIT_LOCK))
bc9204d4 2137 return err(o, _("Unable to write index."));
73118f89
SB
2138
2139 return clean ? 0 : 1;
2140}
2141
0e7bcb1b 2142static void merge_recursive_config(struct merge_options *o)
9047ebbc 2143{
0e7bcb1b
TA
2144 git_config_get_int("merge.verbosity", &o->verbosity);
2145 git_config_get_int("diff.renamelimit", &o->diff_rename_limit);
2146 git_config_get_int("merge.renamelimit", &o->merge_rename_limit);
2147 git_config(git_xmerge_config, NULL);
9047ebbc
MV
2148}
2149
8a2fce18 2150void init_merge_options(struct merge_options *o)
9047ebbc 2151{
8a2fce18
MV
2152 memset(o, 0, sizeof(struct merge_options));
2153 o->verbosity = 2;
2154 o->buffer_output = 1;
2155 o->diff_rename_limit = -1;
2156 o->merge_rename_limit = -1;
7610fa57 2157 o->renormalize = 0;
d2b11eca 2158 o->detect_rename = 1;
0e7bcb1b 2159 merge_recursive_config(o);
9047ebbc 2160 if (getenv("GIT_MERGE_VERBOSITY"))
8a2fce18 2161 o->verbosity =
9047ebbc 2162 strtol(getenv("GIT_MERGE_VERBOSITY"), NULL, 10);
8a2fce18
MV
2163 if (o->verbosity >= 5)
2164 o->buffer_output = 0;
c7d84924 2165 strbuf_init(&o->obuf, 0);
f93d7c6f
TA
2166 string_list_init(&o->current_file_set, 1);
2167 string_list_init(&o->current_directory_set, 1);
2168 string_list_init(&o->df_conflict_file_set, 1);
9047ebbc 2169}
635a7bb1
JN
2170
2171int parse_merge_opt(struct merge_options *o, const char *s)
2172{
95b567c7
JK
2173 const char *arg;
2174
635a7bb1
JN
2175 if (!s || !*s)
2176 return -1;
2177 if (!strcmp(s, "ours"))
2178 o->recursive_variant = MERGE_RECURSIVE_OURS;
2179 else if (!strcmp(s, "theirs"))
2180 o->recursive_variant = MERGE_RECURSIVE_THEIRS;
2181 else if (!strcmp(s, "subtree"))
2182 o->subtree_shift = "";
95b567c7
JK
2183 else if (skip_prefix(s, "subtree=", &arg))
2184 o->subtree_shift = arg;
58a1ece4 2185 else if (!strcmp(s, "patience"))
307ab20b 2186 o->xdl_opts = DIFF_WITH_ALG(o, PATIENCE_DIFF);
8c912eea 2187 else if (!strcmp(s, "histogram"))
307ab20b 2188 o->xdl_opts = DIFF_WITH_ALG(o, HISTOGRAM_DIFF);
95b567c7
JK
2189 else if (skip_prefix(s, "diff-algorithm=", &arg)) {
2190 long value = parse_algorithm_value(arg);
07924d4d
MP
2191 if (value < 0)
2192 return -1;
2193 /* clear out previous settings */
2194 DIFF_XDL_CLR(o, NEED_MINIMAL);
2195 o->xdl_opts &= ~XDF_DIFF_ALGORITHM_MASK;
2196 o->xdl_opts |= value;
2197 }
4e5dd044
JF
2198 else if (!strcmp(s, "ignore-space-change"))
2199 o->xdl_opts |= XDF_IGNORE_WHITESPACE_CHANGE;
2200 else if (!strcmp(s, "ignore-all-space"))
2201 o->xdl_opts |= XDF_IGNORE_WHITESPACE;
2202 else if (!strcmp(s, "ignore-space-at-eol"))
2203 o->xdl_opts |= XDF_IGNORE_WHITESPACE_AT_EOL;
635a7bb1
JN
2204 else if (!strcmp(s, "renormalize"))
2205 o->renormalize = 1;
2206 else if (!strcmp(s, "no-renormalize"))
2207 o->renormalize = 0;
d2b11eca
FGA
2208 else if (!strcmp(s, "no-renames"))
2209 o->detect_rename = 0;
87892f60 2210 else if (!strcmp(s, "find-renames")) {
1b47ad16 2211 o->detect_rename = 1;
87892f60
FGA
2212 o->rename_score = 0;
2213 }
1b47ad16
FGA
2214 else if (skip_prefix(s, "find-renames=", &arg) ||
2215 skip_prefix(s, "rename-threshold=", &arg)) {
95b567c7 2216 if ((o->rename_score = parse_rename_score(&arg)) == -1 || *arg != 0)
10ae7526 2217 return -1;
d2b11eca 2218 o->detect_rename = 1;
10ae7526 2219 }
635a7bb1
JN
2220 else
2221 return -1;
2222 return 0;
2223}