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