]> git.ipfire.org Git - thirdparty/git.git/blame - unpack-trees.c
Merge branch 'bc/use-asciidoctor-opt'
[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"
5fc2fc8f 11#include "split-index.h"
e931371a 12#include "dir.h"
16da134b 13
8ccba008
JH
14/*
15 * Error messages expected by scripts out of plumbing commands such as
16 * read-tree. Non-scripted Porcelain is not required to use these messages
17 * and in fact are encouraged to reword them to better suit their particular
23cbf11b 18 * situation better. See how "git checkout" and "git merge" replaces
dc1166e6 19 * them using setup_unpack_trees_porcelain(), for example.
8ccba008 20 */
c2e86add 21static const char *unpack_plumbing_errors[NB_UNPACK_TREES_ERROR_TYPES] = {
08353ebb 22 /* ERROR_WOULD_OVERWRITE */
8ccba008
JH
23 "Entry '%s' would be overwritten by merge. Cannot merge.",
24
08353ebb 25 /* ERROR_NOT_UPTODATE_FILE */
8ccba008
JH
26 "Entry '%s' not uptodate. Cannot merge.",
27
08353ebb 28 /* ERROR_NOT_UPTODATE_DIR */
8ccba008
JH
29 "Updating '%s' would lose untracked files in it",
30
08402b04
MM
31 /* ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN */
32 "Untracked working tree file '%s' would be overwritten by merge.",
8ccba008 33
08402b04
MM
34 /* ERROR_WOULD_LOSE_UNTRACKED_REMOVED */
35 "Untracked working tree file '%s' would be removed by merge.",
8ccba008 36
08353ebb 37 /* ERROR_BIND_OVERLAP */
8ccba008 38 "Entry '%s' overlaps with '%s'. Cannot bind.",
e800ec9d 39
08353ebb 40 /* ERROR_SPARSE_NOT_UPTODATE_FILE */
e800ec9d
NTND
41 "Entry '%s' not uptodate. Cannot update sparse checkout.",
42
08402b04
MM
43 /* ERROR_WOULD_LOSE_ORPHANED_OVERWRITTEN */
44 "Working tree file '%s' would be overwritten by sparse checkout update.",
45
46 /* ERROR_WOULD_LOSE_ORPHANED_REMOVED */
47 "Working tree file '%s' would be removed by sparse checkout update.",
8ccba008
JH
48};
49
08353ebb
MM
50#define ERRORMSG(o,type) \
51 ( ((o) && (o)->msgs[(type)]) \
52 ? ((o)->msgs[(type)]) \
53 : (unpack_plumbing_errors[(type)]) )
8ccba008 54
e294030f
MM
55void setup_unpack_trees_porcelain(struct unpack_trees_options *opts,
56 const char *cmd)
dc1166e6 57{
7980872d 58 int i;
e294030f 59 const char **msgs = opts->msgs;
dc1166e6 60 const char *msg;
fa3f60b7 61
2e3926b9
VA
62 if (!strcmp(cmd, "checkout"))
63 msg = advice_commit_before_merge
64 ? _("Your local changes to the following files would be overwritten by checkout:\n%%s"
c2691e2a 65 "Please commit your changes or stash them before you switch branches.")
2e3926b9
VA
66 : _("Your local changes to the following files would be overwritten by checkout:\n%%s");
67 else if (!strcmp(cmd, "merge"))
68 msg = advice_commit_before_merge
69 ? _("Your local changes to the following files would be overwritten by merge:\n%%s"
c2691e2a 70 "Please commit your changes or stash them before you merge.")
2e3926b9 71 : _("Your local changes to the following files would be overwritten by merge:\n%%s");
dc1166e6 72 else
2e3926b9
VA
73 msg = advice_commit_before_merge
74 ? _("Your local changes to the following files would be overwritten by %s:\n%%s"
c2691e2a 75 "Please commit your changes or stash them before you %s.")
2e3926b9 76 : _("Your local changes to the following files would be overwritten by %s:\n%%s");
fa3f60b7 77 msgs[ERROR_WOULD_OVERWRITE] = msgs[ERROR_NOT_UPTODATE_FILE] =
2e3926b9 78 xstrfmt(msg, cmd, cmd);
dc1166e6
MM
79
80 msgs[ERROR_NOT_UPTODATE_DIR] =
584f99c8 81 _("Updating the following directories would lose untracked files in them:\n%s");
dc1166e6 82
2e3926b9
VA
83 if (!strcmp(cmd, "checkout"))
84 msg = advice_commit_before_merge
85 ? _("The following untracked working tree files would be removed by checkout:\n%%s"
c2691e2a 86 "Please move or remove them before you switch branches.")
2e3926b9
VA
87 : _("The following untracked working tree files would be removed by checkout:\n%%s");
88 else if (!strcmp(cmd, "merge"))
89 msg = advice_commit_before_merge
90 ? _("The following untracked working tree files would be removed by merge:\n%%s"
c2691e2a 91 "Please move or remove them before you merge.")
2e3926b9 92 : _("The following untracked working tree files would be removed by merge:\n%%s");
dc1166e6 93 else
2e3926b9
VA
94 msg = advice_commit_before_merge
95 ? _("The following untracked working tree files would be removed by %s:\n%%s"
c2691e2a 96 "Please move or remove them before you %s.")
2e3926b9
VA
97 : _("The following untracked working tree files would be removed by %s:\n%%s");
98 msgs[ERROR_WOULD_LOSE_UNTRACKED_REMOVED] = xstrfmt(msg, cmd, cmd);
99
100 if (!strcmp(cmd, "checkout"))
101 msg = advice_commit_before_merge
102 ? _("The following untracked working tree files would be overwritten by checkout:\n%%s"
c2691e2a 103 "Please move or remove them before you switch branches.")
2e3926b9
VA
104 : _("The following untracked working tree files would be overwritten by checkout:\n%%s");
105 else if (!strcmp(cmd, "merge"))
106 msg = advice_commit_before_merge
107 ? _("The following untracked working tree files would be overwritten by merge:\n%%s"
c2691e2a 108 "Please move or remove them before you merge.")
2e3926b9
VA
109 : _("The following untracked working tree files would be overwritten by merge:\n%%s");
110 else
111 msg = advice_commit_before_merge
112 ? _("The following untracked working tree files would be overwritten by %s:\n%%s"
c2691e2a 113 "Please move or remove them before you %s.")
2e3926b9
VA
114 : _("The following untracked working tree files would be overwritten by %s:\n%%s");
115 msgs[ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN] = xstrfmt(msg, cmd, cmd);
dc1166e6
MM
116
117 /*
118 * Special case: ERROR_BIND_OVERLAP refers to a pair of paths, we
119 * cannot easily display it as a list.
120 */
ed47fdf7 121 msgs[ERROR_BIND_OVERLAP] = _("Entry '%s' overlaps with '%s'. Cannot bind.");
dc1166e6
MM
122
123 msgs[ERROR_SPARSE_NOT_UPTODATE_FILE] =
ed47fdf7 124 _("Cannot update sparse checkout: the following entries are not up-to-date:\n%s");
dc1166e6 125 msgs[ERROR_WOULD_LOSE_ORPHANED_OVERWRITTEN] =
a1c80446 126 _("The following working tree files would be overwritten by sparse checkout update:\n%s");
dc1166e6 127 msgs[ERROR_WOULD_LOSE_ORPHANED_REMOVED] =
a1c80446 128 _("The following working tree files would be removed by sparse checkout update:\n%s");
5e65ee35
MM
129
130 opts->show_all_errors = 1;
7980872d
CB
131 /* rejected paths may not have a static buffer */
132 for (i = 0; i < ARRAY_SIZE(opts->unpack_rejects); i++)
133 opts->unpack_rejects[i].strdup_strings = 1;
dc1166e6
MM
134}
135
46169180 136static int do_add_entry(struct unpack_trees_options *o, struct cache_entry *ce,
6ff264ee 137 unsigned int set, unsigned int clear)
b48d5a05 138{
419a597f 139 clear |= CE_HASHED;
34110cd4 140
700e66d6
NTND
141 if (set & CE_REMOVE)
142 set |= CE_WT_REMOVE;
143
6ff264ee 144 ce->ce_flags = (ce->ce_flags & ~clear) | set;
46169180
JK
145 return add_index_entry(&o->result, ce,
146 ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE);
6ff264ee
RS
147}
148
a33bd4d3 149static struct cache_entry *dup_entry(const struct cache_entry *ce)
6ff264ee
RS
150{
151 unsigned int size = ce_size(ce);
152 struct cache_entry *new = xmalloc(size);
153
34110cd4 154 memcpy(new, ce, size);
a33bd4d3
RS
155 return new;
156}
157
158static void add_entry(struct unpack_trees_options *o,
159 const struct cache_entry *ce,
160 unsigned int set, unsigned int clear)
161{
162 do_add_entry(o, dup_entry(ce), set, clear);
b48d5a05
LT
163}
164
e6c111b4
MM
165/*
166 * add error messages on path <path>
167 * corresponding to the type <e> with the message <msg>
168 * indicating if it should be display in porcelain or not
169 */
170static int add_rejected_path(struct unpack_trees_options *o,
171 enum unpack_trees_error_types e,
172 const char *path)
173{
e6c111b4
MM
174 if (!o->show_all_errors)
175 return error(ERRORMSG(o, e), path);
176
177 /*
178 * Otherwise, insert in a list for future display by
179 * display_error_msgs()
180 */
7980872d 181 string_list_append(&o->unpack_rejects[e], path);
e6c111b4
MM
182 return -1;
183}
184
e6c111b4
MM
185/*
186 * display all the error messages stored in a nice way
187 */
188static void display_error_msgs(struct unpack_trees_options *o)
189{
7980872d 190 int e, i;
e6c111b4
MM
191 int something_displayed = 0;
192 for (e = 0; e < NB_UNPACK_TREES_ERROR_TYPES; e++) {
7980872d
CB
193 struct string_list *rejects = &o->unpack_rejects[e];
194 if (rejects->nr > 0) {
e6c111b4
MM
195 struct strbuf path = STRBUF_INIT;
196 something_displayed = 1;
7980872d
CB
197 for (i = 0; i < rejects->nr; i++)
198 strbuf_addf(&path, "\t%s\n", rejects->items[i].string);
e6c111b4
MM
199 error(ERRORMSG(o, e), path.buf);
200 strbuf_release(&path);
e6c111b4 201 }
7980872d 202 string_list_clear(rejects, 0);
e6c111b4
MM
203 }
204 if (something_displayed)
ed47fdf7 205 fprintf(stderr, _("Aborting\n"));
e6c111b4
MM
206}
207
78478927
KB
208/*
209 * Unlink the last component and schedule the leading directories for
210 * removal, such that empty directories get removed.
16da134b 211 */
9c5e6c80 212static void unlink_entry(const struct cache_entry *ce)
16da134b 213{
f66caaf9 214 if (!check_leading_path(ce->name, ce_namelen(ce)))
16a4c617 215 return;
80d706af
PC
216 if (remove_or_warn(ce->ce_mode, ce->name))
217 return;
78478927 218 schedule_dir_for_removal(ce->name, ce_namelen(ce));
16da134b
JS
219}
220
384f1a16 221static struct progress *get_progress(struct unpack_trees_options *o)
16da134b 222{
96a02f8f 223 unsigned cnt = 0, total = 0;
384f1a16
SB
224 struct index_state *index = &o->result;
225
226 if (!o->update || !o->verbose_update)
227 return NULL;
228
229 for (; cnt < index->cache_nr; cnt++) {
230 const struct cache_entry *ce = index->cache[cnt];
231 if (ce->ce_flags & (CE_UPDATE | CE_WT_REMOVE))
232 total++;
233 }
234
235 return start_progress_delay(_("Checking out files"),
236 total, 50, 1);
237}
238
239static int check_updates(struct unpack_trees_options *o)
240{
241 unsigned cnt = 0;
30ac275b 242 int errs = 0;
dc6a0757 243 struct progress *progress = NULL;
34110cd4 244 struct index_state *index = &o->result;
30ac275b 245 struct checkout state = CHECKOUT_INIT;
33ecf7eb 246 int i;
16da134b 247
30ac275b
SB
248 state.force = 1;
249 state.quiet = 1;
250 state.refresh_cache = 1;
251 state.istate = index;
16da134b 252
384f1a16 253 progress = get_progress(o);
16da134b 254
66985e66 255 if (o->update)
30ac275b 256 git_attr_set_direction(GIT_ATTR_CHECKOUT, index);
34110cd4 257 for (i = 0; i < index->cache_nr; i++) {
9c5e6c80 258 const struct cache_entry *ce = index->cache[i];
16da134b 259
e663db2f
NTND
260 if (ce->ce_flags & CE_WT_REMOVE) {
261 display_progress(progress, ++cnt);
2c9078d0 262 if (o->update && !o->dry_run)
e663db2f 263 unlink_entry(ce);
e663db2f 264 }
1fa6ead4 265 }
30ac275b 266 remove_marked_cache_entries(index);
78478927 267 remove_scheduled_dirs();
1fa6ead4
LT
268
269 for (i = 0; i < index->cache_nr; i++) {
270 struct cache_entry *ce = index->cache[i];
271
7a51ed66 272 if (ce->ce_flags & CE_UPDATE) {
7d782416
DT
273 if (ce->ce_flags & CE_WT_REMOVE)
274 die("BUG: both update and delete flags are set on %s",
275 ce->name);
1fa6ead4 276 display_progress(progress, ++cnt);
7a51ed66 277 ce->ce_flags &= ~CE_UPDATE;
2c9078d0 278 if (o->update && !o->dry_run) {
30ac275b 279 errs |= checkout_entry(ce, &state, NULL);
16a4c617 280 }
16da134b
JS
281 }
282 }
4d4fcc54 283 stop_progress(&progress);
66985e66
JH
284 if (o->update)
285 git_attr_set_direction(GIT_ATTR_CHECKIN, NULL);
c4758d3c 286 return errs != 0;
16da134b
JS
287}
288
eb9ae4b5
RS
289static int verify_uptodate_sparse(const struct cache_entry *ce,
290 struct unpack_trees_options *o);
291static int verify_absent_sparse(const struct cache_entry *ce,
292 enum unpack_trees_error_types,
293 struct unpack_trees_options *o);
e800ec9d 294
a5c446f1
NTND
295static int apply_sparse_checkout(struct index_state *istate,
296 struct cache_entry *ce,
297 struct unpack_trees_options *o)
e800ec9d
NTND
298{
299 int was_skip_worktree = ce_skip_worktree(ce);
300
2431afbf 301 if (ce->ce_flags & CE_NEW_SKIP_WORKTREE)
e800ec9d
NTND
302 ce->ce_flags |= CE_SKIP_WORKTREE;
303 else
304 ce->ce_flags &= ~CE_SKIP_WORKTREE;
078a58e8
NTND
305 if (was_skip_worktree != ce_skip_worktree(ce)) {
306 ce->ce_flags |= CE_UPDATE_IN_BASE;
a5c446f1 307 istate->cache_changed |= CE_ENTRY_CHANGED;
078a58e8 308 }
e800ec9d
NTND
309
310 /*
eec3fc03
NTND
311 * if (!was_skip_worktree && !ce_skip_worktree()) {
312 * This is perfectly normal. Move on;
313 * }
e800ec9d 314 */
eec3fc03
NTND
315
316 /*
317 * Merge strategies may set CE_UPDATE|CE_REMOVE outside checkout
318 * area as a result of ce_skip_worktree() shortcuts in
700e66d6
NTND
319 * verify_absent() and verify_uptodate().
320 * Make sure they don't modify worktree if they are already
321 * outside checkout area
eec3fc03 322 */
700e66d6
NTND
323 if (was_skip_worktree && ce_skip_worktree(ce)) {
324 ce->ce_flags &= ~CE_UPDATE;
325
326 /*
327 * By default, when CE_REMOVE is on, CE_WT_REMOVE is also
328 * on to get that file removed from both index and worktree.
329 * If that file is already outside worktree area, don't
330 * bother remove it.
331 */
332 if (ce->ce_flags & CE_REMOVE)
333 ce->ce_flags &= ~CE_WT_REMOVE;
334 }
e800ec9d
NTND
335
336 if (!was_skip_worktree && ce_skip_worktree(ce)) {
337 /*
338 * If CE_UPDATE is set, verify_uptodate() must be called already
339 * also stat info may have lost after merged_entry() so calling
340 * verify_uptodate() again may fail
341 */
342 if (!(ce->ce_flags & CE_UPDATE) && verify_uptodate_sparse(ce, o))
343 return -1;
344 ce->ce_flags |= CE_WT_REMOVE;
7d782416 345 ce->ce_flags &= ~CE_UPDATE;
e800ec9d
NTND
346 }
347 if (was_skip_worktree && !ce_skip_worktree(ce)) {
08402b04 348 if (verify_absent_sparse(ce, ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN, o))
e800ec9d
NTND
349 return -1;
350 ce->ce_flags |= CE_UPDATE;
351 }
352 return 0;
353}
354
5828e835
RS
355static inline int call_unpack_fn(const struct cache_entry * const *src,
356 struct unpack_trees_options *o)
01904572 357{
34110cd4
LT
358 int ret = o->fn(src, o);
359 if (ret > 0)
01904572 360 ret = 0;
01904572
LT
361 return ret;
362}
363
da165f47
JH
364static void mark_ce_used(struct cache_entry *ce, struct unpack_trees_options *o)
365{
366 ce->ce_flags |= CE_UNPACKED;
367
368 if (o->cache_bottom < o->src_index->cache_nr &&
369 o->src_index->cache[o->cache_bottom] == ce) {
370 int bottom = o->cache_bottom;
371 while (bottom < o->src_index->cache_nr &&
372 o->src_index->cache[bottom]->ce_flags & CE_UNPACKED)
373 bottom++;
374 o->cache_bottom = bottom;
375 }
376}
377
378static void mark_all_ce_unused(struct index_state *index)
379{
380 int i;
381 for (i = 0; i < index->cache_nr; i++)
2431afbf 382 index->cache[i]->ce_flags &= ~(CE_UNPACKED | CE_ADDED | CE_NEW_SKIP_WORKTREE);
da165f47
JH
383}
384
eb9ae4b5 385static int locate_in_src_index(const struct cache_entry *ce,
da165f47
JH
386 struct unpack_trees_options *o)
387{
388 struct index_state *index = o->src_index;
389 int len = ce_namelen(ce);
390 int pos = index_name_pos(index, ce->name, len);
391 if (pos < 0)
392 pos = -1 - pos;
393 return pos;
394}
395
396/*
397 * We call unpack_index_entry() with an unmerged cache entry
398 * only in diff-index, and it wants a single callback. Skip
399 * the other unmerged entry with the same name.
400 */
401static void mark_ce_used_same_name(struct cache_entry *ce,
402 struct unpack_trees_options *o)
403{
404 struct index_state *index = o->src_index;
405 int len = ce_namelen(ce);
406 int pos;
407
408 for (pos = locate_in_src_index(ce, o); pos < index->cache_nr; pos++) {
409 struct cache_entry *next = index->cache[pos];
410 if (len != ce_namelen(next) ||
411 memcmp(ce->name, next->name, len))
412 break;
413 mark_ce_used(next, o);
414 }
415}
416
417static struct cache_entry *next_cache_entry(struct unpack_trees_options *o)
418{
419 const struct index_state *index = o->src_index;
420 int pos = o->cache_bottom;
421
422 while (pos < index->cache_nr) {
423 struct cache_entry *ce = index->cache[pos];
424 if (!(ce->ce_flags & CE_UNPACKED))
425 return ce;
426 pos++;
427 }
428 return NULL;
429}
430
9c5e6c80 431static void add_same_unmerged(const struct cache_entry *ce,
da165f47
JH
432 struct unpack_trees_options *o)
433{
434 struct index_state *index = o->src_index;
435 int len = ce_namelen(ce);
436 int pos = index_name_pos(index, ce->name, len);
437
438 if (0 <= pos)
439 die("programming error in a caller of mark_ce_used_same_name");
440 for (pos = -pos - 1; pos < index->cache_nr; pos++) {
441 struct cache_entry *next = index->cache[pos];
442 if (len != ce_namelen(next) ||
443 memcmp(ce->name, next->name, len))
444 break;
445 add_entry(o, next, 0, 0);
446 mark_ce_used(next, o);
447 }
448}
449
450static int unpack_index_entry(struct cache_entry *ce,
451 struct unpack_trees_options *o)
01904572 452{
5828e835 453 const struct cache_entry *src[MAX_UNPACK_TREES + 1] = { NULL, };
da165f47 454 int ret;
34110cd4 455
66dbfd55
GV
456 src[0] = ce;
457
da165f47 458 mark_ce_used(ce, o);
01904572
LT
459 if (ce_stage(ce)) {
460 if (o->skip_unmerged) {
34110cd4
LT
461 add_entry(o, ce, 0, 0);
462 return 0;
01904572 463 }
01904572 464 }
da165f47
JH
465 ret = call_unpack_fn(src, o);
466 if (ce_stage(ce))
467 mark_ce_used_same_name(ce, o);
468 return ret;
01904572
LT
469}
470
730f7284
JH
471static int find_cache_pos(struct traverse_info *, const struct name_entry *);
472
473static void restore_cache_bottom(struct traverse_info *info, int bottom)
474{
475 struct unpack_trees_options *o = info->data;
476
477 if (o->diff_index_cached)
478 return;
479 o->cache_bottom = bottom;
480}
481
482static int switch_cache_bottom(struct traverse_info *info)
483{
484 struct unpack_trees_options *o = info->data;
485 int ret, pos;
486
487 if (o->diff_index_cached)
488 return 0;
489 ret = o->cache_bottom;
490 pos = find_cache_pos(info->prev, &info->name);
491
492 if (pos < -1)
493 o->cache_bottom = -2 - pos;
494 else if (pos < 0)
495 o->cache_bottom = o->src_index->cache_nr;
496 return ret;
01904572
LT
497}
498
84563a62
JH
499static int traverse_trees_recursive(int n, unsigned long dirmask,
500 unsigned long df_conflicts,
501 struct name_entry *names,
502 struct traverse_info *info)
16da134b 503{
730f7284 504 int i, ret, bottom;
ca885a4f 505 struct tree_desc t[MAX_UNPACK_TREES];
1ce584b0 506 void *buf[MAX_UNPACK_TREES];
01904572
LT
507 struct traverse_info newinfo;
508 struct name_entry *p;
509
510 p = names;
511 while (!p->mode)
512 p++;
513
514 newinfo = *info;
515 newinfo.prev = info;
40e37256 516 newinfo.pathspec = info->pathspec;
01904572 517 newinfo.name = *p;
0de16337 518 newinfo.pathlen += tree_entry_len(p) + 1;
603d2498 519 newinfo.df_conflicts |= df_conflicts;
01904572
LT
520
521 for (i = 0; i < n; i++, dirmask >>= 1) {
522 const unsigned char *sha1 = NULL;
523 if (dirmask & 1)
7d924c91 524 sha1 = names[i].oid->hash;
1ce584b0 525 buf[i] = fill_tree_descriptor(t+i, sha1);
01904572 526 }
730f7284
JH
527
528 bottom = switch_cache_bottom(&newinfo);
529 ret = traverse_trees(n, t, &newinfo);
530 restore_cache_bottom(&newinfo, bottom);
1ce584b0
JN
531
532 for (i = 0; i < n; i++)
533 free(buf[i]);
534
730f7284 535 return ret;
01904572
LT
536}
537
538/*
539 * Compare the traverse-path to the cache entry without actually
540 * having to generate the textual representation of the traverse
541 * path.
542 *
543 * NOTE! This *only* compares up to the size of the traverse path
544 * itself - the caller needs to do the final check for the cache
545 * entry having more data at the end!
546 */
d9c2bd56 547static int do_compare_entry_piecewise(const struct cache_entry *ce, const struct traverse_info *info, const struct name_entry *n)
01904572
LT
548{
549 int len, pathlen, ce_len;
550 const char *ce_name;
551
552 if (info->prev) {
d9c2bd56
DT
553 int cmp = do_compare_entry_piecewise(ce, info->prev,
554 &info->name);
01904572
LT
555 if (cmp)
556 return cmp;
557 }
558 pathlen = info->pathlen;
559 ce_len = ce_namelen(ce);
560
561 /* If ce_len < pathlen then we must have previously hit "name == directory" entry */
562 if (ce_len < pathlen)
563 return -1;
564
565 ce_len -= pathlen;
566 ce_name = ce->name + pathlen;
567
0de16337 568 len = tree_entry_len(n);
01904572
LT
569 return df_name_compare(ce_name, ce_len, S_IFREG, n->path, len, n->mode);
570}
571
d9c2bd56
DT
572static int do_compare_entry(const struct cache_entry *ce,
573 const struct traverse_info *info,
574 const struct name_entry *n)
575{
576 int len, pathlen, ce_len;
577 const char *ce_name;
578 int cmp;
579
580 /*
581 * If we have not precomputed the traverse path, it is quicker
582 * to avoid doing so. But if we have precomputed it,
583 * it is quicker to use the precomputed version.
584 */
585 if (!info->traverse_path)
586 return do_compare_entry_piecewise(ce, info, n);
587
588 cmp = strncmp(ce->name, info->traverse_path, info->pathlen);
589 if (cmp)
590 return cmp;
591
592 pathlen = info->pathlen;
593 ce_len = ce_namelen(ce);
594
595 if (ce_len < pathlen)
596 return -1;
597
598 ce_len -= pathlen;
599 ce_name = ce->name + pathlen;
600
601 len = tree_entry_len(n);
602 return df_name_compare(ce_name, ce_len, S_IFREG, n->path, len, n->mode);
603}
604
01904572
LT
605static int compare_entry(const struct cache_entry *ce, const struct traverse_info *info, const struct name_entry *n)
606{
607 int cmp = do_compare_entry(ce, info, n);
608 if (cmp)
609 return cmp;
610
611 /*
612 * Even if the beginning compared identically, the ce should
613 * compare as bigger than a directory leading up to it!
614 */
615 return ce_namelen(ce) > traverse_path_len(info, n);
616}
617
da165f47
JH
618static int ce_in_traverse_path(const struct cache_entry *ce,
619 const struct traverse_info *info)
620{
621 if (!info->prev)
622 return 1;
623 if (do_compare_entry(ce, info->prev, &info->name))
624 return 0;
625 /*
626 * If ce (blob) is the same name as the path (which is a tree
627 * we will be descending into), it won't be inside it.
628 */
629 return (info->pathlen < ce_namelen(ce));
630}
631
01904572
LT
632static struct cache_entry *create_ce_entry(const struct traverse_info *info, const struct name_entry *n, int stage)
633{
634 int len = traverse_path_len(info, n);
635 struct cache_entry *ce = xcalloc(1, cache_entry_size(len));
636
637 ce->ce_mode = create_ce_mode(n->mode);
b60e188c
TG
638 ce->ce_flags = create_ce_flags(stage);
639 ce->ce_namelen = len;
99d1a986 640 oidcpy(&ce->oid, n->oid);
01904572
LT
641 make_traverse_path(ce->name, info, n);
642
643 return ce;
644}
645
c7cddc1a
RS
646static int unpack_nondirectories(int n, unsigned long mask,
647 unsigned long dirmask,
648 struct cache_entry **src,
649 const struct name_entry *names,
650 const struct traverse_info *info)
01904572
LT
651{
652 int i;
653 struct unpack_trees_options *o = info->data;
603d2498 654 unsigned long conflicts = info->df_conflicts | dirmask;
01904572
LT
655
656 /* Do we have *only* directories? Nothing to do */
657 if (mask == dirmask && !src[0])
658 return 0;
659
01904572
LT
660 /*
661 * Ok, we've filled in up to any potential index entry in src[0],
662 * now do the rest.
663 */
664 for (i = 0; i < n; i++) {
665 int stage;
666 unsigned int bit = 1ul << i;
667 if (conflicts & bit) {
668 src[i + o->merge] = o->df_conflict_entry;
669 continue;
670 }
671 if (!(mask & bit))
672 continue;
673 if (!o->merge)
674 stage = 0;
675 else if (i + 1 < o->head_idx)
676 stage = 1;
677 else if (i + 1 > o->head_idx)
678 stage = 3;
679 else
680 stage = 2;
681 src[i + o->merge] = create_ce_entry(info, names + i, stage);
682 }
683
5d80ef5a
RS
684 if (o->merge) {
685 int rc = call_unpack_fn((const struct cache_entry * const *)src,
686 o);
687 for (i = 0; i < n; i++) {
688 struct cache_entry *ce = src[i + o->merge];
689 if (ce != o->df_conflict_entry)
690 free(ce);
691 }
692 return rc;
693 }
01904572 694
01904572 695 for (i = 0; i < n; i++)
aab3b9a1 696 if (src[i] && src[i] != o->df_conflict_entry)
46169180
JK
697 if (do_add_entry(o, src[i], 0, 0))
698 return -1;
699
01904572
LT
700 return 0;
701}
702
353c5eeb
JH
703static int unpack_failed(struct unpack_trees_options *o, const char *message)
704{
705 discard_index(&o->result);
b4194828 706 if (!o->gently && !o->exiting_early) {
353c5eeb
JH
707 if (message)
708 return error("%s", message);
709 return -1;
710 }
711 return -1;
712}
713
730f7284
JH
714/*
715 * The tree traversal is looking at name p. If we have a matching entry,
716 * return it. If name p is a directory in the index, do not return
717 * anything, as we will want to match it when the traversal descends into
718 * the directory.
719 */
720static int find_cache_pos(struct traverse_info *info,
721 const struct name_entry *p)
722{
723 int pos;
724 struct unpack_trees_options *o = info->data;
725 struct index_state *index = o->src_index;
726 int pfxlen = info->pathlen;
0de16337 727 int p_len = tree_entry_len(p);
730f7284
JH
728
729 for (pos = o->cache_bottom; pos < index->cache_nr; pos++) {
9c5e6c80 730 const struct cache_entry *ce = index->cache[pos];
730f7284
JH
731 const char *ce_name, *ce_slash;
732 int cmp, ce_len;
733
e53e6b44
BD
734 if (ce->ce_flags & CE_UNPACKED) {
735 /*
736 * cache_bottom entry is already unpacked, so
737 * we can never match it; don't check it
738 * again.
739 */
740 if (pos == o->cache_bottom)
741 ++o->cache_bottom;
730f7284 742 continue;
e53e6b44 743 }
a6720955
DT
744 if (!ce_in_traverse_path(ce, info)) {
745 /*
746 * Check if we can skip future cache checks
747 * (because we're already past all possible
748 * entries in the traverse path).
749 */
750 if (info->traverse_path) {
751 if (strncmp(ce->name, info->traverse_path,
752 info->pathlen) > 0)
753 break;
754 }
730f7284 755 continue;
a6720955 756 }
730f7284
JH
757 ce_name = ce->name + pfxlen;
758 ce_slash = strchr(ce_name, '/');
759 if (ce_slash)
760 ce_len = ce_slash - ce_name;
761 else
762 ce_len = ce_namelen(ce) - pfxlen;
763 cmp = name_compare(p->path, p_len, ce_name, ce_len);
764 /*
765 * Exact match; if we have a directory we need to
766 * delay returning it.
767 */
768 if (!cmp)
769 return ce_slash ? -2 - pos : pos;
770 if (0 < cmp)
771 continue; /* keep looking */
772 /*
773 * ce_name sorts after p->path; could it be that we
774 * have files under p->path directory in the index?
775 * E.g. ce_name == "t-i", and p->path == "t"; we may
776 * have "t/a" in the index.
777 */
778 if (p_len < ce_len && !memcmp(ce_name, p->path, p_len) &&
779 ce_name[p_len] < '/')
780 continue; /* keep looking */
781 break;
782 }
783 return -1;
784}
785
786static struct cache_entry *find_cache_entry(struct traverse_info *info,
787 const struct name_entry *p)
788{
789 int pos = find_cache_pos(info, p);
790 struct unpack_trees_options *o = info->data;
791
792 if (0 <= pos)
793 return o->src_index->cache[pos];
794 else
795 return NULL;
796}
797
ba655da5
JH
798static void debug_path(struct traverse_info *info)
799{
800 if (info->prev) {
801 debug_path(info->prev);
802 if (*info->prev->name.path)
803 putchar('/');
804 }
805 printf("%s", info->name.path);
806}
807
808static void debug_name_entry(int i, struct name_entry *n)
809{
810 printf("ent#%d %06o %s\n", i,
811 n->path ? n->mode : 0,
812 n->path ? n->path : "(missing)");
813}
814
815static void debug_unpack_callback(int n,
816 unsigned long mask,
817 unsigned long dirmask,
818 struct name_entry *names,
819 struct traverse_info *info)
820{
821 int i;
822 printf("* unpack mask %lu, dirmask %lu, cnt %d ",
823 mask, dirmask, n);
824 debug_path(info);
825 putchar('\n');
826 for (i = 0; i < n; i++)
827 debug_name_entry(i, names + i);
828}
829
01904572
LT
830static int unpack_callback(int n, unsigned long mask, unsigned long dirmask, struct name_entry *names, struct traverse_info *info)
831{
c7cddc1a 832 struct cache_entry *src[MAX_UNPACK_TREES + 1] = { NULL, };
01904572 833 struct unpack_trees_options *o = info->data;
01904572
LT
834 const struct name_entry *p = names;
835
836 /* Find first entry with a real name (we could use "mask" too) */
837 while (!p->mode)
838 p++;
839
ba655da5
JH
840 if (o->debug_unpack)
841 debug_unpack_callback(n, mask, dirmask, names, info);
842
01904572
LT
843 /* Are we supposed to look at the index too? */
844 if (o->merge) {
da165f47 845 while (1) {
da165f47 846 int cmp;
730f7284
JH
847 struct cache_entry *ce;
848
849 if (o->diff_index_cached)
850 ce = next_cache_entry(o);
851 else
852 ce = find_cache_entry(info, p);
853
da165f47
JH
854 if (!ce)
855 break;
856 cmp = compare_entry(ce, info, p);
01904572
LT
857 if (cmp < 0) {
858 if (unpack_index_entry(ce, o) < 0)
353c5eeb 859 return unpack_failed(o, NULL);
01904572
LT
860 continue;
861 }
862 if (!cmp) {
863 if (ce_stage(ce)) {
864 /*
da165f47
JH
865 * If we skip unmerged index
866 * entries, we'll skip this
867 * entry *and* the tree
868 * entries associated with it!
01904572 869 */
34110cd4 870 if (o->skip_unmerged) {
da165f47 871 add_same_unmerged(ce, o);
01904572 872 return mask;
34110cd4 873 }
01904572
LT
874 }
875 src[0] = ce;
01904572
LT
876 }
877 break;
878 }
879 }
880
34110cd4 881 if (unpack_nondirectories(n, mask, dirmask, src, names, info) < 0)
01904572
LT
882 return -1;
883
97e5954b 884 if (o->merge && src[0]) {
da165f47
JH
885 if (ce_stage(src[0]))
886 mark_ce_used_same_name(src[0], o);
887 else
888 mark_ce_used(src[0], o);
889 }
890
01904572
LT
891 /* Now handle any directories.. */
892 if (dirmask) {
b65982b6
JH
893 /* special case: "diff-index --cached" looking at a tree */
894 if (o->diff_index_cached &&
895 n == 1 && dirmask == 1 && S_ISDIR(names->mode)) {
896 int matches;
897 matches = cache_tree_matches_traversal(o->src_index->cache_tree,
898 names, info);
899 /*
da165f47
JH
900 * Everything under the name matches; skip the
901 * entire hierarchy. diff_index_cached codepath
902 * special cases D/F conflicts in such a way that
903 * it does not do any look-ahead, so this is safe.
b65982b6
JH
904 */
905 if (matches) {
da165f47 906 o->cache_bottom += matches;
b65982b6
JH
907 return mask;
908 }
909 }
910
603d2498 911 if (traverse_trees_recursive(n, dirmask, mask & ~dirmask,
542c264b
JH
912 names, info) < 0)
913 return -1;
01904572
LT
914 return mask;
915 }
916
917 return mask;
918}
919
28911091 920static int clear_ce_flags_1(struct cache_entry **cache, int nr,
fc2b6214 921 struct strbuf *prefix,
28911091
NTND
922 int select_mask, int clear_mask,
923 struct exclude_list *el, int defval);
924
9037026d
NTND
925/* Whole directory matching */
926static int clear_ce_flags_dir(struct cache_entry **cache, int nr,
fc2b6214 927 struct strbuf *prefix,
9037026d
NTND
928 char *basename,
929 int select_mask, int clear_mask,
28911091 930 struct exclude_list *el, int defval)
9037026d 931{
28911091 932 struct cache_entry **cache_end;
9037026d 933 int dtype = DT_DIR;
fc2b6214 934 int ret = is_excluded_from_list(prefix->buf, prefix->len,
07958050 935 basename, &dtype, el);
fc2b6214 936 int rc;
9037026d 937
fc2b6214 938 strbuf_addch(prefix, '/');
9037026d 939
28911091
NTND
940 /* If undecided, use matching result of parent dir in defval */
941 if (ret < 0)
942 ret = defval;
9037026d 943
28911091
NTND
944 for (cache_end = cache; cache_end != cache + nr; cache_end++) {
945 struct cache_entry *ce = *cache_end;
fc2b6214 946 if (strncmp(ce->name, prefix->buf, prefix->len))
28911091 947 break;
9037026d
NTND
948 }
949
28911091
NTND
950 /*
951 * TODO: check el, if there are no patterns that may conflict
952 * with ret (iow, we know in advance the incl/excl
953 * decision for the entire directory), clear flag here without
954 * calling clear_ce_flags_1(). That function will call
07958050 955 * the expensive is_excluded_from_list() on every entry.
28911091 956 */
fc2b6214
AP
957 rc = clear_ce_flags_1(cache, cache_end - cache,
958 prefix,
959 select_mask, clear_mask,
960 el, ret);
961 strbuf_setlen(prefix, prefix->len - 1);
962 return rc;
9037026d
NTND
963}
964
965/*
966 * Traverse the index, find every entry that matches according to
967 * o->el. Do "ce_flags &= ~clear_mask" on those entries. Return the
968 * number of traversed entries.
969 *
970 * If select_mask is non-zero, only entries whose ce_flags has on of
971 * those bits enabled are traversed.
972 *
973 * cache : pointer to an index entry
974 * prefix_len : an offset to its path
975 *
976 * The current path ("prefix") including the trailing '/' is
977 * cache[0]->name[0..(prefix_len-1)]
978 * Top level path has prefix_len zero.
979 */
980static int clear_ce_flags_1(struct cache_entry **cache, int nr,
fc2b6214 981 struct strbuf *prefix,
9037026d 982 int select_mask, int clear_mask,
28911091 983 struct exclude_list *el, int defval)
9037026d
NTND
984{
985 struct cache_entry **cache_end = cache + nr;
986
987 /*
988 * Process all entries that have the given prefix and meet
989 * select_mask condition
990 */
991 while(cache != cache_end) {
992 struct cache_entry *ce = *cache;
993 const char *name, *slash;
28911091 994 int len, dtype, ret;
9037026d
NTND
995
996 if (select_mask && !(ce->ce_flags & select_mask)) {
997 cache++;
998 continue;
999 }
1000
fc2b6214 1001 if (prefix->len && strncmp(ce->name, prefix->buf, prefix->len))
9037026d
NTND
1002 break;
1003
fc2b6214 1004 name = ce->name + prefix->len;
9037026d
NTND
1005 slash = strchr(name, '/');
1006
1007 /* If it's a directory, try whole directory match first */
1008 if (slash) {
1009 int processed;
1010
1011 len = slash - name;
fc2b6214 1012 strbuf_add(prefix, name, len);
9037026d 1013
9037026d 1014 processed = clear_ce_flags_dir(cache, cache_end - cache,
fc2b6214
AP
1015 prefix,
1016 prefix->buf + prefix->len - len,
9037026d 1017 select_mask, clear_mask,
28911091 1018 el, defval);
9037026d
NTND
1019
1020 /* clear_c_f_dir eats a whole dir already? */
1021 if (processed) {
1022 cache += processed;
fc2b6214 1023 strbuf_setlen(prefix, prefix->len - len);
9037026d
NTND
1024 continue;
1025 }
1026
fc2b6214 1027 strbuf_addch(prefix, '/');
9037026d 1028 cache += clear_ce_flags_1(cache, cache_end - cache,
fc2b6214 1029 prefix,
28911091 1030 select_mask, clear_mask, el, defval);
fc2b6214 1031 strbuf_setlen(prefix, prefix->len - len - 1);
9037026d
NTND
1032 continue;
1033 }
1034
1035 /* Non-directory */
1036 dtype = ce_to_dtype(ce);
07958050
AS
1037 ret = is_excluded_from_list(ce->name, ce_namelen(ce),
1038 name, &dtype, el);
28911091
NTND
1039 if (ret < 0)
1040 ret = defval;
1041 if (ret > 0)
9037026d
NTND
1042 ce->ce_flags &= ~clear_mask;
1043 cache++;
1044 }
1045 return nr - (cache_end - cache);
1046}
1047
1048static int clear_ce_flags(struct cache_entry **cache, int nr,
1049 int select_mask, int clear_mask,
1050 struct exclude_list *el)
1051{
fc2b6214
AP
1052 static struct strbuf prefix = STRBUF_INIT;
1053
1054 strbuf_reset(&prefix);
1055
9037026d 1056 return clear_ce_flags_1(cache, nr,
fc2b6214 1057 &prefix,
9037026d 1058 select_mask, clear_mask,
28911091 1059 el, 0);
9037026d
NTND
1060}
1061
2431afbf
NTND
1062/*
1063 * Set/Clear CE_NEW_SKIP_WORKTREE according to $GIT_DIR/info/sparse-checkout
1064 */
1065static void mark_new_skip_worktree(struct exclude_list *el,
1066 struct index_state *the_index,
1067 int select_flag, int skip_wt_flag)
1068{
1069 int i;
1070
9037026d
NTND
1071 /*
1072 * 1. Pretend the narrowest worktree: only unmerged entries
1073 * are checked out
1074 */
2431afbf
NTND
1075 for (i = 0; i < the_index->cache_nr; i++) {
1076 struct cache_entry *ce = the_index->cache[i];
1077
1078 if (select_flag && !(ce->ce_flags & select_flag))
1079 continue;
1080
9037026d 1081 if (!ce_stage(ce))
2431afbf
NTND
1082 ce->ce_flags |= skip_wt_flag;
1083 else
1084 ce->ce_flags &= ~skip_wt_flag;
1085 }
9037026d
NTND
1086
1087 /*
1088 * 2. Widen worktree according to sparse-checkout file.
1089 * Matched entries will have skip_wt_flag cleared (i.e. "in")
1090 */
1091 clear_ce_flags(the_index->cache, the_index->cache_nr,
1092 select_flag, skip_wt_flag, el);
2431afbf
NTND
1093}
1094
eb9ae4b5
RS
1095static int verify_absent(const struct cache_entry *,
1096 enum unpack_trees_error_types,
1097 struct unpack_trees_options *);
2e2b887d
JH
1098/*
1099 * N-way merge "len" trees. Returns 0 on success, -1 on failure to manipulate the
1100 * resulting index, -2 on failure to reflect the changes to the work tree.
2431afbf
NTND
1101 *
1102 * CE_ADDED, CE_UNPACKED and CE_NEW_SKIP_WORKTREE are used internally
2e2b887d 1103 */
01904572
LT
1104int unpack_trees(unsigned len, struct tree_desc *t, struct unpack_trees_options *o)
1105{
e800ec9d 1106 int i, ret;
0fb1eaa8 1107 static struct cache_entry *dfc;
08aefc9e 1108 struct exclude_list el;
16da134b 1109
ca885a4f
JH
1110 if (len > MAX_UNPACK_TREES)
1111 die("unpack_trees takes at most %d trees", MAX_UNPACK_TREES);
16da134b 1112
08aefc9e
NTND
1113 memset(&el, 0, sizeof(el));
1114 if (!core_apply_sparse_checkout || !o->update)
1115 o->skip_sparse_checkout = 1;
1116 if (!o->skip_sparse_checkout) {
fcd12db6
JK
1117 char *sparse = git_pathdup("info/sparse-checkout");
1118 if (add_excludes_from_file_to_list(sparse, "", 0, &el, 0) < 0)
08aefc9e
NTND
1119 o->skip_sparse_checkout = 1;
1120 else
1121 o->el = &el;
fcd12db6 1122 free(sparse);
08aefc9e
NTND
1123 }
1124
34110cd4 1125 memset(&o->result, 0, sizeof(o->result));
913e0e99 1126 o->result.initialized = 1;
da165f47
JH
1127 o->result.timestamp.sec = o->src_index->timestamp.sec;
1128 o->result.timestamp.nsec = o->src_index->timestamp.nsec;
9170c7ab 1129 o->result.version = o->src_index->version;
5fc2fc8f
NTND
1130 o->result.split_index = o->src_index->split_index;
1131 if (o->result.split_index)
1132 o->result.split_index->refcount++;
e93021b2 1133 hashcpy(o->result.sha1, o->src_index->sha1);
16da134b 1134 o->merge_size = len;
da165f47 1135 mark_all_ce_unused(o->src_index);
0fb1eaa8 1136
2431afbf
NTND
1137 /*
1138 * Sparse checkout loop #1: set NEW_SKIP_WORKTREE on existing entries
1139 */
1140 if (!o->skip_sparse_checkout)
1141 mark_new_skip_worktree(o->el, o->src_index, 0, CE_NEW_SKIP_WORKTREE);
1142
0fb1eaa8 1143 if (!dfc)
13494ed1 1144 dfc = xcalloc(1, cache_entry_size(0));
0fb1eaa8 1145 o->df_conflict_entry = dfc;
16da134b
JS
1146
1147 if (len) {
01904572
LT
1148 const char *prefix = o->prefix ? o->prefix : "";
1149 struct traverse_info info;
1150
1151 setup_traverse_info(&info, prefix);
1152 info.fn = unpack_callback;
1153 info.data = o;
e6c111b4 1154 info.show_all_errors = o->show_all_errors;
40e37256 1155 info.pathspec = o->pathspec;
01904572 1156
da165f47
JH
1157 if (o->prefix) {
1158 /*
1159 * Unpack existing index entries that sort before the
1160 * prefix the tree is spliced into. Note that o->merge
1161 * is always true in this case.
1162 */
1163 while (1) {
1164 struct cache_entry *ce = next_cache_entry(o);
1165 if (!ce)
1166 break;
1167 if (ce_in_traverse_path(ce, &info))
1168 break;
1169 if (unpack_index_entry(ce, o) < 0)
1170 goto return_failed;
1171 }
08aefc9e 1172 }
da165f47 1173
01904572 1174 if (traverse_trees(len, t, &info) < 0)
da165f47 1175 goto return_failed;
16da134b
JS
1176 }
1177
01904572
LT
1178 /* Any left-over entries in the index? */
1179 if (o->merge) {
da165f47
JH
1180 while (1) {
1181 struct cache_entry *ce = next_cache_entry(o);
1182 if (!ce)
1183 break;
01904572 1184 if (unpack_index_entry(ce, o) < 0)
da165f47 1185 goto return_failed;
17e46426 1186 }
17e46426 1187 }
da165f47 1188 mark_all_ce_unused(o->src_index);
16da134b 1189
08aefc9e
NTND
1190 if (o->trivial_merges_only && o->nontrivial_merge) {
1191 ret = unpack_failed(o, "Merge requires file-level merging");
1192 goto done;
1193 }
01904572 1194
e800ec9d 1195 if (!o->skip_sparse_checkout) {
9e1afb16 1196 int empty_worktree = 1;
2431afbf
NTND
1197
1198 /*
1199 * Sparse checkout loop #2: set NEW_SKIP_WORKTREE on entries not in loop #1
1200 * If the will have NEW_SKIP_WORKTREE, also set CE_SKIP_WORKTREE
1201 * so apply_sparse_checkout() won't attempt to remove it from worktree
1202 */
1203 mark_new_skip_worktree(o->el, &o->result, CE_ADDED, CE_SKIP_WORKTREE | CE_NEW_SKIP_WORKTREE);
1204
17d26a4d 1205 ret = 0;
2431afbf 1206 for (i = 0; i < o->result.cache_nr; i++) {
e800ec9d
NTND
1207 struct cache_entry *ce = o->result.cache[i];
1208
2431afbf
NTND
1209 /*
1210 * Entries marked with CE_ADDED in merged_entry() do not have
1211 * verify_absent() check (the check is effectively disabled
1212 * because CE_NEW_SKIP_WORKTREE is set unconditionally).
1213 *
1214 * Do the real check now because we have had
1215 * correct CE_NEW_SKIP_WORKTREE
1216 */
1217 if (ce->ce_flags & CE_ADDED &&
17d26a4d
NTND
1218 verify_absent(ce, ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN, o)) {
1219 if (!o->show_all_errors)
1220 goto return_failed;
1221 ret = -1;
1222 }
2431afbf 1223
a5c446f1 1224 if (apply_sparse_checkout(&o->result, ce, o)) {
17d26a4d
NTND
1225 if (!o->show_all_errors)
1226 goto return_failed;
e800ec9d 1227 ret = -1;
e800ec9d 1228 }
eec3fc03 1229 if (!ce_skip_worktree(ce))
9e1afb16 1230 empty_worktree = 0;
f1f523ea 1231
e800ec9d 1232 }
17d26a4d
NTND
1233 if (ret < 0)
1234 goto return_failed;
a7bc906f
NTND
1235 /*
1236 * Sparse checkout is meant to narrow down checkout area
1237 * but it does not make sense to narrow down to empty working
1238 * tree. This is usually a mistake in sparse checkout rules.
1239 * Do not allow users to do that.
1240 */
9e1afb16
NTND
1241 if (o->result.cache_nr && empty_worktree) {
1242 ret = unpack_failed(o, "Sparse checkout leaves no entry on working directory");
1243 goto done;
1244 }
e800ec9d 1245 }
01904572 1246
34110cd4 1247 o->src_index = NULL;
30ac275b 1248 ret = check_updates(o) ? (-2) : 0;
e28f7641 1249 if (o->dst_index) {
52fca218
BD
1250 if (!ret) {
1251 if (!o->result.cache_tree)
1252 o->result.cache_tree = cache_tree();
1253 if (!cache_tree_fully_valid(o->result.cache_tree))
1254 cache_tree_update(&o->result,
1255 WRITE_TREE_SILENT |
1256 WRITE_TREE_REPAIR);
1257 }
e28f7641 1258 discard_index(o->dst_index);
34110cd4 1259 *o->dst_index = o->result;
a16cc8b2
JH
1260 } else {
1261 discard_index(&o->result);
e28f7641 1262 }
08aefc9e
NTND
1263
1264done:
f6198812 1265 clear_exclude_list(&el);
2e2b887d 1266 return ret;
da165f47
JH
1267
1268return_failed:
e6c111b4
MM
1269 if (o->show_all_errors)
1270 display_error_msgs(o);
da165f47 1271 mark_all_ce_unused(o->src_index);
026680f8 1272 ret = unpack_failed(o, NULL);
b4194828
JH
1273 if (o->exiting_early)
1274 ret = 0;
026680f8 1275 goto done;
16da134b 1276}
076b0adc
JS
1277
1278/* Here come the merge functions */
1279
eb9ae4b5
RS
1280static int reject_merge(const struct cache_entry *ce,
1281 struct unpack_trees_options *o)
076b0adc 1282{
6a143aa2
JN
1283 return o->gently ? -1 :
1284 add_rejected_path(o, ERROR_WOULD_OVERWRITE, ce->name);
076b0adc
JS
1285}
1286
eb9ae4b5 1287static int same(const struct cache_entry *a, const struct cache_entry *b)
076b0adc
JS
1288{
1289 if (!!a != !!b)
1290 return 0;
1291 if (!a && !b)
1292 return 1;
e11d7b59
JH
1293 if ((a->ce_flags | b->ce_flags) & CE_CONFLICTED)
1294 return 0;
076b0adc 1295 return a->ce_mode == b->ce_mode &&
99d1a986 1296 !oidcmp(&a->oid, &b->oid);
076b0adc
JS
1297}
1298
1299
1300/*
1301 * When a CE gets turned into an unmerged entry, we
1302 * want it to be up-to-date
1303 */
eb9ae4b5
RS
1304static int verify_uptodate_1(const struct cache_entry *ce,
1305 struct unpack_trees_options *o,
1306 enum unpack_trees_error_types error_type)
076b0adc
JS
1307{
1308 struct stat st;
1309
d5b66299
NTND
1310 if (o->index_only)
1311 return 0;
1312
1313 /*
1314 * CE_VALID and CE_SKIP_WORKTREE cheat, we better check again
1315 * if this entry is truly up-to-date because this file may be
1316 * overwritten.
1317 */
1318 if ((ce->ce_flags & CE_VALID) || ce_skip_worktree(ce))
1319 ; /* keep checking */
1320 else if (o->reset || ce_uptodate(ce))
203a2fe1 1321 return 0;
076b0adc
JS
1322
1323 if (!lstat(ce->name, &st)) {
d5b66299
NTND
1324 int flags = CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE;
1325 unsigned changed = ie_match_stat(o->src_index, ce, &st, flags);
076b0adc 1326 if (!changed)
203a2fe1 1327 return 0;
936492d3
JH
1328 /*
1329 * NEEDSWORK: the current default policy is to allow
cb8ad289 1330 * submodule to be out of sync wrt the superproject
936492d3
JH
1331 * index. This needs to be tightened later for
1332 * submodules that are marked to be automatically
1333 * checked out.
1334 */
7a51ed66 1335 if (S_ISGITLINK(ce->ce_mode))
203a2fe1 1336 return 0;
076b0adc
JS
1337 errno = 0;
1338 }
076b0adc 1339 if (errno == ENOENT)
203a2fe1 1340 return 0;
17e46426 1341 return o->gently ? -1 :
e6c111b4 1342 add_rejected_path(o, error_type, ce->name);
35a5aa79
NTND
1343}
1344
eb9ae4b5 1345static int verify_uptodate(const struct cache_entry *ce,
35a5aa79
NTND
1346 struct unpack_trees_options *o)
1347{
2431afbf 1348 if (!o->skip_sparse_checkout && (ce->ce_flags & CE_NEW_SKIP_WORKTREE))
f1f523ea 1349 return 0;
08402b04 1350 return verify_uptodate_1(ce, o, ERROR_NOT_UPTODATE_FILE);
076b0adc
JS
1351}
1352
eb9ae4b5 1353static int verify_uptodate_sparse(const struct cache_entry *ce,
e800ec9d
NTND
1354 struct unpack_trees_options *o)
1355{
08402b04 1356 return verify_uptodate_1(ce, o, ERROR_SPARSE_NOT_UPTODATE_FILE);
076b0adc
JS
1357}
1358
eb9ae4b5
RS
1359static void invalidate_ce_path(const struct cache_entry *ce,
1360 struct unpack_trees_options *o)
076b0adc 1361{
e931371a
NTND
1362 if (!ce)
1363 return;
1364 cache_tree_invalidate_path(o->src_index, ce->name);
1365 untracked_cache_invalidate_path(o->src_index, ce->name);
076b0adc
JS
1366}
1367
0cf73755
SV
1368/*
1369 * Check that checking out ce->sha1 in subdir ce->name is not
1370 * going to overwrite any working files.
1371 *
1372 * Currently, git does not checkout subprojects during a superproject
1373 * checkout, so it is not going to overwrite anything.
1374 */
eb9ae4b5
RS
1375static int verify_clean_submodule(const struct cache_entry *ce,
1376 enum unpack_trees_error_types error_type,
1377 struct unpack_trees_options *o)
0cf73755
SV
1378{
1379 return 0;
1380}
1381
eb9ae4b5
RS
1382static int verify_clean_subdirectory(const struct cache_entry *ce,
1383 enum unpack_trees_error_types error_type,
1384 struct unpack_trees_options *o)
c8193534
JH
1385{
1386 /*
0cf73755 1387 * we are about to extract "ce->name"; we would not want to lose
c8193534
JH
1388 * anything in the existing directory there.
1389 */
1390 int namelen;
7b9e3ce0 1391 int i;
c8193534
JH
1392 struct dir_struct d;
1393 char *pathbuf;
1394 int cnt = 0;
0cf73755
SV
1395 unsigned char sha1[20];
1396
7a51ed66 1397 if (S_ISGITLINK(ce->ce_mode) &&
0cf73755
SV
1398 resolve_gitlink_ref(ce->name, "HEAD", sha1) == 0) {
1399 /* If we are not going to update the submodule, then
1400 * we don't care.
1401 */
99d1a986 1402 if (!hashcmp(sha1, ce->oid.hash))
0cf73755 1403 return 0;
08402b04 1404 return verify_clean_submodule(ce, error_type, o);
0cf73755 1405 }
c8193534
JH
1406
1407 /*
1408 * First let's make sure we do not have a local modification
1409 * in that directory.
1410 */
68c4f6a5 1411 namelen = ce_namelen(ce);
da165f47
JH
1412 for (i = locate_in_src_index(ce, o);
1413 i < o->src_index->cache_nr;
1414 i++) {
837e5fe9
CB
1415 struct cache_entry *ce2 = o->src_index->cache[i];
1416 int len = ce_namelen(ce2);
c8193534 1417 if (len < namelen ||
837e5fe9
CB
1418 strncmp(ce->name, ce2->name, namelen) ||
1419 ce2->name[namelen] != '/')
c8193534
JH
1420 break;
1421 /*
da165f47
JH
1422 * ce2->name is an entry in the subdirectory to be
1423 * removed.
c8193534 1424 */
837e5fe9
CB
1425 if (!ce_stage(ce2)) {
1426 if (verify_uptodate(ce2, o))
203a2fe1 1427 return -1;
837e5fe9 1428 add_entry(o, ce2, CE_REMOVE, 0);
da165f47 1429 mark_ce_used(ce2, o);
c8193534
JH
1430 }
1431 cnt++;
1432 }
1433
1434 /*
1435 * Then we need to make sure that we do not lose a locally
1436 * present file that is not ignored.
1437 */
75faa45a 1438 pathbuf = xstrfmt("%.*s/", namelen, ce->name);
c8193534
JH
1439
1440 memset(&d, 0, sizeof(d));
1441 if (o->dir)
1442 d.exclude_per_dir = o->dir->exclude_per_dir;
dba2e203 1443 i = read_directory(&d, pathbuf, namelen+1, NULL);
c8193534 1444 if (i)
17e46426 1445 return o->gently ? -1 :
e6c111b4 1446 add_rejected_path(o, ERROR_NOT_UPTODATE_DIR, ce->name);
c8193534
JH
1447 free(pathbuf);
1448 return cnt;
1449}
1450
32260ad5
LT
1451/*
1452 * This gets called when there was no index entry for the tree entry 'dst',
1453 * but we found a file in the working tree that 'lstat()' said was fine,
1454 * and we're on a case-insensitive filesystem.
1455 *
1456 * See if we can find a case-insensitive match in the index that also
1457 * matches the stat information, and assume it's that other file!
1458 */
a9307f5a 1459static int icase_exists(struct unpack_trees_options *o, const char *name, int len, struct stat *st)
32260ad5 1460{
9c5e6c80 1461 const struct cache_entry *src;
32260ad5 1462
ebbd7439 1463 src = index_file_exists(o->src_index, name, len, 1);
56cac48c 1464 return src && !ie_match_stat(o->src_index, src, st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);
32260ad5
LT
1465}
1466
a9307f5a 1467static int check_ok_to_remove(const char *name, int len, int dtype,
eb9ae4b5 1468 const struct cache_entry *ce, struct stat *st,
a9307f5a
CB
1469 enum unpack_trees_error_types error_type,
1470 struct unpack_trees_options *o)
1471{
9c5e6c80 1472 const struct cache_entry *result;
a9307f5a
CB
1473
1474 /*
1475 * It may be that the 'lstat()' succeeded even though
1476 * target 'ce' was absent, because there is an old
1477 * entry that is different only in case..
1478 *
1479 * Ignore that lstat() if it matches.
1480 */
1481 if (ignore_case && icase_exists(o, name, len, st))
1482 return 0;
1483
589570db 1484 if (o->dir &&
b07bc8c8 1485 is_excluded(o->dir, name, &dtype))
a9307f5a
CB
1486 /*
1487 * ce->name is explicitly excluded, so it is Ok to
1488 * overwrite it.
1489 */
1490 return 0;
1491 if (S_ISDIR(st->st_mode)) {
1492 /*
1493 * We are checking out path "foo" and
1494 * found "foo/." in the working tree.
1495 * This is tricky -- if we have modified
1496 * files that are in "foo/" we would lose
1497 * them.
1498 */
1499 if (verify_clean_subdirectory(ce, error_type, o) < 0)
1500 return -1;
1501 return 0;
1502 }
1503
1504 /*
1505 * The previous round may already have decided to
1506 * delete this path, which is in a subdirectory that
1507 * is being replaced with a blob.
1508 */
ebbd7439 1509 result = index_file_exists(&o->result, name, len, 0);
a9307f5a
CB
1510 if (result) {
1511 if (result->ce_flags & CE_REMOVE)
1512 return 0;
1513 }
1514
1515 return o->gently ? -1 :
1516 add_rejected_path(o, error_type, name);
1517}
1518
076b0adc
JS
1519/*
1520 * We do not want to remove or overwrite a working tree file that
f8a9d428 1521 * is not tracked, unless it is ignored.
076b0adc 1522 */
eb9ae4b5
RS
1523static int verify_absent_1(const struct cache_entry *ce,
1524 enum unpack_trees_error_types error_type,
1525 struct unpack_trees_options *o)
076b0adc 1526{
f66caaf9 1527 int len;
076b0adc
JS
1528 struct stat st;
1529
1530 if (o->index_only || o->reset || !o->update)
203a2fe1 1531 return 0;
c8193534 1532
f66caaf9
CB
1533 len = check_leading_path(ce->name, ce_namelen(ce));
1534 if (!len)
203a2fe1 1535 return 0;
f66caaf9 1536 else if (len > 0) {
f514ef97
JK
1537 char *path;
1538 int ret;
1539
1540 path = xmemdupz(ce->name, len);
a93e5301 1541 if (lstat(path, &st))
43c728e2 1542 ret = error_errno("cannot stat '%s'", path);
f514ef97
JK
1543 else
1544 ret = check_ok_to_remove(path, len, DT_UNKNOWN, NULL,
1545 &st, error_type, o);
1546 free(path);
1547 return ret;
92fda79e
JN
1548 } else if (lstat(ce->name, &st)) {
1549 if (errno != ENOENT)
43c728e2 1550 return error_errno("cannot stat '%s'", ce->name);
92fda79e
JN
1551 return 0;
1552 } else {
a9307f5a 1553 return check_ok_to_remove(ce->name, ce_namelen(ce),
92fda79e
JN
1554 ce_to_dtype(ce), ce, &st,
1555 error_type, o);
1556 }
076b0adc 1557}
a9307f5a 1558
eb9ae4b5 1559static int verify_absent(const struct cache_entry *ce,
08402b04 1560 enum unpack_trees_error_types error_type,
35a5aa79
NTND
1561 struct unpack_trees_options *o)
1562{
2431afbf 1563 if (!o->skip_sparse_checkout && (ce->ce_flags & CE_NEW_SKIP_WORKTREE))
f1f523ea 1564 return 0;
08402b04 1565 return verify_absent_1(ce, error_type, o);
35a5aa79 1566}
076b0adc 1567
eb9ae4b5
RS
1568static int verify_absent_sparse(const struct cache_entry *ce,
1569 enum unpack_trees_error_types error_type,
1570 struct unpack_trees_options *o)
e800ec9d 1571{
08402b04
MM
1572 enum unpack_trees_error_types orphaned_error = error_type;
1573 if (orphaned_error == ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN)
1574 orphaned_error = ERROR_WOULD_LOSE_ORPHANED_OVERWRITTEN;
1575
1576 return verify_absent_1(ce, orphaned_error, o);
e800ec9d 1577}
076b0adc 1578
f2fa3542 1579static int merged_entry(const struct cache_entry *ce,
eb9ae4b5 1580 const struct cache_entry *old,
f2fa3542 1581 struct unpack_trees_options *o)
076b0adc 1582{
7f8ab8dc 1583 int update = CE_UPDATE;
f2fa3542 1584 struct cache_entry *merge = dup_entry(ce);
7f8ab8dc 1585
e11d7b59 1586 if (!old) {
2431afbf
NTND
1587 /*
1588 * New index entries. In sparse checkout, the following
1589 * verify_absent() will be delayed until after
1590 * traverse_trees() finishes in unpack_trees(), then:
1591 *
1592 * - CE_NEW_SKIP_WORKTREE will be computed correctly
1593 * - verify_absent() be called again, this time with
1594 * correct CE_NEW_SKIP_WORKTREE
1595 *
1596 * verify_absent() call here does nothing in sparse
1597 * checkout (i.e. o->skip_sparse_checkout == 0)
1598 */
1599 update |= CE_ADDED;
1600 merge->ce_flags |= CE_NEW_SKIP_WORKTREE;
1601
f2fa3542
RS
1602 if (verify_absent(merge,
1603 ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN, o)) {
1604 free(merge);
e11d7b59 1605 return -1;
f2fa3542 1606 }
e11d7b59
JH
1607 invalidate_ce_path(merge, o);
1608 } else if (!(old->ce_flags & CE_CONFLICTED)) {
076b0adc
JS
1609 /*
1610 * See if we can re-use the old CE directly?
1611 * That way we get the uptodate stat info.
1612 *
7f8ab8dc
LT
1613 * This also removes the UPDATE flag on a match; otherwise
1614 * we will end up overwriting local changes in the work tree.
076b0adc
JS
1615 */
1616 if (same(old, merge)) {
eb7a2f1d 1617 copy_cache_entry(merge, old);
7f8ab8dc 1618 update = 0;
076b0adc 1619 } else {
f2fa3542
RS
1620 if (verify_uptodate(old, o)) {
1621 free(merge);
203a2fe1 1622 return -1;
f2fa3542 1623 }
2431afbf
NTND
1624 /* Migrate old flags over */
1625 update |= old->ce_flags & (CE_SKIP_WORKTREE | CE_NEW_SKIP_WORKTREE);
bc052d7f 1626 invalidate_ce_path(old, o);
076b0adc 1627 }
e11d7b59
JH
1628 } else {
1629 /*
1630 * Previously unmerged entry left as an existence
1631 * marker by read_index_unmerged();
1632 */
1633 invalidate_ce_path(old, o);
076b0adc
JS
1634 }
1635
f2fa3542 1636 do_add_entry(o, merge, update, CE_STAGEMASK);
076b0adc
JS
1637 return 1;
1638}
1639
eb9ae4b5
RS
1640static int deleted_entry(const struct cache_entry *ce,
1641 const struct cache_entry *old,
1642 struct unpack_trees_options *o)
076b0adc 1643{
34110cd4
LT
1644 /* Did it exist in the index? */
1645 if (!old) {
08402b04 1646 if (verify_absent(ce, ERROR_WOULD_LOSE_UNTRACKED_REMOVED, o))
203a2fe1 1647 return -1;
34110cd4
LT
1648 return 0;
1649 }
e11d7b59 1650 if (!(old->ce_flags & CE_CONFLICTED) && verify_uptodate(old, o))
34110cd4
LT
1651 return -1;
1652 add_entry(o, ce, CE_REMOVE, 0);
bc052d7f 1653 invalidate_ce_path(ce, o);
076b0adc
JS
1654 return 1;
1655}
1656
eb9ae4b5
RS
1657static int keep_entry(const struct cache_entry *ce,
1658 struct unpack_trees_options *o)
076b0adc 1659{
34110cd4 1660 add_entry(o, ce, 0, 0);
076b0adc
JS
1661 return 1;
1662}
1663
1664#if DBRT_DEBUG
1665static void show_stage_entry(FILE *o,
1666 const char *label, const struct cache_entry *ce)
1667{
1668 if (!ce)
1669 fprintf(o, "%s (missing)\n", label);
1670 else
1671 fprintf(o, "%s%06o %s %d\t%s\n",
1672 label,
7a51ed66 1673 ce->ce_mode,
99d1a986 1674 oid_to_hex(&ce->oid),
076b0adc
JS
1675 ce_stage(ce),
1676 ce->name);
1677}
1678#endif
1679
5828e835
RS
1680int threeway_merge(const struct cache_entry * const *stages,
1681 struct unpack_trees_options *o)
076b0adc 1682{
eb9ae4b5
RS
1683 const struct cache_entry *index;
1684 const struct cache_entry *head;
1685 const struct cache_entry *remote = stages[o->head_idx + 1];
076b0adc
JS
1686 int count;
1687 int head_match = 0;
1688 int remote_match = 0;
076b0adc
JS
1689
1690 int df_conflict_head = 0;
1691 int df_conflict_remote = 0;
1692
1693 int any_anc_missing = 0;
1694 int no_anc_exists = 1;
1695 int i;
1696
1697 for (i = 1; i < o->head_idx; i++) {
4c4caafc 1698 if (!stages[i] || stages[i] == o->df_conflict_entry)
076b0adc 1699 any_anc_missing = 1;
4c4caafc 1700 else
076b0adc 1701 no_anc_exists = 0;
076b0adc
JS
1702 }
1703
1704 index = stages[0];
1705 head = stages[o->head_idx];
1706
1707 if (head == o->df_conflict_entry) {
1708 df_conflict_head = 1;
1709 head = NULL;
1710 }
1711
1712 if (remote == o->df_conflict_entry) {
1713 df_conflict_remote = 1;
1714 remote = NULL;
1715 }
1716
cee2d6ae
JH
1717 /*
1718 * First, if there's a #16 situation, note that to prevent #13
076b0adc
JS
1719 * and #14.
1720 */
1721 if (!same(remote, head)) {
1722 for (i = 1; i < o->head_idx; i++) {
1723 if (same(stages[i], head)) {
1724 head_match = i;
1725 }
1726 if (same(stages[i], remote)) {
1727 remote_match = i;
1728 }
1729 }
1730 }
1731
cee2d6ae
JH
1732 /*
1733 * We start with cases where the index is allowed to match
076b0adc
JS
1734 * something other than the head: #14(ALT) and #2ALT, where it
1735 * is permitted to match the result instead.
1736 */
1737 /* #14, #14ALT, #2ALT */
1738 if (remote && !df_conflict_head && head_match && !remote_match) {
1739 if (index && !same(index, remote) && !same(index, head))
6a143aa2 1740 return reject_merge(index, o);
076b0adc
JS
1741 return merged_entry(remote, index, o);
1742 }
1743 /*
1744 * If we have an entry in the index cache, then we want to
1745 * make sure that it matches head.
1746 */
4e7c4571 1747 if (index && !same(index, head))
6a143aa2 1748 return reject_merge(index, o);
076b0adc
JS
1749
1750 if (head) {
1751 /* #5ALT, #15 */
1752 if (same(head, remote))
1753 return merged_entry(head, index, o);
1754 /* #13, #3ALT */
1755 if (!df_conflict_remote && remote_match && !head_match)
1756 return merged_entry(head, index, o);
1757 }
1758
1759 /* #1 */
34110cd4 1760 if (!head && !remote && any_anc_missing)
076b0adc
JS
1761 return 0;
1762
cee2d6ae
JH
1763 /*
1764 * Under the "aggressive" rule, we resolve mostly trivial
076b0adc
JS
1765 * cases that we historically had git-merge-one-file resolve.
1766 */
1767 if (o->aggressive) {
cee2d6ae
JH
1768 int head_deleted = !head;
1769 int remote_deleted = !remote;
eb9ae4b5 1770 const struct cache_entry *ce = NULL;
4c4caafc
JH
1771
1772 if (index)
0cf73755 1773 ce = index;
4c4caafc 1774 else if (head)
0cf73755 1775 ce = head;
4c4caafc 1776 else if (remote)
0cf73755 1777 ce = remote;
4c4caafc
JH
1778 else {
1779 for (i = 1; i < o->head_idx; i++) {
1780 if (stages[i] && stages[i] != o->df_conflict_entry) {
0cf73755 1781 ce = stages[i];
4c4caafc
JH
1782 break;
1783 }
1784 }
1785 }
1786
076b0adc
JS
1787 /*
1788 * Deleted in both.
1789 * Deleted in one and unchanged in the other.
1790 */
1791 if ((head_deleted && remote_deleted) ||
1792 (head_deleted && remote && remote_match) ||
1793 (remote_deleted && head && head_match)) {
1794 if (index)
1795 return deleted_entry(index, index, o);
34110cd4 1796 if (ce && !head_deleted) {
08402b04 1797 if (verify_absent(ce, ERROR_WOULD_LOSE_UNTRACKED_REMOVED, o))
203a2fe1
DB
1798 return -1;
1799 }
076b0adc
JS
1800 return 0;
1801 }
1802 /*
1803 * Added in both, identically.
1804 */
1805 if (no_anc_exists && head && remote && same(head, remote))
1806 return merged_entry(head, index, o);
1807
1808 }
1809
1810 /* Below are "no merge" cases, which require that the index be
1811 * up-to-date to avoid the files getting overwritten with
1812 * conflict resolution files.
1813 */
1814 if (index) {
203a2fe1
DB
1815 if (verify_uptodate(index, o))
1816 return -1;
076b0adc 1817 }
076b0adc
JS
1818
1819 o->nontrivial_merge = 1;
1820
ea4b52a8 1821 /* #2, #3, #4, #6, #7, #9, #10, #11. */
076b0adc
JS
1822 count = 0;
1823 if (!head_match || !remote_match) {
1824 for (i = 1; i < o->head_idx; i++) {
4c4caafc 1825 if (stages[i] && stages[i] != o->df_conflict_entry) {
7f7932ab 1826 keep_entry(stages[i], o);
076b0adc
JS
1827 count++;
1828 break;
1829 }
1830 }
1831 }
1832#if DBRT_DEBUG
1833 else {
1834 fprintf(stderr, "read-tree: warning #16 detected\n");
1835 show_stage_entry(stderr, "head ", stages[head_match]);
1836 show_stage_entry(stderr, "remote ", stages[remote_match]);
1837 }
1838#endif
7f7932ab
JH
1839 if (head) { count += keep_entry(head, o); }
1840 if (remote) { count += keep_entry(remote, o); }
076b0adc
JS
1841 return count;
1842}
1843
1844/*
1845 * Two-way merge.
1846 *
1847 * The rule is to "carry forward" what is in the index without losing
a75d7b54 1848 * information across a "fast-forward", favoring a successful merge
076b0adc
JS
1849 * over a merge failure when it makes sense. For details of the
1850 * "carry forward" rule, please see <Documentation/git-read-tree.txt>.
1851 *
1852 */
5828e835
RS
1853int twoway_merge(const struct cache_entry * const *src,
1854 struct unpack_trees_options *o)
076b0adc 1855{
eb9ae4b5
RS
1856 const struct cache_entry *current = src[0];
1857 const struct cache_entry *oldtree = src[1];
1858 const struct cache_entry *newtree = src[2];
076b0adc
JS
1859
1860 if (o->merge_size != 2)
1861 return error("Cannot do a twoway merge of %d trees",
1862 o->merge_size);
1863
b8ba1535
JH
1864 if (oldtree == o->df_conflict_entry)
1865 oldtree = NULL;
1866 if (newtree == o->df_conflict_entry)
1867 newtree = NULL;
1868
076b0adc 1869 if (current) {
b018ff60
JK
1870 if (current->ce_flags & CE_CONFLICTED) {
1871 if (same(oldtree, newtree) || o->reset) {
1872 if (!newtree)
1873 return deleted_entry(current, current, o);
1874 else
1875 return merged_entry(newtree, current, o);
1876 }
6a143aa2 1877 return reject_merge(current, o);
6c1db1b3 1878 } else if ((!oldtree && !newtree) || /* 4 and 5 */
b018ff60
JK
1879 (!oldtree && newtree &&
1880 same(current, newtree)) || /* 6 and 7 */
1881 (oldtree && newtree &&
1882 same(oldtree, newtree)) || /* 14 and 15 */
1883 (oldtree && newtree &&
1884 !same(oldtree, newtree) && /* 18 and 19 */
1885 same(current, newtree))) {
7f7932ab 1886 return keep_entry(current, o);
6c1db1b3 1887 } else if (oldtree && !newtree && same(current, oldtree)) {
076b0adc
JS
1888 /* 10 or 11 */
1889 return deleted_entry(oldtree, current, o);
6c1db1b3 1890 } else if (oldtree && newtree &&
076b0adc
JS
1891 same(current, oldtree) && !same(current, newtree)) {
1892 /* 20 or 21 */
1893 return merged_entry(newtree, current, o);
6c1db1b3 1894 } else
6a143aa2 1895 return reject_merge(current, o);
076b0adc 1896 }
55218834
JH
1897 else if (newtree) {
1898 if (oldtree && !o->initial_checkout) {
1899 /*
1900 * deletion of the path was staged;
1901 */
1902 if (same(oldtree, newtree))
1903 return 1;
1904 return reject_merge(oldtree, o);
1905 }
076b0adc 1906 return merged_entry(newtree, current, o);
55218834 1907 }
d699676d 1908 return deleted_entry(oldtree, current, o);
076b0adc
JS
1909}
1910
1911/*
1912 * Bind merge.
1913 *
1914 * Keep the index entries at stage0, collapse stage1 but make sure
1915 * stage0 does not have anything there.
1916 */
5828e835
RS
1917int bind_merge(const struct cache_entry * const *src,
1918 struct unpack_trees_options *o)
076b0adc 1919{
eb9ae4b5
RS
1920 const struct cache_entry *old = src[0];
1921 const struct cache_entry *a = src[1];
076b0adc
JS
1922
1923 if (o->merge_size != 1)
82247e9b 1924 return error("Cannot do a bind merge of %d trees",
076b0adc
JS
1925 o->merge_size);
1926 if (a && old)
17e46426 1927 return o->gently ? -1 :
08353ebb 1928 error(ERRORMSG(o, ERROR_BIND_OVERLAP), a->name, old->name);
076b0adc 1929 if (!a)
7f7932ab 1930 return keep_entry(old, o);
076b0adc
JS
1931 else
1932 return merged_entry(a, NULL, o);
1933}
1934
1935/*
1936 * One-way merge.
1937 *
1938 * The rule is:
1939 * - take the stat information from stage0, take the data from stage1
1940 */
5828e835
RS
1941int oneway_merge(const struct cache_entry * const *src,
1942 struct unpack_trees_options *o)
076b0adc 1943{
eb9ae4b5
RS
1944 const struct cache_entry *old = src[0];
1945 const struct cache_entry *a = src[1];
076b0adc
JS
1946
1947 if (o->merge_size != 1)
1948 return error("Cannot do a oneway merge of %d trees",
1949 o->merge_size);
1950
78d3b06e 1951 if (!a || a == o->df_conflict_entry)
076b0adc 1952 return deleted_entry(old, old, o);
34110cd4 1953
076b0adc 1954 if (old && same(old, a)) {
34110cd4 1955 int update = 0;
686b2de0 1956 if (o->reset && o->update && !ce_uptodate(old) && !ce_skip_worktree(old)) {
076b0adc
JS
1957 struct stat st;
1958 if (lstat(old->name, &st) ||
56cac48c 1959 ie_match_stat(o->src_index, old, &st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE))
34110cd4 1960 update |= CE_UPDATE;
076b0adc 1961 }
34110cd4
LT
1962 add_entry(o, old, update, 0);
1963 return 0;
076b0adc
JS
1964 }
1965 return merged_entry(a, old, o);
1966}