1/* 2 * GIT - The information manager from hell 3 * 4 * Copyright (C) Linus Torvalds, 2005 5 */ 6#define NO_THE_INDEX_COMPATIBILITY_MACROS 7#include"cache.h" 8#include"cache-tree.h" 9#include"refs.h" 10#include"dir.h" 11 12/* Index extensions. 13 * 14 * The first letter should be 'A'..'Z' for extensions that are not 15 * necessary for a correct operation (i.e. optimization data). 16 * When new extensions are added that _needs_ to be understood in 17 * order to correctly interpret the index file, pick character that 18 * is outside the range, to cause the reader to abort. 19 */ 20 21#define CACHE_EXT(s) ( (s[0]<<24)|(s[1]<<16)|(s[2]<<8)|(s[3]) ) 22#define CACHE_EXT_TREE 0x54524545/* "TREE" */ 23 24struct index_state the_index; 25 26static unsigned inthash_name(const char*name,int namelen) 27{ 28unsigned int hash =0x123; 29 30do{ 31unsigned char c = *name++; 32 hash = hash*101+ c; 33}while(--namelen); 34return hash; 35} 36 37static voidset_index_entry(struct index_state *istate,int nr,struct cache_entry *ce) 38{ 39void**pos; 40unsigned int hash =hash_name(ce->name,ce_namelen(ce)); 41 42 istate->cache[nr] = ce; 43 pos =insert_hash(hash, ce, &istate->name_hash); 44if(pos) { 45 ce->next = *pos; 46*pos = ce; 47} 48} 49 50/* 51 * We don't actually *remove* it, we can just mark it invalid so that 52 * we won't find it in lookups. 53 * 54 * Not only would we have to search the lists (simple enough), but 55 * we'd also have to rehash other hash buckets in case this makes the 56 * hash bucket empty (common). So it's much better to just mark 57 * it. 58 */ 59static voidremove_hash_entry(struct index_state *istate,struct cache_entry *ce) 60{ 61 ce->ce_flags |= CE_UNHASHED; 62} 63 64static voidreplace_index_entry(struct index_state *istate,int nr,struct cache_entry *ce) 65{ 66struct cache_entry *old = istate->cache[nr]; 67 68if(ce != old) { 69remove_hash_entry(istate, old); 70set_index_entry(istate, nr, ce); 71} 72 istate->cache_changed =1; 73} 74 75intindex_name_exists(struct index_state *istate,const char*name,int namelen) 76{ 77unsigned int hash =hash_name(name, namelen); 78struct cache_entry *ce =lookup_hash(hash, &istate->name_hash); 79 80while(ce) { 81if(!(ce->ce_flags & CE_UNHASHED)) { 82if(!cache_name_compare(name, namelen, ce->name, ce->ce_flags)) 83return1; 84} 85 ce = ce->next; 86} 87return0; 88} 89 90/* 91 * This only updates the "non-critical" parts of the directory 92 * cache, ie the parts that aren't tracked by GIT, and only used 93 * to validate the cache. 94 */ 95voidfill_stat_cache_info(struct cache_entry *ce,struct stat *st) 96{ 97 ce->ce_ctime = st->st_ctime; 98 ce->ce_mtime = st->st_mtime; 99 ce->ce_dev = st->st_dev; 100 ce->ce_ino = st->st_ino; 101 ce->ce_uid = st->st_uid; 102 ce->ce_gid = st->st_gid; 103 ce->ce_size = st->st_size; 104 105if(assume_unchanged) 106 ce->ce_flags |= CE_VALID; 107 108if(S_ISREG(st->st_mode)) 109ce_mark_uptodate(ce); 110} 111 112static intce_compare_data(struct cache_entry *ce,struct stat *st) 113{ 114int match = -1; 115int fd =open(ce->name, O_RDONLY); 116 117if(fd >=0) { 118unsigned char sha1[20]; 119if(!index_fd(sha1, fd, st,0, OBJ_BLOB, ce->name)) 120 match =hashcmp(sha1, ce->sha1); 121/* index_fd() closed the file descriptor already */ 122} 123return match; 124} 125 126static intce_compare_link(struct cache_entry *ce,size_t expected_size) 127{ 128int match = -1; 129char*target; 130void*buffer; 131unsigned long size; 132enum object_type type; 133int len; 134 135 target =xmalloc(expected_size); 136 len =readlink(ce->name, target, expected_size); 137if(len != expected_size) { 138free(target); 139return-1; 140} 141 buffer =read_sha1_file(ce->sha1, &type, &size); 142if(!buffer) { 143free(target); 144return-1; 145} 146if(size == expected_size) 147 match =memcmp(buffer, target, size); 148free(buffer); 149free(target); 150return match; 151} 152 153static intce_compare_gitlink(struct cache_entry *ce) 154{ 155unsigned char sha1[20]; 156 157/* 158 * We don't actually require that the .git directory 159 * under GITLINK directory be a valid git directory. It 160 * might even be missing (in case nobody populated that 161 * sub-project). 162 * 163 * If so, we consider it always to match. 164 */ 165if(resolve_gitlink_ref(ce->name,"HEAD", sha1) <0) 166return0; 167returnhashcmp(sha1, ce->sha1); 168} 169 170static intce_modified_check_fs(struct cache_entry *ce,struct stat *st) 171{ 172switch(st->st_mode & S_IFMT) { 173case S_IFREG: 174if(ce_compare_data(ce, st)) 175return DATA_CHANGED; 176break; 177case S_IFLNK: 178if(ce_compare_link(ce,xsize_t(st->st_size))) 179return DATA_CHANGED; 180break; 181case S_IFDIR: 182if(S_ISGITLINK(ce->ce_mode)) 183return0; 184default: 185return TYPE_CHANGED; 186} 187return0; 188} 189 190static intce_match_stat_basic(struct cache_entry *ce,struct stat *st) 191{ 192unsigned int changed =0; 193 194if(ce->ce_flags & CE_REMOVE) 195return MODE_CHANGED | DATA_CHANGED | TYPE_CHANGED; 196 197switch(ce->ce_mode & S_IFMT) { 198case S_IFREG: 199 changed |= !S_ISREG(st->st_mode) ? TYPE_CHANGED :0; 200/* We consider only the owner x bit to be relevant for 201 * "mode changes" 202 */ 203if(trust_executable_bit && 204(0100& (ce->ce_mode ^ st->st_mode))) 205 changed |= MODE_CHANGED; 206break; 207case S_IFLNK: 208if(!S_ISLNK(st->st_mode) && 209(has_symlinks || !S_ISREG(st->st_mode))) 210 changed |= TYPE_CHANGED; 211break; 212case S_IFGITLINK: 213if(!S_ISDIR(st->st_mode)) 214 changed |= TYPE_CHANGED; 215else if(ce_compare_gitlink(ce)) 216 changed |= DATA_CHANGED; 217return changed; 218default: 219die("internal error: ce_mode is%o", ce->ce_mode); 220} 221if(ce->ce_mtime != (unsigned int) st->st_mtime) 222 changed |= MTIME_CHANGED; 223if(ce->ce_ctime != (unsigned int) st->st_ctime) 224 changed |= CTIME_CHANGED; 225 226if(ce->ce_uid != (unsigned int) st->st_uid || 227 ce->ce_gid != (unsigned int) st->st_gid) 228 changed |= OWNER_CHANGED; 229if(ce->ce_ino != (unsigned int) st->st_ino) 230 changed |= INODE_CHANGED; 231 232#ifdef USE_STDEV 233/* 234 * st_dev breaks on network filesystems where different 235 * clients will have different views of what "device" 236 * the filesystem is on 237 */ 238if(ce->ce_dev != (unsigned int) st->st_dev) 239 changed |= INODE_CHANGED; 240#endif 241 242if(ce->ce_size != (unsigned int) st->st_size) 243 changed |= DATA_CHANGED; 244 245return changed; 246} 247 248static intis_racy_timestamp(struct index_state *istate,struct cache_entry *ce) 249{ 250return(istate->timestamp && 251((unsigned int)istate->timestamp) <= ce->ce_mtime); 252} 253 254intie_match_stat(struct index_state *istate, 255struct cache_entry *ce,struct stat *st, 256unsigned int options) 257{ 258unsigned int changed; 259int ignore_valid = options & CE_MATCH_IGNORE_VALID; 260int assume_racy_is_modified = options & CE_MATCH_RACY_IS_DIRTY; 261 262/* 263 * If it's marked as always valid in the index, it's 264 * valid whatever the checked-out copy says. 265 */ 266if(!ignore_valid && (ce->ce_flags & CE_VALID)) 267return0; 268 269 changed =ce_match_stat_basic(ce, st); 270 271/* 272 * Within 1 second of this sequence: 273 * echo xyzzy >file && git-update-index --add file 274 * running this command: 275 * echo frotz >file 276 * would give a falsely clean cache entry. The mtime and 277 * length match the cache, and other stat fields do not change. 278 * 279 * We could detect this at update-index time (the cache entry 280 * being registered/updated records the same time as "now") 281 * and delay the return from git-update-index, but that would 282 * effectively mean we can make at most one commit per second, 283 * which is not acceptable. Instead, we check cache entries 284 * whose mtime are the same as the index file timestamp more 285 * carefully than others. 286 */ 287if(!changed &&is_racy_timestamp(istate, ce)) { 288if(assume_racy_is_modified) 289 changed |= DATA_CHANGED; 290else 291 changed |=ce_modified_check_fs(ce, st); 292} 293 294return changed; 295} 296 297intie_modified(struct index_state *istate, 298struct cache_entry *ce,struct stat *st,unsigned int options) 299{ 300int changed, changed_fs; 301 302 changed =ie_match_stat(istate, ce, st, options); 303if(!changed) 304return0; 305/* 306 * If the mode or type has changed, there's no point in trying 307 * to refresh the entry - it's not going to match 308 */ 309if(changed & (MODE_CHANGED | TYPE_CHANGED)) 310return changed; 311 312/* Immediately after read-tree or update-index --cacheinfo, 313 * the length field is zero. For other cases the ce_size 314 * should match the SHA1 recorded in the index entry. 315 */ 316if((changed & DATA_CHANGED) && ce->ce_size !=0) 317return changed; 318 319 changed_fs =ce_modified_check_fs(ce, st); 320if(changed_fs) 321return changed | changed_fs; 322return0; 323} 324 325intbase_name_compare(const char*name1,int len1,int mode1, 326const char*name2,int len2,int mode2) 327{ 328unsigned char c1, c2; 329int len = len1 < len2 ? len1 : len2; 330int cmp; 331 332 cmp =memcmp(name1, name2, len); 333if(cmp) 334return cmp; 335 c1 = name1[len]; 336 c2 = name2[len]; 337if(!c1 &&S_ISDIR(mode1)) 338 c1 ='/'; 339if(!c2 &&S_ISDIR(mode2)) 340 c2 ='/'; 341return(c1 < c2) ? -1: (c1 > c2) ?1:0; 342} 343 344intcache_name_compare(const char*name1,int flags1,const char*name2,int flags2) 345{ 346int len1 = flags1 & CE_NAMEMASK; 347int len2 = flags2 & CE_NAMEMASK; 348int len = len1 < len2 ? len1 : len2; 349int cmp; 350 351 cmp =memcmp(name1, name2, len); 352if(cmp) 353return cmp; 354if(len1 < len2) 355return-1; 356if(len1 > len2) 357return1; 358 359/* Compare stages */ 360 flags1 &= CE_STAGEMASK; 361 flags2 &= CE_STAGEMASK; 362 363if(flags1 < flags2) 364return-1; 365if(flags1 > flags2) 366return1; 367return0; 368} 369 370intindex_name_pos(struct index_state *istate,const char*name,int namelen) 371{ 372int first, last; 373 374 first =0; 375 last = istate->cache_nr; 376while(last > first) { 377int next = (last + first) >>1; 378struct cache_entry *ce = istate->cache[next]; 379int cmp =cache_name_compare(name, namelen, ce->name, ce->ce_flags); 380if(!cmp) 381return next; 382if(cmp <0) { 383 last = next; 384continue; 385} 386 first = next+1; 387} 388return-first-1; 389} 390 391/* Remove entry, return true if there are more entries to go.. */ 392intremove_index_entry_at(struct index_state *istate,int pos) 393{ 394struct cache_entry *ce = istate->cache[pos]; 395 396remove_hash_entry(istate, ce); 397 istate->cache_changed =1; 398 istate->cache_nr--; 399if(pos >= istate->cache_nr) 400return0; 401memmove(istate->cache + pos, 402 istate->cache + pos +1, 403(istate->cache_nr - pos) *sizeof(struct cache_entry *)); 404return1; 405} 406 407intremove_file_from_index(struct index_state *istate,const char*path) 408{ 409int pos =index_name_pos(istate, path,strlen(path)); 410if(pos <0) 411 pos = -pos-1; 412cache_tree_invalidate_path(istate->cache_tree, path); 413while(pos < istate->cache_nr && !strcmp(istate->cache[pos]->name, path)) 414remove_index_entry_at(istate, pos); 415return0; 416} 417 418static intcompare_name(struct cache_entry *ce,const char*path,int namelen) 419{ 420return namelen !=ce_namelen(ce) ||memcmp(path, ce->name, namelen); 421} 422 423static intindex_name_pos_also_unmerged(struct index_state *istate, 424const char*path,int namelen) 425{ 426int pos =index_name_pos(istate, path, namelen); 427struct cache_entry *ce; 428 429if(pos >=0) 430return pos; 431 432/* maybe unmerged? */ 433 pos = -1- pos; 434if(pos >= istate->cache_nr || 435compare_name((ce = istate->cache[pos]), path, namelen)) 436return-1; 437 438/* order of preference: stage 2, 1, 3 */ 439if(ce_stage(ce) ==1&& pos +1< istate->cache_nr && 440ce_stage((ce = istate->cache[pos +1])) ==2&& 441!compare_name(ce, path, namelen)) 442 pos++; 443return pos; 444} 445 446intadd_file_to_index(struct index_state *istate,const char*path,int verbose) 447{ 448int size, namelen, pos; 449struct stat st; 450struct cache_entry *ce; 451unsigned ce_option = CE_MATCH_IGNORE_VALID|CE_MATCH_RACY_IS_DIRTY; 452 453if(lstat(path, &st)) 454die("%s: unable to stat (%s)", path,strerror(errno)); 455 456if(!S_ISREG(st.st_mode) && !S_ISLNK(st.st_mode) && !S_ISDIR(st.st_mode)) 457die("%s: can only add regular files, symbolic links or git-directories", path); 458 459 namelen =strlen(path); 460if(S_ISDIR(st.st_mode)) { 461while(namelen && path[namelen-1] =='/') 462 namelen--; 463} 464 size =cache_entry_size(namelen); 465 ce =xcalloc(1, size); 466memcpy(ce->name, path, namelen); 467 ce->ce_flags = namelen; 468fill_stat_cache_info(ce, &st); 469 470if(trust_executable_bit && has_symlinks) 471 ce->ce_mode =create_ce_mode(st.st_mode); 472else{ 473/* If there is an existing entry, pick the mode bits and type 474 * from it, otherwise assume unexecutable regular file. 475 */ 476struct cache_entry *ent; 477int pos =index_name_pos_also_unmerged(istate, path, namelen); 478 479 ent = (0<= pos) ? istate->cache[pos] : NULL; 480 ce->ce_mode =ce_mode_from_stat(ent, st.st_mode); 481} 482 483 pos =index_name_pos(istate, ce->name, namelen); 484if(0<= pos && 485!ce_stage(istate->cache[pos]) && 486!ie_match_stat(istate, istate->cache[pos], &st, ce_option)) { 487/* Nothing changed, really */ 488free(ce); 489ce_mark_uptodate(istate->cache[pos]); 490return0; 491} 492 493if(index_path(ce->sha1, path, &st,1)) 494die("unable to index file%s", path); 495if(add_index_entry(istate, ce, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE)) 496die("unable to add%sto index",path); 497if(verbose) 498printf("add '%s'\n", path); 499return0; 500} 501 502struct cache_entry *make_cache_entry(unsigned int mode, 503const unsigned char*sha1,const char*path,int stage, 504int refresh) 505{ 506int size, len; 507struct cache_entry *ce; 508 509if(!verify_path(path)) 510return NULL; 511 512 len =strlen(path); 513 size =cache_entry_size(len); 514 ce =xcalloc(1, size); 515 516hashcpy(ce->sha1, sha1); 517memcpy(ce->name, path, len); 518 ce->ce_flags =create_ce_flags(len, stage); 519 ce->ce_mode =create_ce_mode(mode); 520 521if(refresh) 522returnrefresh_cache_entry(ce,0); 523 524return ce; 525} 526 527intce_same_name(struct cache_entry *a,struct cache_entry *b) 528{ 529int len =ce_namelen(a); 530returnce_namelen(b) == len && !memcmp(a->name, b->name, len); 531} 532 533intce_path_match(const struct cache_entry *ce,const char**pathspec) 534{ 535const char*match, *name; 536int len; 537 538if(!pathspec) 539return1; 540 541 len =ce_namelen(ce); 542 name = ce->name; 543while((match = *pathspec++) != NULL) { 544int matchlen =strlen(match); 545if(matchlen > len) 546continue; 547if(memcmp(name, match, matchlen)) 548continue; 549if(matchlen && name[matchlen-1] =='/') 550return1; 551if(name[matchlen] =='/'|| !name[matchlen]) 552return1; 553if(!matchlen) 554return1; 555} 556return0; 557} 558 559/* 560 * We fundamentally don't like some paths: we don't want 561 * dot or dot-dot anywhere, and for obvious reasons don't 562 * want to recurse into ".git" either. 563 * 564 * Also, we don't want double slashes or slashes at the 565 * end that can make pathnames ambiguous. 566 */ 567static intverify_dotfile(const char*rest) 568{ 569/* 570 * The first character was '.', but that 571 * has already been discarded, we now test 572 * the rest. 573 */ 574switch(*rest) { 575/* "." is not allowed */ 576case'\0':case'/': 577return0; 578 579/* 580 * ".git" followed by NUL or slash is bad. This 581 * shares the path end test with the ".." case. 582 */ 583case'g': 584if(rest[1] !='i') 585break; 586if(rest[2] !='t') 587break; 588 rest +=2; 589/* fallthrough */ 590case'.': 591if(rest[1] =='\0'|| rest[1] =='/') 592return0; 593} 594return1; 595} 596 597intverify_path(const char*path) 598{ 599char c; 600 601goto inside; 602for(;;) { 603if(!c) 604return1; 605if(c =='/') { 606inside: 607 c = *path++; 608switch(c) { 609default: 610continue; 611case'/':case'\0': 612break; 613case'.': 614if(verify_dotfile(path)) 615continue; 616} 617return0; 618} 619 c = *path++; 620} 621} 622 623/* 624 * Do we have another file that has the beginning components being a 625 * proper superset of the name we're trying to add? 626 */ 627static inthas_file_name(struct index_state *istate, 628const struct cache_entry *ce,int pos,int ok_to_replace) 629{ 630int retval =0; 631int len =ce_namelen(ce); 632int stage =ce_stage(ce); 633const char*name = ce->name; 634 635while(pos < istate->cache_nr) { 636struct cache_entry *p = istate->cache[pos++]; 637 638if(len >=ce_namelen(p)) 639break; 640if(memcmp(name, p->name, len)) 641break; 642if(ce_stage(p) != stage) 643continue; 644if(p->name[len] !='/') 645continue; 646if(p->ce_flags & CE_REMOVE) 647continue; 648 retval = -1; 649if(!ok_to_replace) 650break; 651remove_index_entry_at(istate, --pos); 652} 653return retval; 654} 655 656/* 657 * Do we have another file with a pathname that is a proper 658 * subset of the name we're trying to add? 659 */ 660static inthas_dir_name(struct index_state *istate, 661const struct cache_entry *ce,int pos,int ok_to_replace) 662{ 663int retval =0; 664int stage =ce_stage(ce); 665const char*name = ce->name; 666const char*slash = name +ce_namelen(ce); 667 668for(;;) { 669int len; 670 671for(;;) { 672if(*--slash =='/') 673break; 674if(slash <= ce->name) 675return retval; 676} 677 len = slash - name; 678 679 pos =index_name_pos(istate, name,create_ce_flags(len, stage)); 680if(pos >=0) { 681/* 682 * Found one, but not so fast. This could 683 * be a marker that says "I was here, but 684 * I am being removed". Such an entry is 685 * not a part of the resulting tree, and 686 * it is Ok to have a directory at the same 687 * path. 688 */ 689if(!(istate->cache[pos]->ce_flags & CE_REMOVE)) { 690 retval = -1; 691if(!ok_to_replace) 692break; 693remove_index_entry_at(istate, pos); 694continue; 695} 696} 697else 698 pos = -pos-1; 699 700/* 701 * Trivial optimization: if we find an entry that 702 * already matches the sub-directory, then we know 703 * we're ok, and we can exit. 704 */ 705while(pos < istate->cache_nr) { 706struct cache_entry *p = istate->cache[pos]; 707if((ce_namelen(p) <= len) || 708(p->name[len] !='/') || 709memcmp(p->name, name, len)) 710break;/* not our subdirectory */ 711if(ce_stage(p) == stage && !(p->ce_flags & CE_REMOVE)) 712/* 713 * p is at the same stage as our entry, and 714 * is a subdirectory of what we are looking 715 * at, so we cannot have conflicts at our 716 * level or anything shorter. 717 */ 718return retval; 719 pos++; 720} 721} 722return retval; 723} 724 725/* We may be in a situation where we already have path/file and path 726 * is being added, or we already have path and path/file is being 727 * added. Either one would result in a nonsense tree that has path 728 * twice when git-write-tree tries to write it out. Prevent it. 729 * 730 * If ok-to-replace is specified, we remove the conflicting entries 731 * from the cache so the caller should recompute the insert position. 732 * When this happens, we return non-zero. 733 */ 734static intcheck_file_directory_conflict(struct index_state *istate, 735const struct cache_entry *ce, 736int pos,int ok_to_replace) 737{ 738int retval; 739 740/* 741 * When ce is an "I am going away" entry, we allow it to be added 742 */ 743if(ce->ce_flags & CE_REMOVE) 744return0; 745 746/* 747 * We check if the path is a sub-path of a subsequent pathname 748 * first, since removing those will not change the position 749 * in the array. 750 */ 751 retval =has_file_name(istate, ce, pos, ok_to_replace); 752 753/* 754 * Then check if the path might have a clashing sub-directory 755 * before it. 756 */ 757return retval +has_dir_name(istate, ce, pos, ok_to_replace); 758} 759 760static intadd_index_entry_with_check(struct index_state *istate,struct cache_entry *ce,int option) 761{ 762int pos; 763int ok_to_add = option & ADD_CACHE_OK_TO_ADD; 764int ok_to_replace = option & ADD_CACHE_OK_TO_REPLACE; 765int skip_df_check = option & ADD_CACHE_SKIP_DFCHECK; 766 767cache_tree_invalidate_path(istate->cache_tree, ce->name); 768 pos =index_name_pos(istate, ce->name, ce->ce_flags); 769 770/* existing match? Just replace it. */ 771if(pos >=0) { 772replace_index_entry(istate, pos, ce); 773return0; 774} 775 pos = -pos-1; 776 777/* 778 * Inserting a merged entry ("stage 0") into the index 779 * will always replace all non-merged entries.. 780 */ 781if(pos < istate->cache_nr &&ce_stage(ce) ==0) { 782while(ce_same_name(istate->cache[pos], ce)) { 783 ok_to_add =1; 784if(!remove_index_entry_at(istate, pos)) 785break; 786} 787} 788 789if(!ok_to_add) 790return-1; 791if(!verify_path(ce->name)) 792return-1; 793 794if(!skip_df_check && 795check_file_directory_conflict(istate, ce, pos, ok_to_replace)) { 796if(!ok_to_replace) 797returnerror("'%s' appears as both a file and as a directory", 798 ce->name); 799 pos =index_name_pos(istate, ce->name, ce->ce_flags); 800 pos = -pos-1; 801} 802return pos +1; 803} 804 805intadd_index_entry(struct index_state *istate,struct cache_entry *ce,int option) 806{ 807int pos; 808 809if(option & ADD_CACHE_JUST_APPEND) 810 pos = istate->cache_nr; 811else{ 812int ret; 813 ret =add_index_entry_with_check(istate, ce, option); 814if(ret <=0) 815return ret; 816 pos = ret -1; 817} 818 819/* Make sure the array is big enough .. */ 820if(istate->cache_nr == istate->cache_alloc) { 821 istate->cache_alloc =alloc_nr(istate->cache_alloc); 822 istate->cache =xrealloc(istate->cache, 823 istate->cache_alloc *sizeof(struct cache_entry *)); 824} 825 826/* Add it in.. */ 827 istate->cache_nr++; 828if(istate->cache_nr > pos +1) 829memmove(istate->cache + pos +1, 830 istate->cache + pos, 831(istate->cache_nr - pos -1) *sizeof(ce)); 832set_index_entry(istate, pos, ce); 833 istate->cache_changed =1; 834return0; 835} 836 837/* 838 * "refresh" does not calculate a new sha1 file or bring the 839 * cache up-to-date for mode/content changes. But what it 840 * _does_ do is to "re-match" the stat information of a file 841 * with the cache, so that you can refresh the cache for a 842 * file that hasn't been changed but where the stat entry is 843 * out of date. 844 * 845 * For example, you'd want to do this after doing a "git-read-tree", 846 * to link up the stat cache details with the proper files. 847 */ 848static struct cache_entry *refresh_cache_ent(struct index_state *istate, 849struct cache_entry *ce, 850unsigned int options,int*err) 851{ 852struct stat st; 853struct cache_entry *updated; 854int changed, size; 855int ignore_valid = options & CE_MATCH_IGNORE_VALID; 856 857if(ce_uptodate(ce)) 858return ce; 859 860if(lstat(ce->name, &st) <0) { 861if(err) 862*err = errno; 863return NULL; 864} 865 866 changed =ie_match_stat(istate, ce, &st, options); 867if(!changed) { 868/* 869 * The path is unchanged. If we were told to ignore 870 * valid bit, then we did the actual stat check and 871 * found that the entry is unmodified. If the entry 872 * is not marked VALID, this is the place to mark it 873 * valid again, under "assume unchanged" mode. 874 */ 875if(ignore_valid && assume_unchanged && 876!(ce->ce_flags & CE_VALID)) 877;/* mark this one VALID again */ 878else{ 879/* 880 * We do not mark the index itself "modified" 881 * because CE_UPTODATE flag is in-core only; 882 * we are not going to write this change out. 883 */ 884ce_mark_uptodate(ce); 885return ce; 886} 887} 888 889if(ie_modified(istate, ce, &st, options)) { 890if(err) 891*err = EINVAL; 892return NULL; 893} 894 895 size =ce_size(ce); 896 updated =xmalloc(size); 897memcpy(updated, ce, size); 898fill_stat_cache_info(updated, &st); 899/* 900 * If ignore_valid is not set, we should leave CE_VALID bit 901 * alone. Otherwise, paths marked with --no-assume-unchanged 902 * (i.e. things to be edited) will reacquire CE_VALID bit 903 * automatically, which is not really what we want. 904 */ 905if(!ignore_valid && assume_unchanged && 906!(ce->ce_flags & CE_VALID)) 907 updated->ce_flags &= ~CE_VALID; 908 909return updated; 910} 911 912intrefresh_index(struct index_state *istate,unsigned int flags,const char**pathspec,char*seen) 913{ 914int i; 915int has_errors =0; 916int really = (flags & REFRESH_REALLY) !=0; 917int allow_unmerged = (flags & REFRESH_UNMERGED) !=0; 918int quiet = (flags & REFRESH_QUIET) !=0; 919int not_new = (flags & REFRESH_IGNORE_MISSING) !=0; 920unsigned int options = really ? CE_MATCH_IGNORE_VALID :0; 921 922for(i =0; i < istate->cache_nr; i++) { 923struct cache_entry *ce, *new; 924int cache_errno =0; 925 926 ce = istate->cache[i]; 927if(ce_stage(ce)) { 928while((i < istate->cache_nr) && 929!strcmp(istate->cache[i]->name, ce->name)) 930 i++; 931 i--; 932if(allow_unmerged) 933continue; 934printf("%s: needs merge\n", ce->name); 935 has_errors =1; 936continue; 937} 938 939if(pathspec && !match_pathspec(pathspec, ce->name,strlen(ce->name),0, seen)) 940continue; 941 942new=refresh_cache_ent(istate, ce, options, &cache_errno); 943if(new== ce) 944continue; 945if(!new) { 946if(not_new && cache_errno == ENOENT) 947continue; 948if(really && cache_errno == EINVAL) { 949/* If we are doing --really-refresh that 950 * means the index is not valid anymore. 951 */ 952 ce->ce_flags &= ~CE_VALID; 953 istate->cache_changed =1; 954} 955if(quiet) 956continue; 957printf("%s: needs update\n", ce->name); 958 has_errors =1; 959continue; 960} 961 962replace_index_entry(istate, i,new); 963} 964return has_errors; 965} 966 967struct cache_entry *refresh_cache_entry(struct cache_entry *ce,int really) 968{ 969returnrefresh_cache_ent(&the_index, ce, really, NULL); 970} 971 972static intverify_hdr(struct cache_header *hdr,unsigned long size) 973{ 974 SHA_CTX c; 975unsigned char sha1[20]; 976 977if(hdr->hdr_signature !=htonl(CACHE_SIGNATURE)) 978returnerror("bad signature"); 979if(hdr->hdr_version !=htonl(2)) 980returnerror("bad index version"); 981SHA1_Init(&c); 982SHA1_Update(&c, hdr, size -20); 983SHA1_Final(sha1, &c); 984if(hashcmp(sha1, (unsigned char*)hdr + size -20)) 985returnerror("bad index file sha1 signature"); 986return0; 987} 988 989static intread_index_extension(struct index_state *istate, 990const char*ext,void*data,unsigned long sz) 991{ 992switch(CACHE_EXT(ext)) { 993case CACHE_EXT_TREE: 994 istate->cache_tree =cache_tree_read(data, sz); 995break; 996default: 997if(*ext <'A'||'Z'< *ext) 998returnerror("index uses %.4s extension, which we do not understand", 999 ext);1000fprintf(stderr,"ignoring %.4s extension\n", ext);1001break;1002}1003return0;1004}10051006intread_index(struct index_state *istate)1007{1008returnread_index_from(istate,get_index_file());1009}10101011static voidconvert_from_disk(struct ondisk_cache_entry *ondisk,struct cache_entry *ce)1012{1013size_t len;10141015 ce->ce_ctime =ntohl(ondisk->ctime.sec);1016 ce->ce_mtime =ntohl(ondisk->mtime.sec);1017 ce->ce_dev =ntohl(ondisk->dev);1018 ce->ce_ino =ntohl(ondisk->ino);1019 ce->ce_mode =ntohl(ondisk->mode);1020 ce->ce_uid =ntohl(ondisk->uid);1021 ce->ce_gid =ntohl(ondisk->gid);1022 ce->ce_size =ntohl(ondisk->size);1023/* On-disk flags are just 16 bits */1024 ce->ce_flags =ntohs(ondisk->flags);1025hashcpy(ce->sha1, ondisk->sha1);10261027 len = ce->ce_flags & CE_NAMEMASK;1028if(len == CE_NAMEMASK)1029 len =strlen(ondisk->name);1030/*1031 * NEEDSWORK: If the original index is crafted, this copy could1032 * go unchecked.1033 */1034memcpy(ce->name, ondisk->name, len +1);1035}10361037staticinlinesize_testimate_cache_size(size_t ondisk_size,unsigned int entries)1038{1039long per_entry;10401041 per_entry =sizeof(struct cache_entry) -sizeof(struct ondisk_cache_entry);10421043/*1044 * Alignment can cause differences. This should be "alignof", but1045 * since that's a gcc'ism, just use the size of a pointer.1046 */1047 per_entry +=sizeof(void*);1048return ondisk_size + entries*per_entry;1049}10501051/* remember to discard_cache() before reading a different cache! */1052intread_index_from(struct index_state *istate,const char*path)1053{1054int fd, i;1055struct stat st;1056unsigned long src_offset, dst_offset;1057struct cache_header *hdr;1058void*mmap;1059size_t mmap_size;10601061 errno = EBUSY;1062if(istate->alloc)1063return istate->cache_nr;10641065 errno = ENOENT;1066 istate->timestamp =0;1067 fd =open(path, O_RDONLY);1068if(fd <0) {1069if(errno == ENOENT)1070return0;1071die("index file open failed (%s)",strerror(errno));1072}10731074if(fstat(fd, &st))1075die("cannot stat the open index (%s)",strerror(errno));10761077 errno = EINVAL;1078 mmap_size =xsize_t(st.st_size);1079if(mmap_size <sizeof(struct cache_header) +20)1080die("index file smaller than expected");10811082 mmap =xmmap(NULL, mmap_size, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd,0);1083close(fd);1084if(mmap == MAP_FAILED)1085die("unable to map index file");10861087 hdr = mmap;1088if(verify_hdr(hdr, mmap_size) <0)1089goto unmap;10901091 istate->cache_nr =ntohl(hdr->hdr_entries);1092 istate->cache_alloc =alloc_nr(istate->cache_nr);1093 istate->cache =xcalloc(istate->cache_alloc,sizeof(struct cache_entry *));10941095/*1096 * The disk format is actually larger than the in-memory format,1097 * due to space for nsec etc, so even though the in-memory one1098 * has room for a few more flags, we can allocate using the same1099 * index size1100 */1101 istate->alloc =xmalloc(estimate_cache_size(mmap_size, istate->cache_nr));11021103 src_offset =sizeof(*hdr);1104 dst_offset =0;1105for(i =0; i < istate->cache_nr; i++) {1106struct ondisk_cache_entry *disk_ce;1107struct cache_entry *ce;11081109 disk_ce = (struct ondisk_cache_entry *)((char*)mmap + src_offset);1110 ce = (struct cache_entry *)((char*)istate->alloc + dst_offset);1111convert_from_disk(disk_ce, ce);1112set_index_entry(istate, i, ce);11131114 src_offset +=ondisk_ce_size(ce);1115 dst_offset +=ce_size(ce);1116}1117 istate->timestamp = st.st_mtime;1118while(src_offset <= mmap_size -20-8) {1119/* After an array of active_nr index entries,1120 * there can be arbitrary number of extended1121 * sections, each of which is prefixed with1122 * extension name (4-byte) and section length1123 * in 4-byte network byte order.1124 */1125unsigned long extsize;1126memcpy(&extsize, (char*)mmap + src_offset +4,4);1127 extsize =ntohl(extsize);1128if(read_index_extension(istate,1129(const char*) mmap + src_offset,1130(char*) mmap + src_offset +8,1131 extsize) <0)1132goto unmap;1133 src_offset +=8;1134 src_offset += extsize;1135}1136munmap(mmap, mmap_size);1137return istate->cache_nr;11381139unmap:1140munmap(mmap, mmap_size);1141 errno = EINVAL;1142die("index file corrupt");1143}11441145intdiscard_index(struct index_state *istate)1146{1147 istate->cache_nr =0;1148 istate->cache_changed =0;1149 istate->timestamp =0;1150free_hash(&istate->name_hash);1151cache_tree_free(&(istate->cache_tree));1152free(istate->alloc);1153 istate->alloc = NULL;11541155/* no need to throw away allocated active_cache */1156return0;1157}11581159#define WRITE_BUFFER_SIZE 81921160static unsigned char write_buffer[WRITE_BUFFER_SIZE];1161static unsigned long write_buffer_len;11621163static intce_write_flush(SHA_CTX *context,int fd)1164{1165unsigned int buffered = write_buffer_len;1166if(buffered) {1167SHA1_Update(context, write_buffer, buffered);1168if(write_in_full(fd, write_buffer, buffered) != buffered)1169return-1;1170 write_buffer_len =0;1171}1172return0;1173}11741175static intce_write(SHA_CTX *context,int fd,void*data,unsigned int len)1176{1177while(len) {1178unsigned int buffered = write_buffer_len;1179unsigned int partial = WRITE_BUFFER_SIZE - buffered;1180if(partial > len)1181 partial = len;1182memcpy(write_buffer + buffered, data, partial);1183 buffered += partial;1184if(buffered == WRITE_BUFFER_SIZE) {1185 write_buffer_len = buffered;1186if(ce_write_flush(context, fd))1187return-1;1188 buffered =0;1189}1190 write_buffer_len = buffered;1191 len -= partial;1192 data = (char*) data + partial;1193}1194return0;1195}11961197static intwrite_index_ext_header(SHA_CTX *context,int fd,1198unsigned int ext,unsigned int sz)1199{1200 ext =htonl(ext);1201 sz =htonl(sz);1202return((ce_write(context, fd, &ext,4) <0) ||1203(ce_write(context, fd, &sz,4) <0)) ? -1:0;1204}12051206static intce_flush(SHA_CTX *context,int fd)1207{1208unsigned int left = write_buffer_len;12091210if(left) {1211 write_buffer_len =0;1212SHA1_Update(context, write_buffer, left);1213}12141215/* Flush first if not enough space for SHA1 signature */1216if(left +20> WRITE_BUFFER_SIZE) {1217if(write_in_full(fd, write_buffer, left) != left)1218return-1;1219 left =0;1220}12211222/* Append the SHA1 signature at the end */1223SHA1_Final(write_buffer + left, context);1224 left +=20;1225return(write_in_full(fd, write_buffer, left) != left) ? -1:0;1226}12271228static voidce_smudge_racily_clean_entry(struct cache_entry *ce)1229{1230/*1231 * The only thing we care about in this function is to smudge the1232 * falsely clean entry due to touch-update-touch race, so we leave1233 * everything else as they are. We are called for entries whose1234 * ce_mtime match the index file mtime.1235 */1236struct stat st;12371238if(lstat(ce->name, &st) <0)1239return;1240if(ce_match_stat_basic(ce, &st))1241return;1242if(ce_modified_check_fs(ce, &st)) {1243/* This is "racily clean"; smudge it. Note that this1244 * is a tricky code. At first glance, it may appear1245 * that it can break with this sequence:1246 *1247 * $ echo xyzzy >frotz1248 * $ git-update-index --add frotz1249 * $ : >frotz1250 * $ sleep 31251 * $ echo filfre >nitfol1252 * $ git-update-index --add nitfol1253 *1254 * but it does not. When the second update-index runs,1255 * it notices that the entry "frotz" has the same timestamp1256 * as index, and if we were to smudge it by resetting its1257 * size to zero here, then the object name recorded1258 * in index is the 6-byte file but the cached stat information1259 * becomes zero --- which would then match what we would1260 * obtain from the filesystem next time we stat("frotz").1261 *1262 * However, the second update-index, before calling1263 * this function, notices that the cached size is 61264 * bytes and what is on the filesystem is an empty1265 * file, and never calls us, so the cached size information1266 * for "frotz" stays 6 which does not match the filesystem.1267 */1268 ce->ce_size =0;1269}1270}12711272static intce_write_entry(SHA_CTX *c,int fd,struct cache_entry *ce)1273{1274int size =ondisk_ce_size(ce);1275struct ondisk_cache_entry *ondisk =xcalloc(1, size);12761277 ondisk->ctime.sec =htonl(ce->ce_ctime);1278 ondisk->ctime.nsec =0;1279 ondisk->mtime.sec =htonl(ce->ce_mtime);1280 ondisk->mtime.nsec =0;1281 ondisk->dev =htonl(ce->ce_dev);1282 ondisk->ino =htonl(ce->ce_ino);1283 ondisk->mode =htonl(ce->ce_mode);1284 ondisk->uid =htonl(ce->ce_uid);1285 ondisk->gid =htonl(ce->ce_gid);1286 ondisk->size =htonl(ce->ce_size);1287hashcpy(ondisk->sha1, ce->sha1);1288 ondisk->flags =htons(ce->ce_flags);1289memcpy(ondisk->name, ce->name,ce_namelen(ce));12901291returnce_write(c, fd, ondisk, size);1292}12931294intwrite_index(struct index_state *istate,int newfd)1295{1296 SHA_CTX c;1297struct cache_header hdr;1298int i, err, removed;1299struct cache_entry **cache = istate->cache;1300int entries = istate->cache_nr;13011302for(i = removed =0; i < entries; i++)1303if(cache[i]->ce_flags & CE_REMOVE)1304 removed++;13051306 hdr.hdr_signature =htonl(CACHE_SIGNATURE);1307 hdr.hdr_version =htonl(2);1308 hdr.hdr_entries =htonl(entries - removed);13091310SHA1_Init(&c);1311if(ce_write(&c, newfd, &hdr,sizeof(hdr)) <0)1312return-1;13131314for(i =0; i < entries; i++) {1315struct cache_entry *ce = cache[i];1316if(ce->ce_flags & CE_REMOVE)1317continue;1318if(is_racy_timestamp(istate, ce))1319ce_smudge_racily_clean_entry(ce);1320if(ce_write_entry(&c, newfd, ce) <0)1321return-1;1322}13231324/* Write extension data here */1325if(istate->cache_tree) {1326struct strbuf sb;13271328strbuf_init(&sb,0);1329cache_tree_write(&sb, istate->cache_tree);1330 err =write_index_ext_header(&c, newfd, CACHE_EXT_TREE, sb.len) <01331||ce_write(&c, newfd, sb.buf, sb.len) <0;1332strbuf_release(&sb);1333if(err)1334return-1;1335}1336returnce_flush(&c, newfd);1337}