1#define NO_THE_INDEX_COMPATIBILITY_MACROS 2#include"cache.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"fetch-object.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 107if(!strcmp(cmd,"checkout")) 108 msg = advice_commit_before_merge 109?_("Your local changes to the following files would be overwritten by checkout:\n%%s" 110"Please commit your changes or stash them before you switch branches.") 111:_("Your local changes to the following files would be overwritten by checkout:\n%%s"); 112else if(!strcmp(cmd,"merge")) 113 msg = advice_commit_before_merge 114?_("Your local changes to the following files would be overwritten by merge:\n%%s" 115"Please commit your changes or stash them before you merge.") 116:_("Your local changes to the following files would be overwritten by merge:\n%%s"); 117else 118 msg = advice_commit_before_merge 119?_("Your local changes to the following files would be overwritten by%s:\n%%s" 120"Please commit your changes or stash them before you%s.") 121:_("Your local changes to the following files would be overwritten by%s:\n%%s"); 122 msgs[ERROR_WOULD_OVERWRITE] = msgs[ERROR_NOT_UPTODATE_FILE] = 123xstrfmt(msg, cmd, cmd); 124 125 msgs[ERROR_NOT_UPTODATE_DIR] = 126_("Updating the following directories would lose untracked files in them:\n%s"); 127 128if(!strcmp(cmd,"checkout")) 129 msg = advice_commit_before_merge 130?_("The following untracked working tree files would be removed by checkout:\n%%s" 131"Please move or remove them before you switch branches.") 132:_("The following untracked working tree files would be removed by checkout:\n%%s"); 133else if(!strcmp(cmd,"merge")) 134 msg = advice_commit_before_merge 135?_("The following untracked working tree files would be removed by merge:\n%%s" 136"Please move or remove them before you merge.") 137:_("The following untracked working tree files would be removed by merge:\n%%s"); 138else 139 msg = advice_commit_before_merge 140?_("The following untracked working tree files would be removed by%s:\n%%s" 141"Please move or remove them before you%s.") 142:_("The following untracked working tree files would be removed by%s:\n%%s"); 143 msgs[ERROR_WOULD_LOSE_UNTRACKED_REMOVED] =xstrfmt(msg, cmd, cmd); 144 145if(!strcmp(cmd,"checkout")) 146 msg = advice_commit_before_merge 147?_("The following untracked working tree files would be overwritten by checkout:\n%%s" 148"Please move or remove them before you switch branches.") 149:_("The following untracked working tree files would be overwritten by checkout:\n%%s"); 150else if(!strcmp(cmd,"merge")) 151 msg = advice_commit_before_merge 152?_("The following untracked working tree files would be overwritten by merge:\n%%s" 153"Please move or remove them before you merge.") 154:_("The following untracked working tree files would be overwritten by merge:\n%%s"); 155else 156 msg = advice_commit_before_merge 157?_("The following untracked working tree files would be overwritten by%s:\n%%s" 158"Please move or remove them before you%s.") 159:_("The following untracked working tree files would be overwritten by%s:\n%%s"); 160 msgs[ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN] =xstrfmt(msg, cmd, cmd); 161 162/* 163 * Special case: ERROR_BIND_OVERLAP refers to a pair of paths, we 164 * cannot easily display it as a list. 165 */ 166 msgs[ERROR_BIND_OVERLAP] =_("Entry '%s' overlaps with '%s'. Cannot bind."); 167 168 msgs[ERROR_SPARSE_NOT_UPTODATE_FILE] = 169_("Cannot update sparse checkout: the following entries are not up to date:\n%s"); 170 msgs[ERROR_WOULD_LOSE_ORPHANED_OVERWRITTEN] = 171_("The following working tree files would be overwritten by sparse checkout update:\n%s"); 172 msgs[ERROR_WOULD_LOSE_ORPHANED_REMOVED] = 173_("The following working tree files would be removed by sparse checkout update:\n%s"); 174 msgs[ERROR_WOULD_LOSE_SUBMODULE] = 175_("Cannot update submodule:\n%s"); 176 177 opts->show_all_errors =1; 178/* rejected paths may not have a static buffer */ 179for(i =0; i <ARRAY_SIZE(opts->unpack_rejects); i++) 180 opts->unpack_rejects[i].strdup_strings =1; 181} 182 183static intdo_add_entry(struct unpack_trees_options *o,struct cache_entry *ce, 184unsigned int set,unsigned int clear) 185{ 186 clear |= CE_HASHED; 187 188if(set & CE_REMOVE) 189 set |= CE_WT_REMOVE; 190 191 ce->ce_flags = (ce->ce_flags & ~clear) | set; 192returnadd_index_entry(&o->result, ce, 193 ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE); 194} 195 196static struct cache_entry *dup_entry(const struct cache_entry *ce) 197{ 198unsigned int size =ce_size(ce); 199struct cache_entry *new_entry =xmalloc(size); 200 201memcpy(new_entry, ce, size); 202return new_entry; 203} 204 205static voidadd_entry(struct unpack_trees_options *o, 206const struct cache_entry *ce, 207unsigned int set,unsigned int clear) 208{ 209do_add_entry(o,dup_entry(ce), set, clear); 210} 211 212/* 213 * add error messages on path <path> 214 * corresponding to the type <e> with the message <msg> 215 * indicating if it should be display in porcelain or not 216 */ 217static intadd_rejected_path(struct unpack_trees_options *o, 218enum unpack_trees_error_types e, 219const char*path) 220{ 221if(!o->show_all_errors) 222returnerror(ERRORMSG(o, e),super_prefixed(path)); 223 224/* 225 * Otherwise, insert in a list for future display by 226 * display_error_msgs() 227 */ 228string_list_append(&o->unpack_rejects[e], path); 229return-1; 230} 231 232/* 233 * display all the error messages stored in a nice way 234 */ 235static voiddisplay_error_msgs(struct unpack_trees_options *o) 236{ 237int e, i; 238int something_displayed =0; 239for(e =0; e < NB_UNPACK_TREES_ERROR_TYPES; e++) { 240struct string_list *rejects = &o->unpack_rejects[e]; 241if(rejects->nr >0) { 242struct strbuf path = STRBUF_INIT; 243 something_displayed =1; 244for(i =0; i < rejects->nr; i++) 245strbuf_addf(&path,"\t%s\n", rejects->items[i].string); 246error(ERRORMSG(o, e),super_prefixed(path.buf)); 247strbuf_release(&path); 248} 249string_list_clear(rejects,0); 250} 251if(something_displayed) 252fprintf(stderr,_("Aborting\n")); 253} 254 255static intcheck_submodule_move_head(const struct cache_entry *ce, 256const char*old_id, 257const char*new_id, 258struct unpack_trees_options *o) 259{ 260unsigned flags = SUBMODULE_MOVE_HEAD_DRY_RUN; 261const struct submodule *sub =submodule_from_ce(ce); 262 263if(!sub) 264return0; 265 266if(o->reset) 267 flags |= SUBMODULE_MOVE_HEAD_FORCE; 268 269if(submodule_move_head(ce->name, old_id, new_id, flags)) 270return o->gently ? -1: 271add_rejected_path(o, ERROR_WOULD_LOSE_SUBMODULE, ce->name); 272return0; 273} 274 275/* 276 * Preform the loading of the repository's gitmodules file. This function is 277 * used by 'check_update()' to perform loading of the gitmodules file in two 278 * differnt situations: 279 * (1) before removing entries from the working tree if the gitmodules file has 280 * been marked for removal. This situation is specified by 'state' == NULL. 281 * (2) before checking out entries to the working tree if the gitmodules file 282 * has been marked for update. This situation is specified by 'state' != NULL. 283 */ 284static voidload_gitmodules_file(struct index_state *index, 285struct checkout *state) 286{ 287int pos =index_name_pos(index, GITMODULES_FILE,strlen(GITMODULES_FILE)); 288 289if(pos >=0) { 290struct cache_entry *ce = index->cache[pos]; 291if(!state && ce->ce_flags & CE_WT_REMOVE) { 292repo_read_gitmodules(the_repository); 293}else if(state && (ce->ce_flags & CE_UPDATE)) { 294submodule_free(); 295checkout_entry(ce, state, NULL); 296repo_read_gitmodules(the_repository); 297} 298} 299} 300 301/* 302 * Unlink the last component and schedule the leading directories for 303 * removal, such that empty directories get removed. 304 */ 305static voidunlink_entry(const struct cache_entry *ce) 306{ 307const struct submodule *sub =submodule_from_ce(ce); 308if(sub) { 309/* state.force is set at the caller. */ 310submodule_move_head(ce->name,"HEAD", NULL, 311 SUBMODULE_MOVE_HEAD_FORCE); 312} 313if(!check_leading_path(ce->name,ce_namelen(ce))) 314return; 315if(remove_or_warn(ce->ce_mode, ce->name)) 316return; 317schedule_dir_for_removal(ce->name,ce_namelen(ce)); 318} 319 320static struct progress *get_progress(struct unpack_trees_options *o) 321{ 322unsigned cnt =0, total =0; 323struct index_state *index = &o->result; 324 325if(!o->update || !o->verbose_update) 326return NULL; 327 328for(; cnt < index->cache_nr; cnt++) { 329const struct cache_entry *ce = index->cache[cnt]; 330if(ce->ce_flags & (CE_UPDATE | CE_WT_REMOVE)) 331 total++; 332} 333 334returnstart_delayed_progress(_("Checking out files"), total); 335} 336 337static intcheck_updates(struct unpack_trees_options *o) 338{ 339unsigned cnt =0; 340int errs =0; 341struct progress *progress = NULL; 342struct index_state *index = &o->result; 343struct checkout state = CHECKOUT_INIT; 344int i; 345 346 state.force =1; 347 state.quiet =1; 348 state.refresh_cache =1; 349 state.istate = index; 350 351 progress =get_progress(o); 352 353if(o->update) 354git_attr_set_direction(GIT_ATTR_CHECKOUT, index); 355 356if(should_update_submodules() && o->update && !o->dry_run) 357load_gitmodules_file(index, NULL); 358 359for(i =0; i < index->cache_nr; i++) { 360const struct cache_entry *ce = index->cache[i]; 361 362if(ce->ce_flags & CE_WT_REMOVE) { 363display_progress(progress, ++cnt); 364if(o->update && !o->dry_run) 365unlink_entry(ce); 366} 367} 368remove_marked_cache_entries(index); 369remove_scheduled_dirs(); 370 371if(should_update_submodules() && o->update && !o->dry_run) 372load_gitmodules_file(index, &state); 373 374enable_delayed_checkout(&state); 375if(repository_format_partial_clone && o->update && !o->dry_run) { 376/* 377 * Prefetch the objects that are to be checked out in the loop 378 * below. 379 */ 380struct oid_array to_fetch = OID_ARRAY_INIT; 381int fetch_if_missing_store = fetch_if_missing; 382 fetch_if_missing =0; 383for(i =0; i < index->cache_nr; i++) { 384struct cache_entry *ce = index->cache[i]; 385if((ce->ce_flags & CE_UPDATE) && 386!S_ISGITLINK(ce->ce_mode)) { 387if(!has_object_file(&ce->oid)) 388oid_array_append(&to_fetch, &ce->oid); 389} 390} 391if(to_fetch.nr) 392fetch_objects(repository_format_partial_clone, 393&to_fetch); 394 fetch_if_missing = fetch_if_missing_store; 395oid_array_clear(&to_fetch); 396} 397for(i =0; i < index->cache_nr; i++) { 398struct cache_entry *ce = index->cache[i]; 399 400if(ce->ce_flags & CE_UPDATE) { 401if(ce->ce_flags & CE_WT_REMOVE) 402die("BUG: both update and delete flags are set on%s", 403 ce->name); 404display_progress(progress, ++cnt); 405 ce->ce_flags &= ~CE_UPDATE; 406if(o->update && !o->dry_run) { 407 errs |=checkout_entry(ce, &state, NULL); 408} 409} 410} 411stop_progress(&progress); 412 errs |=finish_delayed_checkout(&state); 413if(o->update) 414git_attr_set_direction(GIT_ATTR_CHECKIN, NULL); 415return errs !=0; 416} 417 418static intverify_uptodate_sparse(const struct cache_entry *ce, 419struct unpack_trees_options *o); 420static intverify_absent_sparse(const struct cache_entry *ce, 421enum unpack_trees_error_types, 422struct unpack_trees_options *o); 423 424static intapply_sparse_checkout(struct index_state *istate, 425struct cache_entry *ce, 426struct unpack_trees_options *o) 427{ 428int was_skip_worktree =ce_skip_worktree(ce); 429 430if(ce->ce_flags & CE_NEW_SKIP_WORKTREE) 431 ce->ce_flags |= CE_SKIP_WORKTREE; 432else 433 ce->ce_flags &= ~CE_SKIP_WORKTREE; 434if(was_skip_worktree !=ce_skip_worktree(ce)) { 435 ce->ce_flags |= CE_UPDATE_IN_BASE; 436mark_fsmonitor_invalid(istate, ce); 437 istate->cache_changed |= CE_ENTRY_CHANGED; 438} 439 440/* 441 * if (!was_skip_worktree && !ce_skip_worktree()) { 442 * This is perfectly normal. Move on; 443 * } 444 */ 445 446/* 447 * Merge strategies may set CE_UPDATE|CE_REMOVE outside checkout 448 * area as a result of ce_skip_worktree() shortcuts in 449 * verify_absent() and verify_uptodate(). 450 * Make sure they don't modify worktree if they are already 451 * outside checkout area 452 */ 453if(was_skip_worktree &&ce_skip_worktree(ce)) { 454 ce->ce_flags &= ~CE_UPDATE; 455 456/* 457 * By default, when CE_REMOVE is on, CE_WT_REMOVE is also 458 * on to get that file removed from both index and worktree. 459 * If that file is already outside worktree area, don't 460 * bother remove it. 461 */ 462if(ce->ce_flags & CE_REMOVE) 463 ce->ce_flags &= ~CE_WT_REMOVE; 464} 465 466if(!was_skip_worktree &&ce_skip_worktree(ce)) { 467/* 468 * If CE_UPDATE is set, verify_uptodate() must be called already 469 * also stat info may have lost after merged_entry() so calling 470 * verify_uptodate() again may fail 471 */ 472if(!(ce->ce_flags & CE_UPDATE) &&verify_uptodate_sparse(ce, o)) 473return-1; 474 ce->ce_flags |= CE_WT_REMOVE; 475 ce->ce_flags &= ~CE_UPDATE; 476} 477if(was_skip_worktree && !ce_skip_worktree(ce)) { 478if(verify_absent_sparse(ce, ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN, o)) 479return-1; 480 ce->ce_flags |= CE_UPDATE; 481} 482return0; 483} 484 485staticinlineintcall_unpack_fn(const struct cache_entry *const*src, 486struct unpack_trees_options *o) 487{ 488int ret = o->fn(src, o); 489if(ret >0) 490 ret =0; 491return ret; 492} 493 494static voidmark_ce_used(struct cache_entry *ce,struct unpack_trees_options *o) 495{ 496 ce->ce_flags |= CE_UNPACKED; 497 498if(o->cache_bottom < o->src_index->cache_nr && 499 o->src_index->cache[o->cache_bottom] == ce) { 500int bottom = o->cache_bottom; 501while(bottom < o->src_index->cache_nr && 502 o->src_index->cache[bottom]->ce_flags & CE_UNPACKED) 503 bottom++; 504 o->cache_bottom = bottom; 505} 506} 507 508static voidmark_all_ce_unused(struct index_state *index) 509{ 510int i; 511for(i =0; i < index->cache_nr; i++) 512 index->cache[i]->ce_flags &= ~(CE_UNPACKED | CE_ADDED | CE_NEW_SKIP_WORKTREE); 513} 514 515static intlocate_in_src_index(const struct cache_entry *ce, 516struct unpack_trees_options *o) 517{ 518struct index_state *index = o->src_index; 519int len =ce_namelen(ce); 520int pos =index_name_pos(index, ce->name, len); 521if(pos <0) 522 pos = -1- pos; 523return pos; 524} 525 526/* 527 * We call unpack_index_entry() with an unmerged cache entry 528 * only in diff-index, and it wants a single callback. Skip 529 * the other unmerged entry with the same name. 530 */ 531static voidmark_ce_used_same_name(struct cache_entry *ce, 532struct unpack_trees_options *o) 533{ 534struct index_state *index = o->src_index; 535int len =ce_namelen(ce); 536int pos; 537 538for(pos =locate_in_src_index(ce, o); pos < index->cache_nr; pos++) { 539struct cache_entry *next = index->cache[pos]; 540if(len !=ce_namelen(next) || 541memcmp(ce->name, next->name, len)) 542break; 543mark_ce_used(next, o); 544} 545} 546 547static struct cache_entry *next_cache_entry(struct unpack_trees_options *o) 548{ 549const struct index_state *index = o->src_index; 550int pos = o->cache_bottom; 551 552while(pos < index->cache_nr) { 553struct cache_entry *ce = index->cache[pos]; 554if(!(ce->ce_flags & CE_UNPACKED)) 555return ce; 556 pos++; 557} 558return NULL; 559} 560 561static voidadd_same_unmerged(const struct cache_entry *ce, 562struct unpack_trees_options *o) 563{ 564struct index_state *index = o->src_index; 565int len =ce_namelen(ce); 566int pos =index_name_pos(index, ce->name, len); 567 568if(0<= pos) 569die("programming error in a caller of mark_ce_used_same_name"); 570for(pos = -pos -1; pos < index->cache_nr; pos++) { 571struct cache_entry *next = index->cache[pos]; 572if(len !=ce_namelen(next) || 573memcmp(ce->name, next->name, len)) 574break; 575add_entry(o, next,0,0); 576mark_ce_used(next, o); 577} 578} 579 580static intunpack_index_entry(struct cache_entry *ce, 581struct unpack_trees_options *o) 582{ 583const struct cache_entry *src[MAX_UNPACK_TREES +1] = { NULL, }; 584int ret; 585 586 src[0] = ce; 587 588mark_ce_used(ce, o); 589if(ce_stage(ce)) { 590if(o->skip_unmerged) { 591add_entry(o, ce,0,0); 592return0; 593} 594} 595 ret =call_unpack_fn(src, o); 596if(ce_stage(ce)) 597mark_ce_used_same_name(ce, o); 598return ret; 599} 600 601static intfind_cache_pos(struct traverse_info *,const struct name_entry *); 602 603static voidrestore_cache_bottom(struct traverse_info *info,int bottom) 604{ 605struct unpack_trees_options *o = info->data; 606 607if(o->diff_index_cached) 608return; 609 o->cache_bottom = bottom; 610} 611 612static intswitch_cache_bottom(struct traverse_info *info) 613{ 614struct unpack_trees_options *o = info->data; 615int ret, pos; 616 617if(o->diff_index_cached) 618return0; 619 ret = o->cache_bottom; 620 pos =find_cache_pos(info->prev, &info->name); 621 622if(pos < -1) 623 o->cache_bottom = -2- pos; 624else if(pos <0) 625 o->cache_bottom = o->src_index->cache_nr; 626return ret; 627} 628 629staticinlineintare_same_oid(struct name_entry *name_j,struct name_entry *name_k) 630{ 631return name_j->oid && name_k->oid && !oidcmp(name_j->oid, name_k->oid); 632} 633 634static inttraverse_trees_recursive(int n,unsigned long dirmask, 635unsigned long df_conflicts, 636struct name_entry *names, 637struct traverse_info *info) 638{ 639int i, ret, bottom; 640int nr_buf =0; 641struct tree_desc t[MAX_UNPACK_TREES]; 642void*buf[MAX_UNPACK_TREES]; 643struct traverse_info newinfo; 644struct name_entry *p; 645 646 p = names; 647while(!p->mode) 648 p++; 649 650 newinfo = *info; 651 newinfo.prev = info; 652 newinfo.pathspec = info->pathspec; 653 newinfo.name = *p; 654 newinfo.pathlen +=tree_entry_len(p) +1; 655 newinfo.df_conflicts |= df_conflicts; 656 657/* 658 * Fetch the tree from the ODB for each peer directory in the 659 * n commits. 660 * 661 * For 2- and 3-way traversals, we try to avoid hitting the 662 * ODB twice for the same OID. This should yield a nice speed 663 * up in checkouts and merges when the commits are similar. 664 * 665 * We don't bother doing the full O(n^2) search for larger n, 666 * because wider traversals don't happen that often and we 667 * avoid the search setup. 668 * 669 * When 2 peer OIDs are the same, we just copy the tree 670 * descriptor data. This implicitly borrows the buffer 671 * data from the earlier cell. 672 */ 673for(i =0; i < n; i++, dirmask >>=1) { 674if(i >0&&are_same_oid(&names[i], &names[i -1])) 675 t[i] = t[i -1]; 676else if(i >1&&are_same_oid(&names[i], &names[i -2])) 677 t[i] = t[i -2]; 678else{ 679const struct object_id *oid = NULL; 680if(dirmask &1) 681 oid = names[i].oid; 682 buf[nr_buf++] =fill_tree_descriptor(t + i, oid); 683} 684} 685 686 bottom =switch_cache_bottom(&newinfo); 687 ret =traverse_trees(n, t, &newinfo); 688restore_cache_bottom(&newinfo, bottom); 689 690for(i =0; i < nr_buf; i++) 691free(buf[i]); 692 693return ret; 694} 695 696/* 697 * Compare the traverse-path to the cache entry without actually 698 * having to generate the textual representation of the traverse 699 * path. 700 * 701 * NOTE! This *only* compares up to the size of the traverse path 702 * itself - the caller needs to do the final check for the cache 703 * entry having more data at the end! 704 */ 705static intdo_compare_entry_piecewise(const struct cache_entry *ce,const struct traverse_info *info,const struct name_entry *n) 706{ 707int len, pathlen, ce_len; 708const char*ce_name; 709 710if(info->prev) { 711int cmp =do_compare_entry_piecewise(ce, info->prev, 712&info->name); 713if(cmp) 714return cmp; 715} 716 pathlen = info->pathlen; 717 ce_len =ce_namelen(ce); 718 719/* If ce_len < pathlen then we must have previously hit "name == directory" entry */ 720if(ce_len < pathlen) 721return-1; 722 723 ce_len -= pathlen; 724 ce_name = ce->name + pathlen; 725 726 len =tree_entry_len(n); 727returndf_name_compare(ce_name, ce_len, S_IFREG, n->path, len, n->mode); 728} 729 730static intdo_compare_entry(const struct cache_entry *ce, 731const struct traverse_info *info, 732const struct name_entry *n) 733{ 734int len, pathlen, ce_len; 735const char*ce_name; 736int cmp; 737 738/* 739 * If we have not precomputed the traverse path, it is quicker 740 * to avoid doing so. But if we have precomputed it, 741 * it is quicker to use the precomputed version. 742 */ 743if(!info->traverse_path) 744returndo_compare_entry_piecewise(ce, info, n); 745 746 cmp =strncmp(ce->name, info->traverse_path, info->pathlen); 747if(cmp) 748return cmp; 749 750 pathlen = info->pathlen; 751 ce_len =ce_namelen(ce); 752 753if(ce_len < pathlen) 754return-1; 755 756 ce_len -= pathlen; 757 ce_name = ce->name + pathlen; 758 759 len =tree_entry_len(n); 760returndf_name_compare(ce_name, ce_len, S_IFREG, n->path, len, n->mode); 761} 762 763static intcompare_entry(const struct cache_entry *ce,const struct traverse_info *info,const struct name_entry *n) 764{ 765int cmp =do_compare_entry(ce, info, n); 766if(cmp) 767return cmp; 768 769/* 770 * Even if the beginning compared identically, the ce should 771 * compare as bigger than a directory leading up to it! 772 */ 773returnce_namelen(ce) >traverse_path_len(info, n); 774} 775 776static intce_in_traverse_path(const struct cache_entry *ce, 777const struct traverse_info *info) 778{ 779if(!info->prev) 780return1; 781if(do_compare_entry(ce, info->prev, &info->name)) 782return0; 783/* 784 * If ce (blob) is the same name as the path (which is a tree 785 * we will be descending into), it won't be inside it. 786 */ 787return(info->pathlen <ce_namelen(ce)); 788} 789 790static struct cache_entry *create_ce_entry(const struct traverse_info *info,const struct name_entry *n,int stage) 791{ 792int len =traverse_path_len(info, n); 793struct cache_entry *ce =xcalloc(1,cache_entry_size(len)); 794 795 ce->ce_mode =create_ce_mode(n->mode); 796 ce->ce_flags =create_ce_flags(stage); 797 ce->ce_namelen = len; 798oidcpy(&ce->oid, n->oid); 799make_traverse_path(ce->name, info, n); 800 801return ce; 802} 803 804static intunpack_nondirectories(int n,unsigned long mask, 805unsigned long dirmask, 806struct cache_entry **src, 807const struct name_entry *names, 808const struct traverse_info *info) 809{ 810int i; 811struct unpack_trees_options *o = info->data; 812unsigned long conflicts = info->df_conflicts | dirmask; 813 814/* Do we have *only* directories? Nothing to do */ 815if(mask == dirmask && !src[0]) 816return0; 817 818/* 819 * Ok, we've filled in up to any potential index entry in src[0], 820 * now do the rest. 821 */ 822for(i =0; i < n; i++) { 823int stage; 824unsigned int bit =1ul<< i; 825if(conflicts & bit) { 826 src[i + o->merge] = o->df_conflict_entry; 827continue; 828} 829if(!(mask & bit)) 830continue; 831if(!o->merge) 832 stage =0; 833else if(i +1< o->head_idx) 834 stage =1; 835else if(i +1> o->head_idx) 836 stage =3; 837else 838 stage =2; 839 src[i + o->merge] =create_ce_entry(info, names + i, stage); 840} 841 842if(o->merge) { 843int rc =call_unpack_fn((const struct cache_entry *const*)src, 844 o); 845for(i =0; i < n; i++) { 846struct cache_entry *ce = src[i + o->merge]; 847if(ce != o->df_conflict_entry) 848free(ce); 849} 850return rc; 851} 852 853for(i =0; i < n; i++) 854if(src[i] && src[i] != o->df_conflict_entry) 855if(do_add_entry(o, src[i],0,0)) 856return-1; 857 858return0; 859} 860 861static intunpack_failed(struct unpack_trees_options *o,const char*message) 862{ 863discard_index(&o->result); 864if(!o->gently && !o->exiting_early) { 865if(message) 866returnerror("%s", message); 867return-1; 868} 869return-1; 870} 871 872/* 873 * The tree traversal is looking at name p. If we have a matching entry, 874 * return it. If name p is a directory in the index, do not return 875 * anything, as we will want to match it when the traversal descends into 876 * the directory. 877 */ 878static intfind_cache_pos(struct traverse_info *info, 879const struct name_entry *p) 880{ 881int pos; 882struct unpack_trees_options *o = info->data; 883struct index_state *index = o->src_index; 884int pfxlen = info->pathlen; 885int p_len =tree_entry_len(p); 886 887for(pos = o->cache_bottom; pos < index->cache_nr; pos++) { 888const struct cache_entry *ce = index->cache[pos]; 889const char*ce_name, *ce_slash; 890int cmp, ce_len; 891 892if(ce->ce_flags & CE_UNPACKED) { 893/* 894 * cache_bottom entry is already unpacked, so 895 * we can never match it; don't check it 896 * again. 897 */ 898if(pos == o->cache_bottom) 899++o->cache_bottom; 900continue; 901} 902if(!ce_in_traverse_path(ce, info)) { 903/* 904 * Check if we can skip future cache checks 905 * (because we're already past all possible 906 * entries in the traverse path). 907 */ 908if(info->traverse_path) { 909if(strncmp(ce->name, info->traverse_path, 910 info->pathlen) >0) 911break; 912} 913continue; 914} 915 ce_name = ce->name + pfxlen; 916 ce_slash =strchr(ce_name,'/'); 917if(ce_slash) 918 ce_len = ce_slash - ce_name; 919else 920 ce_len =ce_namelen(ce) - pfxlen; 921 cmp =name_compare(p->path, p_len, ce_name, ce_len); 922/* 923 * Exact match; if we have a directory we need to 924 * delay returning it. 925 */ 926if(!cmp) 927return ce_slash ? -2- pos : pos; 928if(0< cmp) 929continue;/* keep looking */ 930/* 931 * ce_name sorts after p->path; could it be that we 932 * have files under p->path directory in the index? 933 * E.g. ce_name == "t-i", and p->path == "t"; we may 934 * have "t/a" in the index. 935 */ 936if(p_len < ce_len && !memcmp(ce_name, p->path, p_len) && 937 ce_name[p_len] <'/') 938continue;/* keep looking */ 939break; 940} 941return-1; 942} 943 944static struct cache_entry *find_cache_entry(struct traverse_info *info, 945const struct name_entry *p) 946{ 947int pos =find_cache_pos(info, p); 948struct unpack_trees_options *o = info->data; 949 950if(0<= pos) 951return o->src_index->cache[pos]; 952else 953return NULL; 954} 955 956static voiddebug_path(struct traverse_info *info) 957{ 958if(info->prev) { 959debug_path(info->prev); 960if(*info->prev->name.path) 961putchar('/'); 962} 963printf("%s", info->name.path); 964} 965 966static voiddebug_name_entry(int i,struct name_entry *n) 967{ 968printf("ent#%d %06o%s\n", i, 969 n->path ? n->mode :0, 970 n->path ? n->path :"(missing)"); 971} 972 973static voiddebug_unpack_callback(int n, 974unsigned long mask, 975unsigned long dirmask, 976struct name_entry *names, 977struct traverse_info *info) 978{ 979int i; 980printf("* unpack mask%lu, dirmask%lu, cnt%d", 981 mask, dirmask, n); 982debug_path(info); 983putchar('\n'); 984for(i =0; i < n; i++) 985debug_name_entry(i, names + i); 986} 987 988static intunpack_callback(int n,unsigned long mask,unsigned long dirmask,struct name_entry *names,struct traverse_info *info) 989{ 990struct cache_entry *src[MAX_UNPACK_TREES +1] = { NULL, }; 991struct unpack_trees_options *o = info->data; 992const struct name_entry *p = names; 993 994/* Find first entry with a real name (we could use "mask" too) */ 995while(!p->mode) 996 p++; 997 998if(o->debug_unpack) 999debug_unpack_callback(n, mask, dirmask, names, info);10001001/* Are we supposed to look at the index too? */1002if(o->merge) {1003while(1) {1004int cmp;1005struct cache_entry *ce;10061007if(o->diff_index_cached)1008 ce =next_cache_entry(o);1009else1010 ce =find_cache_entry(info, p);10111012if(!ce)1013break;1014 cmp =compare_entry(ce, info, p);1015if(cmp <0) {1016if(unpack_index_entry(ce, o) <0)1017returnunpack_failed(o, NULL);1018continue;1019}1020if(!cmp) {1021if(ce_stage(ce)) {1022/*1023 * If we skip unmerged index1024 * entries, we'll skip this1025 * entry *and* the tree1026 * entries associated with it!1027 */1028if(o->skip_unmerged) {1029add_same_unmerged(ce, o);1030return mask;1031}1032}1033 src[0] = ce;1034}1035break;1036}1037}10381039if(unpack_nondirectories(n, mask, dirmask, src, names, info) <0)1040return-1;10411042if(o->merge && src[0]) {1043if(ce_stage(src[0]))1044mark_ce_used_same_name(src[0], o);1045else1046mark_ce_used(src[0], o);1047}10481049/* Now handle any directories.. */1050if(dirmask) {1051/* special case: "diff-index --cached" looking at a tree */1052if(o->diff_index_cached &&1053 n ==1&& dirmask ==1&&S_ISDIR(names->mode)) {1054int matches;1055 matches =cache_tree_matches_traversal(o->src_index->cache_tree,1056 names, info);1057/*1058 * Everything under the name matches; skip the1059 * entire hierarchy. diff_index_cached codepath1060 * special cases D/F conflicts in such a way that1061 * it does not do any look-ahead, so this is safe.1062 */1063if(matches) {1064 o->cache_bottom += matches;1065return mask;1066}1067}10681069if(traverse_trees_recursive(n, dirmask, mask & ~dirmask,1070 names, info) <0)1071return-1;1072return mask;1073}10741075return mask;1076}10771078static intclear_ce_flags_1(struct cache_entry **cache,int nr,1079struct strbuf *prefix,1080int select_mask,int clear_mask,1081struct exclude_list *el,int defval);10821083/* Whole directory matching */1084static intclear_ce_flags_dir(struct cache_entry **cache,int nr,1085struct strbuf *prefix,1086char*basename,1087int select_mask,int clear_mask,1088struct exclude_list *el,int defval)1089{1090struct cache_entry **cache_end;1091int dtype = DT_DIR;1092int ret =is_excluded_from_list(prefix->buf, prefix->len,1093 basename, &dtype, el, &the_index);1094int rc;10951096strbuf_addch(prefix,'/');10971098/* If undecided, use matching result of parent dir in defval */1099if(ret <0)1100 ret = defval;11011102for(cache_end = cache; cache_end != cache + nr; cache_end++) {1103struct cache_entry *ce = *cache_end;1104if(strncmp(ce->name, prefix->buf, prefix->len))1105break;1106}11071108/*1109 * TODO: check el, if there are no patterns that may conflict1110 * with ret (iow, we know in advance the incl/excl1111 * decision for the entire directory), clear flag here without1112 * calling clear_ce_flags_1(). That function will call1113 * the expensive is_excluded_from_list() on every entry.1114 */1115 rc =clear_ce_flags_1(cache, cache_end - cache,1116 prefix,1117 select_mask, clear_mask,1118 el, ret);1119strbuf_setlen(prefix, prefix->len -1);1120return rc;1121}11221123/*1124 * Traverse the index, find every entry that matches according to1125 * o->el. Do "ce_flags &= ~clear_mask" on those entries. Return the1126 * number of traversed entries.1127 *1128 * If select_mask is non-zero, only entries whose ce_flags has on of1129 * those bits enabled are traversed.1130 *1131 * cache : pointer to an index entry1132 * prefix_len : an offset to its path1133 *1134 * The current path ("prefix") including the trailing '/' is1135 * cache[0]->name[0..(prefix_len-1)]1136 * Top level path has prefix_len zero.1137 */1138static intclear_ce_flags_1(struct cache_entry **cache,int nr,1139struct strbuf *prefix,1140int select_mask,int clear_mask,1141struct exclude_list *el,int defval)1142{1143struct cache_entry **cache_end = cache + nr;11441145/*1146 * Process all entries that have the given prefix and meet1147 * select_mask condition1148 */1149while(cache != cache_end) {1150struct cache_entry *ce = *cache;1151const char*name, *slash;1152int len, dtype, ret;11531154if(select_mask && !(ce->ce_flags & select_mask)) {1155 cache++;1156continue;1157}11581159if(prefix->len &&strncmp(ce->name, prefix->buf, prefix->len))1160break;11611162 name = ce->name + prefix->len;1163 slash =strchr(name,'/');11641165/* If it's a directory, try whole directory match first */1166if(slash) {1167int processed;11681169 len = slash - name;1170strbuf_add(prefix, name, len);11711172 processed =clear_ce_flags_dir(cache, cache_end - cache,1173 prefix,1174 prefix->buf + prefix->len - len,1175 select_mask, clear_mask,1176 el, defval);11771178/* clear_c_f_dir eats a whole dir already? */1179if(processed) {1180 cache += processed;1181strbuf_setlen(prefix, prefix->len - len);1182continue;1183}11841185strbuf_addch(prefix,'/');1186 cache +=clear_ce_flags_1(cache, cache_end - cache,1187 prefix,1188 select_mask, clear_mask, el, defval);1189strbuf_setlen(prefix, prefix->len - len -1);1190continue;1191}11921193/* Non-directory */1194 dtype =ce_to_dtype(ce);1195 ret =is_excluded_from_list(ce->name,ce_namelen(ce),1196 name, &dtype, el, &the_index);1197if(ret <0)1198 ret = defval;1199if(ret >0)1200 ce->ce_flags &= ~clear_mask;1201 cache++;1202}1203return nr - (cache_end - cache);1204}12051206static intclear_ce_flags(struct cache_entry **cache,int nr,1207int select_mask,int clear_mask,1208struct exclude_list *el)1209{1210static struct strbuf prefix = STRBUF_INIT;12111212strbuf_reset(&prefix);12131214returnclear_ce_flags_1(cache, nr,1215&prefix,1216 select_mask, clear_mask,1217 el,0);1218}12191220/*1221 * Set/Clear CE_NEW_SKIP_WORKTREE according to $GIT_DIR/info/sparse-checkout1222 */1223static voidmark_new_skip_worktree(struct exclude_list *el,1224struct index_state *the_index,1225int select_flag,int skip_wt_flag)1226{1227int i;12281229/*1230 * 1. Pretend the narrowest worktree: only unmerged entries1231 * are checked out1232 */1233for(i =0; i < the_index->cache_nr; i++) {1234struct cache_entry *ce = the_index->cache[i];12351236if(select_flag && !(ce->ce_flags & select_flag))1237continue;12381239if(!ce_stage(ce))1240 ce->ce_flags |= skip_wt_flag;1241else1242 ce->ce_flags &= ~skip_wt_flag;1243}12441245/*1246 * 2. Widen worktree according to sparse-checkout file.1247 * Matched entries will have skip_wt_flag cleared (i.e. "in")1248 */1249clear_ce_flags(the_index->cache, the_index->cache_nr,1250 select_flag, skip_wt_flag, el);1251}12521253static intverify_absent(const struct cache_entry *,1254enum unpack_trees_error_types,1255struct unpack_trees_options *);1256/*1257 * N-way merge "len" trees. Returns 0 on success, -1 on failure to manipulate the1258 * resulting index, -2 on failure to reflect the changes to the work tree.1259 *1260 * CE_ADDED, CE_UNPACKED and CE_NEW_SKIP_WORKTREE are used internally1261 */1262intunpack_trees(unsigned len,struct tree_desc *t,struct unpack_trees_options *o)1263{1264int i, ret;1265static struct cache_entry *dfc;1266struct exclude_list el;12671268if(len > MAX_UNPACK_TREES)1269die("unpack_trees takes at most%dtrees", MAX_UNPACK_TREES);12701271memset(&el,0,sizeof(el));1272if(!core_apply_sparse_checkout || !o->update)1273 o->skip_sparse_checkout =1;1274if(!o->skip_sparse_checkout) {1275char*sparse =git_pathdup("info/sparse-checkout");1276if(add_excludes_from_file_to_list(sparse,"",0, &el, NULL) <0)1277 o->skip_sparse_checkout =1;1278else1279 o->el = ⪙1280free(sparse);1281}12821283memset(&o->result,0,sizeof(o->result));1284 o->result.initialized =1;1285 o->result.timestamp.sec = o->src_index->timestamp.sec;1286 o->result.timestamp.nsec = o->src_index->timestamp.nsec;1287 o->result.version = o->src_index->version;1288 o->result.split_index = o->src_index->split_index;1289if(o->result.split_index)1290 o->result.split_index->refcount++;1291hashcpy(o->result.sha1, o->src_index->sha1);1292 o->merge_size = len;1293mark_all_ce_unused(o->src_index);12941295/*1296 * Sparse checkout loop #1: set NEW_SKIP_WORKTREE on existing entries1297 */1298if(!o->skip_sparse_checkout)1299mark_new_skip_worktree(o->el, o->src_index,0, CE_NEW_SKIP_WORKTREE);13001301if(!dfc)1302 dfc =xcalloc(1,cache_entry_size(0));1303 o->df_conflict_entry = dfc;13041305if(len) {1306const char*prefix = o->prefix ? o->prefix :"";1307struct traverse_info info;13081309setup_traverse_info(&info, prefix);1310 info.fn = unpack_callback;1311 info.data = o;1312 info.show_all_errors = o->show_all_errors;1313 info.pathspec = o->pathspec;13141315if(o->prefix) {1316/*1317 * Unpack existing index entries that sort before the1318 * prefix the tree is spliced into. Note that o->merge1319 * is always true in this case.1320 */1321while(1) {1322struct cache_entry *ce =next_cache_entry(o);1323if(!ce)1324break;1325if(ce_in_traverse_path(ce, &info))1326break;1327if(unpack_index_entry(ce, o) <0)1328goto return_failed;1329}1330}13311332if(traverse_trees(len, t, &info) <0)1333goto return_failed;1334}13351336/* Any left-over entries in the index? */1337if(o->merge) {1338while(1) {1339struct cache_entry *ce =next_cache_entry(o);1340if(!ce)1341break;1342if(unpack_index_entry(ce, o) <0)1343goto return_failed;1344}1345}1346mark_all_ce_unused(o->src_index);13471348if(o->trivial_merges_only && o->nontrivial_merge) {1349 ret =unpack_failed(o,"Merge requires file-level merging");1350goto done;1351}13521353if(!o->skip_sparse_checkout) {1354int empty_worktree =1;13551356/*1357 * Sparse checkout loop #2: set NEW_SKIP_WORKTREE on entries not in loop #11358 * If the will have NEW_SKIP_WORKTREE, also set CE_SKIP_WORKTREE1359 * so apply_sparse_checkout() won't attempt to remove it from worktree1360 */1361mark_new_skip_worktree(o->el, &o->result, CE_ADDED, CE_SKIP_WORKTREE | CE_NEW_SKIP_WORKTREE);13621363 ret =0;1364for(i =0; i < o->result.cache_nr; i++) {1365struct cache_entry *ce = o->result.cache[i];13661367/*1368 * Entries marked with CE_ADDED in merged_entry() do not have1369 * verify_absent() check (the check is effectively disabled1370 * because CE_NEW_SKIP_WORKTREE is set unconditionally).1371 *1372 * Do the real check now because we have had1373 * correct CE_NEW_SKIP_WORKTREE1374 */1375if(ce->ce_flags & CE_ADDED &&1376verify_absent(ce, ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN, o)) {1377if(!o->show_all_errors)1378goto return_failed;1379 ret = -1;1380}13811382if(apply_sparse_checkout(&o->result, ce, o)) {1383if(!o->show_all_errors)1384goto return_failed;1385 ret = -1;1386}1387if(!ce_skip_worktree(ce))1388 empty_worktree =0;13891390}1391if(ret <0)1392goto return_failed;1393/*1394 * Sparse checkout is meant to narrow down checkout area1395 * but it does not make sense to narrow down to empty working1396 * tree. This is usually a mistake in sparse checkout rules.1397 * Do not allow users to do that.1398 */1399if(o->result.cache_nr && empty_worktree) {1400 ret =unpack_failed(o,"Sparse checkout leaves no entry on working directory");1401goto done;1402}1403}14041405 o->src_index = NULL;1406 ret =check_updates(o) ? (-2) :0;1407if(o->dst_index) {1408if(!ret) {1409if(!o->result.cache_tree)1410 o->result.cache_tree =cache_tree();1411if(!cache_tree_fully_valid(o->result.cache_tree))1412cache_tree_update(&o->result,1413 WRITE_TREE_SILENT |1414 WRITE_TREE_REPAIR);1415}1416move_index_extensions(&o->result, o->dst_index);1417discard_index(o->dst_index);1418*o->dst_index = o->result;1419}else{1420discard_index(&o->result);1421}14221423done:1424clear_exclude_list(&el);1425return ret;14261427return_failed:1428if(o->show_all_errors)1429display_error_msgs(o);1430mark_all_ce_unused(o->src_index);1431 ret =unpack_failed(o, NULL);1432if(o->exiting_early)1433 ret =0;1434goto done;1435}14361437/* Here come the merge functions */14381439static intreject_merge(const struct cache_entry *ce,1440struct unpack_trees_options *o)1441{1442return o->gently ? -1:1443add_rejected_path(o, ERROR_WOULD_OVERWRITE, ce->name);1444}14451446static intsame(const struct cache_entry *a,const struct cache_entry *b)1447{1448if(!!a != !!b)1449return0;1450if(!a && !b)1451return1;1452if((a->ce_flags | b->ce_flags) & CE_CONFLICTED)1453return0;1454return a->ce_mode == b->ce_mode &&1455!oidcmp(&a->oid, &b->oid);1456}145714581459/*1460 * When a CE gets turned into an unmerged entry, we1461 * want it to be up-to-date1462 */1463static intverify_uptodate_1(const struct cache_entry *ce,1464struct unpack_trees_options *o,1465enum unpack_trees_error_types error_type)1466{1467struct stat st;14681469if(o->index_only)1470return0;14711472/*1473 * CE_VALID and CE_SKIP_WORKTREE cheat, we better check again1474 * if this entry is truly up-to-date because this file may be1475 * overwritten.1476 */1477if((ce->ce_flags & CE_VALID) ||ce_skip_worktree(ce))1478;/* keep checking */1479else if(o->reset ||ce_uptodate(ce))1480return0;14811482if(!lstat(ce->name, &st)) {1483int flags = CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE;1484unsigned changed =ie_match_stat(o->src_index, ce, &st, flags);14851486if(submodule_from_ce(ce)) {1487int r =check_submodule_move_head(ce,1488"HEAD",oid_to_hex(&ce->oid), o);1489if(r)1490return o->gently ? -1:1491add_rejected_path(o, error_type, ce->name);1492return0;1493}14941495if(!changed)1496return0;1497/*1498 * Historic default policy was to allow submodule to be out1499 * of sync wrt the superproject index. If the submodule was1500 * not considered interesting above, we don't care here.1501 */1502if(S_ISGITLINK(ce->ce_mode))1503return0;15041505 errno =0;1506}1507if(errno == ENOENT)1508return0;1509return o->gently ? -1:1510add_rejected_path(o, error_type, ce->name);1511}15121513static intverify_uptodate(const struct cache_entry *ce,1514struct unpack_trees_options *o)1515{1516if(!o->skip_sparse_checkout && (ce->ce_flags & CE_NEW_SKIP_WORKTREE))1517return0;1518returnverify_uptodate_1(ce, o, ERROR_NOT_UPTODATE_FILE);1519}15201521static intverify_uptodate_sparse(const struct cache_entry *ce,1522struct unpack_trees_options *o)1523{1524returnverify_uptodate_1(ce, o, ERROR_SPARSE_NOT_UPTODATE_FILE);1525}15261527static voidinvalidate_ce_path(const struct cache_entry *ce,1528struct unpack_trees_options *o)1529{1530if(!ce)1531return;1532cache_tree_invalidate_path(o->src_index, ce->name);1533untracked_cache_invalidate_path(o->src_index, ce->name,1);1534}15351536/*1537 * Check that checking out ce->sha1 in subdir ce->name is not1538 * going to overwrite any working files.1539 *1540 * Currently, git does not checkout subprojects during a superproject1541 * checkout, so it is not going to overwrite anything.1542 */1543static intverify_clean_submodule(const char*old_sha1,1544const struct cache_entry *ce,1545enum unpack_trees_error_types error_type,1546struct unpack_trees_options *o)1547{1548if(!submodule_from_ce(ce))1549return0;15501551returncheck_submodule_move_head(ce, old_sha1,1552oid_to_hex(&ce->oid), o);1553}15541555static intverify_clean_subdirectory(const struct cache_entry *ce,1556enum unpack_trees_error_types error_type,1557struct unpack_trees_options *o)1558{1559/*1560 * we are about to extract "ce->name"; we would not want to lose1561 * anything in the existing directory there.1562 */1563int namelen;1564int i;1565struct dir_struct d;1566char*pathbuf;1567int cnt =0;15681569if(S_ISGITLINK(ce->ce_mode)) {1570struct object_id oid;1571int sub_head =resolve_gitlink_ref(ce->name,"HEAD", &oid);1572/*1573 * If we are not going to update the submodule, then1574 * we don't care.1575 */1576if(!sub_head && !oidcmp(&oid, &ce->oid))1577return0;1578returnverify_clean_submodule(sub_head ? NULL :oid_to_hex(&oid),1579 ce, error_type, o);1580}15811582/*1583 * First let's make sure we do not have a local modification1584 * in that directory.1585 */1586 namelen =ce_namelen(ce);1587for(i =locate_in_src_index(ce, o);1588 i < o->src_index->cache_nr;1589 i++) {1590struct cache_entry *ce2 = o->src_index->cache[i];1591int len =ce_namelen(ce2);1592if(len < namelen ||1593strncmp(ce->name, ce2->name, namelen) ||1594 ce2->name[namelen] !='/')1595break;1596/*1597 * ce2->name is an entry in the subdirectory to be1598 * removed.1599 */1600if(!ce_stage(ce2)) {1601if(verify_uptodate(ce2, o))1602return-1;1603add_entry(o, ce2, CE_REMOVE,0);1604mark_ce_used(ce2, o);1605}1606 cnt++;1607}16081609/*1610 * Then we need to make sure that we do not lose a locally1611 * present file that is not ignored.1612 */1613 pathbuf =xstrfmt("%.*s/", namelen, ce->name);16141615memset(&d,0,sizeof(d));1616if(o->dir)1617 d.exclude_per_dir = o->dir->exclude_per_dir;1618 i =read_directory(&d, &the_index, pathbuf, namelen+1, NULL);1619if(i)1620return o->gently ? -1:1621add_rejected_path(o, ERROR_NOT_UPTODATE_DIR, ce->name);1622free(pathbuf);1623return cnt;1624}16251626/*1627 * This gets called when there was no index entry for the tree entry 'dst',1628 * but we found a file in the working tree that 'lstat()' said was fine,1629 * and we're on a case-insensitive filesystem.1630 *1631 * See if we can find a case-insensitive match in the index that also1632 * matches the stat information, and assume it's that other file!1633 */1634static inticase_exists(struct unpack_trees_options *o,const char*name,int len,struct stat *st)1635{1636const struct cache_entry *src;16371638 src =index_file_exists(o->src_index, name, len,1);1639return src && !ie_match_stat(o->src_index, src, st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);1640}16411642static intcheck_ok_to_remove(const char*name,int len,int dtype,1643const struct cache_entry *ce,struct stat *st,1644enum unpack_trees_error_types error_type,1645struct unpack_trees_options *o)1646{1647const struct cache_entry *result;16481649/*1650 * It may be that the 'lstat()' succeeded even though1651 * target 'ce' was absent, because there is an old1652 * entry that is different only in case..1653 *1654 * Ignore that lstat() if it matches.1655 */1656if(ignore_case &&icase_exists(o, name, len, st))1657return0;16581659if(o->dir &&1660is_excluded(o->dir, &the_index, name, &dtype))1661/*1662 * ce->name is explicitly excluded, so it is Ok to1663 * overwrite it.1664 */1665return0;1666if(S_ISDIR(st->st_mode)) {1667/*1668 * We are checking out path "foo" and1669 * found "foo/." in the working tree.1670 * This is tricky -- if we have modified1671 * files that are in "foo/" we would lose1672 * them.1673 */1674if(verify_clean_subdirectory(ce, error_type, o) <0)1675return-1;1676return0;1677}16781679/*1680 * The previous round may already have decided to1681 * delete this path, which is in a subdirectory that1682 * is being replaced with a blob.1683 */1684 result =index_file_exists(&o->result, name, len,0);1685if(result) {1686if(result->ce_flags & CE_REMOVE)1687return0;1688}16891690return o->gently ? -1:1691add_rejected_path(o, error_type, name);1692}16931694/*1695 * We do not want to remove or overwrite a working tree file that1696 * is not tracked, unless it is ignored.1697 */1698static intverify_absent_1(const struct cache_entry *ce,1699enum unpack_trees_error_types error_type,1700struct unpack_trees_options *o)1701{1702int len;1703struct stat st;17041705if(o->index_only || o->reset || !o->update)1706return0;17071708 len =check_leading_path(ce->name,ce_namelen(ce));1709if(!len)1710return0;1711else if(len >0) {1712char*path;1713int ret;17141715 path =xmemdupz(ce->name, len);1716if(lstat(path, &st))1717 ret =error_errno("cannot stat '%s'", path);1718else{1719if(submodule_from_ce(ce))1720 ret =check_submodule_move_head(ce,1721oid_to_hex(&ce->oid),1722 NULL, o);1723else1724 ret =check_ok_to_remove(path, len, DT_UNKNOWN, NULL,1725&st, error_type, o);1726}1727free(path);1728return ret;1729}else if(lstat(ce->name, &st)) {1730if(errno != ENOENT)1731returnerror_errno("cannot stat '%s'", ce->name);1732return0;1733}else{1734if(submodule_from_ce(ce))1735returncheck_submodule_move_head(ce,oid_to_hex(&ce->oid),1736 NULL, o);17371738returncheck_ok_to_remove(ce->name,ce_namelen(ce),1739ce_to_dtype(ce), ce, &st,1740 error_type, o);1741}1742}17431744static intverify_absent(const struct cache_entry *ce,1745enum unpack_trees_error_types error_type,1746struct unpack_trees_options *o)1747{1748if(!o->skip_sparse_checkout && (ce->ce_flags & CE_NEW_SKIP_WORKTREE))1749return0;1750returnverify_absent_1(ce, error_type, o);1751}17521753static intverify_absent_sparse(const struct cache_entry *ce,1754enum unpack_trees_error_types error_type,1755struct unpack_trees_options *o)1756{1757enum unpack_trees_error_types orphaned_error = error_type;1758if(orphaned_error == ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN)1759 orphaned_error = ERROR_WOULD_LOSE_ORPHANED_OVERWRITTEN;17601761returnverify_absent_1(ce, orphaned_error, o);1762}17631764static intmerged_entry(const struct cache_entry *ce,1765const struct cache_entry *old,1766struct unpack_trees_options *o)1767{1768int update = CE_UPDATE;1769struct cache_entry *merge =dup_entry(ce);17701771if(!old) {1772/*1773 * New index entries. In sparse checkout, the following1774 * verify_absent() will be delayed until after1775 * traverse_trees() finishes in unpack_trees(), then:1776 *1777 * - CE_NEW_SKIP_WORKTREE will be computed correctly1778 * - verify_absent() be called again, this time with1779 * correct CE_NEW_SKIP_WORKTREE1780 *1781 * verify_absent() call here does nothing in sparse1782 * checkout (i.e. o->skip_sparse_checkout == 0)1783 */1784 update |= CE_ADDED;1785 merge->ce_flags |= CE_NEW_SKIP_WORKTREE;17861787if(verify_absent(merge,1788 ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN, o)) {1789free(merge);1790return-1;1791}1792invalidate_ce_path(merge, o);17931794if(submodule_from_ce(ce)) {1795int ret =check_submodule_move_head(ce, NULL,1796oid_to_hex(&ce->oid),1797 o);1798if(ret)1799return ret;1800}18011802}else if(!(old->ce_flags & CE_CONFLICTED)) {1803/*1804 * See if we can re-use the old CE directly?1805 * That way we get the uptodate stat info.1806 *1807 * This also removes the UPDATE flag on a match; otherwise1808 * we will end up overwriting local changes in the work tree.1809 */1810if(same(old, merge)) {1811copy_cache_entry(merge, old);1812 update =0;1813}else{1814if(verify_uptodate(old, o)) {1815free(merge);1816return-1;1817}1818/* Migrate old flags over */1819 update |= old->ce_flags & (CE_SKIP_WORKTREE | CE_NEW_SKIP_WORKTREE);1820invalidate_ce_path(old, o);1821}18221823if(submodule_from_ce(ce)) {1824int ret =check_submodule_move_head(ce,oid_to_hex(&old->oid),1825oid_to_hex(&ce->oid),1826 o);1827if(ret)1828return ret;1829}1830}else{1831/*1832 * Previously unmerged entry left as an existence1833 * marker by read_index_unmerged();1834 */1835invalidate_ce_path(old, o);1836}18371838do_add_entry(o, merge, update, CE_STAGEMASK);1839return1;1840}18411842static intdeleted_entry(const struct cache_entry *ce,1843const struct cache_entry *old,1844struct unpack_trees_options *o)1845{1846/* Did it exist in the index? */1847if(!old) {1848if(verify_absent(ce, ERROR_WOULD_LOSE_UNTRACKED_REMOVED, o))1849return-1;1850return0;1851}1852if(!(old->ce_flags & CE_CONFLICTED) &&verify_uptodate(old, o))1853return-1;1854add_entry(o, ce, CE_REMOVE,0);1855invalidate_ce_path(ce, o);1856return1;1857}18581859static intkeep_entry(const struct cache_entry *ce,1860struct unpack_trees_options *o)1861{1862add_entry(o, ce,0,0);1863return1;1864}18651866#if DBRT_DEBUG1867static voidshow_stage_entry(FILE*o,1868const char*label,const struct cache_entry *ce)1869{1870if(!ce)1871fprintf(o,"%s(missing)\n", label);1872else1873fprintf(o,"%s%06o%s %d\t%s\n",1874 label,1875 ce->ce_mode,1876oid_to_hex(&ce->oid),1877ce_stage(ce),1878 ce->name);1879}1880#endif18811882intthreeway_merge(const struct cache_entry *const*stages,1883struct unpack_trees_options *o)1884{1885const struct cache_entry *index;1886const struct cache_entry *head;1887const struct cache_entry *remote = stages[o->head_idx +1];1888int count;1889int head_match =0;1890int remote_match =0;18911892int df_conflict_head =0;1893int df_conflict_remote =0;18941895int any_anc_missing =0;1896int no_anc_exists =1;1897int i;18981899for(i =1; i < o->head_idx; i++) {1900if(!stages[i] || stages[i] == o->df_conflict_entry)1901 any_anc_missing =1;1902else1903 no_anc_exists =0;1904}19051906 index = stages[0];1907 head = stages[o->head_idx];19081909if(head == o->df_conflict_entry) {1910 df_conflict_head =1;1911 head = NULL;1912}19131914if(remote == o->df_conflict_entry) {1915 df_conflict_remote =1;1916 remote = NULL;1917}19181919/*1920 * First, if there's a #16 situation, note that to prevent #131921 * and #14.1922 */1923if(!same(remote, head)) {1924for(i =1; i < o->head_idx; i++) {1925if(same(stages[i], head)) {1926 head_match = i;1927}1928if(same(stages[i], remote)) {1929 remote_match = i;1930}1931}1932}19331934/*1935 * We start with cases where the index is allowed to match1936 * something other than the head: #14(ALT) and #2ALT, where it1937 * is permitted to match the result instead.1938 */1939/* #14, #14ALT, #2ALT */1940if(remote && !df_conflict_head && head_match && !remote_match) {1941if(index && !same(index, remote) && !same(index, head))1942returnreject_merge(index, o);1943returnmerged_entry(remote, index, o);1944}1945/*1946 * If we have an entry in the index cache, then we want to1947 * make sure that it matches head.1948 */1949if(index && !same(index, head))1950returnreject_merge(index, o);19511952if(head) {1953/* #5ALT, #15 */1954if(same(head, remote))1955returnmerged_entry(head, index, o);1956/* #13, #3ALT */1957if(!df_conflict_remote && remote_match && !head_match)1958returnmerged_entry(head, index, o);1959}19601961/* #1 */1962if(!head && !remote && any_anc_missing)1963return0;19641965/*1966 * Under the "aggressive" rule, we resolve mostly trivial1967 * cases that we historically had git-merge-one-file resolve.1968 */1969if(o->aggressive) {1970int head_deleted = !head;1971int remote_deleted = !remote;1972const struct cache_entry *ce = NULL;19731974if(index)1975 ce = index;1976else if(head)1977 ce = head;1978else if(remote)1979 ce = remote;1980else{1981for(i =1; i < o->head_idx; i++) {1982if(stages[i] && stages[i] != o->df_conflict_entry) {1983 ce = stages[i];1984break;1985}1986}1987}19881989/*1990 * Deleted in both.1991 * Deleted in one and unchanged in the other.1992 */1993if((head_deleted && remote_deleted) ||1994(head_deleted && remote && remote_match) ||1995(remote_deleted && head && head_match)) {1996if(index)1997returndeleted_entry(index, index, o);1998if(ce && !head_deleted) {1999if(verify_absent(ce, ERROR_WOULD_LOSE_UNTRACKED_REMOVED, o))2000return-1;2001}2002return0;2003}2004/*2005 * Added in both, identically.2006 */2007if(no_anc_exists && head && remote &&same(head, remote))2008returnmerged_entry(head, index, o);20092010}20112012/* Below are "no merge" cases, which require that the index be2013 * up-to-date to avoid the files getting overwritten with2014 * conflict resolution files.2015 */2016if(index) {2017if(verify_uptodate(index, o))2018return-1;2019}20202021 o->nontrivial_merge =1;20222023/* #2, #3, #4, #6, #7, #9, #10, #11. */2024 count =0;2025if(!head_match || !remote_match) {2026for(i =1; i < o->head_idx; i++) {2027if(stages[i] && stages[i] != o->df_conflict_entry) {2028keep_entry(stages[i], o);2029 count++;2030break;2031}2032}2033}2034#if DBRT_DEBUG2035else{2036fprintf(stderr,"read-tree: warning #16 detected\n");2037show_stage_entry(stderr,"head ", stages[head_match]);2038show_stage_entry(stderr,"remote ", stages[remote_match]);2039}2040#endif2041if(head) { count +=keep_entry(head, o); }2042if(remote) { count +=keep_entry(remote, o); }2043return count;2044}20452046/*2047 * Two-way merge.2048 *2049 * The rule is to "carry forward" what is in the index without losing2050 * information across a "fast-forward", favoring a successful merge2051 * over a merge failure when it makes sense. For details of the2052 * "carry forward" rule, please see <Documentation/git-read-tree.txt>.2053 *2054 */2055inttwoway_merge(const struct cache_entry *const*src,2056struct unpack_trees_options *o)2057{2058const struct cache_entry *current = src[0];2059const struct cache_entry *oldtree = src[1];2060const struct cache_entry *newtree = src[2];20612062if(o->merge_size !=2)2063returnerror("Cannot do a twoway merge of%dtrees",2064 o->merge_size);20652066if(oldtree == o->df_conflict_entry)2067 oldtree = NULL;2068if(newtree == o->df_conflict_entry)2069 newtree = NULL;20702071if(current) {2072if(current->ce_flags & CE_CONFLICTED) {2073if(same(oldtree, newtree) || o->reset) {2074if(!newtree)2075returndeleted_entry(current, current, o);2076else2077returnmerged_entry(newtree, current, o);2078}2079returnreject_merge(current, o);2080}else if((!oldtree && !newtree) ||/* 4 and 5 */2081(!oldtree && newtree &&2082same(current, newtree)) ||/* 6 and 7 */2083(oldtree && newtree &&2084same(oldtree, newtree)) ||/* 14 and 15 */2085(oldtree && newtree &&2086!same(oldtree, newtree) &&/* 18 and 19 */2087same(current, newtree))) {2088returnkeep_entry(current, o);2089}else if(oldtree && !newtree &&same(current, oldtree)) {2090/* 10 or 11 */2091returndeleted_entry(oldtree, current, o);2092}else if(oldtree && newtree &&2093same(current, oldtree) && !same(current, newtree)) {2094/* 20 or 21 */2095returnmerged_entry(newtree, current, o);2096}else2097returnreject_merge(current, o);2098}2099else if(newtree) {2100if(oldtree && !o->initial_checkout) {2101/*2102 * deletion of the path was staged;2103 */2104if(same(oldtree, newtree))2105return1;2106returnreject_merge(oldtree, o);2107}2108returnmerged_entry(newtree, current, o);2109}2110returndeleted_entry(oldtree, current, o);2111}21122113/*2114 * Bind merge.2115 *2116 * Keep the index entries at stage0, collapse stage1 but make sure2117 * stage0 does not have anything there.2118 */2119intbind_merge(const struct cache_entry *const*src,2120struct unpack_trees_options *o)2121{2122const struct cache_entry *old = src[0];2123const struct cache_entry *a = src[1];21242125if(o->merge_size !=1)2126returnerror("Cannot do a bind merge of%dtrees",2127 o->merge_size);2128if(a && old)2129return o->gently ? -1:2130error(ERRORMSG(o, ERROR_BIND_OVERLAP),2131super_prefixed(a->name),2132super_prefixed(old->name));2133if(!a)2134returnkeep_entry(old, o);2135else2136returnmerged_entry(a, NULL, o);2137}21382139/*2140 * One-way merge.2141 *2142 * The rule is:2143 * - take the stat information from stage0, take the data from stage12144 */2145intoneway_merge(const struct cache_entry *const*src,2146struct unpack_trees_options *o)2147{2148const struct cache_entry *old = src[0];2149const struct cache_entry *a = src[1];21502151if(o->merge_size !=1)2152returnerror("Cannot do a oneway merge of%dtrees",2153 o->merge_size);21542155if(!a || a == o->df_conflict_entry)2156returndeleted_entry(old, old, o);21572158if(old &&same(old, a)) {2159int update =0;2160if(o->reset && o->update && !ce_uptodate(old) && !ce_skip_worktree(old)) {2161struct stat st;2162if(lstat(old->name, &st) ||2163ie_match_stat(o->src_index, old, &st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE))2164 update |= CE_UPDATE;2165}2166if(o->update &&S_ISGITLINK(old->ce_mode) &&2167should_update_submodules() && !verify_uptodate(old, o))2168 update |= CE_UPDATE;2169add_entry(o, old, update,0);2170return0;2171}2172returnmerged_entry(a, old, o);2173}