]> git.ipfire.org Git - thirdparty/git.git/blame - unpack-trees.c
Merge branch 'maint'
[thirdparty/git.git] / unpack-trees.c
CommitLineData
bc052d7f 1#define NO_THE_INDEX_COMPATIBILITY_MACROS
16da134b 2#include "cache.h"
f8a9d428 3#include "dir.h"
16da134b
JS
4#include "tree.h"
5#include "tree-walk.h"
076b0adc 6#include "cache-tree.h"
16da134b 7#include "unpack-trees.h"
96a02f8f 8#include "progress.h"
0cf73755 9#include "refs.h"
06f33c17 10#include "attr.h"
16da134b 11
8ccba008
JH
12/*
13 * Error messages expected by scripts out of plumbing commands such as
14 * read-tree. Non-scripted Porcelain is not required to use these messages
15 * and in fact are encouraged to reword them to better suit their particular
16 * situation better. See how "git checkout" replaces not_uptodate_file to
17 * explain why it does not allow switching between branches when you have
18 * local changes, for example.
19 */
20static struct unpack_trees_error_msgs unpack_plumbing_errors = {
21 /* would_overwrite */
22 "Entry '%s' would be overwritten by merge. Cannot merge.",
23
24 /* not_uptodate_file */
25 "Entry '%s' not uptodate. Cannot merge.",
26
27 /* not_uptodate_dir */
28 "Updating '%s' would lose untracked files in it",
29
30 /* would_lose_untracked */
31 "Untracked working tree file '%s' would be %s by merge.",
32
33 /* bind_overlap */
34 "Entry '%s' overlaps with '%s'. Cannot bind.",
e800ec9d
NTND
35
36 /* sparse_not_uptodate_file */
37 "Entry '%s' not uptodate. Cannot update sparse checkout.",
38
39 /* would_lose_orphaned */
40 "Working tree file '%s' would be %s by sparse checkout update.",
8ccba008
JH
41};
42
43#define ERRORMSG(o,fld) \
44 ( ((o) && (o)->msgs.fld) \
45 ? ((o)->msgs.fld) \
46 : (unpack_plumbing_errors.fld) )
47
34110cd4
LT
48static void add_entry(struct unpack_trees_options *o, struct cache_entry *ce,
49 unsigned int set, unsigned int clear)
b48d5a05 50{
34110cd4
LT
51 unsigned int size = ce_size(ce);
52 struct cache_entry *new = xmalloc(size);
53
54 clear |= CE_HASHED | CE_UNHASHED;
55
56 memcpy(new, ce, size);
57 new->next = NULL;
58 new->ce_flags = (new->ce_flags & ~clear) | set;
aab3b9a1 59 add_index_entry(&o->result, new, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);
b48d5a05
LT
60}
61
78478927
KB
62/*
63 * Unlink the last component and schedule the leading directories for
64 * removal, such that empty directories get removed.
16da134b 65 */
c40641b7 66static void unlink_entry(struct cache_entry *ce)
16da134b 67{
57199892 68 if (has_symlink_or_noent_leading_path(ce->name, ce_namelen(ce)))
16a4c617 69 return;
80d706af
PC
70 if (remove_or_warn(ce->ce_mode, ce->name))
71 return;
78478927 72 schedule_dir_for_removal(ce->name, ce_namelen(ce));
16da134b
JS
73}
74
16da134b 75static struct checkout state;
c4758d3c 76static int check_updates(struct unpack_trees_options *o)
16da134b 77{
96a02f8f 78 unsigned cnt = 0, total = 0;
dc6a0757 79 struct progress *progress = NULL;
34110cd4 80 struct index_state *index = &o->result;
33ecf7eb 81 int i;
c4758d3c 82 int errs = 0;
16da134b
JS
83
84 if (o->update && o->verbose_update) {
34110cd4
LT
85 for (total = cnt = 0; cnt < index->cache_nr; cnt++) {
86 struct cache_entry *ce = index->cache[cnt];
e663db2f 87 if (ce->ce_flags & (CE_UPDATE | CE_REMOVE | CE_WT_REMOVE))
16da134b
JS
88 total++;
89 }
90
dc6a0757 91 progress = start_progress_delay("Checking out files",
e8548645 92 total, 50, 1);
16da134b
JS
93 cnt = 0;
94 }
95
66985e66
JH
96 if (o->update)
97 git_attr_set_direction(GIT_ATTR_CHECKOUT, &o->result);
34110cd4
LT
98 for (i = 0; i < index->cache_nr; i++) {
99 struct cache_entry *ce = index->cache[i];
16da134b 100
e663db2f
NTND
101 if (ce->ce_flags & CE_WT_REMOVE) {
102 display_progress(progress, ++cnt);
103 if (o->update)
104 unlink_entry(ce);
105 continue;
106 }
107
7a51ed66 108 if (ce->ce_flags & CE_REMOVE) {
1fa6ead4 109 display_progress(progress, ++cnt);
16da134b 110 if (o->update)
c40641b7 111 unlink_entry(ce);
16da134b 112 }
1fa6ead4 113 }
36419c8e 114 remove_marked_cache_entries(&o->result);
78478927 115 remove_scheduled_dirs();
1fa6ead4
LT
116
117 for (i = 0; i < index->cache_nr; i++) {
118 struct cache_entry *ce = index->cache[i];
119
7a51ed66 120 if (ce->ce_flags & CE_UPDATE) {
1fa6ead4 121 display_progress(progress, ++cnt);
7a51ed66 122 ce->ce_flags &= ~CE_UPDATE;
16a4c617 123 if (o->update) {
c4758d3c 124 errs |= checkout_entry(ce, &state, NULL);
16a4c617 125 }
16da134b
JS
126 }
127 }
4d4fcc54 128 stop_progress(&progress);
66985e66
JH
129 if (o->update)
130 git_attr_set_direction(GIT_ATTR_CHECKIN, NULL);
c4758d3c 131 return errs != 0;
16da134b
JS
132}
133
e800ec9d
NTND
134static int verify_uptodate_sparse(struct cache_entry *ce, struct unpack_trees_options *o);
135static int verify_absent_sparse(struct cache_entry *ce, const char *action, struct unpack_trees_options *o);
136
137static int will_have_skip_worktree(const struct cache_entry *ce, struct unpack_trees_options *o)
138{
139 const char *basename;
140
141 if (ce_stage(ce))
142 return 0;
143
144 basename = strrchr(ce->name, '/');
145 basename = basename ? basename+1 : ce->name;
146 return excluded_from_list(ce->name, ce_namelen(ce), basename, NULL, o->el) <= 0;
147}
148
149static int apply_sparse_checkout(struct cache_entry *ce, struct unpack_trees_options *o)
150{
151 int was_skip_worktree = ce_skip_worktree(ce);
152
153 if (will_have_skip_worktree(ce, o))
154 ce->ce_flags |= CE_SKIP_WORKTREE;
155 else
156 ce->ce_flags &= ~CE_SKIP_WORKTREE;
157
158 /*
159 * We only care about files getting into the checkout area
160 * If merge strategies want to remove some, go ahead, this
161 * flag will be removed eventually in unpack_trees() if it's
162 * outside checkout area.
163 */
164 if (ce->ce_flags & CE_REMOVE)
165 return 0;
166
167 if (!was_skip_worktree && ce_skip_worktree(ce)) {
168 /*
169 * If CE_UPDATE is set, verify_uptodate() must be called already
170 * also stat info may have lost after merged_entry() so calling
171 * verify_uptodate() again may fail
172 */
173 if (!(ce->ce_flags & CE_UPDATE) && verify_uptodate_sparse(ce, o))
174 return -1;
175 ce->ce_flags |= CE_WT_REMOVE;
176 }
177 if (was_skip_worktree && !ce_skip_worktree(ce)) {
178 if (verify_absent_sparse(ce, "overwritten", o))
179 return -1;
180 ce->ce_flags |= CE_UPDATE;
181 }
182 return 0;
183}
184
34110cd4 185static inline int call_unpack_fn(struct cache_entry **src, struct unpack_trees_options *o)
01904572 186{
34110cd4
LT
187 int ret = o->fn(src, o);
188 if (ret > 0)
01904572 189 ret = 0;
01904572
LT
190 return ret;
191}
192
da165f47
JH
193static void mark_ce_used(struct cache_entry *ce, struct unpack_trees_options *o)
194{
195 ce->ce_flags |= CE_UNPACKED;
196
197 if (o->cache_bottom < o->src_index->cache_nr &&
198 o->src_index->cache[o->cache_bottom] == ce) {
199 int bottom = o->cache_bottom;
200 while (bottom < o->src_index->cache_nr &&
201 o->src_index->cache[bottom]->ce_flags & CE_UNPACKED)
202 bottom++;
203 o->cache_bottom = bottom;
204 }
205}
206
207static void mark_all_ce_unused(struct index_state *index)
208{
209 int i;
210 for (i = 0; i < index->cache_nr; i++)
211 index->cache[i]->ce_flags &= ~CE_UNPACKED;
212}
213
214static int locate_in_src_index(struct cache_entry *ce,
215 struct unpack_trees_options *o)
216{
217 struct index_state *index = o->src_index;
218 int len = ce_namelen(ce);
219 int pos = index_name_pos(index, ce->name, len);
220 if (pos < 0)
221 pos = -1 - pos;
222 return pos;
223}
224
225/*
226 * We call unpack_index_entry() with an unmerged cache entry
227 * only in diff-index, and it wants a single callback. Skip
228 * the other unmerged entry with the same name.
229 */
230static void mark_ce_used_same_name(struct cache_entry *ce,
231 struct unpack_trees_options *o)
232{
233 struct index_state *index = o->src_index;
234 int len = ce_namelen(ce);
235 int pos;
236
237 for (pos = locate_in_src_index(ce, o); pos < index->cache_nr; pos++) {
238 struct cache_entry *next = index->cache[pos];
239 if (len != ce_namelen(next) ||
240 memcmp(ce->name, next->name, len))
241 break;
242 mark_ce_used(next, o);
243 }
244}
245
246static struct cache_entry *next_cache_entry(struct unpack_trees_options *o)
247{
248 const struct index_state *index = o->src_index;
249 int pos = o->cache_bottom;
250
251 while (pos < index->cache_nr) {
252 struct cache_entry *ce = index->cache[pos];
253 if (!(ce->ce_flags & CE_UNPACKED))
254 return ce;
255 pos++;
256 }
257 return NULL;
258}
259
260static void add_same_unmerged(struct cache_entry *ce,
261 struct unpack_trees_options *o)
262{
263 struct index_state *index = o->src_index;
264 int len = ce_namelen(ce);
265 int pos = index_name_pos(index, ce->name, len);
266
267 if (0 <= pos)
268 die("programming error in a caller of mark_ce_used_same_name");
269 for (pos = -pos - 1; pos < index->cache_nr; pos++) {
270 struct cache_entry *next = index->cache[pos];
271 if (len != ce_namelen(next) ||
272 memcmp(ce->name, next->name, len))
273 break;
274 add_entry(o, next, 0, 0);
275 mark_ce_used(next, o);
276 }
277}
278
279static int unpack_index_entry(struct cache_entry *ce,
280 struct unpack_trees_options *o)
01904572 281{
66dbfd55 282 struct cache_entry *src[5] = { NULL };
da165f47 283 int ret;
34110cd4 284
66dbfd55
GV
285 src[0] = ce;
286
da165f47 287 mark_ce_used(ce, o);
01904572
LT
288 if (ce_stage(ce)) {
289 if (o->skip_unmerged) {
34110cd4
LT
290 add_entry(o, ce, 0, 0);
291 return 0;
01904572 292 }
01904572 293 }
da165f47
JH
294 ret = call_unpack_fn(src, o);
295 if (ce_stage(ce))
296 mark_ce_used_same_name(ce, o);
297 return ret;
01904572
LT
298}
299
730f7284
JH
300static int find_cache_pos(struct traverse_info *, const struct name_entry *);
301
302static void restore_cache_bottom(struct traverse_info *info, int bottom)
303{
304 struct unpack_trees_options *o = info->data;
305
306 if (o->diff_index_cached)
307 return;
308 o->cache_bottom = bottom;
309}
310
311static int switch_cache_bottom(struct traverse_info *info)
312{
313 struct unpack_trees_options *o = info->data;
314 int ret, pos;
315
316 if (o->diff_index_cached)
317 return 0;
318 ret = o->cache_bottom;
319 pos = find_cache_pos(info->prev, &info->name);
320
321 if (pos < -1)
322 o->cache_bottom = -2 - pos;
323 else if (pos < 0)
324 o->cache_bottom = o->src_index->cache_nr;
325 return ret;
01904572
LT
326}
327
2af202be 328static int traverse_trees_recursive(int n, unsigned long dirmask, unsigned long df_conflicts, struct name_entry *names, struct traverse_info *info)
16da134b 329{
730f7284 330 int i, ret, bottom;
ca885a4f 331 struct tree_desc t[MAX_UNPACK_TREES];
01904572
LT
332 struct traverse_info newinfo;
333 struct name_entry *p;
334
335 p = names;
336 while (!p->mode)
337 p++;
338
339 newinfo = *info;
340 newinfo.prev = info;
341 newinfo.name = *p;
342 newinfo.pathlen += tree_entry_len(p->path, p->sha1) + 1;
343 newinfo.conflicts |= df_conflicts;
344
345 for (i = 0; i < n; i++, dirmask >>= 1) {
346 const unsigned char *sha1 = NULL;
347 if (dirmask & 1)
348 sha1 = names[i].sha1;
349 fill_tree_descriptor(t+i, sha1);
350 }
730f7284
JH
351
352 bottom = switch_cache_bottom(&newinfo);
353 ret = traverse_trees(n, t, &newinfo);
354 restore_cache_bottom(&newinfo, bottom);
355 return ret;
01904572
LT
356}
357
358/*
359 * Compare the traverse-path to the cache entry without actually
360 * having to generate the textual representation of the traverse
361 * path.
362 *
363 * NOTE! This *only* compares up to the size of the traverse path
364 * itself - the caller needs to do the final check for the cache
365 * entry having more data at the end!
366 */
367static int do_compare_entry(const struct cache_entry *ce, const struct traverse_info *info, const struct name_entry *n)
368{
369 int len, pathlen, ce_len;
370 const char *ce_name;
371
372 if (info->prev) {
373 int cmp = do_compare_entry(ce, info->prev, &info->name);
374 if (cmp)
375 return cmp;
376 }
377 pathlen = info->pathlen;
378 ce_len = ce_namelen(ce);
379
380 /* If ce_len < pathlen then we must have previously hit "name == directory" entry */
381 if (ce_len < pathlen)
382 return -1;
383
384 ce_len -= pathlen;
385 ce_name = ce->name + pathlen;
386
387 len = tree_entry_len(n->path, n->sha1);
388 return df_name_compare(ce_name, ce_len, S_IFREG, n->path, len, n->mode);
389}
390
391static int compare_entry(const struct cache_entry *ce, const struct traverse_info *info, const struct name_entry *n)
392{
393 int cmp = do_compare_entry(ce, info, n);
394 if (cmp)
395 return cmp;
396
397 /*
398 * Even if the beginning compared identically, the ce should
399 * compare as bigger than a directory leading up to it!
400 */
401 return ce_namelen(ce) > traverse_path_len(info, n);
402}
403
da165f47
JH
404static int ce_in_traverse_path(const struct cache_entry *ce,
405 const struct traverse_info *info)
406{
407 if (!info->prev)
408 return 1;
409 if (do_compare_entry(ce, info->prev, &info->name))
410 return 0;
411 /*
412 * If ce (blob) is the same name as the path (which is a tree
413 * we will be descending into), it won't be inside it.
414 */
415 return (info->pathlen < ce_namelen(ce));
416}
417
01904572
LT
418static struct cache_entry *create_ce_entry(const struct traverse_info *info, const struct name_entry *n, int stage)
419{
420 int len = traverse_path_len(info, n);
421 struct cache_entry *ce = xcalloc(1, cache_entry_size(len));
422
423 ce->ce_mode = create_ce_mode(n->mode);
424 ce->ce_flags = create_ce_flags(len, stage);
425 hashcpy(ce->sha1, n->sha1);
426 make_traverse_path(ce->name, info, n);
427
428 return ce;
429}
430
c7cddc1a
RS
431static int unpack_nondirectories(int n, unsigned long mask,
432 unsigned long dirmask,
433 struct cache_entry **src,
434 const struct name_entry *names,
435 const struct traverse_info *info)
01904572
LT
436{
437 int i;
438 struct unpack_trees_options *o = info->data;
439 unsigned long conflicts;
440
441 /* Do we have *only* directories? Nothing to do */
442 if (mask == dirmask && !src[0])
443 return 0;
444
445 conflicts = info->conflicts;
446 if (o->merge)
447 conflicts >>= 1;
448 conflicts |= dirmask;
449
450 /*
451 * Ok, we've filled in up to any potential index entry in src[0],
452 * now do the rest.
453 */
454 for (i = 0; i < n; i++) {
455 int stage;
456 unsigned int bit = 1ul << i;
457 if (conflicts & bit) {
458 src[i + o->merge] = o->df_conflict_entry;
459 continue;
460 }
461 if (!(mask & bit))
462 continue;
463 if (!o->merge)
464 stage = 0;
465 else if (i + 1 < o->head_idx)
466 stage = 1;
467 else if (i + 1 > o->head_idx)
468 stage = 3;
469 else
470 stage = 2;
471 src[i + o->merge] = create_ce_entry(info, names + i, stage);
472 }
473
474 if (o->merge)
34110cd4 475 return call_unpack_fn(src, o);
01904572 476
01904572 477 for (i = 0; i < n; i++)
aab3b9a1
JH
478 if (src[i] && src[i] != o->df_conflict_entry)
479 add_entry(o, src[i], 0, 0);
01904572
LT
480 return 0;
481}
482
353c5eeb
JH
483static int unpack_failed(struct unpack_trees_options *o, const char *message)
484{
485 discard_index(&o->result);
486 if (!o->gently) {
487 if (message)
488 return error("%s", message);
489 return -1;
490 }
491 return -1;
492}
493
730f7284
JH
494/* NEEDSWORK: give this a better name and share with tree-walk.c */
495static int name_compare(const char *a, int a_len,
496 const char *b, int b_len)
497{
498 int len = (a_len < b_len) ? a_len : b_len;
499 int cmp = memcmp(a, b, len);
500 if (cmp)
501 return cmp;
502 return (a_len - b_len);
503}
504
505/*
506 * The tree traversal is looking at name p. If we have a matching entry,
507 * return it. If name p is a directory in the index, do not return
508 * anything, as we will want to match it when the traversal descends into
509 * the directory.
510 */
511static int find_cache_pos(struct traverse_info *info,
512 const struct name_entry *p)
513{
514 int pos;
515 struct unpack_trees_options *o = info->data;
516 struct index_state *index = o->src_index;
517 int pfxlen = info->pathlen;
518 int p_len = tree_entry_len(p->path, p->sha1);
519
520 for (pos = o->cache_bottom; pos < index->cache_nr; pos++) {
521 struct cache_entry *ce = index->cache[pos];
522 const char *ce_name, *ce_slash;
523 int cmp, ce_len;
524
525 if (!ce_in_traverse_path(ce, info))
526 continue;
527 if (ce->ce_flags & CE_UNPACKED)
528 continue;
529 ce_name = ce->name + pfxlen;
530 ce_slash = strchr(ce_name, '/');
531 if (ce_slash)
532 ce_len = ce_slash - ce_name;
533 else
534 ce_len = ce_namelen(ce) - pfxlen;
535 cmp = name_compare(p->path, p_len, ce_name, ce_len);
536 /*
537 * Exact match; if we have a directory we need to
538 * delay returning it.
539 */
540 if (!cmp)
541 return ce_slash ? -2 - pos : pos;
542 if (0 < cmp)
543 continue; /* keep looking */
544 /*
545 * ce_name sorts after p->path; could it be that we
546 * have files under p->path directory in the index?
547 * E.g. ce_name == "t-i", and p->path == "t"; we may
548 * have "t/a" in the index.
549 */
550 if (p_len < ce_len && !memcmp(ce_name, p->path, p_len) &&
551 ce_name[p_len] < '/')
552 continue; /* keep looking */
553 break;
554 }
555 return -1;
556}
557
558static struct cache_entry *find_cache_entry(struct traverse_info *info,
559 const struct name_entry *p)
560{
561 int pos = find_cache_pos(info, p);
562 struct unpack_trees_options *o = info->data;
563
564 if (0 <= pos)
565 return o->src_index->cache[pos];
566 else
567 return NULL;
568}
569
ba655da5
JH
570static void debug_path(struct traverse_info *info)
571{
572 if (info->prev) {
573 debug_path(info->prev);
574 if (*info->prev->name.path)
575 putchar('/');
576 }
577 printf("%s", info->name.path);
578}
579
580static void debug_name_entry(int i, struct name_entry *n)
581{
582 printf("ent#%d %06o %s\n", i,
583 n->path ? n->mode : 0,
584 n->path ? n->path : "(missing)");
585}
586
587static void debug_unpack_callback(int n,
588 unsigned long mask,
589 unsigned long dirmask,
590 struct name_entry *names,
591 struct traverse_info *info)
592{
593 int i;
594 printf("* unpack mask %lu, dirmask %lu, cnt %d ",
595 mask, dirmask, n);
596 debug_path(info);
597 putchar('\n');
598 for (i = 0; i < n; i++)
599 debug_name_entry(i, names + i);
600}
601
01904572
LT
602static int unpack_callback(int n, unsigned long mask, unsigned long dirmask, struct name_entry *names, struct traverse_info *info)
603{
c7cddc1a 604 struct cache_entry *src[MAX_UNPACK_TREES + 1] = { NULL, };
01904572 605 struct unpack_trees_options *o = info->data;
01904572
LT
606 const struct name_entry *p = names;
607
608 /* Find first entry with a real name (we could use "mask" too) */
609 while (!p->mode)
610 p++;
611
ba655da5
JH
612 if (o->debug_unpack)
613 debug_unpack_callback(n, mask, dirmask, names, info);
614
01904572
LT
615 /* Are we supposed to look at the index too? */
616 if (o->merge) {
da165f47 617 while (1) {
da165f47 618 int cmp;
730f7284
JH
619 struct cache_entry *ce;
620
621 if (o->diff_index_cached)
622 ce = next_cache_entry(o);
623 else
624 ce = find_cache_entry(info, p);
625
da165f47
JH
626 if (!ce)
627 break;
628 cmp = compare_entry(ce, info, p);
01904572
LT
629 if (cmp < 0) {
630 if (unpack_index_entry(ce, o) < 0)
353c5eeb 631 return unpack_failed(o, NULL);
01904572
LT
632 continue;
633 }
634 if (!cmp) {
635 if (ce_stage(ce)) {
636 /*
da165f47
JH
637 * If we skip unmerged index
638 * entries, we'll skip this
639 * entry *and* the tree
640 * entries associated with it!
01904572 641 */
34110cd4 642 if (o->skip_unmerged) {
da165f47 643 add_same_unmerged(ce, o);
01904572 644 return mask;
34110cd4 645 }
01904572
LT
646 }
647 src[0] = ce;
01904572
LT
648 }
649 break;
650 }
651 }
652
34110cd4 653 if (unpack_nondirectories(n, mask, dirmask, src, names, info) < 0)
01904572
LT
654 return -1;
655
da165f47
JH
656 if (src[0]) {
657 if (ce_stage(src[0]))
658 mark_ce_used_same_name(src[0], o);
659 else
660 mark_ce_used(src[0], o);
661 }
662
01904572
LT
663 /* Now handle any directories.. */
664 if (dirmask) {
665 unsigned long conflicts = mask & ~dirmask;
666 if (o->merge) {
667 conflicts <<= 1;
668 if (src[0])
669 conflicts |= 1;
670 }
b65982b6
JH
671
672 /* special case: "diff-index --cached" looking at a tree */
673 if (o->diff_index_cached &&
674 n == 1 && dirmask == 1 && S_ISDIR(names->mode)) {
675 int matches;
676 matches = cache_tree_matches_traversal(o->src_index->cache_tree,
677 names, info);
678 /*
da165f47
JH
679 * Everything under the name matches; skip the
680 * entire hierarchy. diff_index_cached codepath
681 * special cases D/F conflicts in such a way that
682 * it does not do any look-ahead, so this is safe.
b65982b6
JH
683 */
684 if (matches) {
da165f47 685 o->cache_bottom += matches;
b65982b6
JH
686 return mask;
687 }
688 }
689
542c264b
JH
690 if (traverse_trees_recursive(n, dirmask, conflicts,
691 names, info) < 0)
692 return -1;
01904572
LT
693 return mask;
694 }
695
696 return mask;
697}
698
2e2b887d
JH
699/*
700 * N-way merge "len" trees. Returns 0 on success, -1 on failure to manipulate the
701 * resulting index, -2 on failure to reflect the changes to the work tree.
702 */
01904572
LT
703int unpack_trees(unsigned len, struct tree_desc *t, struct unpack_trees_options *o)
704{
e800ec9d 705 int i, ret;
0fb1eaa8 706 static struct cache_entry *dfc;
08aefc9e 707 struct exclude_list el;
16da134b 708
ca885a4f
JH
709 if (len > MAX_UNPACK_TREES)
710 die("unpack_trees takes at most %d trees", MAX_UNPACK_TREES);
076b0adc 711 memset(&state, 0, sizeof(state));
16da134b
JS
712 state.base_dir = "";
713 state.force = 1;
714 state.quiet = 1;
715 state.refresh_cache = 1;
716
08aefc9e
NTND
717 memset(&el, 0, sizeof(el));
718 if (!core_apply_sparse_checkout || !o->update)
719 o->skip_sparse_checkout = 1;
720 if (!o->skip_sparse_checkout) {
721 if (add_excludes_from_file_to_list(git_path("info/sparse-checkout"), "", 0, NULL, &el, 0) < 0)
722 o->skip_sparse_checkout = 1;
723 else
724 o->el = &el;
725 }
726
34110cd4 727 memset(&o->result, 0, sizeof(o->result));
913e0e99 728 o->result.initialized = 1;
da165f47
JH
729 o->result.timestamp.sec = o->src_index->timestamp.sec;
730 o->result.timestamp.nsec = o->src_index->timestamp.nsec;
16da134b 731 o->merge_size = len;
da165f47 732 mark_all_ce_unused(o->src_index);
0fb1eaa8
JH
733
734 if (!dfc)
13494ed1 735 dfc = xcalloc(1, cache_entry_size(0));
0fb1eaa8 736 o->df_conflict_entry = dfc;
16da134b
JS
737
738 if (len) {
01904572
LT
739 const char *prefix = o->prefix ? o->prefix : "";
740 struct traverse_info info;
741
742 setup_traverse_info(&info, prefix);
743 info.fn = unpack_callback;
744 info.data = o;
745
da165f47
JH
746 if (o->prefix) {
747 /*
748 * Unpack existing index entries that sort before the
749 * prefix the tree is spliced into. Note that o->merge
750 * is always true in this case.
751 */
752 while (1) {
753 struct cache_entry *ce = next_cache_entry(o);
754 if (!ce)
755 break;
756 if (ce_in_traverse_path(ce, &info))
757 break;
758 if (unpack_index_entry(ce, o) < 0)
759 goto return_failed;
760 }
08aefc9e 761 }
da165f47 762
01904572 763 if (traverse_trees(len, t, &info) < 0)
da165f47 764 goto return_failed;
16da134b
JS
765 }
766
01904572
LT
767 /* Any left-over entries in the index? */
768 if (o->merge) {
da165f47
JH
769 while (1) {
770 struct cache_entry *ce = next_cache_entry(o);
771 if (!ce)
772 break;
01904572 773 if (unpack_index_entry(ce, o) < 0)
da165f47 774 goto return_failed;
17e46426 775 }
17e46426 776 }
da165f47 777 mark_all_ce_unused(o->src_index);
16da134b 778
08aefc9e
NTND
779 if (o->trivial_merges_only && o->nontrivial_merge) {
780 ret = unpack_failed(o, "Merge requires file-level merging");
781 goto done;
782 }
01904572 783
e800ec9d 784 if (!o->skip_sparse_checkout) {
9e1afb16 785 int empty_worktree = 1;
e800ec9d
NTND
786 for (i = 0;i < o->result.cache_nr;i++) {
787 struct cache_entry *ce = o->result.cache[i];
788
789 if (apply_sparse_checkout(ce, o)) {
790 ret = -1;
791 goto done;
792 }
f1f523ea
NTND
793 /*
794 * Merge strategies may set CE_UPDATE|CE_REMOVE outside checkout
795 * area as a result of ce_skip_worktree() shortcuts in
796 * verify_absent() and verify_uptodate(). Clear them.
797 */
798 if (ce_skip_worktree(ce))
799 ce->ce_flags &= ~(CE_UPDATE | CE_REMOVE);
9e1afb16
NTND
800 else
801 empty_worktree = 0;
f1f523ea 802
e800ec9d 803 }
9e1afb16
NTND
804 if (o->result.cache_nr && empty_worktree) {
805 ret = unpack_failed(o, "Sparse checkout leaves no entry on working directory");
806 goto done;
807 }
e800ec9d 808 }
01904572 809
34110cd4 810 o->src_index = NULL;
2e2b887d 811 ret = check_updates(o) ? (-2) : 0;
34110cd4
LT
812 if (o->dst_index)
813 *o->dst_index = o->result;
08aefc9e
NTND
814
815done:
816 for (i = 0;i < el.nr;i++)
817 free(el.excludes[i]);
818 if (el.excludes)
819 free(el.excludes);
820
2e2b887d 821 return ret;
da165f47
JH
822
823return_failed:
824 mark_all_ce_unused(o->src_index);
026680f8
JH
825 ret = unpack_failed(o, NULL);
826 goto done;
16da134b 827}
076b0adc
JS
828
829/* Here come the merge functions */
830
8ccba008 831static int reject_merge(struct cache_entry *ce, struct unpack_trees_options *o)
076b0adc 832{
8ccba008 833 return error(ERRORMSG(o, would_overwrite), ce->name);
076b0adc
JS
834}
835
836static int same(struct cache_entry *a, struct cache_entry *b)
837{
838 if (!!a != !!b)
839 return 0;
840 if (!a && !b)
841 return 1;
e11d7b59
JH
842 if ((a->ce_flags | b->ce_flags) & CE_CONFLICTED)
843 return 0;
076b0adc 844 return a->ce_mode == b->ce_mode &&
a89fccd2 845 !hashcmp(a->sha1, b->sha1);
076b0adc
JS
846}
847
848
849/*
850 * When a CE gets turned into an unmerged entry, we
851 * want it to be up-to-date
852 */
35a5aa79
NTND
853static int verify_uptodate_1(struct cache_entry *ce,
854 struct unpack_trees_options *o,
855 const char *error_msg)
076b0adc
JS
856{
857 struct stat st;
858
aecda37c 859 if (o->index_only || (!((ce->ce_flags & CE_VALID) || ce_skip_worktree(ce)) && (o->reset || ce_uptodate(ce))))
203a2fe1 860 return 0;
076b0adc
JS
861
862 if (!lstat(ce->name, &st)) {
56cac48c 863 unsigned changed = ie_match_stat(o->src_index, ce, &st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);
076b0adc 864 if (!changed)
203a2fe1 865 return 0;
936492d3
JH
866 /*
867 * NEEDSWORK: the current default policy is to allow
868 * submodule to be out of sync wrt the supermodule
869 * index. This needs to be tightened later for
870 * submodules that are marked to be automatically
871 * checked out.
872 */
7a51ed66 873 if (S_ISGITLINK(ce->ce_mode))
203a2fe1 874 return 0;
076b0adc
JS
875 errno = 0;
876 }
076b0adc 877 if (errno == ENOENT)
203a2fe1 878 return 0;
17e46426 879 return o->gently ? -1 :
35a5aa79
NTND
880 error(error_msg, ce->name);
881}
882
883static int verify_uptodate(struct cache_entry *ce,
884 struct unpack_trees_options *o)
885{
f1f523ea
NTND
886 if (!o->skip_sparse_checkout && will_have_skip_worktree(ce, o))
887 return 0;
35a5aa79 888 return verify_uptodate_1(ce, o, ERRORMSG(o, not_uptodate_file));
076b0adc
JS
889}
890
e800ec9d
NTND
891static int verify_uptodate_sparse(struct cache_entry *ce,
892 struct unpack_trees_options *o)
893{
894 return verify_uptodate_1(ce, o, ERRORMSG(o, sparse_not_uptodate_file));
076b0adc
JS
895}
896
bc052d7f 897static void invalidate_ce_path(struct cache_entry *ce, struct unpack_trees_options *o)
076b0adc
JS
898{
899 if (ce)
34110cd4 900 cache_tree_invalidate_path(o->src_index->cache_tree, ce->name);
076b0adc
JS
901}
902
0cf73755
SV
903/*
904 * Check that checking out ce->sha1 in subdir ce->name is not
905 * going to overwrite any working files.
906 *
907 * Currently, git does not checkout subprojects during a superproject
908 * checkout, so it is not going to overwrite anything.
909 */
910static int verify_clean_submodule(struct cache_entry *ce, const char *action,
911 struct unpack_trees_options *o)
912{
913 return 0;
914}
915
916static int verify_clean_subdirectory(struct cache_entry *ce, const char *action,
c8193534
JH
917 struct unpack_trees_options *o)
918{
919 /*
0cf73755 920 * we are about to extract "ce->name"; we would not want to lose
c8193534
JH
921 * anything in the existing directory there.
922 */
923 int namelen;
7b9e3ce0 924 int i;
c8193534
JH
925 struct dir_struct d;
926 char *pathbuf;
927 int cnt = 0;
0cf73755
SV
928 unsigned char sha1[20];
929
7a51ed66 930 if (S_ISGITLINK(ce->ce_mode) &&
0cf73755
SV
931 resolve_gitlink_ref(ce->name, "HEAD", sha1) == 0) {
932 /* If we are not going to update the submodule, then
933 * we don't care.
934 */
935 if (!hashcmp(sha1, ce->sha1))
936 return 0;
937 return verify_clean_submodule(ce, action, o);
938 }
c8193534
JH
939
940 /*
941 * First let's make sure we do not have a local modification
942 * in that directory.
943 */
0cf73755 944 namelen = strlen(ce->name);
da165f47
JH
945 for (i = locate_in_src_index(ce, o);
946 i < o->src_index->cache_nr;
947 i++) {
837e5fe9
CB
948 struct cache_entry *ce2 = o->src_index->cache[i];
949 int len = ce_namelen(ce2);
c8193534 950 if (len < namelen ||
837e5fe9
CB
951 strncmp(ce->name, ce2->name, namelen) ||
952 ce2->name[namelen] != '/')
c8193534
JH
953 break;
954 /*
da165f47
JH
955 * ce2->name is an entry in the subdirectory to be
956 * removed.
c8193534 957 */
837e5fe9
CB
958 if (!ce_stage(ce2)) {
959 if (verify_uptodate(ce2, o))
203a2fe1 960 return -1;
837e5fe9 961 add_entry(o, ce2, CE_REMOVE, 0);
da165f47 962 mark_ce_used(ce2, o);
c8193534
JH
963 }
964 cnt++;
965 }
966
967 /*
968 * Then we need to make sure that we do not lose a locally
969 * present file that is not ignored.
970 */
971 pathbuf = xmalloc(namelen + 2);
0cf73755 972 memcpy(pathbuf, ce->name, namelen);
c8193534
JH
973 strcpy(pathbuf+namelen, "/");
974
975 memset(&d, 0, sizeof(d));
976 if (o->dir)
977 d.exclude_per_dir = o->dir->exclude_per_dir;
dba2e203 978 i = read_directory(&d, pathbuf, namelen+1, NULL);
c8193534 979 if (i)
17e46426 980 return o->gently ? -1 :
8ccba008 981 error(ERRORMSG(o, not_uptodate_dir), ce->name);
c8193534
JH
982 free(pathbuf);
983 return cnt;
984}
985
32260ad5
LT
986/*
987 * This gets called when there was no index entry for the tree entry 'dst',
988 * but we found a file in the working tree that 'lstat()' said was fine,
989 * and we're on a case-insensitive filesystem.
990 *
991 * See if we can find a case-insensitive match in the index that also
992 * matches the stat information, and assume it's that other file!
993 */
994static int icase_exists(struct unpack_trees_options *o, struct cache_entry *dst, struct stat *st)
995{
996 struct cache_entry *src;
997
998 src = index_name_exists(o->src_index, dst->name, ce_namelen(dst), 1);
56cac48c 999 return src && !ie_match_stat(o->src_index, src, st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);
32260ad5
LT
1000}
1001
076b0adc
JS
1002/*
1003 * We do not want to remove or overwrite a working tree file that
f8a9d428 1004 * is not tracked, unless it is ignored.
076b0adc 1005 */
35a5aa79
NTND
1006static int verify_absent_1(struct cache_entry *ce, const char *action,
1007 struct unpack_trees_options *o,
1008 const char *error_msg)
076b0adc
JS
1009{
1010 struct stat st;
1011
1012 if (o->index_only || o->reset || !o->update)
203a2fe1 1013 return 0;
c8193534 1014
57199892 1015 if (has_symlink_or_noent_leading_path(ce->name, ce_namelen(ce)))
203a2fe1 1016 return 0;
ec0603e1 1017
0cf73755 1018 if (!lstat(ce->name, &st)) {
6831a88a 1019 int dtype = ce_to_dtype(ce);
df292c79 1020 struct cache_entry *result;
c8193534 1021
32260ad5
LT
1022 /*
1023 * It may be that the 'lstat()' succeeded even though
1024 * target 'ce' was absent, because there is an old
1025 * entry that is different only in case..
1026 *
1027 * Ignore that lstat() if it matches.
1028 */
1029 if (ignore_case && icase_exists(o, ce, &st))
1030 return 0;
1031
6831a88a 1032 if (o->dir && excluded(o->dir, ce->name, &dtype))
c8193534 1033 /*
0cf73755 1034 * ce->name is explicitly excluded, so it is Ok to
c8193534
JH
1035 * overwrite it.
1036 */
203a2fe1 1037 return 0;
c8193534
JH
1038 if (S_ISDIR(st.st_mode)) {
1039 /*
1040 * We are checking out path "foo" and
1041 * found "foo/." in the working tree.
1042 * This is tricky -- if we have modified
1043 * files that are in "foo/" we would lose
6caa7b55 1044 * them.
c8193534 1045 */
da165f47
JH
1046 if (verify_clean_subdirectory(ce, action, o) < 0)
1047 return -1;
203a2fe1 1048 return 0;
c8193534
JH
1049 }
1050
1051 /*
1052 * The previous round may already have decided to
1053 * delete this path, which is in a subdirectory that
1054 * is being replaced with a blob.
1055 */
cd2fef59 1056 result = index_name_exists(&o->result, ce->name, ce_namelen(ce), 0);
df292c79
LT
1057 if (result) {
1058 if (result->ce_flags & CE_REMOVE)
203a2fe1 1059 return 0;
c8193534
JH
1060 }
1061
17e46426 1062 return o->gently ? -1 :
8ccba008 1063 error(ERRORMSG(o, would_lose_untracked), ce->name, action);
c8193534 1064 }
203a2fe1 1065 return 0;
076b0adc 1066}
35a5aa79
NTND
1067static int verify_absent(struct cache_entry *ce, const char *action,
1068 struct unpack_trees_options *o)
1069{
f1f523ea
NTND
1070 if (!o->skip_sparse_checkout && will_have_skip_worktree(ce, o))
1071 return 0;
35a5aa79
NTND
1072 return verify_absent_1(ce, action, o, ERRORMSG(o, would_lose_untracked));
1073}
076b0adc 1074
e800ec9d
NTND
1075static int verify_absent_sparse(struct cache_entry *ce, const char *action,
1076 struct unpack_trees_options *o)
1077{
1078 return verify_absent_1(ce, action, o, ERRORMSG(o, would_lose_orphaned));
1079}
076b0adc
JS
1080
1081static int merged_entry(struct cache_entry *merge, struct cache_entry *old,
1082 struct unpack_trees_options *o)
1083{
7f8ab8dc
LT
1084 int update = CE_UPDATE;
1085
e11d7b59
JH
1086 if (!old) {
1087 if (verify_absent(merge, "overwritten", o))
1088 return -1;
1089 invalidate_ce_path(merge, o);
1090 } else if (!(old->ce_flags & CE_CONFLICTED)) {
076b0adc
JS
1091 /*
1092 * See if we can re-use the old CE directly?
1093 * That way we get the uptodate stat info.
1094 *
7f8ab8dc
LT
1095 * This also removes the UPDATE flag on a match; otherwise
1096 * we will end up overwriting local changes in the work tree.
076b0adc
JS
1097 */
1098 if (same(old, merge)) {
eb7a2f1d 1099 copy_cache_entry(merge, old);
7f8ab8dc 1100 update = 0;
076b0adc 1101 } else {
203a2fe1
DB
1102 if (verify_uptodate(old, o))
1103 return -1;
32f54ca3
NTND
1104 if (ce_skip_worktree(old))
1105 update |= CE_SKIP_WORKTREE;
bc052d7f 1106 invalidate_ce_path(old, o);
076b0adc 1107 }
e11d7b59
JH
1108 } else {
1109 /*
1110 * Previously unmerged entry left as an existence
1111 * marker by read_index_unmerged();
1112 */
1113 invalidate_ce_path(old, o);
076b0adc
JS
1114 }
1115
7f8ab8dc 1116 add_entry(o, merge, update, CE_STAGEMASK);
076b0adc
JS
1117 return 1;
1118}
1119
1120static int deleted_entry(struct cache_entry *ce, struct cache_entry *old,
1121 struct unpack_trees_options *o)
1122{
34110cd4
LT
1123 /* Did it exist in the index? */
1124 if (!old) {
203a2fe1
DB
1125 if (verify_absent(ce, "removed", o))
1126 return -1;
34110cd4
LT
1127 return 0;
1128 }
e11d7b59 1129 if (!(old->ce_flags & CE_CONFLICTED) && verify_uptodate(old, o))
34110cd4
LT
1130 return -1;
1131 add_entry(o, ce, CE_REMOVE, 0);
bc052d7f 1132 invalidate_ce_path(ce, o);
076b0adc
JS
1133 return 1;
1134}
1135
7f7932ab 1136static int keep_entry(struct cache_entry *ce, struct unpack_trees_options *o)
076b0adc 1137{
34110cd4 1138 add_entry(o, ce, 0, 0);
076b0adc
JS
1139 return 1;
1140}
1141
1142#if DBRT_DEBUG
1143static void show_stage_entry(FILE *o,
1144 const char *label, const struct cache_entry *ce)
1145{
1146 if (!ce)
1147 fprintf(o, "%s (missing)\n", label);
1148 else
1149 fprintf(o, "%s%06o %s %d\t%s\n",
1150 label,
7a51ed66 1151 ce->ce_mode,
076b0adc
JS
1152 sha1_to_hex(ce->sha1),
1153 ce_stage(ce),
1154 ce->name);
1155}
1156#endif
1157
34110cd4 1158int threeway_merge(struct cache_entry **stages, struct unpack_trees_options *o)
076b0adc
JS
1159{
1160 struct cache_entry *index;
1161 struct cache_entry *head;
1162 struct cache_entry *remote = stages[o->head_idx + 1];
1163 int count;
1164 int head_match = 0;
1165 int remote_match = 0;
076b0adc
JS
1166
1167 int df_conflict_head = 0;
1168 int df_conflict_remote = 0;
1169
1170 int any_anc_missing = 0;
1171 int no_anc_exists = 1;
1172 int i;
1173
1174 for (i = 1; i < o->head_idx; i++) {
4c4caafc 1175 if (!stages[i] || stages[i] == o->df_conflict_entry)
076b0adc 1176 any_anc_missing = 1;
4c4caafc 1177 else
076b0adc 1178 no_anc_exists = 0;
076b0adc
JS
1179 }
1180
1181 index = stages[0];
1182 head = stages[o->head_idx];
1183
1184 if (head == o->df_conflict_entry) {
1185 df_conflict_head = 1;
1186 head = NULL;
1187 }
1188
1189 if (remote == o->df_conflict_entry) {
1190 df_conflict_remote = 1;
1191 remote = NULL;
1192 }
1193
cee2d6ae
JH
1194 /*
1195 * First, if there's a #16 situation, note that to prevent #13
076b0adc
JS
1196 * and #14.
1197 */
1198 if (!same(remote, head)) {
1199 for (i = 1; i < o->head_idx; i++) {
1200 if (same(stages[i], head)) {
1201 head_match = i;
1202 }
1203 if (same(stages[i], remote)) {
1204 remote_match = i;
1205 }
1206 }
1207 }
1208
cee2d6ae
JH
1209 /*
1210 * We start with cases where the index is allowed to match
076b0adc
JS
1211 * something other than the head: #14(ALT) and #2ALT, where it
1212 * is permitted to match the result instead.
1213 */
1214 /* #14, #14ALT, #2ALT */
1215 if (remote && !df_conflict_head && head_match && !remote_match) {
1216 if (index && !same(index, remote) && !same(index, head))
8ccba008 1217 return o->gently ? -1 : reject_merge(index, o);
076b0adc
JS
1218 return merged_entry(remote, index, o);
1219 }
1220 /*
1221 * If we have an entry in the index cache, then we want to
1222 * make sure that it matches head.
1223 */
4e7c4571 1224 if (index && !same(index, head))
8ccba008 1225 return o->gently ? -1 : reject_merge(index, o);
076b0adc
JS
1226
1227 if (head) {
1228 /* #5ALT, #15 */
1229 if (same(head, remote))
1230 return merged_entry(head, index, o);
1231 /* #13, #3ALT */
1232 if (!df_conflict_remote && remote_match && !head_match)
1233 return merged_entry(head, index, o);
1234 }
1235
1236 /* #1 */
34110cd4 1237 if (!head && !remote && any_anc_missing)
076b0adc
JS
1238 return 0;
1239
cee2d6ae
JH
1240 /*
1241 * Under the "aggressive" rule, we resolve mostly trivial
076b0adc
JS
1242 * cases that we historically had git-merge-one-file resolve.
1243 */
1244 if (o->aggressive) {
cee2d6ae
JH
1245 int head_deleted = !head;
1246 int remote_deleted = !remote;
0cf73755 1247 struct cache_entry *ce = NULL;
4c4caafc
JH
1248
1249 if (index)
0cf73755 1250 ce = index;
4c4caafc 1251 else if (head)
0cf73755 1252 ce = head;
4c4caafc 1253 else if (remote)
0cf73755 1254 ce = remote;
4c4caafc
JH
1255 else {
1256 for (i = 1; i < o->head_idx; i++) {
1257 if (stages[i] && stages[i] != o->df_conflict_entry) {
0cf73755 1258 ce = stages[i];
4c4caafc
JH
1259 break;
1260 }
1261 }
1262 }
1263
076b0adc
JS
1264 /*
1265 * Deleted in both.
1266 * Deleted in one and unchanged in the other.
1267 */
1268 if ((head_deleted && remote_deleted) ||
1269 (head_deleted && remote && remote_match) ||
1270 (remote_deleted && head && head_match)) {
1271 if (index)
1272 return deleted_entry(index, index, o);
34110cd4 1273 if (ce && !head_deleted) {
203a2fe1
DB
1274 if (verify_absent(ce, "removed", o))
1275 return -1;
1276 }
076b0adc
JS
1277 return 0;
1278 }
1279 /*
1280 * Added in both, identically.
1281 */
1282 if (no_anc_exists && head && remote && same(head, remote))
1283 return merged_entry(head, index, o);
1284
1285 }
1286
1287 /* Below are "no merge" cases, which require that the index be
1288 * up-to-date to avoid the files getting overwritten with
1289 * conflict resolution files.
1290 */
1291 if (index) {
203a2fe1
DB
1292 if (verify_uptodate(index, o))
1293 return -1;
076b0adc 1294 }
076b0adc
JS
1295
1296 o->nontrivial_merge = 1;
1297
ea4b52a8 1298 /* #2, #3, #4, #6, #7, #9, #10, #11. */
076b0adc
JS
1299 count = 0;
1300 if (!head_match || !remote_match) {
1301 for (i = 1; i < o->head_idx; i++) {
4c4caafc 1302 if (stages[i] && stages[i] != o->df_conflict_entry) {
7f7932ab 1303 keep_entry(stages[i], o);
076b0adc
JS
1304 count++;
1305 break;
1306 }
1307 }
1308 }
1309#if DBRT_DEBUG
1310 else {
1311 fprintf(stderr, "read-tree: warning #16 detected\n");
1312 show_stage_entry(stderr, "head ", stages[head_match]);
1313 show_stage_entry(stderr, "remote ", stages[remote_match]);
1314 }
1315#endif
7f7932ab
JH
1316 if (head) { count += keep_entry(head, o); }
1317 if (remote) { count += keep_entry(remote, o); }
076b0adc
JS
1318 return count;
1319}
1320
1321/*
1322 * Two-way merge.
1323 *
1324 * The rule is to "carry forward" what is in the index without losing
a75d7b54 1325 * information across a "fast-forward", favoring a successful merge
076b0adc
JS
1326 * over a merge failure when it makes sense. For details of the
1327 * "carry forward" rule, please see <Documentation/git-read-tree.txt>.
1328 *
1329 */
34110cd4 1330int twoway_merge(struct cache_entry **src, struct unpack_trees_options *o)
076b0adc
JS
1331{
1332 struct cache_entry *current = src[0];
b8ba1535
JH
1333 struct cache_entry *oldtree = src[1];
1334 struct cache_entry *newtree = src[2];
076b0adc
JS
1335
1336 if (o->merge_size != 2)
1337 return error("Cannot do a twoway merge of %d trees",
1338 o->merge_size);
1339
b8ba1535
JH
1340 if (oldtree == o->df_conflict_entry)
1341 oldtree = NULL;
1342 if (newtree == o->df_conflict_entry)
1343 newtree = NULL;
1344
076b0adc
JS
1345 if (current) {
1346 if ((!oldtree && !newtree) || /* 4 and 5 */
1347 (!oldtree && newtree &&
1348 same(current, newtree)) || /* 6 and 7 */
1349 (oldtree && newtree &&
1350 same(oldtree, newtree)) || /* 14 and 15 */
1351 (oldtree && newtree &&
b8ba1535 1352 !same(oldtree, newtree) && /* 18 and 19 */
076b0adc 1353 same(current, newtree))) {
7f7932ab 1354 return keep_entry(current, o);
076b0adc
JS
1355 }
1356 else if (oldtree && !newtree && same(current, oldtree)) {
1357 /* 10 or 11 */
1358 return deleted_entry(oldtree, current, o);
1359 }
1360 else if (oldtree && newtree &&
1361 same(current, oldtree) && !same(current, newtree)) {
1362 /* 20 or 21 */
1363 return merged_entry(newtree, current, o);
1364 }
1365 else {
1366 /* all other failures */
1367 if (oldtree)
8ccba008 1368 return o->gently ? -1 : reject_merge(oldtree, o);
076b0adc 1369 if (current)
8ccba008 1370 return o->gently ? -1 : reject_merge(current, o);
076b0adc 1371 if (newtree)
8ccba008 1372 return o->gently ? -1 : reject_merge(newtree, o);
076b0adc
JS
1373 return -1;
1374 }
1375 }
55218834
JH
1376 else if (newtree) {
1377 if (oldtree && !o->initial_checkout) {
1378 /*
1379 * deletion of the path was staged;
1380 */
1381 if (same(oldtree, newtree))
1382 return 1;
1383 return reject_merge(oldtree, o);
1384 }
076b0adc 1385 return merged_entry(newtree, current, o);
55218834 1386 }
d699676d 1387 return deleted_entry(oldtree, current, o);
076b0adc
JS
1388}
1389
1390/*
1391 * Bind merge.
1392 *
1393 * Keep the index entries at stage0, collapse stage1 but make sure
1394 * stage0 does not have anything there.
1395 */
1396int bind_merge(struct cache_entry **src,
34110cd4 1397 struct unpack_trees_options *o)
076b0adc
JS
1398{
1399 struct cache_entry *old = src[0];
1400 struct cache_entry *a = src[1];
1401
1402 if (o->merge_size != 1)
1403 return error("Cannot do a bind merge of %d trees\n",
1404 o->merge_size);
1405 if (a && old)
17e46426 1406 return o->gently ? -1 :
8ccba008 1407 error(ERRORMSG(o, bind_overlap), a->name, old->name);
076b0adc 1408 if (!a)
7f7932ab 1409 return keep_entry(old, o);
076b0adc
JS
1410 else
1411 return merged_entry(a, NULL, o);
1412}
1413
1414/*
1415 * One-way merge.
1416 *
1417 * The rule is:
1418 * - take the stat information from stage0, take the data from stage1
1419 */
34110cd4 1420int oneway_merge(struct cache_entry **src, struct unpack_trees_options *o)
076b0adc
JS
1421{
1422 struct cache_entry *old = src[0];
1423 struct cache_entry *a = src[1];
1424
1425 if (o->merge_size != 1)
1426 return error("Cannot do a oneway merge of %d trees",
1427 o->merge_size);
1428
78d3b06e 1429 if (!a || a == o->df_conflict_entry)
076b0adc 1430 return deleted_entry(old, old, o);
34110cd4 1431
076b0adc 1432 if (old && same(old, a)) {
34110cd4 1433 int update = 0;
52030836 1434 if (o->reset && !ce_uptodate(old) && !ce_skip_worktree(old)) {
076b0adc
JS
1435 struct stat st;
1436 if (lstat(old->name, &st) ||
56cac48c 1437 ie_match_stat(o->src_index, old, &st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE))
34110cd4 1438 update |= CE_UPDATE;
076b0adc 1439 }
34110cd4
LT
1440 add_entry(o, old, update, 0);
1441 return 0;
076b0adc
JS
1442 }
1443 return merged_entry(a, old, o);
1444}