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