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"lockfile.h" 9#include"cache-tree.h" 10#include"refs.h" 11#include"dir.h" 12#include"tree.h" 13#include"commit.h" 14#include"blob.h" 15#include"resolve-undo.h" 16#include"strbuf.h" 17#include"varint.h" 18#include"split-index.h" 19#include"sigchain.h" 20#include"utf8.h" 21 22static struct cache_entry *refresh_cache_entry(struct cache_entry *ce, 23unsigned int options); 24 25/* Mask for the name length in ce_flags in the on-disk index */ 26 27#define CE_NAMEMASK (0x0fff) 28 29/* Index extensions. 30 * 31 * The first letter should be 'A'..'Z' for extensions that are not 32 * necessary for a correct operation (i.e. optimization data). 33 * When new extensions are added that _needs_ to be understood in 34 * order to correctly interpret the index file, pick character that 35 * is outside the range, to cause the reader to abort. 36 */ 37 38#define CACHE_EXT(s) ( (s[0]<<24)|(s[1]<<16)|(s[2]<<8)|(s[3]) ) 39#define CACHE_EXT_TREE 0x54524545/* "TREE" */ 40#define CACHE_EXT_RESOLVE_UNDO 0x52455543/* "REUC" */ 41#define CACHE_EXT_LINK 0x6c696e6b/* "link" */ 42#define CACHE_EXT_UNTRACKED 0x554E5452/* "UNTR" */ 43 44/* changes that can be kept in $GIT_DIR/index (basically all extensions) */ 45#define EXTMASK (RESOLVE_UNDO_CHANGED | CACHE_TREE_CHANGED | \ 46 CE_ENTRY_ADDED | CE_ENTRY_REMOVED | CE_ENTRY_CHANGED | \ 47 SPLIT_INDEX_ORDERED) 48 49struct index_state the_index; 50static const char*alternate_index_output; 51 52static voidset_index_entry(struct index_state *istate,int nr,struct cache_entry *ce) 53{ 54 istate->cache[nr] = ce; 55add_name_hash(istate, ce); 56} 57 58static voidreplace_index_entry(struct index_state *istate,int nr,struct cache_entry *ce) 59{ 60struct cache_entry *old = istate->cache[nr]; 61 62replace_index_entry_in_base(istate, old, ce); 63remove_name_hash(istate, old); 64free(old); 65set_index_entry(istate, nr, ce); 66 ce->ce_flags |= CE_UPDATE_IN_BASE; 67 istate->cache_changed |= CE_ENTRY_CHANGED; 68} 69 70voidrename_index_entry_at(struct index_state *istate,int nr,const char*new_name) 71{ 72struct cache_entry *old = istate->cache[nr], *new; 73int namelen =strlen(new_name); 74 75new=xmalloc(cache_entry_size(namelen)); 76copy_cache_entry(new, old); 77new->ce_flags &= ~CE_HASHED; 78new->ce_namelen = namelen; 79new->index =0; 80memcpy(new->name, new_name, namelen +1); 81 82cache_tree_invalidate_path(istate, old->name); 83remove_index_entry_at(istate, nr); 84add_index_entry(istate,new, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE); 85} 86 87voidfill_stat_data(struct stat_data *sd,struct stat *st) 88{ 89 sd->sd_ctime.sec = (unsigned int)st->st_ctime; 90 sd->sd_mtime.sec = (unsigned int)st->st_mtime; 91 sd->sd_ctime.nsec =ST_CTIME_NSEC(*st); 92 sd->sd_mtime.nsec =ST_MTIME_NSEC(*st); 93 sd->sd_dev = st->st_dev; 94 sd->sd_ino = st->st_ino; 95 sd->sd_uid = st->st_uid; 96 sd->sd_gid = st->st_gid; 97 sd->sd_size = st->st_size; 98} 99 100intmatch_stat_data(const struct stat_data *sd,struct stat *st) 101{ 102int changed =0; 103 104if(sd->sd_mtime.sec != (unsigned int)st->st_mtime) 105 changed |= MTIME_CHANGED; 106if(trust_ctime && check_stat && 107 sd->sd_ctime.sec != (unsigned int)st->st_ctime) 108 changed |= CTIME_CHANGED; 109 110#ifdef USE_NSEC 111if(check_stat && sd->sd_mtime.nsec !=ST_MTIME_NSEC(*st)) 112 changed |= MTIME_CHANGED; 113if(trust_ctime && check_stat && 114 sd->sd_ctime.nsec !=ST_CTIME_NSEC(*st)) 115 changed |= CTIME_CHANGED; 116#endif 117 118if(check_stat) { 119if(sd->sd_uid != (unsigned int) st->st_uid || 120 sd->sd_gid != (unsigned int) st->st_gid) 121 changed |= OWNER_CHANGED; 122if(sd->sd_ino != (unsigned int) st->st_ino) 123 changed |= INODE_CHANGED; 124} 125 126#ifdef USE_STDEV 127/* 128 * st_dev breaks on network filesystems where different 129 * clients will have different views of what "device" 130 * the filesystem is on 131 */ 132if(check_stat && sd->sd_dev != (unsigned int) st->st_dev) 133 changed |= INODE_CHANGED; 134#endif 135 136if(sd->sd_size != (unsigned int) st->st_size) 137 changed |= DATA_CHANGED; 138 139return changed; 140} 141 142/* 143 * This only updates the "non-critical" parts of the directory 144 * cache, ie the parts that aren't tracked by GIT, and only used 145 * to validate the cache. 146 */ 147voidfill_stat_cache_info(struct cache_entry *ce,struct stat *st) 148{ 149fill_stat_data(&ce->ce_stat_data, st); 150 151if(assume_unchanged) 152 ce->ce_flags |= CE_VALID; 153 154if(S_ISREG(st->st_mode)) 155ce_mark_uptodate(ce); 156} 157 158static intce_compare_data(const struct cache_entry *ce,struct stat *st) 159{ 160int match = -1; 161int fd =open(ce->name, O_RDONLY); 162 163if(fd >=0) { 164unsigned char sha1[20]; 165if(!index_fd(sha1, fd, st, OBJ_BLOB, ce->name,0)) 166 match =hashcmp(sha1, ce->sha1); 167/* index_fd() closed the file descriptor already */ 168} 169return match; 170} 171 172static intce_compare_link(const struct cache_entry *ce,size_t expected_size) 173{ 174int match = -1; 175void*buffer; 176unsigned long size; 177enum object_type type; 178struct strbuf sb = STRBUF_INIT; 179 180if(strbuf_readlink(&sb, ce->name, expected_size)) 181return-1; 182 183 buffer =read_sha1_file(ce->sha1, &type, &size); 184if(buffer) { 185if(size == sb.len) 186 match =memcmp(buffer, sb.buf, size); 187free(buffer); 188} 189strbuf_release(&sb); 190return match; 191} 192 193static intce_compare_gitlink(const struct cache_entry *ce) 194{ 195unsigned char sha1[20]; 196 197/* 198 * We don't actually require that the .git directory 199 * under GITLINK directory be a valid git directory. It 200 * might even be missing (in case nobody populated that 201 * sub-project). 202 * 203 * If so, we consider it always to match. 204 */ 205if(resolve_gitlink_ref(ce->name,"HEAD", sha1) <0) 206return0; 207returnhashcmp(sha1, ce->sha1); 208} 209 210static intce_modified_check_fs(const struct cache_entry *ce,struct stat *st) 211{ 212switch(st->st_mode & S_IFMT) { 213case S_IFREG: 214if(ce_compare_data(ce, st)) 215return DATA_CHANGED; 216break; 217case S_IFLNK: 218if(ce_compare_link(ce,xsize_t(st->st_size))) 219return DATA_CHANGED; 220break; 221case S_IFDIR: 222if(S_ISGITLINK(ce->ce_mode)) 223returnce_compare_gitlink(ce) ? DATA_CHANGED :0; 224default: 225return TYPE_CHANGED; 226} 227return0; 228} 229 230static intce_match_stat_basic(const struct cache_entry *ce,struct stat *st) 231{ 232unsigned int changed =0; 233 234if(ce->ce_flags & CE_REMOVE) 235return MODE_CHANGED | DATA_CHANGED | TYPE_CHANGED; 236 237switch(ce->ce_mode & S_IFMT) { 238case S_IFREG: 239 changed |= !S_ISREG(st->st_mode) ? TYPE_CHANGED :0; 240/* We consider only the owner x bit to be relevant for 241 * "mode changes" 242 */ 243if(trust_executable_bit && 244(0100& (ce->ce_mode ^ st->st_mode))) 245 changed |= MODE_CHANGED; 246break; 247case S_IFLNK: 248if(!S_ISLNK(st->st_mode) && 249(has_symlinks || !S_ISREG(st->st_mode))) 250 changed |= TYPE_CHANGED; 251break; 252case S_IFGITLINK: 253/* We ignore most of the st_xxx fields for gitlinks */ 254if(!S_ISDIR(st->st_mode)) 255 changed |= TYPE_CHANGED; 256else if(ce_compare_gitlink(ce)) 257 changed |= DATA_CHANGED; 258return changed; 259default: 260die("internal error: ce_mode is%o", ce->ce_mode); 261} 262 263 changed |=match_stat_data(&ce->ce_stat_data, st); 264 265/* Racily smudged entry? */ 266if(!ce->ce_stat_data.sd_size) { 267if(!is_empty_blob_sha1(ce->sha1)) 268 changed |= DATA_CHANGED; 269} 270 271return changed; 272} 273 274static intis_racy_timestamp(const struct index_state *istate, 275const struct cache_entry *ce) 276{ 277return(!S_ISGITLINK(ce->ce_mode) && 278 istate->timestamp.sec && 279#ifdef USE_NSEC 280/* nanosecond timestamped files can also be racy! */ 281(istate->timestamp.sec < ce->ce_stat_data.sd_mtime.sec || 282(istate->timestamp.sec == ce->ce_stat_data.sd_mtime.sec && 283 istate->timestamp.nsec <= ce->ce_stat_data.sd_mtime.nsec)) 284#else 285 istate->timestamp.sec <= ce->ce_stat_data.sd_mtime.sec 286#endif 287); 288} 289 290intie_match_stat(const struct index_state *istate, 291const struct cache_entry *ce,struct stat *st, 292unsigned int options) 293{ 294unsigned int changed; 295int ignore_valid = options & CE_MATCH_IGNORE_VALID; 296int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE; 297int assume_racy_is_modified = options & CE_MATCH_RACY_IS_DIRTY; 298 299/* 300 * If it's marked as always valid in the index, it's 301 * valid whatever the checked-out copy says. 302 * 303 * skip-worktree has the same effect with higher precedence 304 */ 305if(!ignore_skip_worktree &&ce_skip_worktree(ce)) 306return0; 307if(!ignore_valid && (ce->ce_flags & CE_VALID)) 308return0; 309 310/* 311 * Intent-to-add entries have not been added, so the index entry 312 * by definition never matches what is in the work tree until it 313 * actually gets added. 314 */ 315if(ce->ce_flags & CE_INTENT_TO_ADD) 316return DATA_CHANGED | TYPE_CHANGED | MODE_CHANGED; 317 318 changed =ce_match_stat_basic(ce, st); 319 320/* 321 * Within 1 second of this sequence: 322 * echo xyzzy >file && git-update-index --add file 323 * running this command: 324 * echo frotz >file 325 * would give a falsely clean cache entry. The mtime and 326 * length match the cache, and other stat fields do not change. 327 * 328 * We could detect this at update-index time (the cache entry 329 * being registered/updated records the same time as "now") 330 * and delay the return from git-update-index, but that would 331 * effectively mean we can make at most one commit per second, 332 * which is not acceptable. Instead, we check cache entries 333 * whose mtime are the same as the index file timestamp more 334 * carefully than others. 335 */ 336if(!changed &&is_racy_timestamp(istate, ce)) { 337if(assume_racy_is_modified) 338 changed |= DATA_CHANGED; 339else 340 changed |=ce_modified_check_fs(ce, st); 341} 342 343return changed; 344} 345 346intie_modified(const struct index_state *istate, 347const struct cache_entry *ce, 348struct stat *st,unsigned int options) 349{ 350int changed, changed_fs; 351 352 changed =ie_match_stat(istate, ce, st, options); 353if(!changed) 354return0; 355/* 356 * If the mode or type has changed, there's no point in trying 357 * to refresh the entry - it's not going to match 358 */ 359if(changed & (MODE_CHANGED | TYPE_CHANGED)) 360return changed; 361 362/* 363 * Immediately after read-tree or update-index --cacheinfo, 364 * the length field is zero, as we have never even read the 365 * lstat(2) information once, and we cannot trust DATA_CHANGED 366 * returned by ie_match_stat() which in turn was returned by 367 * ce_match_stat_basic() to signal that the filesize of the 368 * blob changed. We have to actually go to the filesystem to 369 * see if the contents match, and if so, should answer "unchanged". 370 * 371 * The logic does not apply to gitlinks, as ce_match_stat_basic() 372 * already has checked the actual HEAD from the filesystem in the 373 * subproject. If ie_match_stat() already said it is different, 374 * then we know it is. 375 */ 376if((changed & DATA_CHANGED) && 377(S_ISGITLINK(ce->ce_mode) || ce->ce_stat_data.sd_size !=0)) 378return changed; 379 380 changed_fs =ce_modified_check_fs(ce, st); 381if(changed_fs) 382return changed | changed_fs; 383return0; 384} 385 386intbase_name_compare(const char*name1,int len1,int mode1, 387const char*name2,int len2,int mode2) 388{ 389unsigned char c1, c2; 390int len = len1 < len2 ? len1 : len2; 391int cmp; 392 393 cmp =memcmp(name1, name2, len); 394if(cmp) 395return cmp; 396 c1 = name1[len]; 397 c2 = name2[len]; 398if(!c1 &&S_ISDIR(mode1)) 399 c1 ='/'; 400if(!c2 &&S_ISDIR(mode2)) 401 c2 ='/'; 402return(c1 < c2) ? -1: (c1 > c2) ?1:0; 403} 404 405/* 406 * df_name_compare() is identical to base_name_compare(), except it 407 * compares conflicting directory/file entries as equal. Note that 408 * while a directory name compares as equal to a regular file, they 409 * then individually compare _differently_ to a filename that has 410 * a dot after the basename (because '\0' < '.' < '/'). 411 * 412 * This is used by routines that want to traverse the git namespace 413 * but then handle conflicting entries together when possible. 414 */ 415intdf_name_compare(const char*name1,int len1,int mode1, 416const char*name2,int len2,int mode2) 417{ 418int len = len1 < len2 ? len1 : len2, cmp; 419unsigned char c1, c2; 420 421 cmp =memcmp(name1, name2, len); 422if(cmp) 423return cmp; 424/* Directories and files compare equal (same length, same name) */ 425if(len1 == len2) 426return0; 427 c1 = name1[len]; 428if(!c1 &&S_ISDIR(mode1)) 429 c1 ='/'; 430 c2 = name2[len]; 431if(!c2 &&S_ISDIR(mode2)) 432 c2 ='/'; 433if(c1 =='/'&& !c2) 434return0; 435if(c2 =='/'&& !c1) 436return0; 437return c1 - c2; 438} 439 440intname_compare(const char*name1,size_t len1,const char*name2,size_t len2) 441{ 442size_t min_len = (len1 < len2) ? len1 : len2; 443int cmp =memcmp(name1, name2, min_len); 444if(cmp) 445return cmp; 446if(len1 < len2) 447return-1; 448if(len1 > len2) 449return1; 450return0; 451} 452 453intcache_name_stage_compare(const char*name1,int len1,int stage1,const char*name2,int len2,int stage2) 454{ 455int cmp; 456 457 cmp =name_compare(name1, len1, name2, len2); 458if(cmp) 459return cmp; 460 461if(stage1 < stage2) 462return-1; 463if(stage1 > stage2) 464return1; 465return0; 466} 467 468static intindex_name_stage_pos(const struct index_state *istate,const char*name,int namelen,int stage) 469{ 470int first, last; 471 472 first =0; 473 last = istate->cache_nr; 474while(last > first) { 475int next = (last + first) >>1; 476struct cache_entry *ce = istate->cache[next]; 477int cmp =cache_name_stage_compare(name, namelen, stage, ce->name,ce_namelen(ce),ce_stage(ce)); 478if(!cmp) 479return next; 480if(cmp <0) { 481 last = next; 482continue; 483} 484 first = next+1; 485} 486return-first-1; 487} 488 489intindex_name_pos(const struct index_state *istate,const char*name,int namelen) 490{ 491returnindex_name_stage_pos(istate, name, namelen,0); 492} 493 494/* Remove entry, return true if there are more entries to go.. */ 495intremove_index_entry_at(struct index_state *istate,int pos) 496{ 497struct cache_entry *ce = istate->cache[pos]; 498 499record_resolve_undo(istate, ce); 500remove_name_hash(istate, ce); 501save_or_free_index_entry(istate, ce); 502 istate->cache_changed |= CE_ENTRY_REMOVED; 503 istate->cache_nr--; 504if(pos >= istate->cache_nr) 505return0; 506memmove(istate->cache + pos, 507 istate->cache + pos +1, 508(istate->cache_nr - pos) *sizeof(struct cache_entry *)); 509return1; 510} 511 512/* 513 * Remove all cache entries marked for removal, that is where 514 * CE_REMOVE is set in ce_flags. This is much more effective than 515 * calling remove_index_entry_at() for each entry to be removed. 516 */ 517voidremove_marked_cache_entries(struct index_state *istate) 518{ 519struct cache_entry **ce_array = istate->cache; 520unsigned int i, j; 521 522for(i = j =0; i < istate->cache_nr; i++) { 523if(ce_array[i]->ce_flags & CE_REMOVE) { 524remove_name_hash(istate, ce_array[i]); 525save_or_free_index_entry(istate, ce_array[i]); 526} 527else 528 ce_array[j++] = ce_array[i]; 529} 530if(j == istate->cache_nr) 531return; 532 istate->cache_changed |= CE_ENTRY_REMOVED; 533 istate->cache_nr = j; 534} 535 536intremove_file_from_index(struct index_state *istate,const char*path) 537{ 538int pos =index_name_pos(istate, path,strlen(path)); 539if(pos <0) 540 pos = -pos-1; 541cache_tree_invalidate_path(istate, path); 542while(pos < istate->cache_nr && !strcmp(istate->cache[pos]->name, path)) 543remove_index_entry_at(istate, pos); 544return0; 545} 546 547static intcompare_name(struct cache_entry *ce,const char*path,int namelen) 548{ 549return namelen !=ce_namelen(ce) ||memcmp(path, ce->name, namelen); 550} 551 552static intindex_name_pos_also_unmerged(struct index_state *istate, 553const char*path,int namelen) 554{ 555int pos =index_name_pos(istate, path, namelen); 556struct cache_entry *ce; 557 558if(pos >=0) 559return pos; 560 561/* maybe unmerged? */ 562 pos = -1- pos; 563if(pos >= istate->cache_nr || 564compare_name((ce = istate->cache[pos]), path, namelen)) 565return-1; 566 567/* order of preference: stage 2, 1, 3 */ 568if(ce_stage(ce) ==1&& pos +1< istate->cache_nr && 569ce_stage((ce = istate->cache[pos +1])) ==2&& 570!compare_name(ce, path, namelen)) 571 pos++; 572return pos; 573} 574 575static intdifferent_name(struct cache_entry *ce,struct cache_entry *alias) 576{ 577int len =ce_namelen(ce); 578returnce_namelen(alias) != len ||memcmp(ce->name, alias->name, len); 579} 580 581/* 582 * If we add a filename that aliases in the cache, we will use the 583 * name that we already have - but we don't want to update the same 584 * alias twice, because that implies that there were actually two 585 * different files with aliasing names! 586 * 587 * So we use the CE_ADDED flag to verify that the alias was an old 588 * one before we accept it as 589 */ 590static struct cache_entry *create_alias_ce(struct index_state *istate, 591struct cache_entry *ce, 592struct cache_entry *alias) 593{ 594int len; 595struct cache_entry *new; 596 597if(alias->ce_flags & CE_ADDED) 598die("Will not add file alias '%s' ('%s' already exists in index)", ce->name, alias->name); 599 600/* Ok, create the new entry using the name of the existing alias */ 601 len =ce_namelen(alias); 602new=xcalloc(1,cache_entry_size(len)); 603memcpy(new->name, alias->name, len); 604copy_cache_entry(new, ce); 605save_or_free_index_entry(istate, ce); 606return new; 607} 608 609voidset_object_name_for_intent_to_add_entry(struct cache_entry *ce) 610{ 611unsigned char sha1[20]; 612if(write_sha1_file("",0, blob_type, sha1)) 613die("cannot create an empty blob in the object database"); 614hashcpy(ce->sha1, sha1); 615} 616 617intadd_to_index(struct index_state *istate,const char*path,struct stat *st,int flags) 618{ 619int size, namelen, was_same; 620 mode_t st_mode = st->st_mode; 621struct cache_entry *ce, *alias; 622unsigned ce_option = CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE|CE_MATCH_RACY_IS_DIRTY; 623int verbose = flags & (ADD_CACHE_VERBOSE | ADD_CACHE_PRETEND); 624int pretend = flags & ADD_CACHE_PRETEND; 625int intent_only = flags & ADD_CACHE_INTENT; 626int add_option = (ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE| 627(intent_only ? ADD_CACHE_NEW_ONLY :0)); 628 629if(!S_ISREG(st_mode) && !S_ISLNK(st_mode) && !S_ISDIR(st_mode)) 630returnerror("%s: can only add regular files, symbolic links or git-directories", path); 631 632 namelen =strlen(path); 633if(S_ISDIR(st_mode)) { 634while(namelen && path[namelen-1] =='/') 635 namelen--; 636} 637 size =cache_entry_size(namelen); 638 ce =xcalloc(1, size); 639memcpy(ce->name, path, namelen); 640 ce->ce_namelen = namelen; 641if(!intent_only) 642fill_stat_cache_info(ce, st); 643else 644 ce->ce_flags |= CE_INTENT_TO_ADD; 645 646if(trust_executable_bit && has_symlinks) 647 ce->ce_mode =create_ce_mode(st_mode); 648else{ 649/* If there is an existing entry, pick the mode bits and type 650 * from it, otherwise assume unexecutable regular file. 651 */ 652struct cache_entry *ent; 653int pos =index_name_pos_also_unmerged(istate, path, namelen); 654 655 ent = (0<= pos) ? istate->cache[pos] : NULL; 656 ce->ce_mode =ce_mode_from_stat(ent, st_mode); 657} 658 659/* When core.ignorecase=true, determine if a directory of the same name but differing 660 * case already exists within the Git repository. If it does, ensure the directory 661 * case of the file being added to the repository matches (is folded into) the existing 662 * entry's directory case. 663 */ 664if(ignore_case) { 665const char*startPtr = ce->name; 666const char*ptr = startPtr; 667while(*ptr) { 668while(*ptr && *ptr !='/') 669++ptr; 670if(*ptr =='/') { 671struct cache_entry *foundce; 672++ptr; 673 foundce =index_dir_exists(istate, ce->name, ptr - ce->name -1); 674if(foundce) { 675memcpy((void*)startPtr, foundce->name + (startPtr - ce->name), ptr - startPtr); 676 startPtr = ptr; 677} 678} 679} 680} 681 682 alias =index_file_exists(istate, ce->name,ce_namelen(ce), ignore_case); 683if(alias && !ce_stage(alias) && !ie_match_stat(istate, alias, st, ce_option)) { 684/* Nothing changed, really */ 685free(ce); 686if(!S_ISGITLINK(alias->ce_mode)) 687ce_mark_uptodate(alias); 688 alias->ce_flags |= CE_ADDED; 689return0; 690} 691if(!intent_only) { 692if(index_path(ce->sha1, path, st, HASH_WRITE_OBJECT)) 693returnerror("unable to index file%s", path); 694}else 695set_object_name_for_intent_to_add_entry(ce); 696 697if(ignore_case && alias &&different_name(ce, alias)) 698 ce =create_alias_ce(istate, ce, alias); 699 ce->ce_flags |= CE_ADDED; 700 701/* It was suspected to be racily clean, but it turns out to be Ok */ 702 was_same = (alias && 703!ce_stage(alias) && 704!hashcmp(alias->sha1, ce->sha1) && 705 ce->ce_mode == alias->ce_mode); 706 707if(pretend) 708; 709else if(add_index_entry(istate, ce, add_option)) 710returnerror("unable to add%sto index",path); 711if(verbose && !was_same) 712printf("add '%s'\n", path); 713return0; 714} 715 716intadd_file_to_index(struct index_state *istate,const char*path,int flags) 717{ 718struct stat st; 719if(lstat(path, &st)) 720die_errno("unable to stat '%s'", path); 721returnadd_to_index(istate, path, &st, flags); 722} 723 724struct cache_entry *make_cache_entry(unsigned int mode, 725const unsigned char*sha1,const char*path,int stage, 726unsigned int refresh_options) 727{ 728int size, len; 729struct cache_entry *ce, *ret; 730 731if(!verify_path(path)) { 732error("Invalid path '%s'", path); 733return NULL; 734} 735 736 len =strlen(path); 737 size =cache_entry_size(len); 738 ce =xcalloc(1, size); 739 740hashcpy(ce->sha1, sha1); 741memcpy(ce->name, path, len); 742 ce->ce_flags =create_ce_flags(stage); 743 ce->ce_namelen = len; 744 ce->ce_mode =create_ce_mode(mode); 745 746 ret =refresh_cache_entry(ce, refresh_options); 747if(!ret) { 748free(ce); 749return NULL; 750}else{ 751return ret; 752} 753} 754 755intce_same_name(const struct cache_entry *a,const struct cache_entry *b) 756{ 757int len =ce_namelen(a); 758returnce_namelen(b) == len && !memcmp(a->name, b->name, len); 759} 760 761/* 762 * We fundamentally don't like some paths: we don't want 763 * dot or dot-dot anywhere, and for obvious reasons don't 764 * want to recurse into ".git" either. 765 * 766 * Also, we don't want double slashes or slashes at the 767 * end that can make pathnames ambiguous. 768 */ 769static intverify_dotfile(const char*rest) 770{ 771/* 772 * The first character was '.', but that 773 * has already been discarded, we now test 774 * the rest. 775 */ 776 777/* "." is not allowed */ 778if(*rest =='\0'||is_dir_sep(*rest)) 779return0; 780 781switch(*rest) { 782/* 783 * ".git" followed by NUL or slash is bad. This 784 * shares the path end test with the ".." case. 785 */ 786case'g': 787case'G': 788if(rest[1] !='i'&& rest[1] !='I') 789break; 790if(rest[2] !='t'&& rest[2] !='T') 791break; 792 rest +=2; 793/* fallthrough */ 794case'.': 795if(rest[1] =='\0'||is_dir_sep(rest[1])) 796return0; 797} 798return1; 799} 800 801intverify_path(const char*path) 802{ 803char c; 804 805if(has_dos_drive_prefix(path)) 806return0; 807 808goto inside; 809for(;;) { 810if(!c) 811return1; 812if(is_dir_sep(c)) { 813inside: 814if(protect_hfs &&is_hfs_dotgit(path)) 815return0; 816if(protect_ntfs &&is_ntfs_dotgit(path)) 817return0; 818 c = *path++; 819if((c =='.'&& !verify_dotfile(path)) || 820is_dir_sep(c) || c =='\0') 821return0; 822} 823 c = *path++; 824} 825} 826 827/* 828 * Do we have another file that has the beginning components being a 829 * proper superset of the name we're trying to add? 830 */ 831static inthas_file_name(struct index_state *istate, 832const struct cache_entry *ce,int pos,int ok_to_replace) 833{ 834int retval =0; 835int len =ce_namelen(ce); 836int stage =ce_stage(ce); 837const char*name = ce->name; 838 839while(pos < istate->cache_nr) { 840struct cache_entry *p = istate->cache[pos++]; 841 842if(len >=ce_namelen(p)) 843break; 844if(memcmp(name, p->name, len)) 845break; 846if(ce_stage(p) != stage) 847continue; 848if(p->name[len] !='/') 849continue; 850if(p->ce_flags & CE_REMOVE) 851continue; 852 retval = -1; 853if(!ok_to_replace) 854break; 855remove_index_entry_at(istate, --pos); 856} 857return retval; 858} 859 860/* 861 * Do we have another file with a pathname that is a proper 862 * subset of the name we're trying to add? 863 */ 864static inthas_dir_name(struct index_state *istate, 865const struct cache_entry *ce,int pos,int ok_to_replace) 866{ 867int retval =0; 868int stage =ce_stage(ce); 869const char*name = ce->name; 870const char*slash = name +ce_namelen(ce); 871 872for(;;) { 873int len; 874 875for(;;) { 876if(*--slash =='/') 877break; 878if(slash <= ce->name) 879return retval; 880} 881 len = slash - name; 882 883 pos =index_name_stage_pos(istate, name, len, stage); 884if(pos >=0) { 885/* 886 * Found one, but not so fast. This could 887 * be a marker that says "I was here, but 888 * I am being removed". Such an entry is 889 * not a part of the resulting tree, and 890 * it is Ok to have a directory at the same 891 * path. 892 */ 893if(!(istate->cache[pos]->ce_flags & CE_REMOVE)) { 894 retval = -1; 895if(!ok_to_replace) 896break; 897remove_index_entry_at(istate, pos); 898continue; 899} 900} 901else 902 pos = -pos-1; 903 904/* 905 * Trivial optimization: if we find an entry that 906 * already matches the sub-directory, then we know 907 * we're ok, and we can exit. 908 */ 909while(pos < istate->cache_nr) { 910struct cache_entry *p = istate->cache[pos]; 911if((ce_namelen(p) <= len) || 912(p->name[len] !='/') || 913memcmp(p->name, name, len)) 914break;/* not our subdirectory */ 915if(ce_stage(p) == stage && !(p->ce_flags & CE_REMOVE)) 916/* 917 * p is at the same stage as our entry, and 918 * is a subdirectory of what we are looking 919 * at, so we cannot have conflicts at our 920 * level or anything shorter. 921 */ 922return retval; 923 pos++; 924} 925} 926return retval; 927} 928 929/* We may be in a situation where we already have path/file and path 930 * is being added, or we already have path and path/file is being 931 * added. Either one would result in a nonsense tree that has path 932 * twice when git-write-tree tries to write it out. Prevent it. 933 * 934 * If ok-to-replace is specified, we remove the conflicting entries 935 * from the cache so the caller should recompute the insert position. 936 * When this happens, we return non-zero. 937 */ 938static intcheck_file_directory_conflict(struct index_state *istate, 939const struct cache_entry *ce, 940int pos,int ok_to_replace) 941{ 942int retval; 943 944/* 945 * When ce is an "I am going away" entry, we allow it to be added 946 */ 947if(ce->ce_flags & CE_REMOVE) 948return0; 949 950/* 951 * We check if the path is a sub-path of a subsequent pathname 952 * first, since removing those will not change the position 953 * in the array. 954 */ 955 retval =has_file_name(istate, ce, pos, ok_to_replace); 956 957/* 958 * Then check if the path might have a clashing sub-directory 959 * before it. 960 */ 961return retval +has_dir_name(istate, ce, pos, ok_to_replace); 962} 963 964static intadd_index_entry_with_check(struct index_state *istate,struct cache_entry *ce,int option) 965{ 966int pos; 967int ok_to_add = option & ADD_CACHE_OK_TO_ADD; 968int ok_to_replace = option & ADD_CACHE_OK_TO_REPLACE; 969int skip_df_check = option & ADD_CACHE_SKIP_DFCHECK; 970int new_only = option & ADD_CACHE_NEW_ONLY; 971 972if(!(option & ADD_CACHE_KEEP_CACHE_TREE)) 973cache_tree_invalidate_path(istate, ce->name); 974 pos =index_name_stage_pos(istate, ce->name,ce_namelen(ce),ce_stage(ce)); 975 976/* existing match? Just replace it. */ 977if(pos >=0) { 978if(!new_only) 979replace_index_entry(istate, pos, ce); 980return0; 981} 982 pos = -pos-1; 983 984/* 985 * Inserting a merged entry ("stage 0") into the index 986 * will always replace all non-merged entries.. 987 */ 988if(pos < istate->cache_nr &&ce_stage(ce) ==0) { 989while(ce_same_name(istate->cache[pos], ce)) { 990 ok_to_add =1; 991if(!remove_index_entry_at(istate, pos)) 992break; 993} 994} 995 996if(!ok_to_add) 997return-1; 998if(!verify_path(ce->name)) 999returnerror("Invalid path '%s'", ce->name);10001001if(!skip_df_check &&1002check_file_directory_conflict(istate, ce, pos, ok_to_replace)) {1003if(!ok_to_replace)1004returnerror("'%s' appears as both a file and as a directory",1005 ce->name);1006 pos =index_name_stage_pos(istate, ce->name,ce_namelen(ce),ce_stage(ce));1007 pos = -pos-1;1008}1009return pos +1;1010}10111012intadd_index_entry(struct index_state *istate,struct cache_entry *ce,int option)1013{1014int pos;10151016if(option & ADD_CACHE_JUST_APPEND)1017 pos = istate->cache_nr;1018else{1019int ret;1020 ret =add_index_entry_with_check(istate, ce, option);1021if(ret <=0)1022return ret;1023 pos = ret -1;1024}10251026/* Make sure the array is big enough .. */1027ALLOC_GROW(istate->cache, istate->cache_nr +1, istate->cache_alloc);10281029/* Add it in.. */1030 istate->cache_nr++;1031if(istate->cache_nr > pos +1)1032memmove(istate->cache + pos +1,1033 istate->cache + pos,1034(istate->cache_nr - pos -1) *sizeof(ce));1035set_index_entry(istate, pos, ce);1036 istate->cache_changed |= CE_ENTRY_ADDED;1037return0;1038}10391040/*1041 * "refresh" does not calculate a new sha1 file or bring the1042 * cache up-to-date for mode/content changes. But what it1043 * _does_ do is to "re-match" the stat information of a file1044 * with the cache, so that you can refresh the cache for a1045 * file that hasn't been changed but where the stat entry is1046 * out of date.1047 *1048 * For example, you'd want to do this after doing a "git-read-tree",1049 * to link up the stat cache details with the proper files.1050 */1051static struct cache_entry *refresh_cache_ent(struct index_state *istate,1052struct cache_entry *ce,1053unsigned int options,int*err,1054int*changed_ret)1055{1056struct stat st;1057struct cache_entry *updated;1058int changed, size;1059int refresh = options & CE_MATCH_REFRESH;1060int ignore_valid = options & CE_MATCH_IGNORE_VALID;1061int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE;1062int ignore_missing = options & CE_MATCH_IGNORE_MISSING;10631064if(!refresh ||ce_uptodate(ce))1065return ce;10661067/*1068 * CE_VALID or CE_SKIP_WORKTREE means the user promised us1069 * that the change to the work tree does not matter and told1070 * us not to worry.1071 */1072if(!ignore_skip_worktree &&ce_skip_worktree(ce)) {1073ce_mark_uptodate(ce);1074return ce;1075}1076if(!ignore_valid && (ce->ce_flags & CE_VALID)) {1077ce_mark_uptodate(ce);1078return ce;1079}10801081if(has_symlink_leading_path(ce->name,ce_namelen(ce))) {1082if(ignore_missing)1083return ce;1084if(err)1085*err = ENOENT;1086return NULL;1087}10881089if(lstat(ce->name, &st) <0) {1090if(ignore_missing && errno == ENOENT)1091return ce;1092if(err)1093*err = errno;1094return NULL;1095}10961097 changed =ie_match_stat(istate, ce, &st, options);1098if(changed_ret)1099*changed_ret = changed;1100if(!changed) {1101/*1102 * The path is unchanged. If we were told to ignore1103 * valid bit, then we did the actual stat check and1104 * found that the entry is unmodified. If the entry1105 * is not marked VALID, this is the place to mark it1106 * valid again, under "assume unchanged" mode.1107 */1108if(ignore_valid && assume_unchanged &&1109!(ce->ce_flags & CE_VALID))1110;/* mark this one VALID again */1111else{1112/*1113 * We do not mark the index itself "modified"1114 * because CE_UPTODATE flag is in-core only;1115 * we are not going to write this change out.1116 */1117if(!S_ISGITLINK(ce->ce_mode))1118ce_mark_uptodate(ce);1119return ce;1120}1121}11221123if(ie_modified(istate, ce, &st, options)) {1124if(err)1125*err = EINVAL;1126return NULL;1127}11281129 size =ce_size(ce);1130 updated =xmalloc(size);1131memcpy(updated, ce, size);1132fill_stat_cache_info(updated, &st);1133/*1134 * If ignore_valid is not set, we should leave CE_VALID bit1135 * alone. Otherwise, paths marked with --no-assume-unchanged1136 * (i.e. things to be edited) will reacquire CE_VALID bit1137 * automatically, which is not really what we want.1138 */1139if(!ignore_valid && assume_unchanged &&1140!(ce->ce_flags & CE_VALID))1141 updated->ce_flags &= ~CE_VALID;11421143/* istate->cache_changed is updated in the caller */1144return updated;1145}11461147static voidshow_file(const char* fmt,const char* name,int in_porcelain,1148int* first,const char*header_msg)1149{1150if(in_porcelain && *first && header_msg) {1151printf("%s\n", header_msg);1152*first =0;1153}1154printf(fmt, name);1155}11561157intrefresh_index(struct index_state *istate,unsigned int flags,1158const struct pathspec *pathspec,1159char*seen,const char*header_msg)1160{1161int i;1162int has_errors =0;1163int really = (flags & REFRESH_REALLY) !=0;1164int allow_unmerged = (flags & REFRESH_UNMERGED) !=0;1165int quiet = (flags & REFRESH_QUIET) !=0;1166int not_new = (flags & REFRESH_IGNORE_MISSING) !=0;1167int ignore_submodules = (flags & REFRESH_IGNORE_SUBMODULES) !=0;1168int first =1;1169int in_porcelain = (flags & REFRESH_IN_PORCELAIN);1170unsigned int options = (CE_MATCH_REFRESH |1171(really ? CE_MATCH_IGNORE_VALID :0) |1172(not_new ? CE_MATCH_IGNORE_MISSING :0));1173const char*modified_fmt;1174const char*deleted_fmt;1175const char*typechange_fmt;1176const char*added_fmt;1177const char*unmerged_fmt;11781179 modified_fmt = (in_porcelain ?"M\t%s\n":"%s: needs update\n");1180 deleted_fmt = (in_porcelain ?"D\t%s\n":"%s: needs update\n");1181 typechange_fmt = (in_porcelain ?"T\t%s\n":"%sneeds update\n");1182 added_fmt = (in_porcelain ?"A\t%s\n":"%sneeds update\n");1183 unmerged_fmt = (in_porcelain ?"U\t%s\n":"%s: needs merge\n");1184for(i =0; i < istate->cache_nr; i++) {1185struct cache_entry *ce, *new;1186int cache_errno =0;1187int changed =0;1188int filtered =0;11891190 ce = istate->cache[i];1191if(ignore_submodules &&S_ISGITLINK(ce->ce_mode))1192continue;11931194if(pathspec && !ce_path_match(ce, pathspec, seen))1195 filtered =1;11961197if(ce_stage(ce)) {1198while((i < istate->cache_nr) &&1199!strcmp(istate->cache[i]->name, ce->name))1200 i++;1201 i--;1202if(allow_unmerged)1203continue;1204if(!filtered)1205show_file(unmerged_fmt, ce->name, in_porcelain,1206&first, header_msg);1207 has_errors =1;1208continue;1209}12101211if(filtered)1212continue;12131214new=refresh_cache_ent(istate, ce, options, &cache_errno, &changed);1215if(new== ce)1216continue;1217if(!new) {1218const char*fmt;12191220if(really && cache_errno == EINVAL) {1221/* If we are doing --really-refresh that1222 * means the index is not valid anymore.1223 */1224 ce->ce_flags &= ~CE_VALID;1225 ce->ce_flags |= CE_UPDATE_IN_BASE;1226 istate->cache_changed |= CE_ENTRY_CHANGED;1227}1228if(quiet)1229continue;12301231if(cache_errno == ENOENT)1232 fmt = deleted_fmt;1233else if(ce->ce_flags & CE_INTENT_TO_ADD)1234 fmt = added_fmt;/* must be before other checks */1235else if(changed & TYPE_CHANGED)1236 fmt = typechange_fmt;1237else1238 fmt = modified_fmt;1239show_file(fmt,1240 ce->name, in_porcelain, &first, header_msg);1241 has_errors =1;1242continue;1243}12441245replace_index_entry(istate, i,new);1246}1247return has_errors;1248}12491250static struct cache_entry *refresh_cache_entry(struct cache_entry *ce,1251unsigned int options)1252{1253returnrefresh_cache_ent(&the_index, ce, options, NULL, NULL);1254}125512561257/*****************************************************************1258 * Index File I/O1259 *****************************************************************/12601261#define INDEX_FORMAT_DEFAULT 312621263static unsigned intget_index_format_default(void)1264{1265char*envversion =getenv("GIT_INDEX_VERSION");1266char*endp;1267int value;1268unsigned int version = INDEX_FORMAT_DEFAULT;12691270if(!envversion) {1271if(!git_config_get_int("index.version", &value))1272 version = value;1273if(version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {1274warning(_("index.version set, but the value is invalid.\n"1275"Using version%i"), INDEX_FORMAT_DEFAULT);1276return INDEX_FORMAT_DEFAULT;1277}1278return version;1279}12801281 version =strtoul(envversion, &endp,10);1282if(*endp ||1283 version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {1284warning(_("GIT_INDEX_VERSION set, but the value is invalid.\n"1285"Using version%i"), INDEX_FORMAT_DEFAULT);1286 version = INDEX_FORMAT_DEFAULT;1287}1288return version;1289}12901291/*1292 * dev/ino/uid/gid/size are also just tracked to the low 32 bits1293 * Again - this is just a (very strong in practice) heuristic that1294 * the inode hasn't changed.1295 *1296 * We save the fields in big-endian order to allow using the1297 * index file over NFS transparently.1298 */1299struct ondisk_cache_entry {1300struct cache_time ctime;1301struct cache_time mtime;1302uint32_t dev;1303uint32_t ino;1304uint32_t mode;1305uint32_t uid;1306uint32_t gid;1307uint32_t size;1308unsigned char sha1[20];1309uint16_t flags;1310char name[FLEX_ARRAY];/* more */1311};13121313/*1314 * This struct is used when CE_EXTENDED bit is 11315 * The struct must match ondisk_cache_entry exactly from1316 * ctime till flags1317 */1318struct ondisk_cache_entry_extended {1319struct cache_time ctime;1320struct cache_time mtime;1321uint32_t dev;1322uint32_t ino;1323uint32_t mode;1324uint32_t uid;1325uint32_t gid;1326uint32_t size;1327unsigned char sha1[20];1328uint16_t flags;1329uint16_t flags2;1330char name[FLEX_ARRAY];/* more */1331};13321333/* These are only used for v3 or lower */1334#define align_flex_name(STRUCT,len) ((offsetof(struct STRUCT,name) + (len) + 8) & ~7)1335#define ondisk_cache_entry_size(len) align_flex_name(ondisk_cache_entry,len)1336#define ondisk_cache_entry_extended_size(len) align_flex_name(ondisk_cache_entry_extended,len)1337#define ondisk_ce_size(ce) (((ce)->ce_flags & CE_EXTENDED) ? \1338 ondisk_cache_entry_extended_size(ce_namelen(ce)) : \1339 ondisk_cache_entry_size(ce_namelen(ce)))13401341static intverify_hdr(struct cache_header *hdr,unsigned long size)1342{1343 git_SHA_CTX c;1344unsigned char sha1[20];1345int hdr_version;13461347if(hdr->hdr_signature !=htonl(CACHE_SIGNATURE))1348returnerror("bad signature");1349 hdr_version =ntohl(hdr->hdr_version);1350if(hdr_version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < hdr_version)1351returnerror("bad index version%d", hdr_version);1352git_SHA1_Init(&c);1353git_SHA1_Update(&c, hdr, size -20);1354git_SHA1_Final(sha1, &c);1355if(hashcmp(sha1, (unsigned char*)hdr + size -20))1356returnerror("bad index file sha1 signature");1357return0;1358}13591360static intread_index_extension(struct index_state *istate,1361const char*ext,void*data,unsigned long sz)1362{1363switch(CACHE_EXT(ext)) {1364case CACHE_EXT_TREE:1365 istate->cache_tree =cache_tree_read(data, sz);1366break;1367case CACHE_EXT_RESOLVE_UNDO:1368 istate->resolve_undo =resolve_undo_read(data, sz);1369break;1370case CACHE_EXT_LINK:1371if(read_link_extension(istate, data, sz))1372return-1;1373break;1374default:1375if(*ext <'A'||'Z'< *ext)1376returnerror("index uses %.4s extension, which we do not understand",1377 ext);1378fprintf(stderr,"ignoring %.4s extension\n", ext);1379break;1380}1381return0;1382}13831384inthold_locked_index(struct lock_file *lk,int die_on_error)1385{1386returnhold_lock_file_for_update(lk,get_index_file(),1387 die_on_error1388? LOCK_DIE_ON_ERROR1389:0);1390}13911392intread_index(struct index_state *istate)1393{1394returnread_index_from(istate,get_index_file());1395}13961397static struct cache_entry *cache_entry_from_ondisk(struct ondisk_cache_entry *ondisk,1398unsigned int flags,1399const char*name,1400size_t len)1401{1402struct cache_entry *ce =xmalloc(cache_entry_size(len));14031404 ce->ce_stat_data.sd_ctime.sec =get_be32(&ondisk->ctime.sec);1405 ce->ce_stat_data.sd_mtime.sec =get_be32(&ondisk->mtime.sec);1406 ce->ce_stat_data.sd_ctime.nsec =get_be32(&ondisk->ctime.nsec);1407 ce->ce_stat_data.sd_mtime.nsec =get_be32(&ondisk->mtime.nsec);1408 ce->ce_stat_data.sd_dev =get_be32(&ondisk->dev);1409 ce->ce_stat_data.sd_ino =get_be32(&ondisk->ino);1410 ce->ce_mode =get_be32(&ondisk->mode);1411 ce->ce_stat_data.sd_uid =get_be32(&ondisk->uid);1412 ce->ce_stat_data.sd_gid =get_be32(&ondisk->gid);1413 ce->ce_stat_data.sd_size =get_be32(&ondisk->size);1414 ce->ce_flags = flags & ~CE_NAMEMASK;1415 ce->ce_namelen = len;1416 ce->index =0;1417hashcpy(ce->sha1, ondisk->sha1);1418memcpy(ce->name, name, len);1419 ce->name[len] ='\0';1420return ce;1421}14221423/*1424 * Adjacent cache entries tend to share the leading paths, so it makes1425 * sense to only store the differences in later entries. In the v41426 * on-disk format of the index, each on-disk cache entry stores the1427 * number of bytes to be stripped from the end of the previous name,1428 * and the bytes to append to the result, to come up with its name.1429 */1430static unsigned longexpand_name_field(struct strbuf *name,const char*cp_)1431{1432const unsigned char*ep, *cp = (const unsigned char*)cp_;1433size_t len =decode_varint(&cp);14341435if(name->len < len)1436die("malformed name field in the index");1437strbuf_remove(name, name->len - len, len);1438for(ep = cp; *ep; ep++)1439;/* find the end */1440strbuf_add(name, cp, ep - cp);1441return(const char*)ep +1- cp_;1442}14431444static struct cache_entry *create_from_disk(struct ondisk_cache_entry *ondisk,1445unsigned long*ent_size,1446struct strbuf *previous_name)1447{1448struct cache_entry *ce;1449size_t len;1450const char*name;1451unsigned int flags;14521453/* On-disk flags are just 16 bits */1454 flags =get_be16(&ondisk->flags);1455 len = flags & CE_NAMEMASK;14561457if(flags & CE_EXTENDED) {1458struct ondisk_cache_entry_extended *ondisk2;1459int extended_flags;1460 ondisk2 = (struct ondisk_cache_entry_extended *)ondisk;1461 extended_flags =get_be16(&ondisk2->flags2) <<16;1462/* We do not yet understand any bit out of CE_EXTENDED_FLAGS */1463if(extended_flags & ~CE_EXTENDED_FLAGS)1464die("Unknown index entry format%08x", extended_flags);1465 flags |= extended_flags;1466 name = ondisk2->name;1467}1468else1469 name = ondisk->name;14701471if(!previous_name) {1472/* v3 and earlier */1473if(len == CE_NAMEMASK)1474 len =strlen(name);1475 ce =cache_entry_from_ondisk(ondisk, flags, name, len);14761477*ent_size =ondisk_ce_size(ce);1478}else{1479unsigned long consumed;1480 consumed =expand_name_field(previous_name, name);1481 ce =cache_entry_from_ondisk(ondisk, flags,1482 previous_name->buf,1483 previous_name->len);14841485*ent_size = (name - ((char*)ondisk)) + consumed;1486}1487return ce;1488}14891490static voidcheck_ce_order(struct cache_entry *ce,struct cache_entry *next_ce)1491{1492int name_compare =strcmp(ce->name, next_ce->name);1493if(0< name_compare)1494die("unordered stage entries in index");1495if(!name_compare) {1496if(!ce_stage(ce))1497die("multiple stage entries for merged file '%s'",1498 ce->name);1499if(ce_stage(ce) >ce_stage(next_ce))1500die("unordered stage entries for '%s'",1501 ce->name);1502}1503}15041505/* remember to discard_cache() before reading a different cache! */1506intdo_read_index(struct index_state *istate,const char*path,int must_exist)1507{1508int fd, i;1509struct stat st;1510unsigned long src_offset;1511struct cache_header *hdr;1512void*mmap;1513size_t mmap_size;1514struct strbuf previous_name_buf = STRBUF_INIT, *previous_name;15151516if(istate->initialized)1517return istate->cache_nr;15181519 istate->timestamp.sec =0;1520 istate->timestamp.nsec =0;1521 fd =open(path, O_RDONLY);1522if(fd <0) {1523if(!must_exist && errno == ENOENT)1524return0;1525die_errno("%s: index file open failed", path);1526}15271528if(fstat(fd, &st))1529die_errno("cannot stat the open index");15301531 mmap_size =xsize_t(st.st_size);1532if(mmap_size <sizeof(struct cache_header) +20)1533die("index file smaller than expected");15341535 mmap =xmmap(NULL, mmap_size, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd,0);1536if(mmap == MAP_FAILED)1537die_errno("unable to map index file");1538close(fd);15391540 hdr = mmap;1541if(verify_hdr(hdr, mmap_size) <0)1542goto unmap;15431544hashcpy(istate->sha1, (const unsigned char*)hdr + mmap_size -20);1545 istate->version =ntohl(hdr->hdr_version);1546 istate->cache_nr =ntohl(hdr->hdr_entries);1547 istate->cache_alloc =alloc_nr(istate->cache_nr);1548 istate->cache =xcalloc(istate->cache_alloc,sizeof(*istate->cache));1549 istate->initialized =1;15501551if(istate->version ==4)1552 previous_name = &previous_name_buf;1553else1554 previous_name = NULL;15551556 src_offset =sizeof(*hdr);1557for(i =0; i < istate->cache_nr; i++) {1558struct ondisk_cache_entry *disk_ce;1559struct cache_entry *ce;1560unsigned long consumed;15611562 disk_ce = (struct ondisk_cache_entry *)((char*)mmap + src_offset);1563 ce =create_from_disk(disk_ce, &consumed, previous_name);1564set_index_entry(istate, i, ce);15651566if(i >0)1567check_ce_order(istate->cache[i -1], ce);15681569 src_offset += consumed;1570}1571strbuf_release(&previous_name_buf);1572 istate->timestamp.sec = st.st_mtime;1573 istate->timestamp.nsec =ST_MTIME_NSEC(st);15741575while(src_offset <= mmap_size -20-8) {1576/* After an array of active_nr index entries,1577 * there can be arbitrary number of extended1578 * sections, each of which is prefixed with1579 * extension name (4-byte) and section length1580 * in 4-byte network byte order.1581 */1582uint32_t extsize;1583memcpy(&extsize, (char*)mmap + src_offset +4,4);1584 extsize =ntohl(extsize);1585if(read_index_extension(istate,1586(const char*) mmap + src_offset,1587(char*) mmap + src_offset +8,1588 extsize) <0)1589goto unmap;1590 src_offset +=8;1591 src_offset += extsize;1592}1593munmap(mmap, mmap_size);1594return istate->cache_nr;15951596unmap:1597munmap(mmap, mmap_size);1598die("index file corrupt");1599}16001601intread_index_from(struct index_state *istate,const char*path)1602{1603struct split_index *split_index;1604int ret;16051606/* istate->initialized covers both .git/index and .git/sharedindex.xxx */1607if(istate->initialized)1608return istate->cache_nr;16091610 ret =do_read_index(istate, path,0);1611 split_index = istate->split_index;1612if(!split_index)1613return ret;16141615if(is_null_sha1(split_index->base_sha1))1616return ret;16171618if(split_index->base)1619discard_index(split_index->base);1620else1621 split_index->base =xcalloc(1,sizeof(*split_index->base));1622 ret =do_read_index(split_index->base,1623git_path("sharedindex.%s",1624sha1_to_hex(split_index->base_sha1)),1);1625if(hashcmp(split_index->base_sha1, split_index->base->sha1))1626die("broken index, expect%sin%s, got%s",1627sha1_to_hex(split_index->base_sha1),1628git_path("sharedindex.%s",1629sha1_to_hex(split_index->base_sha1)),1630sha1_to_hex(split_index->base->sha1));1631merge_base_index(istate);1632return ret;1633}16341635intis_index_unborn(struct index_state *istate)1636{1637return(!istate->cache_nr && !istate->timestamp.sec);1638}16391640intdiscard_index(struct index_state *istate)1641{1642int i;16431644for(i =0; i < istate->cache_nr; i++) {1645if(istate->cache[i]->index &&1646 istate->split_index &&1647 istate->split_index->base &&1648 istate->cache[i]->index <= istate->split_index->base->cache_nr &&1649 istate->cache[i] == istate->split_index->base->cache[istate->cache[i]->index -1])1650continue;1651free(istate->cache[i]);1652}1653resolve_undo_clear_index(istate);1654 istate->cache_nr =0;1655 istate->cache_changed =0;1656 istate->timestamp.sec =0;1657 istate->timestamp.nsec =0;1658free_name_hash(istate);1659cache_tree_free(&(istate->cache_tree));1660 istate->initialized =0;1661free(istate->cache);1662 istate->cache = NULL;1663 istate->cache_alloc =0;1664discard_split_index(istate);1665return0;1666}16671668intunmerged_index(const struct index_state *istate)1669{1670int i;1671for(i =0; i < istate->cache_nr; i++) {1672if(ce_stage(istate->cache[i]))1673return1;1674}1675return0;1676}16771678#define WRITE_BUFFER_SIZE 81921679static unsigned char write_buffer[WRITE_BUFFER_SIZE];1680static unsigned long write_buffer_len;16811682static intce_write_flush(git_SHA_CTX *context,int fd)1683{1684unsigned int buffered = write_buffer_len;1685if(buffered) {1686git_SHA1_Update(context, write_buffer, buffered);1687if(write_in_full(fd, write_buffer, buffered) != buffered)1688return-1;1689 write_buffer_len =0;1690}1691return0;1692}16931694static intce_write(git_SHA_CTX *context,int fd,void*data,unsigned int len)1695{1696while(len) {1697unsigned int buffered = write_buffer_len;1698unsigned int partial = WRITE_BUFFER_SIZE - buffered;1699if(partial > len)1700 partial = len;1701memcpy(write_buffer + buffered, data, partial);1702 buffered += partial;1703if(buffered == WRITE_BUFFER_SIZE) {1704 write_buffer_len = buffered;1705if(ce_write_flush(context, fd))1706return-1;1707 buffered =0;1708}1709 write_buffer_len = buffered;1710 len -= partial;1711 data = (char*) data + partial;1712}1713return0;1714}17151716static intwrite_index_ext_header(git_SHA_CTX *context,int fd,1717unsigned int ext,unsigned int sz)1718{1719 ext =htonl(ext);1720 sz =htonl(sz);1721return((ce_write(context, fd, &ext,4) <0) ||1722(ce_write(context, fd, &sz,4) <0)) ? -1:0;1723}17241725static intce_flush(git_SHA_CTX *context,int fd,unsigned char*sha1)1726{1727unsigned int left = write_buffer_len;17281729if(left) {1730 write_buffer_len =0;1731git_SHA1_Update(context, write_buffer, left);1732}17331734/* Flush first if not enough space for SHA1 signature */1735if(left +20> WRITE_BUFFER_SIZE) {1736if(write_in_full(fd, write_buffer, left) != left)1737return-1;1738 left =0;1739}17401741/* Append the SHA1 signature at the end */1742git_SHA1_Final(write_buffer + left, context);1743hashcpy(sha1, write_buffer + left);1744 left +=20;1745return(write_in_full(fd, write_buffer, left) != left) ? -1:0;1746}17471748static voidce_smudge_racily_clean_entry(struct cache_entry *ce)1749{1750/*1751 * The only thing we care about in this function is to smudge the1752 * falsely clean entry due to touch-update-touch race, so we leave1753 * everything else as they are. We are called for entries whose1754 * ce_stat_data.sd_mtime match the index file mtime.1755 *1756 * Note that this actually does not do much for gitlinks, for1757 * which ce_match_stat_basic() always goes to the actual1758 * contents. The caller checks with is_racy_timestamp() which1759 * always says "no" for gitlinks, so we are not called for them ;-)1760 */1761struct stat st;17621763if(lstat(ce->name, &st) <0)1764return;1765if(ce_match_stat_basic(ce, &st))1766return;1767if(ce_modified_check_fs(ce, &st)) {1768/* This is "racily clean"; smudge it. Note that this1769 * is a tricky code. At first glance, it may appear1770 * that it can break with this sequence:1771 *1772 * $ echo xyzzy >frotz1773 * $ git-update-index --add frotz1774 * $ : >frotz1775 * $ sleep 31776 * $ echo filfre >nitfol1777 * $ git-update-index --add nitfol1778 *1779 * but it does not. When the second update-index runs,1780 * it notices that the entry "frotz" has the same timestamp1781 * as index, and if we were to smudge it by resetting its1782 * size to zero here, then the object name recorded1783 * in index is the 6-byte file but the cached stat information1784 * becomes zero --- which would then match what we would1785 * obtain from the filesystem next time we stat("frotz").1786 *1787 * However, the second update-index, before calling1788 * this function, notices that the cached size is 61789 * bytes and what is on the filesystem is an empty1790 * file, and never calls us, so the cached size information1791 * for "frotz" stays 6 which does not match the filesystem.1792 */1793 ce->ce_stat_data.sd_size =0;1794}1795}17961797/* Copy miscellaneous fields but not the name */1798static char*copy_cache_entry_to_ondisk(struct ondisk_cache_entry *ondisk,1799struct cache_entry *ce)1800{1801short flags;18021803 ondisk->ctime.sec =htonl(ce->ce_stat_data.sd_ctime.sec);1804 ondisk->mtime.sec =htonl(ce->ce_stat_data.sd_mtime.sec);1805 ondisk->ctime.nsec =htonl(ce->ce_stat_data.sd_ctime.nsec);1806 ondisk->mtime.nsec =htonl(ce->ce_stat_data.sd_mtime.nsec);1807 ondisk->dev =htonl(ce->ce_stat_data.sd_dev);1808 ondisk->ino =htonl(ce->ce_stat_data.sd_ino);1809 ondisk->mode =htonl(ce->ce_mode);1810 ondisk->uid =htonl(ce->ce_stat_data.sd_uid);1811 ondisk->gid =htonl(ce->ce_stat_data.sd_gid);1812 ondisk->size =htonl(ce->ce_stat_data.sd_size);1813hashcpy(ondisk->sha1, ce->sha1);18141815 flags = ce->ce_flags & ~CE_NAMEMASK;1816 flags |= (ce_namelen(ce) >= CE_NAMEMASK ? CE_NAMEMASK :ce_namelen(ce));1817 ondisk->flags =htons(flags);1818if(ce->ce_flags & CE_EXTENDED) {1819struct ondisk_cache_entry_extended *ondisk2;1820 ondisk2 = (struct ondisk_cache_entry_extended *)ondisk;1821 ondisk2->flags2 =htons((ce->ce_flags & CE_EXTENDED_FLAGS) >>16);1822return ondisk2->name;1823}1824else{1825return ondisk->name;1826}1827}18281829static intce_write_entry(git_SHA_CTX *c,int fd,struct cache_entry *ce,1830struct strbuf *previous_name)1831{1832int size;1833struct ondisk_cache_entry *ondisk;1834int saved_namelen = saved_namelen;/* compiler workaround */1835char*name;1836int result;18371838if(ce->ce_flags & CE_STRIP_NAME) {1839 saved_namelen =ce_namelen(ce);1840 ce->ce_namelen =0;1841}18421843if(!previous_name) {1844 size =ondisk_ce_size(ce);1845 ondisk =xcalloc(1, size);1846 name =copy_cache_entry_to_ondisk(ondisk, ce);1847memcpy(name, ce->name,ce_namelen(ce));1848}else{1849int common, to_remove, prefix_size;1850unsigned char to_remove_vi[16];1851for(common =0;1852(ce->name[common] &&1853 common < previous_name->len &&1854 ce->name[common] == previous_name->buf[common]);1855 common++)1856;/* still matching */1857 to_remove = previous_name->len - common;1858 prefix_size =encode_varint(to_remove, to_remove_vi);18591860if(ce->ce_flags & CE_EXTENDED)1861 size =offsetof(struct ondisk_cache_entry_extended, name);1862else1863 size =offsetof(struct ondisk_cache_entry, name);1864 size += prefix_size + (ce_namelen(ce) - common +1);18651866 ondisk =xcalloc(1, size);1867 name =copy_cache_entry_to_ondisk(ondisk, ce);1868memcpy(name, to_remove_vi, prefix_size);1869memcpy(name + prefix_size, ce->name + common,ce_namelen(ce) - common);18701871strbuf_splice(previous_name, common, to_remove,1872 ce->name + common,ce_namelen(ce) - common);1873}1874if(ce->ce_flags & CE_STRIP_NAME) {1875 ce->ce_namelen = saved_namelen;1876 ce->ce_flags &= ~CE_STRIP_NAME;1877}18781879 result =ce_write(c, fd, ondisk, size);1880free(ondisk);1881return result;1882}18831884/*1885 * This function verifies if index_state has the correct sha1 of the1886 * index file. Don't die if we have any other failure, just return 0.1887 */1888static intverify_index_from(const struct index_state *istate,const char*path)1889{1890int fd;1891 ssize_t n;1892struct stat st;1893unsigned char sha1[20];18941895if(!istate->initialized)1896return0;18971898 fd =open(path, O_RDONLY);1899if(fd <0)1900return0;19011902if(fstat(fd, &st))1903goto out;19041905if(st.st_size <sizeof(struct cache_header) +20)1906goto out;19071908 n =pread_in_full(fd, sha1,20, st.st_size -20);1909if(n !=20)1910goto out;19111912if(hashcmp(istate->sha1, sha1))1913goto out;19141915close(fd);1916return1;19171918out:1919close(fd);1920return0;1921}19221923static intverify_index(const struct index_state *istate)1924{1925returnverify_index_from(istate,get_index_file());1926}19271928static inthas_racy_timestamp(struct index_state *istate)1929{1930int entries = istate->cache_nr;1931int i;19321933for(i =0; i < entries; i++) {1934struct cache_entry *ce = istate->cache[i];1935if(is_racy_timestamp(istate, ce))1936return1;1937}1938return0;1939}19401941/*1942 * Opportunistically update the index but do not complain if we can't1943 */1944voidupdate_index_if_able(struct index_state *istate,struct lock_file *lockfile)1945{1946if((istate->cache_changed ||has_racy_timestamp(istate)) &&1947verify_index(istate) &&1948write_locked_index(istate, lockfile, COMMIT_LOCK))1949rollback_lock_file(lockfile);1950}19511952static intdo_write_index(struct index_state *istate,int newfd,1953int strip_extensions)1954{1955 git_SHA_CTX c;1956struct cache_header hdr;1957int i, err, removed, extended, hdr_version;1958struct cache_entry **cache = istate->cache;1959int entries = istate->cache_nr;1960struct stat st;1961struct strbuf previous_name_buf = STRBUF_INIT, *previous_name;19621963for(i = removed = extended =0; i < entries; i++) {1964if(cache[i]->ce_flags & CE_REMOVE)1965 removed++;19661967/* reduce extended entries if possible */1968 cache[i]->ce_flags &= ~CE_EXTENDED;1969if(cache[i]->ce_flags & CE_EXTENDED_FLAGS) {1970 extended++;1971 cache[i]->ce_flags |= CE_EXTENDED;1972}1973}19741975if(!istate->version) {1976 istate->version =get_index_format_default();1977if(getenv("GIT_TEST_SPLIT_INDEX"))1978init_split_index(istate);1979}19801981/* demote version 3 to version 2 when the latter suffices */1982if(istate->version ==3|| istate->version ==2)1983 istate->version = extended ?3:2;19841985 hdr_version = istate->version;19861987 hdr.hdr_signature =htonl(CACHE_SIGNATURE);1988 hdr.hdr_version =htonl(hdr_version);1989 hdr.hdr_entries =htonl(entries - removed);19901991git_SHA1_Init(&c);1992if(ce_write(&c, newfd, &hdr,sizeof(hdr)) <0)1993return-1;19941995 previous_name = (hdr_version ==4) ? &previous_name_buf : NULL;1996for(i =0; i < entries; i++) {1997struct cache_entry *ce = cache[i];1998if(ce->ce_flags & CE_REMOVE)1999continue;2000if(!ce_uptodate(ce) &&is_racy_timestamp(istate, ce))2001ce_smudge_racily_clean_entry(ce);2002if(is_null_sha1(ce->sha1)) {2003static const char msg[] ="cache entry has null sha1:%s";2004static int allow = -1;20052006if(allow <0)2007 allow =git_env_bool("GIT_ALLOW_NULL_SHA1",0);2008if(allow)2009warning(msg, ce->name);2010else2011returnerror(msg, ce->name);2012}2013if(ce_write_entry(&c, newfd, ce, previous_name) <0)2014return-1;2015}2016strbuf_release(&previous_name_buf);20172018/* Write extension data here */2019if(!strip_extensions && istate->split_index) {2020struct strbuf sb = STRBUF_INIT;20212022 err =write_link_extension(&sb, istate) <0||2023write_index_ext_header(&c, newfd, CACHE_EXT_LINK,2024 sb.len) <0||2025ce_write(&c, newfd, sb.buf, sb.len) <0;2026strbuf_release(&sb);2027if(err)2028return-1;2029}2030if(!strip_extensions && istate->cache_tree) {2031struct strbuf sb = STRBUF_INIT;20322033cache_tree_write(&sb, istate->cache_tree);2034 err =write_index_ext_header(&c, newfd, CACHE_EXT_TREE, sb.len) <02035||ce_write(&c, newfd, sb.buf, sb.len) <0;2036strbuf_release(&sb);2037if(err)2038return-1;2039}2040if(!strip_extensions && istate->resolve_undo) {2041struct strbuf sb = STRBUF_INIT;20422043resolve_undo_write(&sb, istate->resolve_undo);2044 err =write_index_ext_header(&c, newfd, CACHE_EXT_RESOLVE_UNDO,2045 sb.len) <02046||ce_write(&c, newfd, sb.buf, sb.len) <0;2047strbuf_release(&sb);2048if(err)2049return-1;2050}2051if(!strip_extensions && istate->untracked) {2052struct strbuf sb = STRBUF_INIT;20532054write_untracked_extension(&sb, istate->untracked);2055 err =write_index_ext_header(&c, newfd, CACHE_EXT_UNTRACKED,2056 sb.len) <0||2057ce_write(&c, newfd, sb.buf, sb.len) <0;2058strbuf_release(&sb);2059if(err)2060return-1;2061}20622063if(ce_flush(&c, newfd, istate->sha1) ||fstat(newfd, &st))2064return-1;2065 istate->timestamp.sec = (unsigned int)st.st_mtime;2066 istate->timestamp.nsec =ST_MTIME_NSEC(st);2067return0;2068}20692070voidset_alternate_index_output(const char*name)2071{2072 alternate_index_output = name;2073}20742075static intcommit_locked_index(struct lock_file *lk)2076{2077if(alternate_index_output)2078returncommit_lock_file_to(lk, alternate_index_output);2079else2080returncommit_lock_file(lk);2081}20822083static intdo_write_locked_index(struct index_state *istate,struct lock_file *lock,2084unsigned flags)2085{2086int ret =do_write_index(istate, lock->fd,0);2087if(ret)2088return ret;2089assert((flags & (COMMIT_LOCK | CLOSE_LOCK)) !=2090(COMMIT_LOCK | CLOSE_LOCK));2091if(flags & COMMIT_LOCK)2092returncommit_locked_index(lock);2093else if(flags & CLOSE_LOCK)2094returnclose_lock_file(lock);2095else2096return ret;2097}20982099static intwrite_split_index(struct index_state *istate,2100struct lock_file *lock,2101unsigned flags)2102{2103int ret;2104prepare_to_write_split_index(istate);2105 ret =do_write_locked_index(istate, lock, flags);2106finish_writing_split_index(istate);2107return ret;2108}21092110static char*temporary_sharedindex;21112112static voidremove_temporary_sharedindex(void)2113{2114if(temporary_sharedindex) {2115unlink_or_warn(temporary_sharedindex);2116free(temporary_sharedindex);2117 temporary_sharedindex = NULL;2118}2119}21202121static voidremove_temporary_sharedindex_on_signal(int signo)2122{2123remove_temporary_sharedindex();2124sigchain_pop(signo);2125raise(signo);2126}21272128static intwrite_shared_index(struct index_state *istate,2129struct lock_file *lock,unsigned flags)2130{2131struct split_index *si = istate->split_index;2132static int installed_handler;2133int fd, ret;21342135 temporary_sharedindex =git_pathdup("sharedindex_XXXXXX");2136 fd =mkstemp(temporary_sharedindex);2137if(fd <0) {2138free(temporary_sharedindex);2139 temporary_sharedindex = NULL;2140hashclr(si->base_sha1);2141returndo_write_locked_index(istate, lock, flags);2142}2143if(!installed_handler) {2144atexit(remove_temporary_sharedindex);2145sigchain_push_common(remove_temporary_sharedindex_on_signal);2146}2147move_cache_to_base_index(istate);2148 ret =do_write_index(si->base, fd,1);2149close(fd);2150if(ret) {2151remove_temporary_sharedindex();2152return ret;2153}2154 ret =rename(temporary_sharedindex,2155git_path("sharedindex.%s",sha1_to_hex(si->base->sha1)));2156free(temporary_sharedindex);2157 temporary_sharedindex = NULL;2158if(!ret)2159hashcpy(si->base_sha1, si->base->sha1);2160return ret;2161}21622163intwrite_locked_index(struct index_state *istate,struct lock_file *lock,2164unsigned flags)2165{2166struct split_index *si = istate->split_index;21672168if(!si || alternate_index_output ||2169(istate->cache_changed & ~EXTMASK)) {2170if(si)2171hashclr(si->base_sha1);2172returndo_write_locked_index(istate, lock, flags);2173}21742175if(getenv("GIT_TEST_SPLIT_INDEX")) {2176int v = si->base_sha1[0];2177if((v &15) <6)2178 istate->cache_changed |= SPLIT_INDEX_ORDERED;2179}2180if(istate->cache_changed & SPLIT_INDEX_ORDERED) {2181int ret =write_shared_index(istate, lock, flags);2182if(ret)2183return ret;2184}21852186returnwrite_split_index(istate, lock, flags);2187}21882189/*2190 * Read the index file that is potentially unmerged into given2191 * index_state, dropping any unmerged entries. Returns true if2192 * the index is unmerged. Callers who want to refuse to work2193 * from an unmerged state can call this and check its return value,2194 * instead of calling read_cache().2195 */2196intread_index_unmerged(struct index_state *istate)2197{2198int i;2199int unmerged =0;22002201read_index(istate);2202for(i =0; i < istate->cache_nr; i++) {2203struct cache_entry *ce = istate->cache[i];2204struct cache_entry *new_ce;2205int size, len;22062207if(!ce_stage(ce))2208continue;2209 unmerged =1;2210 len =ce_namelen(ce);2211 size =cache_entry_size(len);2212 new_ce =xcalloc(1, size);2213memcpy(new_ce->name, ce->name, len);2214 new_ce->ce_flags =create_ce_flags(0) | CE_CONFLICTED;2215 new_ce->ce_namelen = len;2216 new_ce->ce_mode = ce->ce_mode;2217if(add_index_entry(istate, new_ce,0))2218returnerror("%s: cannot drop to stage #0",2219 new_ce->name);2220}2221return unmerged;2222}22232224/*2225 * Returns 1 if the path is an "other" path with respect to2226 * the index; that is, the path is not mentioned in the index at all,2227 * either as a file, a directory with some files in the index,2228 * or as an unmerged entry.2229 *2230 * We helpfully remove a trailing "/" from directories so that2231 * the output of read_directory can be used as-is.2232 */2233intindex_name_is_other(const struct index_state *istate,const char*name,2234int namelen)2235{2236int pos;2237if(namelen && name[namelen -1] =='/')2238 namelen--;2239 pos =index_name_pos(istate, name, namelen);2240if(0<= pos)2241return0;/* exact match */2242 pos = -pos -1;2243if(pos < istate->cache_nr) {2244struct cache_entry *ce = istate->cache[pos];2245if(ce_namelen(ce) == namelen &&2246!memcmp(ce->name, name, namelen))2247return0;/* Yup, this one exists unmerged */2248}2249return1;2250}22512252void*read_blob_data_from_index(struct index_state *istate,const char*path,unsigned long*size)2253{2254int pos, len;2255unsigned long sz;2256enum object_type type;2257void*data;22582259 len =strlen(path);2260 pos =index_name_pos(istate, path, len);2261if(pos <0) {2262/*2263 * We might be in the middle of a merge, in which2264 * case we would read stage #2 (ours).2265 */2266int i;2267for(i = -pos -1;2268(pos <0&& i < istate->cache_nr &&2269!strcmp(istate->cache[i]->name, path));2270 i++)2271if(ce_stage(istate->cache[i]) ==2)2272 pos = i;2273}2274if(pos <0)2275return NULL;2276 data =read_sha1_file(istate->cache[pos]->sha1, &type, &sz);2277if(!data || type != OBJ_BLOB) {2278free(data);2279return NULL;2280}2281if(size)2282*size = sz;2283return data;2284}22852286voidstat_validity_clear(struct stat_validity *sv)2287{2288free(sv->sd);2289 sv->sd = NULL;2290}22912292intstat_validity_check(struct stat_validity *sv,const char*path)2293{2294struct stat st;22952296if(stat(path, &st) <0)2297return sv->sd == NULL;2298if(!sv->sd)2299return0;2300returnS_ISREG(st.st_mode) && !match_stat_data(sv->sd, &st);2301}23022303voidstat_validity_update(struct stat_validity *sv,int fd)2304{2305struct stat st;23062307if(fstat(fd, &st) <0|| !S_ISREG(st.st_mode))2308stat_validity_clear(sv);2309else{2310if(!sv->sd)2311 sv->sd =xcalloc(1,sizeof(struct stat_data));2312fill_stat_data(sv->sd, &st);2313}2314}