1#define NO_THE_INDEX_COMPATIBILITY_MACROS 2#include"cache.h" 3#include"config.h" 4#include"dir.h" 5#include"tree.h" 6#include"tree-walk.h" 7#include"cache-tree.h" 8#include"unpack-trees.h" 9#include"progress.h" 10#include"refs.h" 11#include"attr.h" 12#include"split-index.h" 13#include"dir.h" 14#include"submodule.h" 15#include"submodule-config.h" 16 17/* 18 * Error messages expected by scripts out of plumbing commands such as 19 * read-tree. Non-scripted Porcelain is not required to use these messages 20 * and in fact are encouraged to reword them to better suit their particular 21 * situation better. See how "git checkout" and "git merge" replaces 22 * them using setup_unpack_trees_porcelain(), for example. 23 */ 24static const char*unpack_plumbing_errors[NB_UNPACK_TREES_ERROR_TYPES] = { 25/* ERROR_WOULD_OVERWRITE */ 26"Entry '%s' would be overwritten by merge. Cannot merge.", 27 28/* ERROR_NOT_UPTODATE_FILE */ 29"Entry '%s' not uptodate. Cannot merge.", 30 31/* ERROR_NOT_UPTODATE_DIR */ 32"Updating '%s' would lose untracked files in it", 33 34/* ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN */ 35"Untracked working tree file '%s' would be overwritten by merge.", 36 37/* ERROR_WOULD_LOSE_UNTRACKED_REMOVED */ 38"Untracked working tree file '%s' would be removed by merge.", 39 40/* ERROR_BIND_OVERLAP */ 41"Entry '%s' overlaps with '%s'. Cannot bind.", 42 43/* ERROR_SPARSE_NOT_UPTODATE_FILE */ 44"Entry '%s' not uptodate. Cannot update sparse checkout.", 45 46/* ERROR_WOULD_LOSE_ORPHANED_OVERWRITTEN */ 47"Working tree file '%s' would be overwritten by sparse checkout update.", 48 49/* ERROR_WOULD_LOSE_ORPHANED_REMOVED */ 50"Working tree file '%s' would be removed by sparse checkout update.", 51 52/* ERROR_WOULD_LOSE_SUBMODULE */ 53"Submodule '%s' cannot checkout new HEAD.", 54}; 55 56#define ERRORMSG(o,type) \ 57 ( ((o) && (o)->msgs[(type)]) \ 58 ? ((o)->msgs[(type)]) \ 59 : (unpack_plumbing_errors[(type)]) ) 60 61static const char*super_prefixed(const char*path) 62{ 63/* 64 * It is necessary and sufficient to have two static buffers 65 * here, as the return value of this function is fed to 66 * error() using the unpack_*_errors[] templates we see above. 67 */ 68static struct strbuf buf[2] = {STRBUF_INIT, STRBUF_INIT}; 69static int super_prefix_len = -1; 70static unsigned idx =ARRAY_SIZE(buf) -1; 71 72if(super_prefix_len <0) { 73const char*super_prefix =get_super_prefix(); 74if(!super_prefix) { 75 super_prefix_len =0; 76}else{ 77int i; 78for(i =0; i <ARRAY_SIZE(buf); i++) 79strbuf_addstr(&buf[i], super_prefix); 80 super_prefix_len = buf[0].len; 81} 82} 83 84if(!super_prefix_len) 85return path; 86 87if(++idx >=ARRAY_SIZE(buf)) 88 idx =0; 89 90strbuf_setlen(&buf[idx], super_prefix_len); 91strbuf_addstr(&buf[idx], path); 92 93return buf[idx].buf; 94} 95 96voidsetup_unpack_trees_porcelain(struct unpack_trees_options *opts, 97const char*cmd) 98{ 99int i; 100const char**msgs = opts->msgs; 101const char*msg; 102 103if(!strcmp(cmd,"checkout")) 104 msg = advice_commit_before_merge 105?_("Your local changes to the following files would be overwritten by checkout:\n%%s" 106"Please commit your changes or stash them before you switch branches.") 107:_("Your local changes to the following files would be overwritten by checkout:\n%%s"); 108else if(!strcmp(cmd,"merge")) 109 msg = advice_commit_before_merge 110?_("Your local changes to the following files would be overwritten by merge:\n%%s" 111"Please commit your changes or stash them before you merge.") 112:_("Your local changes to the following files would be overwritten by merge:\n%%s"); 113else 114 msg = advice_commit_before_merge 115?_("Your local changes to the following files would be overwritten by%s:\n%%s" 116"Please commit your changes or stash them before you%s.") 117:_("Your local changes to the following files would be overwritten by%s:\n%%s"); 118 msgs[ERROR_WOULD_OVERWRITE] = msgs[ERROR_NOT_UPTODATE_FILE] = 119xstrfmt(msg, cmd, cmd); 120 121 msgs[ERROR_NOT_UPTODATE_DIR] = 122_("Updating the following directories would lose untracked files in them:\n%s"); 123 124if(!strcmp(cmd,"checkout")) 125 msg = advice_commit_before_merge 126?_("The following untracked working tree files would be removed by checkout:\n%%s" 127"Please move or remove them before you switch branches.") 128:_("The following untracked working tree files would be removed by checkout:\n%%s"); 129else if(!strcmp(cmd,"merge")) 130 msg = advice_commit_before_merge 131?_("The following untracked working tree files would be removed by merge:\n%%s" 132"Please move or remove them before you merge.") 133:_("The following untracked working tree files would be removed by merge:\n%%s"); 134else 135 msg = advice_commit_before_merge 136?_("The following untracked working tree files would be removed by%s:\n%%s" 137"Please move or remove them before you%s.") 138:_("The following untracked working tree files would be removed by%s:\n%%s"); 139 msgs[ERROR_WOULD_LOSE_UNTRACKED_REMOVED] =xstrfmt(msg, cmd, cmd); 140 141if(!strcmp(cmd,"checkout")) 142 msg = advice_commit_before_merge 143?_("The following untracked working tree files would be overwritten by checkout:\n%%s" 144"Please move or remove them before you switch branches.") 145:_("The following untracked working tree files would be overwritten by checkout:\n%%s"); 146else if(!strcmp(cmd,"merge")) 147 msg = advice_commit_before_merge 148?_("The following untracked working tree files would be overwritten by merge:\n%%s" 149"Please move or remove them before you merge.") 150:_("The following untracked working tree files would be overwritten by merge:\n%%s"); 151else 152 msg = advice_commit_before_merge 153?_("The following untracked working tree files would be overwritten by%s:\n%%s" 154"Please move or remove them before you%s.") 155:_("The following untracked working tree files would be overwritten by%s:\n%%s"); 156 msgs[ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN] =xstrfmt(msg, cmd, cmd); 157 158/* 159 * Special case: ERROR_BIND_OVERLAP refers to a pair of paths, we 160 * cannot easily display it as a list. 161 */ 162 msgs[ERROR_BIND_OVERLAP] =_("Entry '%s' overlaps with '%s'. Cannot bind."); 163 164 msgs[ERROR_SPARSE_NOT_UPTODATE_FILE] = 165_("Cannot update sparse checkout: the following entries are not up-to-date:\n%s"); 166 msgs[ERROR_WOULD_LOSE_ORPHANED_OVERWRITTEN] = 167_("The following working tree files would be overwritten by sparse checkout update:\n%s"); 168 msgs[ERROR_WOULD_LOSE_ORPHANED_REMOVED] = 169_("The following working tree files would be removed by sparse checkout update:\n%s"); 170 msgs[ERROR_WOULD_LOSE_SUBMODULE] = 171_("Cannot update submodule:\n%s"); 172 173 opts->show_all_errors =1; 174/* rejected paths may not have a static buffer */ 175for(i =0; i <ARRAY_SIZE(opts->unpack_rejects); i++) 176 opts->unpack_rejects[i].strdup_strings =1; 177} 178 179static intdo_add_entry(struct unpack_trees_options *o,struct cache_entry *ce, 180unsigned int set,unsigned int clear) 181{ 182 clear |= CE_HASHED; 183 184if(set & CE_REMOVE) 185 set |= CE_WT_REMOVE; 186 187 ce->ce_flags = (ce->ce_flags & ~clear) | set; 188returnadd_index_entry(&o->result, ce, 189 ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE); 190} 191 192static struct cache_entry *dup_entry(const struct cache_entry *ce) 193{ 194unsigned int size =ce_size(ce); 195struct cache_entry *new=xmalloc(size); 196 197memcpy(new, ce, size); 198return new; 199} 200 201static voidadd_entry(struct unpack_trees_options *o, 202const struct cache_entry *ce, 203unsigned int set,unsigned int clear) 204{ 205do_add_entry(o,dup_entry(ce), set, clear); 206} 207 208/* 209 * add error messages on path <path> 210 * corresponding to the type <e> with the message <msg> 211 * indicating if it should be display in porcelain or not 212 */ 213static intadd_rejected_path(struct unpack_trees_options *o, 214enum unpack_trees_error_types e, 215const char*path) 216{ 217if(!o->show_all_errors) 218returnerror(ERRORMSG(o, e),super_prefixed(path)); 219 220/* 221 * Otherwise, insert in a list for future display by 222 * display_error_msgs() 223 */ 224string_list_append(&o->unpack_rejects[e], path); 225return-1; 226} 227 228/* 229 * display all the error messages stored in a nice way 230 */ 231static voiddisplay_error_msgs(struct unpack_trees_options *o) 232{ 233int e, i; 234int something_displayed =0; 235for(e =0; e < NB_UNPACK_TREES_ERROR_TYPES; e++) { 236struct string_list *rejects = &o->unpack_rejects[e]; 237if(rejects->nr >0) { 238struct strbuf path = STRBUF_INIT; 239 something_displayed =1; 240for(i =0; i < rejects->nr; i++) 241strbuf_addf(&path,"\t%s\n", rejects->items[i].string); 242error(ERRORMSG(o, e),super_prefixed(path.buf)); 243strbuf_release(&path); 244} 245string_list_clear(rejects,0); 246} 247if(something_displayed) 248fprintf(stderr,_("Aborting\n")); 249} 250 251static intcheck_submodule_move_head(const struct cache_entry *ce, 252const char*old_id, 253const char*new_id, 254struct unpack_trees_options *o) 255{ 256unsigned flags = SUBMODULE_MOVE_HEAD_DRY_RUN; 257const struct submodule *sub =submodule_from_ce(ce); 258 259if(!sub) 260return0; 261 262if(o->reset) 263 flags |= SUBMODULE_MOVE_HEAD_FORCE; 264 265if(submodule_move_head(ce->name, old_id, new_id, flags)) 266return o->gently ? -1: 267add_rejected_path(o, ERROR_WOULD_LOSE_SUBMODULE, ce->name); 268return0; 269} 270 271static voidreload_gitmodules_file(struct index_state *index, 272struct checkout *state) 273{ 274int i; 275for(i =0; i < index->cache_nr; i++) { 276struct cache_entry *ce = index->cache[i]; 277if(ce->ce_flags & CE_UPDATE) { 278int r =strcmp(ce->name, GITMODULES_FILE); 279if(r <0) 280continue; 281else if(r ==0) { 282submodule_free(); 283checkout_entry(ce, state, NULL); 284gitmodules_config(); 285}else 286break; 287} 288} 289} 290 291/* 292 * Unlink the last component and schedule the leading directories for 293 * removal, such that empty directories get removed. 294 */ 295static voidunlink_entry(const struct cache_entry *ce) 296{ 297const struct submodule *sub =submodule_from_ce(ce); 298if(sub) { 299/* state.force is set at the caller. */ 300submodule_move_head(ce->name,"HEAD", NULL, 301 SUBMODULE_MOVE_HEAD_FORCE); 302} 303if(!check_leading_path(ce->name,ce_namelen(ce))) 304return; 305if(remove_or_warn(ce->ce_mode, ce->name)) 306return; 307schedule_dir_for_removal(ce->name,ce_namelen(ce)); 308} 309 310static struct progress *get_progress(struct unpack_trees_options *o) 311{ 312unsigned cnt =0, total =0; 313struct index_state *index = &o->result; 314 315if(!o->update || !o->verbose_update) 316return NULL; 317 318for(; cnt < index->cache_nr; cnt++) { 319const struct cache_entry *ce = index->cache[cnt]; 320if(ce->ce_flags & (CE_UPDATE | CE_WT_REMOVE)) 321 total++; 322} 323 324returnstart_progress_delay(_("Checking out files"), 325 total,50,1); 326} 327 328static intcheck_updates(struct unpack_trees_options *o) 329{ 330unsigned cnt =0; 331int errs =0; 332struct progress *progress = NULL; 333struct index_state *index = &o->result; 334struct checkout state = CHECKOUT_INIT; 335int i; 336 337 state.force =1; 338 state.quiet =1; 339 state.refresh_cache =1; 340 state.istate = index; 341 342 progress =get_progress(o); 343 344if(o->update) 345git_attr_set_direction(GIT_ATTR_CHECKOUT, index); 346for(i =0; i < index->cache_nr; i++) { 347const struct cache_entry *ce = index->cache[i]; 348 349if(ce->ce_flags & CE_WT_REMOVE) { 350display_progress(progress, ++cnt); 351if(o->update && !o->dry_run) 352unlink_entry(ce); 353} 354} 355remove_marked_cache_entries(index); 356remove_scheduled_dirs(); 357 358if(should_update_submodules() && o->update && !o->dry_run) 359reload_gitmodules_file(index, &state); 360 361for(i =0; i < index->cache_nr; i++) { 362struct cache_entry *ce = index->cache[i]; 363 364if(ce->ce_flags & CE_UPDATE) { 365if(ce->ce_flags & CE_WT_REMOVE) 366die("BUG: both update and delete flags are set on%s", 367 ce->name); 368display_progress(progress, ++cnt); 369 ce->ce_flags &= ~CE_UPDATE; 370if(o->update && !o->dry_run) { 371 errs |=checkout_entry(ce, &state, NULL); 372} 373} 374} 375stop_progress(&progress); 376if(o->update) 377git_attr_set_direction(GIT_ATTR_CHECKIN, NULL); 378return errs !=0; 379} 380 381static intverify_uptodate_sparse(const struct cache_entry *ce, 382struct unpack_trees_options *o); 383static intverify_absent_sparse(const struct cache_entry *ce, 384enum unpack_trees_error_types, 385struct unpack_trees_options *o); 386 387static intapply_sparse_checkout(struct index_state *istate, 388struct cache_entry *ce, 389struct unpack_trees_options *o) 390{ 391int was_skip_worktree =ce_skip_worktree(ce); 392 393if(ce->ce_flags & CE_NEW_SKIP_WORKTREE) 394 ce->ce_flags |= CE_SKIP_WORKTREE; 395else 396 ce->ce_flags &= ~CE_SKIP_WORKTREE; 397if(was_skip_worktree !=ce_skip_worktree(ce)) { 398 ce->ce_flags |= CE_UPDATE_IN_BASE; 399 istate->cache_changed |= CE_ENTRY_CHANGED; 400} 401 402/* 403 * if (!was_skip_worktree && !ce_skip_worktree()) { 404 * This is perfectly normal. Move on; 405 * } 406 */ 407 408/* 409 * Merge strategies may set CE_UPDATE|CE_REMOVE outside checkout 410 * area as a result of ce_skip_worktree() shortcuts in 411 * verify_absent() and verify_uptodate(). 412 * Make sure they don't modify worktree if they are already 413 * outside checkout area 414 */ 415if(was_skip_worktree &&ce_skip_worktree(ce)) { 416 ce->ce_flags &= ~CE_UPDATE; 417 418/* 419 * By default, when CE_REMOVE is on, CE_WT_REMOVE is also 420 * on to get that file removed from both index and worktree. 421 * If that file is already outside worktree area, don't 422 * bother remove it. 423 */ 424if(ce->ce_flags & CE_REMOVE) 425 ce->ce_flags &= ~CE_WT_REMOVE; 426} 427 428if(!was_skip_worktree &&ce_skip_worktree(ce)) { 429/* 430 * If CE_UPDATE is set, verify_uptodate() must be called already 431 * also stat info may have lost after merged_entry() so calling 432 * verify_uptodate() again may fail 433 */ 434if(!(ce->ce_flags & CE_UPDATE) &&verify_uptodate_sparse(ce, o)) 435return-1; 436 ce->ce_flags |= CE_WT_REMOVE; 437 ce->ce_flags &= ~CE_UPDATE; 438} 439if(was_skip_worktree && !ce_skip_worktree(ce)) { 440if(verify_absent_sparse(ce, ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN, o)) 441return-1; 442 ce->ce_flags |= CE_UPDATE; 443} 444return0; 445} 446 447staticinlineintcall_unpack_fn(const struct cache_entry *const*src, 448struct unpack_trees_options *o) 449{ 450int ret = o->fn(src, o); 451if(ret >0) 452 ret =0; 453return ret; 454} 455 456static voidmark_ce_used(struct cache_entry *ce,struct unpack_trees_options *o) 457{ 458 ce->ce_flags |= CE_UNPACKED; 459 460if(o->cache_bottom < o->src_index->cache_nr && 461 o->src_index->cache[o->cache_bottom] == ce) { 462int bottom = o->cache_bottom; 463while(bottom < o->src_index->cache_nr && 464 o->src_index->cache[bottom]->ce_flags & CE_UNPACKED) 465 bottom++; 466 o->cache_bottom = bottom; 467} 468} 469 470static voidmark_all_ce_unused(struct index_state *index) 471{ 472int i; 473for(i =0; i < index->cache_nr; i++) 474 index->cache[i]->ce_flags &= ~(CE_UNPACKED | CE_ADDED | CE_NEW_SKIP_WORKTREE); 475} 476 477static intlocate_in_src_index(const struct cache_entry *ce, 478struct unpack_trees_options *o) 479{ 480struct index_state *index = o->src_index; 481int len =ce_namelen(ce); 482int pos =index_name_pos(index, ce->name, len); 483if(pos <0) 484 pos = -1- pos; 485return pos; 486} 487 488/* 489 * We call unpack_index_entry() with an unmerged cache entry 490 * only in diff-index, and it wants a single callback. Skip 491 * the other unmerged entry with the same name. 492 */ 493static voidmark_ce_used_same_name(struct cache_entry *ce, 494struct unpack_trees_options *o) 495{ 496struct index_state *index = o->src_index; 497int len =ce_namelen(ce); 498int pos; 499 500for(pos =locate_in_src_index(ce, o); pos < index->cache_nr; pos++) { 501struct cache_entry *next = index->cache[pos]; 502if(len !=ce_namelen(next) || 503memcmp(ce->name, next->name, len)) 504break; 505mark_ce_used(next, o); 506} 507} 508 509static struct cache_entry *next_cache_entry(struct unpack_trees_options *o) 510{ 511const struct index_state *index = o->src_index; 512int pos = o->cache_bottom; 513 514while(pos < index->cache_nr) { 515struct cache_entry *ce = index->cache[pos]; 516if(!(ce->ce_flags & CE_UNPACKED)) 517return ce; 518 pos++; 519} 520return NULL; 521} 522 523static voidadd_same_unmerged(const struct cache_entry *ce, 524struct unpack_trees_options *o) 525{ 526struct index_state *index = o->src_index; 527int len =ce_namelen(ce); 528int pos =index_name_pos(index, ce->name, len); 529 530if(0<= pos) 531die("programming error in a caller of mark_ce_used_same_name"); 532for(pos = -pos -1; pos < index->cache_nr; pos++) { 533struct cache_entry *next = index->cache[pos]; 534if(len !=ce_namelen(next) || 535memcmp(ce->name, next->name, len)) 536break; 537add_entry(o, next,0,0); 538mark_ce_used(next, o); 539} 540} 541 542static intunpack_index_entry(struct cache_entry *ce, 543struct unpack_trees_options *o) 544{ 545const struct cache_entry *src[MAX_UNPACK_TREES +1] = { NULL, }; 546int ret; 547 548 src[0] = ce; 549 550mark_ce_used(ce, o); 551if(ce_stage(ce)) { 552if(o->skip_unmerged) { 553add_entry(o, ce,0,0); 554return0; 555} 556} 557 ret =call_unpack_fn(src, o); 558if(ce_stage(ce)) 559mark_ce_used_same_name(ce, o); 560return ret; 561} 562 563static intfind_cache_pos(struct traverse_info *,const struct name_entry *); 564 565static voidrestore_cache_bottom(struct traverse_info *info,int bottom) 566{ 567struct unpack_trees_options *o = info->data; 568 569if(o->diff_index_cached) 570return; 571 o->cache_bottom = bottom; 572} 573 574static intswitch_cache_bottom(struct traverse_info *info) 575{ 576struct unpack_trees_options *o = info->data; 577int ret, pos; 578 579if(o->diff_index_cached) 580return0; 581 ret = o->cache_bottom; 582 pos =find_cache_pos(info->prev, &info->name); 583 584if(pos < -1) 585 o->cache_bottom = -2- pos; 586else if(pos <0) 587 o->cache_bottom = o->src_index->cache_nr; 588return ret; 589} 590 591staticinlineintare_same_oid(struct name_entry *name_j,struct name_entry *name_k) 592{ 593return name_j->oid && name_k->oid && !oidcmp(name_j->oid, name_k->oid); 594} 595 596static inttraverse_trees_recursive(int n,unsigned long dirmask, 597unsigned long df_conflicts, 598struct name_entry *names, 599struct traverse_info *info) 600{ 601int i, ret, bottom; 602int nr_buf =0; 603struct tree_desc t[MAX_UNPACK_TREES]; 604void*buf[MAX_UNPACK_TREES]; 605struct traverse_info newinfo; 606struct name_entry *p; 607 608 p = names; 609while(!p->mode) 610 p++; 611 612 newinfo = *info; 613 newinfo.prev = info; 614 newinfo.pathspec = info->pathspec; 615 newinfo.name = *p; 616 newinfo.pathlen +=tree_entry_len(p) +1; 617 newinfo.df_conflicts |= df_conflicts; 618 619/* 620 * Fetch the tree from the ODB for each peer directory in the 621 * n commits. 622 * 623 * For 2- and 3-way traversals, we try to avoid hitting the 624 * ODB twice for the same OID. This should yield a nice speed 625 * up in checkouts and merges when the commits are similar. 626 * 627 * We don't bother doing the full O(n^2) search for larger n, 628 * because wider traversals don't happen that often and we 629 * avoid the search setup. 630 * 631 * When 2 peer OIDs are the same, we just copy the tree 632 * descriptor data. This implicitly borrows the buffer 633 * data from the earlier cell. 634 */ 635for(i =0; i < n; i++, dirmask >>=1) { 636if(i >0&&are_same_oid(&names[i], &names[i -1])) 637 t[i] = t[i -1]; 638else if(i >1&&are_same_oid(&names[i], &names[i -2])) 639 t[i] = t[i -2]; 640else{ 641const unsigned char*sha1 = NULL; 642if(dirmask &1) 643 sha1 = names[i].oid->hash; 644 buf[nr_buf++] =fill_tree_descriptor(t+i, sha1); 645} 646} 647 648 bottom =switch_cache_bottom(&newinfo); 649 ret =traverse_trees(n, t, &newinfo); 650restore_cache_bottom(&newinfo, bottom); 651 652for(i =0; i < nr_buf; i++) 653free(buf[i]); 654 655return ret; 656} 657 658/* 659 * Compare the traverse-path to the cache entry without actually 660 * having to generate the textual representation of the traverse 661 * path. 662 * 663 * NOTE! This *only* compares up to the size of the traverse path 664 * itself - the caller needs to do the final check for the cache 665 * entry having more data at the end! 666 */ 667static intdo_compare_entry_piecewise(const struct cache_entry *ce,const struct traverse_info *info,const struct name_entry *n) 668{ 669int len, pathlen, ce_len; 670const char*ce_name; 671 672if(info->prev) { 673int cmp =do_compare_entry_piecewise(ce, info->prev, 674&info->name); 675if(cmp) 676return cmp; 677} 678 pathlen = info->pathlen; 679 ce_len =ce_namelen(ce); 680 681/* If ce_len < pathlen then we must have previously hit "name == directory" entry */ 682if(ce_len < pathlen) 683return-1; 684 685 ce_len -= pathlen; 686 ce_name = ce->name + pathlen; 687 688 len =tree_entry_len(n); 689returndf_name_compare(ce_name, ce_len, S_IFREG, n->path, len, n->mode); 690} 691 692static intdo_compare_entry(const struct cache_entry *ce, 693const struct traverse_info *info, 694const struct name_entry *n) 695{ 696int len, pathlen, ce_len; 697const char*ce_name; 698int cmp; 699 700/* 701 * If we have not precomputed the traverse path, it is quicker 702 * to avoid doing so. But if we have precomputed it, 703 * it is quicker to use the precomputed version. 704 */ 705if(!info->traverse_path) 706returndo_compare_entry_piecewise(ce, info, n); 707 708 cmp =strncmp(ce->name, info->traverse_path, info->pathlen); 709if(cmp) 710return cmp; 711 712 pathlen = info->pathlen; 713 ce_len =ce_namelen(ce); 714 715if(ce_len < pathlen) 716return-1; 717 718 ce_len -= pathlen; 719 ce_name = ce->name + pathlen; 720 721 len =tree_entry_len(n); 722returndf_name_compare(ce_name, ce_len, S_IFREG, n->path, len, n->mode); 723} 724 725static intcompare_entry(const struct cache_entry *ce,const struct traverse_info *info,const struct name_entry *n) 726{ 727int cmp =do_compare_entry(ce, info, n); 728if(cmp) 729return cmp; 730 731/* 732 * Even if the beginning compared identically, the ce should 733 * compare as bigger than a directory leading up to it! 734 */ 735returnce_namelen(ce) >traverse_path_len(info, n); 736} 737 738static intce_in_traverse_path(const struct cache_entry *ce, 739const struct traverse_info *info) 740{ 741if(!info->prev) 742return1; 743if(do_compare_entry(ce, info->prev, &info->name)) 744return0; 745/* 746 * If ce (blob) is the same name as the path (which is a tree 747 * we will be descending into), it won't be inside it. 748 */ 749return(info->pathlen <ce_namelen(ce)); 750} 751 752static struct cache_entry *create_ce_entry(const struct traverse_info *info,const struct name_entry *n,int stage) 753{ 754int len =traverse_path_len(info, n); 755struct cache_entry *ce =xcalloc(1,cache_entry_size(len)); 756 757 ce->ce_mode =create_ce_mode(n->mode); 758 ce->ce_flags =create_ce_flags(stage); 759 ce->ce_namelen = len; 760oidcpy(&ce->oid, n->oid); 761make_traverse_path(ce->name, info, n); 762 763return ce; 764} 765 766static intunpack_nondirectories(int n,unsigned long mask, 767unsigned long dirmask, 768struct cache_entry **src, 769const struct name_entry *names, 770const struct traverse_info *info) 771{ 772int i; 773struct unpack_trees_options *o = info->data; 774unsigned long conflicts = info->df_conflicts | dirmask; 775 776/* Do we have *only* directories? Nothing to do */ 777if(mask == dirmask && !src[0]) 778return0; 779 780/* 781 * Ok, we've filled in up to any potential index entry in src[0], 782 * now do the rest. 783 */ 784for(i =0; i < n; i++) { 785int stage; 786unsigned int bit =1ul<< i; 787if(conflicts & bit) { 788 src[i + o->merge] = o->df_conflict_entry; 789continue; 790} 791if(!(mask & bit)) 792continue; 793if(!o->merge) 794 stage =0; 795else if(i +1< o->head_idx) 796 stage =1; 797else if(i +1> o->head_idx) 798 stage =3; 799else 800 stage =2; 801 src[i + o->merge] =create_ce_entry(info, names + i, stage); 802} 803 804if(o->merge) { 805int rc =call_unpack_fn((const struct cache_entry *const*)src, 806 o); 807for(i =0; i < n; i++) { 808struct cache_entry *ce = src[i + o->merge]; 809if(ce != o->df_conflict_entry) 810free(ce); 811} 812return rc; 813} 814 815for(i =0; i < n; i++) 816if(src[i] && src[i] != o->df_conflict_entry) 817if(do_add_entry(o, src[i],0,0)) 818return-1; 819 820return0; 821} 822 823static intunpack_failed(struct unpack_trees_options *o,const char*message) 824{ 825discard_index(&o->result); 826if(!o->gently && !o->exiting_early) { 827if(message) 828returnerror("%s", message); 829return-1; 830} 831return-1; 832} 833 834/* 835 * The tree traversal is looking at name p. If we have a matching entry, 836 * return it. If name p is a directory in the index, do not return 837 * anything, as we will want to match it when the traversal descends into 838 * the directory. 839 */ 840static intfind_cache_pos(struct traverse_info *info, 841const struct name_entry *p) 842{ 843int pos; 844struct unpack_trees_options *o = info->data; 845struct index_state *index = o->src_index; 846int pfxlen = info->pathlen; 847int p_len =tree_entry_len(p); 848 849for(pos = o->cache_bottom; pos < index->cache_nr; pos++) { 850const struct cache_entry *ce = index->cache[pos]; 851const char*ce_name, *ce_slash; 852int cmp, ce_len; 853 854if(ce->ce_flags & CE_UNPACKED) { 855/* 856 * cache_bottom entry is already unpacked, so 857 * we can never match it; don't check it 858 * again. 859 */ 860if(pos == o->cache_bottom) 861++o->cache_bottom; 862continue; 863} 864if(!ce_in_traverse_path(ce, info)) { 865/* 866 * Check if we can skip future cache checks 867 * (because we're already past all possible 868 * entries in the traverse path). 869 */ 870if(info->traverse_path) { 871if(strncmp(ce->name, info->traverse_path, 872 info->pathlen) >0) 873break; 874} 875continue; 876} 877 ce_name = ce->name + pfxlen; 878 ce_slash =strchr(ce_name,'/'); 879if(ce_slash) 880 ce_len = ce_slash - ce_name; 881else 882 ce_len =ce_namelen(ce) - pfxlen; 883 cmp =name_compare(p->path, p_len, ce_name, ce_len); 884/* 885 * Exact match; if we have a directory we need to 886 * delay returning it. 887 */ 888if(!cmp) 889return ce_slash ? -2- pos : pos; 890if(0< cmp) 891continue;/* keep looking */ 892/* 893 * ce_name sorts after p->path; could it be that we 894 * have files under p->path directory in the index? 895 * E.g. ce_name == "t-i", and p->path == "t"; we may 896 * have "t/a" in the index. 897 */ 898if(p_len < ce_len && !memcmp(ce_name, p->path, p_len) && 899 ce_name[p_len] <'/') 900continue;/* keep looking */ 901break; 902} 903return-1; 904} 905 906static struct cache_entry *find_cache_entry(struct traverse_info *info, 907const struct name_entry *p) 908{ 909int pos =find_cache_pos(info, p); 910struct unpack_trees_options *o = info->data; 911 912if(0<= pos) 913return o->src_index->cache[pos]; 914else 915return NULL; 916} 917 918static voiddebug_path(struct traverse_info *info) 919{ 920if(info->prev) { 921debug_path(info->prev); 922if(*info->prev->name.path) 923putchar('/'); 924} 925printf("%s", info->name.path); 926} 927 928static voiddebug_name_entry(int i,struct name_entry *n) 929{ 930printf("ent#%d %06o%s\n", i, 931 n->path ? n->mode :0, 932 n->path ? n->path :"(missing)"); 933} 934 935static voiddebug_unpack_callback(int n, 936unsigned long mask, 937unsigned long dirmask, 938struct name_entry *names, 939struct traverse_info *info) 940{ 941int i; 942printf("* unpack mask%lu, dirmask%lu, cnt%d", 943 mask, dirmask, n); 944debug_path(info); 945putchar('\n'); 946for(i =0; i < n; i++) 947debug_name_entry(i, names + i); 948} 949 950static intunpack_callback(int n,unsigned long mask,unsigned long dirmask,struct name_entry *names,struct traverse_info *info) 951{ 952struct cache_entry *src[MAX_UNPACK_TREES +1] = { NULL, }; 953struct unpack_trees_options *o = info->data; 954const struct name_entry *p = names; 955 956/* Find first entry with a real name (we could use "mask" too) */ 957while(!p->mode) 958 p++; 959 960if(o->debug_unpack) 961debug_unpack_callback(n, mask, dirmask, names, info); 962 963/* Are we supposed to look at the index too? */ 964if(o->merge) { 965while(1) { 966int cmp; 967struct cache_entry *ce; 968 969if(o->diff_index_cached) 970 ce =next_cache_entry(o); 971else 972 ce =find_cache_entry(info, p); 973 974if(!ce) 975break; 976 cmp =compare_entry(ce, info, p); 977if(cmp <0) { 978if(unpack_index_entry(ce, o) <0) 979returnunpack_failed(o, NULL); 980continue; 981} 982if(!cmp) { 983if(ce_stage(ce)) { 984/* 985 * If we skip unmerged index 986 * entries, we'll skip this 987 * entry *and* the tree 988 * entries associated with it! 989 */ 990if(o->skip_unmerged) { 991add_same_unmerged(ce, o); 992return mask; 993} 994} 995 src[0] = ce; 996} 997break; 998} 999}10001001if(unpack_nondirectories(n, mask, dirmask, src, names, info) <0)1002return-1;10031004if(o->merge && src[0]) {1005if(ce_stage(src[0]))1006mark_ce_used_same_name(src[0], o);1007else1008mark_ce_used(src[0], o);1009}10101011/* Now handle any directories.. */1012if(dirmask) {1013/* special case: "diff-index --cached" looking at a tree */1014if(o->diff_index_cached &&1015 n ==1&& dirmask ==1&&S_ISDIR(names->mode)) {1016int matches;1017 matches =cache_tree_matches_traversal(o->src_index->cache_tree,1018 names, info);1019/*1020 * Everything under the name matches; skip the1021 * entire hierarchy. diff_index_cached codepath1022 * special cases D/F conflicts in such a way that1023 * it does not do any look-ahead, so this is safe.1024 */1025if(matches) {1026 o->cache_bottom += matches;1027return mask;1028}1029}10301031if(traverse_trees_recursive(n, dirmask, mask & ~dirmask,1032 names, info) <0)1033return-1;1034return mask;1035}10361037return mask;1038}10391040static intclear_ce_flags_1(struct cache_entry **cache,int nr,1041struct strbuf *prefix,1042int select_mask,int clear_mask,1043struct exclude_list *el,int defval);10441045/* Whole directory matching */1046static intclear_ce_flags_dir(struct cache_entry **cache,int nr,1047struct strbuf *prefix,1048char*basename,1049int select_mask,int clear_mask,1050struct exclude_list *el,int defval)1051{1052struct cache_entry **cache_end;1053int dtype = DT_DIR;1054int ret =is_excluded_from_list(prefix->buf, prefix->len,1055 basename, &dtype, el, &the_index);1056int rc;10571058strbuf_addch(prefix,'/');10591060/* If undecided, use matching result of parent dir in defval */1061if(ret <0)1062 ret = defval;10631064for(cache_end = cache; cache_end != cache + nr; cache_end++) {1065struct cache_entry *ce = *cache_end;1066if(strncmp(ce->name, prefix->buf, prefix->len))1067break;1068}10691070/*1071 * TODO: check el, if there are no patterns that may conflict1072 * with ret (iow, we know in advance the incl/excl1073 * decision for the entire directory), clear flag here without1074 * calling clear_ce_flags_1(). That function will call1075 * the expensive is_excluded_from_list() on every entry.1076 */1077 rc =clear_ce_flags_1(cache, cache_end - cache,1078 prefix,1079 select_mask, clear_mask,1080 el, ret);1081strbuf_setlen(prefix, prefix->len -1);1082return rc;1083}10841085/*1086 * Traverse the index, find every entry that matches according to1087 * o->el. Do "ce_flags &= ~clear_mask" on those entries. Return the1088 * number of traversed entries.1089 *1090 * If select_mask is non-zero, only entries whose ce_flags has on of1091 * those bits enabled are traversed.1092 *1093 * cache : pointer to an index entry1094 * prefix_len : an offset to its path1095 *1096 * The current path ("prefix") including the trailing '/' is1097 * cache[0]->name[0..(prefix_len-1)]1098 * Top level path has prefix_len zero.1099 */1100static intclear_ce_flags_1(struct cache_entry **cache,int nr,1101struct strbuf *prefix,1102int select_mask,int clear_mask,1103struct exclude_list *el,int defval)1104{1105struct cache_entry **cache_end = cache + nr;11061107/*1108 * Process all entries that have the given prefix and meet1109 * select_mask condition1110 */1111while(cache != cache_end) {1112struct cache_entry *ce = *cache;1113const char*name, *slash;1114int len, dtype, ret;11151116if(select_mask && !(ce->ce_flags & select_mask)) {1117 cache++;1118continue;1119}11201121if(prefix->len &&strncmp(ce->name, prefix->buf, prefix->len))1122break;11231124 name = ce->name + prefix->len;1125 slash =strchr(name,'/');11261127/* If it's a directory, try whole directory match first */1128if(slash) {1129int processed;11301131 len = slash - name;1132strbuf_add(prefix, name, len);11331134 processed =clear_ce_flags_dir(cache, cache_end - cache,1135 prefix,1136 prefix->buf + prefix->len - len,1137 select_mask, clear_mask,1138 el, defval);11391140/* clear_c_f_dir eats a whole dir already? */1141if(processed) {1142 cache += processed;1143strbuf_setlen(prefix, prefix->len - len);1144continue;1145}11461147strbuf_addch(prefix,'/');1148 cache +=clear_ce_flags_1(cache, cache_end - cache,1149 prefix,1150 select_mask, clear_mask, el, defval);1151strbuf_setlen(prefix, prefix->len - len -1);1152continue;1153}11541155/* Non-directory */1156 dtype =ce_to_dtype(ce);1157 ret =is_excluded_from_list(ce->name,ce_namelen(ce),1158 name, &dtype, el, &the_index);1159if(ret <0)1160 ret = defval;1161if(ret >0)1162 ce->ce_flags &= ~clear_mask;1163 cache++;1164}1165return nr - (cache_end - cache);1166}11671168static intclear_ce_flags(struct cache_entry **cache,int nr,1169int select_mask,int clear_mask,1170struct exclude_list *el)1171{1172static struct strbuf prefix = STRBUF_INIT;11731174strbuf_reset(&prefix);11751176returnclear_ce_flags_1(cache, nr,1177&prefix,1178 select_mask, clear_mask,1179 el,0);1180}11811182/*1183 * Set/Clear CE_NEW_SKIP_WORKTREE according to $GIT_DIR/info/sparse-checkout1184 */1185static voidmark_new_skip_worktree(struct exclude_list *el,1186struct index_state *the_index,1187int select_flag,int skip_wt_flag)1188{1189int i;11901191/*1192 * 1. Pretend the narrowest worktree: only unmerged entries1193 * are checked out1194 */1195for(i =0; i < the_index->cache_nr; i++) {1196struct cache_entry *ce = the_index->cache[i];11971198if(select_flag && !(ce->ce_flags & select_flag))1199continue;12001201if(!ce_stage(ce))1202 ce->ce_flags |= skip_wt_flag;1203else1204 ce->ce_flags &= ~skip_wt_flag;1205}12061207/*1208 * 2. Widen worktree according to sparse-checkout file.1209 * Matched entries will have skip_wt_flag cleared (i.e. "in")1210 */1211clear_ce_flags(the_index->cache, the_index->cache_nr,1212 select_flag, skip_wt_flag, el);1213}12141215static intverify_absent(const struct cache_entry *,1216enum unpack_trees_error_types,1217struct unpack_trees_options *);1218/*1219 * N-way merge "len" trees. Returns 0 on success, -1 on failure to manipulate the1220 * resulting index, -2 on failure to reflect the changes to the work tree.1221 *1222 * CE_ADDED, CE_UNPACKED and CE_NEW_SKIP_WORKTREE are used internally1223 */1224intunpack_trees(unsigned len,struct tree_desc *t,struct unpack_trees_options *o)1225{1226int i, ret;1227static struct cache_entry *dfc;1228struct exclude_list el;12291230if(len > MAX_UNPACK_TREES)1231die("unpack_trees takes at most%dtrees", MAX_UNPACK_TREES);12321233memset(&el,0,sizeof(el));1234if(!core_apply_sparse_checkout || !o->update)1235 o->skip_sparse_checkout =1;1236if(!o->skip_sparse_checkout) {1237char*sparse =git_pathdup("info/sparse-checkout");1238if(add_excludes_from_file_to_list(sparse,"",0, &el, NULL) <0)1239 o->skip_sparse_checkout =1;1240else1241 o->el = ⪙1242free(sparse);1243}12441245memset(&o->result,0,sizeof(o->result));1246 o->result.initialized =1;1247 o->result.timestamp.sec = o->src_index->timestamp.sec;1248 o->result.timestamp.nsec = o->src_index->timestamp.nsec;1249 o->result.version = o->src_index->version;1250 o->result.split_index = o->src_index->split_index;1251if(o->result.split_index)1252 o->result.split_index->refcount++;1253hashcpy(o->result.sha1, o->src_index->sha1);1254 o->merge_size = len;1255mark_all_ce_unused(o->src_index);12561257/*1258 * Sparse checkout loop #1: set NEW_SKIP_WORKTREE on existing entries1259 */1260if(!o->skip_sparse_checkout)1261mark_new_skip_worktree(o->el, o->src_index,0, CE_NEW_SKIP_WORKTREE);12621263if(!dfc)1264 dfc =xcalloc(1,cache_entry_size(0));1265 o->df_conflict_entry = dfc;12661267if(len) {1268const char*prefix = o->prefix ? o->prefix :"";1269struct traverse_info info;12701271setup_traverse_info(&info, prefix);1272 info.fn = unpack_callback;1273 info.data = o;1274 info.show_all_errors = o->show_all_errors;1275 info.pathspec = o->pathspec;12761277if(o->prefix) {1278/*1279 * Unpack existing index entries that sort before the1280 * prefix the tree is spliced into. Note that o->merge1281 * is always true in this case.1282 */1283while(1) {1284struct cache_entry *ce =next_cache_entry(o);1285if(!ce)1286break;1287if(ce_in_traverse_path(ce, &info))1288break;1289if(unpack_index_entry(ce, o) <0)1290goto return_failed;1291}1292}12931294if(traverse_trees(len, t, &info) <0)1295goto return_failed;1296}12971298/* Any left-over entries in the index? */1299if(o->merge) {1300while(1) {1301struct cache_entry *ce =next_cache_entry(o);1302if(!ce)1303break;1304if(unpack_index_entry(ce, o) <0)1305goto return_failed;1306}1307}1308mark_all_ce_unused(o->src_index);13091310if(o->trivial_merges_only && o->nontrivial_merge) {1311 ret =unpack_failed(o,"Merge requires file-level merging");1312goto done;1313}13141315if(!o->skip_sparse_checkout) {1316int empty_worktree =1;13171318/*1319 * Sparse checkout loop #2: set NEW_SKIP_WORKTREE on entries not in loop #11320 * If the will have NEW_SKIP_WORKTREE, also set CE_SKIP_WORKTREE1321 * so apply_sparse_checkout() won't attempt to remove it from worktree1322 */1323mark_new_skip_worktree(o->el, &o->result, CE_ADDED, CE_SKIP_WORKTREE | CE_NEW_SKIP_WORKTREE);13241325 ret =0;1326for(i =0; i < o->result.cache_nr; i++) {1327struct cache_entry *ce = o->result.cache[i];13281329/*1330 * Entries marked with CE_ADDED in merged_entry() do not have1331 * verify_absent() check (the check is effectively disabled1332 * because CE_NEW_SKIP_WORKTREE is set unconditionally).1333 *1334 * Do the real check now because we have had1335 * correct CE_NEW_SKIP_WORKTREE1336 */1337if(ce->ce_flags & CE_ADDED &&1338verify_absent(ce, ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN, o)) {1339if(!o->show_all_errors)1340goto return_failed;1341 ret = -1;1342}13431344if(apply_sparse_checkout(&o->result, ce, o)) {1345if(!o->show_all_errors)1346goto return_failed;1347 ret = -1;1348}1349if(!ce_skip_worktree(ce))1350 empty_worktree =0;13511352}1353if(ret <0)1354goto return_failed;1355/*1356 * Sparse checkout is meant to narrow down checkout area1357 * but it does not make sense to narrow down to empty working1358 * tree. This is usually a mistake in sparse checkout rules.1359 * Do not allow users to do that.1360 */1361if(o->result.cache_nr && empty_worktree) {1362 ret =unpack_failed(o,"Sparse checkout leaves no entry on working directory");1363goto done;1364}1365}13661367 o->src_index = NULL;1368 ret =check_updates(o) ? (-2) :0;1369if(o->dst_index) {1370if(!ret) {1371if(!o->result.cache_tree)1372 o->result.cache_tree =cache_tree();1373if(!cache_tree_fully_valid(o->result.cache_tree))1374cache_tree_update(&o->result,1375 WRITE_TREE_SILENT |1376 WRITE_TREE_REPAIR);1377}1378move_index_extensions(&o->result, o->dst_index);1379discard_index(o->dst_index);1380*o->dst_index = o->result;1381}else{1382discard_index(&o->result);1383}13841385done:1386clear_exclude_list(&el);1387return ret;13881389return_failed:1390if(o->show_all_errors)1391display_error_msgs(o);1392mark_all_ce_unused(o->src_index);1393 ret =unpack_failed(o, NULL);1394if(o->exiting_early)1395 ret =0;1396goto done;1397}13981399/* Here come the merge functions */14001401static intreject_merge(const struct cache_entry *ce,1402struct unpack_trees_options *o)1403{1404return o->gently ? -1:1405add_rejected_path(o, ERROR_WOULD_OVERWRITE, ce->name);1406}14071408static intsame(const struct cache_entry *a,const struct cache_entry *b)1409{1410if(!!a != !!b)1411return0;1412if(!a && !b)1413return1;1414if((a->ce_flags | b->ce_flags) & CE_CONFLICTED)1415return0;1416return a->ce_mode == b->ce_mode &&1417!oidcmp(&a->oid, &b->oid);1418}141914201421/*1422 * When a CE gets turned into an unmerged entry, we1423 * want it to be up-to-date1424 */1425static intverify_uptodate_1(const struct cache_entry *ce,1426struct unpack_trees_options *o,1427enum unpack_trees_error_types error_type)1428{1429struct stat st;14301431if(o->index_only)1432return0;14331434/*1435 * CE_VALID and CE_SKIP_WORKTREE cheat, we better check again1436 * if this entry is truly up-to-date because this file may be1437 * overwritten.1438 */1439if((ce->ce_flags & CE_VALID) ||ce_skip_worktree(ce))1440;/* keep checking */1441else if(o->reset ||ce_uptodate(ce))1442return0;14431444if(!lstat(ce->name, &st)) {1445int flags = CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE;1446unsigned changed =ie_match_stat(o->src_index, ce, &st, flags);14471448if(submodule_from_ce(ce)) {1449int r =check_submodule_move_head(ce,1450"HEAD",oid_to_hex(&ce->oid), o);1451if(r)1452return o->gently ? -1:1453add_rejected_path(o, error_type, ce->name);1454return0;1455}14561457if(!changed)1458return0;1459/*1460 * Historic default policy was to allow submodule to be out1461 * of sync wrt the superproject index. If the submodule was1462 * not considered interesting above, we don't care here.1463 */1464if(S_ISGITLINK(ce->ce_mode))1465return0;14661467 errno =0;1468}1469if(errno == ENOENT)1470return0;1471return o->gently ? -1:1472add_rejected_path(o, error_type, ce->name);1473}14741475static intverify_uptodate(const struct cache_entry *ce,1476struct unpack_trees_options *o)1477{1478if(!o->skip_sparse_checkout && (ce->ce_flags & CE_NEW_SKIP_WORKTREE))1479return0;1480returnverify_uptodate_1(ce, o, ERROR_NOT_UPTODATE_FILE);1481}14821483static intverify_uptodate_sparse(const struct cache_entry *ce,1484struct unpack_trees_options *o)1485{1486returnverify_uptodate_1(ce, o, ERROR_SPARSE_NOT_UPTODATE_FILE);1487}14881489static voidinvalidate_ce_path(const struct cache_entry *ce,1490struct unpack_trees_options *o)1491{1492if(!ce)1493return;1494cache_tree_invalidate_path(o->src_index, ce->name);1495untracked_cache_invalidate_path(o->src_index, ce->name);1496}14971498/*1499 * Check that checking out ce->sha1 in subdir ce->name is not1500 * going to overwrite any working files.1501 *1502 * Currently, git does not checkout subprojects during a superproject1503 * checkout, so it is not going to overwrite anything.1504 */1505static intverify_clean_submodule(const char*old_sha1,1506const struct cache_entry *ce,1507enum unpack_trees_error_types error_type,1508struct unpack_trees_options *o)1509{1510if(!submodule_from_ce(ce))1511return0;15121513returncheck_submodule_move_head(ce, old_sha1,1514oid_to_hex(&ce->oid), o);1515}15161517static intverify_clean_subdirectory(const struct cache_entry *ce,1518enum unpack_trees_error_types error_type,1519struct unpack_trees_options *o)1520{1521/*1522 * we are about to extract "ce->name"; we would not want to lose1523 * anything in the existing directory there.1524 */1525int namelen;1526int i;1527struct dir_struct d;1528char*pathbuf;1529int cnt =0;15301531if(S_ISGITLINK(ce->ce_mode)) {1532unsigned char sha1[20];1533int sub_head =resolve_gitlink_ref(ce->name,"HEAD", sha1);1534/*1535 * If we are not going to update the submodule, then1536 * we don't care.1537 */1538if(!sub_head && !hashcmp(sha1, ce->oid.hash))1539return0;1540returnverify_clean_submodule(sub_head ? NULL :sha1_to_hex(sha1),1541 ce, error_type, o);1542}15431544/*1545 * First let's make sure we do not have a local modification1546 * in that directory.1547 */1548 namelen =ce_namelen(ce);1549for(i =locate_in_src_index(ce, o);1550 i < o->src_index->cache_nr;1551 i++) {1552struct cache_entry *ce2 = o->src_index->cache[i];1553int len =ce_namelen(ce2);1554if(len < namelen ||1555strncmp(ce->name, ce2->name, namelen) ||1556 ce2->name[namelen] !='/')1557break;1558/*1559 * ce2->name is an entry in the subdirectory to be1560 * removed.1561 */1562if(!ce_stage(ce2)) {1563if(verify_uptodate(ce2, o))1564return-1;1565add_entry(o, ce2, CE_REMOVE,0);1566mark_ce_used(ce2, o);1567}1568 cnt++;1569}15701571/*1572 * Then we need to make sure that we do not lose a locally1573 * present file that is not ignored.1574 */1575 pathbuf =xstrfmt("%.*s/", namelen, ce->name);15761577memset(&d,0,sizeof(d));1578if(o->dir)1579 d.exclude_per_dir = o->dir->exclude_per_dir;1580 i =read_directory(&d, &the_index, pathbuf, namelen+1, NULL);1581if(i)1582return o->gently ? -1:1583add_rejected_path(o, ERROR_NOT_UPTODATE_DIR, ce->name);1584free(pathbuf);1585return cnt;1586}15871588/*1589 * This gets called when there was no index entry for the tree entry 'dst',1590 * but we found a file in the working tree that 'lstat()' said was fine,1591 * and we're on a case-insensitive filesystem.1592 *1593 * See if we can find a case-insensitive match in the index that also1594 * matches the stat information, and assume it's that other file!1595 */1596static inticase_exists(struct unpack_trees_options *o,const char*name,int len,struct stat *st)1597{1598const struct cache_entry *src;15991600 src =index_file_exists(o->src_index, name, len,1);1601return src && !ie_match_stat(o->src_index, src, st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);1602}16031604static intcheck_ok_to_remove(const char*name,int len,int dtype,1605const struct cache_entry *ce,struct stat *st,1606enum unpack_trees_error_types error_type,1607struct unpack_trees_options *o)1608{1609const struct cache_entry *result;16101611/*1612 * It may be that the 'lstat()' succeeded even though1613 * target 'ce' was absent, because there is an old1614 * entry that is different only in case..1615 *1616 * Ignore that lstat() if it matches.1617 */1618if(ignore_case &&icase_exists(o, name, len, st))1619return0;16201621if(o->dir &&1622is_excluded(o->dir, &the_index, name, &dtype))1623/*1624 * ce->name is explicitly excluded, so it is Ok to1625 * overwrite it.1626 */1627return0;1628if(S_ISDIR(st->st_mode)) {1629/*1630 * We are checking out path "foo" and1631 * found "foo/." in the working tree.1632 * This is tricky -- if we have modified1633 * files that are in "foo/" we would lose1634 * them.1635 */1636if(verify_clean_subdirectory(ce, error_type, o) <0)1637return-1;1638return0;1639}16401641/*1642 * The previous round may already have decided to1643 * delete this path, which is in a subdirectory that1644 * is being replaced with a blob.1645 */1646 result =index_file_exists(&o->result, name, len,0);1647if(result) {1648if(result->ce_flags & CE_REMOVE)1649return0;1650}16511652return o->gently ? -1:1653add_rejected_path(o, error_type, name);1654}16551656/*1657 * We do not want to remove or overwrite a working tree file that1658 * is not tracked, unless it is ignored.1659 */1660static intverify_absent_1(const struct cache_entry *ce,1661enum unpack_trees_error_types error_type,1662struct unpack_trees_options *o)1663{1664int len;1665struct stat st;16661667if(o->index_only || o->reset || !o->update)1668return0;16691670 len =check_leading_path(ce->name,ce_namelen(ce));1671if(!len)1672return0;1673else if(len >0) {1674char*path;1675int ret;16761677 path =xmemdupz(ce->name, len);1678if(lstat(path, &st))1679 ret =error_errno("cannot stat '%s'", path);1680else{1681if(submodule_from_ce(ce))1682 ret =check_submodule_move_head(ce,1683oid_to_hex(&ce->oid),1684 NULL, o);1685else1686 ret =check_ok_to_remove(path, len, DT_UNKNOWN, NULL,1687&st, error_type, o);1688}1689free(path);1690return ret;1691}else if(lstat(ce->name, &st)) {1692if(errno != ENOENT)1693returnerror_errno("cannot stat '%s'", ce->name);1694return0;1695}else{1696if(submodule_from_ce(ce))1697returncheck_submodule_move_head(ce,oid_to_hex(&ce->oid),1698 NULL, o);16991700returncheck_ok_to_remove(ce->name,ce_namelen(ce),1701ce_to_dtype(ce), ce, &st,1702 error_type, o);1703}1704}17051706static intverify_absent(const struct cache_entry *ce,1707enum unpack_trees_error_types error_type,1708struct unpack_trees_options *o)1709{1710if(!o->skip_sparse_checkout && (ce->ce_flags & CE_NEW_SKIP_WORKTREE))1711return0;1712returnverify_absent_1(ce, error_type, o);1713}17141715static intverify_absent_sparse(const struct cache_entry *ce,1716enum unpack_trees_error_types error_type,1717struct unpack_trees_options *o)1718{1719enum unpack_trees_error_types orphaned_error = error_type;1720if(orphaned_error == ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN)1721 orphaned_error = ERROR_WOULD_LOSE_ORPHANED_OVERWRITTEN;17221723returnverify_absent_1(ce, orphaned_error, o);1724}17251726static intmerged_entry(const struct cache_entry *ce,1727const struct cache_entry *old,1728struct unpack_trees_options *o)1729{1730int update = CE_UPDATE;1731struct cache_entry *merge =dup_entry(ce);17321733if(!old) {1734/*1735 * New index entries. In sparse checkout, the following1736 * verify_absent() will be delayed until after1737 * traverse_trees() finishes in unpack_trees(), then:1738 *1739 * - CE_NEW_SKIP_WORKTREE will be computed correctly1740 * - verify_absent() be called again, this time with1741 * correct CE_NEW_SKIP_WORKTREE1742 *1743 * verify_absent() call here does nothing in sparse1744 * checkout (i.e. o->skip_sparse_checkout == 0)1745 */1746 update |= CE_ADDED;1747 merge->ce_flags |= CE_NEW_SKIP_WORKTREE;17481749if(verify_absent(merge,1750 ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN, o)) {1751free(merge);1752return-1;1753}1754invalidate_ce_path(merge, o);17551756if(submodule_from_ce(ce)) {1757int ret =check_submodule_move_head(ce, NULL,1758oid_to_hex(&ce->oid),1759 o);1760if(ret)1761return ret;1762}17631764}else if(!(old->ce_flags & CE_CONFLICTED)) {1765/*1766 * See if we can re-use the old CE directly?1767 * That way we get the uptodate stat info.1768 *1769 * This also removes the UPDATE flag on a match; otherwise1770 * we will end up overwriting local changes in the work tree.1771 */1772if(same(old, merge)) {1773copy_cache_entry(merge, old);1774 update =0;1775}else{1776if(verify_uptodate(old, o)) {1777free(merge);1778return-1;1779}1780/* Migrate old flags over */1781 update |= old->ce_flags & (CE_SKIP_WORKTREE | CE_NEW_SKIP_WORKTREE);1782invalidate_ce_path(old, o);1783}17841785if(submodule_from_ce(ce)) {1786int ret =check_submodule_move_head(ce,oid_to_hex(&old->oid),1787oid_to_hex(&ce->oid),1788 o);1789if(ret)1790return ret;1791}1792}else{1793/*1794 * Previously unmerged entry left as an existence1795 * marker by read_index_unmerged();1796 */1797invalidate_ce_path(old, o);1798}17991800do_add_entry(o, merge, update, CE_STAGEMASK);1801return1;1802}18031804static intdeleted_entry(const struct cache_entry *ce,1805const struct cache_entry *old,1806struct unpack_trees_options *o)1807{1808/* Did it exist in the index? */1809if(!old) {1810if(verify_absent(ce, ERROR_WOULD_LOSE_UNTRACKED_REMOVED, o))1811return-1;1812return0;1813}1814if(!(old->ce_flags & CE_CONFLICTED) &&verify_uptodate(old, o))1815return-1;1816add_entry(o, ce, CE_REMOVE,0);1817invalidate_ce_path(ce, o);1818return1;1819}18201821static intkeep_entry(const struct cache_entry *ce,1822struct unpack_trees_options *o)1823{1824add_entry(o, ce,0,0);1825return1;1826}18271828#if DBRT_DEBUG1829static voidshow_stage_entry(FILE*o,1830const char*label,const struct cache_entry *ce)1831{1832if(!ce)1833fprintf(o,"%s(missing)\n", label);1834else1835fprintf(o,"%s%06o%s %d\t%s\n",1836 label,1837 ce->ce_mode,1838oid_to_hex(&ce->oid),1839ce_stage(ce),1840 ce->name);1841}1842#endif18431844intthreeway_merge(const struct cache_entry *const*stages,1845struct unpack_trees_options *o)1846{1847const struct cache_entry *index;1848const struct cache_entry *head;1849const struct cache_entry *remote = stages[o->head_idx +1];1850int count;1851int head_match =0;1852int remote_match =0;18531854int df_conflict_head =0;1855int df_conflict_remote =0;18561857int any_anc_missing =0;1858int no_anc_exists =1;1859int i;18601861for(i =1; i < o->head_idx; i++) {1862if(!stages[i] || stages[i] == o->df_conflict_entry)1863 any_anc_missing =1;1864else1865 no_anc_exists =0;1866}18671868 index = stages[0];1869 head = stages[o->head_idx];18701871if(head == o->df_conflict_entry) {1872 df_conflict_head =1;1873 head = NULL;1874}18751876if(remote == o->df_conflict_entry) {1877 df_conflict_remote =1;1878 remote = NULL;1879}18801881/*1882 * First, if there's a #16 situation, note that to prevent #131883 * and #14.1884 */1885if(!same(remote, head)) {1886for(i =1; i < o->head_idx; i++) {1887if(same(stages[i], head)) {1888 head_match = i;1889}1890if(same(stages[i], remote)) {1891 remote_match = i;1892}1893}1894}18951896/*1897 * We start with cases where the index is allowed to match1898 * something other than the head: #14(ALT) and #2ALT, where it1899 * is permitted to match the result instead.1900 */1901/* #14, #14ALT, #2ALT */1902if(remote && !df_conflict_head && head_match && !remote_match) {1903if(index && !same(index, remote) && !same(index, head))1904returnreject_merge(index, o);1905returnmerged_entry(remote, index, o);1906}1907/*1908 * If we have an entry in the index cache, then we want to1909 * make sure that it matches head.1910 */1911if(index && !same(index, head))1912returnreject_merge(index, o);19131914if(head) {1915/* #5ALT, #15 */1916if(same(head, remote))1917returnmerged_entry(head, index, o);1918/* #13, #3ALT */1919if(!df_conflict_remote && remote_match && !head_match)1920returnmerged_entry(head, index, o);1921}19221923/* #1 */1924if(!head && !remote && any_anc_missing)1925return0;19261927/*1928 * Under the "aggressive" rule, we resolve mostly trivial1929 * cases that we historically had git-merge-one-file resolve.1930 */1931if(o->aggressive) {1932int head_deleted = !head;1933int remote_deleted = !remote;1934const struct cache_entry *ce = NULL;19351936if(index)1937 ce = index;1938else if(head)1939 ce = head;1940else if(remote)1941 ce = remote;1942else{1943for(i =1; i < o->head_idx; i++) {1944if(stages[i] && stages[i] != o->df_conflict_entry) {1945 ce = stages[i];1946break;1947}1948}1949}19501951/*1952 * Deleted in both.1953 * Deleted in one and unchanged in the other.1954 */1955if((head_deleted && remote_deleted) ||1956(head_deleted && remote && remote_match) ||1957(remote_deleted && head && head_match)) {1958if(index)1959returndeleted_entry(index, index, o);1960if(ce && !head_deleted) {1961if(verify_absent(ce, ERROR_WOULD_LOSE_UNTRACKED_REMOVED, o))1962return-1;1963}1964return0;1965}1966/*1967 * Added in both, identically.1968 */1969if(no_anc_exists && head && remote &&same(head, remote))1970returnmerged_entry(head, index, o);19711972}19731974/* Below are "no merge" cases, which require that the index be1975 * up-to-date to avoid the files getting overwritten with1976 * conflict resolution files.1977 */1978if(index) {1979if(verify_uptodate(index, o))1980return-1;1981}19821983 o->nontrivial_merge =1;19841985/* #2, #3, #4, #6, #7, #9, #10, #11. */1986 count =0;1987if(!head_match || !remote_match) {1988for(i =1; i < o->head_idx; i++) {1989if(stages[i] && stages[i] != o->df_conflict_entry) {1990keep_entry(stages[i], o);1991 count++;1992break;1993}1994}1995}1996#if DBRT_DEBUG1997else{1998fprintf(stderr,"read-tree: warning #16 detected\n");1999show_stage_entry(stderr,"head ", stages[head_match]);2000show_stage_entry(stderr,"remote ", stages[remote_match]);2001}2002#endif2003if(head) { count +=keep_entry(head, o); }2004if(remote) { count +=keep_entry(remote, o); }2005return count;2006}20072008/*2009 * Two-way merge.2010 *2011 * The rule is to "carry forward" what is in the index without losing2012 * information across a "fast-forward", favoring a successful merge2013 * over a merge failure when it makes sense. For details of the2014 * "carry forward" rule, please see <Documentation/git-read-tree.txt>.2015 *2016 */2017inttwoway_merge(const struct cache_entry *const*src,2018struct unpack_trees_options *o)2019{2020const struct cache_entry *current = src[0];2021const struct cache_entry *oldtree = src[1];2022const struct cache_entry *newtree = src[2];20232024if(o->merge_size !=2)2025returnerror("Cannot do a twoway merge of%dtrees",2026 o->merge_size);20272028if(oldtree == o->df_conflict_entry)2029 oldtree = NULL;2030if(newtree == o->df_conflict_entry)2031 newtree = NULL;20322033if(current) {2034if(current->ce_flags & CE_CONFLICTED) {2035if(same(oldtree, newtree) || o->reset) {2036if(!newtree)2037returndeleted_entry(current, current, o);2038else2039returnmerged_entry(newtree, current, o);2040}2041returnreject_merge(current, o);2042}else if((!oldtree && !newtree) ||/* 4 and 5 */2043(!oldtree && newtree &&2044same(current, newtree)) ||/* 6 and 7 */2045(oldtree && newtree &&2046same(oldtree, newtree)) ||/* 14 and 15 */2047(oldtree && newtree &&2048!same(oldtree, newtree) &&/* 18 and 19 */2049same(current, newtree))) {2050returnkeep_entry(current, o);2051}else if(oldtree && !newtree &&same(current, oldtree)) {2052/* 10 or 11 */2053returndeleted_entry(oldtree, current, o);2054}else if(oldtree && newtree &&2055same(current, oldtree) && !same(current, newtree)) {2056/* 20 or 21 */2057returnmerged_entry(newtree, current, o);2058}else2059returnreject_merge(current, o);2060}2061else if(newtree) {2062if(oldtree && !o->initial_checkout) {2063/*2064 * deletion of the path was staged;2065 */2066if(same(oldtree, newtree))2067return1;2068returnreject_merge(oldtree, o);2069}2070returnmerged_entry(newtree, current, o);2071}2072returndeleted_entry(oldtree, current, o);2073}20742075/*2076 * Bind merge.2077 *2078 * Keep the index entries at stage0, collapse stage1 but make sure2079 * stage0 does not have anything there.2080 */2081intbind_merge(const struct cache_entry *const*src,2082struct unpack_trees_options *o)2083{2084const struct cache_entry *old = src[0];2085const struct cache_entry *a = src[1];20862087if(o->merge_size !=1)2088returnerror("Cannot do a bind merge of%dtrees",2089 o->merge_size);2090if(a && old)2091return o->gently ? -1:2092error(ERRORMSG(o, ERROR_BIND_OVERLAP),2093super_prefixed(a->name),2094super_prefixed(old->name));2095if(!a)2096returnkeep_entry(old, o);2097else2098returnmerged_entry(a, NULL, o);2099}21002101/*2102 * One-way merge.2103 *2104 * The rule is:2105 * - take the stat information from stage0, take the data from stage12106 */2107intoneway_merge(const struct cache_entry *const*src,2108struct unpack_trees_options *o)2109{2110const struct cache_entry *old = src[0];2111const struct cache_entry *a = src[1];21122113if(o->merge_size !=1)2114returnerror("Cannot do a oneway merge of%dtrees",2115 o->merge_size);21162117if(!a || a == o->df_conflict_entry)2118returndeleted_entry(old, old, o);21192120if(old &&same(old, a)) {2121int update =0;2122if(o->reset && o->update && !ce_uptodate(old) && !ce_skip_worktree(old)) {2123struct stat st;2124if(lstat(old->name, &st) ||2125ie_match_stat(o->src_index, old, &st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE))2126 update |= CE_UPDATE;2127}2128add_entry(o, old, update,0);2129return0;2130}2131returnmerged_entry(a, old, o);2132}