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