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