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