blob: 8ad4be897d88c691d43c30afb698a1ae952b8596 [file] [log] [blame]
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001/*
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 */
Matthieu Moy4c371f92009-11-22 23:26:17 +01006#include "advice.h"
Miklos Vajna9047ebb2008-08-12 18:45:14 +02007#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"
Miklos Vajna9047ebb2008-08-12 18:45:14 +020020#include "attr.h"
21#include "merge-recursive.h"
Shawn O. Pearce9800c0d2008-09-29 11:04:20 -070022#include "dir.h"
Heiko Voigt68d03e42010-07-07 15:39:13 +020023#include "submodule.h"
Miklos Vajna9047ebb2008-08-12 18:45:14 +020024
Junio C Hamano85e51b72008-06-30 22:18:57 -070025static struct tree *shift_tree_object(struct tree *one, struct tree *two,
26 const char *subtree_shift)
Miklos Vajna9047ebb2008-08-12 18:45:14 +020027{
28 unsigned char shifted[20];
29
Junio C Hamano85e51b72008-06-30 22:18:57 -070030 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);
35 }
Miklos Vajna9047ebb2008-08-12 18:45:14 +020036 if (!hashcmp(two->object.sha1, shifted))
37 return two;
38 return lookup_tree(shifted);
39}
40
Linus Torvalds2af202b2009-06-18 10:28:43 -070041static struct commit *make_virtual_commit(struct tree *tree, const char *comment)
Miklos Vajna9047ebb2008-08-12 18:45:14 +020042{
Jeff King10322a02014-06-10 17:39:11 -040043 struct commit *commit = alloc_commit_node();
Junio C Hamanoae8e4c92011-11-07 13:26:22 -080044 struct merge_remote_desc *desc = xmalloc(sizeof(*desc));
45
46 desc->name = comment;
47 desc->obj = (struct object *)commit;
Miklos Vajna9047ebb2008-08-12 18:45:14 +020048 commit->tree = tree;
Junio C Hamanoae8e4c92011-11-07 13:26:22 -080049 commit->util = desc;
Miklos Vajna9047ebb2008-08-12 18:45:14 +020050 commit->object.parsed = 1;
51 return commit;
52}
53
54/*
55 * Since we use get_tree_entry(), which does not put the read object into
56 * the object pool, we cannot rely on a == b.
57 */
58static int sha_eq(const unsigned char *a, const unsigned char *b)
59{
60 if (!a && !b)
61 return 2;
62 return a && b && hashcmp(a, b) == 0;
63}
64
Elijah Newren25c39362010-09-20 02:28:53 -060065enum rename_type {
66 RENAME_NORMAL = 0,
67 RENAME_DELETE,
Elijah Newren4f66dad2011-08-11 23:20:08 -060068 RENAME_ONE_FILE_TO_ONE,
Elijah Newren461f5042011-08-11 23:20:15 -060069 RENAME_ONE_FILE_TO_TWO,
70 RENAME_TWO_FILES_TO_ONE
Elijah Newren25c39362010-09-20 02:28:53 -060071};
72
Elijah Newren4f66dad2011-08-11 23:20:08 -060073struct rename_conflict_info {
Elijah Newren25c39362010-09-20 02:28:53 -060074 enum rename_type rename_type;
75 struct diff_filepair *pair1;
76 struct diff_filepair *pair2;
77 const char *branch1;
78 const char *branch2;
79 struct stage_data *dst_entry1;
80 struct stage_data *dst_entry2;
Elijah Newren232c6352011-08-11 23:20:16 -060081 struct diff_filespec ren1_other;
82 struct diff_filespec ren2_other;
Elijah Newren25c39362010-09-20 02:28:53 -060083};
84
Miklos Vajna9047ebb2008-08-12 18:45:14 +020085/*
86 * Since we want to write the index eventually, we cannot reuse the index
87 * for these (temporary) data.
88 */
Jonathan Nieder9cba13c2011-03-16 02:08:34 -050089struct stage_data {
90 struct {
Miklos Vajna9047ebb2008-08-12 18:45:14 +020091 unsigned mode;
92 unsigned char sha[20];
93 } stages[4];
Elijah Newren4f66dad2011-08-11 23:20:08 -060094 struct rename_conflict_info *rename_conflict_info;
Miklos Vajna9047ebb2008-08-12 18:45:14 +020095 unsigned processed:1;
96};
97
Elijah Newren4f66dad2011-08-11 23:20:08 -060098static inline void setup_rename_conflict_info(enum rename_type rename_type,
99 struct diff_filepair *pair1,
100 struct diff_filepair *pair2,
101 const char *branch1,
102 const char *branch2,
103 struct stage_data *dst_entry1,
Elijah Newren232c6352011-08-11 23:20:16 -0600104 struct stage_data *dst_entry2,
105 struct merge_options *o,
106 struct stage_data *src_entry1,
107 struct stage_data *src_entry2)
Elijah Newren25c39362010-09-20 02:28:53 -0600108{
Elijah Newren4f66dad2011-08-11 23:20:08 -0600109 struct rename_conflict_info *ci = xcalloc(1, sizeof(struct rename_conflict_info));
Elijah Newren25c39362010-09-20 02:28:53 -0600110 ci->rename_type = rename_type;
111 ci->pair1 = pair1;
112 ci->branch1 = branch1;
113 ci->branch2 = branch2;
114
115 ci->dst_entry1 = dst_entry1;
Elijah Newren4f66dad2011-08-11 23:20:08 -0600116 dst_entry1->rename_conflict_info = ci;
Elijah Newren25c39362010-09-20 02:28:53 -0600117 dst_entry1->processed = 0;
118
119 assert(!pair2 == !dst_entry2);
120 if (dst_entry2) {
121 ci->dst_entry2 = dst_entry2;
122 ci->pair2 = pair2;
Elijah Newren4f66dad2011-08-11 23:20:08 -0600123 dst_entry2->rename_conflict_info = ci;
Elijah Newren25c39362010-09-20 02:28:53 -0600124 }
Elijah Newren232c6352011-08-11 23:20:16 -0600125
126 if (rename_type == RENAME_TWO_FILES_TO_ONE) {
127 /*
128 * For each rename, there could have been
129 * modifications on the side of history where that
130 * file was not renamed.
131 */
132 int ostage1 = o->branch1 == branch1 ? 3 : 2;
133 int ostage2 = ostage1 ^ 1;
134
135 ci->ren1_other.path = pair1->one->path;
136 hashcpy(ci->ren1_other.sha1, src_entry1->stages[ostage1].sha);
137 ci->ren1_other.mode = src_entry1->stages[ostage1].mode;
138
139 ci->ren2_other.path = pair2->one->path;
140 hashcpy(ci->ren2_other.sha1, src_entry2->stages[ostage2].sha);
141 ci->ren2_other.mode = src_entry2->stages[ostage2].mode;
Elijah Newren25c39362010-09-20 02:28:53 -0600142 }
143}
144
Miklos Vajna8a2fce12008-08-25 16:25:57 +0200145static int show(struct merge_options *o, int v)
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200146{
Miklos Vajna50336392008-09-02 23:30:09 +0200147 return (!o->call_depth && o->verbosity >= v) || o->verbosity >= 5;
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200148}
149
Miklos Vajnac7d84922008-09-03 02:30:03 +0200150static void flush_output(struct merge_options *o)
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200151{
Miklos Vajnac7d84922008-09-03 02:30:03 +0200152 if (o->obuf.len) {
153 fputs(o->obuf.buf, stdout);
154 strbuf_reset(&o->obuf);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200155 }
156}
157
Tarmigan Casebolt28bea9e2009-11-14 13:33:13 -0800158__attribute__((format (printf, 3, 4)))
Miklos Vajna8a2fce12008-08-25 16:25:57 +0200159static void output(struct merge_options *o, int v, const char *fmt, ...)
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200160{
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200161 va_list ap;
162
Miklos Vajna8a2fce12008-08-25 16:25:57 +0200163 if (!show(o, v))
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200164 return;
165
René Scharfe415792e2014-09-07 09:06:42 +0200166 strbuf_addchars(&o->obuf, ' ', o->call_depth * 2);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200167
168 va_start(ap, fmt);
Jeff Kingebeb6092011-02-25 23:08:53 -0600169 strbuf_vaddf(&o->obuf, fmt, ap);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200170 va_end(ap);
171
René Scharfe294b2682014-07-10 10:54:24 +0200172 strbuf_addch(&o->obuf, '\n');
Miklos Vajna8a2fce12008-08-25 16:25:57 +0200173 if (!o->buffer_output)
Miklos Vajnac7d84922008-09-03 02:30:03 +0200174 flush_output(o);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200175}
176
Miklos Vajna50336392008-09-02 23:30:09 +0200177static void output_commit_title(struct merge_options *o, struct commit *commit)
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200178{
179 int i;
Miklos Vajnac7d84922008-09-03 02:30:03 +0200180 flush_output(o);
Miklos Vajna50336392008-09-02 23:30:09 +0200181 for (i = o->call_depth; i--;)
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200182 fputs(" ", stdout);
183 if (commit->util)
Junio C Hamanoae8e4c92011-11-07 13:26:22 -0800184 printf("virtual %s\n", merge_remote_util(commit)->name);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200185 else {
186 printf("%s ", find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV));
187 if (parse_commit(commit) != 0)
Jiang Xin55653a62012-07-25 22:53:13 +0800188 printf(_("(bad commit)\n"));
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200189 else {
Christian Couder49b71202010-07-22 15:18:34 +0200190 const char *title;
Jeff King8597ea32014-06-10 17:44:13 -0400191 const char *msg = get_commit_buffer(commit, NULL);
Jeff Kingbc6b8fc2014-06-10 17:41:51 -0400192 int len = find_commit_subject(msg, &title);
Christian Couder49b71202010-07-22 15:18:34 +0200193 if (len)
194 printf("%.*s\n", len, title);
Jeff Kingbc6b8fc2014-06-10 17:41:51 -0400195 unuse_commit_buffer(commit, msg);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200196 }
197 }
198}
199
200static int add_cacheinfo(unsigned int mode, const unsigned char *sha1,
201 const char *path, int stage, int refresh, int options)
202{
203 struct cache_entry *ce;
Brad King25762722014-01-27 09:45:08 -0500204 ce = make_cache_entry(mode, sha1 ? sha1 : null_sha1, path, stage,
Brad King6e2068a2014-01-27 09:45:09 -0500205 (refresh ? (CE_MATCH_REFRESH |
206 CE_MATCH_IGNORE_MISSING) : 0 ));
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200207 if (!ce)
Jiang Xin55653a62012-07-25 22:53:13 +0800208 return error(_("addinfo_cache failed for path '%s'"), path);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200209 return add_cache_entry(ce, options);
210}
211
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200212static void init_tree_desc_from_tree(struct tree_desc *desc, struct tree *tree)
213{
214 parse_tree(tree);
215 init_tree_desc(desc, tree->buffer, tree->size);
216}
217
218static int git_merge_trees(int index_only,
219 struct tree *common,
220 struct tree *head,
221 struct tree *merge)
222{
223 int rc;
224 struct tree_desc t[3];
225 struct unpack_trees_options opts;
226
227 memset(&opts, 0, sizeof(opts));
228 if (index_only)
229 opts.index_only = 1;
230 else
231 opts.update = 1;
232 opts.merge = 1;
233 opts.head_idx = 2;
234 opts.fn = threeway_merge;
235 opts.src_index = &the_index;
236 opts.dst_index = &the_index;
Matthieu Moye2940302010-09-02 13:57:34 +0200237 setup_unpack_trees_porcelain(&opts, "merge");
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200238
239 init_tree_desc_from_tree(t+0, common);
240 init_tree_desc_from_tree(t+1, head);
241 init_tree_desc_from_tree(t+2, merge);
242
243 rc = unpack_trees(3, t, &opts);
244 cache_tree_free(&active_cache_tree);
245 return rc;
246}
247
Miklos Vajna8a2fce12008-08-25 16:25:57 +0200248struct tree *write_tree_from_memory(struct merge_options *o)
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200249{
250 struct tree *result = NULL;
251
252 if (unmerged_cache()) {
253 int i;
Junio C Hamano19c6a4f2010-01-21 16:38:56 -0800254 fprintf(stderr, "BUG: There are unmerged index entries:\n");
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200255 for (i = 0; i < active_nr; i++) {
Nguyễn Thái Ngọc Duy9c5e6c82013-07-09 22:29:00 +0700256 const struct cache_entry *ce = active_cache[i];
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200257 if (ce_stage(ce))
Elijah Newrenc43ba422011-08-11 23:19:49 -0600258 fprintf(stderr, "BUG: %d %.*s\n", ce_stage(ce),
Junio C Hamano19c6a4f2010-01-21 16:38:56 -0800259 (int)ce_namelen(ce), ce->name);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200260 }
Junio C Hamano19c6a4f2010-01-21 16:38:56 -0800261 die("Bug in merge-recursive.c");
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200262 }
263
264 if (!active_cache_tree)
265 active_cache_tree = cache_tree();
266
267 if (!cache_tree_fully_valid(active_cache_tree) &&
Nguyễn Thái Ngọc Duyd0cfc3e2014-06-13 19:19:32 +0700268 cache_tree_update(&the_index, 0) < 0)
Jiang Xin55653a62012-07-25 22:53:13 +0800269 die(_("error building trees"));
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200270
271 result = lookup_tree(active_cache_tree->sha1);
272
273 return result;
274}
275
276static int save_files_dirs(const unsigned char *sha1,
277 const char *base, int baselen, const char *path,
278 unsigned int mode, int stage, void *context)
279{
280 int len = strlen(path);
281 char *newpath = xmalloc(baselen + len + 1);
Miklos Vajna696ee232008-09-03 19:08:56 +0200282 struct merge_options *o = context;
283
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200284 memcpy(newpath, base, baselen);
285 memcpy(newpath + baselen, path, len);
286 newpath[baselen + len] = '\0';
287
288 if (S_ISDIR(mode))
Julian Phillips78a395d2010-06-26 00:41:35 +0100289 string_list_insert(&o->current_directory_set, newpath);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200290 else
Julian Phillips78a395d2010-06-26 00:41:35 +0100291 string_list_insert(&o->current_file_set, newpath);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200292 free(newpath);
293
Lars Hjemlid3bee162009-01-25 01:52:05 +0100294 return (S_ISDIR(mode) ? READ_TREE_RECURSIVE : 0);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200295}
296
Miklos Vajna696ee232008-09-03 19:08:56 +0200297static int get_files_dirs(struct merge_options *o, struct tree *tree)
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200298{
299 int n;
Nguyễn Thái Ngọc Duyf0096c02011-03-25 16:34:19 +0700300 struct pathspec match_all;
Nguyễn Thái Ngọc Duy9a087272013-07-14 15:35:59 +0700301 memset(&match_all, 0, sizeof(match_all));
Nguyễn Thái Ngọc Duyf0096c02011-03-25 16:34:19 +0700302 if (read_tree_recursive(tree, "", 0, 0, &match_all, save_files_dirs, o))
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200303 return 0;
Miklos Vajna696ee232008-09-03 19:08:56 +0200304 n = o->current_file_set.nr + o->current_directory_set.nr;
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200305 return n;
306}
307
308/*
309 * Returns an index_entry instance which doesn't have to correspond to
310 * a real cache entry in Git's index.
311 */
312static struct stage_data *insert_stage_data(const char *path,
313 struct tree *o, struct tree *a, struct tree *b,
314 struct string_list *entries)
315{
316 struct string_list_item *item;
317 struct stage_data *e = xcalloc(1, sizeof(struct stage_data));
318 get_tree_entry(o->object.sha1, path,
319 e->stages[1].sha, &e->stages[1].mode);
320 get_tree_entry(a->object.sha1, path,
321 e->stages[2].sha, &e->stages[2].mode);
322 get_tree_entry(b->object.sha1, path,
323 e->stages[3].sha, &e->stages[3].mode);
Julian Phillips78a395d2010-06-26 00:41:35 +0100324 item = string_list_insert(entries, path);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200325 item->util = e;
326 return e;
327}
328
329/*
330 * Create a dictionary mapping file names to stage_data objects. The
331 * dictionary contains one entry for every path with a non-zero stage entry.
332 */
333static struct string_list *get_unmerged(void)
334{
335 struct string_list *unmerged = xcalloc(1, sizeof(struct string_list));
336 int i;
337
338 unmerged->strdup_strings = 1;
339
340 for (i = 0; i < active_nr; i++) {
341 struct string_list_item *item;
342 struct stage_data *e;
Nguyễn Thái Ngọc Duy9c5e6c82013-07-09 22:29:00 +0700343 const struct cache_entry *ce = active_cache[i];
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200344 if (!ce_stage(ce))
345 continue;
346
Julian Phillipse8c8b712010-06-26 00:41:37 +0100347 item = string_list_lookup(unmerged, ce->name);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200348 if (!item) {
Julian Phillips78a395d2010-06-26 00:41:35 +0100349 item = string_list_insert(unmerged, ce->name);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200350 item->util = xcalloc(1, sizeof(struct stage_data));
351 }
352 e = item->util;
353 e->stages[ce_stage(ce)].mode = ce->ce_mode;
354 hashcpy(e->stages[ce_stage(ce)].sha, ce->sha1);
355 }
356
357 return unmerged;
358}
359
Elijah Newrenf0fd4d02011-08-11 23:19:56 -0600360static int string_list_df_name_compare(const void *a, const void *b)
Elijah Newrenef02b312010-09-20 02:29:09 -0600361{
Elijah Newrenf0fd4d02011-08-11 23:19:56 -0600362 const struct string_list_item *one = a;
363 const struct string_list_item *two = b;
364 int onelen = strlen(one->string);
365 int twolen = strlen(two->string);
366 /*
367 * Here we only care that entries for D/F conflicts are
368 * adjacent, in particular with the file of the D/F conflict
369 * appearing before files below the corresponding directory.
370 * The order of the rest of the list is irrelevant for us.
Elijah Newrenef02b312010-09-20 02:29:09 -0600371 *
Elijah Newrenf0fd4d02011-08-11 23:19:56 -0600372 * To achieve this, we sort with df_name_compare and provide
373 * the mode S_IFDIR so that D/F conflicts will sort correctly.
374 * We use the mode S_IFDIR for everything else for simplicity,
375 * since in other cases any changes in their order due to
376 * sorting cause no problems for us.
Elijah Newrenef02b312010-09-20 02:29:09 -0600377 */
Elijah Newrenf0fd4d02011-08-11 23:19:56 -0600378 int cmp = df_name_compare(one->string, onelen, S_IFDIR,
379 two->string, twolen, S_IFDIR);
380 /*
381 * Now that 'foo' and 'foo/bar' compare equal, we have to make sure
382 * that 'foo' comes before 'foo/bar'.
383 */
384 if (cmp)
385 return cmp;
386 return onelen - twolen;
387}
388
Elijah Newren70cc3d32011-08-11 23:19:58 -0600389static void record_df_conflict_files(struct merge_options *o,
390 struct string_list *entries)
Elijah Newrenef02b312010-09-20 02:29:09 -0600391{
Elijah Newren70cc3d32011-08-11 23:19:58 -0600392 /* If there is a D/F conflict and the file for such a conflict
Carlos Martín Nietof7d650c2011-09-20 22:25:57 +0200393 * currently exist in the working tree, we want to allow it to be
Elijah Newrenedd2faf2011-08-11 23:20:07 -0600394 * removed to make room for the corresponding directory if needed.
395 * The files underneath the directories of such D/F conflicts will
396 * be processed before the corresponding file involved in the D/F
397 * conflict. If the D/F directory ends up being removed by the
398 * merge, then we won't have to touch the D/F file. If the D/F
399 * directory needs to be written to the working copy, then the D/F
400 * file will simply be removed (in make_room_for_path()) to make
401 * room for the necessary paths. Note that if both the directory
402 * and the file need to be present, then the D/F file will be
403 * reinstated with a new unique name at the time it is processed.
Elijah Newrenef02b312010-09-20 02:29:09 -0600404 */
Elijah Newrenf701aae2011-08-12 20:23:51 -0600405 struct string_list df_sorted_entries;
Elijah Newrenef02b312010-09-20 02:29:09 -0600406 const char *last_file = NULL;
Junio C Hamanoc8516502010-10-21 07:34:33 -0700407 int last_len = 0;
Elijah Newrenef02b312010-09-20 02:29:09 -0600408 int i;
409
Elijah Newren0b30e812011-08-11 23:19:54 -0600410 /*
411 * If we're merging merge-bases, we don't want to bother with
412 * any working directory changes.
413 */
414 if (o->call_depth)
415 return;
416
Elijah Newrenf0fd4d02011-08-11 23:19:56 -0600417 /* Ensure D/F conflicts are adjacent in the entries list. */
Elijah Newrenf701aae2011-08-12 20:23:51 -0600418 memset(&df_sorted_entries, 0, sizeof(struct string_list));
Elijah Newrenef02b312010-09-20 02:29:09 -0600419 for (i = 0; i < entries->nr; i++) {
Elijah Newrenf701aae2011-08-12 20:23:51 -0600420 struct string_list_item *next = &entries->items[i];
421 string_list_append(&df_sorted_entries, next->string)->util =
422 next->util;
423 }
424 qsort(df_sorted_entries.items, entries->nr, sizeof(*entries->items),
Elijah Newrenf0fd4d02011-08-11 23:19:56 -0600425 string_list_df_name_compare);
426
Elijah Newren70cc3d32011-08-11 23:19:58 -0600427 string_list_clear(&o->df_conflict_file_set, 1);
Elijah Newrenf701aae2011-08-12 20:23:51 -0600428 for (i = 0; i < df_sorted_entries.nr; i++) {
429 const char *path = df_sorted_entries.items[i].string;
Elijah Newrenef02b312010-09-20 02:29:09 -0600430 int len = strlen(path);
Elijah Newrenf701aae2011-08-12 20:23:51 -0600431 struct stage_data *e = df_sorted_entries.items[i].util;
Elijah Newrenef02b312010-09-20 02:29:09 -0600432
433 /*
434 * Check if last_file & path correspond to a D/F conflict;
435 * i.e. whether path is last_file+'/'+<something>.
Elijah Newren70cc3d32011-08-11 23:19:58 -0600436 * If so, record that it's okay to remove last_file to make
437 * room for path and friends if needed.
Elijah Newrenef02b312010-09-20 02:29:09 -0600438 */
439 if (last_file &&
440 len > last_len &&
441 memcmp(path, last_file, last_len) == 0 &&
442 path[last_len] == '/') {
Elijah Newren70cc3d32011-08-11 23:19:58 -0600443 string_list_insert(&o->df_conflict_file_set, last_file);
Elijah Newrenef02b312010-09-20 02:29:09 -0600444 }
445
446 /*
447 * Determine whether path could exist as a file in the
448 * working directory as a possible D/F conflict. This
449 * will only occur when it exists in stage 2 as a
450 * file.
451 */
452 if (S_ISREG(e->stages[2].mode) || S_ISLNK(e->stages[2].mode)) {
453 last_file = path;
454 last_len = len;
Elijah Newrenef02b312010-09-20 02:29:09 -0600455 } else {
456 last_file = NULL;
457 }
458 }
Elijah Newrenf701aae2011-08-12 20:23:51 -0600459 string_list_clear(&df_sorted_entries, 0);
Elijah Newrenef02b312010-09-20 02:29:09 -0600460}
461
Jonathan Nieder9cba13c2011-03-16 02:08:34 -0500462struct rename {
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200463 struct diff_filepair *pair;
464 struct stage_data *src_entry;
465 struct stage_data *dst_entry;
466 unsigned processed:1;
467};
468
469/*
470 * Get information of all renames which occurred between 'o_tree' and
471 * 'tree'. We need the three trees in the merge ('o_tree', 'a_tree' and
472 * 'b_tree') to be able to associate the correct cache entries with
473 * the rename information. 'tree' is always equal to either a_tree or b_tree.
474 */
Miklos Vajna8a2fce12008-08-25 16:25:57 +0200475static struct string_list *get_renames(struct merge_options *o,
476 struct tree *tree,
477 struct tree *o_tree,
478 struct tree *a_tree,
479 struct tree *b_tree,
480 struct string_list *entries)
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200481{
482 int i;
483 struct string_list *renames;
484 struct diff_options opts;
485
486 renames = xcalloc(1, sizeof(struct string_list));
487 diff_setup(&opts);
488 DIFF_OPT_SET(&opts, RECURSIVE);
Jeff King4f7cb992012-03-22 18:52:24 -0400489 DIFF_OPT_CLR(&opts, RENAME_EMPTY);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200490 opts.detect_rename = DIFF_DETECT_RENAME;
Miklos Vajna8a2fce12008-08-25 16:25:57 +0200491 opts.rename_limit = o->merge_rename_limit >= 0 ? o->merge_rename_limit :
492 o->diff_rename_limit >= 0 ? o->diff_rename_limit :
Jeff King92c57e52011-02-19 05:21:28 -0500493 1000;
Kevin Ballard10ae7522010-09-27 16:58:25 -0700494 opts.rename_score = o->rename_score;
Jeff King99bfc662011-02-20 04:53:21 -0500495 opts.show_rename_progress = o->show_rename_progress;
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200496 opts.output_format = DIFF_FORMAT_NO_OUTPUT;
Thomas Rast28452652012-08-03 14:16:24 +0200497 diff_setup_done(&opts);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200498 diff_tree_sha1(o_tree->object.sha1, tree->object.sha1, "", &opts);
499 diffcore_std(&opts);
Jeff Kingbf0ab102011-02-19 05:20:51 -0500500 if (opts.needed_rename_limit > o->needed_rename_limit)
501 o->needed_rename_limit = opts.needed_rename_limit;
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200502 for (i = 0; i < diff_queued_diff.nr; ++i) {
503 struct string_list_item *item;
504 struct rename *re;
505 struct diff_filepair *pair = diff_queued_diff.queue[i];
506 if (pair->status != 'R') {
507 diff_free_filepair(pair);
508 continue;
509 }
510 re = xmalloc(sizeof(*re));
511 re->processed = 0;
512 re->pair = pair;
Julian Phillipse8c8b712010-06-26 00:41:37 +0100513 item = string_list_lookup(entries, re->pair->one->path);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200514 if (!item)
515 re->src_entry = insert_stage_data(re->pair->one->path,
516 o_tree, a_tree, b_tree, entries);
517 else
518 re->src_entry = item->util;
519
Julian Phillipse8c8b712010-06-26 00:41:37 +0100520 item = string_list_lookup(entries, re->pair->two->path);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200521 if (!item)
522 re->dst_entry = insert_stage_data(re->pair->two->path,
523 o_tree, a_tree, b_tree, entries);
524 else
525 re->dst_entry = item->util;
Julian Phillips78a395d2010-06-26 00:41:35 +0100526 item = string_list_insert(renames, pair->one->path);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200527 item->util = re;
528 }
529 opts.output_format = DIFF_FORMAT_NO_OUTPUT;
530 diff_queued_diff.nr = 0;
531 diff_flush(&opts);
532 return renames;
533}
534
Elijah Newren650467c2011-08-11 23:19:52 -0600535static int update_stages(const char *path, const struct diff_filespec *o,
536 const struct diff_filespec *a,
537 const struct diff_filespec *b)
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200538{
Elijah Newrenf53d3972011-08-11 23:20:25 -0600539
540 /*
541 * NOTE: It is usually a bad idea to call update_stages on a path
542 * before calling update_file on that same path, since it can
543 * sometimes lead to spurious "refusing to lose untracked file..."
544 * messages from update_file (via make_room_for path via
545 * would_lose_untracked). Instead, reverse the order of the calls
546 * (executing update_file first and then update_stages).
547 */
Elijah Newren650467c2011-08-11 23:19:52 -0600548 int clear = 1;
549 int options = ADD_CACHE_OK_TO_ADD | ADD_CACHE_SKIP_DFCHECK;
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200550 if (clear)
551 if (remove_file_from_cache(path))
552 return -1;
553 if (o)
554 if (add_cacheinfo(o->mode, o->sha1, path, 1, 0, options))
555 return -1;
556 if (a)
557 if (add_cacheinfo(a->mode, a->sha1, path, 2, 0, options))
558 return -1;
559 if (b)
560 if (add_cacheinfo(b->mode, b->sha1, path, 3, 0, options))
561 return -1;
562 return 0;
563}
564
Elijah Newrenb8ddf162011-08-11 23:20:02 -0600565static void update_entry(struct stage_data *entry,
566 struct diff_filespec *o,
567 struct diff_filespec *a,
568 struct diff_filespec *b)
Elijah Newren2ff739f2010-09-20 02:28:54 -0600569{
Elijah Newren2ff739f2010-09-20 02:28:54 -0600570 entry->processed = 0;
571 entry->stages[1].mode = o->mode;
572 entry->stages[2].mode = a->mode;
573 entry->stages[3].mode = b->mode;
574 hashcpy(entry->stages[1].sha, o->sha1);
575 hashcpy(entry->stages[2].sha, a->sha1);
576 hashcpy(entry->stages[3].sha, b->sha1);
Elijah Newren2ff739f2010-09-20 02:28:54 -0600577}
578
Miklos Vajnab7fa51d2008-09-02 23:53:47 +0200579static int remove_file(struct merge_options *o, int clean,
580 const char *path, int no_wd)
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200581{
Miklos Vajnab7fa51d2008-09-02 23:53:47 +0200582 int update_cache = o->call_depth || clean;
583 int update_working_directory = !o->call_depth && !no_wd;
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200584
585 if (update_cache) {
586 if (remove_file_from_cache(path))
587 return -1;
588 }
589 if (update_working_directory) {
David Turnerae352c72014-05-01 20:21:09 -0400590 if (ignore_case) {
591 struct cache_entry *ce;
592 ce = cache_file_exists(path, strlen(path), ignore_case);
593 if (ce && ce_stage(ce) == 0)
594 return 0;
595 }
Peter Collingbourne25755e82010-03-26 15:25:35 +0000596 if (remove_path(path))
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200597 return -1;
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200598 }
599 return 0;
600}
601
Jeff King45bc1312014-06-19 17:30:26 -0400602/* add a string to a strbuf, but converting "/" to "_" */
603static void add_flattened_path(struct strbuf *out, const char *s)
604{
605 size_t i = out->len;
606 strbuf_addstr(out, s);
607 for (; i < out->len; i++)
608 if (out->buf[i] == '/')
609 out->buf[i] = '_';
610}
611
Miklos Vajna696ee232008-09-03 19:08:56 +0200612static char *unique_path(struct merge_options *o, const char *path, const char *branch)
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200613{
Jeff King45bc1312014-06-19 17:30:26 -0400614 struct strbuf newpath = STRBUF_INIT;
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200615 int suffix = 0;
616 struct stat st;
Jeff King45bc1312014-06-19 17:30:26 -0400617 size_t base_len;
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200618
Jeff King45bc1312014-06-19 17:30:26 -0400619 strbuf_addf(&newpath, "%s~", path);
620 add_flattened_path(&newpath, branch);
621
622 base_len = newpath.len;
623 while (string_list_has_string(&o->current_file_set, newpath.buf) ||
624 string_list_has_string(&o->current_directory_set, newpath.buf) ||
625 lstat(newpath.buf, &st) == 0) {
626 strbuf_setlen(&newpath, base_len);
627 strbuf_addf(&newpath, "_%d", suffix++);
628 }
629
630 string_list_insert(&o->current_file_set, newpath.buf);
631 return strbuf_detach(&newpath, NULL);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200632}
633
Elijah Newrenf2507b42011-08-11 23:19:57 -0600634static int dir_in_way(const char *path, int check_working_copy)
635{
636 int pos, pathlen = strlen(path);
637 char *dirpath = xmalloc(pathlen + 2);
638 struct stat st;
639
640 strcpy(dirpath, path);
641 dirpath[pathlen] = '/';
642 dirpath[pathlen+1] = '\0';
643
644 pos = cache_name_pos(dirpath, pathlen+1);
645
646 if (pos < 0)
647 pos = -1 - pos;
648 if (pos < active_nr &&
649 !strncmp(dirpath, active_cache[pos]->name, pathlen+1)) {
650 free(dirpath);
651 return 1;
652 }
653
654 free(dirpath);
655 return check_working_copy && !lstat(path, &st) && S_ISDIR(st.st_mode);
656}
657
Elijah Newrenaacb82d2011-08-11 23:19:59 -0600658static int was_tracked(const char *path)
Junio C Hamano60c91182008-12-15 02:41:24 -0800659{
660 int pos = cache_name_pos(path, strlen(path));
661
662 if (pos < 0)
663 pos = -1 - pos;
664 while (pos < active_nr &&
665 !strcmp(path, active_cache[pos]->name)) {
666 /*
667 * If stage #0, it is definitely tracked.
668 * If it has stage #2 then it was tracked
669 * before this merge started. All other
670 * cases the path was not tracked.
671 */
672 switch (ce_stage(active_cache[pos])) {
673 case 0:
674 case 2:
Elijah Newrenaacb82d2011-08-11 23:19:59 -0600675 return 1;
Junio C Hamano60c91182008-12-15 02:41:24 -0800676 }
677 pos++;
678 }
Elijah Newrenaacb82d2011-08-11 23:19:59 -0600679 return 0;
Junio C Hamano60c91182008-12-15 02:41:24 -0800680}
681
Elijah Newrenaacb82d2011-08-11 23:19:59 -0600682static int would_lose_untracked(const char *path)
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200683{
Elijah Newrenaacb82d2011-08-11 23:19:59 -0600684 return !was_tracked(path) && file_exists(path);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200685}
686
Elijah Newrened0148a2011-08-11 23:20:01 -0600687static int make_room_for_path(struct merge_options *o, const char *path)
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200688{
Elijah Newrened0148a2011-08-11 23:20:01 -0600689 int status, i;
Jiang Xin55653a62012-07-25 22:53:13 +0800690 const char *msg = _("failed to create path '%s'%s");
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200691
Elijah Newrened0148a2011-08-11 23:20:01 -0600692 /* Unlink any D/F conflict files that are in the way */
693 for (i = 0; i < o->df_conflict_file_set.nr; i++) {
694 const char *df_path = o->df_conflict_file_set.items[i].string;
695 size_t pathlen = strlen(path);
696 size_t df_pathlen = strlen(df_path);
697 if (df_pathlen < pathlen &&
698 path[df_pathlen] == '/' &&
699 strncmp(path, df_path, df_pathlen) == 0) {
700 output(o, 3,
Jiang Xin55653a62012-07-25 22:53:13 +0800701 _("Removing %s to make room for subdirectory\n"),
Elijah Newrened0148a2011-08-11 23:20:01 -0600702 df_path);
703 unlink(df_path);
704 unsorted_string_list_delete_item(&o->df_conflict_file_set,
705 i, 0);
706 break;
707 }
708 }
709
710 /* Make sure leading directories are created */
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200711 status = safe_create_leading_directories_const(path);
712 if (status) {
Michael Haggerty0be05212014-01-06 14:45:25 +0100713 if (status == SCLD_EXISTS) {
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200714 /* something else exists */
Jiang Xin55653a62012-07-25 22:53:13 +0800715 error(msg, path, _(": perhaps a D/F conflict?"));
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200716 return -1;
717 }
718 die(msg, path, "");
719 }
720
Junio C Hamano60c91182008-12-15 02:41:24 -0800721 /*
722 * Do not unlink a file in the work tree if we are not
723 * tracking it.
724 */
725 if (would_lose_untracked(path))
Jiang Xin55653a62012-07-25 22:53:13 +0800726 return error(_("refusing to lose untracked file at '%s'"),
Junio C Hamano60c91182008-12-15 02:41:24 -0800727 path);
728
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200729 /* Successful unlink is good.. */
730 if (!unlink(path))
731 return 0;
732 /* .. and so is no existing file */
733 if (errno == ENOENT)
734 return 0;
735 /* .. but not some other error (who really cares what?) */
Jiang Xin55653a62012-07-25 22:53:13 +0800736 return error(msg, path, _(": perhaps a D/F conflict?"));
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200737}
738
Miklos Vajnab7fa51d2008-09-02 23:53:47 +0200739static void update_file_flags(struct merge_options *o,
740 const unsigned char *sha,
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200741 unsigned mode,
742 const char *path,
743 int update_cache,
744 int update_wd)
745{
Miklos Vajnab7fa51d2008-09-02 23:53:47 +0200746 if (o->call_depth)
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200747 update_wd = 0;
748
749 if (update_wd) {
750 enum object_type type;
751 void *buf;
752 unsigned long size;
753
Heiko Voigt68d03e42010-07-07 15:39:13 +0200754 if (S_ISGITLINK(mode)) {
Junio C Hamano0c44c942009-04-29 11:08:18 -0700755 /*
756 * We may later decide to recursively descend into
757 * the submodule directory and update its index
758 * and/or work tree, but we do not do that now.
759 */
Heiko Voigt68d03e42010-07-07 15:39:13 +0200760 update_wd = 0;
Junio C Hamano0c44c942009-04-29 11:08:18 -0700761 goto update_index;
Heiko Voigt68d03e42010-07-07 15:39:13 +0200762 }
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200763
764 buf = read_sha1_file(sha, &type, &size);
765 if (!buf)
Jiang Xin55653a62012-07-25 22:53:13 +0800766 die(_("cannot read object %s '%s'"), sha1_to_hex(sha), path);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200767 if (type != OBJ_BLOB)
Jiang Xin55653a62012-07-25 22:53:13 +0800768 die(_("blob expected for %s '%s'"), sha1_to_hex(sha), path);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200769 if (S_ISREG(mode)) {
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500770 struct strbuf strbuf = STRBUF_INIT;
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200771 if (convert_to_working_tree(path, buf, size, &strbuf)) {
772 free(buf);
773 size = strbuf.len;
774 buf = strbuf_detach(&strbuf, NULL);
775 }
776 }
777
Elijah Newrened0148a2011-08-11 23:20:01 -0600778 if (make_room_for_path(o, path) < 0) {
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200779 update_wd = 0;
780 free(buf);
781 goto update_index;
782 }
783 if (S_ISREG(mode) || (!has_symlinks && S_ISLNK(mode))) {
784 int fd;
785 if (mode & 0100)
786 mode = 0777;
787 else
788 mode = 0666;
789 fd = open(path, O_WRONLY | O_TRUNC | O_CREAT, mode);
790 if (fd < 0)
Jiang Xin55653a62012-07-25 22:53:13 +0800791 die_errno(_("failed to open '%s'"), path);
Thomas Rastf633ea22012-08-03 14:16:25 +0200792 write_in_full(fd, buf, size);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200793 close(fd);
794 } else if (S_ISLNK(mode)) {
795 char *lnk = xmemdupz(buf, size);
796 safe_create_leading_directories_const(path);
797 unlink(path);
Alex Riesen304dcf22008-12-05 01:39:14 +0100798 if (symlink(lnk, path))
Jiang Xin55653a62012-07-25 22:53:13 +0800799 die_errno(_("failed to symlink '%s'"), path);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200800 free(lnk);
801 } else
Jiang Xin55653a62012-07-25 22:53:13 +0800802 die(_("do not know what to do with %06o %s '%s'"),
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200803 mode, sha1_to_hex(sha), path);
804 free(buf);
805 }
806 update_index:
807 if (update_cache)
808 add_cacheinfo(mode, sha, path, 0, update_wd, ADD_CACHE_OK_TO_ADD);
809}
810
Miklos Vajnab7fa51d2008-09-02 23:53:47 +0200811static void update_file(struct merge_options *o,
812 int clean,
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200813 const unsigned char *sha,
814 unsigned mode,
815 const char *path)
816{
Miklos Vajnab7fa51d2008-09-02 23:53:47 +0200817 update_file_flags(o, sha, mode, path, o->call_depth || clean, !o->call_depth);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200818}
819
820/* Low level file merging, update and removal */
821
Jonathan Nieder9cba13c2011-03-16 02:08:34 -0500822struct merge_file_info {
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200823 unsigned char sha[20];
824 unsigned mode;
825 unsigned clean:1,
826 merge:1;
827};
828
Miklos Vajnab7fa51d2008-09-02 23:53:47 +0200829static int merge_3way(struct merge_options *o,
830 mmbuffer_t *result_buf,
Elijah Newren0c059422011-08-11 23:19:51 -0600831 const struct diff_filespec *one,
832 const struct diff_filespec *a,
833 const struct diff_filespec *b,
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200834 const char *branch1,
835 const char *branch2)
836{
837 mmfile_t orig, src1, src2;
Jonathan Nieder712516b2010-08-26 00:49:53 -0500838 struct ll_merge_options ll_opts = {0};
Jonathan Nieder4c5868f2010-03-20 19:41:38 -0500839 char *base_name, *name1, *name2;
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200840 int merge_status;
Avery Pennarun8cc5b292009-11-25 21:23:55 -0500841
Jonathan Nieder712516b2010-08-26 00:49:53 -0500842 ll_opts.renormalize = o->renormalize;
Justin Frankel58a1ece2010-08-26 00:50:45 -0500843 ll_opts.xdl_opts = o->xdl_opts;
Jonathan Nieder712516b2010-08-26 00:49:53 -0500844
845 if (o->call_depth) {
846 ll_opts.virtual_ancestor = 1;
847 ll_opts.variant = 0;
848 } else {
Avery Pennarun8cc5b292009-11-25 21:23:55 -0500849 switch (o->recursive_variant) {
850 case MERGE_RECURSIVE_OURS:
Jonathan Nieder712516b2010-08-26 00:49:53 -0500851 ll_opts.variant = XDL_MERGE_FAVOR_OURS;
Avery Pennarun8cc5b292009-11-25 21:23:55 -0500852 break;
853 case MERGE_RECURSIVE_THEIRS:
Jonathan Nieder712516b2010-08-26 00:49:53 -0500854 ll_opts.variant = XDL_MERGE_FAVOR_THEIRS;
Avery Pennarun8cc5b292009-11-25 21:23:55 -0500855 break;
856 default:
Jonathan Nieder712516b2010-08-26 00:49:53 -0500857 ll_opts.variant = 0;
Avery Pennarun8cc5b292009-11-25 21:23:55 -0500858 break;
859 }
860 }
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200861
Jonathan Nieder4c5868f2010-03-20 19:41:38 -0500862 if (strcmp(a->path, b->path) ||
863 (o->ancestor != NULL && strcmp(a->path, one->path) != 0)) {
864 base_name = o->ancestor == NULL ? NULL :
Ramsay Jones4e2d0942012-09-04 18:31:14 +0100865 mkpathdup("%s:%s", o->ancestor, one->path);
866 name1 = mkpathdup("%s:%s", branch1, a->path);
867 name2 = mkpathdup("%s:%s", branch2, b->path);
Martin Renold606475f2009-07-01 22:18:04 +0200868 } else {
Jonathan Nieder4c5868f2010-03-20 19:41:38 -0500869 base_name = o->ancestor == NULL ? NULL :
Ramsay Jones4e2d0942012-09-04 18:31:14 +0100870 mkpathdup("%s", o->ancestor);
871 name1 = mkpathdup("%s", branch1);
872 name2 = mkpathdup("%s", branch2);
Martin Renold606475f2009-07-01 22:18:04 +0200873 }
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200874
Michael Lukashov06b65932010-02-16 23:42:55 +0000875 read_mmblob(&orig, one->sha1);
876 read_mmblob(&src1, a->sha1);
877 read_mmblob(&src2, b->sha1);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200878
Jonathan Nieder4c5868f2010-03-20 19:41:38 -0500879 merge_status = ll_merge(result_buf, a->path, &orig, base_name,
Jonathan Nieder712516b2010-08-26 00:49:53 -0500880 &src1, name1, &src2, name2, &ll_opts);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200881
Ramsay Jones4e2d0942012-09-04 18:31:14 +0100882 free(base_name);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200883 free(name1);
884 free(name2);
885 free(orig.ptr);
886 free(src1.ptr);
887 free(src2.ptr);
888 return merge_status;
889}
890
Elijah Newren6bdaead2011-08-11 23:20:12 -0600891static struct merge_file_info merge_file_1(struct merge_options *o,
892 const struct diff_filespec *one,
893 const struct diff_filespec *a,
894 const struct diff_filespec *b,
895 const char *branch1,
896 const char *branch2)
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200897{
898 struct merge_file_info result;
899 result.merge = 0;
900 result.clean = 1;
901
902 if ((S_IFMT & a->mode) != (S_IFMT & b->mode)) {
903 result.clean = 0;
904 if (S_ISREG(a->mode)) {
905 result.mode = a->mode;
906 hashcpy(result.sha, a->sha1);
907 } else {
908 result.mode = b->mode;
909 hashcpy(result.sha, b->sha1);
910 }
911 } else {
Miklos Vajnab7fa51d2008-09-02 23:53:47 +0200912 if (!sha_eq(a->sha1, one->sha1) && !sha_eq(b->sha1, one->sha1))
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200913 result.merge = 1;
914
915 /*
916 * Merge modes
917 */
Miklos Vajnab7fa51d2008-09-02 23:53:47 +0200918 if (a->mode == b->mode || a->mode == one->mode)
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200919 result.mode = b->mode;
920 else {
921 result.mode = a->mode;
Miklos Vajnab7fa51d2008-09-02 23:53:47 +0200922 if (b->mode != one->mode) {
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200923 result.clean = 0;
924 result.merge = 1;
925 }
926 }
927
Miklos Vajnab7fa51d2008-09-02 23:53:47 +0200928 if (sha_eq(a->sha1, b->sha1) || sha_eq(a->sha1, one->sha1))
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200929 hashcpy(result.sha, b->sha1);
Miklos Vajnab7fa51d2008-09-02 23:53:47 +0200930 else if (sha_eq(b->sha1, one->sha1))
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200931 hashcpy(result.sha, a->sha1);
932 else if (S_ISREG(a->mode)) {
933 mmbuffer_t result_buf;
934 int merge_status;
935
Miklos Vajnab7fa51d2008-09-02 23:53:47 +0200936 merge_status = merge_3way(o, &result_buf, one, a, b,
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200937 branch1, branch2);
938
939 if ((merge_status < 0) || !result_buf.ptr)
Jiang Xin55653a62012-07-25 22:53:13 +0800940 die(_("Failed to execute internal merge"));
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200941
942 if (write_sha1_file(result_buf.ptr, result_buf.size,
943 blob_type, result.sha))
Jiang Xin55653a62012-07-25 22:53:13 +0800944 die(_("Unable to add %s to database"),
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200945 a->path);
946
947 free(result_buf.ptr);
948 result.clean = (merge_status == 0);
949 } else if (S_ISGITLINK(a->mode)) {
Brad King80988782011-10-13 08:59:05 -0400950 result.clean = merge_submodule(result.sha,
951 one->path, one->sha1,
952 a->sha1, b->sha1,
953 !o->call_depth);
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200954 } else if (S_ISLNK(a->mode)) {
955 hashcpy(result.sha, a->sha1);
956
957 if (!sha_eq(a->sha1, b->sha1))
958 result.clean = 0;
959 } else {
Jiang Xin55653a62012-07-25 22:53:13 +0800960 die(_("unsupported object type in the tree"));
Miklos Vajna9047ebb2008-08-12 18:45:14 +0200961 }
962 }
963
964 return result;
965}
966
Elijah Newrendac47412011-08-11 23:20:17 -0600967static struct merge_file_info
968merge_file_special_markers(struct merge_options *o,
969 const struct diff_filespec *one,
970 const struct diff_filespec *a,
971 const struct diff_filespec *b,
972 const char *branch1,
973 const char *filename1,
974 const char *branch2,
975 const char *filename2)
976{
977 char *side1 = NULL;
978 char *side2 = NULL;
979 struct merge_file_info mfi;
980
Jeff King28310182014-06-19 17:24:33 -0400981 if (filename1)
982 side1 = xstrfmt("%s:%s", branch1, filename1);
983 if (filename2)
984 side2 = xstrfmt("%s:%s", branch2, filename2);
Elijah Newrendac47412011-08-11 23:20:17 -0600985
986 mfi = merge_file_1(o, one, a, b,
987 side1 ? side1 : branch1, side2 ? side2 : branch2);
988 free(side1);
989 free(side2);
990 return mfi;
991}
992
Junio C Hamanofa2364e2012-12-06 15:08:01 -0800993static struct merge_file_info merge_file_one(struct merge_options *o,
Elijah Newren6bdaead2011-08-11 23:20:12 -0600994 const char *path,
995 const unsigned char *o_sha, int o_mode,
996 const unsigned char *a_sha, int a_mode,
997 const unsigned char *b_sha, int b_mode,
998 const char *branch1,
999 const char *branch2)
1000{
1001 struct diff_filespec one, a, b;
1002
1003 one.path = a.path = b.path = (char *)path;
1004 hashcpy(one.sha1, o_sha);
1005 one.mode = o_mode;
1006 hashcpy(a.sha1, a_sha);
1007 a.mode = a_mode;
1008 hashcpy(b.sha1, b_sha);
1009 b.mode = b_mode;
1010 return merge_file_1(o, &one, &a, &b, branch1, branch2);
1011}
1012
Elijah Newrenb7033252011-08-11 23:20:19 -06001013static void handle_change_delete(struct merge_options *o,
1014 const char *path,
1015 const unsigned char *o_sha, int o_mode,
1016 const unsigned char *a_sha, int a_mode,
1017 const unsigned char *b_sha, int b_mode,
1018 const char *change, const char *change_past)
1019{
1020 char *renamed = NULL;
1021 if (dir_in_way(path, !o->call_depth)) {
1022 renamed = unique_path(o, path, a_sha ? o->branch1 : o->branch2);
1023 }
1024
1025 if (o->call_depth) {
1026 /*
1027 * We cannot arbitrarily accept either a_sha or b_sha as
1028 * correct; since there is no true "middle point" between
1029 * them, simply reuse the base version for virtual merge base.
1030 */
1031 remove_file_from_cache(path);
1032 update_file(o, 0, o_sha, o_mode, renamed ? renamed : path);
1033 } else if (!a_sha) {
Jiang Xin55653a62012-07-25 22:53:13 +08001034 if (!renamed) {
1035 output(o, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1036 "and %s in %s. Version %s of %s left in tree."),
1037 change, path, o->branch1, change_past,
1038 o->branch2, o->branch2, path);
1039 update_file(o, 0, b_sha, b_mode, path);
1040 } else {
1041 output(o, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1042 "and %s in %s. Version %s of %s left in tree at %s."),
1043 change, path, o->branch1, change_past,
1044 o->branch2, o->branch2, path, renamed);
1045 update_file(o, 0, b_sha, b_mode, renamed);
1046 }
Elijah Newrenb7033252011-08-11 23:20:19 -06001047 } else {
Jiang Xin55653a62012-07-25 22:53:13 +08001048 if (!renamed) {
1049 output(o, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1050 "and %s in %s. Version %s of %s left in tree."),
1051 change, path, o->branch2, change_past,
1052 o->branch1, o->branch1, path);
1053 } else {
1054 output(o, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1055 "and %s in %s. Version %s of %s left in tree at %s."),
1056 change, path, o->branch2, change_past,
1057 o->branch1, o->branch1, path, renamed);
Elijah Newren35a74ab2011-08-11 23:20:27 -06001058 update_file(o, 0, a_sha, a_mode, renamed);
Jiang Xin55653a62012-07-25 22:53:13 +08001059 }
Elijah Newren35a74ab2011-08-11 23:20:27 -06001060 /*
1061 * No need to call update_file() on path when !renamed, since
1062 * that would needlessly touch path. We could call
1063 * update_file_flags() with update_cache=0 and update_wd=0,
1064 * but that's a no-op.
1065 */
Elijah Newrenb7033252011-08-11 23:20:19 -06001066 }
1067 free(renamed);
1068}
1069
Elijah Newren6ef2cb02010-09-20 02:28:50 -06001070static void conflict_rename_delete(struct merge_options *o,
1071 struct diff_filepair *pair,
1072 const char *rename_branch,
1073 const char *other_branch)
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001074{
Elijah Newrene03acb82011-08-11 23:20:20 -06001075 const struct diff_filespec *orig = pair->one;
1076 const struct diff_filespec *dest = pair->two;
Elijah Newrene03acb82011-08-11 23:20:20 -06001077 const unsigned char *a_sha = NULL;
1078 const unsigned char *b_sha = NULL;
1079 int a_mode = 0;
1080 int b_mode = 0;
Elijah Newren6ef2cb02010-09-20 02:28:50 -06001081
Elijah Newrene03acb82011-08-11 23:20:20 -06001082 if (rename_branch == o->branch1) {
1083 a_sha = dest->sha1;
1084 a_mode = dest->mode;
1085 } else {
1086 b_sha = dest->sha1;
1087 b_mode = dest->mode;
Elijah Newrena0de2f62010-09-20 02:29:05 -06001088 }
Elijah Newrene03acb82011-08-11 23:20:20 -06001089
Elijah Newrenf53d3972011-08-11 23:20:25 -06001090 handle_change_delete(o,
1091 o->call_depth ? orig->path : dest->path,
1092 orig->sha1, orig->mode,
1093 a_sha, a_mode,
1094 b_sha, b_mode,
Jiang Xin55653a62012-07-25 22:53:13 +08001095 _("rename"), _("renamed"));
Elijah Newrenf53d3972011-08-11 23:20:25 -06001096
Elijah Newrene03acb82011-08-11 23:20:20 -06001097 if (o->call_depth) {
1098 remove_file_from_cache(dest->path);
Elijah Newrene03acb82011-08-11 23:20:20 -06001099 } else {
Elijah Newrene03acb82011-08-11 23:20:20 -06001100 update_stages(dest->path, NULL,
1101 rename_branch == o->branch1 ? dest : NULL,
1102 rename_branch == o->branch1 ? NULL : dest);
1103 }
1104
Elijah Newren6ef2cb02010-09-20 02:28:50 -06001105}
1106
Elijah Newren1ac91b32011-08-11 23:20:21 -06001107static struct diff_filespec *filespec_from_entry(struct diff_filespec *target,
1108 struct stage_data *entry,
1109 int stage)
1110{
1111 unsigned char *sha = entry->stages[stage].sha;
1112 unsigned mode = entry->stages[stage].mode;
1113 if (mode == 0 || is_null_sha1(sha))
1114 return NULL;
1115 hashcpy(target->sha1, sha);
1116 target->mode = mode;
1117 return target;
1118}
1119
Elijah Newren3672c972011-08-11 23:20:22 -06001120static void handle_file(struct merge_options *o,
1121 struct diff_filespec *rename,
1122 int stage,
1123 struct rename_conflict_info *ci)
1124{
1125 char *dst_name = rename->path;
1126 struct stage_data *dst_entry;
1127 const char *cur_branch, *other_branch;
1128 struct diff_filespec other;
1129 struct diff_filespec *add;
1130
1131 if (stage == 2) {
1132 dst_entry = ci->dst_entry1;
1133 cur_branch = ci->branch1;
1134 other_branch = ci->branch2;
1135 } else {
1136 dst_entry = ci->dst_entry2;
1137 cur_branch = ci->branch2;
1138 other_branch = ci->branch1;
1139 }
1140
1141 add = filespec_from_entry(&other, dst_entry, stage ^ 1);
Elijah Newren3672c972011-08-11 23:20:22 -06001142 if (add) {
1143 char *add_name = unique_path(o, rename->path, other_branch);
1144 update_file(o, 0, add->sha1, add->mode, add_name);
1145
1146 remove_file(o, 0, rename->path, 0);
1147 dst_name = unique_path(o, rename->path, cur_branch);
1148 } else {
1149 if (dir_in_way(rename->path, !o->call_depth)) {
1150 dst_name = unique_path(o, rename->path, cur_branch);
Jiang Xin55653a62012-07-25 22:53:13 +08001151 output(o, 1, _("%s is a directory in %s adding as %s instead"),
Elijah Newren3672c972011-08-11 23:20:22 -06001152 rename->path, other_branch, dst_name);
1153 }
1154 }
1155 update_file(o, 0, rename->sha1, rename->mode, dst_name);
Elijah Newrenf53d3972011-08-11 23:20:25 -06001156 if (stage == 2)
1157 update_stages(rename->path, NULL, rename, add);
1158 else
1159 update_stages(rename->path, NULL, add, rename);
Elijah Newren3672c972011-08-11 23:20:22 -06001160
1161 if (dst_name != rename->path)
1162 free(dst_name);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001163}
1164
Elijah Newren09c01f82010-09-20 02:28:48 -06001165static void conflict_rename_rename_1to2(struct merge_options *o,
Elijah Newrena99b7f22011-08-11 23:20:14 -06001166 struct rename_conflict_info *ci)
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001167{
Elijah Newren09c01f82010-09-20 02:28:48 -06001168 /* One file was renamed in both branches, but to different names. */
Elijah Newrena99b7f22011-08-11 23:20:14 -06001169 struct diff_filespec *one = ci->pair1->one;
1170 struct diff_filespec *a = ci->pair1->two;
1171 struct diff_filespec *b = ci->pair2->two;
Elijah Newren07413c52010-09-20 02:29:00 -06001172
Jiang Xin55653a62012-07-25 22:53:13 +08001173 output(o, 1, _("CONFLICT (rename/rename): "
Elijah Newren4f66dad2011-08-11 23:20:08 -06001174 "Rename \"%s\"->\"%s\" in branch \"%s\" "
Jiang Xin55653a62012-07-25 22:53:13 +08001175 "rename \"%s\"->\"%s\" in \"%s\"%s"),
Elijah Newrena99b7f22011-08-11 23:20:14 -06001176 one->path, a->path, ci->branch1,
1177 one->path, b->path, ci->branch2,
Jiang Xin55653a62012-07-25 22:53:13 +08001178 o->call_depth ? _(" (left unresolved)") : "");
Miklos Vajnab7fa51d2008-09-02 23:53:47 +02001179 if (o->call_depth) {
Elijah Newrenc52ff852011-08-11 23:20:13 -06001180 struct merge_file_info mfi;
Elijah Newren6d630702011-08-11 23:20:29 -06001181 struct diff_filespec other;
1182 struct diff_filespec *add;
Junio C Hamanofa2364e2012-12-06 15:08:01 -08001183 mfi = merge_file_one(o, one->path,
Elijah Newrena99b7f22011-08-11 23:20:14 -06001184 one->sha1, one->mode,
1185 a->sha1, a->mode,
1186 b->sha1, b->mode,
1187 ci->branch1, ci->branch2);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001188 /*
Elijah Newrenc52ff852011-08-11 23:20:13 -06001189 * FIXME: For rename/add-source conflicts (if we could detect
1190 * such), this is wrong. We should instead find a unique
1191 * pathname and then either rename the add-source file to that
1192 * unique path, or use that unique path instead of src here.
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001193 */
Elijah Newrena99b7f22011-08-11 23:20:14 -06001194 update_file(o, 0, mfi.sha, mfi.mode, one->path);
Elijah Newren6d630702011-08-11 23:20:29 -06001195
1196 /*
1197 * Above, we put the merged content at the merge-base's
1198 * path. Now we usually need to delete both a->path and
1199 * b->path. However, the rename on each side of the merge
1200 * could also be involved in a rename/add conflict. In
1201 * such cases, we should keep the added file around,
1202 * resolving the conflict at that path in its favor.
1203 */
1204 add = filespec_from_entry(&other, ci->dst_entry1, 2 ^ 1);
1205 if (add)
1206 update_file(o, 0, add->sha1, add->mode, a->path);
1207 else
1208 remove_file_from_cache(a->path);
1209 add = filespec_from_entry(&other, ci->dst_entry2, 3 ^ 1);
1210 if (add)
1211 update_file(o, 0, add->sha1, add->mode, b->path);
1212 else
1213 remove_file_from_cache(b->path);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001214 } else {
Elijah Newren3672c972011-08-11 23:20:22 -06001215 handle_file(o, a, 2, ci);
1216 handle_file(o, b, 3, ci);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001217 }
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001218}
1219
Elijah Newren09c01f82010-09-20 02:28:48 -06001220static void conflict_rename_rename_2to1(struct merge_options *o,
Elijah Newren461f5042011-08-11 23:20:15 -06001221 struct rename_conflict_info *ci)
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001222{
Elijah Newren461f5042011-08-11 23:20:15 -06001223 /* Two files, a & b, were renamed to the same thing, c. */
1224 struct diff_filespec *a = ci->pair1->one;
1225 struct diff_filespec *b = ci->pair2->one;
1226 struct diff_filespec *c1 = ci->pair1->two;
1227 struct diff_filespec *c2 = ci->pair2->two;
1228 char *path = c1->path; /* == c2->path */
Elijah Newren434b8522011-08-11 23:20:18 -06001229 struct merge_file_info mfi_c1;
1230 struct merge_file_info mfi_c2;
Elijah Newren461f5042011-08-11 23:20:15 -06001231
Jiang Xin55653a62012-07-25 22:53:13 +08001232 output(o, 1, _("CONFLICT (rename/rename): "
Elijah Newren461f5042011-08-11 23:20:15 -06001233 "Rename %s->%s in %s. "
Jiang Xin55653a62012-07-25 22:53:13 +08001234 "Rename %s->%s in %s"),
Elijah Newren461f5042011-08-11 23:20:15 -06001235 a->path, c1->path, ci->branch1,
1236 b->path, c2->path, ci->branch2);
1237
1238 remove_file(o, 1, a->path, would_lose_untracked(a->path));
1239 remove_file(o, 1, b->path, would_lose_untracked(b->path));
1240
Elijah Newren434b8522011-08-11 23:20:18 -06001241 mfi_c1 = merge_file_special_markers(o, a, c1, &ci->ren1_other,
1242 o->branch1, c1->path,
1243 o->branch2, ci->ren1_other.path);
1244 mfi_c2 = merge_file_special_markers(o, b, &ci->ren2_other, c2,
1245 o->branch1, ci->ren2_other.path,
1246 o->branch2, c2->path);
1247
Elijah Newren0a6b8712011-08-11 23:20:04 -06001248 if (o->call_depth) {
Elijah Newren434b8522011-08-11 23:20:18 -06001249 /*
1250 * If mfi_c1.clean && mfi_c2.clean, then it might make
1251 * sense to do a two-way merge of those results. But, I
1252 * think in all cases, it makes sense to have the virtual
1253 * merge base just undo the renames; they can be detected
1254 * again later for the non-recursive merge.
1255 */
1256 remove_file(o, 0, path, 0);
1257 update_file(o, 0, mfi_c1.sha, mfi_c1.mode, a->path);
1258 update_file(o, 0, mfi_c2.sha, mfi_c2.mode, b->path);
Elijah Newren0a6b8712011-08-11 23:20:04 -06001259 } else {
Elijah Newren461f5042011-08-11 23:20:15 -06001260 char *new_path1 = unique_path(o, path, ci->branch1);
1261 char *new_path2 = unique_path(o, path, ci->branch2);
Jiang Xin55653a62012-07-25 22:53:13 +08001262 output(o, 1, _("Renaming %s to %s and %s to %s instead"),
Elijah Newren461f5042011-08-11 23:20:15 -06001263 a->path, new_path1, b->path, new_path2);
Elijah Newren0a6b8712011-08-11 23:20:04 -06001264 remove_file(o, 0, path, 0);
Elijah Newren434b8522011-08-11 23:20:18 -06001265 update_file(o, 0, mfi_c1.sha, mfi_c1.mode, new_path1);
1266 update_file(o, 0, mfi_c2.sha, mfi_c2.mode, new_path2);
Elijah Newren0a6b8712011-08-11 23:20:04 -06001267 free(new_path2);
1268 free(new_path1);
1269 }
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001270}
1271
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001272static int process_renames(struct merge_options *o,
1273 struct string_list *a_renames,
1274 struct string_list *b_renames)
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001275{
1276 int clean_merge = 1, i, j;
Thiago Farina183113a2010-07-04 16:46:19 -03001277 struct string_list a_by_dst = STRING_LIST_INIT_NODUP;
1278 struct string_list b_by_dst = STRING_LIST_INIT_NODUP;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001279 const struct rename *sre;
1280
1281 for (i = 0; i < a_renames->nr; i++) {
1282 sre = a_renames->items[i].util;
Julian Phillips78a395d2010-06-26 00:41:35 +01001283 string_list_insert(&a_by_dst, sre->pair->two->path)->util
Elijah Newren0a6b8712011-08-11 23:20:04 -06001284 = (void *)sre;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001285 }
1286 for (i = 0; i < b_renames->nr; i++) {
1287 sre = b_renames->items[i].util;
Julian Phillips78a395d2010-06-26 00:41:35 +01001288 string_list_insert(&b_by_dst, sre->pair->two->path)->util
Elijah Newren0a6b8712011-08-11 23:20:04 -06001289 = (void *)sre;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001290 }
1291
1292 for (i = 0, j = 0; i < a_renames->nr || j < b_renames->nr;) {
Benjamin Kramer8e24cba2009-03-15 22:01:20 +01001293 struct string_list *renames1, *renames2Dst;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001294 struct rename *ren1 = NULL, *ren2 = NULL;
1295 const char *branch1, *branch2;
1296 const char *ren1_src, *ren1_dst;
Elijah Newren461f5042011-08-11 23:20:15 -06001297 struct string_list_item *lookup;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001298
1299 if (i >= a_renames->nr) {
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001300 ren2 = b_renames->items[j++].util;
1301 } else if (j >= b_renames->nr) {
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001302 ren1 = a_renames->items[i++].util;
1303 } else {
Benjamin Kramer8e24cba2009-03-15 22:01:20 +01001304 int compare = strcmp(a_renames->items[i].string,
1305 b_renames->items[j].string);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001306 if (compare <= 0)
1307 ren1 = a_renames->items[i++].util;
1308 if (compare >= 0)
1309 ren2 = b_renames->items[j++].util;
1310 }
1311
1312 /* TODO: refactor, so that 1/2 are not needed */
1313 if (ren1) {
1314 renames1 = a_renames;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001315 renames2Dst = &b_by_dst;
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001316 branch1 = o->branch1;
1317 branch2 = o->branch2;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001318 } else {
1319 struct rename *tmp;
1320 renames1 = b_renames;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001321 renames2Dst = &a_by_dst;
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001322 branch1 = o->branch2;
1323 branch2 = o->branch1;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001324 tmp = ren2;
1325 ren2 = ren1;
1326 ren1 = tmp;
1327 }
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001328
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001329 if (ren1->processed)
1330 continue;
1331 ren1->processed = 1;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001332 ren1->dst_entry->processed = 1;
Elijah Newren7769a752011-08-11 23:20:05 -06001333 /* BUG: We should only mark src_entry as processed if we
1334 * are not dealing with a rename + add-source case.
1335 */
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001336 ren1->src_entry->processed = 1;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001337
1338 ren1_src = ren1->pair->one->path;
1339 ren1_dst = ren1->pair->two->path;
1340
1341 if (ren2) {
Elijah Newren461f5042011-08-11 23:20:15 -06001342 /* One file renamed on both sides */
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001343 const char *ren2_src = ren2->pair->one->path;
1344 const char *ren2_dst = ren2->pair->two->path;
Elijah Newren4f66dad2011-08-11 23:20:08 -06001345 enum rename_type rename_type;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001346 if (strcmp(ren1_src, ren2_src) != 0)
Elijah Newren461f5042011-08-11 23:20:15 -06001347 die("ren1_src != ren2_src");
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001348 ren2->dst_entry->processed = 1;
1349 ren2->processed = 1;
1350 if (strcmp(ren1_dst, ren2_dst) != 0) {
Elijah Newren4f66dad2011-08-11 23:20:08 -06001351 rename_type = RENAME_ONE_FILE_TO_TWO;
Elijah Newren461f5042011-08-11 23:20:15 -06001352 clean_merge = 0;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001353 } else {
Elijah Newren4f66dad2011-08-11 23:20:08 -06001354 rename_type = RENAME_ONE_FILE_TO_ONE;
Elijah Newren7769a752011-08-11 23:20:05 -06001355 /* BUG: We should only remove ren1_src in
1356 * the base stage (think of rename +
1357 * add-source cases).
1358 */
Miklos Vajnab7fa51d2008-09-02 23:53:47 +02001359 remove_file(o, 1, ren1_src, 1);
Elijah Newrenb8ddf162011-08-11 23:20:02 -06001360 update_entry(ren1->dst_entry,
1361 ren1->pair->one,
1362 ren1->pair->two,
1363 ren2->pair->two);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001364 }
Elijah Newren4f66dad2011-08-11 23:20:08 -06001365 setup_rename_conflict_info(rename_type,
1366 ren1->pair,
1367 ren2->pair,
1368 branch1,
1369 branch2,
1370 ren1->dst_entry,
Elijah Newren232c6352011-08-11 23:20:16 -06001371 ren2->dst_entry,
1372 o,
1373 NULL,
1374 NULL);
Elijah Newren461f5042011-08-11 23:20:15 -06001375 } else if ((lookup = string_list_lookup(renames2Dst, ren1_dst))) {
1376 /* Two different files renamed to the same thing */
1377 char *ren2_dst;
1378 ren2 = lookup->util;
1379 ren2_dst = ren2->pair->two->path;
1380 if (strcmp(ren1_dst, ren2_dst) != 0)
1381 die("ren1_dst != ren2_dst");
1382
1383 clean_merge = 0;
1384 ren2->processed = 1;
1385 /*
1386 * BUG: We should only mark src_entry as processed
1387 * if we are not dealing with a rename + add-source
1388 * case.
1389 */
1390 ren2->src_entry->processed = 1;
1391
1392 setup_rename_conflict_info(RENAME_TWO_FILES_TO_ONE,
1393 ren1->pair,
1394 ren2->pair,
1395 branch1,
1396 branch2,
1397 ren1->dst_entry,
Elijah Newren232c6352011-08-11 23:20:16 -06001398 ren2->dst_entry,
1399 o,
1400 ren1->src_entry,
1401 ren2->src_entry);
1402
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001403 } else {
1404 /* Renamed in 1, maybe changed in 2 */
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001405 /* we only use sha1 and mode of these */
1406 struct diff_filespec src_other, dst_other;
Elijah Newren41d70bd2010-09-20 02:28:47 -06001407 int try_merge;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001408
Elijah Newren41d70bd2010-09-20 02:28:47 -06001409 /*
1410 * unpack_trees loads entries from common-commit
1411 * into stage 1, from head-commit into stage 2, and
1412 * from merge-commit into stage 3. We keep track
1413 * of which side corresponds to the rename.
1414 */
1415 int renamed_stage = a_renames == renames1 ? 2 : 3;
1416 int other_stage = a_renames == renames1 ? 3 : 2;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001417
Elijah Newren7769a752011-08-11 23:20:05 -06001418 /* BUG: We should only remove ren1_src in the base
1419 * stage and in other_stage (think of rename +
1420 * add-source case).
1421 */
Elijah Newren531357a2011-08-11 23:20:03 -06001422 remove_file(o, 1, ren1_src,
1423 renamed_stage == 2 || !was_tracked(ren1_src));
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001424
Elijah Newren41d70bd2010-09-20 02:28:47 -06001425 hashcpy(src_other.sha1, ren1->src_entry->stages[other_stage].sha);
1426 src_other.mode = ren1->src_entry->stages[other_stage].mode;
1427 hashcpy(dst_other.sha1, ren1->dst_entry->stages[other_stage].sha);
1428 dst_other.mode = ren1->dst_entry->stages[other_stage].mode;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001429 try_merge = 0;
1430
Elijah Newren86273e52010-09-08 00:40:41 -06001431 if (sha_eq(src_other.sha1, null_sha1)) {
Elijah Newren4f66dad2011-08-11 23:20:08 -06001432 setup_rename_conflict_info(RENAME_DELETE,
1433 ren1->pair,
1434 NULL,
1435 branch1,
1436 branch2,
1437 ren1->dst_entry,
Elijah Newren232c6352011-08-11 23:20:16 -06001438 NULL,
1439 o,
1440 NULL,
Elijah Newren4f66dad2011-08-11 23:20:08 -06001441 NULL);
Schalk, Kend5af5102010-09-01 13:15:32 -07001442 } else if ((dst_other.mode == ren1->pair->two->mode) &&
1443 sha_eq(dst_other.sha1, ren1->pair->two->sha1)) {
Elijah Newren35a74ab2011-08-11 23:20:27 -06001444 /*
1445 * Added file on the other side identical to
1446 * the file being renamed: clean merge.
1447 * Also, there is no need to overwrite the
1448 * file already in the working copy, so call
1449 * update_file_flags() instead of
1450 * update_file().
1451 */
1452 update_file_flags(o,
1453 ren1->pair->two->sha1,
1454 ren1->pair->two->mode,
1455 ren1_dst,
1456 1, /* update_cache */
1457 0 /* update_wd */);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001458 } else if (!sha_eq(dst_other.sha1, null_sha1)) {
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001459 clean_merge = 0;
1460 try_merge = 1;
Jiang Xin55653a62012-07-25 22:53:13 +08001461 output(o, 1, _("CONFLICT (rename/add): Rename %s->%s in %s. "
1462 "%s added in %s"),
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001463 ren1_src, ren1_dst, branch1,
1464 ren1_dst, branch2);
Junio C Hamanoc94736a2009-07-30 17:38:15 -07001465 if (o->call_depth) {
1466 struct merge_file_info mfi;
Junio C Hamanofa2364e2012-12-06 15:08:01 -08001467 mfi = merge_file_one(o, ren1_dst, null_sha1, 0,
Elijah Newren6bdaead2011-08-11 23:20:12 -06001468 ren1->pair->two->sha1, ren1->pair->two->mode,
1469 dst_other.sha1, dst_other.mode,
1470 branch1, branch2);
Jiang Xin55653a62012-07-25 22:53:13 +08001471 output(o, 1, _("Adding merged %s"), ren1_dst);
Elijah Newren6bdaead2011-08-11 23:20:12 -06001472 update_file(o, 0, mfi.sha, mfi.mode, ren1_dst);
Elijah Newren2a669c32010-09-20 02:28:59 -06001473 try_merge = 0;
Junio C Hamanoc94736a2009-07-30 17:38:15 -07001474 } else {
Elijah Newren3d6b8e82011-08-11 23:19:53 -06001475 char *new_path = unique_path(o, ren1_dst, branch2);
Jiang Xin55653a62012-07-25 22:53:13 +08001476 output(o, 1, _("Adding as %s instead"), new_path);
Junio C Hamanoc94736a2009-07-30 17:38:15 -07001477 update_file(o, 0, dst_other.sha1, dst_other.mode, new_path);
Elijah Newren3d6b8e82011-08-11 23:19:53 -06001478 free(new_path);
Junio C Hamanoc94736a2009-07-30 17:38:15 -07001479 }
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001480 } else
1481 try_merge = 1;
1482
1483 if (try_merge) {
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001484 struct diff_filespec *one, *a, *b;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001485 src_other.path = (char *)ren1_src;
1486
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001487 one = ren1->pair->one;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001488 if (a_renames == renames1) {
1489 a = ren1->pair->two;
1490 b = &src_other;
1491 } else {
1492 b = ren1->pair->two;
1493 a = &src_other;
1494 }
Elijah Newrenb8ddf162011-08-11 23:20:02 -06001495 update_entry(ren1->dst_entry, one, a, b);
Elijah Newren4f66dad2011-08-11 23:20:08 -06001496 setup_rename_conflict_info(RENAME_NORMAL,
1497 ren1->pair,
1498 NULL,
1499 branch1,
1500 NULL,
1501 ren1->dst_entry,
Elijah Newren232c6352011-08-11 23:20:16 -06001502 NULL,
1503 o,
1504 NULL,
Elijah Newren4f66dad2011-08-11 23:20:08 -06001505 NULL);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001506 }
1507 }
1508 }
1509 string_list_clear(&a_by_dst, 0);
1510 string_list_clear(&b_by_dst, 0);
1511
1512 return clean_merge;
1513}
1514
1515static unsigned char *stage_sha(const unsigned char *sha, unsigned mode)
1516{
1517 return (is_null_sha1(sha) || mode == 0) ? NULL: (unsigned char *)sha;
1518}
1519
Eyvind Bernhardsen331a1832010-07-02 21:20:48 +02001520static int read_sha1_strbuf(const unsigned char *sha1, struct strbuf *dst)
1521{
1522 void *buf;
1523 enum object_type type;
1524 unsigned long size;
1525 buf = read_sha1_file(sha1, &type, &size);
1526 if (!buf)
Jiang Xin55653a62012-07-25 22:53:13 +08001527 return error(_("cannot read object %s"), sha1_to_hex(sha1));
Eyvind Bernhardsen331a1832010-07-02 21:20:48 +02001528 if (type != OBJ_BLOB) {
1529 free(buf);
Jiang Xin55653a62012-07-25 22:53:13 +08001530 return error(_("object %s is not a blob"), sha1_to_hex(sha1));
Eyvind Bernhardsen331a1832010-07-02 21:20:48 +02001531 }
1532 strbuf_attach(dst, buf, size, size + 1);
1533 return 0;
1534}
1535
1536static int blob_unchanged(const unsigned char *o_sha,
1537 const unsigned char *a_sha,
Jonathan Nieder3e7589b2010-08-05 06:13:49 -05001538 int renormalize, const char *path)
Eyvind Bernhardsen331a1832010-07-02 21:20:48 +02001539{
1540 struct strbuf o = STRBUF_INIT;
1541 struct strbuf a = STRBUF_INIT;
1542 int ret = 0; /* assume changed for safety */
1543
1544 if (sha_eq(o_sha, a_sha))
1545 return 1;
Jonathan Nieder3e7589b2010-08-05 06:13:49 -05001546 if (!renormalize)
Eyvind Bernhardsen331a1832010-07-02 21:20:48 +02001547 return 0;
1548
1549 assert(o_sha && a_sha);
1550 if (read_sha1_strbuf(o_sha, &o) || read_sha1_strbuf(a_sha, &a))
1551 goto error_return;
1552 /*
1553 * Note: binary | is used so that both renormalizations are
1554 * performed. Comparison can be skipped if both files are
1555 * unchanged since their sha1s have already been compared.
1556 */
1557 if (renormalize_buffer(path, o.buf, o.len, &o) |
Stefan Beller422af492014-09-21 22:49:46 +02001558 renormalize_buffer(path, a.buf, a.len, &a))
Eyvind Bernhardsen331a1832010-07-02 21:20:48 +02001559 ret = (o.len == a.len && !memcmp(o.buf, a.buf, o.len));
1560
1561error_return:
1562 strbuf_release(&o);
1563 strbuf_release(&a);
1564 return ret;
1565}
1566
Elijah Newrenb7033252011-08-11 23:20:19 -06001567static void handle_modify_delete(struct merge_options *o,
Elijah Newren5e3ce662010-09-20 02:28:51 -06001568 const char *path,
Elijah Newrenec61d142011-08-11 23:20:11 -06001569 unsigned char *o_sha, int o_mode,
Elijah Newren5e3ce662010-09-20 02:28:51 -06001570 unsigned char *a_sha, int a_mode,
1571 unsigned char *b_sha, int b_mode)
1572{
Elijah Newrenb7033252011-08-11 23:20:19 -06001573 handle_change_delete(o,
1574 path,
1575 o_sha, o_mode,
1576 a_sha, a_mode,
1577 b_sha, b_mode,
Jiang Xin55653a62012-07-25 22:53:13 +08001578 _("modify"), _("modified"));
Elijah Newren5e3ce662010-09-20 02:28:51 -06001579}
1580
Elijah Newren0c4918d2010-09-20 02:28:52 -06001581static int merge_content(struct merge_options *o,
1582 const char *path,
1583 unsigned char *o_sha, int o_mode,
1584 unsigned char *a_sha, int a_mode,
Elijah Newren61b8bca2010-09-20 02:28:58 -06001585 unsigned char *b_sha, int b_mode,
Elijah Newren4f66dad2011-08-11 23:20:08 -06001586 struct rename_conflict_info *rename_conflict_info)
Elijah Newren0c4918d2010-09-20 02:28:52 -06001587{
Jiang Xin55653a62012-07-25 22:53:13 +08001588 const char *reason = _("content");
Elijah Newren5b448b82011-08-11 23:20:10 -06001589 const char *path1 = NULL, *path2 = NULL;
Elijah Newren0c4918d2010-09-20 02:28:52 -06001590 struct merge_file_info mfi;
1591 struct diff_filespec one, a, b;
Elijah Newren4ab9a152010-09-20 02:29:07 -06001592 unsigned df_conflict_remains = 0;
Elijah Newren0c4918d2010-09-20 02:28:52 -06001593
1594 if (!o_sha) {
Jiang Xin55653a62012-07-25 22:53:13 +08001595 reason = _("add/add");
Elijah Newren0c4918d2010-09-20 02:28:52 -06001596 o_sha = (unsigned char *)null_sha1;
1597 }
1598 one.path = a.path = b.path = (char *)path;
1599 hashcpy(one.sha1, o_sha);
1600 one.mode = o_mode;
1601 hashcpy(a.sha1, a_sha);
1602 a.mode = a_mode;
1603 hashcpy(b.sha1, b_sha);
1604 b.mode = b_mode;
1605
Elijah Newren3c217c02011-08-11 23:20:09 -06001606 if (rename_conflict_info) {
Elijah Newren3c217c02011-08-11 23:20:09 -06001607 struct diff_filepair *pair1 = rename_conflict_info->pair1;
1608
1609 path1 = (o->branch1 == rename_conflict_info->branch1) ?
1610 pair1->two->path : pair1->one->path;
1611 /* If rename_conflict_info->pair2 != NULL, we are in
1612 * RENAME_ONE_FILE_TO_ONE case. Otherwise, we have a
1613 * normal rename.
1614 */
1615 path2 = (rename_conflict_info->pair2 ||
1616 o->branch2 == rename_conflict_info->branch1) ?
1617 pair1->two->path : pair1->one->path;
Elijah Newren3c217c02011-08-11 23:20:09 -06001618
1619 if (dir_in_way(path, !o->call_depth))
1620 df_conflict_remains = 1;
Elijah Newren4ab9a152010-09-20 02:29:07 -06001621 }
Elijah Newrendac47412011-08-11 23:20:17 -06001622 mfi = merge_file_special_markers(o, &one, &a, &b,
1623 o->branch1, path1,
1624 o->branch2, path2);
Elijah Newren4ab9a152010-09-20 02:29:07 -06001625
1626 if (mfi.clean && !df_conflict_remains &&
Elijah Newren5b448b82011-08-11 23:20:10 -06001627 sha_eq(mfi.sha, a_sha) && mfi.mode == a_mode) {
1628 int path_renamed_outside_HEAD;
Jiang Xin55653a62012-07-25 22:53:13 +08001629 output(o, 3, _("Skipped %s (merged same as existing)"), path);
Elijah Newren5b448b82011-08-11 23:20:10 -06001630 /*
1631 * The content merge resulted in the same file contents we
1632 * already had. We can return early if those file contents
1633 * are recorded at the correct path (which may not be true
1634 * if the merge involves a rename).
1635 */
1636 path_renamed_outside_HEAD = !path2 || !strcmp(path, path2);
1637 if (!path_renamed_outside_HEAD) {
1638 add_cacheinfo(mfi.mode, mfi.sha, path,
Junio C Hamanod45b7f42011-09-23 15:21:01 -07001639 0, (!o->call_depth), 0);
Elijah Newren5b448b82011-08-11 23:20:10 -06001640 return mfi.clean;
1641 }
1642 } else
Jiang Xin55653a62012-07-25 22:53:13 +08001643 output(o, 2, _("Auto-merging %s"), path);
Elijah Newren0c4918d2010-09-20 02:28:52 -06001644
1645 if (!mfi.clean) {
1646 if (S_ISGITLINK(mfi.mode))
Jiang Xin55653a62012-07-25 22:53:13 +08001647 reason = _("submodule");
1648 output(o, 1, _("CONFLICT (%s): Merge conflict in %s"),
Elijah Newren0c4918d2010-09-20 02:28:52 -06001649 reason, path);
Elijah Newren4f66dad2011-08-11 23:20:08 -06001650 if (rename_conflict_info && !df_conflict_remains)
Elijah Newrenb8ddf162011-08-11 23:20:02 -06001651 update_stages(path, &one, &a, &b);
Elijah Newren0c4918d2010-09-20 02:28:52 -06001652 }
1653
Elijah Newren4ab9a152010-09-20 02:29:07 -06001654 if (df_conflict_remains) {
Elijah Newren3d6b8e82011-08-11 23:19:53 -06001655 char *new_path;
Elijah Newren51931bf2011-08-11 23:20:06 -06001656 if (o->call_depth) {
1657 remove_file_from_cache(path);
1658 } else {
1659 if (!mfi.clean)
1660 update_stages(path, &one, &a, &b);
1661 else {
1662 int file_from_stage2 = was_tracked(path);
1663 struct diff_filespec merged;
1664 hashcpy(merged.sha1, mfi.sha);
1665 merged.mode = mfi.mode;
1666
1667 update_stages(path, NULL,
1668 file_from_stage2 ? &merged : NULL,
1669 file_from_stage2 ? NULL : &merged);
1670 }
1671
1672 }
Elijah Newren4f66dad2011-08-11 23:20:08 -06001673 new_path = unique_path(o, path, rename_conflict_info->branch1);
Jiang Xin55653a62012-07-25 22:53:13 +08001674 output(o, 1, _("Adding as %s instead"), new_path);
Elijah Newren51931bf2011-08-11 23:20:06 -06001675 update_file(o, 0, mfi.sha, mfi.mode, new_path);
Elijah Newren3d6b8e82011-08-11 23:19:53 -06001676 free(new_path);
Elijah Newren51931bf2011-08-11 23:20:06 -06001677 mfi.clean = 0;
Elijah Newren4ab9a152010-09-20 02:29:07 -06001678 } else {
1679 update_file(o, mfi.clean, mfi.sha, mfi.mode, path);
1680 }
Elijah Newren0c4918d2010-09-20 02:28:52 -06001681 return mfi.clean;
1682
1683}
1684
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001685/* Per entry merge function */
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001686static int process_entry(struct merge_options *o,
1687 const char *path, struct stage_data *entry)
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001688{
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001689 int clean_merge = 1;
Jonathan Nieder1bc0ab72010-08-05 06:15:32 -05001690 int normalize = o->renormalize;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001691 unsigned o_mode = entry->stages[1].mode;
1692 unsigned a_mode = entry->stages[2].mode;
1693 unsigned b_mode = entry->stages[3].mode;
1694 unsigned char *o_sha = stage_sha(entry->stages[1].sha, o_mode);
1695 unsigned char *a_sha = stage_sha(entry->stages[2].sha, a_mode);
1696 unsigned char *b_sha = stage_sha(entry->stages[3].sha, b_mode);
1697
Elijah Newren37348932010-07-09 07:10:53 -06001698 entry->processed = 1;
Elijah Newren4f66dad2011-08-11 23:20:08 -06001699 if (entry->rename_conflict_info) {
1700 struct rename_conflict_info *conflict_info = entry->rename_conflict_info;
Elijah Newren07413c52010-09-20 02:29:00 -06001701 switch (conflict_info->rename_type) {
Elijah Newren882fd112010-09-20 02:29:03 -06001702 case RENAME_NORMAL:
Elijah Newren4f66dad2011-08-11 23:20:08 -06001703 case RENAME_ONE_FILE_TO_ONE:
1704 clean_merge = merge_content(o, path,
Elijah Newren882fd112010-09-20 02:29:03 -06001705 o_sha, o_mode, a_sha, a_mode, b_sha, b_mode,
Elijah Newren4f66dad2011-08-11 23:20:08 -06001706 conflict_info);
Elijah Newren882fd112010-09-20 02:29:03 -06001707 break;
Elijah Newren3b130adf2010-09-20 02:29:02 -06001708 case RENAME_DELETE:
1709 clean_merge = 0;
1710 conflict_rename_delete(o, conflict_info->pair1,
1711 conflict_info->branch1,
1712 conflict_info->branch2);
1713 break;
Elijah Newren07413c52010-09-20 02:29:00 -06001714 case RENAME_ONE_FILE_TO_TWO:
Elijah Newren07413c52010-09-20 02:29:00 -06001715 clean_merge = 0;
Elijah Newrena99b7f22011-08-11 23:20:14 -06001716 conflict_rename_rename_1to2(o, conflict_info);
Elijah Newren07413c52010-09-20 02:29:00 -06001717 break;
Elijah Newren461f5042011-08-11 23:20:15 -06001718 case RENAME_TWO_FILES_TO_ONE:
1719 clean_merge = 0;
1720 conflict_rename_rename_2to1(o, conflict_info);
1721 break;
Elijah Newren07413c52010-09-20 02:29:00 -06001722 default:
1723 entry->processed = 0;
1724 break;
1725 }
Elijah Newren71f7ffc2010-09-20 02:29:04 -06001726 } else if (o_sha && (!a_sha || !b_sha)) {
Elijah Newren37348932010-07-09 07:10:53 -06001727 /* Case A: Deleted in one */
1728 if ((!a_sha && !b_sha) ||
1729 (!b_sha && blob_unchanged(o_sha, a_sha, normalize, path)) ||
1730 (!a_sha && blob_unchanged(o_sha, b_sha, normalize, path))) {
1731 /* Deleted in both or deleted in one and
1732 * unchanged in the other */
1733 if (a_sha)
Jiang Xin55653a62012-07-25 22:53:13 +08001734 output(o, 2, _("Removing %s"), path);
Elijah Newren37348932010-07-09 07:10:53 -06001735 /* do not touch working file if it did not exist */
1736 remove_file(o, 1, path, !a_sha);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001737 } else {
Elijah Newrenedd2faf2011-08-11 23:20:07 -06001738 /* Modify/delete; deleted side may have put a directory in the way */
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001739 clean_merge = 0;
Elijah Newrenb7033252011-08-11 23:20:19 -06001740 handle_modify_delete(o, path, o_sha, o_mode,
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001741 a_sha, a_mode, b_sha, b_mode);
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001742 }
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001743 } else if ((!o_sha && a_sha && !b_sha) ||
1744 (!o_sha && !a_sha && b_sha)) {
1745 /* Case B: Added in one. */
Elijah Newrenedd2faf2011-08-11 23:20:07 -06001746 /* [nothing|directory] -> ([nothing|directory], file) */
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001747
Elijah Newren9c0bbb52010-09-20 02:28:56 -06001748 const char *add_branch;
1749 const char *other_branch;
1750 unsigned mode;
1751 const unsigned char *sha;
1752 const char *conf;
Elijah Newren37348932010-07-09 07:10:53 -06001753
Elijah Newren9c0bbb52010-09-20 02:28:56 -06001754 if (a_sha) {
1755 add_branch = o->branch1;
1756 other_branch = o->branch2;
1757 mode = a_mode;
1758 sha = a_sha;
Jiang Xin55653a62012-07-25 22:53:13 +08001759 conf = _("file/directory");
Elijah Newren9c0bbb52010-09-20 02:28:56 -06001760 } else {
1761 add_branch = o->branch2;
1762 other_branch = o->branch1;
1763 mode = b_mode;
1764 sha = b_sha;
Jiang Xin55653a62012-07-25 22:53:13 +08001765 conf = _("directory/file");
Elijah Newren9c0bbb52010-09-20 02:28:56 -06001766 }
Elijah Newrenf2507b42011-08-11 23:19:57 -06001767 if (dir_in_way(path, !o->call_depth)) {
Elijah Newren3d6b8e82011-08-11 23:19:53 -06001768 char *new_path = unique_path(o, path, add_branch);
Elijah Newren9c0bbb52010-09-20 02:28:56 -06001769 clean_merge = 0;
Jiang Xin55653a62012-07-25 22:53:13 +08001770 output(o, 1, _("CONFLICT (%s): There is a directory with name %s in %s. "
1771 "Adding %s as %s"),
Elijah Newren9c0bbb52010-09-20 02:28:56 -06001772 conf, path, other_branch, path, new_path);
Elijah Newren51931bf2011-08-11 23:20:06 -06001773 if (o->call_depth)
1774 remove_file_from_cache(path);
Elijah Newren9c0bbb52010-09-20 02:28:56 -06001775 update_file(o, 0, sha, mode, new_path);
Elijah Newren7b1c6102011-08-11 23:19:55 -06001776 if (o->call_depth)
1777 remove_file_from_cache(path);
Elijah Newren3d6b8e82011-08-11 23:19:53 -06001778 free(new_path);
Elijah Newren9c0bbb52010-09-20 02:28:56 -06001779 } else {
Jiang Xin55653a62012-07-25 22:53:13 +08001780 output(o, 2, _("Adding %s"), path);
Elijah Newren35a74ab2011-08-11 23:20:27 -06001781 /* do not overwrite file if already present */
1782 update_file_flags(o, sha, mode, path, 1, !a_sha);
Elijah Newren9c0bbb52010-09-20 02:28:56 -06001783 }
Elijah Newrenedd2faf2011-08-11 23:20:07 -06001784 } else if (a_sha && b_sha) {
1785 /* Case C: Added in both (check for same permissions) and */
1786 /* case D: Modified in both, but differently. */
Elijah Newren4f66dad2011-08-11 23:20:08 -06001787 clean_merge = merge_content(o, path,
Elijah Newrenedd2faf2011-08-11 23:20:07 -06001788 o_sha, o_mode, a_sha, a_mode, b_sha, b_mode,
1789 NULL);
1790 } else if (!o_sha && !a_sha && !b_sha) {
1791 /*
1792 * this entry was deleted altogether. a_mode == 0 means
1793 * we had that path and want to actively remove it.
1794 */
1795 remove_file(o, 1, path, !a_mode);
1796 } else
Jiang Xin55653a62012-07-25 22:53:13 +08001797 die(_("Fatal merge failure, shouldn't happen."));
Elijah Newren37348932010-07-09 07:10:53 -06001798
1799 return clean_merge;
1800}
1801
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001802int merge_trees(struct merge_options *o,
1803 struct tree *head,
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001804 struct tree *merge,
1805 struct tree *common,
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001806 struct tree **result)
1807{
1808 int code, clean;
1809
Junio C Hamano85e51b72008-06-30 22:18:57 -07001810 if (o->subtree_shift) {
1811 merge = shift_tree_object(head, merge, o->subtree_shift);
1812 common = shift_tree_object(head, common, o->subtree_shift);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001813 }
1814
1815 if (sha_eq(common->object.sha1, merge->object.sha1)) {
Jiang Xin55653a62012-07-25 22:53:13 +08001816 output(o, 0, _("Already up-to-date!"));
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001817 *result = head;
1818 return 1;
1819 }
1820
Miklos Vajnab7fa51d2008-09-02 23:53:47 +02001821 code = git_merge_trees(o->call_depth, common, head, merge);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001822
Junio C Hamanofadd0692009-09-07 22:43:11 -07001823 if (code != 0) {
1824 if (show(o, 4) || o->call_depth)
Jiang Xin55653a62012-07-25 22:53:13 +08001825 die(_("merging of trees %s and %s failed"),
Junio C Hamanofadd0692009-09-07 22:43:11 -07001826 sha1_to_hex(head->object.sha1),
1827 sha1_to_hex(merge->object.sha1));
1828 else
1829 exit(128);
1830 }
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001831
1832 if (unmerged_cache()) {
1833 struct string_list *entries, *re_head, *re_merge;
1834 int i;
Miklos Vajna696ee232008-09-03 19:08:56 +02001835 string_list_clear(&o->current_file_set, 1);
1836 string_list_clear(&o->current_directory_set, 1);
1837 get_files_dirs(o, head);
1838 get_files_dirs(o, merge);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001839
1840 entries = get_unmerged();
Elijah Newren70cc3d32011-08-11 23:19:58 -06001841 record_df_conflict_files(o, entries);
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001842 re_head = get_renames(o, head, common, head, merge, entries);
1843 re_merge = get_renames(o, merge, common, head, merge, entries);
1844 clean = process_renames(o, re_head, re_merge);
Elijah Newrenedd2faf2011-08-11 23:20:07 -06001845 for (i = entries->nr-1; 0 <= i; i--) {
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001846 const char *path = entries->items[i].string;
1847 struct stage_data *e = entries->items[i].util;
1848 if (!e->processed
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001849 && !process_entry(o, path, e))
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001850 clean = 0;
1851 }
Elijah Newren37348932010-07-09 07:10:53 -06001852 for (i = 0; i < entries->nr; i++) {
Junio C Hamano7edba4c2010-09-20 02:28:35 -06001853 struct stage_data *e = entries->items[i].util;
1854 if (!e->processed)
Jiang Xin55653a62012-07-25 22:53:13 +08001855 die(_("Unprocessed path??? %s"),
Junio C Hamano7edba4c2010-09-20 02:28:35 -06001856 entries->items[i].string);
1857 }
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001858
1859 string_list_clear(re_merge, 0);
1860 string_list_clear(re_head, 0);
1861 string_list_clear(entries, 1);
1862
1863 }
1864 else
1865 clean = 1;
1866
Miklos Vajnab7fa51d2008-09-02 23:53:47 +02001867 if (o->call_depth)
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001868 *result = write_tree_from_memory(o);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001869
1870 return clean;
1871}
1872
1873static struct commit_list *reverse_commit_list(struct commit_list *list)
1874{
1875 struct commit_list *next = NULL, *current, *backup;
1876 for (current = list; current; current = backup) {
1877 backup = current->next;
1878 current->next = next;
1879 next = current;
1880 }
1881 return next;
1882}
1883
1884/*
1885 * Merge the commits h1 and h2, return the resulting virtual
1886 * commit object and a flag indicating the cleanness of the merge.
1887 */
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001888int merge_recursive(struct merge_options *o,
1889 struct commit *h1,
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001890 struct commit *h2,
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001891 struct commit_list *ca,
1892 struct commit **result)
1893{
1894 struct commit_list *iter;
1895 struct commit *merged_common_ancestors;
1896 struct tree *mrtree = mrtree;
1897 int clean;
1898
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001899 if (show(o, 4)) {
Jiang Xin55653a62012-07-25 22:53:13 +08001900 output(o, 4, _("Merging:"));
Miklos Vajna50336392008-09-02 23:30:09 +02001901 output_commit_title(o, h1);
1902 output_commit_title(o, h2);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001903 }
1904
1905 if (!ca) {
1906 ca = get_merge_bases(h1, h2, 1);
1907 ca = reverse_commit_list(ca);
1908 }
1909
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001910 if (show(o, 5)) {
Ralf Thielowe0453cd2012-08-05 19:56:38 +02001911 unsigned cnt = commit_list_count(ca);
1912
1913 output(o, 5, Q_("found %u common ancestor:",
1914 "found %u common ancestors:", cnt), cnt);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001915 for (iter = ca; iter; iter = iter->next)
Miklos Vajna50336392008-09-02 23:30:09 +02001916 output_commit_title(o, iter->item);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001917 }
1918
1919 merged_common_ancestors = pop_commit(&ca);
1920 if (merged_common_ancestors == NULL) {
Jonathan Nieder03f622c2011-08-16 13:27:39 -05001921 /* if there is no common ancestor, use an empty tree */
1922 struct tree *tree;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001923
Jeff Kingcba595b2012-03-22 14:53:24 -04001924 tree = lookup_tree(EMPTY_TREE_SHA1_BIN);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001925 merged_common_ancestors = make_virtual_commit(tree, "ancestor");
1926 }
1927
1928 for (iter = ca; iter; iter = iter->next) {
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001929 const char *saved_b1, *saved_b2;
Miklos Vajna50336392008-09-02 23:30:09 +02001930 o->call_depth++;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001931 /*
1932 * When the merge fails, the result contains files
1933 * with conflict markers. The cleanness flag is
1934 * ignored, it was never actually used, as result of
1935 * merge_trees has always overwritten it: the committed
1936 * "conflicts" were already resolved.
1937 */
1938 discard_cache();
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001939 saved_b1 = o->branch1;
1940 saved_b2 = o->branch2;
1941 o->branch1 = "Temporary merge branch 1";
1942 o->branch2 = "Temporary merge branch 2";
1943 merge_recursive(o, merged_common_ancestors, iter->item,
1944 NULL, &merged_common_ancestors);
1945 o->branch1 = saved_b1;
1946 o->branch2 = saved_b2;
Miklos Vajna50336392008-09-02 23:30:09 +02001947 o->call_depth--;
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001948
1949 if (!merged_common_ancestors)
Jiang Xin55653a62012-07-25 22:53:13 +08001950 die(_("merge returned no commit"));
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001951 }
1952
1953 discard_cache();
Miklos Vajnab7fa51d2008-09-02 23:53:47 +02001954 if (!o->call_depth)
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001955 read_cache();
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001956
Jonathan Nieder7ca56aa2010-03-20 19:52:21 -05001957 o->ancestor = "merged common ancestors";
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001958 clean = merge_trees(o, h1->tree, h2->tree, merged_common_ancestors->tree,
1959 &mrtree);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001960
Miklos Vajnab7fa51d2008-09-02 23:53:47 +02001961 if (o->call_depth) {
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001962 *result = make_virtual_commit(mrtree, "merged tree");
1963 commit_list_insert(h1, &(*result)->parents);
1964 commit_list_insert(h2, &(*result)->parents->next);
1965 }
Miklos Vajnac7d84922008-09-03 02:30:03 +02001966 flush_output(o);
Junio C Hamanof31027c2011-01-06 13:50:06 -08001967 if (show(o, 2))
1968 diff_warn_rename_limit("merge.renamelimit",
1969 o->needed_rename_limit, 0);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02001970 return clean;
1971}
1972
Stephan Beyer73118f82008-08-12 22:13:59 +02001973static struct commit *get_ref(const unsigned char *sha1, const char *name)
1974{
1975 struct object *object;
1976
1977 object = deref_tag(parse_object(sha1), name, strlen(name));
1978 if (!object)
1979 return NULL;
1980 if (object->type == OBJ_TREE)
1981 return make_virtual_commit((struct tree*)object, name);
1982 if (object->type != OBJ_COMMIT)
1983 return NULL;
1984 if (parse_commit((struct commit *)object))
1985 return NULL;
1986 return (struct commit *)object;
1987}
1988
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001989int merge_recursive_generic(struct merge_options *o,
1990 const unsigned char *head,
1991 const unsigned char *merge,
1992 int num_base_list,
1993 const unsigned char **base_list,
1994 struct commit **result)
Stephan Beyer73118f82008-08-12 22:13:59 +02001995{
Nguyễn Thái Ngọc Duy03b86642014-06-13 19:19:23 +07001996 int clean;
Stephan Beyer73118f82008-08-12 22:13:59 +02001997 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
Miklos Vajna8a2fce12008-08-25 16:25:57 +02001998 struct commit *head_commit = get_ref(head, o->branch1);
1999 struct commit *next_commit = get_ref(merge, o->branch2);
Stephan Beyer73118f82008-08-12 22:13:59 +02002000 struct commit_list *ca = NULL;
2001
2002 if (base_list) {
2003 int i;
Miklos Vajna8a2fce12008-08-25 16:25:57 +02002004 for (i = 0; i < num_base_list; ++i) {
Stephan Beyer73118f82008-08-12 22:13:59 +02002005 struct commit *base;
Miklos Vajna8a2fce12008-08-25 16:25:57 +02002006 if (!(base = get_ref(base_list[i], sha1_to_hex(base_list[i]))))
Jiang Xin55653a62012-07-25 22:53:13 +08002007 return error(_("Could not parse object '%s'"),
Miklos Vajna8a2fce12008-08-25 16:25:57 +02002008 sha1_to_hex(base_list[i]));
Stephan Beyer73118f82008-08-12 22:13:59 +02002009 commit_list_insert(base, &ca);
2010 }
2011 }
2012
Nguyễn Thái Ngọc Duy03b86642014-06-13 19:19:23 +07002013 hold_locked_index(lock, 1);
Miklos Vajna8a2fce12008-08-25 16:25:57 +02002014 clean = merge_recursive(o, head_commit, next_commit, ca,
2015 result);
Stephan Beyer73118f82008-08-12 22:13:59 +02002016 if (active_cache_changed &&
Nguyễn Thái Ngọc Duy03b86642014-06-13 19:19:23 +07002017 write_locked_index(&the_index, lock, COMMIT_LOCK))
Jiang Xin55653a62012-07-25 22:53:13 +08002018 return error(_("Unable to write index."));
Stephan Beyer73118f82008-08-12 22:13:59 +02002019
2020 return clean ? 0 : 1;
2021}
2022
Tanay Abhra0e7bcb12014-08-13 01:22:01 -07002023static void merge_recursive_config(struct merge_options *o)
Miklos Vajna9047ebb2008-08-12 18:45:14 +02002024{
Tanay Abhra0e7bcb12014-08-13 01:22:01 -07002025 git_config_get_int("merge.verbosity", &o->verbosity);
2026 git_config_get_int("diff.renamelimit", &o->diff_rename_limit);
2027 git_config_get_int("merge.renamelimit", &o->merge_rename_limit);
2028 git_config(git_xmerge_config, NULL);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02002029}
2030
Miklos Vajna8a2fce12008-08-25 16:25:57 +02002031void init_merge_options(struct merge_options *o)
Miklos Vajna9047ebb2008-08-12 18:45:14 +02002032{
Miklos Vajna8a2fce12008-08-25 16:25:57 +02002033 memset(o, 0, sizeof(struct merge_options));
2034 o->verbosity = 2;
2035 o->buffer_output = 1;
2036 o->diff_rename_limit = -1;
2037 o->merge_rename_limit = -1;
Jonathan Nieder7610fa52010-08-05 06:32:41 -05002038 o->renormalize = 0;
Tanay Abhra0e7bcb12014-08-13 01:22:01 -07002039 merge_recursive_config(o);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02002040 if (getenv("GIT_MERGE_VERBOSITY"))
Miklos Vajna8a2fce12008-08-25 16:25:57 +02002041 o->verbosity =
Miklos Vajna9047ebb2008-08-12 18:45:14 +02002042 strtol(getenv("GIT_MERGE_VERBOSITY"), NULL, 10);
Miklos Vajna8a2fce12008-08-25 16:25:57 +02002043 if (o->verbosity >= 5)
2044 o->buffer_output = 0;
Miklos Vajnac7d84922008-09-03 02:30:03 +02002045 strbuf_init(&o->obuf, 0);
Tanay Abhraf93d7c62014-07-18 02:19:00 -07002046 string_list_init(&o->current_file_set, 1);
2047 string_list_init(&o->current_directory_set, 1);
2048 string_list_init(&o->df_conflict_file_set, 1);
Miklos Vajna9047ebb2008-08-12 18:45:14 +02002049}
Jonathan Nieder635a7bb2010-08-26 00:47:58 -05002050
2051int parse_merge_opt(struct merge_options *o, const char *s)
2052{
Jeff King95b567c2014-06-18 15:48:29 -04002053 const char *arg;
2054
Jonathan Nieder635a7bb2010-08-26 00:47:58 -05002055 if (!s || !*s)
2056 return -1;
2057 if (!strcmp(s, "ours"))
2058 o->recursive_variant = MERGE_RECURSIVE_OURS;
2059 else if (!strcmp(s, "theirs"))
2060 o->recursive_variant = MERGE_RECURSIVE_THEIRS;
2061 else if (!strcmp(s, "subtree"))
2062 o->subtree_shift = "";
Jeff King95b567c2014-06-18 15:48:29 -04002063 else if (skip_prefix(s, "subtree=", &arg))
2064 o->subtree_shift = arg;
Justin Frankel58a1ece2010-08-26 00:50:45 -05002065 else if (!strcmp(s, "patience"))
Junio C Hamano307ab202012-02-19 15:36:55 -08002066 o->xdl_opts = DIFF_WITH_ALG(o, PATIENCE_DIFF);
Tay Ray Chuan8c912ee2011-07-12 14:10:25 +08002067 else if (!strcmp(s, "histogram"))
Junio C Hamano307ab202012-02-19 15:36:55 -08002068 o->xdl_opts = DIFF_WITH_ALG(o, HISTOGRAM_DIFF);
Jeff King95b567c2014-06-18 15:48:29 -04002069 else if (skip_prefix(s, "diff-algorithm=", &arg)) {
2070 long value = parse_algorithm_value(arg);
Michal Privoznik07924d42013-01-16 08:51:58 +01002071 if (value < 0)
2072 return -1;
2073 /* clear out previous settings */
2074 DIFF_XDL_CLR(o, NEED_MINIMAL);
2075 o->xdl_opts &= ~XDF_DIFF_ALGORITHM_MASK;
2076 o->xdl_opts |= value;
2077 }
Justin Frankel4e5dd042010-08-26 00:51:47 -05002078 else if (!strcmp(s, "ignore-space-change"))
2079 o->xdl_opts |= XDF_IGNORE_WHITESPACE_CHANGE;
2080 else if (!strcmp(s, "ignore-all-space"))
2081 o->xdl_opts |= XDF_IGNORE_WHITESPACE;
2082 else if (!strcmp(s, "ignore-space-at-eol"))
2083 o->xdl_opts |= XDF_IGNORE_WHITESPACE_AT_EOL;
Jonathan Nieder635a7bb2010-08-26 00:47:58 -05002084 else if (!strcmp(s, "renormalize"))
2085 o->renormalize = 1;
2086 else if (!strcmp(s, "no-renormalize"))
2087 o->renormalize = 0;
Jeff King95b567c2014-06-18 15:48:29 -04002088 else if (skip_prefix(s, "rename-threshold=", &arg)) {
2089 if ((o->rename_score = parse_rename_score(&arg)) == -1 || *arg != 0)
Kevin Ballard10ae7522010-09-27 16:58:25 -07002090 return -1;
2091 }
Jonathan Nieder635a7bb2010-08-26 00:47:58 -05002092 else
2093 return -1;
2094 return 0;
2095}