criss cross rename failure workaround
[git/dscho.git] / merge-recursive.c
blob4b0c694c68f68fd8e1fac6538dfa3b4911659111
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 "advice.h"
7 #include "cache.h"
8 #include "cache-tree.h"
9 #include "commit.h"
10 #include "blob.h"
11 #include "builtin.h"
12 #include "tree-walk.h"
13 #include "diff.h"
14 #include "diffcore.h"
15 #include "tag.h"
16 #include "unpack-trees.h"
17 #include "string-list.h"
18 #include "xdiff-interface.h"
19 #include "ll-merge.h"
20 #include "attr.h"
21 #include "merge-recursive.h"
22 #include "dir.h"
23 #include "submodule.h"
25 static struct tree *shift_tree_object(struct tree *one, struct tree *two,
26 const char *subtree_shift)
28 unsigned char shifted[20];
30 if (!*subtree_shift) {
31 shift_tree(one->object.sha1, two->object.sha1, shifted, 0);
32 } else {
33 shift_tree_by(one->object.sha1, two->object.sha1, shifted,
34 subtree_shift);
36 if (!hashcmp(two->object.sha1, shifted))
37 return two;
38 return lookup_tree(shifted);
42 * A virtual commit has (const char *)commit->util set to the name.
45 static struct commit *make_virtual_commit(struct tree *tree, const char *comment)
47 struct commit *commit = xcalloc(1, sizeof(struct commit));
48 commit->tree = tree;
49 commit->util = (void*)comment;
50 /* avoid warnings */
51 commit->object.parsed = 1;
52 return commit;
56 * Since we use get_tree_entry(), which does not put the read object into
57 * the object pool, we cannot rely on a == b.
59 static int sha_eq(const unsigned char *a, const unsigned char *b)
61 if (!a && !b)
62 return 2;
63 return a && b && hashcmp(a, b) == 0;
66 enum rename_type {
67 RENAME_NORMAL = 0,
68 RENAME_DELETE,
69 RENAME_ONE_FILE_TO_TWO
72 struct rename_df_conflict_info {
73 enum rename_type rename_type;
74 struct diff_filepair *pair1;
75 struct diff_filepair *pair2;
76 const char *branch1;
77 const char *branch2;
78 struct stage_data *dst_entry1;
79 struct stage_data *dst_entry2;
83 * Since we want to write the index eventually, we cannot reuse the index
84 * for these (temporary) data.
86 struct stage_data {
87 struct {
88 unsigned mode;
89 unsigned char sha[20];
90 } stages[4];
91 struct rename_df_conflict_info *rename_df_conflict_info;
92 unsigned processed:1;
95 static inline void setup_rename_df_conflict_info(enum rename_type rename_type,
96 struct diff_filepair *pair1,
97 struct diff_filepair *pair2,
98 const char *branch1,
99 const char *branch2,
100 struct stage_data *dst_entry1,
101 struct stage_data *dst_entry2)
103 struct rename_df_conflict_info *ci = xcalloc(1, sizeof(struct rename_df_conflict_info));
104 ci->rename_type = rename_type;
105 ci->pair1 = pair1;
106 ci->branch1 = branch1;
107 ci->branch2 = branch2;
109 ci->dst_entry1 = dst_entry1;
110 dst_entry1->rename_df_conflict_info = ci;
111 dst_entry1->processed = 0;
113 assert(!pair2 == !dst_entry2);
114 if (dst_entry2) {
115 ci->dst_entry2 = dst_entry2;
116 ci->pair2 = pair2;
117 dst_entry2->rename_df_conflict_info = ci;
118 dst_entry2->processed = 0;
122 static int show(struct merge_options *o, int v)
124 return (!o->call_depth && o->verbosity >= v) || o->verbosity >= 5;
127 static void flush_output(struct merge_options *o)
129 if (o->obuf.len) {
130 fputs(o->obuf.buf, stdout);
131 strbuf_reset(&o->obuf);
135 __attribute__((format (printf, 3, 4)))
136 static void output(struct merge_options *o, int v, const char *fmt, ...)
138 va_list ap;
140 if (!show(o, v))
141 return;
143 strbuf_grow(&o->obuf, o->call_depth * 2 + 2);
144 memset(o->obuf.buf + o->obuf.len, ' ', o->call_depth * 2);
145 strbuf_setlen(&o->obuf, o->obuf.len + o->call_depth * 2);
147 va_start(ap, fmt);
148 strbuf_vaddf(&o->obuf, fmt, ap);
149 va_end(ap);
151 strbuf_add(&o->obuf, "\n", 1);
152 if (!o->buffer_output)
153 flush_output(o);
156 static void output_commit_title(struct merge_options *o, struct commit *commit)
158 int i;
159 flush_output(o);
160 for (i = o->call_depth; i--;)
161 fputs(" ", stdout);
162 if (commit->util)
163 printf("virtual %s\n", (char *)commit->util);
164 else {
165 printf("%s ", find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV));
166 if (parse_commit(commit) != 0)
167 printf("(bad commit)\n");
168 else {
169 const char *title;
170 int len = find_commit_subject(commit->buffer, &title);
171 if (len)
172 printf("%.*s\n", len, title);
177 static int add_cacheinfo(unsigned int mode, const unsigned char *sha1,
178 const char *path, int stage, int refresh, int options)
180 struct cache_entry *ce;
181 ce = make_cache_entry(mode, sha1 ? sha1 : null_sha1, path, stage, refresh);
182 if (!ce)
183 return error("addinfo_cache failed for path '%s'", path);
184 return add_cache_entry(ce, options);
187 static void init_tree_desc_from_tree(struct tree_desc *desc, struct tree *tree)
189 parse_tree(tree);
190 init_tree_desc(desc, tree->buffer, tree->size);
193 static int git_merge_trees(int index_only,
194 struct tree *common,
195 struct tree *head,
196 struct tree *merge)
198 int rc;
199 struct tree_desc t[3];
200 struct unpack_trees_options opts;
202 memset(&opts, 0, sizeof(opts));
203 if (index_only)
204 opts.index_only = 1;
205 else
206 opts.update = 1;
207 opts.merge = 1;
208 opts.head_idx = 2;
209 opts.fn = threeway_merge;
210 opts.src_index = &the_index;
211 opts.dst_index = &the_index;
212 setup_unpack_trees_porcelain(&opts, "merge");
214 init_tree_desc_from_tree(t+0, common);
215 init_tree_desc_from_tree(t+1, head);
216 init_tree_desc_from_tree(t+2, merge);
218 rc = unpack_trees(3, t, &opts);
219 cache_tree_free(&active_cache_tree);
220 return rc;
223 struct tree *write_tree_from_memory(struct merge_options *o)
225 struct tree *result = NULL;
227 if (unmerged_cache()) {
228 int i;
229 fprintf(stderr, "BUG: There are unmerged index entries:\n");
230 for (i = 0; i < active_nr; i++) {
231 struct cache_entry *ce = active_cache[i];
232 if (ce_stage(ce))
233 fprintf(stderr, "BUG: %d %.*s", ce_stage(ce),
234 (int)ce_namelen(ce), ce->name);
236 die("Bug in merge-recursive.c");
239 if (!active_cache_tree)
240 active_cache_tree = cache_tree();
242 if (!cache_tree_fully_valid(active_cache_tree) &&
243 cache_tree_update(active_cache_tree,
244 active_cache, active_nr, 0, 0) < 0)
245 die("error building trees");
247 result = lookup_tree(active_cache_tree->sha1);
249 return result;
252 static int save_files_dirs(const unsigned char *sha1,
253 const char *base, int baselen, const char *path,
254 unsigned int mode, int stage, void *context)
256 int len = strlen(path);
257 char *newpath = xmalloc(baselen + len + 1);
258 struct merge_options *o = context;
260 memcpy(newpath, base, baselen);
261 memcpy(newpath + baselen, path, len);
262 newpath[baselen + len] = '\0';
264 if (S_ISDIR(mode))
265 string_list_insert(&o->current_directory_set, newpath);
266 else
267 string_list_insert(&o->current_file_set, newpath);
268 free(newpath);
270 return (S_ISDIR(mode) ? READ_TREE_RECURSIVE : 0);
273 static int get_files_dirs(struct merge_options *o, struct tree *tree)
275 int n;
276 struct pathspec match_all;
277 init_pathspec(&match_all, NULL);
278 if (read_tree_recursive(tree, "", 0, 0, &match_all, save_files_dirs, o))
279 return 0;
280 n = o->current_file_set.nr + o->current_directory_set.nr;
281 return n;
285 * Returns an index_entry instance which doesn't have to correspond to
286 * a real cache entry in Git's index.
288 static struct stage_data *insert_stage_data(const char *path,
289 struct tree *o, struct tree *a, struct tree *b,
290 struct string_list *entries)
292 struct string_list_item *item;
293 struct stage_data *e = xcalloc(1, sizeof(struct stage_data));
294 get_tree_entry(o->object.sha1, path,
295 e->stages[1].sha, &e->stages[1].mode);
296 get_tree_entry(a->object.sha1, path,
297 e->stages[2].sha, &e->stages[2].mode);
298 get_tree_entry(b->object.sha1, path,
299 e->stages[3].sha, &e->stages[3].mode);
300 item = string_list_insert(entries, path);
301 item->util = e;
302 return e;
306 * Create a dictionary mapping file names to stage_data objects. The
307 * dictionary contains one entry for every path with a non-zero stage entry.
309 static struct string_list *get_unmerged(void)
311 struct string_list *unmerged = xcalloc(1, sizeof(struct string_list));
312 int i;
314 unmerged->strdup_strings = 1;
316 for (i = 0; i < active_nr; i++) {
317 struct string_list_item *item;
318 struct stage_data *e;
319 struct cache_entry *ce = active_cache[i];
320 if (!ce_stage(ce))
321 continue;
323 item = string_list_lookup(unmerged, ce->name);
324 if (!item) {
325 item = string_list_insert(unmerged, ce->name);
326 item->util = xcalloc(1, sizeof(struct stage_data));
328 e = item->util;
329 e->stages[ce_stage(ce)].mode = ce->ce_mode;
330 hashcpy(e->stages[ce_stage(ce)].sha, ce->sha1);
333 return unmerged;
336 static void make_room_for_directories_of_df_conflicts(struct merge_options *o,
337 struct string_list *entries)
339 /* If there are D/F conflicts, and the paths currently exist
340 * in the working copy as a file, we want to remove them to
341 * make room for the corresponding directory. Such paths will
342 * later be processed in process_df_entry() at the end. If
343 * the corresponding directory ends up being removed by the
344 * merge, then the file will be reinstated at that time
345 * (albeit with a different timestamp!); otherwise, if the
346 * file is not supposed to be removed by the merge, the
347 * contents of the file will be placed in another unique
348 * filename.
350 * NOTE: This function relies on the fact that entries for a
351 * D/F conflict will appear adjacent in the index, with the
352 * entries for the file appearing before entries for paths
353 * below the corresponding directory.
355 const char *last_file = NULL;
356 int last_len = 0;
357 int i;
360 * Do not do any of this crazyness during the recursive; we don't
361 * even write anything to the working tree!
363 if (o->call_depth)
364 return;
366 for (i = 0; i < entries->nr; i++) {
367 const char *path = entries->items[i].string;
368 int len = strlen(path);
369 struct stage_data *e = entries->items[i].util;
372 * Check if last_file & path correspond to a D/F conflict;
373 * i.e. whether path is last_file+'/'+<something>.
374 * If so, remove last_file to make room for path and friends.
376 if (last_file &&
377 len > last_len &&
378 memcmp(path, last_file, last_len) == 0 &&
379 path[last_len] == '/') {
380 output(o, 3, "Removing %s to make room for subdirectory; may re-add later.", last_file);
381 unlink(last_file);
385 * Determine whether path could exist as a file in the
386 * working directory as a possible D/F conflict. This
387 * will only occur when it exists in stage 2 as a
388 * file.
390 if (S_ISREG(e->stages[2].mode) || S_ISLNK(e->stages[2].mode)) {
391 last_file = path;
392 last_len = len;
393 } else {
394 last_file = NULL;
399 struct rename {
400 struct diff_filepair *pair;
401 struct stage_data *src_entry;
402 struct stage_data *dst_entry;
403 unsigned processed:1;
407 * Get information of all renames which occurred between 'o_tree' and
408 * 'tree'. We need the three trees in the merge ('o_tree', 'a_tree' and
409 * 'b_tree') to be able to associate the correct cache entries with
410 * the rename information. 'tree' is always equal to either a_tree or b_tree.
412 static struct string_list *get_renames(struct merge_options *o,
413 struct tree *tree,
414 struct tree *o_tree,
415 struct tree *a_tree,
416 struct tree *b_tree,
417 struct string_list *entries)
419 int i;
420 struct string_list *renames;
421 struct diff_options opts;
423 renames = xcalloc(1, sizeof(struct string_list));
424 diff_setup(&opts);
425 DIFF_OPT_SET(&opts, RECURSIVE);
426 opts.detect_rename = DIFF_DETECT_RENAME;
427 opts.rename_limit = o->merge_rename_limit >= 0 ? o->merge_rename_limit :
428 o->diff_rename_limit >= 0 ? o->diff_rename_limit :
429 1000;
430 opts.rename_score = o->rename_score;
431 opts.show_rename_progress = o->show_rename_progress;
432 opts.output_format = DIFF_FORMAT_NO_OUTPUT;
433 opts.break_opt = 0;
434 if (diff_setup_done(&opts) < 0)
435 die("diff setup failed");
436 diff_tree_sha1(o_tree->object.sha1, tree->object.sha1, "", &opts);
437 diffcore_std(&opts);
438 if (opts.needed_rename_limit > o->needed_rename_limit)
439 o->needed_rename_limit = opts.needed_rename_limit;
440 for (i = 0; i < diff_queued_diff.nr; ++i) {
441 struct string_list_item *item;
442 struct rename *re;
443 struct diff_filepair *pair = diff_queued_diff.queue[i];
444 if (pair->status != 'R') {
445 diff_free_filepair(pair);
446 continue;
448 re = xmalloc(sizeof(*re));
449 re->processed = 0;
450 re->pair = pair;
451 item = string_list_lookup(entries, re->pair->one->path);
452 if (!item)
453 re->src_entry = insert_stage_data(re->pair->one->path,
454 o_tree, a_tree, b_tree, entries);
455 else
456 re->src_entry = item->util;
458 item = string_list_lookup(entries, re->pair->two->path);
459 if (!item)
460 re->dst_entry = insert_stage_data(re->pair->two->path,
461 o_tree, a_tree, b_tree, entries);
462 else
463 re->dst_entry = item->util;
464 item = string_list_insert(renames, pair->one->path);
465 item->util = re;
467 opts.output_format = DIFF_FORMAT_NO_OUTPUT;
468 diff_queued_diff.nr = 0;
469 diff_flush(&opts);
470 return renames;
473 static int update_stages_options(const char *path, struct diff_filespec *o,
474 struct diff_filespec *a, struct diff_filespec *b,
475 int clear, int options)
477 if (clear)
478 if (remove_file_from_cache(path))
479 return -1;
480 if (o)
481 if (add_cacheinfo(o->mode, o->sha1, path, 1, 0, options))
482 return -1;
483 if (a)
484 if (add_cacheinfo(a->mode, a->sha1, path, 2, 0, options))
485 return -1;
486 if (b)
487 if (add_cacheinfo(b->mode, b->sha1, path, 3, 0, options))
488 return -1;
489 return 0;
492 static int update_stages(const char *path, struct diff_filespec *o,
493 struct diff_filespec *a, struct diff_filespec *b,
494 int clear)
496 int options = ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE;
497 return update_stages_options(path, o, a, b, clear, options);
500 static int update_stages_and_entry(const char *path,
501 struct stage_data *entry,
502 struct diff_filespec *o,
503 struct diff_filespec *a,
504 struct diff_filespec *b,
505 int clear)
507 int options;
509 entry->processed = 0;
510 entry->stages[1].mode = o->mode;
511 entry->stages[2].mode = a->mode;
512 entry->stages[3].mode = b->mode;
513 hashcpy(entry->stages[1].sha, o->sha1);
514 hashcpy(entry->stages[2].sha, a->sha1);
515 hashcpy(entry->stages[3].sha, b->sha1);
516 options = ADD_CACHE_OK_TO_ADD | ADD_CACHE_SKIP_DFCHECK;
517 return update_stages_options(path, o, a, b, clear, options);
520 static int remove_file(struct merge_options *o, int clean,
521 const char *path, int no_wd)
523 int update_cache = o->call_depth || clean;
524 int update_working_directory = !o->call_depth && !no_wd;
526 if (update_cache) {
527 if (remove_file_from_cache(path))
528 return -1;
530 if (update_working_directory) {
531 if (remove_path(path))
532 return -1;
534 return 0;
537 static char *unique_path(struct merge_options *o, const char *path, const char *branch)
539 char *newpath = xmalloc(strlen(path) + 1 + strlen(branch) + 8 + 1);
540 int suffix = 0;
541 struct stat st;
542 char *p = newpath + strlen(path);
543 strcpy(newpath, path);
544 *(p++) = '~';
545 strcpy(p, branch);
546 for (; *p; ++p)
547 if ('/' == *p)
548 *p = '_';
549 while (string_list_has_string(&o->current_file_set, newpath) ||
550 string_list_has_string(&o->current_directory_set, newpath) ||
551 lstat(newpath, &st) == 0)
552 sprintf(p, "_%d", suffix++);
554 string_list_insert(&o->current_file_set, newpath);
555 return newpath;
558 static void flush_buffer(int fd, const char *buf, unsigned long size)
560 while (size > 0) {
561 long ret = write_in_full(fd, buf, size);
562 if (ret < 0) {
563 /* Ignore epipe */
564 if (errno == EPIPE)
565 break;
566 die_errno("merge-recursive");
567 } else if (!ret) {
568 die("merge-recursive: disk full?");
570 size -= ret;
571 buf += ret;
575 static int would_lose_untracked(const char *path)
577 int pos = cache_name_pos(path, strlen(path));
579 if (pos < 0)
580 pos = -1 - pos;
581 while (pos < active_nr &&
582 !strcmp(path, active_cache[pos]->name)) {
584 * If stage #0, it is definitely tracked.
585 * If it has stage #2 then it was tracked
586 * before this merge started. All other
587 * cases the path was not tracked.
589 switch (ce_stage(active_cache[pos])) {
590 case 0:
591 case 2:
592 return 0;
594 pos++;
596 return file_exists(path);
599 static int make_room_for_path(const char *path)
601 int status;
602 const char *msg = "failed to create path '%s'%s";
604 status = safe_create_leading_directories_const(path);
605 if (status) {
606 if (status == -3) {
607 /* something else exists */
608 error(msg, path, ": perhaps a D/F conflict?");
609 return -1;
611 die(msg, path, "");
615 * Do not unlink a file in the work tree if we are not
616 * tracking it.
618 if (would_lose_untracked(path))
619 return error("refusing to lose untracked file at '%s'",
620 path);
622 /* Successful unlink is good.. */
623 if (!unlink(path))
624 return 0;
625 /* .. and so is no existing file */
626 if (errno == ENOENT)
627 return 0;
628 /* .. but not some other error (who really cares what?) */
629 return error(msg, path, ": perhaps a D/F conflict?");
632 static void update_file_flags(struct merge_options *o,
633 const unsigned char *sha,
634 unsigned mode,
635 const char *path,
636 int update_cache,
637 int update_wd)
639 if (o->call_depth)
640 update_wd = 0;
642 if (update_wd) {
643 enum object_type type;
644 void *buf;
645 unsigned long size;
647 if (S_ISGITLINK(mode)) {
649 * We may later decide to recursively descend into
650 * the submodule directory and update its index
651 * and/or work tree, but we do not do that now.
653 update_wd = 0;
654 goto update_index;
657 buf = read_sha1_file(sha, &type, &size);
658 if (!buf)
659 die("cannot read object %s '%s'", sha1_to_hex(sha), path);
660 if (type != OBJ_BLOB)
661 die("blob expected for %s '%s'", sha1_to_hex(sha), path);
662 if (S_ISREG(mode)) {
663 struct strbuf strbuf = STRBUF_INIT;
664 if (convert_to_working_tree(path, buf, size, &strbuf)) {
665 free(buf);
666 size = strbuf.len;
667 buf = strbuf_detach(&strbuf, NULL);
671 if (make_room_for_path(path) < 0) {
672 update_wd = 0;
673 free(buf);
674 goto update_index;
676 if (S_ISREG(mode) || (!has_symlinks && S_ISLNK(mode))) {
677 int fd;
678 if (mode & 0100)
679 mode = 0777;
680 else
681 mode = 0666;
682 fd = open(path, O_WRONLY | O_TRUNC | O_CREAT, mode);
683 if (fd < 0)
684 die_errno("failed to open '%s'", path);
685 flush_buffer(fd, buf, size);
686 close(fd);
687 } else if (S_ISLNK(mode)) {
688 char *lnk = xmemdupz(buf, size);
689 safe_create_leading_directories_const(path);
690 unlink(path);
691 if (symlink(lnk, path))
692 die_errno("failed to symlink '%s'", path);
693 free(lnk);
694 } else
695 die("do not know what to do with %06o %s '%s'",
696 mode, sha1_to_hex(sha), path);
697 free(buf);
699 update_index:
700 if (update_cache)
701 add_cacheinfo(mode, sha, path, 0, update_wd, ADD_CACHE_OK_TO_ADD);
704 static void update_file(struct merge_options *o,
705 int clean,
706 const unsigned char *sha,
707 unsigned mode,
708 const char *path)
710 update_file_flags(o, sha, mode, path, o->call_depth || clean, !o->call_depth);
713 static int update_or_remove(struct merge_options *o,
714 const unsigned char *sha1, unsigned mode,
715 const char *path, int update_wd)
717 if (is_null_sha1(sha1))
718 return remove_file(o, 1, path, !update_wd);
720 update_file_flags(o, sha1, mode, path, 1, update_wd);
721 return 0;
724 static void merge_rename_source(struct merge_options *o,
725 const char *path,
726 struct stage_data *d)
728 if (is_null_sha1(d->stages[2].sha)) {
730 * If both were real renames (not from a broken pair), we can
731 * stop caring about the path. We don't touch the working
732 * directory, though. The path must be gone in HEAD, so there
733 * is no point (and anything we did delete would be an
734 * untracked file).
736 if (is_null_sha1(d->stages[3].sha)) {
737 remove_file(o, 1, path, 1);
738 return;
742 * If "ours" was a real rename, but the other side came
743 * from a broken pair, then their version is the right
744 * resolution (because we have no content, ours having been
745 * renamed away, and they have new content).
747 update_file_flags(o, d->stages[3].sha, d->stages[3].mode,
748 path, 1, 1);
749 return;
753 * Now we have the opposite. "theirs" is a real rename, but ours
754 * is from a broken pair. We resolve in favor of us, but we don't
755 * need to touch the working directory.
757 if (is_null_sha1(d->stages[3].sha)) {
758 update_file_flags(o, d->stages[2].sha, d->stages[2].mode,
759 path, 1, 0);
760 return;
764 * Otherwise, both came from broken pairs. We need to do an actual
765 * merge on the entries. We can just mark it as unprocessed and
766 * the regular code will handle it.
768 d->processed = 0;
771 /* Low level file merging, update and removal */
773 struct merge_file_info {
774 unsigned char sha[20];
775 unsigned mode;
776 unsigned clean:1,
777 merge:1;
780 static int merge_3way(struct merge_options *o,
781 mmbuffer_t *result_buf,
782 struct diff_filespec *one,
783 struct diff_filespec *a,
784 struct diff_filespec *b,
785 const char *branch1,
786 const char *branch2)
788 mmfile_t orig, src1, src2;
789 struct ll_merge_options ll_opts = {0};
790 char *base_name, *name1, *name2;
791 int merge_status;
793 ll_opts.renormalize = o->renormalize;
794 ll_opts.xdl_opts = o->xdl_opts;
796 if (o->call_depth) {
797 ll_opts.virtual_ancestor = 1;
798 ll_opts.variant = 0;
799 } else {
800 switch (o->recursive_variant) {
801 case MERGE_RECURSIVE_OURS:
802 ll_opts.variant = XDL_MERGE_FAVOR_OURS;
803 break;
804 case MERGE_RECURSIVE_THEIRS:
805 ll_opts.variant = XDL_MERGE_FAVOR_THEIRS;
806 break;
807 default:
808 ll_opts.variant = 0;
809 break;
813 if (strcmp(a->path, b->path) ||
814 (o->ancestor != NULL && strcmp(a->path, one->path) != 0)) {
815 base_name = o->ancestor == NULL ? NULL :
816 xstrdup(mkpath("%s:%s", o->ancestor, one->path));
817 name1 = xstrdup(mkpath("%s:%s", branch1, a->path));
818 name2 = xstrdup(mkpath("%s:%s", branch2, b->path));
819 } else {
820 base_name = o->ancestor == NULL ? NULL :
821 xstrdup(mkpath("%s", o->ancestor));
822 name1 = xstrdup(mkpath("%s", branch1));
823 name2 = xstrdup(mkpath("%s", branch2));
826 read_mmblob(&orig, one->sha1);
827 read_mmblob(&src1, a->sha1);
828 read_mmblob(&src2, b->sha1);
830 merge_status = ll_merge(result_buf, a->path, &orig, base_name,
831 &src1, name1, &src2, name2, &ll_opts);
833 free(name1);
834 free(name2);
835 free(orig.ptr);
836 free(src1.ptr);
837 free(src2.ptr);
838 return merge_status;
841 static struct merge_file_info merge_file(struct merge_options *o,
842 struct diff_filespec *one,
843 struct diff_filespec *a,
844 struct diff_filespec *b,
845 const char *branch1,
846 const char *branch2)
848 struct merge_file_info result;
849 result.merge = 0;
850 result.clean = 1;
852 if ((S_IFMT & a->mode) != (S_IFMT & b->mode)) {
853 result.clean = 0;
854 if (S_ISREG(a->mode)) {
855 result.mode = a->mode;
856 hashcpy(result.sha, a->sha1);
857 } else {
858 result.mode = b->mode;
859 hashcpy(result.sha, b->sha1);
861 } else {
862 if (!sha_eq(a->sha1, one->sha1) && !sha_eq(b->sha1, one->sha1))
863 result.merge = 1;
866 * Merge modes
868 if (a->mode == b->mode || a->mode == one->mode)
869 result.mode = b->mode;
870 else {
871 result.mode = a->mode;
872 if (b->mode != one->mode) {
873 result.clean = 0;
874 result.merge = 1;
878 if (sha_eq(a->sha1, b->sha1) || sha_eq(a->sha1, one->sha1))
879 hashcpy(result.sha, b->sha1);
880 else if (sha_eq(b->sha1, one->sha1))
881 hashcpy(result.sha, a->sha1);
882 else if (S_ISREG(a->mode)) {
883 mmbuffer_t result_buf;
884 int merge_status;
886 merge_status = merge_3way(o, &result_buf, one, a, b,
887 branch1, branch2);
889 if ((merge_status < 0) || !result_buf.ptr)
890 die("Failed to execute internal merge");
892 if (write_sha1_file(result_buf.ptr, result_buf.size,
893 blob_type, result.sha))
894 die("Unable to add %s to database",
895 a->path);
897 free(result_buf.ptr);
898 result.clean = (merge_status == 0);
899 } else if (S_ISGITLINK(a->mode)) {
900 result.clean = merge_submodule(result.sha, one->path, one->sha1,
901 a->sha1, b->sha1);
902 } else if (S_ISLNK(a->mode)) {
903 hashcpy(result.sha, a->sha1);
905 if (!sha_eq(a->sha1, b->sha1))
906 result.clean = 0;
907 } else {
908 die("unsupported object type in the tree");
912 return result;
915 static void conflict_rename_delete(struct merge_options *o,
916 struct diff_filepair *pair,
917 const char *rename_branch,
918 const char *other_branch)
920 char *dest_name = pair->two->path;
921 int df_conflict = 0;
922 struct stat st;
924 output(o, 1, "CONFLICT (rename/delete): Rename %s->%s in %s "
925 "and deleted in %s",
926 pair->one->path, pair->two->path, rename_branch,
927 other_branch);
928 if (!o->call_depth)
929 update_stages(dest_name, NULL,
930 rename_branch == o->branch1 ? pair->two : NULL,
931 rename_branch == o->branch1 ? NULL : pair->two,
933 if (lstat(dest_name, &st) == 0 && S_ISDIR(st.st_mode)) {
934 dest_name = unique_path(o, dest_name, rename_branch);
935 df_conflict = 1;
937 update_file(o, 0, pair->two->sha1, pair->two->mode, dest_name);
938 if (df_conflict)
939 free(dest_name);
942 static void conflict_rename_rename_1to2(struct merge_options *o,
943 struct diff_filepair *pair1,
944 const char *branch1,
945 struct diff_filepair *pair2,
946 const char *branch2)
948 /* One file was renamed in both branches, but to different names. */
949 char *del[2];
950 int delp = 0;
951 const char *ren1_dst = pair1->two->path;
952 const char *ren2_dst = pair2->two->path;
953 const char *dst_name1 = ren1_dst;
954 const char *dst_name2 = ren2_dst;
955 struct stat st;
956 if (lstat(ren1_dst, &st) == 0 && S_ISDIR(st.st_mode)) {
957 dst_name1 = del[delp++] = unique_path(o, ren1_dst, branch1);
958 output(o, 1, "%s is a directory in %s adding as %s instead",
959 ren1_dst, branch2, dst_name1);
961 if (lstat(ren2_dst, &st) == 0 && S_ISDIR(st.st_mode)) {
962 dst_name2 = del[delp++] = unique_path(o, ren2_dst, branch2);
963 output(o, 1, "%s is a directory in %s adding as %s instead",
964 ren2_dst, branch1, dst_name2);
966 if (o->call_depth) {
967 remove_file_from_cache(dst_name1);
968 remove_file_from_cache(dst_name2);
970 * Uncomment to leave the conflicting names in the resulting tree
972 * update_file(o, 0, pair1->two->sha1, pair1->two->mode, dst_name1);
973 * update_file(o, 0, pair2->two->sha1, pair2->two->mode, dst_name2);
975 } else {
976 update_stages(ren1_dst, NULL, pair1->two, NULL, 1);
977 update_stages(ren2_dst, NULL, NULL, pair2->two, 1);
979 update_file(o, 0, pair1->two->sha1, pair1->two->mode, dst_name1);
980 update_file(o, 0, pair2->two->sha1, pair2->two->mode, dst_name2);
982 while (delp--)
983 free(del[delp]);
986 static void conflict_rename_rename_2to1(struct merge_options *o,
987 struct rename *ren1,
988 const char *branch1,
989 struct rename *ren2,
990 const char *branch2)
992 /* Two files were renamed to the same thing. */
993 char *new_path1 = unique_path(o, ren1->pair->two->path, branch1);
994 char *new_path2 = unique_path(o, ren2->pair->two->path, branch2);
995 output(o, 1, "Renaming %s to %s and %s to %s instead",
996 ren1->pair->one->path, new_path1,
997 ren2->pair->one->path, new_path2);
998 remove_file(o, 0, ren1->pair->two->path, 0);
999 update_file(o, 0, ren1->pair->two->sha1, ren1->pair->two->mode, new_path1);
1000 update_file(o, 0, ren2->pair->two->sha1, ren2->pair->two->mode, new_path2);
1001 free(new_path2);
1002 free(new_path1);
1005 static int process_renames(struct merge_options *o,
1006 struct string_list *a_renames,
1007 struct string_list *b_renames)
1009 int clean_merge = 1, i, j;
1010 struct string_list a_by_dst = STRING_LIST_INIT_NODUP;
1011 struct string_list b_by_dst = STRING_LIST_INIT_NODUP;
1012 const struct rename *sre;
1014 for (i = 0; i < a_renames->nr; i++) {
1015 sre = a_renames->items[i].util;
1016 string_list_insert(&a_by_dst, sre->pair->two->path)->util
1017 = sre->dst_entry;
1019 for (i = 0; i < b_renames->nr; i++) {
1020 sre = b_renames->items[i].util;
1021 string_list_insert(&b_by_dst, sre->pair->two->path)->util
1022 = sre->dst_entry;
1025 for (i = 0, j = 0; i < a_renames->nr || j < b_renames->nr;) {
1026 struct string_list *renames1, *renames2Dst;
1027 struct rename *ren1 = NULL, *ren2 = NULL;
1028 const char *branch1, *branch2;
1029 const char *ren1_src, *ren1_dst;
1031 if (i >= a_renames->nr) {
1032 ren2 = b_renames->items[j++].util;
1033 } else if (j >= b_renames->nr) {
1034 ren1 = a_renames->items[i++].util;
1035 } else {
1036 int compare = strcmp(a_renames->items[i].string,
1037 b_renames->items[j].string);
1038 if (compare <= 0)
1039 ren1 = a_renames->items[i++].util;
1040 if (compare >= 0)
1041 ren2 = b_renames->items[j++].util;
1044 /* TODO: refactor, so that 1/2 are not needed */
1045 if (ren1) {
1046 renames1 = a_renames;
1047 renames2Dst = &b_by_dst;
1048 branch1 = o->branch1;
1049 branch2 = o->branch2;
1050 } else {
1051 struct rename *tmp;
1052 renames1 = b_renames;
1053 renames2Dst = &a_by_dst;
1054 branch1 = o->branch2;
1055 branch2 = o->branch1;
1056 tmp = ren2;
1057 ren2 = ren1;
1058 ren1 = tmp;
1061 ren1->dst_entry->processed = 1;
1062 ren1->src_entry->processed = 1;
1064 if (ren1->processed)
1065 continue;
1066 ren1->processed = 1;
1068 ren1_src = ren1->pair->one->path;
1069 ren1_dst = ren1->pair->two->path;
1071 if (ren2) {
1072 const char *ren2_src = ren2->pair->one->path;
1073 const char *ren2_dst = ren2->pair->two->path;
1074 /* Renamed in 1 and renamed in 2 */
1075 if (strcmp(ren1_src, ren2_src) != 0)
1076 die("ren1.src != ren2.src");
1077 ren2->dst_entry->processed = 1;
1078 ren2->processed = 1;
1079 if (strcmp(ren1_dst, ren2_dst) != 0) {
1080 setup_rename_df_conflict_info(RENAME_ONE_FILE_TO_TWO,
1081 ren1->pair,
1082 ren2->pair,
1083 branch1,
1084 branch2,
1085 ren1->dst_entry,
1086 ren2->dst_entry);
1087 } else {
1088 merge_rename_source(o, ren1_src, ren1->src_entry);
1089 update_stages_and_entry(ren1_dst,
1090 ren1->dst_entry,
1091 ren1->pair->one,
1092 ren1->pair->two,
1093 ren2->pair->two,
1094 1 /* clear */);
1096 } else {
1097 /* Renamed in 1, maybe changed in 2 */
1098 struct string_list_item *item;
1099 /* we only use sha1 and mode of these */
1100 struct diff_filespec src_other, dst_other;
1101 int try_merge;
1104 * unpack_trees loads entries from common-commit
1105 * into stage 1, from head-commit into stage 2, and
1106 * from merge-commit into stage 3. We keep track
1107 * of which side corresponds to the rename.
1109 int renamed_stage = a_renames == renames1 ? 2 : 3;
1110 int other_stage = a_renames == renames1 ? 3 : 2;
1112 update_or_remove(o,
1113 ren1->src_entry->stages[renamed_stage].sha,
1114 ren1->src_entry->stages[renamed_stage].mode,
1115 ren1_src, renamed_stage == 3);
1117 hashcpy(src_other.sha1, ren1->src_entry->stages[other_stage].sha);
1118 src_other.mode = ren1->src_entry->stages[other_stage].mode;
1119 hashcpy(dst_other.sha1, ren1->dst_entry->stages[other_stage].sha);
1120 dst_other.mode = ren1->dst_entry->stages[other_stage].mode;
1121 try_merge = 0;
1123 if (sha_eq(src_other.sha1, null_sha1)) {
1124 if (string_list_has_string(&o->current_directory_set, ren1_dst)) {
1125 ren1->dst_entry->processed = 0;
1126 setup_rename_df_conflict_info(RENAME_DELETE,
1127 ren1->pair,
1128 NULL,
1129 branch1,
1130 branch2,
1131 ren1->dst_entry,
1132 NULL);
1133 } else {
1134 clean_merge = 0;
1135 conflict_rename_delete(o, ren1->pair, branch1, branch2);
1137 } else if ((dst_other.mode == ren1->pair->two->mode) &&
1138 sha_eq(dst_other.sha1, ren1->pair->two->sha1)) {
1139 /* Added file on the other side
1140 identical to the file being
1141 renamed: clean merge */
1142 update_file(o, 1, ren1->pair->two->sha1, ren1->pair->two->mode, ren1_dst);
1143 } else if (!sha_eq(dst_other.sha1, null_sha1)) {
1144 const char *new_path;
1145 clean_merge = 0;
1146 try_merge = 1;
1147 output(o, 1, "CONFLICT (rename/add): Rename %s->%s in %s. "
1148 "%s added in %s",
1149 ren1_src, ren1_dst, branch1,
1150 ren1_dst, branch2);
1151 if (o->call_depth) {
1152 struct merge_file_info mfi;
1153 struct diff_filespec one, a, b;
1155 one.path = a.path = b.path =
1156 (char *)ren1_dst;
1157 hashcpy(one.sha1, null_sha1);
1158 one.mode = 0;
1159 hashcpy(a.sha1, ren1->pair->two->sha1);
1160 a.mode = ren1->pair->two->mode;
1161 hashcpy(b.sha1, dst_other.sha1);
1162 b.mode = dst_other.mode;
1163 mfi = merge_file(o, &one, &a, &b,
1164 branch1,
1165 branch2);
1166 output(o, 1, "Adding merged %s", ren1_dst);
1167 update_file(o, 0,
1168 mfi.sha,
1169 mfi.mode,
1170 ren1_dst);
1171 try_merge = 0;
1172 } else {
1173 new_path = unique_path(o, ren1_dst, branch2);
1174 output(o, 1, "Adding as %s instead", new_path);
1175 update_file(o, 0, dst_other.sha1, dst_other.mode, new_path);
1177 } else if ((item = string_list_lookup(renames2Dst, ren1_dst))) {
1178 ren2 = item->util;
1179 clean_merge = 0;
1180 ren2->processed = 1;
1181 output(o, 1, "CONFLICT (rename/rename): "
1182 "Rename %s->%s in %s. "
1183 "Rename %s->%s in %s",
1184 ren1_src, ren1_dst, branch1,
1185 ren2->pair->one->path, ren2->pair->two->path, branch2);
1186 conflict_rename_rename_2to1(o, ren1, branch1, ren2, branch2);
1187 } else
1188 try_merge = 1;
1190 if (try_merge) {
1191 struct diff_filespec *one, *a, *b;
1192 src_other.path = (char *)ren1_src;
1194 one = ren1->pair->one;
1195 if (a_renames == renames1) {
1196 a = ren1->pair->two;
1197 b = &src_other;
1198 } else {
1199 b = ren1->pair->two;
1200 a = &src_other;
1202 update_stages_and_entry(ren1_dst, ren1->dst_entry, one, a, b, 1);
1203 if (string_list_has_string(&o->current_directory_set, ren1_dst)) {
1204 setup_rename_df_conflict_info(RENAME_NORMAL,
1205 ren1->pair,
1206 NULL,
1207 branch1,
1208 NULL,
1209 ren1->dst_entry,
1210 NULL);
1215 string_list_clear(&a_by_dst, 0);
1216 string_list_clear(&b_by_dst, 0);
1218 return clean_merge;
1221 static unsigned char *stage_sha(const unsigned char *sha, unsigned mode)
1223 return (is_null_sha1(sha) || mode == 0) ? NULL: (unsigned char *)sha;
1226 static int read_sha1_strbuf(const unsigned char *sha1, struct strbuf *dst)
1228 void *buf;
1229 enum object_type type;
1230 unsigned long size;
1231 buf = read_sha1_file(sha1, &type, &size);
1232 if (!buf)
1233 return error("cannot read object %s", sha1_to_hex(sha1));
1234 if (type != OBJ_BLOB) {
1235 free(buf);
1236 return error("object %s is not a blob", sha1_to_hex(sha1));
1238 strbuf_attach(dst, buf, size, size + 1);
1239 return 0;
1242 static int blob_unchanged(const unsigned char *o_sha,
1243 const unsigned char *a_sha,
1244 int renormalize, const char *path)
1246 struct strbuf o = STRBUF_INIT;
1247 struct strbuf a = STRBUF_INIT;
1248 int ret = 0; /* assume changed for safety */
1250 if (sha_eq(o_sha, a_sha))
1251 return 1;
1252 if (!renormalize)
1253 return 0;
1255 assert(o_sha && a_sha);
1256 if (read_sha1_strbuf(o_sha, &o) || read_sha1_strbuf(a_sha, &a))
1257 goto error_return;
1259 * Note: binary | is used so that both renormalizations are
1260 * performed. Comparison can be skipped if both files are
1261 * unchanged since their sha1s have already been compared.
1263 if (renormalize_buffer(path, o.buf, o.len, &o) |
1264 renormalize_buffer(path, a.buf, o.len, &a))
1265 ret = (o.len == a.len && !memcmp(o.buf, a.buf, o.len));
1267 error_return:
1268 strbuf_release(&o);
1269 strbuf_release(&a);
1270 return ret;
1273 static void handle_delete_modify(struct merge_options *o,
1274 const char *path,
1275 const char *new_path,
1276 unsigned char *a_sha, int a_mode,
1277 unsigned char *b_sha, int b_mode)
1279 if (!a_sha) {
1280 output(o, 1, "CONFLICT (delete/modify): %s deleted in %s "
1281 "and modified in %s. Version %s of %s left in tree%s%s.",
1282 path, o->branch1,
1283 o->branch2, o->branch2, path,
1284 path == new_path ? "" : " at ",
1285 path == new_path ? "" : new_path);
1286 update_file(o, 0, b_sha, b_mode, new_path);
1287 } else {
1288 output(o, 1, "CONFLICT (delete/modify): %s deleted in %s "
1289 "and modified in %s. Version %s of %s left in tree%s%s.",
1290 path, o->branch2,
1291 o->branch1, o->branch1, path,
1292 path == new_path ? "" : " at ",
1293 path == new_path ? "" : new_path);
1294 update_file(o, 0, a_sha, a_mode, new_path);
1298 static int merge_content(struct merge_options *o,
1299 const char *path,
1300 unsigned char *o_sha, int o_mode,
1301 unsigned char *a_sha, int a_mode,
1302 unsigned char *b_sha, int b_mode,
1303 const char *df_rename_conflict_branch)
1305 const char *reason = "content";
1306 struct merge_file_info mfi;
1307 struct diff_filespec one, a, b;
1308 struct stat st;
1309 unsigned df_conflict_remains = 0;
1311 if (!o_sha) {
1312 reason = "add/add";
1313 o_sha = (unsigned char *)null_sha1;
1315 one.path = a.path = b.path = (char *)path;
1316 hashcpy(one.sha1, o_sha);
1317 one.mode = o_mode;
1318 hashcpy(a.sha1, a_sha);
1319 a.mode = a_mode;
1320 hashcpy(b.sha1, b_sha);
1321 b.mode = b_mode;
1323 mfi = merge_file(o, &one, &a, &b, o->branch1, o->branch2);
1324 if (df_rename_conflict_branch &&
1325 lstat(path, &st) == 0 && S_ISDIR(st.st_mode)) {
1326 df_conflict_remains = 1;
1329 if (mfi.clean && !df_conflict_remains &&
1330 sha_eq(mfi.sha, a_sha) && mfi.mode == a.mode &&
1331 !o->call_depth && !lstat(path, &st)) {
1332 output(o, 3, "Skipped %s (merged same as existing)", path);
1333 add_cacheinfo(mfi.mode, mfi.sha, path,
1334 0 /*stage*/, 1 /*refresh*/, 0 /*options*/);
1335 return mfi.clean;
1336 } else
1337 output(o, 2, "Auto-merging %s", path);
1339 if (!mfi.clean) {
1340 if (S_ISGITLINK(mfi.mode))
1341 reason = "submodule";
1342 output(o, 1, "CONFLICT (%s): Merge conflict in %s",
1343 reason, path);
1346 if (df_conflict_remains) {
1347 const char *new_path;
1348 update_file_flags(o, mfi.sha, mfi.mode, path,
1349 o->call_depth || mfi.clean, 0);
1350 new_path = unique_path(o, path, df_rename_conflict_branch);
1351 mfi.clean = 0;
1352 output(o, 1, "Adding as %s instead", new_path);
1353 update_file_flags(o, mfi.sha, mfi.mode, new_path, 0, 1);
1354 } else {
1355 update_file(o, mfi.clean, mfi.sha, mfi.mode, path);
1357 return mfi.clean;
1361 /* Per entry merge function */
1362 static int process_entry(struct merge_options *o,
1363 const char *path, struct stage_data *entry)
1366 printf("processing entry, clean cache: %s\n", index_only ? "yes": "no");
1367 print_index_entry("\tpath: ", entry);
1369 int clean_merge = 1;
1370 int normalize = o->renormalize;
1371 unsigned o_mode = entry->stages[1].mode;
1372 unsigned a_mode = entry->stages[2].mode;
1373 unsigned b_mode = entry->stages[3].mode;
1374 unsigned char *o_sha = stage_sha(entry->stages[1].sha, o_mode);
1375 unsigned char *a_sha = stage_sha(entry->stages[2].sha, a_mode);
1376 unsigned char *b_sha = stage_sha(entry->stages[3].sha, b_mode);
1378 if (entry->rename_df_conflict_info)
1379 return 1; /* Such cases are handled elsewhere. */
1381 entry->processed = 1;
1382 if (o_sha && (!a_sha || !b_sha)) {
1383 /* Case A: Deleted in one */
1384 if ((!a_sha && !b_sha) ||
1385 (!b_sha && blob_unchanged(o_sha, a_sha, normalize, path)) ||
1386 (!a_sha && blob_unchanged(o_sha, b_sha, normalize, path))) {
1387 /* Deleted in both or deleted in one and
1388 * unchanged in the other */
1389 if (a_sha)
1390 output(o, 2, "Removing %s", path);
1391 /* do not touch working file if it did not exist */
1392 remove_file(o, 1, path, !a_sha);
1393 } else if (string_list_has_string(&o->current_directory_set,
1394 path)) {
1395 entry->processed = 0;
1396 return 1; /* Assume clean until processed */
1397 } else {
1398 /* Deleted in one and changed in the other */
1399 clean_merge = 0;
1400 handle_delete_modify(o, path, path,
1401 a_sha, a_mode, b_sha, b_mode);
1404 } else if ((!o_sha && a_sha && !b_sha) ||
1405 (!o_sha && !a_sha && b_sha)) {
1406 /* Case B: Added in one. */
1407 unsigned mode;
1408 const unsigned char *sha;
1410 if (a_sha) {
1411 mode = a_mode;
1412 sha = a_sha;
1413 } else {
1414 mode = b_mode;
1415 sha = b_sha;
1417 if (string_list_has_string(&o->current_directory_set, path)) {
1418 /* Handle D->F conflicts after all subfiles */
1419 entry->processed = 0;
1420 return 1; /* Assume clean until processed */
1421 } else {
1422 output(o, 2, "Adding %s", path);
1423 update_file(o, 1, sha, mode, path);
1425 } else if (a_sha && b_sha) {
1426 /* Case C: Added in both (check for same permissions) and */
1427 /* case D: Modified in both, but differently. */
1428 clean_merge = merge_content(o, path,
1429 o_sha, o_mode, a_sha, a_mode, b_sha, b_mode,
1430 NULL);
1431 } else if (!o_sha && !a_sha && !b_sha) {
1433 * this entry was deleted altogether. a_mode == 0 means
1434 * we had that path and want to actively remove it.
1436 remove_file(o, 1, path, !a_mode);
1437 } else
1438 die("Fatal merge failure, shouldn't happen.");
1440 return clean_merge;
1444 * Per entry merge function for D/F (and/or rename) conflicts. In the
1445 * cases we can cleanly resolve D/F conflicts, process_entry() can
1446 * clean out all the files below the directory for us. All D/F
1447 * conflict cases must be handled here at the end to make sure any
1448 * directories that can be cleaned out, are.
1450 * Some rename conflicts may also be handled here that don't necessarily
1451 * involve D/F conflicts, since the code to handle them is generic enough
1452 * to handle those rename conflicts with or without D/F conflicts also
1453 * being involved.
1455 static int process_df_entry(struct merge_options *o,
1456 const char *path, struct stage_data *entry)
1458 int clean_merge = 1;
1459 unsigned o_mode = entry->stages[1].mode;
1460 unsigned a_mode = entry->stages[2].mode;
1461 unsigned b_mode = entry->stages[3].mode;
1462 unsigned char *o_sha = stage_sha(entry->stages[1].sha, o_mode);
1463 unsigned char *a_sha = stage_sha(entry->stages[2].sha, a_mode);
1464 unsigned char *b_sha = stage_sha(entry->stages[3].sha, b_mode);
1465 struct stat st;
1467 entry->processed = 1;
1468 if (entry->rename_df_conflict_info) {
1469 struct rename_df_conflict_info *conflict_info = entry->rename_df_conflict_info;
1470 char *src;
1471 switch (conflict_info->rename_type) {
1472 case RENAME_NORMAL:
1473 clean_merge = merge_content(o, path,
1474 o_sha, o_mode, a_sha, a_mode, b_sha, b_mode,
1475 conflict_info->branch1);
1476 break;
1477 case RENAME_DELETE:
1478 clean_merge = 0;
1479 conflict_rename_delete(o, conflict_info->pair1,
1480 conflict_info->branch1,
1481 conflict_info->branch2);
1482 break;
1483 case RENAME_ONE_FILE_TO_TWO:
1484 src = conflict_info->pair1->one->path;
1485 clean_merge = 0;
1486 output(o, 1, "CONFLICT (rename/rename): "
1487 "Rename \"%s\"->\"%s\" in branch \"%s\" "
1488 "rename \"%s\"->\"%s\" in \"%s\"%s",
1489 src, conflict_info->pair1->two->path, conflict_info->branch1,
1490 src, conflict_info->pair2->two->path, conflict_info->branch2,
1491 o->call_depth ? " (left unresolved)" : "");
1492 if (o->call_depth) {
1493 remove_file_from_cache(src);
1494 update_file(o, 0, conflict_info->pair1->one->sha1,
1495 conflict_info->pair1->one->mode, src);
1497 conflict_rename_rename_1to2(o, conflict_info->pair1,
1498 conflict_info->branch1,
1499 conflict_info->pair2,
1500 conflict_info->branch2);
1501 conflict_info->dst_entry2->processed = 1;
1502 break;
1503 default:
1504 entry->processed = 0;
1505 break;
1507 } else if (o_sha && (!a_sha || !b_sha)) {
1508 /* Modify/delete; deleted side may have put a directory in the way */
1509 const char *new_path = path;
1510 if (lstat(path, &st) == 0 && S_ISDIR(st.st_mode))
1511 new_path = unique_path(o, path, a_sha ? o->branch1 : o->branch2);
1512 clean_merge = 0;
1513 handle_delete_modify(o, path, new_path,
1514 a_sha, a_mode, b_sha, b_mode);
1515 } else if (!o_sha && !!a_sha != !!b_sha) {
1516 /* directory -> (directory, file) */
1517 const char *add_branch;
1518 const char *other_branch;
1519 unsigned mode;
1520 const unsigned char *sha;
1521 const char *conf;
1523 if (a_sha) {
1524 add_branch = o->branch1;
1525 other_branch = o->branch2;
1526 mode = a_mode;
1527 sha = a_sha;
1528 conf = "file/directory";
1529 } else {
1530 add_branch = o->branch2;
1531 other_branch = o->branch1;
1532 mode = b_mode;
1533 sha = b_sha;
1534 conf = "directory/file";
1536 if (lstat(path, &st) == 0 && S_ISDIR(st.st_mode)) {
1537 const char *new_path = unique_path(o, path, add_branch);
1538 clean_merge = 0;
1539 output(o, 1, "CONFLICT (%s): There is a directory with name %s in %s. "
1540 "Adding %s as %s",
1541 conf, path, other_branch, path, new_path);
1542 update_file(o, 0, sha, mode, new_path);
1543 } else {
1544 output(o, 2, "Adding %s", path);
1545 update_file(o, 1, sha, mode, path);
1547 } else {
1548 entry->processed = 0;
1549 return 1; /* not handled; assume clean until processed */
1552 return clean_merge;
1555 int merge_trees(struct merge_options *o,
1556 struct tree *head,
1557 struct tree *merge,
1558 struct tree *common,
1559 struct tree **result)
1561 int code, clean;
1563 if (o->subtree_shift) {
1564 merge = shift_tree_object(head, merge, o->subtree_shift);
1565 common = shift_tree_object(head, common, o->subtree_shift);
1568 if (sha_eq(common->object.sha1, merge->object.sha1)) {
1569 output(o, 0, "Already up-to-date!");
1570 *result = head;
1571 return 1;
1574 code = git_merge_trees(o->call_depth, common, head, merge);
1576 if (code != 0) {
1577 if (show(o, 4) || o->call_depth)
1578 die("merging of trees %s and %s failed",
1579 sha1_to_hex(head->object.sha1),
1580 sha1_to_hex(merge->object.sha1));
1581 else
1582 exit(128);
1585 if (unmerged_cache()) {
1586 struct string_list *entries, *re_head, *re_merge;
1587 int i;
1588 string_list_clear(&o->current_file_set, 1);
1589 string_list_clear(&o->current_directory_set, 1);
1590 get_files_dirs(o, head);
1591 get_files_dirs(o, merge);
1593 entries = get_unmerged();
1594 make_room_for_directories_of_df_conflicts(o, entries);
1595 re_head = get_renames(o, head, common, head, merge, entries);
1596 re_merge = get_renames(o, merge, common, head, merge, entries);
1597 clean = process_renames(o, re_head, re_merge);
1598 for (i = 0; i < entries->nr; i++) {
1599 const char *path = entries->items[i].string;
1600 struct stage_data *e = entries->items[i].util;
1601 if (!e->processed
1602 && !process_entry(o, path, e))
1603 clean = 0;
1605 for (i = 0; i < entries->nr; i++) {
1606 const char *path = entries->items[i].string;
1607 struct stage_data *e = entries->items[i].util;
1608 if (!e->processed
1609 && !process_df_entry(o, path, e))
1610 clean = 0;
1612 for (i = 0; i < entries->nr; i++) {
1613 struct stage_data *e = entries->items[i].util;
1614 if (!e->processed)
1615 die("Unprocessed path??? %s",
1616 entries->items[i].string);
1619 string_list_clear(re_merge, 0);
1620 string_list_clear(re_head, 0);
1621 string_list_clear(entries, 1);
1624 else
1625 clean = 1;
1627 if (o->call_depth)
1628 *result = write_tree_from_memory(o);
1630 return clean;
1633 static struct commit_list *reverse_commit_list(struct commit_list *list)
1635 struct commit_list *next = NULL, *current, *backup;
1636 for (current = list; current; current = backup) {
1637 backup = current->next;
1638 current->next = next;
1639 next = current;
1641 return next;
1645 * Merge the commits h1 and h2, return the resulting virtual
1646 * commit object and a flag indicating the cleanness of the merge.
1648 int merge_recursive(struct merge_options *o,
1649 struct commit *h1,
1650 struct commit *h2,
1651 struct commit_list *ca,
1652 struct commit **result)
1654 struct commit_list *iter;
1655 struct commit *merged_common_ancestors;
1656 struct tree *mrtree = mrtree;
1657 int clean;
1659 if (show(o, 4)) {
1660 output(o, 4, "Merging:");
1661 output_commit_title(o, h1);
1662 output_commit_title(o, h2);
1665 if (!ca) {
1666 ca = get_merge_bases(h1, h2, 1);
1667 ca = reverse_commit_list(ca);
1670 if (show(o, 5)) {
1671 output(o, 5, "found %u common ancestor(s):", commit_list_count(ca));
1672 for (iter = ca; iter; iter = iter->next)
1673 output_commit_title(o, iter->item);
1676 merged_common_ancestors = pop_commit(&ca);
1677 if (merged_common_ancestors == NULL) {
1678 /* if there is no common ancestor, make an empty tree */
1679 struct tree *tree = xcalloc(1, sizeof(struct tree));
1681 tree->object.parsed = 1;
1682 tree->object.type = OBJ_TREE;
1683 pretend_sha1_file(NULL, 0, OBJ_TREE, tree->object.sha1);
1684 merged_common_ancestors = make_virtual_commit(tree, "ancestor");
1687 for (iter = ca; iter; iter = iter->next) {
1688 const char *saved_b1, *saved_b2;
1689 o->call_depth++;
1691 * When the merge fails, the result contains files
1692 * with conflict markers. The cleanness flag is
1693 * ignored, it was never actually used, as result of
1694 * merge_trees has always overwritten it: the committed
1695 * "conflicts" were already resolved.
1697 discard_cache();
1698 saved_b1 = o->branch1;
1699 saved_b2 = o->branch2;
1700 o->branch1 = "Temporary merge branch 1";
1701 o->branch2 = "Temporary merge branch 2";
1702 merge_recursive(o, merged_common_ancestors, iter->item,
1703 NULL, &merged_common_ancestors);
1704 o->branch1 = saved_b1;
1705 o->branch2 = saved_b2;
1706 o->call_depth--;
1708 if (!merged_common_ancestors)
1709 die("merge returned no commit");
1712 discard_cache();
1713 if (!o->call_depth)
1714 read_cache();
1716 o->ancestor = "merged common ancestors";
1717 clean = merge_trees(o, h1->tree, h2->tree, merged_common_ancestors->tree,
1718 &mrtree);
1720 if (o->call_depth) {
1721 *result = make_virtual_commit(mrtree, "merged tree");
1722 commit_list_insert(h1, &(*result)->parents);
1723 commit_list_insert(h2, &(*result)->parents->next);
1725 flush_output(o);
1726 if (show(o, 2))
1727 diff_warn_rename_limit("merge.renamelimit",
1728 o->needed_rename_limit, 0);
1729 return clean;
1732 static struct commit *get_ref(const unsigned char *sha1, const char *name)
1734 struct object *object;
1736 object = deref_tag(parse_object(sha1), name, strlen(name));
1737 if (!object)
1738 return NULL;
1739 if (object->type == OBJ_TREE)
1740 return make_virtual_commit((struct tree*)object, name);
1741 if (object->type != OBJ_COMMIT)
1742 return NULL;
1743 if (parse_commit((struct commit *)object))
1744 return NULL;
1745 return (struct commit *)object;
1748 int merge_recursive_generic(struct merge_options *o,
1749 const unsigned char *head,
1750 const unsigned char *merge,
1751 int num_base_list,
1752 const unsigned char **base_list,
1753 struct commit **result)
1755 int clean, index_fd;
1756 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
1757 struct commit *head_commit = get_ref(head, o->branch1);
1758 struct commit *next_commit = get_ref(merge, o->branch2);
1759 struct commit_list *ca = NULL;
1761 if (base_list) {
1762 int i;
1763 for (i = 0; i < num_base_list; ++i) {
1764 struct commit *base;
1765 if (!(base = get_ref(base_list[i], sha1_to_hex(base_list[i]))))
1766 return error("Could not parse object '%s'",
1767 sha1_to_hex(base_list[i]));
1768 commit_list_insert(base, &ca);
1772 index_fd = hold_locked_index(lock, 1);
1773 clean = merge_recursive(o, head_commit, next_commit, ca,
1774 result);
1775 if (active_cache_changed &&
1776 (write_cache(index_fd, active_cache, active_nr) ||
1777 commit_locked_index(lock)))
1778 return error("Unable to write index.");
1780 return clean ? 0 : 1;
1783 static int merge_recursive_config(const char *var, const char *value, void *cb)
1785 struct merge_options *o = cb;
1786 if (!strcasecmp(var, "merge.verbosity")) {
1787 o->verbosity = git_config_int(var, value);
1788 return 0;
1790 if (!strcasecmp(var, "diff.renamelimit")) {
1791 o->diff_rename_limit = git_config_int(var, value);
1792 return 0;
1794 if (!strcasecmp(var, "merge.renamelimit")) {
1795 o->merge_rename_limit = git_config_int(var, value);
1796 return 0;
1798 return git_xmerge_config(var, value, cb);
1801 void init_merge_options(struct merge_options *o)
1803 memset(o, 0, sizeof(struct merge_options));
1804 o->verbosity = 2;
1805 o->buffer_output = 1;
1806 o->diff_rename_limit = -1;
1807 o->merge_rename_limit = -1;
1808 o->renormalize = 0;
1809 git_config(merge_recursive_config, o);
1810 if (getenv("GIT_MERGE_VERBOSITY"))
1811 o->verbosity =
1812 strtol(getenv("GIT_MERGE_VERBOSITY"), NULL, 10);
1813 if (o->verbosity >= 5)
1814 o->buffer_output = 0;
1815 strbuf_init(&o->obuf, 0);
1816 memset(&o->current_file_set, 0, sizeof(struct string_list));
1817 o->current_file_set.strdup_strings = 1;
1818 memset(&o->current_directory_set, 0, sizeof(struct string_list));
1819 o->current_directory_set.strdup_strings = 1;
1822 int parse_merge_opt(struct merge_options *o, const char *s)
1824 if (!s || !*s)
1825 return -1;
1826 if (!strcmp(s, "ours"))
1827 o->recursive_variant = MERGE_RECURSIVE_OURS;
1828 else if (!strcmp(s, "theirs"))
1829 o->recursive_variant = MERGE_RECURSIVE_THEIRS;
1830 else if (!strcmp(s, "subtree"))
1831 o->subtree_shift = "";
1832 else if (!prefixcmp(s, "subtree="))
1833 o->subtree_shift = s + strlen("subtree=");
1834 else if (!strcmp(s, "patience"))
1835 o->xdl_opts |= XDF_PATIENCE_DIFF;
1836 else if (!strcmp(s, "ignore-space-change"))
1837 o->xdl_opts |= XDF_IGNORE_WHITESPACE_CHANGE;
1838 else if (!strcmp(s, "ignore-all-space"))
1839 o->xdl_opts |= XDF_IGNORE_WHITESPACE;
1840 else if (!strcmp(s, "ignore-space-at-eol"))
1841 o->xdl_opts |= XDF_IGNORE_WHITESPACE_AT_EOL;
1842 else if (!strcmp(s, "renormalize"))
1843 o->renormalize = 1;
1844 else if (!strcmp(s, "no-renormalize"))
1845 o->renormalize = 0;
1846 else if (!prefixcmp(s, "rename-threshold=")) {
1847 const char *score = s + strlen("rename-threshold=");
1848 if ((o->rename_score = parse_rename_score(&score)) == -1 || *score != 0)
1849 return -1;
1851 else
1852 return -1;
1853 return 0;