1#define NO_THE_INDEX_COMPATIBILITY_MACROS 2#include"cache.h" 3#include"argv-array.h" 4#include"repository.h" 5#include"config.h" 6#include"dir.h" 7#include"tree.h" 8#include"tree-walk.h" 9#include"cache-tree.h" 10#include"unpack-trees.h" 11#include"progress.h" 12#include"refs.h" 13#include"attr.h" 14#include"split-index.h" 15#include"dir.h" 16#include"submodule.h" 17#include"submodule-config.h" 18#include"fsmonitor.h" 19#include"object-store.h" 20#include"fetch-object.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 */ 29static const char*unpack_plumbing_errors[NB_UNPACK_TREES_ERROR_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_SPARSE_NOT_UPTODATE_FILE */ 49"Entry '%s' not uptodate. Cannot update sparse checkout.", 50 51/* ERROR_WOULD_LOSE_ORPHANED_OVERWRITTEN */ 52"Working tree file '%s' would be overwritten by sparse checkout update.", 53 54/* ERROR_WOULD_LOSE_ORPHANED_REMOVED */ 55"Working tree file '%s' would be removed by sparse checkout update.", 56 57/* ERROR_WOULD_LOSE_SUBMODULE */ 58"Submodule '%s' cannot checkout new HEAD.", 59}; 60 61#define ERRORMSG(o,type) \ 62 ( ((o) && (o)->msgs[(type)]) \ 63 ? ((o)->msgs[(type)]) \ 64 : (unpack_plumbing_errors[(type)]) ) 65 66static const char*super_prefixed(const char*path) 67{ 68/* 69 * It is necessary and sufficient to have two static buffers 70 * here, as the return value of this function is fed to 71 * error() using the unpack_*_errors[] templates we see above. 72 */ 73static struct strbuf buf[2] = {STRBUF_INIT, STRBUF_INIT}; 74static int super_prefix_len = -1; 75static unsigned idx =ARRAY_SIZE(buf) -1; 76 77if(super_prefix_len <0) { 78const char*super_prefix =get_super_prefix(); 79if(!super_prefix) { 80 super_prefix_len =0; 81}else{ 82int i; 83for(i =0; i <ARRAY_SIZE(buf); i++) 84strbuf_addstr(&buf[i], super_prefix); 85 super_prefix_len = buf[0].len; 86} 87} 88 89if(!super_prefix_len) 90return path; 91 92if(++idx >=ARRAY_SIZE(buf)) 93 idx =0; 94 95strbuf_setlen(&buf[idx], super_prefix_len); 96strbuf_addstr(&buf[idx], path); 97 98return buf[idx].buf; 99} 100 101voidsetup_unpack_trees_porcelain(struct unpack_trees_options *opts, 102const char*cmd) 103{ 104int i; 105const char**msgs = opts->msgs; 106const char*msg; 107 108argv_array_init(&opts->msgs_to_free); 109 110if(!strcmp(cmd,"checkout")) 111 msg = advice_commit_before_merge 112?_("Your local changes to the following files would be overwritten by checkout:\n%%s" 113"Please commit your changes or stash them before you switch branches.") 114:_("Your local changes to the following files would be overwritten by checkout:\n%%s"); 115else if(!strcmp(cmd,"merge")) 116 msg = advice_commit_before_merge 117?_("Your local changes to the following files would be overwritten by merge:\n%%s" 118"Please commit your changes or stash them before you merge.") 119:_("Your local changes to the following files would be overwritten by merge:\n%%s"); 120else 121 msg = advice_commit_before_merge 122?_("Your local changes to the following files would be overwritten by%s:\n%%s" 123"Please commit your changes or stash them before you%s.") 124:_("Your local changes to the following files would be overwritten by%s:\n%%s"); 125 msgs[ERROR_WOULD_OVERWRITE] = msgs[ERROR_NOT_UPTODATE_FILE] = 126argv_array_pushf(&opts->msgs_to_free, msg, cmd, cmd); 127 128 msgs[ERROR_NOT_UPTODATE_DIR] = 129_("Updating the following directories would lose untracked files in them:\n%s"); 130 131if(!strcmp(cmd,"checkout")) 132 msg = advice_commit_before_merge 133?_("The following untracked working tree files would be removed by checkout:\n%%s" 134"Please move or remove them before you switch branches.") 135:_("The following untracked working tree files would be removed by checkout:\n%%s"); 136else if(!strcmp(cmd,"merge")) 137 msg = advice_commit_before_merge 138?_("The following untracked working tree files would be removed by merge:\n%%s" 139"Please move or remove them before you merge.") 140:_("The following untracked working tree files would be removed by merge:\n%%s"); 141else 142 msg = advice_commit_before_merge 143?_("The following untracked working tree files would be removed by%s:\n%%s" 144"Please move or remove them before you%s.") 145:_("The following untracked working tree files would be removed by%s:\n%%s"); 146 msgs[ERROR_WOULD_LOSE_UNTRACKED_REMOVED] = 147argv_array_pushf(&opts->msgs_to_free, msg, cmd, cmd); 148 149if(!strcmp(cmd,"checkout")) 150 msg = advice_commit_before_merge 151?_("The following untracked working tree files would be overwritten by checkout:\n%%s" 152"Please move or remove them before you switch branches.") 153:_("The following untracked working tree files would be overwritten by checkout:\n%%s"); 154else if(!strcmp(cmd,"merge")) 155 msg = advice_commit_before_merge 156?_("The following untracked working tree files would be overwritten by merge:\n%%s" 157"Please move or remove them before you merge.") 158:_("The following untracked working tree files would be overwritten by merge:\n%%s"); 159else 160 msg = advice_commit_before_merge 161?_("The following untracked working tree files would be overwritten by%s:\n%%s" 162"Please move or remove them before you%s.") 163:_("The following untracked working tree files would be overwritten by%s:\n%%s"); 164 msgs[ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN] = 165argv_array_pushf(&opts->msgs_to_free, msg, cmd, cmd); 166 167/* 168 * Special case: ERROR_BIND_OVERLAP refers to a pair of paths, we 169 * cannot easily display it as a list. 170 */ 171 msgs[ERROR_BIND_OVERLAP] =_("Entry '%s' overlaps with '%s'. Cannot bind."); 172 173 msgs[ERROR_SPARSE_NOT_UPTODATE_FILE] = 174_("Cannot update sparse checkout: the following entries are not up to date:\n%s"); 175 msgs[ERROR_WOULD_LOSE_ORPHANED_OVERWRITTEN] = 176_("The following working tree files would be overwritten by sparse checkout update:\n%s"); 177 msgs[ERROR_WOULD_LOSE_ORPHANED_REMOVED] = 178_("The following working tree files would be removed by sparse checkout update:\n%s"); 179 msgs[ERROR_WOULD_LOSE_SUBMODULE] = 180_("Cannot update submodule:\n%s"); 181 182 opts->show_all_errors =1; 183/* rejected paths may not have a static buffer */ 184for(i =0; i <ARRAY_SIZE(opts->unpack_rejects); i++) 185 opts->unpack_rejects[i].strdup_strings =1; 186} 187 188voidclear_unpack_trees_porcelain(struct unpack_trees_options *opts) 189{ 190argv_array_clear(&opts->msgs_to_free); 191memset(opts->msgs,0,sizeof(opts->msgs)); 192} 193 194static intdo_add_entry(struct unpack_trees_options *o,struct cache_entry *ce, 195unsigned int set,unsigned int clear) 196{ 197 clear |= CE_HASHED; 198 199if(set & CE_REMOVE) 200 set |= CE_WT_REMOVE; 201 202 ce->ce_flags = (ce->ce_flags & ~clear) | set; 203returnadd_index_entry(&o->result, ce, 204 ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE); 205} 206 207static voidadd_entry(struct unpack_trees_options *o, 208const struct cache_entry *ce, 209unsigned int set,unsigned int clear) 210{ 211do_add_entry(o,dup_cache_entry(ce, &o->result), set, clear); 212} 213 214/* 215 * add error messages on path <path> 216 * corresponding to the type <e> with the message <msg> 217 * indicating if it should be display in porcelain or not 218 */ 219static intadd_rejected_path(struct unpack_trees_options *o, 220enum unpack_trees_error_types e, 221const char*path) 222{ 223if(!o->show_all_errors) 224returnerror(ERRORMSG(o, e),super_prefixed(path)); 225 226/* 227 * Otherwise, insert in a list for future display by 228 * display_error_msgs() 229 */ 230string_list_append(&o->unpack_rejects[e], path); 231return-1; 232} 233 234/* 235 * display all the error messages stored in a nice way 236 */ 237static voiddisplay_error_msgs(struct unpack_trees_options *o) 238{ 239int e, i; 240int something_displayed =0; 241for(e =0; e < NB_UNPACK_TREES_ERROR_TYPES; e++) { 242struct string_list *rejects = &o->unpack_rejects[e]; 243if(rejects->nr >0) { 244struct strbuf path = STRBUF_INIT; 245 something_displayed =1; 246for(i =0; i < rejects->nr; i++) 247strbuf_addf(&path,"\t%s\n", rejects->items[i].string); 248error(ERRORMSG(o, e),super_prefixed(path.buf)); 249strbuf_release(&path); 250} 251string_list_clear(rejects,0); 252} 253if(something_displayed) 254fprintf(stderr,_("Aborting\n")); 255} 256 257static intcheck_submodule_move_head(const struct cache_entry *ce, 258const char*old_id, 259const char*new_id, 260struct unpack_trees_options *o) 261{ 262unsigned flags = SUBMODULE_MOVE_HEAD_DRY_RUN; 263const struct submodule *sub =submodule_from_ce(ce); 264 265if(!sub) 266return0; 267 268if(o->reset) 269 flags |= SUBMODULE_MOVE_HEAD_FORCE; 270 271if(submodule_move_head(ce->name, old_id, new_id, flags)) 272return o->gently ? -1: 273add_rejected_path(o, ERROR_WOULD_LOSE_SUBMODULE, ce->name); 274return0; 275} 276 277/* 278 * Preform the loading of the repository's gitmodules file. This function is 279 * used by 'check_update()' to perform loading of the gitmodules file in two 280 * differnt situations: 281 * (1) before removing entries from the working tree if the gitmodules file has 282 * been marked for removal. This situation is specified by 'state' == NULL. 283 * (2) before checking out entries to the working tree if the gitmodules file 284 * has been marked for update. This situation is specified by 'state' != NULL. 285 */ 286static voidload_gitmodules_file(struct index_state *index, 287struct checkout *state) 288{ 289int pos =index_name_pos(index, GITMODULES_FILE,strlen(GITMODULES_FILE)); 290 291if(pos >=0) { 292struct cache_entry *ce = index->cache[pos]; 293if(!state && ce->ce_flags & CE_WT_REMOVE) { 294repo_read_gitmodules(the_repository); 295}else if(state && (ce->ce_flags & CE_UPDATE)) { 296submodule_free(the_repository); 297checkout_entry(ce, state, NULL); 298repo_read_gitmodules(the_repository); 299} 300} 301} 302 303/* 304 * Unlink the last component and schedule the leading directories for 305 * removal, such that empty directories get removed. 306 */ 307static voidunlink_entry(const struct cache_entry *ce) 308{ 309const struct submodule *sub =submodule_from_ce(ce); 310if(sub) { 311/* state.force is set at the caller. */ 312submodule_move_head(ce->name,"HEAD", NULL, 313 SUBMODULE_MOVE_HEAD_FORCE); 314} 315if(!check_leading_path(ce->name,ce_namelen(ce))) 316return; 317if(remove_or_warn(ce->ce_mode, ce->name)) 318return; 319schedule_dir_for_removal(ce->name,ce_namelen(ce)); 320} 321 322static struct progress *get_progress(struct unpack_trees_options *o) 323{ 324unsigned cnt =0, total =0; 325struct index_state *index = &o->result; 326 327if(!o->update || !o->verbose_update) 328return NULL; 329 330for(; cnt < index->cache_nr; cnt++) { 331const struct cache_entry *ce = index->cache[cnt]; 332if(ce->ce_flags & (CE_UPDATE | CE_WT_REMOVE)) 333 total++; 334} 335 336returnstart_delayed_progress(_("Checking out files"), total); 337} 338 339static intcheck_updates(struct unpack_trees_options *o) 340{ 341unsigned cnt =0; 342int errs =0; 343struct progress *progress = NULL; 344struct index_state *index = &o->result; 345struct checkout state = CHECKOUT_INIT; 346int i; 347 348 state.force =1; 349 state.quiet =1; 350 state.refresh_cache =1; 351 state.istate = index; 352 353 progress =get_progress(o); 354 355if(o->update) 356git_attr_set_direction(GIT_ATTR_CHECKOUT, index); 357 358if(should_update_submodules() && o->update && !o->dry_run) 359load_gitmodules_file(index, NULL); 360 361for(i =0; i < index->cache_nr; i++) { 362const struct cache_entry *ce = index->cache[i]; 363 364if(ce->ce_flags & CE_WT_REMOVE) { 365display_progress(progress, ++cnt); 366if(o->update && !o->dry_run) 367unlink_entry(ce); 368} 369} 370remove_marked_cache_entries(index); 371remove_scheduled_dirs(); 372 373if(should_update_submodules() && o->update && !o->dry_run) 374load_gitmodules_file(index, &state); 375 376enable_delayed_checkout(&state); 377if(repository_format_partial_clone && o->update && !o->dry_run) { 378/* 379 * Prefetch the objects that are to be checked out in the loop 380 * below. 381 */ 382struct oid_array to_fetch = OID_ARRAY_INIT; 383int fetch_if_missing_store = fetch_if_missing; 384 fetch_if_missing =0; 385for(i =0; i < index->cache_nr; i++) { 386struct cache_entry *ce = index->cache[i]; 387if((ce->ce_flags & CE_UPDATE) && 388!S_ISGITLINK(ce->ce_mode)) { 389if(!has_object_file(&ce->oid)) 390oid_array_append(&to_fetch, &ce->oid); 391} 392} 393if(to_fetch.nr) 394fetch_objects(repository_format_partial_clone, 395&to_fetch); 396 fetch_if_missing = fetch_if_missing_store; 397oid_array_clear(&to_fetch); 398} 399for(i =0; i < index->cache_nr; i++) { 400struct cache_entry *ce = index->cache[i]; 401 402if(ce->ce_flags & CE_UPDATE) { 403if(ce->ce_flags & CE_WT_REMOVE) 404BUG("both update and delete flags are set on%s", 405 ce->name); 406display_progress(progress, ++cnt); 407 ce->ce_flags &= ~CE_UPDATE; 408if(o->update && !o->dry_run) { 409 errs |=checkout_entry(ce, &state, NULL); 410} 411} 412} 413stop_progress(&progress); 414 errs |=finish_delayed_checkout(&state); 415if(o->update) 416git_attr_set_direction(GIT_ATTR_CHECKIN, NULL); 417return errs !=0; 418} 419 420static intverify_uptodate_sparse(const struct cache_entry *ce, 421struct unpack_trees_options *o); 422static intverify_absent_sparse(const struct cache_entry *ce, 423enum unpack_trees_error_types, 424struct unpack_trees_options *o); 425 426static intapply_sparse_checkout(struct index_state *istate, 427struct cache_entry *ce, 428struct unpack_trees_options *o) 429{ 430int was_skip_worktree =ce_skip_worktree(ce); 431 432if(ce->ce_flags & CE_NEW_SKIP_WORKTREE) 433 ce->ce_flags |= CE_SKIP_WORKTREE; 434else 435 ce->ce_flags &= ~CE_SKIP_WORKTREE; 436if(was_skip_worktree !=ce_skip_worktree(ce)) { 437 ce->ce_flags |= CE_UPDATE_IN_BASE; 438mark_fsmonitor_invalid(istate, ce); 439 istate->cache_changed |= CE_ENTRY_CHANGED; 440} 441 442/* 443 * if (!was_skip_worktree && !ce_skip_worktree()) { 444 * This is perfectly normal. Move on; 445 * } 446 */ 447 448/* 449 * Merge strategies may set CE_UPDATE|CE_REMOVE outside checkout 450 * area as a result of ce_skip_worktree() shortcuts in 451 * verify_absent() and verify_uptodate(). 452 * Make sure they don't modify worktree if they are already 453 * outside checkout area 454 */ 455if(was_skip_worktree &&ce_skip_worktree(ce)) { 456 ce->ce_flags &= ~CE_UPDATE; 457 458/* 459 * By default, when CE_REMOVE is on, CE_WT_REMOVE is also 460 * on to get that file removed from both index and worktree. 461 * If that file is already outside worktree area, don't 462 * bother remove it. 463 */ 464if(ce->ce_flags & CE_REMOVE) 465 ce->ce_flags &= ~CE_WT_REMOVE; 466} 467 468if(!was_skip_worktree &&ce_skip_worktree(ce)) { 469/* 470 * If CE_UPDATE is set, verify_uptodate() must be called already 471 * also stat info may have lost after merged_entry() so calling 472 * verify_uptodate() again may fail 473 */ 474if(!(ce->ce_flags & CE_UPDATE) &&verify_uptodate_sparse(ce, o)) 475return-1; 476 ce->ce_flags |= CE_WT_REMOVE; 477 ce->ce_flags &= ~CE_UPDATE; 478} 479if(was_skip_worktree && !ce_skip_worktree(ce)) { 480if(verify_absent_sparse(ce, ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN, o)) 481return-1; 482 ce->ce_flags |= CE_UPDATE; 483} 484return0; 485} 486 487staticinlineintcall_unpack_fn(const struct cache_entry *const*src, 488struct unpack_trees_options *o) 489{ 490int ret = o->fn(src, o); 491if(ret >0) 492 ret =0; 493return ret; 494} 495 496static voidmark_ce_used(struct cache_entry *ce,struct unpack_trees_options *o) 497{ 498 ce->ce_flags |= CE_UNPACKED; 499 500if(o->cache_bottom < o->src_index->cache_nr && 501 o->src_index->cache[o->cache_bottom] == ce) { 502int bottom = o->cache_bottom; 503while(bottom < o->src_index->cache_nr && 504 o->src_index->cache[bottom]->ce_flags & CE_UNPACKED) 505 bottom++; 506 o->cache_bottom = bottom; 507} 508} 509 510static voidmark_all_ce_unused(struct index_state *index) 511{ 512int i; 513for(i =0; i < index->cache_nr; i++) 514 index->cache[i]->ce_flags &= ~(CE_UNPACKED | CE_ADDED | CE_NEW_SKIP_WORKTREE); 515} 516 517static intlocate_in_src_index(const struct cache_entry *ce, 518struct unpack_trees_options *o) 519{ 520struct index_state *index = o->src_index; 521int len =ce_namelen(ce); 522int pos =index_name_pos(index, ce->name, len); 523if(pos <0) 524 pos = -1- pos; 525return pos; 526} 527 528/* 529 * We call unpack_index_entry() with an unmerged cache entry 530 * only in diff-index, and it wants a single callback. Skip 531 * the other unmerged entry with the same name. 532 */ 533static voidmark_ce_used_same_name(struct cache_entry *ce, 534struct unpack_trees_options *o) 535{ 536struct index_state *index = o->src_index; 537int len =ce_namelen(ce); 538int pos; 539 540for(pos =locate_in_src_index(ce, o); pos < index->cache_nr; pos++) { 541struct cache_entry *next = index->cache[pos]; 542if(len !=ce_namelen(next) || 543memcmp(ce->name, next->name, len)) 544break; 545mark_ce_used(next, o); 546} 547} 548 549static struct cache_entry *next_cache_entry(struct unpack_trees_options *o) 550{ 551const struct index_state *index = o->src_index; 552int pos = o->cache_bottom; 553 554while(pos < index->cache_nr) { 555struct cache_entry *ce = index->cache[pos]; 556if(!(ce->ce_flags & CE_UNPACKED)) 557return ce; 558 pos++; 559} 560return NULL; 561} 562 563static voidadd_same_unmerged(const struct cache_entry *ce, 564struct unpack_trees_options *o) 565{ 566struct index_state *index = o->src_index; 567int len =ce_namelen(ce); 568int pos =index_name_pos(index, ce->name, len); 569 570if(0<= pos) 571die("programming error in a caller of mark_ce_used_same_name"); 572for(pos = -pos -1; pos < index->cache_nr; pos++) { 573struct cache_entry *next = index->cache[pos]; 574if(len !=ce_namelen(next) || 575memcmp(ce->name, next->name, len)) 576break; 577add_entry(o, next,0,0); 578mark_ce_used(next, o); 579} 580} 581 582static intunpack_index_entry(struct cache_entry *ce, 583struct unpack_trees_options *o) 584{ 585const struct cache_entry *src[MAX_UNPACK_TREES +1] = { NULL, }; 586int ret; 587 588 src[0] = ce; 589 590mark_ce_used(ce, o); 591if(ce_stage(ce)) { 592if(o->skip_unmerged) { 593add_entry(o, ce,0,0); 594return0; 595} 596} 597 ret =call_unpack_fn(src, o); 598if(ce_stage(ce)) 599mark_ce_used_same_name(ce, o); 600return ret; 601} 602 603static intfind_cache_pos(struct traverse_info *,const struct name_entry *); 604 605static voidrestore_cache_bottom(struct traverse_info *info,int bottom) 606{ 607struct unpack_trees_options *o = info->data; 608 609if(o->diff_index_cached) 610return; 611 o->cache_bottom = bottom; 612} 613 614static intswitch_cache_bottom(struct traverse_info *info) 615{ 616struct unpack_trees_options *o = info->data; 617int ret, pos; 618 619if(o->diff_index_cached) 620return0; 621 ret = o->cache_bottom; 622 pos =find_cache_pos(info->prev, &info->name); 623 624if(pos < -1) 625 o->cache_bottom = -2- pos; 626else if(pos <0) 627 o->cache_bottom = o->src_index->cache_nr; 628return ret; 629} 630 631staticinlineintare_same_oid(struct name_entry *name_j,struct name_entry *name_k) 632{ 633return name_j->oid && name_k->oid && !oidcmp(name_j->oid, name_k->oid); 634} 635 636static inttraverse_trees_recursive(int n,unsigned long dirmask, 637unsigned long df_conflicts, 638struct name_entry *names, 639struct traverse_info *info) 640{ 641int i, ret, bottom; 642int nr_buf =0; 643struct tree_desc t[MAX_UNPACK_TREES]; 644void*buf[MAX_UNPACK_TREES]; 645struct traverse_info newinfo; 646struct name_entry *p; 647 648 p = names; 649while(!p->mode) 650 p++; 651 652 newinfo = *info; 653 newinfo.prev = info; 654 newinfo.pathspec = info->pathspec; 655 newinfo.name = *p; 656 newinfo.pathlen +=tree_entry_len(p) +1; 657 newinfo.df_conflicts |= df_conflicts; 658 659/* 660 * Fetch the tree from the ODB for each peer directory in the 661 * n commits. 662 * 663 * For 2- and 3-way traversals, we try to avoid hitting the 664 * ODB twice for the same OID. This should yield a nice speed 665 * up in checkouts and merges when the commits are similar. 666 * 667 * We don't bother doing the full O(n^2) search for larger n, 668 * because wider traversals don't happen that often and we 669 * avoid the search setup. 670 * 671 * When 2 peer OIDs are the same, we just copy the tree 672 * descriptor data. This implicitly borrows the buffer 673 * data from the earlier cell. 674 */ 675for(i =0; i < n; i++, dirmask >>=1) { 676if(i >0&&are_same_oid(&names[i], &names[i -1])) 677 t[i] = t[i -1]; 678else if(i >1&&are_same_oid(&names[i], &names[i -2])) 679 t[i] = t[i -2]; 680else{ 681const struct object_id *oid = NULL; 682if(dirmask &1) 683 oid = names[i].oid; 684 buf[nr_buf++] =fill_tree_descriptor(t + i, oid); 685} 686} 687 688 bottom =switch_cache_bottom(&newinfo); 689 ret =traverse_trees(n, t, &newinfo); 690restore_cache_bottom(&newinfo, bottom); 691 692for(i =0; i < nr_buf; i++) 693free(buf[i]); 694 695return ret; 696} 697 698/* 699 * Compare the traverse-path to the cache entry without actually 700 * having to generate the textual representation of the traverse 701 * path. 702 * 703 * NOTE! This *only* compares up to the size of the traverse path 704 * itself - the caller needs to do the final check for the cache 705 * entry having more data at the end! 706 */ 707static intdo_compare_entry_piecewise(const struct cache_entry *ce,const struct traverse_info *info,const struct name_entry *n) 708{ 709int len, pathlen, ce_len; 710const char*ce_name; 711 712if(info->prev) { 713int cmp =do_compare_entry_piecewise(ce, info->prev, 714&info->name); 715if(cmp) 716return cmp; 717} 718 pathlen = info->pathlen; 719 ce_len =ce_namelen(ce); 720 721/* If ce_len < pathlen then we must have previously hit "name == directory" entry */ 722if(ce_len < pathlen) 723return-1; 724 725 ce_len -= pathlen; 726 ce_name = ce->name + pathlen; 727 728 len =tree_entry_len(n); 729returndf_name_compare(ce_name, ce_len, S_IFREG, n->path, len, n->mode); 730} 731 732static intdo_compare_entry(const struct cache_entry *ce, 733const struct traverse_info *info, 734const struct name_entry *n) 735{ 736int len, pathlen, ce_len; 737const char*ce_name; 738int cmp; 739 740/* 741 * If we have not precomputed the traverse path, it is quicker 742 * to avoid doing so. But if we have precomputed it, 743 * it is quicker to use the precomputed version. 744 */ 745if(!info->traverse_path) 746returndo_compare_entry_piecewise(ce, info, n); 747 748 cmp =strncmp(ce->name, info->traverse_path, info->pathlen); 749if(cmp) 750return cmp; 751 752 pathlen = info->pathlen; 753 ce_len =ce_namelen(ce); 754 755if(ce_len < pathlen) 756return-1; 757 758 ce_len -= pathlen; 759 ce_name = ce->name + pathlen; 760 761 len =tree_entry_len(n); 762returndf_name_compare(ce_name, ce_len, S_IFREG, n->path, len, n->mode); 763} 764 765static intcompare_entry(const struct cache_entry *ce,const struct traverse_info *info,const struct name_entry *n) 766{ 767int cmp =do_compare_entry(ce, info, n); 768if(cmp) 769return cmp; 770 771/* 772 * Even if the beginning compared identically, the ce should 773 * compare as bigger than a directory leading up to it! 774 */ 775returnce_namelen(ce) >traverse_path_len(info, n); 776} 777 778static intce_in_traverse_path(const struct cache_entry *ce, 779const struct traverse_info *info) 780{ 781if(!info->prev) 782return1; 783if(do_compare_entry(ce, info->prev, &info->name)) 784return0; 785/* 786 * If ce (blob) is the same name as the path (which is a tree 787 * we will be descending into), it won't be inside it. 788 */ 789return(info->pathlen <ce_namelen(ce)); 790} 791 792static struct cache_entry *create_ce_entry(const struct traverse_info *info, 793const struct name_entry *n, 794int stage, 795struct index_state *istate, 796int is_transient) 797{ 798int len =traverse_path_len(info, n); 799struct cache_entry *ce = 800 is_transient ? 801make_empty_transient_cache_entry(len) : 802make_empty_cache_entry(istate, len); 803 804 ce->ce_mode =create_ce_mode(n->mode); 805 ce->ce_flags =create_ce_flags(stage); 806 ce->ce_namelen = len; 807oidcpy(&ce->oid, n->oid); 808make_traverse_path(ce->name, info, n); 809 810return ce; 811} 812 813static intunpack_nondirectories(int n,unsigned long mask, 814unsigned long dirmask, 815struct cache_entry **src, 816const struct name_entry *names, 817const struct traverse_info *info) 818{ 819int i; 820struct unpack_trees_options *o = info->data; 821unsigned long conflicts = info->df_conflicts | dirmask; 822 823/* Do we have *only* directories? Nothing to do */ 824if(mask == dirmask && !src[0]) 825return0; 826 827/* 828 * Ok, we've filled in up to any potential index entry in src[0], 829 * now do the rest. 830 */ 831for(i =0; i < n; i++) { 832int stage; 833unsigned int bit =1ul<< i; 834if(conflicts & bit) { 835 src[i + o->merge] = o->df_conflict_entry; 836continue; 837} 838if(!(mask & bit)) 839continue; 840if(!o->merge) 841 stage =0; 842else if(i +1< o->head_idx) 843 stage =1; 844else if(i +1> o->head_idx) 845 stage =3; 846else 847 stage =2; 848 849/* 850 * If the merge bit is set, then the cache entries are 851 * discarded in the following block. In this case, 852 * construct "transient" cache_entries, as they are 853 * not stored in the index. otherwise construct the 854 * cache entry from the index aware logic. 855 */ 856 src[i + o->merge] =create_ce_entry(info, names + i, stage, &o->result, o->merge); 857} 858 859if(o->merge) { 860int rc =call_unpack_fn((const struct cache_entry *const*)src, 861 o); 862for(i =0; i < n; i++) { 863struct cache_entry *ce = src[i + o->merge]; 864if(ce != o->df_conflict_entry) 865discard_cache_entry(ce); 866} 867return rc; 868} 869 870for(i =0; i < n; i++) 871if(src[i] && src[i] != o->df_conflict_entry) 872if(do_add_entry(o, src[i],0,0)) 873return-1; 874 875return0; 876} 877 878static intunpack_failed(struct unpack_trees_options *o,const char*message) 879{ 880discard_index(&o->result); 881if(!o->gently && !o->exiting_early) { 882if(message) 883returnerror("%s", message); 884return-1; 885} 886return-1; 887} 888 889/* 890 * The tree traversal is looking at name p. If we have a matching entry, 891 * return it. If name p is a directory in the index, do not return 892 * anything, as we will want to match it when the traversal descends into 893 * the directory. 894 */ 895static intfind_cache_pos(struct traverse_info *info, 896const struct name_entry *p) 897{ 898int pos; 899struct unpack_trees_options *o = info->data; 900struct index_state *index = o->src_index; 901int pfxlen = info->pathlen; 902int p_len =tree_entry_len(p); 903 904for(pos = o->cache_bottom; pos < index->cache_nr; pos++) { 905const struct cache_entry *ce = index->cache[pos]; 906const char*ce_name, *ce_slash; 907int cmp, ce_len; 908 909if(ce->ce_flags & CE_UNPACKED) { 910/* 911 * cache_bottom entry is already unpacked, so 912 * we can never match it; don't check it 913 * again. 914 */ 915if(pos == o->cache_bottom) 916++o->cache_bottom; 917continue; 918} 919if(!ce_in_traverse_path(ce, info)) { 920/* 921 * Check if we can skip future cache checks 922 * (because we're already past all possible 923 * entries in the traverse path). 924 */ 925if(info->traverse_path) { 926if(strncmp(ce->name, info->traverse_path, 927 info->pathlen) >0) 928break; 929} 930continue; 931} 932 ce_name = ce->name + pfxlen; 933 ce_slash =strchr(ce_name,'/'); 934if(ce_slash) 935 ce_len = ce_slash - ce_name; 936else 937 ce_len =ce_namelen(ce) - pfxlen; 938 cmp =name_compare(p->path, p_len, ce_name, ce_len); 939/* 940 * Exact match; if we have a directory we need to 941 * delay returning it. 942 */ 943if(!cmp) 944return ce_slash ? -2- pos : pos; 945if(0< cmp) 946continue;/* keep looking */ 947/* 948 * ce_name sorts after p->path; could it be that we 949 * have files under p->path directory in the index? 950 * E.g. ce_name == "t-i", and p->path == "t"; we may 951 * have "t/a" in the index. 952 */ 953if(p_len < ce_len && !memcmp(ce_name, p->path, p_len) && 954 ce_name[p_len] <'/') 955continue;/* keep looking */ 956break; 957} 958return-1; 959} 960 961static struct cache_entry *find_cache_entry(struct traverse_info *info, 962const struct name_entry *p) 963{ 964int pos =find_cache_pos(info, p); 965struct unpack_trees_options *o = info->data; 966 967if(0<= pos) 968return o->src_index->cache[pos]; 969else 970return NULL; 971} 972 973static voiddebug_path(struct traverse_info *info) 974{ 975if(info->prev) { 976debug_path(info->prev); 977if(*info->prev->name.path) 978putchar('/'); 979} 980printf("%s", info->name.path); 981} 982 983static voiddebug_name_entry(int i,struct name_entry *n) 984{ 985printf("ent#%d %06o%s\n", i, 986 n->path ? n->mode :0, 987 n->path ? n->path :"(missing)"); 988} 989 990static voiddebug_unpack_callback(int n, 991unsigned long mask, 992unsigned long dirmask, 993struct name_entry *names, 994struct traverse_info *info) 995{ 996int i; 997printf("* unpack mask%lu, dirmask%lu, cnt%d", 998 mask, dirmask, n); 999debug_path(info);1000putchar('\n');1001for(i =0; i < n; i++)1002debug_name_entry(i, names + i);1003}10041005static intunpack_callback(int n,unsigned long mask,unsigned long dirmask,struct name_entry *names,struct traverse_info *info)1006{1007struct cache_entry *src[MAX_UNPACK_TREES +1] = { NULL, };1008struct unpack_trees_options *o = info->data;1009const struct name_entry *p = names;10101011/* Find first entry with a real name (we could use "mask" too) */1012while(!p->mode)1013 p++;10141015if(o->debug_unpack)1016debug_unpack_callback(n, mask, dirmask, names, info);10171018/* Are we supposed to look at the index too? */1019if(o->merge) {1020while(1) {1021int cmp;1022struct cache_entry *ce;10231024if(o->diff_index_cached)1025 ce =next_cache_entry(o);1026else1027 ce =find_cache_entry(info, p);10281029if(!ce)1030break;1031 cmp =compare_entry(ce, info, p);1032if(cmp <0) {1033if(unpack_index_entry(ce, o) <0)1034returnunpack_failed(o, NULL);1035continue;1036}1037if(!cmp) {1038if(ce_stage(ce)) {1039/*1040 * If we skip unmerged index1041 * entries, we'll skip this1042 * entry *and* the tree1043 * entries associated with it!1044 */1045if(o->skip_unmerged) {1046add_same_unmerged(ce, o);1047return mask;1048}1049}1050 src[0] = ce;1051}1052break;1053}1054}10551056if(unpack_nondirectories(n, mask, dirmask, src, names, info) <0)1057return-1;10581059if(o->merge && src[0]) {1060if(ce_stage(src[0]))1061mark_ce_used_same_name(src[0], o);1062else1063mark_ce_used(src[0], o);1064}10651066/* Now handle any directories.. */1067if(dirmask) {1068/* special case: "diff-index --cached" looking at a tree */1069if(o->diff_index_cached &&1070 n ==1&& dirmask ==1&&S_ISDIR(names->mode)) {1071int matches;1072 matches =cache_tree_matches_traversal(o->src_index->cache_tree,1073 names, info);1074/*1075 * Everything under the name matches; skip the1076 * entire hierarchy. diff_index_cached codepath1077 * special cases D/F conflicts in such a way that1078 * it does not do any look-ahead, so this is safe.1079 */1080if(matches) {1081 o->cache_bottom += matches;1082return mask;1083}1084}10851086if(traverse_trees_recursive(n, dirmask, mask & ~dirmask,1087 names, info) <0)1088return-1;1089return mask;1090}10911092return mask;1093}10941095static intclear_ce_flags_1(struct cache_entry **cache,int nr,1096struct strbuf *prefix,1097int select_mask,int clear_mask,1098struct exclude_list *el,int defval);10991100/* Whole directory matching */1101static intclear_ce_flags_dir(struct cache_entry **cache,int nr,1102struct strbuf *prefix,1103char*basename,1104int select_mask,int clear_mask,1105struct exclude_list *el,int defval)1106{1107struct cache_entry **cache_end;1108int dtype = DT_DIR;1109int ret =is_excluded_from_list(prefix->buf, prefix->len,1110 basename, &dtype, el, &the_index);1111int rc;11121113strbuf_addch(prefix,'/');11141115/* If undecided, use matching result of parent dir in defval */1116if(ret <0)1117 ret = defval;11181119for(cache_end = cache; cache_end != cache + nr; cache_end++) {1120struct cache_entry *ce = *cache_end;1121if(strncmp(ce->name, prefix->buf, prefix->len))1122break;1123}11241125/*1126 * TODO: check el, if there are no patterns that may conflict1127 * with ret (iow, we know in advance the incl/excl1128 * decision for the entire directory), clear flag here without1129 * calling clear_ce_flags_1(). That function will call1130 * the expensive is_excluded_from_list() on every entry.1131 */1132 rc =clear_ce_flags_1(cache, cache_end - cache,1133 prefix,1134 select_mask, clear_mask,1135 el, ret);1136strbuf_setlen(prefix, prefix->len -1);1137return rc;1138}11391140/*1141 * Traverse the index, find every entry that matches according to1142 * o->el. Do "ce_flags &= ~clear_mask" on those entries. Return the1143 * number of traversed entries.1144 *1145 * If select_mask is non-zero, only entries whose ce_flags has on of1146 * those bits enabled are traversed.1147 *1148 * cache : pointer to an index entry1149 * prefix_len : an offset to its path1150 *1151 * The current path ("prefix") including the trailing '/' is1152 * cache[0]->name[0..(prefix_len-1)]1153 * Top level path has prefix_len zero.1154 */1155static intclear_ce_flags_1(struct cache_entry **cache,int nr,1156struct strbuf *prefix,1157int select_mask,int clear_mask,1158struct exclude_list *el,int defval)1159{1160struct cache_entry **cache_end = cache + nr;11611162/*1163 * Process all entries that have the given prefix and meet1164 * select_mask condition1165 */1166while(cache != cache_end) {1167struct cache_entry *ce = *cache;1168const char*name, *slash;1169int len, dtype, ret;11701171if(select_mask && !(ce->ce_flags & select_mask)) {1172 cache++;1173continue;1174}11751176if(prefix->len &&strncmp(ce->name, prefix->buf, prefix->len))1177break;11781179 name = ce->name + prefix->len;1180 slash =strchr(name,'/');11811182/* If it's a directory, try whole directory match first */1183if(slash) {1184int processed;11851186 len = slash - name;1187strbuf_add(prefix, name, len);11881189 processed =clear_ce_flags_dir(cache, cache_end - cache,1190 prefix,1191 prefix->buf + prefix->len - len,1192 select_mask, clear_mask,1193 el, defval);11941195/* clear_c_f_dir eats a whole dir already? */1196if(processed) {1197 cache += processed;1198strbuf_setlen(prefix, prefix->len - len);1199continue;1200}12011202strbuf_addch(prefix,'/');1203 cache +=clear_ce_flags_1(cache, cache_end - cache,1204 prefix,1205 select_mask, clear_mask, el, defval);1206strbuf_setlen(prefix, prefix->len - len -1);1207continue;1208}12091210/* Non-directory */1211 dtype =ce_to_dtype(ce);1212 ret =is_excluded_from_list(ce->name,ce_namelen(ce),1213 name, &dtype, el, &the_index);1214if(ret <0)1215 ret = defval;1216if(ret >0)1217 ce->ce_flags &= ~clear_mask;1218 cache++;1219}1220return nr - (cache_end - cache);1221}12221223static intclear_ce_flags(struct cache_entry **cache,int nr,1224int select_mask,int clear_mask,1225struct exclude_list *el)1226{1227static struct strbuf prefix = STRBUF_INIT;12281229strbuf_reset(&prefix);12301231returnclear_ce_flags_1(cache, nr,1232&prefix,1233 select_mask, clear_mask,1234 el,0);1235}12361237/*1238 * Set/Clear CE_NEW_SKIP_WORKTREE according to $GIT_DIR/info/sparse-checkout1239 */1240static voidmark_new_skip_worktree(struct exclude_list *el,1241struct index_state *the_index,1242int select_flag,int skip_wt_flag)1243{1244int i;12451246/*1247 * 1. Pretend the narrowest worktree: only unmerged entries1248 * are checked out1249 */1250for(i =0; i < the_index->cache_nr; i++) {1251struct cache_entry *ce = the_index->cache[i];12521253if(select_flag && !(ce->ce_flags & select_flag))1254continue;12551256if(!ce_stage(ce) && !(ce->ce_flags & CE_CONFLICTED))1257 ce->ce_flags |= skip_wt_flag;1258else1259 ce->ce_flags &= ~skip_wt_flag;1260}12611262/*1263 * 2. Widen worktree according to sparse-checkout file.1264 * Matched entries will have skip_wt_flag cleared (i.e. "in")1265 */1266clear_ce_flags(the_index->cache, the_index->cache_nr,1267 select_flag, skip_wt_flag, el);1268}12691270static intverify_absent(const struct cache_entry *,1271enum unpack_trees_error_types,1272struct unpack_trees_options *);1273/*1274 * N-way merge "len" trees. Returns 0 on success, -1 on failure to manipulate the1275 * resulting index, -2 on failure to reflect the changes to the work tree.1276 *1277 * CE_ADDED, CE_UNPACKED and CE_NEW_SKIP_WORKTREE are used internally1278 */1279intunpack_trees(unsigned len,struct tree_desc *t,struct unpack_trees_options *o)1280{1281int i, ret;1282static struct cache_entry *dfc;1283struct exclude_list el;12841285if(len > MAX_UNPACK_TREES)1286die("unpack_trees takes at most%dtrees", MAX_UNPACK_TREES);12871288memset(&el,0,sizeof(el));1289if(!core_apply_sparse_checkout || !o->update)1290 o->skip_sparse_checkout =1;1291if(!o->skip_sparse_checkout) {1292char*sparse =git_pathdup("info/sparse-checkout");1293if(add_excludes_from_file_to_list(sparse,"",0, &el, NULL) <0)1294 o->skip_sparse_checkout =1;1295else1296 o->el = ⪙1297free(sparse);1298}12991300memset(&o->result,0,sizeof(o->result));1301 o->result.initialized =1;1302 o->result.timestamp.sec = o->src_index->timestamp.sec;1303 o->result.timestamp.nsec = o->src_index->timestamp.nsec;1304 o->result.version = o->src_index->version;1305if(!o->src_index->split_index) {1306 o->result.split_index = NULL;1307}else if(o->src_index == o->dst_index) {1308/*1309 * o->dst_index (and thus o->src_index) will be discarded1310 * and overwritten with o->result at the end of this function,1311 * so just use src_index's split_index to avoid having to1312 * create a new one.1313 */1314 o->result.split_index = o->src_index->split_index;1315 o->result.split_index->refcount++;1316}else{1317 o->result.split_index =init_split_index(&o->result);1318}1319oidcpy(&o->result.oid, &o->src_index->oid);1320 o->merge_size = len;1321mark_all_ce_unused(o->src_index);13221323/*1324 * Sparse checkout loop #1: set NEW_SKIP_WORKTREE on existing entries1325 */1326if(!o->skip_sparse_checkout)1327mark_new_skip_worktree(o->el, o->src_index,0, CE_NEW_SKIP_WORKTREE);13281329if(!dfc)1330 dfc =xcalloc(1,cache_entry_size(0));1331 o->df_conflict_entry = dfc;13321333if(len) {1334const char*prefix = o->prefix ? o->prefix :"";1335struct traverse_info info;13361337setup_traverse_info(&info, prefix);1338 info.fn = unpack_callback;1339 info.data = o;1340 info.show_all_errors = o->show_all_errors;1341 info.pathspec = o->pathspec;13421343if(o->prefix) {1344/*1345 * Unpack existing index entries that sort before the1346 * prefix the tree is spliced into. Note that o->merge1347 * is always true in this case.1348 */1349while(1) {1350struct cache_entry *ce =next_cache_entry(o);1351if(!ce)1352break;1353if(ce_in_traverse_path(ce, &info))1354break;1355if(unpack_index_entry(ce, o) <0)1356goto return_failed;1357}1358}13591360if(traverse_trees(len, t, &info) <0)1361goto return_failed;1362}13631364/* Any left-over entries in the index? */1365if(o->merge) {1366while(1) {1367struct cache_entry *ce =next_cache_entry(o);1368if(!ce)1369break;1370if(unpack_index_entry(ce, o) <0)1371goto return_failed;1372}1373}1374mark_all_ce_unused(o->src_index);13751376if(o->trivial_merges_only && o->nontrivial_merge) {1377 ret =unpack_failed(o,"Merge requires file-level merging");1378goto done;1379}13801381if(!o->skip_sparse_checkout) {1382int empty_worktree =1;13831384/*1385 * Sparse checkout loop #2: set NEW_SKIP_WORKTREE on entries not in loop #11386 * If the will have NEW_SKIP_WORKTREE, also set CE_SKIP_WORKTREE1387 * so apply_sparse_checkout() won't attempt to remove it from worktree1388 */1389mark_new_skip_worktree(o->el, &o->result, CE_ADDED, CE_SKIP_WORKTREE | CE_NEW_SKIP_WORKTREE);13901391 ret =0;1392for(i =0; i < o->result.cache_nr; i++) {1393struct cache_entry *ce = o->result.cache[i];13941395/*1396 * Entries marked with CE_ADDED in merged_entry() do not have1397 * verify_absent() check (the check is effectively disabled1398 * because CE_NEW_SKIP_WORKTREE is set unconditionally).1399 *1400 * Do the real check now because we have had1401 * correct CE_NEW_SKIP_WORKTREE1402 */1403if(ce->ce_flags & CE_ADDED &&1404verify_absent(ce, ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN, o)) {1405if(!o->show_all_errors)1406goto return_failed;1407 ret = -1;1408}14091410if(apply_sparse_checkout(&o->result, ce, o)) {1411if(!o->show_all_errors)1412goto return_failed;1413 ret = -1;1414}1415if(!ce_skip_worktree(ce))1416 empty_worktree =0;14171418}1419if(ret <0)1420goto return_failed;1421/*1422 * Sparse checkout is meant to narrow down checkout area1423 * but it does not make sense to narrow down to empty working1424 * tree. This is usually a mistake in sparse checkout rules.1425 * Do not allow users to do that.1426 */1427if(o->result.cache_nr && empty_worktree) {1428 ret =unpack_failed(o,"Sparse checkout leaves no entry on working directory");1429goto done;1430}1431}14321433 ret =check_updates(o) ? (-2) :0;1434if(o->dst_index) {1435if(!ret) {1436if(!o->result.cache_tree)1437 o->result.cache_tree =cache_tree();1438if(!cache_tree_fully_valid(o->result.cache_tree))1439cache_tree_update(&o->result,1440 WRITE_TREE_SILENT |1441 WRITE_TREE_REPAIR);1442}1443move_index_extensions(&o->result, o->src_index);1444discard_index(o->dst_index);1445*o->dst_index = o->result;1446}else{1447discard_index(&o->result);1448}1449 o->src_index = NULL;14501451done:1452clear_exclude_list(&el);1453return ret;14541455return_failed:1456if(o->show_all_errors)1457display_error_msgs(o);1458mark_all_ce_unused(o->src_index);1459 ret =unpack_failed(o, NULL);1460if(o->exiting_early)1461 ret =0;1462goto done;1463}14641465/* Here come the merge functions */14661467static intreject_merge(const struct cache_entry *ce,1468struct unpack_trees_options *o)1469{1470return o->gently ? -1:1471add_rejected_path(o, ERROR_WOULD_OVERWRITE, ce->name);1472}14731474static intsame(const struct cache_entry *a,const struct cache_entry *b)1475{1476if(!!a != !!b)1477return0;1478if(!a && !b)1479return1;1480if((a->ce_flags | b->ce_flags) & CE_CONFLICTED)1481return0;1482return a->ce_mode == b->ce_mode &&1483!oidcmp(&a->oid, &b->oid);1484}148514861487/*1488 * When a CE gets turned into an unmerged entry, we1489 * want it to be up-to-date1490 */1491static intverify_uptodate_1(const struct cache_entry *ce,1492struct unpack_trees_options *o,1493enum unpack_trees_error_types error_type)1494{1495struct stat st;14961497if(o->index_only)1498return0;14991500/*1501 * CE_VALID and CE_SKIP_WORKTREE cheat, we better check again1502 * if this entry is truly up-to-date because this file may be1503 * overwritten.1504 */1505if((ce->ce_flags & CE_VALID) ||ce_skip_worktree(ce))1506;/* keep checking */1507else if(o->reset ||ce_uptodate(ce))1508return0;15091510if(!lstat(ce->name, &st)) {1511int flags = CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE;1512unsigned changed =ie_match_stat(o->src_index, ce, &st, flags);15131514if(submodule_from_ce(ce)) {1515int r =check_submodule_move_head(ce,1516"HEAD",oid_to_hex(&ce->oid), o);1517if(r)1518return o->gently ? -1:1519add_rejected_path(o, error_type, ce->name);1520return0;1521}15221523if(!changed)1524return0;1525/*1526 * Historic default policy was to allow submodule to be out1527 * of sync wrt the superproject index. If the submodule was1528 * not considered interesting above, we don't care here.1529 */1530if(S_ISGITLINK(ce->ce_mode))1531return0;15321533 errno =0;1534}1535if(errno == ENOENT)1536return0;1537return o->gently ? -1:1538add_rejected_path(o, error_type, ce->name);1539}15401541intverify_uptodate(const struct cache_entry *ce,1542struct unpack_trees_options *o)1543{1544if(!o->skip_sparse_checkout && (ce->ce_flags & CE_NEW_SKIP_WORKTREE))1545return0;1546returnverify_uptodate_1(ce, o, ERROR_NOT_UPTODATE_FILE);1547}15481549static intverify_uptodate_sparse(const struct cache_entry *ce,1550struct unpack_trees_options *o)1551{1552returnverify_uptodate_1(ce, o, ERROR_SPARSE_NOT_UPTODATE_FILE);1553}15541555static voidinvalidate_ce_path(const struct cache_entry *ce,1556struct unpack_trees_options *o)1557{1558if(!ce)1559return;1560cache_tree_invalidate_path(o->src_index, ce->name);1561untracked_cache_invalidate_path(o->src_index, ce->name,1);1562}15631564/*1565 * Check that checking out ce->sha1 in subdir ce->name is not1566 * going to overwrite any working files.1567 *1568 * Currently, git does not checkout subprojects during a superproject1569 * checkout, so it is not going to overwrite anything.1570 */1571static intverify_clean_submodule(const char*old_sha1,1572const struct cache_entry *ce,1573enum unpack_trees_error_types error_type,1574struct unpack_trees_options *o)1575{1576if(!submodule_from_ce(ce))1577return0;15781579returncheck_submodule_move_head(ce, old_sha1,1580oid_to_hex(&ce->oid), o);1581}15821583static intverify_clean_subdirectory(const struct cache_entry *ce,1584enum unpack_trees_error_types error_type,1585struct unpack_trees_options *o)1586{1587/*1588 * we are about to extract "ce->name"; we would not want to lose1589 * anything in the existing directory there.1590 */1591int namelen;1592int i;1593struct dir_struct d;1594char*pathbuf;1595int cnt =0;15961597if(S_ISGITLINK(ce->ce_mode)) {1598struct object_id oid;1599int sub_head =resolve_gitlink_ref(ce->name,"HEAD", &oid);1600/*1601 * If we are not going to update the submodule, then1602 * we don't care.1603 */1604if(!sub_head && !oidcmp(&oid, &ce->oid))1605return0;1606returnverify_clean_submodule(sub_head ? NULL :oid_to_hex(&oid),1607 ce, error_type, o);1608}16091610/*1611 * First let's make sure we do not have a local modification1612 * in that directory.1613 */1614 namelen =ce_namelen(ce);1615for(i =locate_in_src_index(ce, o);1616 i < o->src_index->cache_nr;1617 i++) {1618struct cache_entry *ce2 = o->src_index->cache[i];1619int len =ce_namelen(ce2);1620if(len < namelen ||1621strncmp(ce->name, ce2->name, namelen) ||1622 ce2->name[namelen] !='/')1623break;1624/*1625 * ce2->name is an entry in the subdirectory to be1626 * removed.1627 */1628if(!ce_stage(ce2)) {1629if(verify_uptodate(ce2, o))1630return-1;1631add_entry(o, ce2, CE_REMOVE,0);1632mark_ce_used(ce2, o);1633}1634 cnt++;1635}16361637/*1638 * Then we need to make sure that we do not lose a locally1639 * present file that is not ignored.1640 */1641 pathbuf =xstrfmt("%.*s/", namelen, ce->name);16421643memset(&d,0,sizeof(d));1644if(o->dir)1645 d.exclude_per_dir = o->dir->exclude_per_dir;1646 i =read_directory(&d, &the_index, pathbuf, namelen+1, NULL);1647if(i)1648return o->gently ? -1:1649add_rejected_path(o, ERROR_NOT_UPTODATE_DIR, ce->name);1650free(pathbuf);1651return cnt;1652}16531654/*1655 * This gets called when there was no index entry for the tree entry 'dst',1656 * but we found a file in the working tree that 'lstat()' said was fine,1657 * and we're on a case-insensitive filesystem.1658 *1659 * See if we can find a case-insensitive match in the index that also1660 * matches the stat information, and assume it's that other file!1661 */1662static inticase_exists(struct unpack_trees_options *o,const char*name,int len,struct stat *st)1663{1664const struct cache_entry *src;16651666 src =index_file_exists(o->src_index, name, len,1);1667return src && !ie_match_stat(o->src_index, src, st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);1668}16691670static intcheck_ok_to_remove(const char*name,int len,int dtype,1671const struct cache_entry *ce,struct stat *st,1672enum unpack_trees_error_types error_type,1673struct unpack_trees_options *o)1674{1675const struct cache_entry *result;16761677/*1678 * It may be that the 'lstat()' succeeded even though1679 * target 'ce' was absent, because there is an old1680 * entry that is different only in case..1681 *1682 * Ignore that lstat() if it matches.1683 */1684if(ignore_case &&icase_exists(o, name, len, st))1685return0;16861687if(o->dir &&1688is_excluded(o->dir, &the_index, name, &dtype))1689/*1690 * ce->name is explicitly excluded, so it is Ok to1691 * overwrite it.1692 */1693return0;1694if(S_ISDIR(st->st_mode)) {1695/*1696 * We are checking out path "foo" and1697 * found "foo/." in the working tree.1698 * This is tricky -- if we have modified1699 * files that are in "foo/" we would lose1700 * them.1701 */1702if(verify_clean_subdirectory(ce, error_type, o) <0)1703return-1;1704return0;1705}17061707/*1708 * The previous round may already have decided to1709 * delete this path, which is in a subdirectory that1710 * is being replaced with a blob.1711 */1712 result =index_file_exists(&o->result, name, len,0);1713if(result) {1714if(result->ce_flags & CE_REMOVE)1715return0;1716}17171718return o->gently ? -1:1719add_rejected_path(o, error_type, name);1720}17211722/*1723 * We do not want to remove or overwrite a working tree file that1724 * is not tracked, unless it is ignored.1725 */1726static intverify_absent_1(const struct cache_entry *ce,1727enum unpack_trees_error_types error_type,1728struct unpack_trees_options *o)1729{1730int len;1731struct stat st;17321733if(o->index_only || o->reset || !o->update)1734return0;17351736 len =check_leading_path(ce->name,ce_namelen(ce));1737if(!len)1738return0;1739else if(len >0) {1740char*path;1741int ret;17421743 path =xmemdupz(ce->name, len);1744if(lstat(path, &st))1745 ret =error_errno("cannot stat '%s'", path);1746else{1747if(submodule_from_ce(ce))1748 ret =check_submodule_move_head(ce,1749oid_to_hex(&ce->oid),1750 NULL, o);1751else1752 ret =check_ok_to_remove(path, len, DT_UNKNOWN, NULL,1753&st, error_type, o);1754}1755free(path);1756return ret;1757}else if(lstat(ce->name, &st)) {1758if(errno != ENOENT)1759returnerror_errno("cannot stat '%s'", ce->name);1760return0;1761}else{1762if(submodule_from_ce(ce))1763returncheck_submodule_move_head(ce,oid_to_hex(&ce->oid),1764 NULL, o);17651766returncheck_ok_to_remove(ce->name,ce_namelen(ce),1767ce_to_dtype(ce), ce, &st,1768 error_type, o);1769}1770}17711772static intverify_absent(const struct cache_entry *ce,1773enum unpack_trees_error_types error_type,1774struct unpack_trees_options *o)1775{1776if(!o->skip_sparse_checkout && (ce->ce_flags & CE_NEW_SKIP_WORKTREE))1777return0;1778returnverify_absent_1(ce, error_type, o);1779}17801781static intverify_absent_sparse(const struct cache_entry *ce,1782enum unpack_trees_error_types error_type,1783struct unpack_trees_options *o)1784{1785enum unpack_trees_error_types orphaned_error = error_type;1786if(orphaned_error == ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN)1787 orphaned_error = ERROR_WOULD_LOSE_ORPHANED_OVERWRITTEN;17881789returnverify_absent_1(ce, orphaned_error, o);1790}17911792static intmerged_entry(const struct cache_entry *ce,1793const struct cache_entry *old,1794struct unpack_trees_options *o)1795{1796int update = CE_UPDATE;1797struct cache_entry *merge =dup_cache_entry(ce, &o->result);17981799if(!old) {1800/*1801 * New index entries. In sparse checkout, the following1802 * verify_absent() will be delayed until after1803 * traverse_trees() finishes in unpack_trees(), then:1804 *1805 * - CE_NEW_SKIP_WORKTREE will be computed correctly1806 * - verify_absent() be called again, this time with1807 * correct CE_NEW_SKIP_WORKTREE1808 *1809 * verify_absent() call here does nothing in sparse1810 * checkout (i.e. o->skip_sparse_checkout == 0)1811 */1812 update |= CE_ADDED;1813 merge->ce_flags |= CE_NEW_SKIP_WORKTREE;18141815if(verify_absent(merge,1816 ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN, o)) {1817discard_cache_entry(merge);1818return-1;1819}1820invalidate_ce_path(merge, o);18211822if(submodule_from_ce(ce)) {1823int ret =check_submodule_move_head(ce, NULL,1824oid_to_hex(&ce->oid),1825 o);1826if(ret)1827return ret;1828}18291830}else if(!(old->ce_flags & CE_CONFLICTED)) {1831/*1832 * See if we can re-use the old CE directly?1833 * That way we get the uptodate stat info.1834 *1835 * This also removes the UPDATE flag on a match; otherwise1836 * we will end up overwriting local changes in the work tree.1837 */1838if(same(old, merge)) {1839copy_cache_entry(merge, old);1840 update =0;1841}else{1842if(verify_uptodate(old, o)) {1843discard_cache_entry(merge);1844return-1;1845}1846/* Migrate old flags over */1847 update |= old->ce_flags & (CE_SKIP_WORKTREE | CE_NEW_SKIP_WORKTREE);1848invalidate_ce_path(old, o);1849}18501851if(submodule_from_ce(ce)) {1852int ret =check_submodule_move_head(ce,oid_to_hex(&old->oid),1853oid_to_hex(&ce->oid),1854 o);1855if(ret)1856return ret;1857}1858}else{1859/*1860 * Previously unmerged entry left as an existence1861 * marker by read_index_unmerged();1862 */1863invalidate_ce_path(old, o);1864}18651866do_add_entry(o, merge, update, CE_STAGEMASK);1867return1;1868}18691870static intdeleted_entry(const struct cache_entry *ce,1871const struct cache_entry *old,1872struct unpack_trees_options *o)1873{1874/* Did it exist in the index? */1875if(!old) {1876if(verify_absent(ce, ERROR_WOULD_LOSE_UNTRACKED_REMOVED, o))1877return-1;1878return0;1879}1880if(!(old->ce_flags & CE_CONFLICTED) &&verify_uptodate(old, o))1881return-1;1882add_entry(o, ce, CE_REMOVE,0);1883invalidate_ce_path(ce, o);1884return1;1885}18861887static intkeep_entry(const struct cache_entry *ce,1888struct unpack_trees_options *o)1889{1890add_entry(o, ce,0,0);1891return1;1892}18931894#if DBRT_DEBUG1895static voidshow_stage_entry(FILE*o,1896const char*label,const struct cache_entry *ce)1897{1898if(!ce)1899fprintf(o,"%s(missing)\n", label);1900else1901fprintf(o,"%s%06o%s %d\t%s\n",1902 label,1903 ce->ce_mode,1904oid_to_hex(&ce->oid),1905ce_stage(ce),1906 ce->name);1907}1908#endif19091910intthreeway_merge(const struct cache_entry *const*stages,1911struct unpack_trees_options *o)1912{1913const struct cache_entry *index;1914const struct cache_entry *head;1915const struct cache_entry *remote = stages[o->head_idx +1];1916int count;1917int head_match =0;1918int remote_match =0;19191920int df_conflict_head =0;1921int df_conflict_remote =0;19221923int any_anc_missing =0;1924int no_anc_exists =1;1925int i;19261927for(i =1; i < o->head_idx; i++) {1928if(!stages[i] || stages[i] == o->df_conflict_entry)1929 any_anc_missing =1;1930else1931 no_anc_exists =0;1932}19331934 index = stages[0];1935 head = stages[o->head_idx];19361937if(head == o->df_conflict_entry) {1938 df_conflict_head =1;1939 head = NULL;1940}19411942if(remote == o->df_conflict_entry) {1943 df_conflict_remote =1;1944 remote = NULL;1945}19461947/*1948 * First, if there's a #16 situation, note that to prevent #131949 * and #14.1950 */1951if(!same(remote, head)) {1952for(i =1; i < o->head_idx; i++) {1953if(same(stages[i], head)) {1954 head_match = i;1955}1956if(same(stages[i], remote)) {1957 remote_match = i;1958}1959}1960}19611962/*1963 * We start with cases where the index is allowed to match1964 * something other than the head: #14(ALT) and #2ALT, where it1965 * is permitted to match the result instead.1966 */1967/* #14, #14ALT, #2ALT */1968if(remote && !df_conflict_head && head_match && !remote_match) {1969if(index && !same(index, remote) && !same(index, head))1970returnreject_merge(index, o);1971returnmerged_entry(remote, index, o);1972}1973/*1974 * If we have an entry in the index cache, then we want to1975 * make sure that it matches head.1976 */1977if(index && !same(index, head))1978returnreject_merge(index, o);19791980if(head) {1981/* #5ALT, #15 */1982if(same(head, remote))1983returnmerged_entry(head, index, o);1984/* #13, #3ALT */1985if(!df_conflict_remote && remote_match && !head_match)1986returnmerged_entry(head, index, o);1987}19881989/* #1 */1990if(!head && !remote && any_anc_missing)1991return0;19921993/*1994 * Under the "aggressive" rule, we resolve mostly trivial1995 * cases that we historically had git-merge-one-file resolve.1996 */1997if(o->aggressive) {1998int head_deleted = !head;1999int remote_deleted = !remote;2000const struct cache_entry *ce = NULL;20012002if(index)2003 ce = index;2004else if(head)2005 ce = head;2006else if(remote)2007 ce = remote;2008else{2009for(i =1; i < o->head_idx; i++) {2010if(stages[i] && stages[i] != o->df_conflict_entry) {2011 ce = stages[i];2012break;2013}2014}2015}20162017/*2018 * Deleted in both.2019 * Deleted in one and unchanged in the other.2020 */2021if((head_deleted && remote_deleted) ||2022(head_deleted && remote && remote_match) ||2023(remote_deleted && head && head_match)) {2024if(index)2025returndeleted_entry(index, index, o);2026if(ce && !head_deleted) {2027if(verify_absent(ce, ERROR_WOULD_LOSE_UNTRACKED_REMOVED, o))2028return-1;2029}2030return0;2031}2032/*2033 * Added in both, identically.2034 */2035if(no_anc_exists && head && remote &&same(head, remote))2036returnmerged_entry(head, index, o);20372038}20392040/* Below are "no merge" cases, which require that the index be2041 * up-to-date to avoid the files getting overwritten with2042 * conflict resolution files.2043 */2044if(index) {2045if(verify_uptodate(index, o))2046return-1;2047}20482049 o->nontrivial_merge =1;20502051/* #2, #3, #4, #6, #7, #9, #10, #11. */2052 count =0;2053if(!head_match || !remote_match) {2054for(i =1; i < o->head_idx; i++) {2055if(stages[i] && stages[i] != o->df_conflict_entry) {2056keep_entry(stages[i], o);2057 count++;2058break;2059}2060}2061}2062#if DBRT_DEBUG2063else{2064fprintf(stderr,"read-tree: warning #16 detected\n");2065show_stage_entry(stderr,"head ", stages[head_match]);2066show_stage_entry(stderr,"remote ", stages[remote_match]);2067}2068#endif2069if(head) { count +=keep_entry(head, o); }2070if(remote) { count +=keep_entry(remote, o); }2071return count;2072}20732074/*2075 * Two-way merge.2076 *2077 * The rule is to "carry forward" what is in the index without losing2078 * information across a "fast-forward", favoring a successful merge2079 * over a merge failure when it makes sense. For details of the2080 * "carry forward" rule, please see <Documentation/git-read-tree.txt>.2081 *2082 */2083inttwoway_merge(const struct cache_entry *const*src,2084struct unpack_trees_options *o)2085{2086const struct cache_entry *current = src[0];2087const struct cache_entry *oldtree = src[1];2088const struct cache_entry *newtree = src[2];20892090if(o->merge_size !=2)2091returnerror("Cannot do a twoway merge of%dtrees",2092 o->merge_size);20932094if(oldtree == o->df_conflict_entry)2095 oldtree = NULL;2096if(newtree == o->df_conflict_entry)2097 newtree = NULL;20982099if(current) {2100if(current->ce_flags & CE_CONFLICTED) {2101if(same(oldtree, newtree) || o->reset) {2102if(!newtree)2103returndeleted_entry(current, current, o);2104else2105returnmerged_entry(newtree, current, o);2106}2107returnreject_merge(current, o);2108}else if((!oldtree && !newtree) ||/* 4 and 5 */2109(!oldtree && newtree &&2110same(current, newtree)) ||/* 6 and 7 */2111(oldtree && newtree &&2112same(oldtree, newtree)) ||/* 14 and 15 */2113(oldtree && newtree &&2114!same(oldtree, newtree) &&/* 18 and 19 */2115same(current, newtree))) {2116returnkeep_entry(current, o);2117}else if(oldtree && !newtree &&same(current, oldtree)) {2118/* 10 or 11 */2119returndeleted_entry(oldtree, current, o);2120}else if(oldtree && newtree &&2121same(current, oldtree) && !same(current, newtree)) {2122/* 20 or 21 */2123returnmerged_entry(newtree, current, o);2124}else2125returnreject_merge(current, o);2126}2127else if(newtree) {2128if(oldtree && !o->initial_checkout) {2129/*2130 * deletion of the path was staged;2131 */2132if(same(oldtree, newtree))2133return1;2134returnreject_merge(oldtree, o);2135}2136returnmerged_entry(newtree, current, o);2137}2138returndeleted_entry(oldtree, current, o);2139}21402141/*2142 * Bind merge.2143 *2144 * Keep the index entries at stage0, collapse stage1 but make sure2145 * stage0 does not have anything there.2146 */2147intbind_merge(const struct cache_entry *const*src,2148struct unpack_trees_options *o)2149{2150const struct cache_entry *old = src[0];2151const struct cache_entry *a = src[1];21522153if(o->merge_size !=1)2154returnerror("Cannot do a bind merge of%dtrees",2155 o->merge_size);2156if(a && old)2157return o->gently ? -1:2158error(ERRORMSG(o, ERROR_BIND_OVERLAP),2159super_prefixed(a->name),2160super_prefixed(old->name));2161if(!a)2162returnkeep_entry(old, o);2163else2164returnmerged_entry(a, NULL, o);2165}21662167/*2168 * One-way merge.2169 *2170 * The rule is:2171 * - take the stat information from stage0, take the data from stage12172 */2173intoneway_merge(const struct cache_entry *const*src,2174struct unpack_trees_options *o)2175{2176const struct cache_entry *old = src[0];2177const struct cache_entry *a = src[1];21782179if(o->merge_size !=1)2180returnerror("Cannot do a oneway merge of%dtrees",2181 o->merge_size);21822183if(!a || a == o->df_conflict_entry)2184returndeleted_entry(old, old, o);21852186if(old &&same(old, a)) {2187int update =0;2188if(o->reset && o->update && !ce_uptodate(old) && !ce_skip_worktree(old)) {2189struct stat st;2190if(lstat(old->name, &st) ||2191ie_match_stat(o->src_index, old, &st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE))2192 update |= CE_UPDATE;2193}2194if(o->update &&S_ISGITLINK(old->ce_mode) &&2195should_update_submodules() && !verify_uptodate(old, o))2196 update |= CE_UPDATE;2197add_entry(o, old, update,0);2198return0;2199}2200returnmerged_entry(a, old, o);2201}