1#include"cache.h" 2#include"argv-array.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"dir.h" 15#include"submodule.h" 16#include"submodule-config.h" 17#include"fsmonitor.h" 18#include"object-store.h" 19#include"promisor-remote.h" 20 21/* 22 * Error messages expected by scripts out of plumbing commands such as 23 * read-tree. Non-scripted Porcelain is not required to use these messages 24 * and in fact are encouraged to reword them to better suit their particular 25 * situation better. See how "git checkout" and "git merge" replaces 26 * them using setup_unpack_trees_porcelain(), for example. 27 */ 28static const char*unpack_plumbing_errors[NB_UNPACK_TREES_ERROR_TYPES] = { 29/* ERROR_WOULD_OVERWRITE */ 30"Entry '%s' would be overwritten by merge. Cannot merge.", 31 32/* ERROR_NOT_UPTODATE_FILE */ 33"Entry '%s' not uptodate. Cannot merge.", 34 35/* ERROR_NOT_UPTODATE_DIR */ 36"Updating '%s' would lose untracked files in it", 37 38/* ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN */ 39"Untracked working tree file '%s' would be overwritten by merge.", 40 41/* ERROR_WOULD_LOSE_UNTRACKED_REMOVED */ 42"Untracked working tree file '%s' would be removed by merge.", 43 44/* ERROR_BIND_OVERLAP */ 45"Entry '%s' overlaps with '%s'. Cannot bind.", 46 47/* ERROR_SPARSE_NOT_UPTODATE_FILE */ 48"Entry '%s' not uptodate. Cannot update sparse checkout.", 49 50/* ERROR_WOULD_LOSE_ORPHANED_OVERWRITTEN */ 51"Working tree file '%s' would be overwritten by sparse checkout update.", 52 53/* ERROR_WOULD_LOSE_ORPHANED_REMOVED */ 54"Working tree file '%s' would be removed by sparse checkout update.", 55 56/* ERROR_WOULD_LOSE_SUBMODULE */ 57"Submodule '%s' cannot checkout new HEAD.", 58}; 59 60#define ERRORMSG(o,type) \ 61 ( ((o) && (o)->msgs[(type)]) \ 62 ? ((o)->msgs[(type)]) \ 63 : (unpack_plumbing_errors[(type)]) ) 64 65static const char*super_prefixed(const char*path) 66{ 67/* 68 * It is necessary and sufficient to have two static buffers 69 * here, as the return value of this function is fed to 70 * error() using the unpack_*_errors[] templates we see above. 71 */ 72static struct strbuf buf[2] = {STRBUF_INIT, STRBUF_INIT}; 73static int super_prefix_len = -1; 74static unsigned idx =ARRAY_SIZE(buf) -1; 75 76if(super_prefix_len <0) { 77const char*super_prefix =get_super_prefix(); 78if(!super_prefix) { 79 super_prefix_len =0; 80}else{ 81int i; 82for(i =0; i <ARRAY_SIZE(buf); i++) 83strbuf_addstr(&buf[i], super_prefix); 84 super_prefix_len = buf[0].len; 85} 86} 87 88if(!super_prefix_len) 89return path; 90 91if(++idx >=ARRAY_SIZE(buf)) 92 idx =0; 93 94strbuf_setlen(&buf[idx], super_prefix_len); 95strbuf_addstr(&buf[idx], path); 96 97return buf[idx].buf; 98} 99 100voidsetup_unpack_trees_porcelain(struct unpack_trees_options *opts, 101const char*cmd) 102{ 103int i; 104const char**msgs = opts->msgs; 105const char*msg; 106 107argv_array_init(&opts->msgs_to_free); 108 109if(!strcmp(cmd,"checkout")) 110 msg = advice_commit_before_merge 111?_("Your local changes to the following files would be overwritten by checkout:\n%%s" 112"Please commit your changes or stash them before you switch branches.") 113:_("Your local changes to the following files would be overwritten by checkout:\n%%s"); 114else if(!strcmp(cmd,"merge")) 115 msg = advice_commit_before_merge 116?_("Your local changes to the following files would be overwritten by merge:\n%%s" 117"Please commit your changes or stash them before you merge.") 118:_("Your local changes to the following files would be overwritten by merge:\n%%s"); 119else 120 msg = advice_commit_before_merge 121?_("Your local changes to the following files would be overwritten by%s:\n%%s" 122"Please commit your changes or stash them before you%s.") 123:_("Your local changes to the following files would be overwritten by%s:\n%%s"); 124 msgs[ERROR_WOULD_OVERWRITE] = msgs[ERROR_NOT_UPTODATE_FILE] = 125argv_array_pushf(&opts->msgs_to_free, msg, cmd, cmd); 126 127 msgs[ERROR_NOT_UPTODATE_DIR] = 128_("Updating the following directories would lose untracked files in them:\n%s"); 129 130if(!strcmp(cmd,"checkout")) 131 msg = advice_commit_before_merge 132?_("The following untracked working tree files would be removed by checkout:\n%%s" 133"Please move or remove them before you switch branches.") 134:_("The following untracked working tree files would be removed by checkout:\n%%s"); 135else if(!strcmp(cmd,"merge")) 136 msg = advice_commit_before_merge 137?_("The following untracked working tree files would be removed by merge:\n%%s" 138"Please move or remove them before you merge.") 139:_("The following untracked working tree files would be removed by merge:\n%%s"); 140else 141 msg = advice_commit_before_merge 142?_("The following untracked working tree files would be removed by%s:\n%%s" 143"Please move or remove them before you%s.") 144:_("The following untracked working tree files would be removed by%s:\n%%s"); 145 msgs[ERROR_WOULD_LOSE_UNTRACKED_REMOVED] = 146argv_array_pushf(&opts->msgs_to_free, msg, cmd, cmd); 147 148if(!strcmp(cmd,"checkout")) 149 msg = advice_commit_before_merge 150?_("The following untracked working tree files would be overwritten by checkout:\n%%s" 151"Please move or remove them before you switch branches.") 152:_("The following untracked working tree files would be overwritten by checkout:\n%%s"); 153else if(!strcmp(cmd,"merge")) 154 msg = advice_commit_before_merge 155?_("The following untracked working tree files would be overwritten by merge:\n%%s" 156"Please move or remove them before you merge.") 157:_("The following untracked working tree files would be overwritten by merge:\n%%s"); 158else 159 msg = advice_commit_before_merge 160?_("The following untracked working tree files would be overwritten by%s:\n%%s" 161"Please move or remove them before you%s.") 162:_("The following untracked working tree files would be overwritten by%s:\n%%s"); 163 msgs[ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN] = 164argv_array_pushf(&opts->msgs_to_free, msg, cmd, cmd); 165 166/* 167 * Special case: ERROR_BIND_OVERLAP refers to a pair of paths, we 168 * cannot easily display it as a list. 169 */ 170 msgs[ERROR_BIND_OVERLAP] =_("Entry '%s' overlaps with '%s'. Cannot bind."); 171 172 msgs[ERROR_SPARSE_NOT_UPTODATE_FILE] = 173_("Cannot update sparse checkout: the following entries are not up to date:\n%s"); 174 msgs[ERROR_WOULD_LOSE_ORPHANED_OVERWRITTEN] = 175_("The following working tree files would be overwritten by sparse checkout update:\n%s"); 176 msgs[ERROR_WOULD_LOSE_ORPHANED_REMOVED] = 177_("The following working tree files would be removed by sparse checkout update:\n%s"); 178 msgs[ERROR_WOULD_LOSE_SUBMODULE] = 179_("Cannot update submodule:\n%s"); 180 181 opts->show_all_errors =1; 182/* rejected paths may not have a static buffer */ 183for(i =0; i <ARRAY_SIZE(opts->unpack_rejects); i++) 184 opts->unpack_rejects[i].strdup_strings =1; 185} 186 187voidclear_unpack_trees_porcelain(struct unpack_trees_options *opts) 188{ 189argv_array_clear(&opts->msgs_to_free); 190memset(opts->msgs,0,sizeof(opts->msgs)); 191} 192 193static intdo_add_entry(struct unpack_trees_options *o,struct cache_entry *ce, 194unsigned int set,unsigned int clear) 195{ 196 clear |= CE_HASHED; 197 198if(set & CE_REMOVE) 199 set |= CE_WT_REMOVE; 200 201 ce->ce_flags = (ce->ce_flags & ~clear) | set; 202returnadd_index_entry(&o->result, ce, 203 ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE); 204} 205 206static voidadd_entry(struct unpack_trees_options *o, 207const struct cache_entry *ce, 208unsigned int set,unsigned int clear) 209{ 210do_add_entry(o,dup_cache_entry(ce, &o->result), set, clear); 211} 212 213/* 214 * add error messages on path <path> 215 * corresponding to the type <e> with the message <msg> 216 * indicating if it should be display in porcelain or not 217 */ 218static intadd_rejected_path(struct unpack_trees_options *o, 219enum unpack_trees_error_types e, 220const char*path) 221{ 222if(o->quiet) 223return-1; 224 225if(!o->show_all_errors) 226returnerror(ERRORMSG(o, e),super_prefixed(path)); 227 228/* 229 * Otherwise, insert in a list for future display by 230 * display_error_msgs() 231 */ 232string_list_append(&o->unpack_rejects[e], path); 233return-1; 234} 235 236/* 237 * display all the error messages stored in a nice way 238 */ 239static voiddisplay_error_msgs(struct unpack_trees_options *o) 240{ 241int e, i; 242int something_displayed =0; 243for(e =0; e < NB_UNPACK_TREES_ERROR_TYPES; e++) { 244struct string_list *rejects = &o->unpack_rejects[e]; 245if(rejects->nr >0) { 246struct strbuf path = STRBUF_INIT; 247 something_displayed =1; 248for(i =0; i < rejects->nr; i++) 249strbuf_addf(&path,"\t%s\n", rejects->items[i].string); 250error(ERRORMSG(o, e),super_prefixed(path.buf)); 251strbuf_release(&path); 252} 253string_list_clear(rejects,0); 254} 255if(something_displayed) 256fprintf(stderr,_("Aborting\n")); 257} 258 259static intcheck_submodule_move_head(const struct cache_entry *ce, 260const char*old_id, 261const char*new_id, 262struct unpack_trees_options *o) 263{ 264unsigned flags = SUBMODULE_MOVE_HEAD_DRY_RUN; 265const struct submodule *sub =submodule_from_ce(ce); 266 267if(!sub) 268return0; 269 270if(o->reset) 271 flags |= SUBMODULE_MOVE_HEAD_FORCE; 272 273if(submodule_move_head(ce->name, old_id, new_id, flags)) 274returnadd_rejected_path(o, ERROR_WOULD_LOSE_SUBMODULE, ce->name); 275return0; 276} 277 278/* 279 * Preform the loading of the repository's gitmodules file. This function is 280 * used by 'check_update()' to perform loading of the gitmodules file in two 281 * differnt situations: 282 * (1) before removing entries from the working tree if the gitmodules file has 283 * been marked for removal. This situation is specified by 'state' == NULL. 284 * (2) before checking out entries to the working tree if the gitmodules file 285 * has been marked for update. This situation is specified by 'state' != NULL. 286 */ 287static voidload_gitmodules_file(struct index_state *index, 288struct checkout *state) 289{ 290int pos =index_name_pos(index, GITMODULES_FILE,strlen(GITMODULES_FILE)); 291 292if(pos >=0) { 293struct cache_entry *ce = index->cache[pos]; 294if(!state && ce->ce_flags & CE_WT_REMOVE) { 295repo_read_gitmodules(the_repository); 296}else if(state && (ce->ce_flags & CE_UPDATE)) { 297submodule_free(the_repository); 298checkout_entry(ce, state, NULL, NULL); 299repo_read_gitmodules(the_repository); 300} 301} 302} 303 304static struct progress *get_progress(struct unpack_trees_options *o) 305{ 306unsigned cnt =0, total =0; 307struct index_state *index = &o->result; 308 309if(!o->update || !o->verbose_update) 310return NULL; 311 312for(; cnt < index->cache_nr; cnt++) { 313const struct cache_entry *ce = index->cache[cnt]; 314if(ce->ce_flags & (CE_UPDATE | CE_WT_REMOVE)) 315 total++; 316} 317 318returnstart_delayed_progress(_("Checking out files"), total); 319} 320 321static voidsetup_collided_checkout_detection(struct checkout *state, 322struct index_state *index) 323{ 324int i; 325 326 state->clone =1; 327for(i =0; i < index->cache_nr; i++) 328 index->cache[i]->ce_flags &= ~CE_MATCHED; 329} 330 331static voidreport_collided_checkout(struct index_state *index) 332{ 333struct string_list list = STRING_LIST_INIT_NODUP; 334int i; 335 336for(i =0; i < index->cache_nr; i++) { 337struct cache_entry *ce = index->cache[i]; 338 339if(!(ce->ce_flags & CE_MATCHED)) 340continue; 341 342string_list_append(&list, ce->name); 343 ce->ce_flags &= ~CE_MATCHED; 344} 345 346 list.cmp = fspathcmp; 347string_list_sort(&list); 348 349if(list.nr) { 350warning(_("the following paths have collided (e.g. case-sensitive paths\n" 351"on a case-insensitive filesystem) and only one from the same\n" 352"colliding group is in the working tree:\n")); 353 354for(i =0; i < list.nr; i++) 355fprintf(stderr," '%s'\n", list.items[i].string); 356} 357 358string_list_clear(&list,0); 359} 360 361static intcheck_updates(struct unpack_trees_options *o) 362{ 363unsigned cnt =0; 364int errs =0; 365struct progress *progress; 366struct index_state *index = &o->result; 367struct checkout state = CHECKOUT_INIT; 368int i; 369 370trace_performance_enter(); 371 state.force =1; 372 state.quiet =1; 373 state.refresh_cache =1; 374 state.istate = index; 375 376if(o->clone) 377setup_collided_checkout_detection(&state, index); 378 379 progress =get_progress(o); 380 381if(o->update) 382git_attr_set_direction(GIT_ATTR_CHECKOUT); 383 384if(should_update_submodules() && o->update && !o->dry_run) 385load_gitmodules_file(index, NULL); 386 387for(i =0; i < index->cache_nr; i++) { 388const struct cache_entry *ce = index->cache[i]; 389 390if(ce->ce_flags & CE_WT_REMOVE) { 391display_progress(progress, ++cnt); 392if(o->update && !o->dry_run) 393unlink_entry(ce); 394} 395} 396remove_marked_cache_entries(index,0); 397remove_scheduled_dirs(); 398 399if(should_update_submodules() && o->update && !o->dry_run) 400load_gitmodules_file(index, &state); 401 402enable_delayed_checkout(&state); 403if(has_promisor_remote() && o->update && !o->dry_run) { 404/* 405 * Prefetch the objects that are to be checked out in the loop 406 * below. 407 */ 408struct oid_array to_fetch = OID_ARRAY_INIT; 409for(i =0; i < index->cache_nr; i++) { 410struct cache_entry *ce = index->cache[i]; 411 412if(!(ce->ce_flags & CE_UPDATE) || 413S_ISGITLINK(ce->ce_mode)) 414continue; 415if(!oid_object_info_extended(the_repository, &ce->oid, 416 NULL, 417 OBJECT_INFO_FOR_PREFETCH)) 418continue; 419oid_array_append(&to_fetch, &ce->oid); 420} 421if(to_fetch.nr) 422promisor_remote_get_direct(the_repository, 423 to_fetch.oid, to_fetch.nr); 424oid_array_clear(&to_fetch); 425} 426for(i =0; i < index->cache_nr; i++) { 427struct cache_entry *ce = index->cache[i]; 428 429if(ce->ce_flags & CE_UPDATE) { 430if(ce->ce_flags & CE_WT_REMOVE) 431BUG("both update and delete flags are set on%s", 432 ce->name); 433display_progress(progress, ++cnt); 434 ce->ce_flags &= ~CE_UPDATE; 435if(o->update && !o->dry_run) { 436 errs |=checkout_entry(ce, &state, NULL, NULL); 437} 438} 439} 440stop_progress(&progress); 441 errs |=finish_delayed_checkout(&state, NULL); 442if(o->update) 443git_attr_set_direction(GIT_ATTR_CHECKIN); 444 445if(o->clone) 446report_collided_checkout(index); 447 448trace_performance_leave("check_updates"); 449return errs !=0; 450} 451 452static intverify_uptodate_sparse(const struct cache_entry *ce, 453struct unpack_trees_options *o); 454static intverify_absent_sparse(const struct cache_entry *ce, 455enum unpack_trees_error_types, 456struct unpack_trees_options *o); 457 458static intapply_sparse_checkout(struct index_state *istate, 459struct cache_entry *ce, 460struct unpack_trees_options *o) 461{ 462int was_skip_worktree =ce_skip_worktree(ce); 463 464if(ce->ce_flags & CE_NEW_SKIP_WORKTREE) 465 ce->ce_flags |= CE_SKIP_WORKTREE; 466else 467 ce->ce_flags &= ~CE_SKIP_WORKTREE; 468if(was_skip_worktree !=ce_skip_worktree(ce)) { 469 ce->ce_flags |= CE_UPDATE_IN_BASE; 470mark_fsmonitor_invalid(istate, ce); 471 istate->cache_changed |= CE_ENTRY_CHANGED; 472} 473 474/* 475 * if (!was_skip_worktree && !ce_skip_worktree()) { 476 * This is perfectly normal. Move on; 477 * } 478 */ 479 480/* 481 * Merge strategies may set CE_UPDATE|CE_REMOVE outside checkout 482 * area as a result of ce_skip_worktree() shortcuts in 483 * verify_absent() and verify_uptodate(). 484 * Make sure they don't modify worktree if they are already 485 * outside checkout area 486 */ 487if(was_skip_worktree &&ce_skip_worktree(ce)) { 488 ce->ce_flags &= ~CE_UPDATE; 489 490/* 491 * By default, when CE_REMOVE is on, CE_WT_REMOVE is also 492 * on to get that file removed from both index and worktree. 493 * If that file is already outside worktree area, don't 494 * bother remove it. 495 */ 496if(ce->ce_flags & CE_REMOVE) 497 ce->ce_flags &= ~CE_WT_REMOVE; 498} 499 500if(!was_skip_worktree &&ce_skip_worktree(ce)) { 501/* 502 * If CE_UPDATE is set, verify_uptodate() must be called already 503 * also stat info may have lost after merged_entry() so calling 504 * verify_uptodate() again may fail 505 */ 506if(!(ce->ce_flags & CE_UPDATE) &&verify_uptodate_sparse(ce, o)) 507return-1; 508 ce->ce_flags |= CE_WT_REMOVE; 509 ce->ce_flags &= ~CE_UPDATE; 510} 511if(was_skip_worktree && !ce_skip_worktree(ce)) { 512if(verify_absent_sparse(ce, ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN, o)) 513return-1; 514 ce->ce_flags |= CE_UPDATE; 515} 516return0; 517} 518 519staticinlineintcall_unpack_fn(const struct cache_entry *const*src, 520struct unpack_trees_options *o) 521{ 522int ret = o->fn(src, o); 523if(ret >0) 524 ret =0; 525return ret; 526} 527 528static voidmark_ce_used(struct cache_entry *ce,struct unpack_trees_options *o) 529{ 530 ce->ce_flags |= CE_UNPACKED; 531 532if(o->cache_bottom < o->src_index->cache_nr && 533 o->src_index->cache[o->cache_bottom] == ce) { 534int bottom = o->cache_bottom; 535while(bottom < o->src_index->cache_nr && 536 o->src_index->cache[bottom]->ce_flags & CE_UNPACKED) 537 bottom++; 538 o->cache_bottom = bottom; 539} 540} 541 542static voidmark_all_ce_unused(struct index_state *index) 543{ 544int i; 545for(i =0; i < index->cache_nr; i++) 546 index->cache[i]->ce_flags &= ~(CE_UNPACKED | CE_ADDED | CE_NEW_SKIP_WORKTREE); 547} 548 549static intlocate_in_src_index(const struct cache_entry *ce, 550struct unpack_trees_options *o) 551{ 552struct index_state *index = o->src_index; 553int len =ce_namelen(ce); 554int pos =index_name_pos(index, ce->name, len); 555if(pos <0) 556 pos = -1- pos; 557return pos; 558} 559 560/* 561 * We call unpack_index_entry() with an unmerged cache entry 562 * only in diff-index, and it wants a single callback. Skip 563 * the other unmerged entry with the same name. 564 */ 565static voidmark_ce_used_same_name(struct cache_entry *ce, 566struct unpack_trees_options *o) 567{ 568struct index_state *index = o->src_index; 569int len =ce_namelen(ce); 570int pos; 571 572for(pos =locate_in_src_index(ce, o); pos < index->cache_nr; pos++) { 573struct cache_entry *next = index->cache[pos]; 574if(len !=ce_namelen(next) || 575memcmp(ce->name, next->name, len)) 576break; 577mark_ce_used(next, o); 578} 579} 580 581static struct cache_entry *next_cache_entry(struct unpack_trees_options *o) 582{ 583const struct index_state *index = o->src_index; 584int pos = o->cache_bottom; 585 586while(pos < index->cache_nr) { 587struct cache_entry *ce = index->cache[pos]; 588if(!(ce->ce_flags & CE_UNPACKED)) 589return ce; 590 pos++; 591} 592return NULL; 593} 594 595static voidadd_same_unmerged(const struct cache_entry *ce, 596struct unpack_trees_options *o) 597{ 598struct index_state *index = o->src_index; 599int len =ce_namelen(ce); 600int pos =index_name_pos(index, ce->name, len); 601 602if(0<= pos) 603die("programming error in a caller of mark_ce_used_same_name"); 604for(pos = -pos -1; pos < index->cache_nr; pos++) { 605struct cache_entry *next = index->cache[pos]; 606if(len !=ce_namelen(next) || 607memcmp(ce->name, next->name, len)) 608break; 609add_entry(o, next,0,0); 610mark_ce_used(next, o); 611} 612} 613 614static intunpack_index_entry(struct cache_entry *ce, 615struct unpack_trees_options *o) 616{ 617const struct cache_entry *src[MAX_UNPACK_TREES +1] = { NULL, }; 618int ret; 619 620 src[0] = ce; 621 622mark_ce_used(ce, o); 623if(ce_stage(ce)) { 624if(o->skip_unmerged) { 625add_entry(o, ce,0,0); 626return0; 627} 628} 629 ret =call_unpack_fn(src, o); 630if(ce_stage(ce)) 631mark_ce_used_same_name(ce, o); 632return ret; 633} 634 635static intfind_cache_pos(struct traverse_info *,const struct name_entry *); 636 637static voidrestore_cache_bottom(struct traverse_info *info,int bottom) 638{ 639struct unpack_trees_options *o = info->data; 640 641if(o->diff_index_cached) 642return; 643 o->cache_bottom = bottom; 644} 645 646static intswitch_cache_bottom(struct traverse_info *info) 647{ 648struct unpack_trees_options *o = info->data; 649int ret, pos; 650 651if(o->diff_index_cached) 652return0; 653 ret = o->cache_bottom; 654 pos =find_cache_pos(info->prev, &info->name); 655 656if(pos < -1) 657 o->cache_bottom = -2- pos; 658else if(pos <0) 659 o->cache_bottom = o->src_index->cache_nr; 660return ret; 661} 662 663staticinlineintare_same_oid(struct name_entry *name_j,struct name_entry *name_k) 664{ 665return!is_null_oid(&name_j->oid) && !is_null_oid(&name_k->oid) &&oideq(&name_j->oid, &name_k->oid); 666} 667 668static intall_trees_same_as_cache_tree(int n,unsigned long dirmask, 669struct name_entry *names, 670struct traverse_info *info) 671{ 672struct unpack_trees_options *o = info->data; 673int i; 674 675if(!o->merge || dirmask != ((1<< n) -1)) 676return0; 677 678for(i =1; i < n; i++) 679if(!are_same_oid(names, names + i)) 680return0; 681 682returncache_tree_matches_traversal(o->src_index->cache_tree, names, info); 683} 684 685static intindex_pos_by_traverse_info(struct name_entry *names, 686struct traverse_info *info) 687{ 688struct unpack_trees_options *o = info->data; 689int len =traverse_path_len(info, names); 690char*name =xmalloc(len +1/* slash */+1/* NUL */); 691int pos; 692 693make_traverse_path(name, info, names); 694 name[len++] ='/'; 695 name[len] ='\0'; 696 pos =index_name_pos(o->src_index, name, len); 697if(pos >=0) 698BUG("This is a directory and should not exist in index"); 699 pos = -pos -1; 700if(!starts_with(o->src_index->cache[pos]->name, name) || 701(pos >0&&starts_with(o->src_index->cache[pos-1]->name, name))) 702BUG("pos must point at the first entry in this directory"); 703free(name); 704return pos; 705} 706 707/* 708 * Fast path if we detect that all trees are the same as cache-tree at this 709 * path. We'll walk these trees in an iterative loop using cache-tree/index 710 * instead of ODB since we already know what these trees contain. 711 */ 712static inttraverse_by_cache_tree(int pos,int nr_entries,int nr_names, 713struct traverse_info *info) 714{ 715struct cache_entry *src[MAX_UNPACK_TREES +1] = { NULL, }; 716struct unpack_trees_options *o = info->data; 717struct cache_entry *tree_ce = NULL; 718int ce_len =0; 719int i, d; 720 721if(!o->merge) 722BUG("We need cache-tree to do this optimization"); 723 724/* 725 * Do what unpack_callback() and unpack_nondirectories() normally 726 * do. But we walk all paths in an iterative loop instead. 727 * 728 * D/F conflicts and higher stage entries are not a concern 729 * because cache-tree would be invalidated and we would never 730 * get here in the first place. 731 */ 732for(i =0; i < nr_entries; i++) { 733int new_ce_len, len, rc; 734 735 src[0] = o->src_index->cache[pos + i]; 736 737 len =ce_namelen(src[0]); 738 new_ce_len =cache_entry_size(len); 739 740if(new_ce_len > ce_len) { 741 new_ce_len <<=1; 742 tree_ce =xrealloc(tree_ce, new_ce_len); 743memset(tree_ce,0, new_ce_len); 744 ce_len = new_ce_len; 745 746 tree_ce->ce_flags =create_ce_flags(0); 747 748for(d =1; d <= nr_names; d++) 749 src[d] = tree_ce; 750} 751 752 tree_ce->ce_mode = src[0]->ce_mode; 753 tree_ce->ce_namelen = len; 754oidcpy(&tree_ce->oid, &src[0]->oid); 755memcpy(tree_ce->name, src[0]->name, len +1); 756 757 rc =call_unpack_fn((const struct cache_entry *const*)src, o); 758if(rc <0) { 759free(tree_ce); 760return rc; 761} 762 763mark_ce_used(src[0], o); 764} 765free(tree_ce); 766if(o->debug_unpack) 767printf("Unpacked%dentries from%sto%susing cache-tree\n", 768 nr_entries, 769 o->src_index->cache[pos]->name, 770 o->src_index->cache[pos + nr_entries -1]->name); 771return0; 772} 773 774static inttraverse_trees_recursive(int n,unsigned long dirmask, 775unsigned long df_conflicts, 776struct name_entry *names, 777struct traverse_info *info) 778{ 779struct unpack_trees_options *o = info->data; 780int i, ret, bottom; 781int nr_buf =0; 782struct tree_desc t[MAX_UNPACK_TREES]; 783void*buf[MAX_UNPACK_TREES]; 784struct traverse_info newinfo; 785struct name_entry *p; 786int nr_entries; 787 788 nr_entries =all_trees_same_as_cache_tree(n, dirmask, names, info); 789if(nr_entries >0) { 790int pos =index_pos_by_traverse_info(names, info); 791 792if(!o->merge || df_conflicts) 793BUG("Wrong condition to get here buddy"); 794 795/* 796 * All entries up to 'pos' must have been processed 797 * (i.e. marked CE_UNPACKED) at this point. But to be safe, 798 * save and restore cache_bottom anyway to not miss 799 * unprocessed entries before 'pos'. 800 */ 801 bottom = o->cache_bottom; 802 ret =traverse_by_cache_tree(pos, nr_entries, n, info); 803 o->cache_bottom = bottom; 804return ret; 805} 806 807 p = names; 808while(!p->mode) 809 p++; 810 811 newinfo = *info; 812 newinfo.prev = info; 813 newinfo.pathspec = info->pathspec; 814 newinfo.name = *p; 815 newinfo.pathlen +=tree_entry_len(p) +1; 816 newinfo.df_conflicts |= df_conflicts; 817 818/* 819 * Fetch the tree from the ODB for each peer directory in the 820 * n commits. 821 * 822 * For 2- and 3-way traversals, we try to avoid hitting the 823 * ODB twice for the same OID. This should yield a nice speed 824 * up in checkouts and merges when the commits are similar. 825 * 826 * We don't bother doing the full O(n^2) search for larger n, 827 * because wider traversals don't happen that often and we 828 * avoid the search setup. 829 * 830 * When 2 peer OIDs are the same, we just copy the tree 831 * descriptor data. This implicitly borrows the buffer 832 * data from the earlier cell. 833 */ 834for(i =0; i < n; i++, dirmask >>=1) { 835if(i >0&&are_same_oid(&names[i], &names[i -1])) 836 t[i] = t[i -1]; 837else if(i >1&&are_same_oid(&names[i], &names[i -2])) 838 t[i] = t[i -2]; 839else{ 840const struct object_id *oid = NULL; 841if(dirmask &1) 842 oid = &names[i].oid; 843 buf[nr_buf++] =fill_tree_descriptor(t + i, oid); 844} 845} 846 847 bottom =switch_cache_bottom(&newinfo); 848 ret =traverse_trees(o->src_index, n, t, &newinfo); 849restore_cache_bottom(&newinfo, bottom); 850 851for(i =0; i < nr_buf; i++) 852free(buf[i]); 853 854return ret; 855} 856 857/* 858 * Compare the traverse-path to the cache entry without actually 859 * having to generate the textual representation of the traverse 860 * path. 861 * 862 * NOTE! This *only* compares up to the size of the traverse path 863 * itself - the caller needs to do the final check for the cache 864 * entry having more data at the end! 865 */ 866static intdo_compare_entry_piecewise(const struct cache_entry *ce,const struct traverse_info *info,const struct name_entry *n) 867{ 868int len, pathlen, ce_len; 869const char*ce_name; 870 871if(info->prev) { 872int cmp =do_compare_entry_piecewise(ce, info->prev, 873&info->name); 874if(cmp) 875return cmp; 876} 877 pathlen = info->pathlen; 878 ce_len =ce_namelen(ce); 879 880/* If ce_len < pathlen then we must have previously hit "name == directory" entry */ 881if(ce_len < pathlen) 882return-1; 883 884 ce_len -= pathlen; 885 ce_name = ce->name + pathlen; 886 887 len =tree_entry_len(n); 888returndf_name_compare(ce_name, ce_len, S_IFREG, n->path, len, n->mode); 889} 890 891static intdo_compare_entry(const struct cache_entry *ce, 892const struct traverse_info *info, 893const struct name_entry *n) 894{ 895int len, pathlen, ce_len; 896const char*ce_name; 897int cmp; 898 899/* 900 * If we have not precomputed the traverse path, it is quicker 901 * to avoid doing so. But if we have precomputed it, 902 * it is quicker to use the precomputed version. 903 */ 904if(!info->traverse_path) 905returndo_compare_entry_piecewise(ce, info, n); 906 907 cmp =strncmp(ce->name, info->traverse_path, info->pathlen); 908if(cmp) 909return cmp; 910 911 pathlen = info->pathlen; 912 ce_len =ce_namelen(ce); 913 914if(ce_len < pathlen) 915return-1; 916 917 ce_len -= pathlen; 918 ce_name = ce->name + pathlen; 919 920 len =tree_entry_len(n); 921returndf_name_compare(ce_name, ce_len, S_IFREG, n->path, len, n->mode); 922} 923 924static intcompare_entry(const struct cache_entry *ce,const struct traverse_info *info,const struct name_entry *n) 925{ 926int cmp =do_compare_entry(ce, info, n); 927if(cmp) 928return cmp; 929 930/* 931 * Even if the beginning compared identically, the ce should 932 * compare as bigger than a directory leading up to it! 933 */ 934returnce_namelen(ce) >traverse_path_len(info, n); 935} 936 937static intce_in_traverse_path(const struct cache_entry *ce, 938const struct traverse_info *info) 939{ 940if(!info->prev) 941return1; 942if(do_compare_entry(ce, info->prev, &info->name)) 943return0; 944/* 945 * If ce (blob) is the same name as the path (which is a tree 946 * we will be descending into), it won't be inside it. 947 */ 948return(info->pathlen <ce_namelen(ce)); 949} 950 951static struct cache_entry *create_ce_entry(const struct traverse_info *info, 952const struct name_entry *n, 953int stage, 954struct index_state *istate, 955int is_transient) 956{ 957int len =traverse_path_len(info, n); 958struct cache_entry *ce = 959 is_transient ? 960make_empty_transient_cache_entry(len) : 961make_empty_cache_entry(istate, len); 962 963 ce->ce_mode =create_ce_mode(n->mode); 964 ce->ce_flags =create_ce_flags(stage); 965 ce->ce_namelen = len; 966oidcpy(&ce->oid, &n->oid); 967make_traverse_path(ce->name, info, n); 968 969return ce; 970} 971 972/* 973 * Note that traverse_by_cache_tree() duplicates some logic in this function 974 * without actually calling it. If you change the logic here you may need to 975 * check and change there as well. 976 */ 977static intunpack_nondirectories(int n,unsigned long mask, 978unsigned long dirmask, 979struct cache_entry **src, 980const struct name_entry *names, 981const struct traverse_info *info) 982{ 983int i; 984struct unpack_trees_options *o = info->data; 985unsigned long conflicts = info->df_conflicts | dirmask; 986 987/* Do we have *only* directories? Nothing to do */ 988if(mask == dirmask && !src[0]) 989return0; 990 991/* 992 * Ok, we've filled in up to any potential index entry in src[0], 993 * now do the rest. 994 */ 995for(i =0; i < n; i++) { 996int stage; 997unsigned int bit =1ul<< i; 998if(conflicts & bit) { 999 src[i + o->merge] = o->df_conflict_entry;1000continue;1001}1002if(!(mask & bit))1003continue;1004if(!o->merge)1005 stage =0;1006else if(i +1< o->head_idx)1007 stage =1;1008else if(i +1> o->head_idx)1009 stage =3;1010else1011 stage =2;10121013/*1014 * If the merge bit is set, then the cache entries are1015 * discarded in the following block. In this case,1016 * construct "transient" cache_entries, as they are1017 * not stored in the index. otherwise construct the1018 * cache entry from the index aware logic.1019 */1020 src[i + o->merge] =create_ce_entry(info, names + i, stage, &o->result, o->merge);1021}10221023if(o->merge) {1024int rc =call_unpack_fn((const struct cache_entry *const*)src,1025 o);1026for(i =0; i < n; i++) {1027struct cache_entry *ce = src[i + o->merge];1028if(ce != o->df_conflict_entry)1029discard_cache_entry(ce);1030}1031return rc;1032}10331034for(i =0; i < n; i++)1035if(src[i] && src[i] != o->df_conflict_entry)1036if(do_add_entry(o, src[i],0,0))1037return-1;10381039return0;1040}10411042static intunpack_failed(struct unpack_trees_options *o,const char*message)1043{1044discard_index(&o->result);1045if(!o->quiet && !o->exiting_early) {1046if(message)1047returnerror("%s", message);1048return-1;1049}1050return-1;1051}10521053/*1054 * The tree traversal is looking at name p. If we have a matching entry,1055 * return it. If name p is a directory in the index, do not return1056 * anything, as we will want to match it when the traversal descends into1057 * the directory.1058 */1059static intfind_cache_pos(struct traverse_info *info,1060const struct name_entry *p)1061{1062int pos;1063struct unpack_trees_options *o = info->data;1064struct index_state *index = o->src_index;1065int pfxlen = info->pathlen;1066int p_len =tree_entry_len(p);10671068for(pos = o->cache_bottom; pos < index->cache_nr; pos++) {1069const struct cache_entry *ce = index->cache[pos];1070const char*ce_name, *ce_slash;1071int cmp, ce_len;10721073if(ce->ce_flags & CE_UNPACKED) {1074/*1075 * cache_bottom entry is already unpacked, so1076 * we can never match it; don't check it1077 * again.1078 */1079if(pos == o->cache_bottom)1080++o->cache_bottom;1081continue;1082}1083if(!ce_in_traverse_path(ce, info)) {1084/*1085 * Check if we can skip future cache checks1086 * (because we're already past all possible1087 * entries in the traverse path).1088 */1089if(info->traverse_path) {1090if(strncmp(ce->name, info->traverse_path,1091 info->pathlen) >0)1092break;1093}1094continue;1095}1096 ce_name = ce->name + pfxlen;1097 ce_slash =strchr(ce_name,'/');1098if(ce_slash)1099 ce_len = ce_slash - ce_name;1100else1101 ce_len =ce_namelen(ce) - pfxlen;1102 cmp =name_compare(p->path, p_len, ce_name, ce_len);1103/*1104 * Exact match; if we have a directory we need to1105 * delay returning it.1106 */1107if(!cmp)1108return ce_slash ? -2- pos : pos;1109if(0< cmp)1110continue;/* keep looking */1111/*1112 * ce_name sorts after p->path; could it be that we1113 * have files under p->path directory in the index?1114 * E.g. ce_name == "t-i", and p->path == "t"; we may1115 * have "t/a" in the index.1116 */1117if(p_len < ce_len && !memcmp(ce_name, p->path, p_len) &&1118 ce_name[p_len] <'/')1119continue;/* keep looking */1120break;1121}1122return-1;1123}11241125static struct cache_entry *find_cache_entry(struct traverse_info *info,1126const struct name_entry *p)1127{1128int pos =find_cache_pos(info, p);1129struct unpack_trees_options *o = info->data;11301131if(0<= pos)1132return o->src_index->cache[pos];1133else1134return NULL;1135}11361137static voiddebug_path(struct traverse_info *info)1138{1139if(info->prev) {1140debug_path(info->prev);1141if(*info->prev->name.path)1142putchar('/');1143}1144printf("%s", info->name.path);1145}11461147static voiddebug_name_entry(int i,struct name_entry *n)1148{1149printf("ent#%d %06o%s\n", i,1150 n->path ? n->mode :0,1151 n->path ? n->path :"(missing)");1152}11531154static voiddebug_unpack_callback(int n,1155unsigned long mask,1156unsigned long dirmask,1157struct name_entry *names,1158struct traverse_info *info)1159{1160int i;1161printf("* unpack mask%lu, dirmask%lu, cnt%d",1162 mask, dirmask, n);1163debug_path(info);1164putchar('\n');1165for(i =0; i < n; i++)1166debug_name_entry(i, names + i);1167}11681169/*1170 * Note that traverse_by_cache_tree() duplicates some logic in this function1171 * without actually calling it. If you change the logic here you may need to1172 * check and change there as well.1173 */1174static intunpack_callback(int n,unsigned long mask,unsigned long dirmask,struct name_entry *names,struct traverse_info *info)1175{1176struct cache_entry *src[MAX_UNPACK_TREES +1] = { NULL, };1177struct unpack_trees_options *o = info->data;1178const struct name_entry *p = names;11791180/* Find first entry with a real name (we could use "mask" too) */1181while(!p->mode)1182 p++;11831184if(o->debug_unpack)1185debug_unpack_callback(n, mask, dirmask, names, info);11861187/* Are we supposed to look at the index too? */1188if(o->merge) {1189while(1) {1190int cmp;1191struct cache_entry *ce;11921193if(o->diff_index_cached)1194 ce =next_cache_entry(o);1195else1196 ce =find_cache_entry(info, p);11971198if(!ce)1199break;1200 cmp =compare_entry(ce, info, p);1201if(cmp <0) {1202if(unpack_index_entry(ce, o) <0)1203returnunpack_failed(o, NULL);1204continue;1205}1206if(!cmp) {1207if(ce_stage(ce)) {1208/*1209 * If we skip unmerged index1210 * entries, we'll skip this1211 * entry *and* the tree1212 * entries associated with it!1213 */1214if(o->skip_unmerged) {1215add_same_unmerged(ce, o);1216return mask;1217}1218}1219 src[0] = ce;1220}1221break;1222}1223}12241225if(unpack_nondirectories(n, mask, dirmask, src, names, info) <0)1226return-1;12271228if(o->merge && src[0]) {1229if(ce_stage(src[0]))1230mark_ce_used_same_name(src[0], o);1231else1232mark_ce_used(src[0], o);1233}12341235/* Now handle any directories.. */1236if(dirmask) {1237/* special case: "diff-index --cached" looking at a tree */1238if(o->diff_index_cached &&1239 n ==1&& dirmask ==1&&S_ISDIR(names->mode)) {1240int matches;1241 matches =cache_tree_matches_traversal(o->src_index->cache_tree,1242 names, info);1243/*1244 * Everything under the name matches; skip the1245 * entire hierarchy. diff_index_cached codepath1246 * special cases D/F conflicts in such a way that1247 * it does not do any look-ahead, so this is safe.1248 */1249if(matches) {1250 o->cache_bottom += matches;1251return mask;1252}1253}12541255if(traverse_trees_recursive(n, dirmask, mask & ~dirmask,1256 names, info) <0)1257return-1;1258return mask;1259}12601261return mask;1262}12631264static intclear_ce_flags_1(struct index_state *istate,1265struct cache_entry **cache,int nr,1266struct strbuf *prefix,1267int select_mask,int clear_mask,1268struct exclude_list *el,int defval);12691270/* Whole directory matching */1271static intclear_ce_flags_dir(struct index_state *istate,1272struct cache_entry **cache,int nr,1273struct strbuf *prefix,1274char*basename,1275int select_mask,int clear_mask,1276struct exclude_list *el,int defval)1277{1278struct cache_entry **cache_end;1279int dtype = DT_DIR;1280int ret =is_excluded_from_list(prefix->buf, prefix->len,1281 basename, &dtype, el, istate);1282int rc;12831284strbuf_addch(prefix,'/');12851286/* If undecided, use matching result of parent dir in defval */1287if(ret <0)1288 ret = defval;12891290for(cache_end = cache; cache_end != cache + nr; cache_end++) {1291struct cache_entry *ce = *cache_end;1292if(strncmp(ce->name, prefix->buf, prefix->len))1293break;1294}12951296/*1297 * TODO: check el, if there are no patterns that may conflict1298 * with ret (iow, we know in advance the incl/excl1299 * decision for the entire directory), clear flag here without1300 * calling clear_ce_flags_1(). That function will call1301 * the expensive is_excluded_from_list() on every entry.1302 */1303 rc =clear_ce_flags_1(istate, cache, cache_end - cache,1304 prefix,1305 select_mask, clear_mask,1306 el, ret);1307strbuf_setlen(prefix, prefix->len -1);1308return rc;1309}13101311/*1312 * Traverse the index, find every entry that matches according to1313 * o->el. Do "ce_flags &= ~clear_mask" on those entries. Return the1314 * number of traversed entries.1315 *1316 * If select_mask is non-zero, only entries whose ce_flags has on of1317 * those bits enabled are traversed.1318 *1319 * cache : pointer to an index entry1320 * prefix_len : an offset to its path1321 *1322 * The current path ("prefix") including the trailing '/' is1323 * cache[0]->name[0..(prefix_len-1)]1324 * Top level path has prefix_len zero.1325 */1326static intclear_ce_flags_1(struct index_state *istate,1327struct cache_entry **cache,int nr,1328struct strbuf *prefix,1329int select_mask,int clear_mask,1330struct exclude_list *el,int defval)1331{1332struct cache_entry **cache_end = cache + nr;13331334/*1335 * Process all entries that have the given prefix and meet1336 * select_mask condition1337 */1338while(cache != cache_end) {1339struct cache_entry *ce = *cache;1340const char*name, *slash;1341int len, dtype, ret;13421343if(select_mask && !(ce->ce_flags & select_mask)) {1344 cache++;1345continue;1346}13471348if(prefix->len &&strncmp(ce->name, prefix->buf, prefix->len))1349break;13501351 name = ce->name + prefix->len;1352 slash =strchr(name,'/');13531354/* If it's a directory, try whole directory match first */1355if(slash) {1356int processed;13571358 len = slash - name;1359strbuf_add(prefix, name, len);13601361 processed =clear_ce_flags_dir(istate, cache, cache_end - cache,1362 prefix,1363 prefix->buf + prefix->len - len,1364 select_mask, clear_mask,1365 el, defval);13661367/* clear_c_f_dir eats a whole dir already? */1368if(processed) {1369 cache += processed;1370strbuf_setlen(prefix, prefix->len - len);1371continue;1372}13731374strbuf_addch(prefix,'/');1375 cache +=clear_ce_flags_1(istate, cache, cache_end - cache,1376 prefix,1377 select_mask, clear_mask, el, defval);1378strbuf_setlen(prefix, prefix->len - len -1);1379continue;1380}13811382/* Non-directory */1383 dtype =ce_to_dtype(ce);1384 ret =is_excluded_from_list(ce->name,ce_namelen(ce),1385 name, &dtype, el, istate);1386if(ret <0)1387 ret = defval;1388if(ret >0)1389 ce->ce_flags &= ~clear_mask;1390 cache++;1391}1392return nr - (cache_end - cache);1393}13941395static intclear_ce_flags(struct index_state *istate,1396int select_mask,int clear_mask,1397struct exclude_list *el)1398{1399static struct strbuf prefix = STRBUF_INIT;14001401strbuf_reset(&prefix);14021403returnclear_ce_flags_1(istate,1404 istate->cache,1405 istate->cache_nr,1406&prefix,1407 select_mask, clear_mask,1408 el,0);1409}14101411/*1412 * Set/Clear CE_NEW_SKIP_WORKTREE according to $GIT_DIR/info/sparse-checkout1413 */1414static voidmark_new_skip_worktree(struct exclude_list *el,1415struct index_state *istate,1416int select_flag,int skip_wt_flag)1417{1418int i;14191420/*1421 * 1. Pretend the narrowest worktree: only unmerged entries1422 * are checked out1423 */1424for(i =0; i < istate->cache_nr; i++) {1425struct cache_entry *ce = istate->cache[i];14261427if(select_flag && !(ce->ce_flags & select_flag))1428continue;14291430if(!ce_stage(ce) && !(ce->ce_flags & CE_CONFLICTED))1431 ce->ce_flags |= skip_wt_flag;1432else1433 ce->ce_flags &= ~skip_wt_flag;1434}14351436/*1437 * 2. Widen worktree according to sparse-checkout file.1438 * Matched entries will have skip_wt_flag cleared (i.e. "in")1439 */1440clear_ce_flags(istate, select_flag, skip_wt_flag, el);1441}14421443static intverify_absent(const struct cache_entry *,1444enum unpack_trees_error_types,1445struct unpack_trees_options *);1446/*1447 * N-way merge "len" trees. Returns 0 on success, -1 on failure to manipulate the1448 * resulting index, -2 on failure to reflect the changes to the work tree.1449 *1450 * CE_ADDED, CE_UNPACKED and CE_NEW_SKIP_WORKTREE are used internally1451 */1452intunpack_trees(unsigned len,struct tree_desc *t,struct unpack_trees_options *o)1453{1454int i, ret;1455static struct cache_entry *dfc;1456struct exclude_list el;14571458if(len > MAX_UNPACK_TREES)1459die("unpack_trees takes at most%dtrees", MAX_UNPACK_TREES);14601461trace_performance_enter();1462memset(&el,0,sizeof(el));1463if(!core_apply_sparse_checkout || !o->update)1464 o->skip_sparse_checkout =1;1465if(!o->skip_sparse_checkout) {1466char*sparse =git_pathdup("info/sparse-checkout");1467if(add_excludes_from_file_to_list(sparse,"",0, &el, NULL) <0)1468 o->skip_sparse_checkout =1;1469else1470 o->el = ⪙1471free(sparse);1472}14731474memset(&o->result,0,sizeof(o->result));1475 o->result.initialized =1;1476 o->result.timestamp.sec = o->src_index->timestamp.sec;1477 o->result.timestamp.nsec = o->src_index->timestamp.nsec;1478 o->result.version = o->src_index->version;1479if(!o->src_index->split_index) {1480 o->result.split_index = NULL;1481}else if(o->src_index == o->dst_index) {1482/*1483 * o->dst_index (and thus o->src_index) will be discarded1484 * and overwritten with o->result at the end of this function,1485 * so just use src_index's split_index to avoid having to1486 * create a new one.1487 */1488 o->result.split_index = o->src_index->split_index;1489 o->result.split_index->refcount++;1490}else{1491 o->result.split_index =init_split_index(&o->result);1492}1493oidcpy(&o->result.oid, &o->src_index->oid);1494 o->merge_size = len;1495mark_all_ce_unused(o->src_index);14961497/*1498 * Sparse checkout loop #1: set NEW_SKIP_WORKTREE on existing entries1499 */1500if(!o->skip_sparse_checkout)1501mark_new_skip_worktree(o->el, o->src_index,0, CE_NEW_SKIP_WORKTREE);15021503if(!dfc)1504 dfc =xcalloc(1,cache_entry_size(0));1505 o->df_conflict_entry = dfc;15061507if(len) {1508const char*prefix = o->prefix ? o->prefix :"";1509struct traverse_info info;15101511setup_traverse_info(&info, prefix);1512 info.fn = unpack_callback;1513 info.data = o;1514 info.show_all_errors = o->show_all_errors;1515 info.pathspec = o->pathspec;15161517if(o->prefix) {1518/*1519 * Unpack existing index entries that sort before the1520 * prefix the tree is spliced into. Note that o->merge1521 * is always true in this case.1522 */1523while(1) {1524struct cache_entry *ce =next_cache_entry(o);1525if(!ce)1526break;1527if(ce_in_traverse_path(ce, &info))1528break;1529if(unpack_index_entry(ce, o) <0)1530goto return_failed;1531}1532}15331534trace_performance_enter();1535 ret =traverse_trees(o->src_index, len, t, &info);1536trace_performance_leave("traverse_trees");1537if(ret <0)1538goto return_failed;1539}15401541/* Any left-over entries in the index? */1542if(o->merge) {1543while(1) {1544struct cache_entry *ce =next_cache_entry(o);1545if(!ce)1546break;1547if(unpack_index_entry(ce, o) <0)1548goto return_failed;1549}1550}1551mark_all_ce_unused(o->src_index);15521553if(o->trivial_merges_only && o->nontrivial_merge) {1554 ret =unpack_failed(o,"Merge requires file-level merging");1555goto done;1556}15571558if(!o->skip_sparse_checkout) {1559int empty_worktree =1;15601561/*1562 * Sparse checkout loop #2: set NEW_SKIP_WORKTREE on entries not in loop #11563 * If the will have NEW_SKIP_WORKTREE, also set CE_SKIP_WORKTREE1564 * so apply_sparse_checkout() won't attempt to remove it from worktree1565 */1566mark_new_skip_worktree(o->el, &o->result, CE_ADDED, CE_SKIP_WORKTREE | CE_NEW_SKIP_WORKTREE);15671568 ret =0;1569for(i =0; i < o->result.cache_nr; i++) {1570struct cache_entry *ce = o->result.cache[i];15711572/*1573 * Entries marked with CE_ADDED in merged_entry() do not have1574 * verify_absent() check (the check is effectively disabled1575 * because CE_NEW_SKIP_WORKTREE is set unconditionally).1576 *1577 * Do the real check now because we have had1578 * correct CE_NEW_SKIP_WORKTREE1579 */1580if(ce->ce_flags & CE_ADDED &&1581verify_absent(ce, ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN, o)) {1582if(!o->show_all_errors)1583goto return_failed;1584 ret = -1;1585}15861587if(apply_sparse_checkout(&o->result, ce, o)) {1588if(!o->show_all_errors)1589goto return_failed;1590 ret = -1;1591}1592if(!ce_skip_worktree(ce))1593 empty_worktree =0;15941595}1596if(ret <0)1597goto return_failed;1598/*1599 * Sparse checkout is meant to narrow down checkout area1600 * but it does not make sense to narrow down to empty working1601 * tree. This is usually a mistake in sparse checkout rules.1602 * Do not allow users to do that.1603 */1604if(o->result.cache_nr && empty_worktree) {1605 ret =unpack_failed(o,"Sparse checkout leaves no entry on working directory");1606goto done;1607}1608}16091610 ret =check_updates(o) ? (-2) :0;1611if(o->dst_index) {1612move_index_extensions(&o->result, o->src_index);1613if(!ret) {1614if(git_env_bool("GIT_TEST_CHECK_CACHE_TREE",0))1615cache_tree_verify(the_repository, &o->result);1616if(!o->result.cache_tree)1617 o->result.cache_tree =cache_tree();1618if(!cache_tree_fully_valid(o->result.cache_tree))1619cache_tree_update(&o->result,1620 WRITE_TREE_SILENT |1621 WRITE_TREE_REPAIR);1622}16231624 o->result.updated_workdir =1;1625discard_index(o->dst_index);1626*o->dst_index = o->result;1627}else{1628discard_index(&o->result);1629}1630 o->src_index = NULL;16311632done:1633trace_performance_leave("unpack_trees");1634clear_exclude_list(&el);1635return ret;16361637return_failed:1638if(o->show_all_errors)1639display_error_msgs(o);1640mark_all_ce_unused(o->src_index);1641 ret =unpack_failed(o, NULL);1642if(o->exiting_early)1643 ret =0;1644goto done;1645}16461647/* Here come the merge functions */16481649static intreject_merge(const struct cache_entry *ce,1650struct unpack_trees_options *o)1651{1652returnadd_rejected_path(o, ERROR_WOULD_OVERWRITE, ce->name);1653}16541655static intsame(const struct cache_entry *a,const struct cache_entry *b)1656{1657if(!!a != !!b)1658return0;1659if(!a && !b)1660return1;1661if((a->ce_flags | b->ce_flags) & CE_CONFLICTED)1662return0;1663return a->ce_mode == b->ce_mode &&1664oideq(&a->oid, &b->oid);1665}166616671668/*1669 * When a CE gets turned into an unmerged entry, we1670 * want it to be up-to-date1671 */1672static intverify_uptodate_1(const struct cache_entry *ce,1673struct unpack_trees_options *o,1674enum unpack_trees_error_types error_type)1675{1676struct stat st;16771678if(o->index_only)1679return0;16801681/*1682 * CE_VALID and CE_SKIP_WORKTREE cheat, we better check again1683 * if this entry is truly up-to-date because this file may be1684 * overwritten.1685 */1686if((ce->ce_flags & CE_VALID) ||ce_skip_worktree(ce))1687;/* keep checking */1688else if(o->reset ||ce_uptodate(ce))1689return0;16901691if(!lstat(ce->name, &st)) {1692int flags = CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE;1693unsigned changed =ie_match_stat(o->src_index, ce, &st, flags);16941695if(submodule_from_ce(ce)) {1696int r =check_submodule_move_head(ce,1697"HEAD",oid_to_hex(&ce->oid), o);1698if(r)1699returnadd_rejected_path(o, error_type, ce->name);1700return0;1701}17021703if(!changed)1704return0;1705/*1706 * Historic default policy was to allow submodule to be out1707 * of sync wrt the superproject index. If the submodule was1708 * not considered interesting above, we don't care here.1709 */1710if(S_ISGITLINK(ce->ce_mode))1711return0;17121713 errno =0;1714}1715if(errno == ENOENT)1716return0;1717returnadd_rejected_path(o, error_type, ce->name);1718}17191720intverify_uptodate(const struct cache_entry *ce,1721struct unpack_trees_options *o)1722{1723if(!o->skip_sparse_checkout && (ce->ce_flags & CE_NEW_SKIP_WORKTREE))1724return0;1725returnverify_uptodate_1(ce, o, ERROR_NOT_UPTODATE_FILE);1726}17271728static intverify_uptodate_sparse(const struct cache_entry *ce,1729struct unpack_trees_options *o)1730{1731returnverify_uptodate_1(ce, o, ERROR_SPARSE_NOT_UPTODATE_FILE);1732}17331734/*1735 * TODO: We should actually invalidate o->result, not src_index [1].1736 * But since cache tree and untracked cache both are not copied to1737 * o->result until unpacking is complete, we invalidate them on1738 * src_index instead with the assumption that they will be copied to1739 * dst_index at the end.1740 *1741 * [1] src_index->cache_tree is also used in unpack_callback() so if1742 * we invalidate o->result, we need to update it to use1743 * o->result.cache_tree as well.1744 */1745static voidinvalidate_ce_path(const struct cache_entry *ce,1746struct unpack_trees_options *o)1747{1748if(!ce)1749return;1750cache_tree_invalidate_path(o->src_index, ce->name);1751untracked_cache_invalidate_path(o->src_index, ce->name,1);1752}17531754/*1755 * Check that checking out ce->sha1 in subdir ce->name is not1756 * going to overwrite any working files.1757 *1758 * Currently, git does not checkout subprojects during a superproject1759 * checkout, so it is not going to overwrite anything.1760 */1761static intverify_clean_submodule(const char*old_sha1,1762const struct cache_entry *ce,1763struct unpack_trees_options *o)1764{1765if(!submodule_from_ce(ce))1766return0;17671768returncheck_submodule_move_head(ce, old_sha1,1769oid_to_hex(&ce->oid), o);1770}17711772static intverify_clean_subdirectory(const struct cache_entry *ce,1773struct unpack_trees_options *o)1774{1775/*1776 * we are about to extract "ce->name"; we would not want to lose1777 * anything in the existing directory there.1778 */1779int namelen;1780int i;1781struct dir_struct d;1782char*pathbuf;1783int cnt =0;17841785if(S_ISGITLINK(ce->ce_mode)) {1786struct object_id oid;1787int sub_head =resolve_gitlink_ref(ce->name,"HEAD", &oid);1788/*1789 * If we are not going to update the submodule, then1790 * we don't care.1791 */1792if(!sub_head &&oideq(&oid, &ce->oid))1793return0;1794returnverify_clean_submodule(sub_head ? NULL :oid_to_hex(&oid),1795 ce, o);1796}17971798/*1799 * First let's make sure we do not have a local modification1800 * in that directory.1801 */1802 namelen =ce_namelen(ce);1803for(i =locate_in_src_index(ce, o);1804 i < o->src_index->cache_nr;1805 i++) {1806struct cache_entry *ce2 = o->src_index->cache[i];1807int len =ce_namelen(ce2);1808if(len < namelen ||1809strncmp(ce->name, ce2->name, namelen) ||1810 ce2->name[namelen] !='/')1811break;1812/*1813 * ce2->name is an entry in the subdirectory to be1814 * removed.1815 */1816if(!ce_stage(ce2)) {1817if(verify_uptodate(ce2, o))1818return-1;1819add_entry(o, ce2, CE_REMOVE,0);1820invalidate_ce_path(ce, o);1821mark_ce_used(ce2, o);1822}1823 cnt++;1824}18251826/*1827 * Then we need to make sure that we do not lose a locally1828 * present file that is not ignored.1829 */1830 pathbuf =xstrfmt("%.*s/", namelen, ce->name);18311832memset(&d,0,sizeof(d));1833if(o->dir)1834 d.exclude_per_dir = o->dir->exclude_per_dir;1835 i =read_directory(&d, o->src_index, pathbuf, namelen+1, NULL);1836if(i)1837returnadd_rejected_path(o, ERROR_NOT_UPTODATE_DIR, ce->name);1838free(pathbuf);1839return cnt;1840}18411842/*1843 * This gets called when there was no index entry for the tree entry 'dst',1844 * but we found a file in the working tree that 'lstat()' said was fine,1845 * and we're on a case-insensitive filesystem.1846 *1847 * See if we can find a case-insensitive match in the index that also1848 * matches the stat information, and assume it's that other file!1849 */1850static inticase_exists(struct unpack_trees_options *o,const char*name,int len,struct stat *st)1851{1852const struct cache_entry *src;18531854 src =index_file_exists(o->src_index, name, len,1);1855return src && !ie_match_stat(o->src_index, src, st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);1856}18571858static intcheck_ok_to_remove(const char*name,int len,int dtype,1859const struct cache_entry *ce,struct stat *st,1860enum unpack_trees_error_types error_type,1861struct unpack_trees_options *o)1862{1863const struct cache_entry *result;18641865/*1866 * It may be that the 'lstat()' succeeded even though1867 * target 'ce' was absent, because there is an old1868 * entry that is different only in case..1869 *1870 * Ignore that lstat() if it matches.1871 */1872if(ignore_case &&icase_exists(o, name, len, st))1873return0;18741875if(o->dir &&1876is_excluded(o->dir, o->src_index, name, &dtype))1877/*1878 * ce->name is explicitly excluded, so it is Ok to1879 * overwrite it.1880 */1881return0;1882if(S_ISDIR(st->st_mode)) {1883/*1884 * We are checking out path "foo" and1885 * found "foo/." in the working tree.1886 * This is tricky -- if we have modified1887 * files that are in "foo/" we would lose1888 * them.1889 */1890if(verify_clean_subdirectory(ce, o) <0)1891return-1;1892return0;1893}18941895/*1896 * The previous round may already have decided to1897 * delete this path, which is in a subdirectory that1898 * is being replaced with a blob.1899 */1900 result =index_file_exists(&o->result, name, len,0);1901if(result) {1902if(result->ce_flags & CE_REMOVE)1903return0;1904}19051906returnadd_rejected_path(o, error_type, name);1907}19081909/*1910 * We do not want to remove or overwrite a working tree file that1911 * is not tracked, unless it is ignored.1912 */1913static intverify_absent_1(const struct cache_entry *ce,1914enum unpack_trees_error_types error_type,1915struct unpack_trees_options *o)1916{1917int len;1918struct stat st;19191920if(o->index_only || o->reset || !o->update)1921return0;19221923 len =check_leading_path(ce->name,ce_namelen(ce));1924if(!len)1925return0;1926else if(len >0) {1927char*path;1928int ret;19291930 path =xmemdupz(ce->name, len);1931if(lstat(path, &st))1932 ret =error_errno("cannot stat '%s'", path);1933else{1934if(submodule_from_ce(ce))1935 ret =check_submodule_move_head(ce,1936oid_to_hex(&ce->oid),1937 NULL, o);1938else1939 ret =check_ok_to_remove(path, len, DT_UNKNOWN, NULL,1940&st, error_type, o);1941}1942free(path);1943return ret;1944}else if(lstat(ce->name, &st)) {1945if(errno != ENOENT)1946returnerror_errno("cannot stat '%s'", ce->name);1947return0;1948}else{1949if(submodule_from_ce(ce))1950returncheck_submodule_move_head(ce,oid_to_hex(&ce->oid),1951 NULL, o);19521953returncheck_ok_to_remove(ce->name,ce_namelen(ce),1954ce_to_dtype(ce), ce, &st,1955 error_type, o);1956}1957}19581959static intverify_absent(const struct cache_entry *ce,1960enum unpack_trees_error_types error_type,1961struct unpack_trees_options *o)1962{1963if(!o->skip_sparse_checkout && (ce->ce_flags & CE_NEW_SKIP_WORKTREE))1964return0;1965returnverify_absent_1(ce, error_type, o);1966}19671968static intverify_absent_sparse(const struct cache_entry *ce,1969enum unpack_trees_error_types error_type,1970struct unpack_trees_options *o)1971{1972enum unpack_trees_error_types orphaned_error = error_type;1973if(orphaned_error == ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN)1974 orphaned_error = ERROR_WOULD_LOSE_ORPHANED_OVERWRITTEN;19751976returnverify_absent_1(ce, orphaned_error, o);1977}19781979static intmerged_entry(const struct cache_entry *ce,1980const struct cache_entry *old,1981struct unpack_trees_options *o)1982{1983int update = CE_UPDATE;1984struct cache_entry *merge =dup_cache_entry(ce, &o->result);19851986if(!old) {1987/*1988 * New index entries. In sparse checkout, the following1989 * verify_absent() will be delayed until after1990 * traverse_trees() finishes in unpack_trees(), then:1991 *1992 * - CE_NEW_SKIP_WORKTREE will be computed correctly1993 * - verify_absent() be called again, this time with1994 * correct CE_NEW_SKIP_WORKTREE1995 *1996 * verify_absent() call here does nothing in sparse1997 * checkout (i.e. o->skip_sparse_checkout == 0)1998 */1999 update |= CE_ADDED;2000 merge->ce_flags |= CE_NEW_SKIP_WORKTREE;20012002if(verify_absent(merge,2003 ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN, o)) {2004discard_cache_entry(merge);2005return-1;2006}2007invalidate_ce_path(merge, o);20082009if(submodule_from_ce(ce)) {2010int ret =check_submodule_move_head(ce, NULL,2011oid_to_hex(&ce->oid),2012 o);2013if(ret)2014return ret;2015}20162017}else if(!(old->ce_flags & CE_CONFLICTED)) {2018/*2019 * See if we can re-use the old CE directly?2020 * That way we get the uptodate stat info.2021 *2022 * This also removes the UPDATE flag on a match; otherwise2023 * we will end up overwriting local changes in the work tree.2024 */2025if(same(old, merge)) {2026copy_cache_entry(merge, old);2027 update =0;2028}else{2029if(verify_uptodate(old, o)) {2030discard_cache_entry(merge);2031return-1;2032}2033/* Migrate old flags over */2034 update |= old->ce_flags & (CE_SKIP_WORKTREE | CE_NEW_SKIP_WORKTREE);2035invalidate_ce_path(old, o);2036}20372038if(submodule_from_ce(ce)) {2039int ret =check_submodule_move_head(ce,oid_to_hex(&old->oid),2040oid_to_hex(&ce->oid),2041 o);2042if(ret)2043return ret;2044}2045}else{2046/*2047 * Previously unmerged entry left as an existence2048 * marker by read_index_unmerged();2049 */2050invalidate_ce_path(old, o);2051}20522053do_add_entry(o, merge, update, CE_STAGEMASK);2054return1;2055}20562057static intdeleted_entry(const struct cache_entry *ce,2058const struct cache_entry *old,2059struct unpack_trees_options *o)2060{2061/* Did it exist in the index? */2062if(!old) {2063if(verify_absent(ce, ERROR_WOULD_LOSE_UNTRACKED_REMOVED, o))2064return-1;2065return0;2066}2067if(!(old->ce_flags & CE_CONFLICTED) &&verify_uptodate(old, o))2068return-1;2069add_entry(o, ce, CE_REMOVE,0);2070invalidate_ce_path(ce, o);2071return1;2072}20732074static intkeep_entry(const struct cache_entry *ce,2075struct unpack_trees_options *o)2076{2077add_entry(o, ce,0,0);2078if(ce_stage(ce))2079invalidate_ce_path(ce, o);2080return1;2081}20822083#if DBRT_DEBUG2084static voidshow_stage_entry(FILE*o,2085const char*label,const struct cache_entry *ce)2086{2087if(!ce)2088fprintf(o,"%s(missing)\n", label);2089else2090fprintf(o,"%s%06o%s %d\t%s\n",2091 label,2092 ce->ce_mode,2093oid_to_hex(&ce->oid),2094ce_stage(ce),2095 ce->name);2096}2097#endif20982099intthreeway_merge(const struct cache_entry *const*stages,2100struct unpack_trees_options *o)2101{2102const struct cache_entry *index;2103const struct cache_entry *head;2104const struct cache_entry *remote = stages[o->head_idx +1];2105int count;2106int head_match =0;2107int remote_match =0;21082109int df_conflict_head =0;2110int df_conflict_remote =0;21112112int any_anc_missing =0;2113int no_anc_exists =1;2114int i;21152116for(i =1; i < o->head_idx; i++) {2117if(!stages[i] || stages[i] == o->df_conflict_entry)2118 any_anc_missing =1;2119else2120 no_anc_exists =0;2121}21222123 index = stages[0];2124 head = stages[o->head_idx];21252126if(head == o->df_conflict_entry) {2127 df_conflict_head =1;2128 head = NULL;2129}21302131if(remote == o->df_conflict_entry) {2132 df_conflict_remote =1;2133 remote = NULL;2134}21352136/*2137 * First, if there's a #16 situation, note that to prevent #132138 * and #14.2139 */2140if(!same(remote, head)) {2141for(i =1; i < o->head_idx; i++) {2142if(same(stages[i], head)) {2143 head_match = i;2144}2145if(same(stages[i], remote)) {2146 remote_match = i;2147}2148}2149}21502151/*2152 * We start with cases where the index is allowed to match2153 * something other than the head: #14(ALT) and #2ALT, where it2154 * is permitted to match the result instead.2155 */2156/* #14, #14ALT, #2ALT */2157if(remote && !df_conflict_head && head_match && !remote_match) {2158if(index && !same(index, remote) && !same(index, head))2159returnreject_merge(index, o);2160returnmerged_entry(remote, index, o);2161}2162/*2163 * If we have an entry in the index cache, then we want to2164 * make sure that it matches head.2165 */2166if(index && !same(index, head))2167returnreject_merge(index, o);21682169if(head) {2170/* #5ALT, #15 */2171if(same(head, remote))2172returnmerged_entry(head, index, o);2173/* #13, #3ALT */2174if(!df_conflict_remote && remote_match && !head_match)2175returnmerged_entry(head, index, o);2176}21772178/* #1 */2179if(!head && !remote && any_anc_missing)2180return0;21812182/*2183 * Under the "aggressive" rule, we resolve mostly trivial2184 * cases that we historically had git-merge-one-file resolve.2185 */2186if(o->aggressive) {2187int head_deleted = !head;2188int remote_deleted = !remote;2189const struct cache_entry *ce = NULL;21902191if(index)2192 ce = index;2193else if(head)2194 ce = head;2195else if(remote)2196 ce = remote;2197else{2198for(i =1; i < o->head_idx; i++) {2199if(stages[i] && stages[i] != o->df_conflict_entry) {2200 ce = stages[i];2201break;2202}2203}2204}22052206/*2207 * Deleted in both.2208 * Deleted in one and unchanged in the other.2209 */2210if((head_deleted && remote_deleted) ||2211(head_deleted && remote && remote_match) ||2212(remote_deleted && head && head_match)) {2213if(index)2214returndeleted_entry(index, index, o);2215if(ce && !head_deleted) {2216if(verify_absent(ce, ERROR_WOULD_LOSE_UNTRACKED_REMOVED, o))2217return-1;2218}2219return0;2220}2221/*2222 * Added in both, identically.2223 */2224if(no_anc_exists && head && remote &&same(head, remote))2225returnmerged_entry(head, index, o);22262227}22282229/* Below are "no merge" cases, which require that the index be2230 * up-to-date to avoid the files getting overwritten with2231 * conflict resolution files.2232 */2233if(index) {2234if(verify_uptodate(index, o))2235return-1;2236}22372238 o->nontrivial_merge =1;22392240/* #2, #3, #4, #6, #7, #9, #10, #11. */2241 count =0;2242if(!head_match || !remote_match) {2243for(i =1; i < o->head_idx; i++) {2244if(stages[i] && stages[i] != o->df_conflict_entry) {2245keep_entry(stages[i], o);2246 count++;2247break;2248}2249}2250}2251#if DBRT_DEBUG2252else{2253fprintf(stderr,"read-tree: warning #16 detected\n");2254show_stage_entry(stderr,"head ", stages[head_match]);2255show_stage_entry(stderr,"remote ", stages[remote_match]);2256}2257#endif2258if(head) { count +=keep_entry(head, o); }2259if(remote) { count +=keep_entry(remote, o); }2260return count;2261}22622263/*2264 * Two-way merge.2265 *2266 * The rule is to "carry forward" what is in the index without losing2267 * information across a "fast-forward", favoring a successful merge2268 * over a merge failure when it makes sense. For details of the2269 * "carry forward" rule, please see <Documentation/git-read-tree.txt>.2270 *2271 */2272inttwoway_merge(const struct cache_entry *const*src,2273struct unpack_trees_options *o)2274{2275const struct cache_entry *current = src[0];2276const struct cache_entry *oldtree = src[1];2277const struct cache_entry *newtree = src[2];22782279if(o->merge_size !=2)2280returnerror("Cannot do a twoway merge of%dtrees",2281 o->merge_size);22822283if(oldtree == o->df_conflict_entry)2284 oldtree = NULL;2285if(newtree == o->df_conflict_entry)2286 newtree = NULL;22872288if(current) {2289if(current->ce_flags & CE_CONFLICTED) {2290if(same(oldtree, newtree) || o->reset) {2291if(!newtree)2292returndeleted_entry(current, current, o);2293else2294returnmerged_entry(newtree, current, o);2295}2296returnreject_merge(current, o);2297}else if((!oldtree && !newtree) ||/* 4 and 5 */2298(!oldtree && newtree &&2299same(current, newtree)) ||/* 6 and 7 */2300(oldtree && newtree &&2301same(oldtree, newtree)) ||/* 14 and 15 */2302(oldtree && newtree &&2303!same(oldtree, newtree) &&/* 18 and 19 */2304same(current, newtree))) {2305returnkeep_entry(current, o);2306}else if(oldtree && !newtree &&same(current, oldtree)) {2307/* 10 or 11 */2308returndeleted_entry(oldtree, current, o);2309}else if(oldtree && newtree &&2310same(current, oldtree) && !same(current, newtree)) {2311/* 20 or 21 */2312returnmerged_entry(newtree, current, o);2313}else2314returnreject_merge(current, o);2315}2316else if(newtree) {2317if(oldtree && !o->initial_checkout) {2318/*2319 * deletion of the path was staged;2320 */2321if(same(oldtree, newtree))2322return1;2323returnreject_merge(oldtree, o);2324}2325returnmerged_entry(newtree, current, o);2326}2327returndeleted_entry(oldtree, current, o);2328}23292330/*2331 * Bind merge.2332 *2333 * Keep the index entries at stage0, collapse stage1 but make sure2334 * stage0 does not have anything there.2335 */2336intbind_merge(const struct cache_entry *const*src,2337struct unpack_trees_options *o)2338{2339const struct cache_entry *old = src[0];2340const struct cache_entry *a = src[1];23412342if(o->merge_size !=1)2343returnerror("Cannot do a bind merge of%dtrees",2344 o->merge_size);2345if(a && old)2346return o->quiet ? -1:2347error(ERRORMSG(o, ERROR_BIND_OVERLAP),2348super_prefixed(a->name),2349super_prefixed(old->name));2350if(!a)2351returnkeep_entry(old, o);2352else2353returnmerged_entry(a, NULL, o);2354}23552356/*2357 * One-way merge.2358 *2359 * The rule is:2360 * - take the stat information from stage0, take the data from stage12361 */2362intoneway_merge(const struct cache_entry *const*src,2363struct unpack_trees_options *o)2364{2365const struct cache_entry *old = src[0];2366const struct cache_entry *a = src[1];23672368if(o->merge_size !=1)2369returnerror("Cannot do a oneway merge of%dtrees",2370 o->merge_size);23712372if(!a || a == o->df_conflict_entry)2373returndeleted_entry(old, old, o);23742375if(old &&same(old, a)) {2376int update =0;2377if(o->reset && o->update && !ce_uptodate(old) && !ce_skip_worktree(old)) {2378struct stat st;2379if(lstat(old->name, &st) ||2380ie_match_stat(o->src_index, old, &st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE))2381 update |= CE_UPDATE;2382}2383if(o->update &&S_ISGITLINK(old->ce_mode) &&2384should_update_submodules() && !verify_uptodate(old, o))2385 update |= CE_UPDATE;2386add_entry(o, old, update, CE_STAGEMASK);2387return0;2388}2389returnmerged_entry(a, old, o);2390}