]> git.ipfire.org Git - thirdparty/git.git/blame - unpack-trees.c
t1092: document bad 'git checkout' behavior
[thirdparty/git.git] / unpack-trees.c
CommitLineData
16da134b 1#include "cache.h"
dbbcd44f 2#include "strvec.h"
33028713 3#include "repository.h"
b2141fc1 4#include "config.h"
f8a9d428 5#include "dir.h"
16da134b
JS
6#include "tree.h"
7#include "tree-walk.h"
076b0adc 8#include "cache-tree.h"
16da134b 9#include "unpack-trees.h"
96a02f8f 10#include "progress.h"
0cf73755 11#include "refs.h"
06f33c17 12#include "attr.h"
5fc2fc8f 13#include "split-index.h"
a7bc845a
SB
14#include "submodule.h"
15#include "submodule-config.h"
883e248b 16#include "fsmonitor.h"
cbd53a21 17#include "object-store.h"
b14ed5ad 18#include "promisor-remote.h"
d052cc03 19#include "entry.h"
04155bda 20#include "parallel-checkout.h"
16da134b 21
8ccba008
JH
22/*
23 * Error messages expected by scripts out of plumbing commands such as
24 * read-tree. Non-scripted Porcelain is not required to use these messages
25 * and in fact are encouraged to reword them to better suit their particular
23cbf11b 26 * situation better. See how "git checkout" and "git merge" replaces
dc1166e6 27 * them using setup_unpack_trees_porcelain(), for example.
8ccba008 28 */
6271d77c 29static const char *unpack_plumbing_errors[NB_UNPACK_TREES_WARNING_TYPES] = {
08353ebb 30 /* ERROR_WOULD_OVERWRITE */
8ccba008
JH
31 "Entry '%s' would be overwritten by merge. Cannot merge.",
32
08353ebb 33 /* ERROR_NOT_UPTODATE_FILE */
8ccba008
JH
34 "Entry '%s' not uptodate. Cannot merge.",
35
08353ebb 36 /* ERROR_NOT_UPTODATE_DIR */
8ccba008
JH
37 "Updating '%s' would lose untracked files in it",
38
08402b04
MM
39 /* ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN */
40 "Untracked working tree file '%s' would be overwritten by merge.",
8ccba008 41
08402b04
MM
42 /* ERROR_WOULD_LOSE_UNTRACKED_REMOVED */
43 "Untracked working tree file '%s' would be removed by merge.",
8ccba008 44
08353ebb 45 /* ERROR_BIND_OVERLAP */
8ccba008 46 "Entry '%s' overlaps with '%s'. Cannot bind.",
e800ec9d 47
cd002c15
EN
48 /* ERROR_WOULD_LOSE_SUBMODULE */
49 "Submodule '%s' cannot checkout new HEAD.",
e800ec9d 50
6271d77c
EN
51 /* NB_UNPACK_TREES_ERROR_TYPES; just a meta value */
52 "",
08402b04 53
1ac83f42 54 /* WARNING_SPARSE_NOT_UPTODATE_FILE */
22ab0b37 55 "Path '%s' not uptodate; will not remove from working tree.",
a7bc845a 56
ebb568b9
EN
57 /* WARNING_SPARSE_UNMERGED_FILE */
58 "Path '%s' unmerged; will not remove from working tree.",
59
1ac83f42 60 /* WARNING_SPARSE_ORPHANED_NOT_OVERWRITTEN */
22ab0b37 61 "Path '%s' already present; will not overwrite with sparse update.",
8ccba008
JH
62};
63
08353ebb
MM
64#define ERRORMSG(o,type) \
65 ( ((o) && (o)->msgs[(type)]) \
66 ? ((o)->msgs[(type)]) \
67 : (unpack_plumbing_errors[(type)]) )
8ccba008 68
3d415425
SB
69static const char *super_prefixed(const char *path)
70{
71 /*
72 * It is necessary and sufficient to have two static buffers
73 * here, as the return value of this function is fed to
74 * error() using the unpack_*_errors[] templates we see above.
75 */
76 static struct strbuf buf[2] = {STRBUF_INIT, STRBUF_INIT};
77 static int super_prefix_len = -1;
78 static unsigned idx = ARRAY_SIZE(buf) - 1;
79
80 if (super_prefix_len < 0) {
81 const char *super_prefix = get_super_prefix();
82 if (!super_prefix) {
83 super_prefix_len = 0;
84 } else {
85 int i;
86 for (i = 0; i < ARRAY_SIZE(buf); i++)
87 strbuf_addstr(&buf[i], super_prefix);
88 super_prefix_len = buf[0].len;
89 }
90 }
91
92 if (!super_prefix_len)
93 return path;
94
95 if (++idx >= ARRAY_SIZE(buf))
96 idx = 0;
97
98 strbuf_setlen(&buf[idx], super_prefix_len);
99 strbuf_addstr(&buf[idx], path);
100
101 return buf[idx].buf;
102}
103
e294030f
MM
104void setup_unpack_trees_porcelain(struct unpack_trees_options *opts,
105 const char *cmd)
dc1166e6 106{
7980872d 107 int i;
e294030f 108 const char **msgs = opts->msgs;
dc1166e6 109 const char *msg;
fa3f60b7 110
c972bf4c 111 strvec_init(&opts->msgs_to_free);
1c41d280 112
2e3926b9
VA
113 if (!strcmp(cmd, "checkout"))
114 msg = advice_commit_before_merge
115 ? _("Your local changes to the following files would be overwritten by checkout:\n%%s"
c2691e2a 116 "Please commit your changes or stash them before you switch branches.")
2e3926b9
VA
117 : _("Your local changes to the following files would be overwritten by checkout:\n%%s");
118 else if (!strcmp(cmd, "merge"))
119 msg = advice_commit_before_merge
120 ? _("Your local changes to the following files would be overwritten by merge:\n%%s"
c2691e2a 121 "Please commit your changes or stash them before you merge.")
2e3926b9 122 : _("Your local changes to the following files would be overwritten by merge:\n%%s");
dc1166e6 123 else
2e3926b9
VA
124 msg = advice_commit_before_merge
125 ? _("Your local changes to the following files would be overwritten by %s:\n%%s"
c2691e2a 126 "Please commit your changes or stash them before you %s.")
2e3926b9 127 : _("Your local changes to the following files would be overwritten by %s:\n%%s");
fa3f60b7 128 msgs[ERROR_WOULD_OVERWRITE] = msgs[ERROR_NOT_UPTODATE_FILE] =
c972bf4c 129 strvec_pushf(&opts->msgs_to_free, msg, cmd, cmd);
dc1166e6
MM
130
131 msgs[ERROR_NOT_UPTODATE_DIR] =
584f99c8 132 _("Updating the following directories would lose untracked files in them:\n%s");
dc1166e6 133
2e3926b9
VA
134 if (!strcmp(cmd, "checkout"))
135 msg = advice_commit_before_merge
136 ? _("The following untracked working tree files would be removed by checkout:\n%%s"
c2691e2a 137 "Please move or remove them before you switch branches.")
2e3926b9
VA
138 : _("The following untracked working tree files would be removed by checkout:\n%%s");
139 else if (!strcmp(cmd, "merge"))
140 msg = advice_commit_before_merge
141 ? _("The following untracked working tree files would be removed by merge:\n%%s"
c2691e2a 142 "Please move or remove them before you merge.")
2e3926b9 143 : _("The following untracked working tree files would be removed by merge:\n%%s");
dc1166e6 144 else
2e3926b9
VA
145 msg = advice_commit_before_merge
146 ? _("The following untracked working tree files would be removed by %s:\n%%s"
c2691e2a 147 "Please move or remove them before you %s.")
2e3926b9 148 : _("The following untracked working tree files would be removed by %s:\n%%s");
1c41d280 149 msgs[ERROR_WOULD_LOSE_UNTRACKED_REMOVED] =
c972bf4c 150 strvec_pushf(&opts->msgs_to_free, msg, cmd, cmd);
2e3926b9
VA
151
152 if (!strcmp(cmd, "checkout"))
153 msg = advice_commit_before_merge
154 ? _("The following untracked working tree files would be overwritten by checkout:\n%%s"
c2691e2a 155 "Please move or remove them before you switch branches.")
2e3926b9
VA
156 : _("The following untracked working tree files would be overwritten by checkout:\n%%s");
157 else if (!strcmp(cmd, "merge"))
158 msg = advice_commit_before_merge
159 ? _("The following untracked working tree files would be overwritten by merge:\n%%s"
c2691e2a 160 "Please move or remove them before you merge.")
2e3926b9
VA
161 : _("The following untracked working tree files would be overwritten by merge:\n%%s");
162 else
163 msg = advice_commit_before_merge
164 ? _("The following untracked working tree files would be overwritten by %s:\n%%s"
c2691e2a 165 "Please move or remove them before you %s.")
2e3926b9 166 : _("The following untracked working tree files would be overwritten by %s:\n%%s");
1c41d280 167 msgs[ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN] =
c972bf4c 168 strvec_pushf(&opts->msgs_to_free, msg, cmd, cmd);
dc1166e6
MM
169
170 /*
171 * Special case: ERROR_BIND_OVERLAP refers to a pair of paths, we
172 * cannot easily display it as a list.
173 */
ed47fdf7 174 msgs[ERROR_BIND_OVERLAP] = _("Entry '%s' overlaps with '%s'. Cannot bind.");
dc1166e6 175
a7bc845a 176 msgs[ERROR_WOULD_LOSE_SUBMODULE] =
6362ed0b 177 _("Cannot update submodule:\n%s");
5e65ee35 178
1ac83f42 179 msgs[WARNING_SPARSE_NOT_UPTODATE_FILE] =
22ab0b37 180 _("The following paths are not up to date and were left despite sparse patterns:\n%s");
ebb568b9
EN
181 msgs[WARNING_SPARSE_UNMERGED_FILE] =
182 _("The following paths are unmerged and were left despite sparse patterns:\n%s");
1ac83f42 183 msgs[WARNING_SPARSE_ORPHANED_NOT_OVERWRITTEN] =
22ab0b37 184 _("The following paths were already present and thus not updated despite sparse patterns:\n%s");
5e65ee35
MM
185
186 opts->show_all_errors = 1;
7980872d
CB
187 /* rejected paths may not have a static buffer */
188 for (i = 0; i < ARRAY_SIZE(opts->unpack_rejects); i++)
189 opts->unpack_rejects[i].strdup_strings = 1;
dc1166e6
MM
190}
191
1c41d280
192void clear_unpack_trees_porcelain(struct unpack_trees_options *opts)
193{
c972bf4c 194 strvec_clear(&opts->msgs_to_free);
1c41d280
195 memset(opts->msgs, 0, sizeof(opts->msgs));
196}
197
46169180 198static int do_add_entry(struct unpack_trees_options *o, struct cache_entry *ce,
6ff264ee 199 unsigned int set, unsigned int clear)
b48d5a05 200{
419a597f 201 clear |= CE_HASHED;
34110cd4 202
700e66d6
NTND
203 if (set & CE_REMOVE)
204 set |= CE_WT_REMOVE;
205
6ff264ee 206 ce->ce_flags = (ce->ce_flags & ~clear) | set;
46169180
JK
207 return add_index_entry(&o->result, ce,
208 ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE);
6ff264ee
RS
209}
210
a33bd4d3
RS
211static void add_entry(struct unpack_trees_options *o,
212 const struct cache_entry *ce,
213 unsigned int set, unsigned int clear)
214{
8e72d675 215 do_add_entry(o, dup_cache_entry(ce, &o->result), set, clear);
b48d5a05
LT
216}
217
e6c111b4
MM
218/*
219 * add error messages on path <path>
220 * corresponding to the type <e> with the message <msg>
221 * indicating if it should be display in porcelain or not
222 */
223static int add_rejected_path(struct unpack_trees_options *o,
224 enum unpack_trees_error_types e,
225 const char *path)
226{
b165fac8 227 if (o->quiet)
191e9d2c
NTND
228 return -1;
229
e6c111b4 230 if (!o->show_all_errors)
3d415425 231 return error(ERRORMSG(o, e), super_prefixed(path));
e6c111b4
MM
232
233 /*
234 * Otherwise, insert in a list for future display by
6271d77c 235 * display_(error|warning)_msgs()
e6c111b4 236 */
7980872d 237 string_list_append(&o->unpack_rejects[e], path);
e6c111b4
MM
238 return -1;
239}
240
e6c111b4
MM
241/*
242 * display all the error messages stored in a nice way
243 */
244static void display_error_msgs(struct unpack_trees_options *o)
245{
6271d77c
EN
246 int e;
247 unsigned error_displayed = 0;
e6c111b4 248 for (e = 0; e < NB_UNPACK_TREES_ERROR_TYPES; e++) {
7980872d 249 struct string_list *rejects = &o->unpack_rejects[e];
6271d77c 250
7980872d 251 if (rejects->nr > 0) {
6271d77c 252 int i;
e6c111b4 253 struct strbuf path = STRBUF_INIT;
6271d77c
EN
254
255 error_displayed = 1;
7980872d
CB
256 for (i = 0; i < rejects->nr; i++)
257 strbuf_addf(&path, "\t%s\n", rejects->items[i].string);
3d415425 258 error(ERRORMSG(o, e), super_prefixed(path.buf));
e6c111b4 259 strbuf_release(&path);
e6c111b4 260 }
7980872d 261 string_list_clear(rejects, 0);
e6c111b4 262 }
6271d77c 263 if (error_displayed)
ed47fdf7 264 fprintf(stderr, _("Aborting\n"));
e6c111b4
MM
265}
266
6271d77c
EN
267/*
268 * display all the warning messages stored in a nice way
269 */
270static void display_warning_msgs(struct unpack_trees_options *o)
271{
272 int e;
273 unsigned warning_displayed = 0;
274 for (e = NB_UNPACK_TREES_ERROR_TYPES + 1;
275 e < NB_UNPACK_TREES_WARNING_TYPES; e++) {
276 struct string_list *rejects = &o->unpack_rejects[e];
277
278 if (rejects->nr > 0) {
279 int i;
280 struct strbuf path = STRBUF_INIT;
281
282 warning_displayed = 1;
283 for (i = 0; i < rejects->nr; i++)
284 strbuf_addf(&path, "\t%s\n", rejects->items[i].string);
285 warning(ERRORMSG(o, e), super_prefixed(path.buf));
286 strbuf_release(&path);
287 }
288 string_list_clear(rejects, 0);
289 }
290 if (warning_displayed)
291 fprintf(stderr, _("After fixing the above paths, you may want to run `git sparse-checkout reapply`.\n"));
292}
a7bc845a
SB
293static int check_submodule_move_head(const struct cache_entry *ce,
294 const char *old_id,
295 const char *new_id,
296 struct unpack_trees_options *o)
297{
cd279e2e 298 unsigned flags = SUBMODULE_MOVE_HEAD_DRY_RUN;
a7bc845a 299 const struct submodule *sub = submodule_from_ce(ce);
7463e2ec 300
a7bc845a
SB
301 if (!sub)
302 return 0;
303
cd279e2e
SB
304 if (o->reset)
305 flags |= SUBMODULE_MOVE_HEAD_FORCE;
306
7463e2ec 307 if (submodule_move_head(ce->name, old_id, new_id, flags))
191e9d2c 308 return add_rejected_path(o, ERROR_WOULD_LOSE_SUBMODULE, ce->name);
7463e2ec 309 return 0;
a7bc845a
SB
310}
311
33028713 312/*
15beaaa3 313 * Perform the loading of the repository's gitmodules file. This function is
33028713 314 * used by 'check_update()' to perform loading of the gitmodules file in two
15beaaa3 315 * different situations:
33028713
BW
316 * (1) before removing entries from the working tree if the gitmodules file has
317 * been marked for removal. This situation is specified by 'state' == NULL.
318 * (2) before checking out entries to the working tree if the gitmodules file
319 * has been marked for update. This situation is specified by 'state' != NULL.
320 */
321static void load_gitmodules_file(struct index_state *index,
322 struct checkout *state)
a7bc845a 323{
33028713
BW
324 int pos = index_name_pos(index, GITMODULES_FILE, strlen(GITMODULES_FILE));
325
326 if (pos >= 0) {
327 struct cache_entry *ce = index->cache[pos];
328 if (!state && ce->ce_flags & CE_WT_REMOVE) {
d7992421 329 repo_read_gitmodules(the_repository, 0);
33028713 330 } else if (state && (ce->ce_flags & CE_UPDATE)) {
f793b895 331 submodule_free(the_repository);
0f086e6d 332 checkout_entry(ce, state, NULL, NULL);
d7992421 333 repo_read_gitmodules(the_repository, 0);
a7bc845a
SB
334 }
335 }
336}
337
6c34239d
EN
338static struct progress *get_progress(struct unpack_trees_options *o,
339 struct index_state *index)
16da134b 340{
96a02f8f 341 unsigned cnt = 0, total = 0;
384f1a16
SB
342
343 if (!o->update || !o->verbose_update)
344 return NULL;
345
346 for (; cnt < index->cache_nr; cnt++) {
347 const struct cache_entry *ce = index->cache[cnt];
348 if (ce->ce_flags & (CE_UPDATE | CE_WT_REMOVE))
349 total++;
350 }
351
328c6cb8 352 return start_delayed_progress(_("Updating files"), total);
384f1a16
SB
353}
354
b878579a
NTND
355static void setup_collided_checkout_detection(struct checkout *state,
356 struct index_state *index)
357{
358 int i;
359
360 state->clone = 1;
361 for (i = 0; i < index->cache_nr; i++)
362 index->cache[i]->ce_flags &= ~CE_MATCHED;
363}
364
365static void report_collided_checkout(struct index_state *index)
366{
367 struct string_list list = STRING_LIST_INIT_NODUP;
368 int i;
369
370 for (i = 0; i < index->cache_nr; i++) {
371 struct cache_entry *ce = index->cache[i];
372
373 if (!(ce->ce_flags & CE_MATCHED))
374 continue;
375
376 string_list_append(&list, ce->name);
377 ce->ce_flags &= ~CE_MATCHED;
378 }
379
380 list.cmp = fspathcmp;
381 string_list_sort(&list);
382
383 if (list.nr) {
384 warning(_("the following paths have collided (e.g. case-sensitive paths\n"
385 "on a case-insensitive filesystem) and only one from the same\n"
386 "colliding group is in the working tree:\n"));
387
388 for (i = 0; i < list.nr; i++)
389 fprintf(stderr, " '%s'\n", list.items[i].string);
390 }
391
392 string_list_clear(&list, 0);
393}
394
b0a5a12a
EN
395static int check_updates(struct unpack_trees_options *o,
396 struct index_state *index)
384f1a16
SB
397{
398 unsigned cnt = 0;
30ac275b 399 int errs = 0;
07f967ad 400 struct progress *progress;
30ac275b 401 struct checkout state = CHECKOUT_INIT;
7531e4b6 402 int i, pc_workers, pc_threshold;
16da134b 403
0d1ed596 404 trace_performance_enter();
30ac275b
SB
405 state.force = 1;
406 state.quiet = 1;
407 state.refresh_cache = 1;
408 state.istate = index;
13e7ed6a 409 clone_checkout_metadata(&state.meta, &o->meta, NULL);
16da134b 410
26f924d5
EN
411 if (!o->update || o->dry_run) {
412 remove_marked_cache_entries(index, 0);
413 trace_performance_leave("check_updates");
414 return 0;
415 }
416
b878579a
NTND
417 if (o->clone)
418 setup_collided_checkout_detection(&state, index);
419
6c34239d 420 progress = get_progress(o, index);
16da134b 421
22539ec3
MT
422 /* Start with clean cache to avoid using any possibly outdated info. */
423 invalidate_lstat_cache();
424
26f924d5 425 git_attr_set_direction(GIT_ATTR_CHECKOUT);
33028713 426
26f924d5 427 if (should_update_submodules())
33028713
BW
428 load_gitmodules_file(index, NULL);
429
34110cd4 430 for (i = 0; i < index->cache_nr; i++) {
9c5e6c80 431 const struct cache_entry *ce = index->cache[i];
16da134b 432
e663db2f
NTND
433 if (ce->ce_flags & CE_WT_REMOVE) {
434 display_progress(progress, ++cnt);
26f924d5 435 unlink_entry(ce);
e663db2f 436 }
1fa6ead4 437 }
26f924d5 438
6fdc2057 439 remove_marked_cache_entries(index, 0);
78478927 440 remove_scheduled_dirs();
1fa6ead4 441
26f924d5 442 if (should_update_submodules())
33028713 443 load_gitmodules_file(index, &state);
a7bc845a 444
26f924d5 445 if (has_promisor_remote()) {
c0c578b3
JT
446 /*
447 * Prefetch the objects that are to be checked out in the loop
448 * below.
449 */
450 struct oid_array to_fetch = OID_ARRAY_INIT;
c0c578b3
JT
451 for (i = 0; i < index->cache_nr; i++) {
452 struct cache_entry *ce = index->cache[i];
0f4a4fb1
JT
453
454 if (!(ce->ce_flags & CE_UPDATE) ||
455 S_ISGITLINK(ce->ce_mode))
456 continue;
457 if (!oid_object_info_extended(the_repository, &ce->oid,
458 NULL,
459 OBJECT_INFO_FOR_PREFETCH))
460 continue;
461 oid_array_append(&to_fetch, &ce->oid);
c0c578b3 462 }
db7ed741
JT
463 promisor_remote_get_direct(the_repository,
464 to_fetch.oid, to_fetch.nr);
9f242a13 465 oid_array_clear(&to_fetch);
c0c578b3 466 }
04155bda 467
7531e4b6
MT
468 get_parallel_checkout_configs(&pc_workers, &pc_threshold);
469
04155bda 470 enable_delayed_checkout(&state);
7531e4b6
MT
471 if (pc_workers > 1)
472 init_parallel_checkout();
1fa6ead4
LT
473 for (i = 0; i < index->cache_nr; i++) {
474 struct cache_entry *ce = index->cache[i];
475
7a51ed66 476 if (ce->ce_flags & CE_UPDATE) {
1c4d6f46
MT
477 size_t last_pc_queue_size = pc_queue_size();
478
7d782416 479 if (ce->ce_flags & CE_WT_REMOVE)
033abf97 480 BUG("both update and delete flags are set on %s",
7d782416 481 ce->name);
7a51ed66 482 ce->ce_flags &= ~CE_UPDATE;
26f924d5 483 errs |= checkout_entry(ce, &state, NULL, NULL);
1c4d6f46
MT
484
485 if (last_pc_queue_size == pc_queue_size())
486 display_progress(progress, ++cnt);
16da134b
JS
487 }
488 }
7531e4b6 489 if (pc_workers > 1)
1c4d6f46
MT
490 errs |= run_parallel_checkout(&state, pc_workers, pc_threshold,
491 progress, &cnt);
4d4fcc54 492 stop_progress(&progress);
0f086e6d 493 errs |= finish_delayed_checkout(&state, NULL);
26f924d5 494 git_attr_set_direction(GIT_ATTR_CHECKIN);
b878579a
NTND
495
496 if (o->clone)
497 report_collided_checkout(index);
498
0d1ed596 499 trace_performance_leave("check_updates");
c4758d3c 500 return errs != 0;
16da134b
JS
501}
502
eb9ae4b5
RS
503static int verify_uptodate_sparse(const struct cache_entry *ce,
504 struct unpack_trees_options *o);
505static int verify_absent_sparse(const struct cache_entry *ce,
506 enum unpack_trees_error_types,
507 struct unpack_trees_options *o);
e800ec9d 508
a5c446f1
NTND
509static int apply_sparse_checkout(struct index_state *istate,
510 struct cache_entry *ce,
511 struct unpack_trees_options *o)
e800ec9d
NTND
512{
513 int was_skip_worktree = ce_skip_worktree(ce);
514
2431afbf 515 if (ce->ce_flags & CE_NEW_SKIP_WORKTREE)
e800ec9d
NTND
516 ce->ce_flags |= CE_SKIP_WORKTREE;
517 else
518 ce->ce_flags &= ~CE_SKIP_WORKTREE;
078a58e8
NTND
519 if (was_skip_worktree != ce_skip_worktree(ce)) {
520 ce->ce_flags |= CE_UPDATE_IN_BASE;
883e248b 521 mark_fsmonitor_invalid(istate, ce);
a5c446f1 522 istate->cache_changed |= CE_ENTRY_CHANGED;
078a58e8 523 }
e800ec9d
NTND
524
525 /*
eec3fc03
NTND
526 * if (!was_skip_worktree && !ce_skip_worktree()) {
527 * This is perfectly normal. Move on;
528 * }
e800ec9d 529 */
eec3fc03
NTND
530
531 /*
532 * Merge strategies may set CE_UPDATE|CE_REMOVE outside checkout
533 * area as a result of ce_skip_worktree() shortcuts in
700e66d6
NTND
534 * verify_absent() and verify_uptodate().
535 * Make sure they don't modify worktree if they are already
536 * outside checkout area
eec3fc03 537 */
700e66d6
NTND
538 if (was_skip_worktree && ce_skip_worktree(ce)) {
539 ce->ce_flags &= ~CE_UPDATE;
540
541 /*
542 * By default, when CE_REMOVE is on, CE_WT_REMOVE is also
543 * on to get that file removed from both index and worktree.
544 * If that file is already outside worktree area, don't
545 * bother remove it.
546 */
547 if (ce->ce_flags & CE_REMOVE)
548 ce->ce_flags &= ~CE_WT_REMOVE;
549 }
e800ec9d
NTND
550
551 if (!was_skip_worktree && ce_skip_worktree(ce)) {
552 /*
553 * If CE_UPDATE is set, verify_uptodate() must be called already
554 * also stat info may have lost after merged_entry() so calling
555 * verify_uptodate() again may fail
556 */
3cc7c504
EN
557 if (!(ce->ce_flags & CE_UPDATE) &&
558 verify_uptodate_sparse(ce, o)) {
559 ce->ce_flags &= ~CE_SKIP_WORKTREE;
e800ec9d 560 return -1;
3cc7c504 561 }
e800ec9d 562 ce->ce_flags |= CE_WT_REMOVE;
7d782416 563 ce->ce_flags &= ~CE_UPDATE;
e800ec9d
NTND
564 }
565 if (was_skip_worktree && !ce_skip_worktree(ce)) {
1ac83f42 566 if (verify_absent_sparse(ce, WARNING_SPARSE_ORPHANED_NOT_OVERWRITTEN, o))
e800ec9d
NTND
567 return -1;
568 ce->ce_flags |= CE_UPDATE;
569 }
570 return 0;
571}
572
ebb568b9
EN
573static int warn_conflicted_path(struct index_state *istate,
574 int i,
575 struct unpack_trees_options *o)
576{
577 char *conflicting_path = istate->cache[i]->name;
578 int count = 0;
579
580 add_rejected_path(o, WARNING_SPARSE_UNMERGED_FILE, conflicting_path);
581
0eeb3be4
DS
582 /* Find out how many higher stage entries are at same path */
583 while ((++count) + i < istate->cache_nr &&
584 !strcmp(conflicting_path, istate->cache[count + i]->name))
585 ; /* do nothing */
586
ebb568b9
EN
587 return count;
588}
589
5828e835
RS
590static inline int call_unpack_fn(const struct cache_entry * const *src,
591 struct unpack_trees_options *o)
01904572 592{
34110cd4
LT
593 int ret = o->fn(src, o);
594 if (ret > 0)
01904572 595 ret = 0;
01904572
LT
596 return ret;
597}
598
da165f47
JH
599static void mark_ce_used(struct cache_entry *ce, struct unpack_trees_options *o)
600{
601 ce->ce_flags |= CE_UNPACKED;
602
17a1bb57
DS
603 /*
604 * If this is a sparse directory, don't advance cache_bottom.
605 * That will be advanced later using the cache-tree data.
606 */
607 if (S_ISSPARSEDIR(ce->ce_mode))
608 return;
609
da165f47
JH
610 if (o->cache_bottom < o->src_index->cache_nr &&
611 o->src_index->cache[o->cache_bottom] == ce) {
612 int bottom = o->cache_bottom;
613 while (bottom < o->src_index->cache_nr &&
614 o->src_index->cache[bottom]->ce_flags & CE_UNPACKED)
615 bottom++;
616 o->cache_bottom = bottom;
617 }
618}
619
620static void mark_all_ce_unused(struct index_state *index)
621{
622 int i;
623 for (i = 0; i < index->cache_nr; i++)
2431afbf 624 index->cache[i]->ce_flags &= ~(CE_UNPACKED | CE_ADDED | CE_NEW_SKIP_WORKTREE);
da165f47
JH
625}
626
eb9ae4b5 627static int locate_in_src_index(const struct cache_entry *ce,
da165f47
JH
628 struct unpack_trees_options *o)
629{
630 struct index_state *index = o->src_index;
631 int len = ce_namelen(ce);
632 int pos = index_name_pos(index, ce->name, len);
633 if (pos < 0)
634 pos = -1 - pos;
635 return pos;
636}
637
638/*
639 * We call unpack_index_entry() with an unmerged cache entry
640 * only in diff-index, and it wants a single callback. Skip
641 * the other unmerged entry with the same name.
642 */
643static void mark_ce_used_same_name(struct cache_entry *ce,
644 struct unpack_trees_options *o)
645{
646 struct index_state *index = o->src_index;
647 int len = ce_namelen(ce);
648 int pos;
649
650 for (pos = locate_in_src_index(ce, o); pos < index->cache_nr; pos++) {
651 struct cache_entry *next = index->cache[pos];
652 if (len != ce_namelen(next) ||
653 memcmp(ce->name, next->name, len))
654 break;
655 mark_ce_used(next, o);
656 }
657}
658
659static struct cache_entry *next_cache_entry(struct unpack_trees_options *o)
660{
661 const struct index_state *index = o->src_index;
662 int pos = o->cache_bottom;
663
664 while (pos < index->cache_nr) {
665 struct cache_entry *ce = index->cache[pos];
666 if (!(ce->ce_flags & CE_UNPACKED))
667 return ce;
668 pos++;
669 }
670 return NULL;
671}
672
9c5e6c80 673static void add_same_unmerged(const struct cache_entry *ce,
da165f47
JH
674 struct unpack_trees_options *o)
675{
676 struct index_state *index = o->src_index;
677 int len = ce_namelen(ce);
678 int pos = index_name_pos(index, ce->name, len);
679
680 if (0 <= pos)
681 die("programming error in a caller of mark_ce_used_same_name");
682 for (pos = -pos - 1; pos < index->cache_nr; pos++) {
683 struct cache_entry *next = index->cache[pos];
684 if (len != ce_namelen(next) ||
685 memcmp(ce->name, next->name, len))
686 break;
687 add_entry(o, next, 0, 0);
688 mark_ce_used(next, o);
689 }
690}
691
692static int unpack_index_entry(struct cache_entry *ce,
693 struct unpack_trees_options *o)
01904572 694{
5828e835 695 const struct cache_entry *src[MAX_UNPACK_TREES + 1] = { NULL, };
da165f47 696 int ret;
34110cd4 697
66dbfd55
GV
698 src[0] = ce;
699
da165f47 700 mark_ce_used(ce, o);
01904572
LT
701 if (ce_stage(ce)) {
702 if (o->skip_unmerged) {
34110cd4
LT
703 add_entry(o, ce, 0, 0);
704 return 0;
01904572 705 }
01904572 706 }
da165f47
JH
707 ret = call_unpack_fn(src, o);
708 if (ce_stage(ce))
709 mark_ce_used_same_name(ce, o);
710 return ret;
01904572
LT
711}
712
90553847 713static int find_cache_pos(struct traverse_info *, const char *p, size_t len);
730f7284
JH
714
715static void restore_cache_bottom(struct traverse_info *info, int bottom)
716{
717 struct unpack_trees_options *o = info->data;
718
719 if (o->diff_index_cached)
720 return;
721 o->cache_bottom = bottom;
722}
723
724static int switch_cache_bottom(struct traverse_info *info)
725{
726 struct unpack_trees_options *o = info->data;
727 int ret, pos;
728
729 if (o->diff_index_cached)
730 return 0;
731 ret = o->cache_bottom;
90553847 732 pos = find_cache_pos(info->prev, info->name, info->namelen);
730f7284
JH
733
734 if (pos < -1)
735 o->cache_bottom = -2 - pos;
736 else if (pos < 0)
737 o->cache_bottom = o->src_index->cache_nr;
738 return ret;
01904572
LT
739}
740
d12a8cf0
JH
741static inline int are_same_oid(struct name_entry *name_j, struct name_entry *name_k)
742{
ea82b2a0 743 return !is_null_oid(&name_j->oid) && !is_null_oid(&name_k->oid) && oideq(&name_j->oid, &name_k->oid);
d12a8cf0
JH
744}
745
b4da3738
NTND
746static int all_trees_same_as_cache_tree(int n, unsigned long dirmask,
747 struct name_entry *names,
748 struct traverse_info *info)
749{
750 struct unpack_trees_options *o = info->data;
751 int i;
752
753 if (!o->merge || dirmask != ((1 << n) - 1))
754 return 0;
755
756 for (i = 1; i < n; i++)
757 if (!are_same_oid(names, names + i))
758 return 0;
759
760 return cache_tree_matches_traversal(o->src_index->cache_tree, names, info);
761}
762
763static int index_pos_by_traverse_info(struct name_entry *names,
764 struct traverse_info *info)
765{
766 struct unpack_trees_options *o = info->data;
c43ab062 767 struct strbuf name = STRBUF_INIT;
b4da3738
NTND
768 int pos;
769
c43ab062
JK
770 strbuf_make_traverse_path(&name, info, names->path, names->pathlen);
771 strbuf_addch(&name, '/');
772 pos = index_name_pos(o->src_index, name.buf, name.len);
13e13312
DS
773 if (pos >= 0) {
774 if (!o->src_index->sparse_index ||
775 !(o->src_index->cache[pos]->ce_flags & CE_SKIP_WORKTREE))
776 BUG("This is a directory and should not exist in index");
777 } else {
778 pos = -pos - 1;
779 }
573117df
ES
780 if (pos >= o->src_index->cache_nr ||
781 !starts_with(o->src_index->cache[pos]->name, name.buf) ||
c43ab062 782 (pos > 0 && starts_with(o->src_index->cache[pos-1]->name, name.buf)))
573117df
ES
783 BUG("pos %d doesn't point to the first entry of %s in index",
784 pos, name.buf);
c43ab062 785 strbuf_release(&name);
b4da3738
NTND
786 return pos;
787}
788
789/*
790 * Fast path if we detect that all trees are the same as cache-tree at this
5f4436a7
NTND
791 * path. We'll walk these trees in an iterative loop using cache-tree/index
792 * instead of ODB since we already know what these trees contain.
b4da3738
NTND
793 */
794static int traverse_by_cache_tree(int pos, int nr_entries, int nr_names,
b4da3738
NTND
795 struct traverse_info *info)
796{
797 struct cache_entry *src[MAX_UNPACK_TREES + 1] = { NULL, };
798 struct unpack_trees_options *o = info->data;
f1e11c65
NTND
799 struct cache_entry *tree_ce = NULL;
800 int ce_len = 0;
b4da3738
NTND
801 int i, d;
802
803 if (!o->merge)
804 BUG("We need cache-tree to do this optimization");
805
806 /*
bd6a3fd7 807 * Do what unpack_callback() and unpack_single_entry() normally
b4da3738
NTND
808 * do. But we walk all paths in an iterative loop instead.
809 *
810 * D/F conflicts and higher stage entries are not a concern
811 * because cache-tree would be invalidated and we would never
812 * get here in the first place.
813 */
814 for (i = 0; i < nr_entries; i++) {
f1e11c65 815 int new_ce_len, len, rc;
b4da3738
NTND
816
817 src[0] = o->src_index->cache[pos + i];
818
819 len = ce_namelen(src[0]);
f1e11c65
NTND
820 new_ce_len = cache_entry_size(len);
821
822 if (new_ce_len > ce_len) {
823 new_ce_len <<= 1;
824 tree_ce = xrealloc(tree_ce, new_ce_len);
825 memset(tree_ce, 0, new_ce_len);
826 ce_len = new_ce_len;
827
828 tree_ce->ce_flags = create_ce_flags(0);
829
830 for (d = 1; d <= nr_names; d++)
831 src[d] = tree_ce;
832 }
b4da3738
NTND
833
834 tree_ce->ce_mode = src[0]->ce_mode;
b4da3738
NTND
835 tree_ce->ce_namelen = len;
836 oidcpy(&tree_ce->oid, &src[0]->oid);
837 memcpy(tree_ce->name, src[0]->name, len + 1);
838
b4da3738 839 rc = call_unpack_fn((const struct cache_entry * const *)src, o);
f1e11c65
NTND
840 if (rc < 0) {
841 free(tree_ce);
b4da3738 842 return rc;
f1e11c65 843 }
b4da3738
NTND
844
845 mark_ce_used(src[0], o);
846 }
f1e11c65 847 free(tree_ce);
b4da3738
NTND
848 if (o->debug_unpack)
849 printf("Unpacked %d entries from %s to %s using cache-tree\n",
850 nr_entries,
851 o->src_index->cache[pos]->name,
852 o->src_index->cache[pos + nr_entries - 1]->name);
853 return 0;
854}
855
84563a62
JH
856static int traverse_trees_recursive(int n, unsigned long dirmask,
857 unsigned long df_conflicts,
858 struct name_entry *names,
859 struct traverse_info *info)
16da134b 860{
67022e02 861 struct unpack_trees_options *o = info->data;
730f7284 862 int i, ret, bottom;
d12a8cf0 863 int nr_buf = 0;
ca885a4f 864 struct tree_desc t[MAX_UNPACK_TREES];
1ce584b0 865 void *buf[MAX_UNPACK_TREES];
01904572
LT
866 struct traverse_info newinfo;
867 struct name_entry *p;
b4da3738
NTND
868 int nr_entries;
869
870 nr_entries = all_trees_same_as_cache_tree(n, dirmask, names, info);
871 if (nr_entries > 0) {
b4da3738
NTND
872 int pos = index_pos_by_traverse_info(names, info);
873
874 if (!o->merge || df_conflicts)
875 BUG("Wrong condition to get here buddy");
876
877 /*
878 * All entries up to 'pos' must have been processed
879 * (i.e. marked CE_UNPACKED) at this point. But to be safe,
880 * save and restore cache_bottom anyway to not miss
881 * unprocessed entries before 'pos'.
882 */
883 bottom = o->cache_bottom;
66429698 884 ret = traverse_by_cache_tree(pos, nr_entries, n, info);
b4da3738
NTND
885 o->cache_bottom = bottom;
886 return ret;
887 }
01904572
LT
888
889 p = names;
890 while (!p->mode)
891 p++;
892
893 newinfo = *info;
894 newinfo.prev = info;
40e37256 895 newinfo.pathspec = info->pathspec;
90553847
JK
896 newinfo.name = p->path;
897 newinfo.namelen = p->pathlen;
898 newinfo.mode = p->mode;
37806080 899 newinfo.pathlen = st_add3(newinfo.pathlen, tree_entry_len(p), 1);
603d2498 900 newinfo.df_conflicts |= df_conflicts;
01904572 901
d12a8cf0
JH
902 /*
903 * Fetch the tree from the ODB for each peer directory in the
904 * n commits.
905 *
906 * For 2- and 3-way traversals, we try to avoid hitting the
907 * ODB twice for the same OID. This should yield a nice speed
908 * up in checkouts and merges when the commits are similar.
909 *
910 * We don't bother doing the full O(n^2) search for larger n,
911 * because wider traversals don't happen that often and we
912 * avoid the search setup.
913 *
914 * When 2 peer OIDs are the same, we just copy the tree
915 * descriptor data. This implicitly borrows the buffer
916 * data from the earlier cell.
917 */
01904572 918 for (i = 0; i < n; i++, dirmask >>= 1) {
d12a8cf0
JH
919 if (i > 0 && are_same_oid(&names[i], &names[i - 1]))
920 t[i] = t[i - 1];
921 else if (i > 1 && are_same_oid(&names[i], &names[i - 2]))
922 t[i] = t[i - 2];
923 else {
5c377d3d 924 const struct object_id *oid = NULL;
d12a8cf0 925 if (dirmask & 1)
ea82b2a0 926 oid = &names[i].oid;
5e575807 927 buf[nr_buf++] = fill_tree_descriptor(the_repository, t + i, oid);
d12a8cf0 928 }
01904572 929 }
730f7284
JH
930
931 bottom = switch_cache_bottom(&newinfo);
67022e02 932 ret = traverse_trees(o->src_index, n, t, &newinfo);
730f7284 933 restore_cache_bottom(&newinfo, bottom);
1ce584b0 934
d12a8cf0 935 for (i = 0; i < nr_buf; i++)
1ce584b0
JN
936 free(buf[i]);
937
730f7284 938 return ret;
01904572
LT
939}
940
941/*
942 * Compare the traverse-path to the cache entry without actually
943 * having to generate the textual representation of the traverse
944 * path.
945 *
946 * NOTE! This *only* compares up to the size of the traverse path
947 * itself - the caller needs to do the final check for the cache
948 * entry having more data at the end!
949 */
90553847
JK
950static int do_compare_entry_piecewise(const struct cache_entry *ce,
951 const struct traverse_info *info,
952 const char *name, size_t namelen,
953 unsigned mode)
01904572 954{
90553847 955 int pathlen, ce_len;
01904572
LT
956 const char *ce_name;
957
958 if (info->prev) {
d9c2bd56 959 int cmp = do_compare_entry_piecewise(ce, info->prev,
90553847
JK
960 info->name, info->namelen,
961 info->mode);
01904572
LT
962 if (cmp)
963 return cmp;
964 }
965 pathlen = info->pathlen;
966 ce_len = ce_namelen(ce);
967
968 /* If ce_len < pathlen then we must have previously hit "name == directory" entry */
969 if (ce_len < pathlen)
970 return -1;
971
972 ce_len -= pathlen;
973 ce_name = ce->name + pathlen;
974
90553847 975 return df_name_compare(ce_name, ce_len, S_IFREG, name, namelen, mode);
01904572
LT
976}
977
d9c2bd56
DT
978static int do_compare_entry(const struct cache_entry *ce,
979 const struct traverse_info *info,
90553847
JK
980 const char *name, size_t namelen,
981 unsigned mode)
d9c2bd56 982{
90553847 983 int pathlen, ce_len;
d9c2bd56
DT
984 const char *ce_name;
985 int cmp;
cd807a5c 986 unsigned ce_mode;
d9c2bd56
DT
987
988 /*
989 * If we have not precomputed the traverse path, it is quicker
990 * to avoid doing so. But if we have precomputed it,
991 * it is quicker to use the precomputed version.
992 */
993 if (!info->traverse_path)
90553847 994 return do_compare_entry_piecewise(ce, info, name, namelen, mode);
d9c2bd56
DT
995
996 cmp = strncmp(ce->name, info->traverse_path, info->pathlen);
997 if (cmp)
998 return cmp;
999
1000 pathlen = info->pathlen;
1001 ce_len = ce_namelen(ce);
1002
1003 if (ce_len < pathlen)
1004 return -1;
1005
1006 ce_len -= pathlen;
1007 ce_name = ce->name + pathlen;
1008
cd807a5c
DS
1009 ce_mode = S_ISSPARSEDIR(ce->ce_mode) ? S_IFDIR : S_IFREG;
1010 return df_name_compare(ce_name, ce_len, ce_mode, name, namelen, mode);
d9c2bd56
DT
1011}
1012
01904572
LT
1013static int compare_entry(const struct cache_entry *ce, const struct traverse_info *info, const struct name_entry *n)
1014{
90553847 1015 int cmp = do_compare_entry(ce, info, n->path, n->pathlen, n->mode);
01904572
LT
1016 if (cmp)
1017 return cmp;
1018
cd807a5c
DS
1019 /*
1020 * At this point, we know that we have a prefix match. If ce
1021 * is a sparse directory, then allow an exact match. This only
1022 * works when the input name is a directory, since ce->name
1023 * ends in a directory separator.
1024 */
1025 if (S_ISSPARSEDIR(ce->ce_mode) &&
1026 ce->ce_namelen == traverse_path_len(info, tree_entry_len(n)) + 1)
1027 return 0;
1028
01904572
LT
1029 /*
1030 * Even if the beginning compared identically, the ce should
1031 * compare as bigger than a directory leading up to it!
1032 */
b3b3cbcb 1033 return ce_namelen(ce) > traverse_path_len(info, tree_entry_len(n));
01904572
LT
1034}
1035
da165f47
JH
1036static int ce_in_traverse_path(const struct cache_entry *ce,
1037 const struct traverse_info *info)
1038{
1039 if (!info->prev)
1040 return 1;
90553847
JK
1041 if (do_compare_entry(ce, info->prev,
1042 info->name, info->namelen, info->mode))
da165f47
JH
1043 return 0;
1044 /*
1045 * If ce (blob) is the same name as the path (which is a tree
1046 * we will be descending into), it won't be inside it.
1047 */
1048 return (info->pathlen < ce_namelen(ce));
1049}
1050
a849735b
JM
1051static struct cache_entry *create_ce_entry(const struct traverse_info *info,
1052 const struct name_entry *n,
1053 int stage,
1054 struct index_state *istate,
523506df
DS
1055 int is_transient,
1056 int is_sparse_directory)
01904572 1057{
b3b3cbcb 1058 size_t len = traverse_path_len(info, tree_entry_len(n));
523506df 1059 size_t alloc_len = is_sparse_directory ? len + 1 : len;
a849735b
JM
1060 struct cache_entry *ce =
1061 is_transient ?
523506df
DS
1062 make_empty_transient_cache_entry(alloc_len, NULL) :
1063 make_empty_cache_entry(istate, alloc_len);
01904572
LT
1064
1065 ce->ce_mode = create_ce_mode(n->mode);
b60e188c
TG
1066 ce->ce_flags = create_ce_flags(stage);
1067 ce->ce_namelen = len;
ea82b2a0 1068 oidcpy(&ce->oid, &n->oid);
5aa02f98
JK
1069 /* len+1 because the cache_entry allocates space for NUL */
1070 make_traverse_path(ce->name, len + 1, info, n->path, n->pathlen);
01904572 1071
523506df
DS
1072 if (is_sparse_directory) {
1073 ce->name[len] = '/';
1074 ce->name[len + 1] = '\0';
1075 ce->ce_namelen++;
1076 ce->ce_flags |= CE_SKIP_WORKTREE;
1077 }
1078
01904572
LT
1079 return ce;
1080}
1081
b4da3738
NTND
1082/*
1083 * Note that traverse_by_cache_tree() duplicates some logic in this function
1084 * without actually calling it. If you change the logic here you may need to
1085 * check and change there as well.
1086 */
bd6a3fd7
DS
1087static int unpack_single_entry(int n, unsigned long mask,
1088 unsigned long dirmask,
1089 struct cache_entry **src,
1090 const struct name_entry *names,
1091 const struct traverse_info *info)
01904572
LT
1092{
1093 int i;
1094 struct unpack_trees_options *o = info->data;
603d2498 1095 unsigned long conflicts = info->df_conflicts | dirmask;
01904572 1096
01904572
LT
1097 if (mask == dirmask && !src[0])
1098 return 0;
1099
523506df
DS
1100 /*
1101 * When we have a sparse directory entry for src[0],
1102 * then this isn't necessarily a directory-file conflict.
1103 */
1104 if (mask == dirmask && src[0] &&
1105 S_ISSPARSEDIR(src[0]->ce_mode))
1106 conflicts = 0;
1107
01904572
LT
1108 /*
1109 * Ok, we've filled in up to any potential index entry in src[0],
1110 * now do the rest.
1111 */
1112 for (i = 0; i < n; i++) {
1113 int stage;
1114 unsigned int bit = 1ul << i;
1115 if (conflicts & bit) {
1116 src[i + o->merge] = o->df_conflict_entry;
1117 continue;
1118 }
1119 if (!(mask & bit))
1120 continue;
1121 if (!o->merge)
1122 stage = 0;
1123 else if (i + 1 < o->head_idx)
1124 stage = 1;
1125 else if (i + 1 > o->head_idx)
1126 stage = 3;
1127 else
1128 stage = 2;
a849735b
JM
1129
1130 /*
1131 * If the merge bit is set, then the cache entries are
1132 * discarded in the following block. In this case,
1133 * construct "transient" cache_entries, as they are
1134 * not stored in the index. otherwise construct the
1135 * cache entry from the index aware logic.
1136 */
523506df
DS
1137 src[i + o->merge] = create_ce_entry(info, names + i, stage,
1138 &o->result, o->merge,
1139 bit & dirmask);
01904572
LT
1140 }
1141
5d80ef5a
RS
1142 if (o->merge) {
1143 int rc = call_unpack_fn((const struct cache_entry * const *)src,
1144 o);
1145 for (i = 0; i < n; i++) {
1146 struct cache_entry *ce = src[i + o->merge];
1147 if (ce != o->df_conflict_entry)
a849735b 1148 discard_cache_entry(ce);
5d80ef5a
RS
1149 }
1150 return rc;
1151 }
01904572 1152
01904572 1153 for (i = 0; i < n; i++)
aab3b9a1 1154 if (src[i] && src[i] != o->df_conflict_entry)
46169180
JK
1155 if (do_add_entry(o, src[i], 0, 0))
1156 return -1;
1157
01904572
LT
1158 return 0;
1159}
1160
353c5eeb
JH
1161static int unpack_failed(struct unpack_trees_options *o, const char *message)
1162{
1163 discard_index(&o->result);
b165fac8 1164 if (!o->quiet && !o->exiting_early) {
353c5eeb
JH
1165 if (message)
1166 return error("%s", message);
1167 return -1;
1168 }
1169 return -1;
1170}
1171
730f7284
JH
1172/*
1173 * The tree traversal is looking at name p. If we have a matching entry,
1174 * return it. If name p is a directory in the index, do not return
1175 * anything, as we will want to match it when the traversal descends into
1176 * the directory.
1177 */
1178static int find_cache_pos(struct traverse_info *info,
90553847 1179 const char *p, size_t p_len)
730f7284
JH
1180{
1181 int pos;
1182 struct unpack_trees_options *o = info->data;
1183 struct index_state *index = o->src_index;
1184 int pfxlen = info->pathlen;
730f7284
JH
1185
1186 for (pos = o->cache_bottom; pos < index->cache_nr; pos++) {
9c5e6c80 1187 const struct cache_entry *ce = index->cache[pos];
730f7284
JH
1188 const char *ce_name, *ce_slash;
1189 int cmp, ce_len;
1190
e53e6b44
BD
1191 if (ce->ce_flags & CE_UNPACKED) {
1192 /*
1193 * cache_bottom entry is already unpacked, so
1194 * we can never match it; don't check it
1195 * again.
1196 */
1197 if (pos == o->cache_bottom)
1198 ++o->cache_bottom;
730f7284 1199 continue;
e53e6b44 1200 }
a6720955
DT
1201 if (!ce_in_traverse_path(ce, info)) {
1202 /*
1203 * Check if we can skip future cache checks
1204 * (because we're already past all possible
1205 * entries in the traverse path).
1206 */
1207 if (info->traverse_path) {
1208 if (strncmp(ce->name, info->traverse_path,
1209 info->pathlen) > 0)
1210 break;
1211 }
730f7284 1212 continue;
a6720955 1213 }
730f7284
JH
1214 ce_name = ce->name + pfxlen;
1215 ce_slash = strchr(ce_name, '/');
1216 if (ce_slash)
1217 ce_len = ce_slash - ce_name;
1218 else
1219 ce_len = ce_namelen(ce) - pfxlen;
90553847 1220 cmp = name_compare(p, p_len, ce_name, ce_len);
730f7284
JH
1221 /*
1222 * Exact match; if we have a directory we need to
1223 * delay returning it.
1224 */
1225 if (!cmp)
1226 return ce_slash ? -2 - pos : pos;
1227 if (0 < cmp)
1228 continue; /* keep looking */
1229 /*
1230 * ce_name sorts after p->path; could it be that we
1231 * have files under p->path directory in the index?
1232 * E.g. ce_name == "t-i", and p->path == "t"; we may
1233 * have "t/a" in the index.
1234 */
90553847 1235 if (p_len < ce_len && !memcmp(ce_name, p, p_len) &&
730f7284
JH
1236 ce_name[p_len] < '/')
1237 continue; /* keep looking */
1238 break;
1239 }
1240 return -1;
1241}
1242
523506df
DS
1243/*
1244 * Given a sparse directory entry 'ce', compare ce->name to
1245 * info->name + '/' + p->path + '/' if info->name is non-empty.
1246 * Compare ce->name to p->path + '/' otherwise. Note that
1247 * ce->name must end in a trailing '/' because it is a sparse
1248 * directory entry.
1249 */
1250static int sparse_dir_matches_path(const struct cache_entry *ce,
1251 struct traverse_info *info,
1252 const struct name_entry *p)
1253{
1254 assert(S_ISSPARSEDIR(ce->ce_mode));
1255 assert(ce->name[ce->ce_namelen - 1] == '/');
1256
1257 if (info->namelen)
1258 return ce->ce_namelen == info->namelen + p->pathlen + 2 &&
1259 ce->name[info->namelen] == '/' &&
1260 !strncmp(ce->name, info->name, info->namelen) &&
1261 !strncmp(ce->name + info->namelen + 1, p->path, p->pathlen);
1262 return ce->ce_namelen == p->pathlen + 1 &&
1263 !strncmp(ce->name, p->path, p->pathlen);
1264}
1265
730f7284
JH
1266static struct cache_entry *find_cache_entry(struct traverse_info *info,
1267 const struct name_entry *p)
1268{
523506df 1269 struct cache_entry *ce;
90553847 1270 int pos = find_cache_pos(info, p->path, p->pathlen);
730f7284
JH
1271 struct unpack_trees_options *o = info->data;
1272
1273 if (0 <= pos)
1274 return o->src_index->cache[pos];
523506df
DS
1275
1276 /*
1277 * Check for a sparse-directory entry named "path/".
1278 * Due to the input p->path not having a trailing
1279 * slash, the negative 'pos' value overshoots the
1280 * expected position, hence "-2" instead of "-1".
1281 */
1282 pos = -pos - 2;
1283
1284 if (pos < 0 || pos >= o->src_index->cache_nr)
730f7284 1285 return NULL;
523506df
DS
1286
1287 /*
1288 * Due to lexicographic sorting and sparse directory
1289 * entries ending with a trailing slash, our path as a
1290 * sparse directory (e.g "subdir/") and our path as a
1291 * file (e.g. "subdir") might be separated by other
1292 * paths (e.g. "subdir-").
1293 */
1294 while (pos >= 0) {
1295 ce = o->src_index->cache[pos];
1296
1297 if (strncmp(ce->name, p->path, p->pathlen))
1298 return NULL;
1299
1300 if (S_ISSPARSEDIR(ce->ce_mode) &&
1301 sparse_dir_matches_path(ce, info, p))
1302 return ce;
1303
1304 pos--;
1305 }
1306
1307 return NULL;
730f7284
JH
1308}
1309
ba655da5
JH
1310static void debug_path(struct traverse_info *info)
1311{
1312 if (info->prev) {
1313 debug_path(info->prev);
90553847 1314 if (*info->prev->name)
ba655da5
JH
1315 putchar('/');
1316 }
90553847 1317 printf("%s", info->name);
ba655da5
JH
1318}
1319
1320static void debug_name_entry(int i, struct name_entry *n)
1321{
1322 printf("ent#%d %06o %s\n", i,
1323 n->path ? n->mode : 0,
1324 n->path ? n->path : "(missing)");
1325}
1326
1327static void debug_unpack_callback(int n,
1328 unsigned long mask,
1329 unsigned long dirmask,
1330 struct name_entry *names,
1331 struct traverse_info *info)
1332{
1333 int i;
1334 printf("* unpack mask %lu, dirmask %lu, cnt %d ",
1335 mask, dirmask, n);
1336 debug_path(info);
1337 putchar('\n');
1338 for (i = 0; i < n; i++)
1339 debug_name_entry(i, names + i);
1340}
1341
523506df
DS
1342/*
1343 * Returns true if and only if the given cache_entry is a
1344 * sparse-directory entry that matches the given name_entry
1345 * from the tree walk at the given traverse_info.
1346 */
1347static int is_sparse_directory_entry(struct cache_entry *ce,
1348 struct name_entry *name,
1349 struct traverse_info *info)
1350{
1351 if (!ce || !name || !S_ISSPARSEDIR(ce->ce_mode))
1352 return 0;
1353
1354 return sparse_dir_matches_path(ce, info, name);
1355}
1356
b4da3738
NTND
1357/*
1358 * Note that traverse_by_cache_tree() duplicates some logic in this function
1359 * without actually calling it. If you change the logic here you may need to
1360 * check and change there as well.
1361 */
01904572
LT
1362static int unpack_callback(int n, unsigned long mask, unsigned long dirmask, struct name_entry *names, struct traverse_info *info)
1363{
c7cddc1a 1364 struct cache_entry *src[MAX_UNPACK_TREES + 1] = { NULL, };
01904572 1365 struct unpack_trees_options *o = info->data;
01904572
LT
1366 const struct name_entry *p = names;
1367
1368 /* Find first entry with a real name (we could use "mask" too) */
1369 while (!p->mode)
1370 p++;
1371
ba655da5
JH
1372 if (o->debug_unpack)
1373 debug_unpack_callback(n, mask, dirmask, names, info);
1374
01904572
LT
1375 /* Are we supposed to look at the index too? */
1376 if (o->merge) {
da165f47 1377 while (1) {
da165f47 1378 int cmp;
730f7284
JH
1379 struct cache_entry *ce;
1380
1381 if (o->diff_index_cached)
1382 ce = next_cache_entry(o);
1383 else
1384 ce = find_cache_entry(info, p);
1385
da165f47
JH
1386 if (!ce)
1387 break;
1388 cmp = compare_entry(ce, info, p);
01904572
LT
1389 if (cmp < 0) {
1390 if (unpack_index_entry(ce, o) < 0)
353c5eeb 1391 return unpack_failed(o, NULL);
01904572
LT
1392 continue;
1393 }
1394 if (!cmp) {
1395 if (ce_stage(ce)) {
1396 /*
da165f47
JH
1397 * If we skip unmerged index
1398 * entries, we'll skip this
1399 * entry *and* the tree
1400 * entries associated with it!
01904572 1401 */
34110cd4 1402 if (o->skip_unmerged) {
da165f47 1403 add_same_unmerged(ce, o);
01904572 1404 return mask;
34110cd4 1405 }
01904572
LT
1406 }
1407 src[0] = ce;
01904572
LT
1408 }
1409 break;
1410 }
1411 }
1412
bd6a3fd7 1413 if (unpack_single_entry(n, mask, dirmask, src, names, info) < 0)
01904572
LT
1414 return -1;
1415
97e5954b 1416 if (o->merge && src[0]) {
da165f47
JH
1417 if (ce_stage(src[0]))
1418 mark_ce_used_same_name(src[0], o);
1419 else
1420 mark_ce_used(src[0], o);
1421 }
1422
01904572
LT
1423 /* Now handle any directories.. */
1424 if (dirmask) {
b65982b6
JH
1425 /* special case: "diff-index --cached" looking at a tree */
1426 if (o->diff_index_cached &&
1427 n == 1 && dirmask == 1 && S_ISDIR(names->mode)) {
1428 int matches;
1429 matches = cache_tree_matches_traversal(o->src_index->cache_tree,
1430 names, info);
1431 /*
da165f47
JH
1432 * Everything under the name matches; skip the
1433 * entire hierarchy. diff_index_cached codepath
1434 * special cases D/F conflicts in such a way that
1435 * it does not do any look-ahead, so this is safe.
b65982b6
JH
1436 */
1437 if (matches) {
da165f47 1438 o->cache_bottom += matches;
b65982b6
JH
1439 return mask;
1440 }
1441 }
1442
523506df
DS
1443 if (!is_sparse_directory_entry(src[0], names, info) &&
1444 traverse_trees_recursive(n, dirmask, mask & ~dirmask,
1445 names, info) < 0) {
542c264b 1446 return -1;
523506df
DS
1447 }
1448
01904572
LT
1449 return mask;
1450 }
1451
1452 return mask;
1453}
1454
27c82fb3
NTND
1455static int clear_ce_flags_1(struct index_state *istate,
1456 struct cache_entry **cache, int nr,
fc2b6214 1457 struct strbuf *prefix,
28911091 1458 int select_mask, int clear_mask,
468ce99b 1459 struct pattern_list *pl,
4dcd4def
DS
1460 enum pattern_match_result default_match,
1461 int progress_nr);
28911091 1462
9037026d 1463/* Whole directory matching */
27c82fb3
NTND
1464static int clear_ce_flags_dir(struct index_state *istate,
1465 struct cache_entry **cache, int nr,
fc2b6214 1466 struct strbuf *prefix,
9037026d
NTND
1467 char *basename,
1468 int select_mask, int clear_mask,
468ce99b 1469 struct pattern_list *pl,
4dcd4def
DS
1470 enum pattern_match_result default_match,
1471 int progress_nr)
9037026d 1472{
28911091 1473 struct cache_entry **cache_end;
9037026d 1474 int dtype = DT_DIR;
fc2b6214 1475 int rc;
eb42feca
DS
1476 enum pattern_match_result ret, orig_ret;
1477 orig_ret = path_matches_pattern_list(prefix->buf, prefix->len,
1478 basename, &dtype, pl, istate);
9037026d 1479
fc2b6214 1480 strbuf_addch(prefix, '/');
9037026d 1481
28911091 1482 /* If undecided, use matching result of parent dir in defval */
eb42feca 1483 if (orig_ret == UNDECIDED)
468ce99b 1484 ret = default_match;
eb42feca
DS
1485 else
1486 ret = orig_ret;
9037026d 1487
28911091
NTND
1488 for (cache_end = cache; cache_end != cache + nr; cache_end++) {
1489 struct cache_entry *ce = *cache_end;
fc2b6214 1490 if (strncmp(ce->name, prefix->buf, prefix->len))
28911091 1491 break;
9037026d
NTND
1492 }
1493
eb42feca
DS
1494 if (pl->use_cone_patterns && orig_ret == MATCHED_RECURSIVE) {
1495 struct cache_entry **ce = cache;
4c6c7971 1496 rc = cache_end - cache;
eb42feca
DS
1497
1498 while (ce < cache_end) {
1499 (*ce)->ce_flags &= ~clear_mask;
1500 ce++;
1501 }
1502 } else if (pl->use_cone_patterns && orig_ret == NOT_MATCHED) {
4c6c7971 1503 rc = cache_end - cache;
eb42feca
DS
1504 } else {
1505 rc = clear_ce_flags_1(istate, cache, cache_end - cache,
1506 prefix,
1507 select_mask, clear_mask,
4dcd4def
DS
1508 pl, ret,
1509 progress_nr);
eb42feca
DS
1510 }
1511
fc2b6214
AP
1512 strbuf_setlen(prefix, prefix->len - 1);
1513 return rc;
9037026d
NTND
1514}
1515
1516/*
1517 * Traverse the index, find every entry that matches according to
caa3d554 1518 * o->pl. Do "ce_flags &= ~clear_mask" on those entries. Return the
9037026d
NTND
1519 * number of traversed entries.
1520 *
1521 * If select_mask is non-zero, only entries whose ce_flags has on of
1522 * those bits enabled are traversed.
1523 *
1524 * cache : pointer to an index entry
1525 * prefix_len : an offset to its path
1526 *
1527 * The current path ("prefix") including the trailing '/' is
1528 * cache[0]->name[0..(prefix_len-1)]
1529 * Top level path has prefix_len zero.
1530 */
27c82fb3
NTND
1531static int clear_ce_flags_1(struct index_state *istate,
1532 struct cache_entry **cache, int nr,
fc2b6214 1533 struct strbuf *prefix,
9037026d 1534 int select_mask, int clear_mask,
468ce99b 1535 struct pattern_list *pl,
4dcd4def
DS
1536 enum pattern_match_result default_match,
1537 int progress_nr)
9037026d 1538{
d20bc01a 1539 struct cache_entry **cache_end = nr ? cache + nr : cache;
9037026d
NTND
1540
1541 /*
1542 * Process all entries that have the given prefix and meet
1543 * select_mask condition
1544 */
1545 while(cache != cache_end) {
1546 struct cache_entry *ce = *cache;
1547 const char *name, *slash;
468ce99b
DS
1548 int len, dtype;
1549 enum pattern_match_result ret;
9037026d 1550
4dcd4def
DS
1551 display_progress(istate->progress, progress_nr);
1552
9037026d
NTND
1553 if (select_mask && !(ce->ce_flags & select_mask)) {
1554 cache++;
4dcd4def 1555 progress_nr++;
9037026d
NTND
1556 continue;
1557 }
1558
fc2b6214 1559 if (prefix->len && strncmp(ce->name, prefix->buf, prefix->len))
9037026d
NTND
1560 break;
1561
fc2b6214 1562 name = ce->name + prefix->len;
9037026d
NTND
1563 slash = strchr(name, '/');
1564
1565 /* If it's a directory, try whole directory match first */
1566 if (slash) {
1567 int processed;
1568
1569 len = slash - name;
fc2b6214 1570 strbuf_add(prefix, name, len);
9037026d 1571
27c82fb3 1572 processed = clear_ce_flags_dir(istate, cache, cache_end - cache,
fc2b6214
AP
1573 prefix,
1574 prefix->buf + prefix->len - len,
9037026d 1575 select_mask, clear_mask,
4dcd4def
DS
1576 pl, default_match,
1577 progress_nr);
9037026d
NTND
1578
1579 /* clear_c_f_dir eats a whole dir already? */
1580 if (processed) {
1581 cache += processed;
4dcd4def 1582 progress_nr += processed;
fc2b6214 1583 strbuf_setlen(prefix, prefix->len - len);
9037026d
NTND
1584 continue;
1585 }
1586
fc2b6214 1587 strbuf_addch(prefix, '/');
4dcd4def
DS
1588 processed = clear_ce_flags_1(istate, cache, cache_end - cache,
1589 prefix,
1590 select_mask, clear_mask, pl,
1591 default_match, progress_nr);
1592
1593 cache += processed;
1594 progress_nr += processed;
1595
fc2b6214 1596 strbuf_setlen(prefix, prefix->len - len - 1);
9037026d
NTND
1597 continue;
1598 }
1599
1600 /* Non-directory */
1601 dtype = ce_to_dtype(ce);
468ce99b
DS
1602 ret = path_matches_pattern_list(ce->name,
1603 ce_namelen(ce),
1604 name, &dtype, pl, istate);
1605 if (ret == UNDECIDED)
1606 ret = default_match;
f998a3f1 1607 if (ret == MATCHED || ret == MATCHED_RECURSIVE)
9037026d
NTND
1608 ce->ce_flags &= ~clear_mask;
1609 cache++;
4dcd4def 1610 progress_nr++;
9037026d 1611 }
4dcd4def
DS
1612
1613 display_progress(istate->progress, progress_nr);
9037026d
NTND
1614 return nr - (cache_end - cache);
1615}
1616
27c82fb3
NTND
1617static int clear_ce_flags(struct index_state *istate,
1618 int select_mask, int clear_mask,
4dcd4def
DS
1619 struct pattern_list *pl,
1620 int show_progress)
9037026d 1621{
fc2b6214 1622 static struct strbuf prefix = STRBUF_INIT;
e6152e35
JH
1623 char label[100];
1624 int rval;
fc2b6214
AP
1625
1626 strbuf_reset(&prefix);
4dcd4def
DS
1627 if (show_progress)
1628 istate->progress = start_delayed_progress(
1629 _("Updating index flags"),
1630 istate->cache_nr);
fc2b6214 1631
e6152e35
JH
1632 xsnprintf(label, sizeof(label), "clear_ce_flags(0x%08lx,0x%08lx)",
1633 (unsigned long)select_mask, (unsigned long)clear_mask);
1634 trace2_region_enter("unpack_trees", label, the_repository);
1635 rval = clear_ce_flags_1(istate,
27c82fb3
NTND
1636 istate->cache,
1637 istate->cache_nr,
fc2b6214 1638 &prefix,
9037026d 1639 select_mask, clear_mask,
4dcd4def 1640 pl, 0, 0);
e6152e35
JH
1641 trace2_region_leave("unpack_trees", label, the_repository);
1642
4dcd4def 1643 stop_progress(&istate->progress);
e6152e35 1644 return rval;
9037026d
NTND
1645}
1646
2431afbf
NTND
1647/*
1648 * Set/Clear CE_NEW_SKIP_WORKTREE according to $GIT_DIR/info/sparse-checkout
1649 */
caa3d554 1650static void mark_new_skip_worktree(struct pattern_list *pl,
86016ec3 1651 struct index_state *istate,
4dcd4def
DS
1652 int select_flag, int skip_wt_flag,
1653 int show_progress)
2431afbf
NTND
1654{
1655 int i;
1656
9037026d
NTND
1657 /*
1658 * 1. Pretend the narrowest worktree: only unmerged entries
1659 * are checked out
1660 */
86016ec3
NTND
1661 for (i = 0; i < istate->cache_nr; i++) {
1662 struct cache_entry *ce = istate->cache[i];
2431afbf
NTND
1663
1664 if (select_flag && !(ce->ce_flags & select_flag))
1665 continue;
1666
b33fdfc3 1667 if (!ce_stage(ce) && !(ce->ce_flags & CE_CONFLICTED))
2431afbf
NTND
1668 ce->ce_flags |= skip_wt_flag;
1669 else
1670 ce->ce_flags &= ~skip_wt_flag;
1671 }
9037026d
NTND
1672
1673 /*
1674 * 2. Widen worktree according to sparse-checkout file.
1675 * Matched entries will have skip_wt_flag cleared (i.e. "in")
1676 */
4dcd4def 1677 clear_ce_flags(istate, select_flag, skip_wt_flag, pl, show_progress);
2431afbf
NTND
1678}
1679
30e89c12
EN
1680static void populate_from_existing_patterns(struct unpack_trees_options *o,
1681 struct pattern_list *pl)
1682{
dd23022a 1683 if (get_sparse_checkout_patterns(pl) < 0)
30e89c12
EN
1684 o->skip_sparse_checkout = 1;
1685 else
1686 o->pl = pl;
30e89c12
EN
1687}
1688
1689
eb9ae4b5
RS
1690static int verify_absent(const struct cache_entry *,
1691 enum unpack_trees_error_types,
1692 struct unpack_trees_options *);
2e2b887d
JH
1693/*
1694 * N-way merge "len" trees. Returns 0 on success, -1 on failure to manipulate the
1695 * resulting index, -2 on failure to reflect the changes to the work tree.
2431afbf
NTND
1696 *
1697 * CE_ADDED, CE_UNPACKED and CE_NEW_SKIP_WORKTREE are used internally
2e2b887d 1698 */
01904572
LT
1699int unpack_trees(unsigned len, struct tree_desc *t, struct unpack_trees_options *o)
1700{
6863df35 1701 struct repository *repo = the_repository;
e800ec9d 1702 int i, ret;
0fb1eaa8 1703 static struct cache_entry *dfc;
caa3d554 1704 struct pattern_list pl;
fa0bde45 1705 int free_pattern_list = 0;
16da134b 1706
ca885a4f
JH
1707 if (len > MAX_UNPACK_TREES)
1708 die("unpack_trees takes at most %d trees", MAX_UNPACK_TREES);
16da134b 1709
0d1ed596 1710 trace_performance_enter();
c338898a
DS
1711 trace2_region_enter("unpack_trees", "unpack_trees", the_repository);
1712
6863df35
DS
1713 prepare_repo_settings(repo);
1714 if (repo->settings.command_requires_full_index) {
1715 ensure_full_index(o->src_index);
1716 ensure_full_index(o->dst_index);
1717 }
1718
08aefc9e
NTND
1719 if (!core_apply_sparse_checkout || !o->update)
1720 o->skip_sparse_checkout = 1;
e091228e 1721 if (!o->skip_sparse_checkout && !o->pl) {
30e89c12 1722 memset(&pl, 0, sizeof(pl));
fa0bde45 1723 free_pattern_list = 1;
30e89c12 1724 populate_from_existing_patterns(o, &pl);
08aefc9e
NTND
1725 }
1726
34110cd4 1727 memset(&o->result, 0, sizeof(o->result));
913e0e99 1728 o->result.initialized = 1;
da165f47
JH
1729 o->result.timestamp.sec = o->src_index->timestamp.sec;
1730 o->result.timestamp.nsec = o->src_index->timestamp.nsec;
9170c7ab 1731 o->result.version = o->src_index->version;
7db11830
EN
1732 if (!o->src_index->split_index) {
1733 o->result.split_index = NULL;
1734 } else if (o->src_index == o->dst_index) {
1735 /*
1736 * o->dst_index (and thus o->src_index) will be discarded
1737 * and overwritten with o->result at the end of this function,
1738 * so just use src_index's split_index to avoid having to
1739 * create a new one.
1740 */
1741 o->result.split_index = o->src_index->split_index;
5fc2fc8f 1742 o->result.split_index->refcount++;
7db11830
EN
1743 } else {
1744 o->result.split_index = init_split_index(&o->result);
1745 }
75691ea3 1746 oidcpy(&o->result.oid, &o->src_index->oid);
16da134b 1747 o->merge_size = len;
da165f47 1748 mark_all_ce_unused(o->src_index);
0fb1eaa8 1749
3dfd3059
JS
1750 o->result.fsmonitor_last_update =
1751 xstrdup_or_null(o->src_index->fsmonitor_last_update);
679f2f9f 1752
2431afbf
NTND
1753 /*
1754 * Sparse checkout loop #1: set NEW_SKIP_WORKTREE on existing entries
1755 */
1756 if (!o->skip_sparse_checkout)
4dcd4def
DS
1757 mark_new_skip_worktree(o->pl, o->src_index, 0,
1758 CE_NEW_SKIP_WORKTREE, o->verbose_update);
2431afbf 1759
0fb1eaa8 1760 if (!dfc)
13494ed1 1761 dfc = xcalloc(1, cache_entry_size(0));
0fb1eaa8 1762 o->df_conflict_entry = dfc;
16da134b
JS
1763
1764 if (len) {
01904572
LT
1765 const char *prefix = o->prefix ? o->prefix : "";
1766 struct traverse_info info;
1767
1768 setup_traverse_info(&info, prefix);
1769 info.fn = unpack_callback;
1770 info.data = o;
e6c111b4 1771 info.show_all_errors = o->show_all_errors;
40e37256 1772 info.pathspec = o->pathspec;
01904572 1773
da165f47
JH
1774 if (o->prefix) {
1775 /*
1776 * Unpack existing index entries that sort before the
1777 * prefix the tree is spliced into. Note that o->merge
1778 * is always true in this case.
1779 */
1780 while (1) {
1781 struct cache_entry *ce = next_cache_entry(o);
1782 if (!ce)
1783 break;
1784 if (ce_in_traverse_path(ce, &info))
1785 break;
1786 if (unpack_index_entry(ce, o) < 0)
1787 goto return_failed;
1788 }
08aefc9e 1789 }
da165f47 1790
0d1ed596 1791 trace_performance_enter();
c338898a 1792 trace2_region_enter("unpack_trees", "traverse_trees", the_repository);
67022e02 1793 ret = traverse_trees(o->src_index, len, t, &info);
c338898a 1794 trace2_region_leave("unpack_trees", "traverse_trees", the_repository);
0d1ed596
NTND
1795 trace_performance_leave("traverse_trees");
1796 if (ret < 0)
da165f47 1797 goto return_failed;
16da134b
JS
1798 }
1799
01904572
LT
1800 /* Any left-over entries in the index? */
1801 if (o->merge) {
da165f47
JH
1802 while (1) {
1803 struct cache_entry *ce = next_cache_entry(o);
1804 if (!ce)
1805 break;
01904572 1806 if (unpack_index_entry(ce, o) < 0)
da165f47 1807 goto return_failed;
17e46426 1808 }
17e46426 1809 }
da165f47 1810 mark_all_ce_unused(o->src_index);
16da134b 1811
08aefc9e
NTND
1812 if (o->trivial_merges_only && o->nontrivial_merge) {
1813 ret = unpack_failed(o, "Merge requires file-level merging");
1814 goto done;
1815 }
01904572 1816
e800ec9d 1817 if (!o->skip_sparse_checkout) {
2431afbf
NTND
1818 /*
1819 * Sparse checkout loop #2: set NEW_SKIP_WORKTREE on entries not in loop #1
031ba55b 1820 * If they will have NEW_SKIP_WORKTREE, also set CE_SKIP_WORKTREE
2431afbf
NTND
1821 * so apply_sparse_checkout() won't attempt to remove it from worktree
1822 */
4dcd4def
DS
1823 mark_new_skip_worktree(o->pl, &o->result,
1824 CE_ADDED, CE_SKIP_WORKTREE | CE_NEW_SKIP_WORKTREE,
1825 o->verbose_update);
2431afbf 1826
17d26a4d 1827 ret = 0;
2431afbf 1828 for (i = 0; i < o->result.cache_nr; i++) {
e800ec9d
NTND
1829 struct cache_entry *ce = o->result.cache[i];
1830
2431afbf
NTND
1831 /*
1832 * Entries marked with CE_ADDED in merged_entry() do not have
1833 * verify_absent() check (the check is effectively disabled
1834 * because CE_NEW_SKIP_WORKTREE is set unconditionally).
1835 *
1836 * Do the real check now because we have had
1837 * correct CE_NEW_SKIP_WORKTREE
1838 */
1839 if (ce->ce_flags & CE_ADDED &&
681c637b
EN
1840 verify_absent(ce, WARNING_SPARSE_ORPHANED_NOT_OVERWRITTEN, o))
1841 ret = 1;
1842
1843 if (apply_sparse_checkout(&o->result, ce, o))
1844 ret = 1;
9e1afb16 1845 }
681c637b
EN
1846 if (ret == 1) {
1847 /*
1848 * Inability to sparsify or de-sparsify individual
1849 * paths is not an error, but just a warning.
1850 */
1851 if (o->show_all_errors)
1852 display_warning_msgs(o);
1853 ret = 0;
1854 }
e800ec9d 1855 }
01904572 1856
b0a5a12a 1857 ret = check_updates(o, &o->result) ? (-2) : 0;
e28f7641 1858 if (o->dst_index) {
836ef2b6 1859 move_index_extensions(&o->result, o->src_index);
52fca218 1860 if (!ret) {
4592e608 1861 if (git_env_bool("GIT_TEST_CHECK_CACHE_TREE", 0))
c207e9e1 1862 cache_tree_verify(the_repository, &o->result);
52fca218
BD
1863 if (!cache_tree_fully_valid(o->result.cache_tree))
1864 cache_tree_update(&o->result,
1865 WRITE_TREE_SILENT |
1866 WRITE_TREE_REPAIR);
1867 }
1956ecd0
BP
1868
1869 o->result.updated_workdir = 1;
e28f7641 1870 discard_index(o->dst_index);
34110cd4 1871 *o->dst_index = o->result;
a16cc8b2
JH
1872 } else {
1873 discard_index(&o->result);
e28f7641 1874 }
7db11830 1875 o->src_index = NULL;
08aefc9e
NTND
1876
1877done:
fa0bde45 1878 if (free_pattern_list)
e091228e 1879 clear_pattern_list(&pl);
c338898a 1880 trace2_region_leave("unpack_trees", "unpack_trees", the_repository);
fa0bde45 1881 trace_performance_leave("unpack_trees");
2e2b887d 1882 return ret;
da165f47
JH
1883
1884return_failed:
e6c111b4
MM
1885 if (o->show_all_errors)
1886 display_error_msgs(o);
da165f47 1887 mark_all_ce_unused(o->src_index);
026680f8 1888 ret = unpack_failed(o, NULL);
b4194828
JH
1889 if (o->exiting_early)
1890 ret = 0;
026680f8 1891 goto done;
16da134b 1892}
076b0adc 1893
7af7a258
EN
1894/*
1895 * Update SKIP_WORKTREE bits according to sparsity patterns, and update
1896 * working directory to match.
1897 *
1898 * CE_NEW_SKIP_WORKTREE is used internally.
1899 */
1900enum update_sparsity_result update_sparsity(struct unpack_trees_options *o)
1901{
1902 enum update_sparsity_result ret = UPDATE_SPARSITY_SUCCESS;
1903 struct pattern_list pl;
ace224ac 1904 int i;
7af7a258
EN
1905 unsigned old_show_all_errors;
1906 int free_pattern_list = 0;
1907
1908 old_show_all_errors = o->show_all_errors;
1909 o->show_all_errors = 1;
1910
1911 /* Sanity checks */
1912 if (!o->update || o->index_only || o->skip_sparse_checkout)
1913 BUG("update_sparsity() is for reflecting sparsity patterns in working directory");
1914 if (o->src_index != o->dst_index || o->fn)
1915 BUG("update_sparsity() called wrong");
1916
1917 trace_performance_enter();
1918
1919 /* If we weren't given patterns, use the recorded ones */
1920 if (!o->pl) {
1921 memset(&pl, 0, sizeof(pl));
1922 free_pattern_list = 1;
1923 populate_from_existing_patterns(o, &pl);
1924 if (o->skip_sparse_checkout)
1925 goto skip_sparse_checkout;
1926 }
1927
1928 /* Set NEW_SKIP_WORKTREE on existing entries. */
1929 mark_all_ce_unused(o->src_index);
1930 mark_new_skip_worktree(o->pl, o->src_index, 0,
1931 CE_NEW_SKIP_WORKTREE, o->verbose_update);
1932
1933 /* Then loop over entries and update/remove as needed */
1934 ret = UPDATE_SPARSITY_SUCCESS;
7af7a258
EN
1935 for (i = 0; i < o->src_index->cache_nr; i++) {
1936 struct cache_entry *ce = o->src_index->cache[i];
1937
ebb568b9
EN
1938
1939 if (ce_stage(ce)) {
1940 /* -1 because for loop will increment by 1 */
1941 i += warn_conflicted_path(o->src_index, i, o) - 1;
1942 ret = UPDATE_SPARSITY_WARNINGS;
1943 continue;
1944 }
1945
7af7a258
EN
1946 if (apply_sparse_checkout(o->src_index, ce, o))
1947 ret = UPDATE_SPARSITY_WARNINGS;
7af7a258
EN
1948 }
1949
1950skip_sparse_checkout:
1951 if (check_updates(o, o->src_index))
1952 ret = UPDATE_SPARSITY_WORKTREE_UPDATE_FAILURES;
1953
6271d77c 1954 display_warning_msgs(o);
7af7a258
EN
1955 o->show_all_errors = old_show_all_errors;
1956 if (free_pattern_list)
1957 clear_pattern_list(&pl);
1958 trace_performance_leave("update_sparsity");
1959 return ret;
1960}
1961
076b0adc
JS
1962/* Here come the merge functions */
1963
eb9ae4b5
RS
1964static int reject_merge(const struct cache_entry *ce,
1965 struct unpack_trees_options *o)
076b0adc 1966{
191e9d2c 1967 return add_rejected_path(o, ERROR_WOULD_OVERWRITE, ce->name);
076b0adc
JS
1968}
1969
eb9ae4b5 1970static int same(const struct cache_entry *a, const struct cache_entry *b)
076b0adc
JS
1971{
1972 if (!!a != !!b)
1973 return 0;
1974 if (!a && !b)
1975 return 1;
e11d7b59
JH
1976 if ((a->ce_flags | b->ce_flags) & CE_CONFLICTED)
1977 return 0;
076b0adc 1978 return a->ce_mode == b->ce_mode &&
4a7e27e9 1979 oideq(&a->oid, &b->oid);
076b0adc
JS
1980}
1981
1982
1983/*
1984 * When a CE gets turned into an unmerged entry, we
1985 * want it to be up-to-date
1986 */
eb9ae4b5
RS
1987static int verify_uptodate_1(const struct cache_entry *ce,
1988 struct unpack_trees_options *o,
1989 enum unpack_trees_error_types error_type)
076b0adc
JS
1990{
1991 struct stat st;
1992
d5b66299
NTND
1993 if (o->index_only)
1994 return 0;
1995
1996 /*
1997 * CE_VALID and CE_SKIP_WORKTREE cheat, we better check again
1998 * if this entry is truly up-to-date because this file may be
1999 * overwritten.
2000 */
2001 if ((ce->ce_flags & CE_VALID) || ce_skip_worktree(ce))
2002 ; /* keep checking */
2003 else if (o->reset || ce_uptodate(ce))
203a2fe1 2004 return 0;
076b0adc
JS
2005
2006 if (!lstat(ce->name, &st)) {
d5b66299
NTND
2007 int flags = CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE;
2008 unsigned changed = ie_match_stat(o->src_index, ce, &st, flags);
a7bc845a
SB
2009
2010 if (submodule_from_ce(ce)) {
2011 int r = check_submodule_move_head(ce,
2012 "HEAD", oid_to_hex(&ce->oid), o);
2013 if (r)
191e9d2c 2014 return add_rejected_path(o, error_type, ce->name);
a7bc845a
SB
2015 return 0;
2016 }
2017
076b0adc 2018 if (!changed)
203a2fe1 2019 return 0;
936492d3 2020 /*
a7bc845a
SB
2021 * Historic default policy was to allow submodule to be out
2022 * of sync wrt the superproject index. If the submodule was
2023 * not considered interesting above, we don't care here.
936492d3 2024 */
7a51ed66 2025 if (S_ISGITLINK(ce->ce_mode))
203a2fe1 2026 return 0;
a7bc845a 2027
076b0adc
JS
2028 errno = 0;
2029 }
076b0adc 2030 if (errno == ENOENT)
203a2fe1 2031 return 0;
191e9d2c 2032 return add_rejected_path(o, error_type, ce->name);
35a5aa79
NTND
2033}
2034
64b1abe9
EN
2035int verify_uptodate(const struct cache_entry *ce,
2036 struct unpack_trees_options *o)
35a5aa79 2037{
2431afbf 2038 if (!o->skip_sparse_checkout && (ce->ce_flags & CE_NEW_SKIP_WORKTREE))
f1f523ea 2039 return 0;
08402b04 2040 return verify_uptodate_1(ce, o, ERROR_NOT_UPTODATE_FILE);
076b0adc
JS
2041}
2042
eb9ae4b5 2043static int verify_uptodate_sparse(const struct cache_entry *ce,
e800ec9d
NTND
2044 struct unpack_trees_options *o)
2045{
1ac83f42 2046 return verify_uptodate_1(ce, o, WARNING_SPARSE_NOT_UPTODATE_FILE);
076b0adc
JS
2047}
2048
383480ba
NTND
2049/*
2050 * TODO: We should actually invalidate o->result, not src_index [1].
2051 * But since cache tree and untracked cache both are not copied to
2052 * o->result until unpacking is complete, we invalidate them on
2053 * src_index instead with the assumption that they will be copied to
2054 * dst_index at the end.
2055 *
2056 * [1] src_index->cache_tree is also used in unpack_callback() so if
2057 * we invalidate o->result, we need to update it to use
2058 * o->result.cache_tree as well.
2059 */
eb9ae4b5
RS
2060static void invalidate_ce_path(const struct cache_entry *ce,
2061 struct unpack_trees_options *o)
076b0adc 2062{
e931371a
NTND
2063 if (!ce)
2064 return;
2065 cache_tree_invalidate_path(o->src_index, ce->name);
0cacebf0 2066 untracked_cache_invalidate_path(o->src_index, ce->name, 1);
076b0adc
JS
2067}
2068
0cf73755
SV
2069/*
2070 * Check that checking out ce->sha1 in subdir ce->name is not
2071 * going to overwrite any working files.
0cf73755 2072 */
d6b12300
SB
2073static int verify_clean_submodule(const char *old_sha1,
2074 const struct cache_entry *ce,
eb9ae4b5 2075 struct unpack_trees_options *o)
0cf73755 2076{
a7bc845a
SB
2077 if (!submodule_from_ce(ce))
2078 return 0;
2079
2080 return check_submodule_move_head(ce, old_sha1,
2081 oid_to_hex(&ce->oid), o);
0cf73755
SV
2082}
2083
eb9ae4b5 2084static int verify_clean_subdirectory(const struct cache_entry *ce,
eb9ae4b5 2085 struct unpack_trees_options *o)
c8193534
JH
2086{
2087 /*
0cf73755 2088 * we are about to extract "ce->name"; we would not want to lose
c8193534
JH
2089 * anything in the existing directory there.
2090 */
2091 int namelen;
7b9e3ce0 2092 int i;
c8193534
JH
2093 struct dir_struct d;
2094 char *pathbuf;
2095 int cnt = 0;
0cf73755 2096
d6b12300 2097 if (S_ISGITLINK(ce->ce_mode)) {
1053fe82 2098 struct object_id oid;
a98e6101 2099 int sub_head = resolve_gitlink_ref(ce->name, "HEAD", &oid);
d6b12300
SB
2100 /*
2101 * If we are not going to update the submodule, then
0cf73755
SV
2102 * we don't care.
2103 */
4a7e27e9 2104 if (!sub_head && oideq(&oid, &ce->oid))
0cf73755 2105 return 0;
1053fe82 2106 return verify_clean_submodule(sub_head ? NULL : oid_to_hex(&oid),
df351c6e 2107 ce, o);
0cf73755 2108 }
c8193534
JH
2109
2110 /*
2111 * First let's make sure we do not have a local modification
2112 * in that directory.
2113 */
68c4f6a5 2114 namelen = ce_namelen(ce);
da165f47
JH
2115 for (i = locate_in_src_index(ce, o);
2116 i < o->src_index->cache_nr;
2117 i++) {
837e5fe9
CB
2118 struct cache_entry *ce2 = o->src_index->cache[i];
2119 int len = ce_namelen(ce2);
c8193534 2120 if (len < namelen ||
837e5fe9
CB
2121 strncmp(ce->name, ce2->name, namelen) ||
2122 ce2->name[namelen] != '/')
c8193534
JH
2123 break;
2124 /*
da165f47
JH
2125 * ce2->name is an entry in the subdirectory to be
2126 * removed.
c8193534 2127 */
837e5fe9
CB
2128 if (!ce_stage(ce2)) {
2129 if (verify_uptodate(ce2, o))
203a2fe1 2130 return -1;
837e5fe9 2131 add_entry(o, ce2, CE_REMOVE, 0);
5697ca9a 2132 invalidate_ce_path(ce, o);
da165f47 2133 mark_ce_used(ce2, o);
c8193534
JH
2134 }
2135 cnt++;
2136 }
2137
2138 /*
2139 * Then we need to make sure that we do not lose a locally
2140 * present file that is not ignored.
2141 */
75faa45a 2142 pathbuf = xstrfmt("%.*s/", namelen, ce->name);
c8193534
JH
2143
2144 memset(&d, 0, sizeof(d));
2145 if (o->dir)
2146 d.exclude_per_dir = o->dir->exclude_per_dir;
c7f3259d 2147 i = read_directory(&d, o->src_index, pathbuf, namelen+1, NULL);
c8193534 2148 if (i)
191e9d2c 2149 return add_rejected_path(o, ERROR_NOT_UPTODATE_DIR, ce->name);
c8193534
JH
2150 free(pathbuf);
2151 return cnt;
2152}
2153
32260ad5
LT
2154/*
2155 * This gets called when there was no index entry for the tree entry 'dst',
2156 * but we found a file in the working tree that 'lstat()' said was fine,
2157 * and we're on a case-insensitive filesystem.
2158 *
2159 * See if we can find a case-insensitive match in the index that also
2160 * matches the stat information, and assume it's that other file!
2161 */
a9307f5a 2162static int icase_exists(struct unpack_trees_options *o, const char *name, int len, struct stat *st)
32260ad5 2163{
9c5e6c80 2164 const struct cache_entry *src;
32260ad5 2165
ebbd7439 2166 src = index_file_exists(o->src_index, name, len, 1);
56cac48c 2167 return src && !ie_match_stat(o->src_index, src, st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);
32260ad5
LT
2168}
2169
a9307f5a 2170static int check_ok_to_remove(const char *name, int len, int dtype,
eb9ae4b5 2171 const struct cache_entry *ce, struct stat *st,
a9307f5a
CB
2172 enum unpack_trees_error_types error_type,
2173 struct unpack_trees_options *o)
2174{
9c5e6c80 2175 const struct cache_entry *result;
a9307f5a
CB
2176
2177 /*
2178 * It may be that the 'lstat()' succeeded even though
2179 * target 'ce' was absent, because there is an old
2180 * entry that is different only in case..
2181 *
2182 * Ignore that lstat() if it matches.
2183 */
2184 if (ignore_case && icase_exists(o, name, len, st))
2185 return 0;
2186
589570db 2187 if (o->dir &&
c7f3259d 2188 is_excluded(o->dir, o->src_index, name, &dtype))
a9307f5a
CB
2189 /*
2190 * ce->name is explicitly excluded, so it is Ok to
2191 * overwrite it.
2192 */
2193 return 0;
2194 if (S_ISDIR(st->st_mode)) {
2195 /*
2196 * We are checking out path "foo" and
2197 * found "foo/." in the working tree.
2198 * This is tricky -- if we have modified
2199 * files that are in "foo/" we would lose
2200 * them.
2201 */
df351c6e 2202 if (verify_clean_subdirectory(ce, o) < 0)
a9307f5a
CB
2203 return -1;
2204 return 0;
2205 }
2206
2207 /*
2208 * The previous round may already have decided to
2209 * delete this path, which is in a subdirectory that
2210 * is being replaced with a blob.
2211 */
ebbd7439 2212 result = index_file_exists(&o->result, name, len, 0);
a9307f5a
CB
2213 if (result) {
2214 if (result->ce_flags & CE_REMOVE)
2215 return 0;
2216 }
2217
191e9d2c 2218 return add_rejected_path(o, error_type, name);
a9307f5a
CB
2219}
2220
076b0adc
JS
2221/*
2222 * We do not want to remove or overwrite a working tree file that
f8a9d428 2223 * is not tracked, unless it is ignored.
076b0adc 2224 */
eb9ae4b5
RS
2225static int verify_absent_1(const struct cache_entry *ce,
2226 enum unpack_trees_error_types error_type,
2227 struct unpack_trees_options *o)
076b0adc 2228{
f66caaf9 2229 int len;
076b0adc
JS
2230 struct stat st;
2231
2232 if (o->index_only || o->reset || !o->update)
203a2fe1 2233 return 0;
c8193534 2234
fab78a0c 2235 len = check_leading_path(ce->name, ce_namelen(ce), 0);
f66caaf9 2236 if (!len)
203a2fe1 2237 return 0;
f66caaf9 2238 else if (len > 0) {
f514ef97
JK
2239 char *path;
2240 int ret;
2241
2242 path = xmemdupz(ce->name, len);
a93e5301 2243 if (lstat(path, &st))
43c728e2 2244 ret = error_errno("cannot stat '%s'", path);
a7bc845a
SB
2245 else {
2246 if (submodule_from_ce(ce))
2247 ret = check_submodule_move_head(ce,
2248 oid_to_hex(&ce->oid),
2249 NULL, o);
2250 else
2251 ret = check_ok_to_remove(path, len, DT_UNKNOWN, NULL,
2252 &st, error_type, o);
2253 }
f514ef97
JK
2254 free(path);
2255 return ret;
92fda79e
JN
2256 } else if (lstat(ce->name, &st)) {
2257 if (errno != ENOENT)
43c728e2 2258 return error_errno("cannot stat '%s'", ce->name);
92fda79e
JN
2259 return 0;
2260 } else {
a7bc845a
SB
2261 if (submodule_from_ce(ce))
2262 return check_submodule_move_head(ce, oid_to_hex(&ce->oid),
2263 NULL, o);
2264
a9307f5a 2265 return check_ok_to_remove(ce->name, ce_namelen(ce),
92fda79e
JN
2266 ce_to_dtype(ce), ce, &st,
2267 error_type, o);
2268 }
076b0adc 2269}
a9307f5a 2270
eb9ae4b5 2271static int verify_absent(const struct cache_entry *ce,
08402b04 2272 enum unpack_trees_error_types error_type,
35a5aa79
NTND
2273 struct unpack_trees_options *o)
2274{
2431afbf 2275 if (!o->skip_sparse_checkout && (ce->ce_flags & CE_NEW_SKIP_WORKTREE))
f1f523ea 2276 return 0;
08402b04 2277 return verify_absent_1(ce, error_type, o);
35a5aa79 2278}
076b0adc 2279
eb9ae4b5
RS
2280static int verify_absent_sparse(const struct cache_entry *ce,
2281 enum unpack_trees_error_types error_type,
2282 struct unpack_trees_options *o)
e800ec9d 2283{
d61633ae 2284 return verify_absent_1(ce, error_type, o);
e800ec9d 2285}
076b0adc 2286
f2fa3542 2287static int merged_entry(const struct cache_entry *ce,
eb9ae4b5 2288 const struct cache_entry *old,
f2fa3542 2289 struct unpack_trees_options *o)
076b0adc 2290{
7f8ab8dc 2291 int update = CE_UPDATE;
8e72d675 2292 struct cache_entry *merge = dup_cache_entry(ce, &o->result);
7f8ab8dc 2293
e11d7b59 2294 if (!old) {
2431afbf
NTND
2295 /*
2296 * New index entries. In sparse checkout, the following
2297 * verify_absent() will be delayed until after
2298 * traverse_trees() finishes in unpack_trees(), then:
2299 *
2300 * - CE_NEW_SKIP_WORKTREE will be computed correctly
2301 * - verify_absent() be called again, this time with
2302 * correct CE_NEW_SKIP_WORKTREE
2303 *
2304 * verify_absent() call here does nothing in sparse
2305 * checkout (i.e. o->skip_sparse_checkout == 0)
2306 */
2307 update |= CE_ADDED;
2308 merge->ce_flags |= CE_NEW_SKIP_WORKTREE;
2309
f2fa3542
RS
2310 if (verify_absent(merge,
2311 ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN, o)) {
a849735b 2312 discard_cache_entry(merge);
e11d7b59 2313 return -1;
f2fa3542 2314 }
e11d7b59 2315 invalidate_ce_path(merge, o);
a7bc845a 2316
e84704f1 2317 if (submodule_from_ce(ce) && file_exists(ce->name)) {
a7bc845a
SB
2318 int ret = check_submodule_move_head(ce, NULL,
2319 oid_to_hex(&ce->oid),
2320 o);
2321 if (ret)
2322 return ret;
2323 }
2324
e11d7b59 2325 } else if (!(old->ce_flags & CE_CONFLICTED)) {
076b0adc
JS
2326 /*
2327 * See if we can re-use the old CE directly?
2328 * That way we get the uptodate stat info.
2329 *
7f8ab8dc
LT
2330 * This also removes the UPDATE flag on a match; otherwise
2331 * we will end up overwriting local changes in the work tree.
076b0adc
JS
2332 */
2333 if (same(old, merge)) {
eb7a2f1d 2334 copy_cache_entry(merge, old);
7f8ab8dc 2335 update = 0;
076b0adc 2336 } else {
f2fa3542 2337 if (verify_uptodate(old, o)) {
a849735b 2338 discard_cache_entry(merge);
203a2fe1 2339 return -1;
f2fa3542 2340 }
2431afbf
NTND
2341 /* Migrate old flags over */
2342 update |= old->ce_flags & (CE_SKIP_WORKTREE | CE_NEW_SKIP_WORKTREE);
bc052d7f 2343 invalidate_ce_path(old, o);
076b0adc 2344 }
a7bc845a 2345
e84704f1 2346 if (submodule_from_ce(ce) && file_exists(ce->name)) {
a7bc845a
SB
2347 int ret = check_submodule_move_head(ce, oid_to_hex(&old->oid),
2348 oid_to_hex(&ce->oid),
2349 o);
2350 if (ret)
2351 return ret;
2352 }
e11d7b59
JH
2353 } else {
2354 /*
2355 * Previously unmerged entry left as an existence
2356 * marker by read_index_unmerged();
2357 */
2358 invalidate_ce_path(old, o);
076b0adc
JS
2359 }
2360
cc756edd
JS
2361 if (do_add_entry(o, merge, update, CE_STAGEMASK) < 0)
2362 return -1;
076b0adc
JS
2363 return 1;
2364}
2365
eb9ae4b5
RS
2366static int deleted_entry(const struct cache_entry *ce,
2367 const struct cache_entry *old,
2368 struct unpack_trees_options *o)
076b0adc 2369{
34110cd4
LT
2370 /* Did it exist in the index? */
2371 if (!old) {
08402b04 2372 if (verify_absent(ce, ERROR_WOULD_LOSE_UNTRACKED_REMOVED, o))
203a2fe1 2373 return -1;
34110cd4
LT
2374 return 0;
2375 }
e11d7b59 2376 if (!(old->ce_flags & CE_CONFLICTED) && verify_uptodate(old, o))
34110cd4
LT
2377 return -1;
2378 add_entry(o, ce, CE_REMOVE, 0);
bc052d7f 2379 invalidate_ce_path(ce, o);
076b0adc
JS
2380 return 1;
2381}
2382
eb9ae4b5
RS
2383static int keep_entry(const struct cache_entry *ce,
2384 struct unpack_trees_options *o)
076b0adc 2385{
34110cd4 2386 add_entry(o, ce, 0, 0);
5697ca9a
NTND
2387 if (ce_stage(ce))
2388 invalidate_ce_path(ce, o);
076b0adc
JS
2389 return 1;
2390}
2391
2392#if DBRT_DEBUG
2393static void show_stage_entry(FILE *o,
2394 const char *label, const struct cache_entry *ce)
2395{
2396 if (!ce)
2397 fprintf(o, "%s (missing)\n", label);
2398 else
2399 fprintf(o, "%s%06o %s %d\t%s\n",
2400 label,
7a51ed66 2401 ce->ce_mode,
99d1a986 2402 oid_to_hex(&ce->oid),
076b0adc
JS
2403 ce_stage(ce),
2404 ce->name);
2405}
2406#endif
2407
5828e835
RS
2408int threeway_merge(const struct cache_entry * const *stages,
2409 struct unpack_trees_options *o)
076b0adc 2410{
eb9ae4b5
RS
2411 const struct cache_entry *index;
2412 const struct cache_entry *head;
2413 const struct cache_entry *remote = stages[o->head_idx + 1];
076b0adc
JS
2414 int count;
2415 int head_match = 0;
2416 int remote_match = 0;
076b0adc
JS
2417
2418 int df_conflict_head = 0;
2419 int df_conflict_remote = 0;
2420
2421 int any_anc_missing = 0;
2422 int no_anc_exists = 1;
2423 int i;
2424
2425 for (i = 1; i < o->head_idx; i++) {
4c4caafc 2426 if (!stages[i] || stages[i] == o->df_conflict_entry)
076b0adc 2427 any_anc_missing = 1;
4c4caafc 2428 else
076b0adc 2429 no_anc_exists = 0;
076b0adc
JS
2430 }
2431
2432 index = stages[0];
2433 head = stages[o->head_idx];
2434
2435 if (head == o->df_conflict_entry) {
2436 df_conflict_head = 1;
2437 head = NULL;
2438 }
2439
2440 if (remote == o->df_conflict_entry) {
2441 df_conflict_remote = 1;
2442 remote = NULL;
2443 }
2444
cee2d6ae
JH
2445 /*
2446 * First, if there's a #16 situation, note that to prevent #13
076b0adc
JS
2447 * and #14.
2448 */
2449 if (!same(remote, head)) {
2450 for (i = 1; i < o->head_idx; i++) {
2451 if (same(stages[i], head)) {
2452 head_match = i;
2453 }
2454 if (same(stages[i], remote)) {
2455 remote_match = i;
2456 }
2457 }
2458 }
2459
cee2d6ae
JH
2460 /*
2461 * We start with cases where the index is allowed to match
076b0adc
JS
2462 * something other than the head: #14(ALT) and #2ALT, where it
2463 * is permitted to match the result instead.
2464 */
2465 /* #14, #14ALT, #2ALT */
2466 if (remote && !df_conflict_head && head_match && !remote_match) {
2467 if (index && !same(index, remote) && !same(index, head))
6a143aa2 2468 return reject_merge(index, o);
076b0adc
JS
2469 return merged_entry(remote, index, o);
2470 }
2471 /*
2472 * If we have an entry in the index cache, then we want to
2473 * make sure that it matches head.
2474 */
4e7c4571 2475 if (index && !same(index, head))
6a143aa2 2476 return reject_merge(index, o);
076b0adc
JS
2477
2478 if (head) {
2479 /* #5ALT, #15 */
2480 if (same(head, remote))
2481 return merged_entry(head, index, o);
2482 /* #13, #3ALT */
2483 if (!df_conflict_remote && remote_match && !head_match)
2484 return merged_entry(head, index, o);
2485 }
2486
2487 /* #1 */
34110cd4 2488 if (!head && !remote && any_anc_missing)
076b0adc
JS
2489 return 0;
2490
cee2d6ae
JH
2491 /*
2492 * Under the "aggressive" rule, we resolve mostly trivial
076b0adc
JS
2493 * cases that we historically had git-merge-one-file resolve.
2494 */
2495 if (o->aggressive) {
cee2d6ae
JH
2496 int head_deleted = !head;
2497 int remote_deleted = !remote;
eb9ae4b5 2498 const struct cache_entry *ce = NULL;
4c4caafc
JH
2499
2500 if (index)
0cf73755 2501 ce = index;
4c4caafc 2502 else if (head)
0cf73755 2503 ce = head;
4c4caafc 2504 else if (remote)
0cf73755 2505 ce = remote;
4c4caafc
JH
2506 else {
2507 for (i = 1; i < o->head_idx; i++) {
2508 if (stages[i] && stages[i] != o->df_conflict_entry) {
0cf73755 2509 ce = stages[i];
4c4caafc
JH
2510 break;
2511 }
2512 }
2513 }
2514
076b0adc
JS
2515 /*
2516 * Deleted in both.
2517 * Deleted in one and unchanged in the other.
2518 */
2519 if ((head_deleted && remote_deleted) ||
2520 (head_deleted && remote && remote_match) ||
2521 (remote_deleted && head && head_match)) {
2522 if (index)
2523 return deleted_entry(index, index, o);
34110cd4 2524 if (ce && !head_deleted) {
08402b04 2525 if (verify_absent(ce, ERROR_WOULD_LOSE_UNTRACKED_REMOVED, o))
203a2fe1
DB
2526 return -1;
2527 }
076b0adc
JS
2528 return 0;
2529 }
2530 /*
2531 * Added in both, identically.
2532 */
2533 if (no_anc_exists && head && remote && same(head, remote))
2534 return merged_entry(head, index, o);
2535
2536 }
2537
2538 /* Below are "no merge" cases, which require that the index be
2539 * up-to-date to avoid the files getting overwritten with
2540 * conflict resolution files.
2541 */
2542 if (index) {
203a2fe1
DB
2543 if (verify_uptodate(index, o))
2544 return -1;
076b0adc 2545 }
076b0adc
JS
2546
2547 o->nontrivial_merge = 1;
2548
ea4b52a8 2549 /* #2, #3, #4, #6, #7, #9, #10, #11. */
076b0adc
JS
2550 count = 0;
2551 if (!head_match || !remote_match) {
2552 for (i = 1; i < o->head_idx; i++) {
4c4caafc 2553 if (stages[i] && stages[i] != o->df_conflict_entry) {
7f7932ab 2554 keep_entry(stages[i], o);
076b0adc
JS
2555 count++;
2556 break;
2557 }
2558 }
2559 }
2560#if DBRT_DEBUG
2561 else {
2562 fprintf(stderr, "read-tree: warning #16 detected\n");
2563 show_stage_entry(stderr, "head ", stages[head_match]);
2564 show_stage_entry(stderr, "remote ", stages[remote_match]);
2565 }
2566#endif
7f7932ab
JH
2567 if (head) { count += keep_entry(head, o); }
2568 if (remote) { count += keep_entry(remote, o); }
076b0adc
JS
2569 return count;
2570}
2571
2572/*
2573 * Two-way merge.
2574 *
2575 * The rule is to "carry forward" what is in the index without losing
a75d7b54 2576 * information across a "fast-forward", favoring a successful merge
076b0adc
JS
2577 * over a merge failure when it makes sense. For details of the
2578 * "carry forward" rule, please see <Documentation/git-read-tree.txt>.
2579 *
2580 */
5828e835
RS
2581int twoway_merge(const struct cache_entry * const *src,
2582 struct unpack_trees_options *o)
076b0adc 2583{
eb9ae4b5
RS
2584 const struct cache_entry *current = src[0];
2585 const struct cache_entry *oldtree = src[1];
2586 const struct cache_entry *newtree = src[2];
076b0adc
JS
2587
2588 if (o->merge_size != 2)
2589 return error("Cannot do a twoway merge of %d trees",
2590 o->merge_size);
2591
b8ba1535
JH
2592 if (oldtree == o->df_conflict_entry)
2593 oldtree = NULL;
2594 if (newtree == o->df_conflict_entry)
2595 newtree = NULL;
2596
076b0adc 2597 if (current) {
b018ff60
JK
2598 if (current->ce_flags & CE_CONFLICTED) {
2599 if (same(oldtree, newtree) || o->reset) {
2600 if (!newtree)
2601 return deleted_entry(current, current, o);
2602 else
2603 return merged_entry(newtree, current, o);
2604 }
6a143aa2 2605 return reject_merge(current, o);
6c1db1b3 2606 } else if ((!oldtree && !newtree) || /* 4 and 5 */
b018ff60
JK
2607 (!oldtree && newtree &&
2608 same(current, newtree)) || /* 6 and 7 */
2609 (oldtree && newtree &&
2610 same(oldtree, newtree)) || /* 14 and 15 */
2611 (oldtree && newtree &&
2612 !same(oldtree, newtree) && /* 18 and 19 */
2613 same(current, newtree))) {
7f7932ab 2614 return keep_entry(current, o);
6c1db1b3 2615 } else if (oldtree && !newtree && same(current, oldtree)) {
076b0adc
JS
2616 /* 10 or 11 */
2617 return deleted_entry(oldtree, current, o);
6c1db1b3 2618 } else if (oldtree && newtree &&
076b0adc
JS
2619 same(current, oldtree) && !same(current, newtree)) {
2620 /* 20 or 21 */
2621 return merged_entry(newtree, current, o);
6c1db1b3 2622 } else
6a143aa2 2623 return reject_merge(current, o);
076b0adc 2624 }
55218834
JH
2625 else if (newtree) {
2626 if (oldtree && !o->initial_checkout) {
2627 /*
2628 * deletion of the path was staged;
2629 */
2630 if (same(oldtree, newtree))
2631 return 1;
2632 return reject_merge(oldtree, o);
2633 }
076b0adc 2634 return merged_entry(newtree, current, o);
55218834 2635 }
d699676d 2636 return deleted_entry(oldtree, current, o);
076b0adc
JS
2637}
2638
2639/*
2640 * Bind merge.
2641 *
2642 * Keep the index entries at stage0, collapse stage1 but make sure
2643 * stage0 does not have anything there.
2644 */
5828e835
RS
2645int bind_merge(const struct cache_entry * const *src,
2646 struct unpack_trees_options *o)
076b0adc 2647{
eb9ae4b5
RS
2648 const struct cache_entry *old = src[0];
2649 const struct cache_entry *a = src[1];
076b0adc
JS
2650
2651 if (o->merge_size != 1)
82247e9b 2652 return error("Cannot do a bind merge of %d trees",
076b0adc
JS
2653 o->merge_size);
2654 if (a && old)
b165fac8 2655 return o->quiet ? -1 :
3d415425
SB
2656 error(ERRORMSG(o, ERROR_BIND_OVERLAP),
2657 super_prefixed(a->name),
2658 super_prefixed(old->name));
076b0adc 2659 if (!a)
7f7932ab 2660 return keep_entry(old, o);
076b0adc
JS
2661 else
2662 return merged_entry(a, NULL, o);
2663}
2664
2665/*
2666 * One-way merge.
2667 *
2668 * The rule is:
2669 * - take the stat information from stage0, take the data from stage1
2670 */
5828e835
RS
2671int oneway_merge(const struct cache_entry * const *src,
2672 struct unpack_trees_options *o)
076b0adc 2673{
eb9ae4b5
RS
2674 const struct cache_entry *old = src[0];
2675 const struct cache_entry *a = src[1];
076b0adc
JS
2676
2677 if (o->merge_size != 1)
2678 return error("Cannot do a oneway merge of %d trees",
2679 o->merge_size);
2680
78d3b06e 2681 if (!a || a == o->df_conflict_entry)
076b0adc 2682 return deleted_entry(old, old, o);
34110cd4 2683
076b0adc 2684 if (old && same(old, a)) {
34110cd4 2685 int update = 0;
679f2f9f
US
2686 if (o->reset && o->update && !ce_uptodate(old) && !ce_skip_worktree(old) &&
2687 !(old->ce_flags & CE_FSMONITOR_VALID)) {
076b0adc
JS
2688 struct stat st;
2689 if (lstat(old->name, &st) ||
56cac48c 2690 ie_match_stat(o->src_index, old, &st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE))
34110cd4 2691 update |= CE_UPDATE;
076b0adc 2692 }
ad17312e
SB
2693 if (o->update && S_ISGITLINK(old->ce_mode) &&
2694 should_update_submodules() && !verify_uptodate(old, o))
2695 update |= CE_UPDATE;
ab5af825 2696 add_entry(o, old, update, CE_STAGEMASK);
34110cd4 2697 return 0;
076b0adc
JS
2698 }
2699 return merged_entry(a, old, o);
2700}
d3c7bf73
DL
2701
2702/*
2703 * Merge worktree and untracked entries in a stash entry.
2704 *
2705 * Ignore all index entries. Collapse remaining trees but make sure that they
2706 * don't have any conflicting files.
2707 */
2708int stash_worktree_untracked_merge(const struct cache_entry * const *src,
2709 struct unpack_trees_options *o)
2710{
2711 const struct cache_entry *worktree = src[1];
2712 const struct cache_entry *untracked = src[2];
2713
2714 if (o->merge_size != 2)
2715 BUG("invalid merge_size: %d", o->merge_size);
2716
2717 if (worktree && untracked)
2718 return error(_("worktree and untracked commit have duplicate entries: %s"),
2719 super_prefixed(worktree->name));
2720
2721 return merged_entry(worktree ? worktree : untracked, NULL, o);
2722}