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"tempfile.h" 9#include"lockfile.h" 10#include"cache-tree.h" 11#include"refs.h" 12#include"dir.h" 13#include"tree.h" 14#include"commit.h" 15#include"blob.h" 16#include"resolve-undo.h" 17#include"strbuf.h" 18#include"varint.h" 19#include"split-index.h" 20#include"utf8.h" 21 22/* Mask for the name length in ce_flags in the on-disk index */ 23 24#define CE_NAMEMASK (0x0fff) 25 26/* Index extensions. 27 * 28 * The first letter should be 'A'..'Z' for extensions that are not 29 * necessary for a correct operation (i.e. optimization data). 30 * When new extensions are added that _needs_ to be understood in 31 * order to correctly interpret the index file, pick character that 32 * is outside the range, to cause the reader to abort. 33 */ 34 35#define CACHE_EXT(s) ( (s[0]<<24)|(s[1]<<16)|(s[2]<<8)|(s[3]) ) 36#define CACHE_EXT_TREE 0x54524545/* "TREE" */ 37#define CACHE_EXT_RESOLVE_UNDO 0x52455543/* "REUC" */ 38#define CACHE_EXT_LINK 0x6c696e6b/* "link" */ 39#define CACHE_EXT_UNTRACKED 0x554E5452/* "UNTR" */ 40 41/* changes that can be kept in $GIT_DIR/index (basically all extensions) */ 42#define EXTMASK (RESOLVE_UNDO_CHANGED | CACHE_TREE_CHANGED | \ 43 CE_ENTRY_ADDED | CE_ENTRY_REMOVED | CE_ENTRY_CHANGED | \ 44 SPLIT_INDEX_ORDERED | UNTRACKED_CHANGED) 45 46struct index_state the_index; 47static const char*alternate_index_output; 48 49static voidset_index_entry(struct index_state *istate,int nr,struct cache_entry *ce) 50{ 51 istate->cache[nr] = ce; 52add_name_hash(istate, ce); 53} 54 55static voidreplace_index_entry(struct index_state *istate,int nr,struct cache_entry *ce) 56{ 57struct cache_entry *old = istate->cache[nr]; 58 59replace_index_entry_in_base(istate, old, ce); 60remove_name_hash(istate, old); 61free(old); 62set_index_entry(istate, nr, ce); 63 ce->ce_flags |= CE_UPDATE_IN_BASE; 64 istate->cache_changed |= CE_ENTRY_CHANGED; 65} 66 67voidrename_index_entry_at(struct index_state *istate,int nr,const char*new_name) 68{ 69struct cache_entry *old = istate->cache[nr], *new; 70int namelen =strlen(new_name); 71 72new=xmalloc(cache_entry_size(namelen)); 73copy_cache_entry(new, old); 74new->ce_flags &= ~CE_HASHED; 75new->ce_namelen = namelen; 76new->index =0; 77memcpy(new->name, new_name, namelen +1); 78 79cache_tree_invalidate_path(istate, old->name); 80untracked_cache_remove_from_index(istate, old->name); 81remove_index_entry_at(istate, nr); 82add_index_entry(istate,new, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE); 83} 84 85voidfill_stat_data(struct stat_data *sd,struct stat *st) 86{ 87 sd->sd_ctime.sec = (unsigned int)st->st_ctime; 88 sd->sd_mtime.sec = (unsigned int)st->st_mtime; 89 sd->sd_ctime.nsec =ST_CTIME_NSEC(*st); 90 sd->sd_mtime.nsec =ST_MTIME_NSEC(*st); 91 sd->sd_dev = st->st_dev; 92 sd->sd_ino = st->st_ino; 93 sd->sd_uid = st->st_uid; 94 sd->sd_gid = st->st_gid; 95 sd->sd_size = st->st_size; 96} 97 98intmatch_stat_data(const struct stat_data *sd,struct stat *st) 99{ 100int changed =0; 101 102if(sd->sd_mtime.sec != (unsigned int)st->st_mtime) 103 changed |= MTIME_CHANGED; 104if(trust_ctime && check_stat && 105 sd->sd_ctime.sec != (unsigned int)st->st_ctime) 106 changed |= CTIME_CHANGED; 107 108#ifdef USE_NSEC 109if(check_stat && sd->sd_mtime.nsec !=ST_MTIME_NSEC(*st)) 110 changed |= MTIME_CHANGED; 111if(trust_ctime && check_stat && 112 sd->sd_ctime.nsec !=ST_CTIME_NSEC(*st)) 113 changed |= CTIME_CHANGED; 114#endif 115 116if(check_stat) { 117if(sd->sd_uid != (unsigned int) st->st_uid || 118 sd->sd_gid != (unsigned int) st->st_gid) 119 changed |= OWNER_CHANGED; 120if(sd->sd_ino != (unsigned int) st->st_ino) 121 changed |= INODE_CHANGED; 122} 123 124#ifdef USE_STDEV 125/* 126 * st_dev breaks on network filesystems where different 127 * clients will have different views of what "device" 128 * the filesystem is on 129 */ 130if(check_stat && sd->sd_dev != (unsigned int) st->st_dev) 131 changed |= INODE_CHANGED; 132#endif 133 134if(sd->sd_size != (unsigned int) st->st_size) 135 changed |= DATA_CHANGED; 136 137return changed; 138} 139 140/* 141 * This only updates the "non-critical" parts of the directory 142 * cache, ie the parts that aren't tracked by GIT, and only used 143 * to validate the cache. 144 */ 145voidfill_stat_cache_info(struct cache_entry *ce,struct stat *st) 146{ 147fill_stat_data(&ce->ce_stat_data, st); 148 149if(assume_unchanged) 150 ce->ce_flags |= CE_VALID; 151 152if(S_ISREG(st->st_mode)) 153ce_mark_uptodate(ce); 154} 155 156static intce_compare_data(const struct cache_entry *ce,struct stat *st) 157{ 158int match = -1; 159int fd =open(ce->name, O_RDONLY); 160 161if(fd >=0) { 162unsigned char sha1[20]; 163if(!index_fd(sha1, fd, st, OBJ_BLOB, ce->name,0)) 164 match =hashcmp(sha1, ce->sha1); 165/* index_fd() closed the file descriptor already */ 166} 167return match; 168} 169 170static intce_compare_link(const struct cache_entry *ce,size_t expected_size) 171{ 172int match = -1; 173void*buffer; 174unsigned long size; 175enum object_type type; 176struct strbuf sb = STRBUF_INIT; 177 178if(strbuf_readlink(&sb, ce->name, expected_size)) 179return-1; 180 181 buffer =read_sha1_file(ce->sha1, &type, &size); 182if(buffer) { 183if(size == sb.len) 184 match =memcmp(buffer, sb.buf, size); 185free(buffer); 186} 187strbuf_release(&sb); 188return match; 189} 190 191static intce_compare_gitlink(const struct cache_entry *ce) 192{ 193unsigned char sha1[20]; 194 195/* 196 * We don't actually require that the .git directory 197 * under GITLINK directory be a valid git directory. It 198 * might even be missing (in case nobody populated that 199 * sub-project). 200 * 201 * If so, we consider it always to match. 202 */ 203if(resolve_gitlink_ref(ce->name,"HEAD", sha1) <0) 204return0; 205returnhashcmp(sha1, ce->sha1); 206} 207 208static intce_modified_check_fs(const struct cache_entry *ce,struct stat *st) 209{ 210switch(st->st_mode & S_IFMT) { 211case S_IFREG: 212if(ce_compare_data(ce, st)) 213return DATA_CHANGED; 214break; 215case S_IFLNK: 216if(ce_compare_link(ce,xsize_t(st->st_size))) 217return DATA_CHANGED; 218break; 219case S_IFDIR: 220if(S_ISGITLINK(ce->ce_mode)) 221returnce_compare_gitlink(ce) ? DATA_CHANGED :0; 222default: 223return TYPE_CHANGED; 224} 225return0; 226} 227 228static intce_match_stat_basic(const struct cache_entry *ce,struct stat *st) 229{ 230unsigned int changed =0; 231 232if(ce->ce_flags & CE_REMOVE) 233return MODE_CHANGED | DATA_CHANGED | TYPE_CHANGED; 234 235switch(ce->ce_mode & S_IFMT) { 236case S_IFREG: 237 changed |= !S_ISREG(st->st_mode) ? TYPE_CHANGED :0; 238/* We consider only the owner x bit to be relevant for 239 * "mode changes" 240 */ 241if(trust_executable_bit && 242(0100& (ce->ce_mode ^ st->st_mode))) 243 changed |= MODE_CHANGED; 244break; 245case S_IFLNK: 246if(!S_ISLNK(st->st_mode) && 247(has_symlinks || !S_ISREG(st->st_mode))) 248 changed |= TYPE_CHANGED; 249break; 250case S_IFGITLINK: 251/* We ignore most of the st_xxx fields for gitlinks */ 252if(!S_ISDIR(st->st_mode)) 253 changed |= TYPE_CHANGED; 254else if(ce_compare_gitlink(ce)) 255 changed |= DATA_CHANGED; 256return changed; 257default: 258die("internal error: ce_mode is%o", ce->ce_mode); 259} 260 261 changed |=match_stat_data(&ce->ce_stat_data, st); 262 263/* Racily smudged entry? */ 264if(!ce->ce_stat_data.sd_size) { 265if(!is_empty_blob_sha1(ce->sha1)) 266 changed |= DATA_CHANGED; 267} 268 269return changed; 270} 271 272static intis_racy_stat(const struct index_state *istate, 273const struct stat_data *sd) 274{ 275return(istate->timestamp.sec && 276#ifdef USE_NSEC 277/* nanosecond timestamped files can also be racy! */ 278(istate->timestamp.sec < sd->sd_mtime.sec || 279(istate->timestamp.sec == sd->sd_mtime.sec && 280 istate->timestamp.nsec <= sd->sd_mtime.nsec)) 281#else 282 istate->timestamp.sec <= sd->sd_mtime.sec 283#endif 284); 285} 286 287static intis_racy_timestamp(const struct index_state *istate, 288const struct cache_entry *ce) 289{ 290return(!S_ISGITLINK(ce->ce_mode) && 291is_racy_stat(istate, &ce->ce_stat_data)); 292} 293 294intmatch_stat_data_racy(const struct index_state *istate, 295const struct stat_data *sd,struct stat *st) 296{ 297if(is_racy_stat(istate, sd)) 298return MTIME_CHANGED; 299returnmatch_stat_data(sd, st); 300} 301 302intie_match_stat(const struct index_state *istate, 303const struct cache_entry *ce,struct stat *st, 304unsigned int options) 305{ 306unsigned int changed; 307int ignore_valid = options & CE_MATCH_IGNORE_VALID; 308int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE; 309int assume_racy_is_modified = options & CE_MATCH_RACY_IS_DIRTY; 310 311/* 312 * If it's marked as always valid in the index, it's 313 * valid whatever the checked-out copy says. 314 * 315 * skip-worktree has the same effect with higher precedence 316 */ 317if(!ignore_skip_worktree &&ce_skip_worktree(ce)) 318return0; 319if(!ignore_valid && (ce->ce_flags & CE_VALID)) 320return0; 321 322/* 323 * Intent-to-add entries have not been added, so the index entry 324 * by definition never matches what is in the work tree until it 325 * actually gets added. 326 */ 327if(ce_intent_to_add(ce)) 328return DATA_CHANGED | TYPE_CHANGED | MODE_CHANGED; 329 330 changed =ce_match_stat_basic(ce, st); 331 332/* 333 * Within 1 second of this sequence: 334 * echo xyzzy >file && git-update-index --add file 335 * running this command: 336 * echo frotz >file 337 * would give a falsely clean cache entry. The mtime and 338 * length match the cache, and other stat fields do not change. 339 * 340 * We could detect this at update-index time (the cache entry 341 * being registered/updated records the same time as "now") 342 * and delay the return from git-update-index, but that would 343 * effectively mean we can make at most one commit per second, 344 * which is not acceptable. Instead, we check cache entries 345 * whose mtime are the same as the index file timestamp more 346 * carefully than others. 347 */ 348if(!changed &&is_racy_timestamp(istate, ce)) { 349if(assume_racy_is_modified) 350 changed |= DATA_CHANGED; 351else 352 changed |=ce_modified_check_fs(ce, st); 353} 354 355return changed; 356} 357 358intie_modified(const struct index_state *istate, 359const struct cache_entry *ce, 360struct stat *st,unsigned int options) 361{ 362int changed, changed_fs; 363 364 changed =ie_match_stat(istate, ce, st, options); 365if(!changed) 366return0; 367/* 368 * If the mode or type has changed, there's no point in trying 369 * to refresh the entry - it's not going to match 370 */ 371if(changed & (MODE_CHANGED | TYPE_CHANGED)) 372return changed; 373 374/* 375 * Immediately after read-tree or update-index --cacheinfo, 376 * the length field is zero, as we have never even read the 377 * lstat(2) information once, and we cannot trust DATA_CHANGED 378 * returned by ie_match_stat() which in turn was returned by 379 * ce_match_stat_basic() to signal that the filesize of the 380 * blob changed. We have to actually go to the filesystem to 381 * see if the contents match, and if so, should answer "unchanged". 382 * 383 * The logic does not apply to gitlinks, as ce_match_stat_basic() 384 * already has checked the actual HEAD from the filesystem in the 385 * subproject. If ie_match_stat() already said it is different, 386 * then we know it is. 387 */ 388if((changed & DATA_CHANGED) && 389(S_ISGITLINK(ce->ce_mode) || ce->ce_stat_data.sd_size !=0)) 390return changed; 391 392 changed_fs =ce_modified_check_fs(ce, st); 393if(changed_fs) 394return changed | changed_fs; 395return0; 396} 397 398intbase_name_compare(const char*name1,int len1,int mode1, 399const char*name2,int len2,int mode2) 400{ 401unsigned char c1, c2; 402int len = len1 < len2 ? len1 : len2; 403int cmp; 404 405 cmp =memcmp(name1, name2, len); 406if(cmp) 407return cmp; 408 c1 = name1[len]; 409 c2 = name2[len]; 410if(!c1 &&S_ISDIR(mode1)) 411 c1 ='/'; 412if(!c2 &&S_ISDIR(mode2)) 413 c2 ='/'; 414return(c1 < c2) ? -1: (c1 > c2) ?1:0; 415} 416 417/* 418 * df_name_compare() is identical to base_name_compare(), except it 419 * compares conflicting directory/file entries as equal. Note that 420 * while a directory name compares as equal to a regular file, they 421 * then individually compare _differently_ to a filename that has 422 * a dot after the basename (because '\0' < '.' < '/'). 423 * 424 * This is used by routines that want to traverse the git namespace 425 * but then handle conflicting entries together when possible. 426 */ 427intdf_name_compare(const char*name1,int len1,int mode1, 428const char*name2,int len2,int mode2) 429{ 430int len = len1 < len2 ? len1 : len2, cmp; 431unsigned char c1, c2; 432 433 cmp =memcmp(name1, name2, len); 434if(cmp) 435return cmp; 436/* Directories and files compare equal (same length, same name) */ 437if(len1 == len2) 438return0; 439 c1 = name1[len]; 440if(!c1 &&S_ISDIR(mode1)) 441 c1 ='/'; 442 c2 = name2[len]; 443if(!c2 &&S_ISDIR(mode2)) 444 c2 ='/'; 445if(c1 =='/'&& !c2) 446return0; 447if(c2 =='/'&& !c1) 448return0; 449return c1 - c2; 450} 451 452intname_compare(const char*name1,size_t len1,const char*name2,size_t len2) 453{ 454size_t min_len = (len1 < len2) ? len1 : len2; 455int cmp =memcmp(name1, name2, min_len); 456if(cmp) 457return cmp; 458if(len1 < len2) 459return-1; 460if(len1 > len2) 461return1; 462return0; 463} 464 465intcache_name_stage_compare(const char*name1,int len1,int stage1,const char*name2,int len2,int stage2) 466{ 467int cmp; 468 469 cmp =name_compare(name1, len1, name2, len2); 470if(cmp) 471return cmp; 472 473if(stage1 < stage2) 474return-1; 475if(stage1 > stage2) 476return1; 477return0; 478} 479 480static intindex_name_stage_pos(const struct index_state *istate,const char*name,int namelen,int stage) 481{ 482int first, last; 483 484 first =0; 485 last = istate->cache_nr; 486while(last > first) { 487int next = (last + first) >>1; 488struct cache_entry *ce = istate->cache[next]; 489int cmp =cache_name_stage_compare(name, namelen, stage, ce->name,ce_namelen(ce),ce_stage(ce)); 490if(!cmp) 491return next; 492if(cmp <0) { 493 last = next; 494continue; 495} 496 first = next+1; 497} 498return-first-1; 499} 500 501intindex_name_pos(const struct index_state *istate,const char*name,int namelen) 502{ 503returnindex_name_stage_pos(istate, name, namelen,0); 504} 505 506/* Remove entry, return true if there are more entries to go.. */ 507intremove_index_entry_at(struct index_state *istate,int pos) 508{ 509struct cache_entry *ce = istate->cache[pos]; 510 511record_resolve_undo(istate, ce); 512remove_name_hash(istate, ce); 513save_or_free_index_entry(istate, ce); 514 istate->cache_changed |= CE_ENTRY_REMOVED; 515 istate->cache_nr--; 516if(pos >= istate->cache_nr) 517return0; 518memmove(istate->cache + pos, 519 istate->cache + pos +1, 520(istate->cache_nr - pos) *sizeof(struct cache_entry *)); 521return1; 522} 523 524/* 525 * Remove all cache entries marked for removal, that is where 526 * CE_REMOVE is set in ce_flags. This is much more effective than 527 * calling remove_index_entry_at() for each entry to be removed. 528 */ 529voidremove_marked_cache_entries(struct index_state *istate) 530{ 531struct cache_entry **ce_array = istate->cache; 532unsigned int i, j; 533 534for(i = j =0; i < istate->cache_nr; i++) { 535if(ce_array[i]->ce_flags & CE_REMOVE) { 536remove_name_hash(istate, ce_array[i]); 537save_or_free_index_entry(istate, ce_array[i]); 538} 539else 540 ce_array[j++] = ce_array[i]; 541} 542if(j == istate->cache_nr) 543return; 544 istate->cache_changed |= CE_ENTRY_REMOVED; 545 istate->cache_nr = j; 546} 547 548intremove_file_from_index(struct index_state *istate,const char*path) 549{ 550int pos =index_name_pos(istate, path,strlen(path)); 551if(pos <0) 552 pos = -pos-1; 553cache_tree_invalidate_path(istate, path); 554untracked_cache_remove_from_index(istate, path); 555while(pos < istate->cache_nr && !strcmp(istate->cache[pos]->name, path)) 556remove_index_entry_at(istate, pos); 557return0; 558} 559 560static intcompare_name(struct cache_entry *ce,const char*path,int namelen) 561{ 562return namelen !=ce_namelen(ce) ||memcmp(path, ce->name, namelen); 563} 564 565static intindex_name_pos_also_unmerged(struct index_state *istate, 566const char*path,int namelen) 567{ 568int pos =index_name_pos(istate, path, namelen); 569struct cache_entry *ce; 570 571if(pos >=0) 572return pos; 573 574/* maybe unmerged? */ 575 pos = -1- pos; 576if(pos >= istate->cache_nr || 577compare_name((ce = istate->cache[pos]), path, namelen)) 578return-1; 579 580/* order of preference: stage 2, 1, 3 */ 581if(ce_stage(ce) ==1&& pos +1< istate->cache_nr && 582ce_stage((ce = istate->cache[pos +1])) ==2&& 583!compare_name(ce, path, namelen)) 584 pos++; 585return pos; 586} 587 588static intdifferent_name(struct cache_entry *ce,struct cache_entry *alias) 589{ 590int len =ce_namelen(ce); 591returnce_namelen(alias) != len ||memcmp(ce->name, alias->name, len); 592} 593 594/* 595 * If we add a filename that aliases in the cache, we will use the 596 * name that we already have - but we don't want to update the same 597 * alias twice, because that implies that there were actually two 598 * different files with aliasing names! 599 * 600 * So we use the CE_ADDED flag to verify that the alias was an old 601 * one before we accept it as 602 */ 603static struct cache_entry *create_alias_ce(struct index_state *istate, 604struct cache_entry *ce, 605struct cache_entry *alias) 606{ 607int len; 608struct cache_entry *new; 609 610if(alias->ce_flags & CE_ADDED) 611die("Will not add file alias '%s' ('%s' already exists in index)", ce->name, alias->name); 612 613/* Ok, create the new entry using the name of the existing alias */ 614 len =ce_namelen(alias); 615new=xcalloc(1,cache_entry_size(len)); 616memcpy(new->name, alias->name, len); 617copy_cache_entry(new, ce); 618save_or_free_index_entry(istate, ce); 619return new; 620} 621 622voidset_object_name_for_intent_to_add_entry(struct cache_entry *ce) 623{ 624unsigned char sha1[20]; 625if(write_sha1_file("",0, blob_type, sha1)) 626die("cannot create an empty blob in the object database"); 627hashcpy(ce->sha1, sha1); 628} 629 630intadd_to_index(struct index_state *istate,const char*path,struct stat *st,int flags) 631{ 632int size, namelen, was_same; 633 mode_t st_mode = st->st_mode; 634struct cache_entry *ce, *alias; 635unsigned ce_option = CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE|CE_MATCH_RACY_IS_DIRTY; 636int verbose = flags & (ADD_CACHE_VERBOSE | ADD_CACHE_PRETEND); 637int pretend = flags & ADD_CACHE_PRETEND; 638int intent_only = flags & ADD_CACHE_INTENT; 639int add_option = (ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE| 640(intent_only ? ADD_CACHE_NEW_ONLY :0)); 641 642if(!S_ISREG(st_mode) && !S_ISLNK(st_mode) && !S_ISDIR(st_mode)) 643returnerror("%s: can only add regular files, symbolic links or git-directories", path); 644 645 namelen =strlen(path); 646if(S_ISDIR(st_mode)) { 647while(namelen && path[namelen-1] =='/') 648 namelen--; 649} 650 size =cache_entry_size(namelen); 651 ce =xcalloc(1, size); 652memcpy(ce->name, path, namelen); 653 ce->ce_namelen = namelen; 654if(!intent_only) 655fill_stat_cache_info(ce, st); 656else 657 ce->ce_flags |= CE_INTENT_TO_ADD; 658 659if(trust_executable_bit && has_symlinks) 660 ce->ce_mode =create_ce_mode(st_mode); 661else{ 662/* If there is an existing entry, pick the mode bits and type 663 * from it, otherwise assume unexecutable regular file. 664 */ 665struct cache_entry *ent; 666int pos =index_name_pos_also_unmerged(istate, path, namelen); 667 668 ent = (0<= pos) ? istate->cache[pos] : NULL; 669 ce->ce_mode =ce_mode_from_stat(ent, st_mode); 670} 671 672/* When core.ignorecase=true, determine if a directory of the same name but differing 673 * case already exists within the Git repository. If it does, ensure the directory 674 * case of the file being added to the repository matches (is folded into) the existing 675 * entry's directory case. 676 */ 677if(ignore_case) { 678adjust_dirname_case(istate, ce->name); 679} 680 681 alias =index_file_exists(istate, ce->name,ce_namelen(ce), ignore_case); 682if(alias && !ce_stage(alias) && !ie_match_stat(istate, alias, st, ce_option)) { 683/* Nothing changed, really */ 684if(!S_ISGITLINK(alias->ce_mode)) 685ce_mark_uptodate(alias); 686 alias->ce_flags |= CE_ADDED; 687 688free(ce); 689return0; 690} 691if(!intent_only) { 692if(index_path(ce->sha1, path, st, HASH_WRITE_OBJECT)) { 693free(ce); 694returnerror("unable to index file%s", path); 695} 696}else 697set_object_name_for_intent_to_add_entry(ce); 698 699if(ignore_case && alias &&different_name(ce, alias)) 700 ce =create_alias_ce(istate, ce, alias); 701 ce->ce_flags |= CE_ADDED; 702 703/* It was suspected to be racily clean, but it turns out to be Ok */ 704 was_same = (alias && 705!ce_stage(alias) && 706!hashcmp(alias->sha1, ce->sha1) && 707 ce->ce_mode == alias->ce_mode); 708 709if(pretend) 710free(ce); 711else if(add_index_entry(istate, ce, add_option)) { 712free(ce); 713returnerror("unable to add%sto index", path); 714} 715if(verbose && !was_same) 716printf("add '%s'\n", path); 717return0; 718} 719 720intadd_file_to_index(struct index_state *istate,const char*path,int flags) 721{ 722struct stat st; 723if(lstat(path, &st)) 724die_errno("unable to stat '%s'", path); 725returnadd_to_index(istate, path, &st, flags); 726} 727 728struct cache_entry *make_cache_entry(unsigned int mode, 729const unsigned char*sha1,const char*path,int stage, 730unsigned int refresh_options) 731{ 732int size, len; 733struct cache_entry *ce, *ret; 734 735if(!verify_path(path)) { 736error("Invalid path '%s'", path); 737return NULL; 738} 739 740 len =strlen(path); 741 size =cache_entry_size(len); 742 ce =xcalloc(1, size); 743 744hashcpy(ce->sha1, sha1); 745memcpy(ce->name, path, len); 746 ce->ce_flags =create_ce_flags(stage); 747 ce->ce_namelen = len; 748 ce->ce_mode =create_ce_mode(mode); 749 750 ret =refresh_cache_entry(ce, refresh_options); 751if(ret != ce) 752free(ce); 753return ret; 754} 755 756intce_same_name(const struct cache_entry *a,const struct cache_entry *b) 757{ 758int len =ce_namelen(a); 759returnce_namelen(b) == len && !memcmp(a->name, b->name, len); 760} 761 762/* 763 * We fundamentally don't like some paths: we don't want 764 * dot or dot-dot anywhere, and for obvious reasons don't 765 * want to recurse into ".git" either. 766 * 767 * Also, we don't want double slashes or slashes at the 768 * end that can make pathnames ambiguous. 769 */ 770static intverify_dotfile(const char*rest) 771{ 772/* 773 * The first character was '.', but that 774 * has already been discarded, we now test 775 * the rest. 776 */ 777 778/* "." is not allowed */ 779if(*rest =='\0'||is_dir_sep(*rest)) 780return0; 781 782switch(*rest) { 783/* 784 * ".git" followed by NUL or slash is bad. This 785 * shares the path end test with the ".." case. 786 */ 787case'g': 788case'G': 789if(rest[1] !='i'&& rest[1] !='I') 790break; 791if(rest[2] !='t'&& rest[2] !='T') 792break; 793 rest +=2; 794/* fallthrough */ 795case'.': 796if(rest[1] =='\0'||is_dir_sep(rest[1])) 797return0; 798} 799return1; 800} 801 802intverify_path(const char*path) 803{ 804char c; 805 806if(has_dos_drive_prefix(path)) 807return0; 808 809goto inside; 810for(;;) { 811if(!c) 812return1; 813if(is_dir_sep(c)) { 814inside: 815if(protect_hfs &&is_hfs_dotgit(path)) 816return0; 817if(protect_ntfs &&is_ntfs_dotgit(path)) 818return0; 819 c = *path++; 820if((c =='.'&& !verify_dotfile(path)) || 821is_dir_sep(c) || c =='\0') 822return0; 823} 824 c = *path++; 825} 826} 827 828/* 829 * Do we have another file that has the beginning components being a 830 * proper superset of the name we're trying to add? 831 */ 832static inthas_file_name(struct index_state *istate, 833const struct cache_entry *ce,int pos,int ok_to_replace) 834{ 835int retval =0; 836int len =ce_namelen(ce); 837int stage =ce_stage(ce); 838const char*name = ce->name; 839 840while(pos < istate->cache_nr) { 841struct cache_entry *p = istate->cache[pos++]; 842 843if(len >=ce_namelen(p)) 844break; 845if(memcmp(name, p->name, len)) 846break; 847if(ce_stage(p) != stage) 848continue; 849if(p->name[len] !='/') 850continue; 851if(p->ce_flags & CE_REMOVE) 852continue; 853 retval = -1; 854if(!ok_to_replace) 855break; 856remove_index_entry_at(istate, --pos); 857} 858return retval; 859} 860 861/* 862 * Do we have another file with a pathname that is a proper 863 * subset of the name we're trying to add? 864 */ 865static inthas_dir_name(struct index_state *istate, 866const struct cache_entry *ce,int pos,int ok_to_replace) 867{ 868int retval =0; 869int stage =ce_stage(ce); 870const char*name = ce->name; 871const char*slash = name +ce_namelen(ce); 872 873for(;;) { 874int len; 875 876for(;;) { 877if(*--slash =='/') 878break; 879if(slash <= ce->name) 880return retval; 881} 882 len = slash - name; 883 884 pos =index_name_stage_pos(istate, name, len, stage); 885if(pos >=0) { 886/* 887 * Found one, but not so fast. This could 888 * be a marker that says "I was here, but 889 * I am being removed". Such an entry is 890 * not a part of the resulting tree, and 891 * it is Ok to have a directory at the same 892 * path. 893 */ 894if(!(istate->cache[pos]->ce_flags & CE_REMOVE)) { 895 retval = -1; 896if(!ok_to_replace) 897break; 898remove_index_entry_at(istate, pos); 899continue; 900} 901} 902else 903 pos = -pos-1; 904 905/* 906 * Trivial optimization: if we find an entry that 907 * already matches the sub-directory, then we know 908 * we're ok, and we can exit. 909 */ 910while(pos < istate->cache_nr) { 911struct cache_entry *p = istate->cache[pos]; 912if((ce_namelen(p) <= len) || 913(p->name[len] !='/') || 914memcmp(p->name, name, len)) 915break;/* not our subdirectory */ 916if(ce_stage(p) == stage && !(p->ce_flags & CE_REMOVE)) 917/* 918 * p is at the same stage as our entry, and 919 * is a subdirectory of what we are looking 920 * at, so we cannot have conflicts at our 921 * level or anything shorter. 922 */ 923return retval; 924 pos++; 925} 926} 927return retval; 928} 929 930/* We may be in a situation where we already have path/file and path 931 * is being added, or we already have path and path/file is being 932 * added. Either one would result in a nonsense tree that has path 933 * twice when git-write-tree tries to write it out. Prevent it. 934 * 935 * If ok-to-replace is specified, we remove the conflicting entries 936 * from the cache so the caller should recompute the insert position. 937 * When this happens, we return non-zero. 938 */ 939static intcheck_file_directory_conflict(struct index_state *istate, 940const struct cache_entry *ce, 941int pos,int ok_to_replace) 942{ 943int retval; 944 945/* 946 * When ce is an "I am going away" entry, we allow it to be added 947 */ 948if(ce->ce_flags & CE_REMOVE) 949return0; 950 951/* 952 * We check if the path is a sub-path of a subsequent pathname 953 * first, since removing those will not change the position 954 * in the array. 955 */ 956 retval =has_file_name(istate, ce, pos, ok_to_replace); 957 958/* 959 * Then check if the path might have a clashing sub-directory 960 * before it. 961 */ 962return retval +has_dir_name(istate, ce, pos, ok_to_replace); 963} 964 965static intadd_index_entry_with_check(struct index_state *istate,struct cache_entry *ce,int option) 966{ 967int pos; 968int ok_to_add = option & ADD_CACHE_OK_TO_ADD; 969int ok_to_replace = option & ADD_CACHE_OK_TO_REPLACE; 970int skip_df_check = option & ADD_CACHE_SKIP_DFCHECK; 971int new_only = option & ADD_CACHE_NEW_ONLY; 972 973if(!(option & ADD_CACHE_KEEP_CACHE_TREE)) 974cache_tree_invalidate_path(istate, ce->name); 975 pos =index_name_stage_pos(istate, ce->name,ce_namelen(ce),ce_stage(ce)); 976 977/* existing match? Just replace it. */ 978if(pos >=0) { 979if(!new_only) 980replace_index_entry(istate, pos, ce); 981return0; 982} 983 pos = -pos-1; 984 985if(!(option & ADD_CACHE_KEEP_CACHE_TREE)) 986untracked_cache_add_to_index(istate, ce->name); 987 988/* 989 * Inserting a merged entry ("stage 0") into the index 990 * will always replace all non-merged entries.. 991 */ 992if(pos < istate->cache_nr &&ce_stage(ce) ==0) { 993while(ce_same_name(istate->cache[pos], ce)) { 994 ok_to_add =1; 995if(!remove_index_entry_at(istate, pos)) 996break; 997} 998} 9991000if(!ok_to_add)1001return-1;1002if(!verify_path(ce->name))1003returnerror("Invalid path '%s'", ce->name);10041005if(!skip_df_check &&1006check_file_directory_conflict(istate, ce, pos, ok_to_replace)) {1007if(!ok_to_replace)1008returnerror("'%s' appears as both a file and as a directory",1009 ce->name);1010 pos =index_name_stage_pos(istate, ce->name,ce_namelen(ce),ce_stage(ce));1011 pos = -pos-1;1012}1013return pos +1;1014}10151016intadd_index_entry(struct index_state *istate,struct cache_entry *ce,int option)1017{1018int pos;10191020if(option & ADD_CACHE_JUST_APPEND)1021 pos = istate->cache_nr;1022else{1023int ret;1024 ret =add_index_entry_with_check(istate, ce, option);1025if(ret <=0)1026return ret;1027 pos = ret -1;1028}10291030/* Make sure the array is big enough .. */1031ALLOC_GROW(istate->cache, istate->cache_nr +1, istate->cache_alloc);10321033/* Add it in.. */1034 istate->cache_nr++;1035if(istate->cache_nr > pos +1)1036memmove(istate->cache + pos +1,1037 istate->cache + pos,1038(istate->cache_nr - pos -1) *sizeof(ce));1039set_index_entry(istate, pos, ce);1040 istate->cache_changed |= CE_ENTRY_ADDED;1041return0;1042}10431044/*1045 * "refresh" does not calculate a new sha1 file or bring the1046 * cache up-to-date for mode/content changes. But what it1047 * _does_ do is to "re-match" the stat information of a file1048 * with the cache, so that you can refresh the cache for a1049 * file that hasn't been changed but where the stat entry is1050 * out of date.1051 *1052 * For example, you'd want to do this after doing a "git-read-tree",1053 * to link up the stat cache details with the proper files.1054 */1055static struct cache_entry *refresh_cache_ent(struct index_state *istate,1056struct cache_entry *ce,1057unsigned int options,int*err,1058int*changed_ret)1059{1060struct stat st;1061struct cache_entry *updated;1062int changed, size;1063int refresh = options & CE_MATCH_REFRESH;1064int ignore_valid = options & CE_MATCH_IGNORE_VALID;1065int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE;1066int ignore_missing = options & CE_MATCH_IGNORE_MISSING;10671068if(!refresh ||ce_uptodate(ce))1069return ce;10701071/*1072 * CE_VALID or CE_SKIP_WORKTREE means the user promised us1073 * that the change to the work tree does not matter and told1074 * us not to worry.1075 */1076if(!ignore_skip_worktree &&ce_skip_worktree(ce)) {1077ce_mark_uptodate(ce);1078return ce;1079}1080if(!ignore_valid && (ce->ce_flags & CE_VALID)) {1081ce_mark_uptodate(ce);1082return ce;1083}10841085if(has_symlink_leading_path(ce->name,ce_namelen(ce))) {1086if(ignore_missing)1087return ce;1088if(err)1089*err = ENOENT;1090return NULL;1091}10921093if(lstat(ce->name, &st) <0) {1094if(ignore_missing && errno == ENOENT)1095return ce;1096if(err)1097*err = errno;1098return NULL;1099}11001101 changed =ie_match_stat(istate, ce, &st, options);1102if(changed_ret)1103*changed_ret = changed;1104if(!changed) {1105/*1106 * The path is unchanged. If we were told to ignore1107 * valid bit, then we did the actual stat check and1108 * found that the entry is unmodified. If the entry1109 * is not marked VALID, this is the place to mark it1110 * valid again, under "assume unchanged" mode.1111 */1112if(ignore_valid && assume_unchanged &&1113!(ce->ce_flags & CE_VALID))1114;/* mark this one VALID again */1115else{1116/*1117 * We do not mark the index itself "modified"1118 * because CE_UPTODATE flag is in-core only;1119 * we are not going to write this change out.1120 */1121if(!S_ISGITLINK(ce->ce_mode))1122ce_mark_uptodate(ce);1123return ce;1124}1125}11261127if(ie_modified(istate, ce, &st, options)) {1128if(err)1129*err = EINVAL;1130return NULL;1131}11321133 size =ce_size(ce);1134 updated =xmalloc(size);1135memcpy(updated, ce, size);1136fill_stat_cache_info(updated, &st);1137/*1138 * If ignore_valid is not set, we should leave CE_VALID bit1139 * alone. Otherwise, paths marked with --no-assume-unchanged1140 * (i.e. things to be edited) will reacquire CE_VALID bit1141 * automatically, which is not really what we want.1142 */1143if(!ignore_valid && assume_unchanged &&1144!(ce->ce_flags & CE_VALID))1145 updated->ce_flags &= ~CE_VALID;11461147/* istate->cache_changed is updated in the caller */1148return updated;1149}11501151static voidshow_file(const char* fmt,const char* name,int in_porcelain,1152int* first,const char*header_msg)1153{1154if(in_porcelain && *first && header_msg) {1155printf("%s\n", header_msg);1156*first =0;1157}1158printf(fmt, name);1159}11601161intrefresh_index(struct index_state *istate,unsigned int flags,1162const struct pathspec *pathspec,1163char*seen,const char*header_msg)1164{1165int i;1166int has_errors =0;1167int really = (flags & REFRESH_REALLY) !=0;1168int allow_unmerged = (flags & REFRESH_UNMERGED) !=0;1169int quiet = (flags & REFRESH_QUIET) !=0;1170int not_new = (flags & REFRESH_IGNORE_MISSING) !=0;1171int ignore_submodules = (flags & REFRESH_IGNORE_SUBMODULES) !=0;1172int first =1;1173int in_porcelain = (flags & REFRESH_IN_PORCELAIN);1174unsigned int options = (CE_MATCH_REFRESH |1175(really ? CE_MATCH_IGNORE_VALID :0) |1176(not_new ? CE_MATCH_IGNORE_MISSING :0));1177const char*modified_fmt;1178const char*deleted_fmt;1179const char*typechange_fmt;1180const char*added_fmt;1181const char*unmerged_fmt;11821183 modified_fmt = (in_porcelain ?"M\t%s\n":"%s: needs update\n");1184 deleted_fmt = (in_porcelain ?"D\t%s\n":"%s: needs update\n");1185 typechange_fmt = (in_porcelain ?"T\t%s\n":"%sneeds update\n");1186 added_fmt = (in_porcelain ?"A\t%s\n":"%sneeds update\n");1187 unmerged_fmt = (in_porcelain ?"U\t%s\n":"%s: needs merge\n");1188for(i =0; i < istate->cache_nr; i++) {1189struct cache_entry *ce, *new;1190int cache_errno =0;1191int changed =0;1192int filtered =0;11931194 ce = istate->cache[i];1195if(ignore_submodules &&S_ISGITLINK(ce->ce_mode))1196continue;11971198if(pathspec && !ce_path_match(ce, pathspec, seen))1199 filtered =1;12001201if(ce_stage(ce)) {1202while((i < istate->cache_nr) &&1203!strcmp(istate->cache[i]->name, ce->name))1204 i++;1205 i--;1206if(allow_unmerged)1207continue;1208if(!filtered)1209show_file(unmerged_fmt, ce->name, in_porcelain,1210&first, header_msg);1211 has_errors =1;1212continue;1213}12141215if(filtered)1216continue;12171218new=refresh_cache_ent(istate, ce, options, &cache_errno, &changed);1219if(new== ce)1220continue;1221if(!new) {1222const char*fmt;12231224if(really && cache_errno == EINVAL) {1225/* If we are doing --really-refresh that1226 * means the index is not valid anymore.1227 */1228 ce->ce_flags &= ~CE_VALID;1229 ce->ce_flags |= CE_UPDATE_IN_BASE;1230 istate->cache_changed |= CE_ENTRY_CHANGED;1231}1232if(quiet)1233continue;12341235if(cache_errno == ENOENT)1236 fmt = deleted_fmt;1237else if(ce_intent_to_add(ce))1238 fmt = added_fmt;/* must be before other checks */1239else if(changed & TYPE_CHANGED)1240 fmt = typechange_fmt;1241else1242 fmt = modified_fmt;1243show_file(fmt,1244 ce->name, in_porcelain, &first, header_msg);1245 has_errors =1;1246continue;1247}12481249replace_index_entry(istate, i,new);1250}1251return has_errors;1252}12531254struct cache_entry *refresh_cache_entry(struct cache_entry *ce,1255unsigned int options)1256{1257returnrefresh_cache_ent(&the_index, ce, options, NULL, NULL);1258}125912601261/*****************************************************************1262 * Index File I/O1263 *****************************************************************/12641265#define INDEX_FORMAT_DEFAULT 312661267static unsigned intget_index_format_default(void)1268{1269char*envversion =getenv("GIT_INDEX_VERSION");1270char*endp;1271int value;1272unsigned int version = INDEX_FORMAT_DEFAULT;12731274if(!envversion) {1275if(!git_config_get_int("index.version", &value))1276 version = value;1277if(version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {1278warning(_("index.version set, but the value is invalid.\n"1279"Using version%i"), INDEX_FORMAT_DEFAULT);1280return INDEX_FORMAT_DEFAULT;1281}1282return version;1283}12841285 version =strtoul(envversion, &endp,10);1286if(*endp ||1287 version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {1288warning(_("GIT_INDEX_VERSION set, but the value is invalid.\n"1289"Using version%i"), INDEX_FORMAT_DEFAULT);1290 version = INDEX_FORMAT_DEFAULT;1291}1292return version;1293}12941295/*1296 * dev/ino/uid/gid/size are also just tracked to the low 32 bits1297 * Again - this is just a (very strong in practice) heuristic that1298 * the inode hasn't changed.1299 *1300 * We save the fields in big-endian order to allow using the1301 * index file over NFS transparently.1302 */1303struct ondisk_cache_entry {1304struct cache_time ctime;1305struct cache_time mtime;1306uint32_t dev;1307uint32_t ino;1308uint32_t mode;1309uint32_t uid;1310uint32_t gid;1311uint32_t size;1312unsigned char sha1[20];1313uint16_t flags;1314char name[FLEX_ARRAY];/* more */1315};13161317/*1318 * This struct is used when CE_EXTENDED bit is 11319 * The struct must match ondisk_cache_entry exactly from1320 * ctime till flags1321 */1322struct ondisk_cache_entry_extended {1323struct cache_time ctime;1324struct cache_time mtime;1325uint32_t dev;1326uint32_t ino;1327uint32_t mode;1328uint32_t uid;1329uint32_t gid;1330uint32_t size;1331unsigned char sha1[20];1332uint16_t flags;1333uint16_t flags2;1334char name[FLEX_ARRAY];/* more */1335};13361337/* These are only used for v3 or lower */1338#define align_flex_name(STRUCT,len) ((offsetof(struct STRUCT,name) + (len) + 8) & ~7)1339#define ondisk_cache_entry_size(len) align_flex_name(ondisk_cache_entry,len)1340#define ondisk_cache_entry_extended_size(len) align_flex_name(ondisk_cache_entry_extended,len)1341#define ondisk_ce_size(ce) (((ce)->ce_flags & CE_EXTENDED) ? \1342 ondisk_cache_entry_extended_size(ce_namelen(ce)) : \1343 ondisk_cache_entry_size(ce_namelen(ce)))13441345static intverify_hdr(struct cache_header *hdr,unsigned long size)1346{1347 git_SHA_CTX c;1348unsigned char sha1[20];1349int hdr_version;13501351if(hdr->hdr_signature !=htonl(CACHE_SIGNATURE))1352returnerror("bad signature");1353 hdr_version =ntohl(hdr->hdr_version);1354if(hdr_version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < hdr_version)1355returnerror("bad index version%d", hdr_version);1356git_SHA1_Init(&c);1357git_SHA1_Update(&c, hdr, size -20);1358git_SHA1_Final(sha1, &c);1359if(hashcmp(sha1, (unsigned char*)hdr + size -20))1360returnerror("bad index file sha1 signature");1361return0;1362}13631364static intread_index_extension(struct index_state *istate,1365const char*ext,void*data,unsigned long sz)1366{1367switch(CACHE_EXT(ext)) {1368case CACHE_EXT_TREE:1369 istate->cache_tree =cache_tree_read(data, sz);1370break;1371case CACHE_EXT_RESOLVE_UNDO:1372 istate->resolve_undo =resolve_undo_read(data, sz);1373break;1374case CACHE_EXT_LINK:1375if(read_link_extension(istate, data, sz))1376return-1;1377break;1378case CACHE_EXT_UNTRACKED:1379 istate->untracked =read_untracked_extension(data, sz);1380break;1381default:1382if(*ext <'A'||'Z'< *ext)1383returnerror("index uses %.4s extension, which we do not understand",1384 ext);1385fprintf(stderr,"ignoring %.4s extension\n", ext);1386break;1387}1388return0;1389}13901391inthold_locked_index(struct lock_file *lk,int die_on_error)1392{1393returnhold_lock_file_for_update(lk,get_index_file(),1394 die_on_error1395? LOCK_DIE_ON_ERROR1396:0);1397}13981399intread_index(struct index_state *istate)1400{1401returnread_index_from(istate,get_index_file());1402}14031404static struct cache_entry *cache_entry_from_ondisk(struct ondisk_cache_entry *ondisk,1405unsigned int flags,1406const char*name,1407size_t len)1408{1409struct cache_entry *ce =xmalloc(cache_entry_size(len));14101411 ce->ce_stat_data.sd_ctime.sec =get_be32(&ondisk->ctime.sec);1412 ce->ce_stat_data.sd_mtime.sec =get_be32(&ondisk->mtime.sec);1413 ce->ce_stat_data.sd_ctime.nsec =get_be32(&ondisk->ctime.nsec);1414 ce->ce_stat_data.sd_mtime.nsec =get_be32(&ondisk->mtime.nsec);1415 ce->ce_stat_data.sd_dev =get_be32(&ondisk->dev);1416 ce->ce_stat_data.sd_ino =get_be32(&ondisk->ino);1417 ce->ce_mode =get_be32(&ondisk->mode);1418 ce->ce_stat_data.sd_uid =get_be32(&ondisk->uid);1419 ce->ce_stat_data.sd_gid =get_be32(&ondisk->gid);1420 ce->ce_stat_data.sd_size =get_be32(&ondisk->size);1421 ce->ce_flags = flags & ~CE_NAMEMASK;1422 ce->ce_namelen = len;1423 ce->index =0;1424hashcpy(ce->sha1, ondisk->sha1);1425memcpy(ce->name, name, len);1426 ce->name[len] ='\0';1427return ce;1428}14291430/*1431 * Adjacent cache entries tend to share the leading paths, so it makes1432 * sense to only store the differences in later entries. In the v41433 * on-disk format of the index, each on-disk cache entry stores the1434 * number of bytes to be stripped from the end of the previous name,1435 * and the bytes to append to the result, to come up with its name.1436 */1437static unsigned longexpand_name_field(struct strbuf *name,const char*cp_)1438{1439const unsigned char*ep, *cp = (const unsigned char*)cp_;1440size_t len =decode_varint(&cp);14411442if(name->len < len)1443die("malformed name field in the index");1444strbuf_remove(name, name->len - len, len);1445for(ep = cp; *ep; ep++)1446;/* find the end */1447strbuf_add(name, cp, ep - cp);1448return(const char*)ep +1- cp_;1449}14501451static struct cache_entry *create_from_disk(struct ondisk_cache_entry *ondisk,1452unsigned long*ent_size,1453struct strbuf *previous_name)1454{1455struct cache_entry *ce;1456size_t len;1457const char*name;1458unsigned int flags;14591460/* On-disk flags are just 16 bits */1461 flags =get_be16(&ondisk->flags);1462 len = flags & CE_NAMEMASK;14631464if(flags & CE_EXTENDED) {1465struct ondisk_cache_entry_extended *ondisk2;1466int extended_flags;1467 ondisk2 = (struct ondisk_cache_entry_extended *)ondisk;1468 extended_flags =get_be16(&ondisk2->flags2) <<16;1469/* We do not yet understand any bit out of CE_EXTENDED_FLAGS */1470if(extended_flags & ~CE_EXTENDED_FLAGS)1471die("Unknown index entry format%08x", extended_flags);1472 flags |= extended_flags;1473 name = ondisk2->name;1474}1475else1476 name = ondisk->name;14771478if(!previous_name) {1479/* v3 and earlier */1480if(len == CE_NAMEMASK)1481 len =strlen(name);1482 ce =cache_entry_from_ondisk(ondisk, flags, name, len);14831484*ent_size =ondisk_ce_size(ce);1485}else{1486unsigned long consumed;1487 consumed =expand_name_field(previous_name, name);1488 ce =cache_entry_from_ondisk(ondisk, flags,1489 previous_name->buf,1490 previous_name->len);14911492*ent_size = (name - ((char*)ondisk)) + consumed;1493}1494return ce;1495}14961497static voidcheck_ce_order(struct index_state *istate)1498{1499unsigned int i;15001501for(i =1; i < istate->cache_nr; i++) {1502struct cache_entry *ce = istate->cache[i -1];1503struct cache_entry *next_ce = istate->cache[i];1504int name_compare =strcmp(ce->name, next_ce->name);15051506if(0< name_compare)1507die("unordered stage entries in index");1508if(!name_compare) {1509if(!ce_stage(ce))1510die("multiple stage entries for merged file '%s'",1511 ce->name);1512if(ce_stage(ce) >ce_stage(next_ce))1513die("unordered stage entries for '%s'",1514 ce->name);1515}1516}1517}15181519static voidtweak_untracked_cache(struct index_state *istate)1520{1521switch(git_config_get_untracked_cache()) {1522case-1:/* keep: do nothing */1523break;1524case0:/* false */1525remove_untracked_cache(istate);1526break;1527case1:/* true */1528add_untracked_cache(istate);1529break;1530default:/* unknown value: do nothing */1531break;1532}1533}15341535static voidpost_read_index_from(struct index_state *istate)1536{1537check_ce_order(istate);1538tweak_untracked_cache(istate);1539}15401541/* remember to discard_cache() before reading a different cache! */1542intdo_read_index(struct index_state *istate,const char*path,int must_exist)1543{1544int fd, i;1545struct stat st;1546unsigned long src_offset;1547struct cache_header *hdr;1548void*mmap;1549size_t mmap_size;1550struct strbuf previous_name_buf = STRBUF_INIT, *previous_name;15511552if(istate->initialized)1553return istate->cache_nr;15541555 istate->timestamp.sec =0;1556 istate->timestamp.nsec =0;1557 fd =open(path, O_RDONLY);1558if(fd <0) {1559if(!must_exist && errno == ENOENT)1560return0;1561die_errno("%s: index file open failed", path);1562}15631564if(fstat(fd, &st))1565die_errno("cannot stat the open index");15661567 mmap_size =xsize_t(st.st_size);1568if(mmap_size <sizeof(struct cache_header) +20)1569die("index file smaller than expected");15701571 mmap =xmmap(NULL, mmap_size, PROT_READ, MAP_PRIVATE, fd,0);1572if(mmap == MAP_FAILED)1573die_errno("unable to map index file");1574close(fd);15751576 hdr = mmap;1577if(verify_hdr(hdr, mmap_size) <0)1578goto unmap;15791580hashcpy(istate->sha1, (const unsigned char*)hdr + mmap_size -20);1581 istate->version =ntohl(hdr->hdr_version);1582 istate->cache_nr =ntohl(hdr->hdr_entries);1583 istate->cache_alloc =alloc_nr(istate->cache_nr);1584 istate->cache =xcalloc(istate->cache_alloc,sizeof(*istate->cache));1585 istate->initialized =1;15861587if(istate->version ==4)1588 previous_name = &previous_name_buf;1589else1590 previous_name = NULL;15911592 src_offset =sizeof(*hdr);1593for(i =0; i < istate->cache_nr; i++) {1594struct ondisk_cache_entry *disk_ce;1595struct cache_entry *ce;1596unsigned long consumed;15971598 disk_ce = (struct ondisk_cache_entry *)((char*)mmap + src_offset);1599 ce =create_from_disk(disk_ce, &consumed, previous_name);1600set_index_entry(istate, i, ce);16011602 src_offset += consumed;1603}1604strbuf_release(&previous_name_buf);1605 istate->timestamp.sec = st.st_mtime;1606 istate->timestamp.nsec =ST_MTIME_NSEC(st);16071608while(src_offset <= mmap_size -20-8) {1609/* After an array of active_nr index entries,1610 * there can be arbitrary number of extended1611 * sections, each of which is prefixed with1612 * extension name (4-byte) and section length1613 * in 4-byte network byte order.1614 */1615uint32_t extsize;1616memcpy(&extsize, (char*)mmap + src_offset +4,4);1617 extsize =ntohl(extsize);1618if(read_index_extension(istate,1619(const char*) mmap + src_offset,1620(char*) mmap + src_offset +8,1621 extsize) <0)1622goto unmap;1623 src_offset +=8;1624 src_offset += extsize;1625}1626munmap(mmap, mmap_size);1627return istate->cache_nr;16281629unmap:1630munmap(mmap, mmap_size);1631die("index file corrupt");1632}16331634intread_index_from(struct index_state *istate,const char*path)1635{1636struct split_index *split_index;1637int ret;16381639/* istate->initialized covers both .git/index and .git/sharedindex.xxx */1640if(istate->initialized)1641return istate->cache_nr;16421643 ret =do_read_index(istate, path,0);16441645 split_index = istate->split_index;1646if(!split_index ||is_null_sha1(split_index->base_sha1)) {1647post_read_index_from(istate);1648return ret;1649}16501651if(split_index->base)1652discard_index(split_index->base);1653else1654 split_index->base =xcalloc(1,sizeof(*split_index->base));1655 ret =do_read_index(split_index->base,1656git_path("sharedindex.%s",1657sha1_to_hex(split_index->base_sha1)),1);1658if(hashcmp(split_index->base_sha1, split_index->base->sha1))1659die("broken index, expect%sin%s, got%s",1660sha1_to_hex(split_index->base_sha1),1661git_path("sharedindex.%s",1662sha1_to_hex(split_index->base_sha1)),1663sha1_to_hex(split_index->base->sha1));1664merge_base_index(istate);1665post_read_index_from(istate);1666return ret;1667}16681669intis_index_unborn(struct index_state *istate)1670{1671return(!istate->cache_nr && !istate->timestamp.sec);1672}16731674intdiscard_index(struct index_state *istate)1675{1676int i;16771678for(i =0; i < istate->cache_nr; i++) {1679if(istate->cache[i]->index &&1680 istate->split_index &&1681 istate->split_index->base &&1682 istate->cache[i]->index <= istate->split_index->base->cache_nr &&1683 istate->cache[i] == istate->split_index->base->cache[istate->cache[i]->index -1])1684continue;1685free(istate->cache[i]);1686}1687resolve_undo_clear_index(istate);1688 istate->cache_nr =0;1689 istate->cache_changed =0;1690 istate->timestamp.sec =0;1691 istate->timestamp.nsec =0;1692free_name_hash(istate);1693cache_tree_free(&(istate->cache_tree));1694 istate->initialized =0;1695free(istate->cache);1696 istate->cache = NULL;1697 istate->cache_alloc =0;1698discard_split_index(istate);1699free_untracked_cache(istate->untracked);1700 istate->untracked = NULL;1701return0;1702}17031704intunmerged_index(const struct index_state *istate)1705{1706int i;1707for(i =0; i < istate->cache_nr; i++) {1708if(ce_stage(istate->cache[i]))1709return1;1710}1711return0;1712}17131714#define WRITE_BUFFER_SIZE 81921715static unsigned char write_buffer[WRITE_BUFFER_SIZE];1716static unsigned long write_buffer_len;17171718static intce_write_flush(git_SHA_CTX *context,int fd)1719{1720unsigned int buffered = write_buffer_len;1721if(buffered) {1722git_SHA1_Update(context, write_buffer, buffered);1723if(write_in_full(fd, write_buffer, buffered) != buffered)1724return-1;1725 write_buffer_len =0;1726}1727return0;1728}17291730static intce_write(git_SHA_CTX *context,int fd,void*data,unsigned int len)1731{1732while(len) {1733unsigned int buffered = write_buffer_len;1734unsigned int partial = WRITE_BUFFER_SIZE - buffered;1735if(partial > len)1736 partial = len;1737memcpy(write_buffer + buffered, data, partial);1738 buffered += partial;1739if(buffered == WRITE_BUFFER_SIZE) {1740 write_buffer_len = buffered;1741if(ce_write_flush(context, fd))1742return-1;1743 buffered =0;1744}1745 write_buffer_len = buffered;1746 len -= partial;1747 data = (char*) data + partial;1748}1749return0;1750}17511752static intwrite_index_ext_header(git_SHA_CTX *context,int fd,1753unsigned int ext,unsigned int sz)1754{1755 ext =htonl(ext);1756 sz =htonl(sz);1757return((ce_write(context, fd, &ext,4) <0) ||1758(ce_write(context, fd, &sz,4) <0)) ? -1:0;1759}17601761static intce_flush(git_SHA_CTX *context,int fd,unsigned char*sha1)1762{1763unsigned int left = write_buffer_len;17641765if(left) {1766 write_buffer_len =0;1767git_SHA1_Update(context, write_buffer, left);1768}17691770/* Flush first if not enough space for SHA1 signature */1771if(left +20> WRITE_BUFFER_SIZE) {1772if(write_in_full(fd, write_buffer, left) != left)1773return-1;1774 left =0;1775}17761777/* Append the SHA1 signature at the end */1778git_SHA1_Final(write_buffer + left, context);1779hashcpy(sha1, write_buffer + left);1780 left +=20;1781return(write_in_full(fd, write_buffer, left) != left) ? -1:0;1782}17831784static voidce_smudge_racily_clean_entry(struct cache_entry *ce)1785{1786/*1787 * The only thing we care about in this function is to smudge the1788 * falsely clean entry due to touch-update-touch race, so we leave1789 * everything else as they are. We are called for entries whose1790 * ce_stat_data.sd_mtime match the index file mtime.1791 *1792 * Note that this actually does not do much for gitlinks, for1793 * which ce_match_stat_basic() always goes to the actual1794 * contents. The caller checks with is_racy_timestamp() which1795 * always says "no" for gitlinks, so we are not called for them ;-)1796 */1797struct stat st;17981799if(lstat(ce->name, &st) <0)1800return;1801if(ce_match_stat_basic(ce, &st))1802return;1803if(ce_modified_check_fs(ce, &st)) {1804/* This is "racily clean"; smudge it. Note that this1805 * is a tricky code. At first glance, it may appear1806 * that it can break with this sequence:1807 *1808 * $ echo xyzzy >frotz1809 * $ git-update-index --add frotz1810 * $ : >frotz1811 * $ sleep 31812 * $ echo filfre >nitfol1813 * $ git-update-index --add nitfol1814 *1815 * but it does not. When the second update-index runs,1816 * it notices that the entry "frotz" has the same timestamp1817 * as index, and if we were to smudge it by resetting its1818 * size to zero here, then the object name recorded1819 * in index is the 6-byte file but the cached stat information1820 * becomes zero --- which would then match what we would1821 * obtain from the filesystem next time we stat("frotz").1822 *1823 * However, the second update-index, before calling1824 * this function, notices that the cached size is 61825 * bytes and what is on the filesystem is an empty1826 * file, and never calls us, so the cached size information1827 * for "frotz" stays 6 which does not match the filesystem.1828 */1829 ce->ce_stat_data.sd_size =0;1830}1831}18321833/* Copy miscellaneous fields but not the name */1834static char*copy_cache_entry_to_ondisk(struct ondisk_cache_entry *ondisk,1835struct cache_entry *ce)1836{1837short flags;18381839 ondisk->ctime.sec =htonl(ce->ce_stat_data.sd_ctime.sec);1840 ondisk->mtime.sec =htonl(ce->ce_stat_data.sd_mtime.sec);1841 ondisk->ctime.nsec =htonl(ce->ce_stat_data.sd_ctime.nsec);1842 ondisk->mtime.nsec =htonl(ce->ce_stat_data.sd_mtime.nsec);1843 ondisk->dev =htonl(ce->ce_stat_data.sd_dev);1844 ondisk->ino =htonl(ce->ce_stat_data.sd_ino);1845 ondisk->mode =htonl(ce->ce_mode);1846 ondisk->uid =htonl(ce->ce_stat_data.sd_uid);1847 ondisk->gid =htonl(ce->ce_stat_data.sd_gid);1848 ondisk->size =htonl(ce->ce_stat_data.sd_size);1849hashcpy(ondisk->sha1, ce->sha1);18501851 flags = ce->ce_flags & ~CE_NAMEMASK;1852 flags |= (ce_namelen(ce) >= CE_NAMEMASK ? CE_NAMEMASK :ce_namelen(ce));1853 ondisk->flags =htons(flags);1854if(ce->ce_flags & CE_EXTENDED) {1855struct ondisk_cache_entry_extended *ondisk2;1856 ondisk2 = (struct ondisk_cache_entry_extended *)ondisk;1857 ondisk2->flags2 =htons((ce->ce_flags & CE_EXTENDED_FLAGS) >>16);1858return ondisk2->name;1859}1860else{1861return ondisk->name;1862}1863}18641865static intce_write_entry(git_SHA_CTX *c,int fd,struct cache_entry *ce,1866struct strbuf *previous_name)1867{1868int size;1869struct ondisk_cache_entry *ondisk;1870int saved_namelen = saved_namelen;/* compiler workaround */1871char*name;1872int result;18731874if(ce->ce_flags & CE_STRIP_NAME) {1875 saved_namelen =ce_namelen(ce);1876 ce->ce_namelen =0;1877}18781879if(!previous_name) {1880 size =ondisk_ce_size(ce);1881 ondisk =xcalloc(1, size);1882 name =copy_cache_entry_to_ondisk(ondisk, ce);1883memcpy(name, ce->name,ce_namelen(ce));1884}else{1885int common, to_remove, prefix_size;1886unsigned char to_remove_vi[16];1887for(common =0;1888(ce->name[common] &&1889 common < previous_name->len &&1890 ce->name[common] == previous_name->buf[common]);1891 common++)1892;/* still matching */1893 to_remove = previous_name->len - common;1894 prefix_size =encode_varint(to_remove, to_remove_vi);18951896if(ce->ce_flags & CE_EXTENDED)1897 size =offsetof(struct ondisk_cache_entry_extended, name);1898else1899 size =offsetof(struct ondisk_cache_entry, name);1900 size += prefix_size + (ce_namelen(ce) - common +1);19011902 ondisk =xcalloc(1, size);1903 name =copy_cache_entry_to_ondisk(ondisk, ce);1904memcpy(name, to_remove_vi, prefix_size);1905memcpy(name + prefix_size, ce->name + common,ce_namelen(ce) - common);19061907strbuf_splice(previous_name, common, to_remove,1908 ce->name + common,ce_namelen(ce) - common);1909}1910if(ce->ce_flags & CE_STRIP_NAME) {1911 ce->ce_namelen = saved_namelen;1912 ce->ce_flags &= ~CE_STRIP_NAME;1913}19141915 result =ce_write(c, fd, ondisk, size);1916free(ondisk);1917return result;1918}19191920/*1921 * This function verifies if index_state has the correct sha1 of the1922 * index file. Don't die if we have any other failure, just return 0.1923 */1924static intverify_index_from(const struct index_state *istate,const char*path)1925{1926int fd;1927 ssize_t n;1928struct stat st;1929unsigned char sha1[20];19301931if(!istate->initialized)1932return0;19331934 fd =open(path, O_RDONLY);1935if(fd <0)1936return0;19371938if(fstat(fd, &st))1939goto out;19401941if(st.st_size <sizeof(struct cache_header) +20)1942goto out;19431944 n =pread_in_full(fd, sha1,20, st.st_size -20);1945if(n !=20)1946goto out;19471948if(hashcmp(istate->sha1, sha1))1949goto out;19501951close(fd);1952return1;19531954out:1955close(fd);1956return0;1957}19581959static intverify_index(const struct index_state *istate)1960{1961returnverify_index_from(istate,get_index_file());1962}19631964static inthas_racy_timestamp(struct index_state *istate)1965{1966int entries = istate->cache_nr;1967int i;19681969for(i =0; i < entries; i++) {1970struct cache_entry *ce = istate->cache[i];1971if(is_racy_timestamp(istate, ce))1972return1;1973}1974return0;1975}19761977/*1978 * Opportunistically update the index but do not complain if we can't1979 */1980voidupdate_index_if_able(struct index_state *istate,struct lock_file *lockfile)1981{1982if((istate->cache_changed ||has_racy_timestamp(istate)) &&1983verify_index(istate) &&1984write_locked_index(istate, lockfile, COMMIT_LOCK))1985rollback_lock_file(lockfile);1986}19871988static intdo_write_index(struct index_state *istate,int newfd,1989int strip_extensions)1990{1991 git_SHA_CTX c;1992struct cache_header hdr;1993int i, err, removed, extended, hdr_version;1994struct cache_entry **cache = istate->cache;1995int entries = istate->cache_nr;1996struct stat st;1997struct strbuf previous_name_buf = STRBUF_INIT, *previous_name;19981999for(i = removed = extended =0; i < entries; i++) {2000if(cache[i]->ce_flags & CE_REMOVE)2001 removed++;20022003/* reduce extended entries if possible */2004 cache[i]->ce_flags &= ~CE_EXTENDED;2005if(cache[i]->ce_flags & CE_EXTENDED_FLAGS) {2006 extended++;2007 cache[i]->ce_flags |= CE_EXTENDED;2008}2009}20102011if(!istate->version) {2012 istate->version =get_index_format_default();2013if(getenv("GIT_TEST_SPLIT_INDEX"))2014init_split_index(istate);2015}20162017/* demote version 3 to version 2 when the latter suffices */2018if(istate->version ==3|| istate->version ==2)2019 istate->version = extended ?3:2;20202021 hdr_version = istate->version;20222023 hdr.hdr_signature =htonl(CACHE_SIGNATURE);2024 hdr.hdr_version =htonl(hdr_version);2025 hdr.hdr_entries =htonl(entries - removed);20262027git_SHA1_Init(&c);2028if(ce_write(&c, newfd, &hdr,sizeof(hdr)) <0)2029return-1;20302031 previous_name = (hdr_version ==4) ? &previous_name_buf : NULL;2032for(i =0; i < entries; i++) {2033struct cache_entry *ce = cache[i];2034if(ce->ce_flags & CE_REMOVE)2035continue;2036if(!ce_uptodate(ce) &&is_racy_timestamp(istate, ce))2037ce_smudge_racily_clean_entry(ce);2038if(is_null_sha1(ce->sha1)) {2039static const char msg[] ="cache entry has null sha1:%s";2040static int allow = -1;20412042if(allow <0)2043 allow =git_env_bool("GIT_ALLOW_NULL_SHA1",0);2044if(allow)2045warning(msg, ce->name);2046else2047returnerror(msg, ce->name);2048}2049if(ce_write_entry(&c, newfd, ce, previous_name) <0)2050return-1;2051}2052strbuf_release(&previous_name_buf);20532054/* Write extension data here */2055if(!strip_extensions && istate->split_index) {2056struct strbuf sb = STRBUF_INIT;20572058 err =write_link_extension(&sb, istate) <0||2059write_index_ext_header(&c, newfd, CACHE_EXT_LINK,2060 sb.len) <0||2061ce_write(&c, newfd, sb.buf, sb.len) <0;2062strbuf_release(&sb);2063if(err)2064return-1;2065}2066if(!strip_extensions && istate->cache_tree) {2067struct strbuf sb = STRBUF_INIT;20682069cache_tree_write(&sb, istate->cache_tree);2070 err =write_index_ext_header(&c, newfd, CACHE_EXT_TREE, sb.len) <02071||ce_write(&c, newfd, sb.buf, sb.len) <0;2072strbuf_release(&sb);2073if(err)2074return-1;2075}2076if(!strip_extensions && istate->resolve_undo) {2077struct strbuf sb = STRBUF_INIT;20782079resolve_undo_write(&sb, istate->resolve_undo);2080 err =write_index_ext_header(&c, newfd, CACHE_EXT_RESOLVE_UNDO,2081 sb.len) <02082||ce_write(&c, newfd, sb.buf, sb.len) <0;2083strbuf_release(&sb);2084if(err)2085return-1;2086}2087if(!strip_extensions && istate->untracked) {2088struct strbuf sb = STRBUF_INIT;20892090write_untracked_extension(&sb, istate->untracked);2091 err =write_index_ext_header(&c, newfd, CACHE_EXT_UNTRACKED,2092 sb.len) <0||2093ce_write(&c, newfd, sb.buf, sb.len) <0;2094strbuf_release(&sb);2095if(err)2096return-1;2097}20982099if(ce_flush(&c, newfd, istate->sha1) ||fstat(newfd, &st))2100return-1;2101 istate->timestamp.sec = (unsigned int)st.st_mtime;2102 istate->timestamp.nsec =ST_MTIME_NSEC(st);2103return0;2104}21052106voidset_alternate_index_output(const char*name)2107{2108 alternate_index_output = name;2109}21102111static intcommit_locked_index(struct lock_file *lk)2112{2113if(alternate_index_output)2114returncommit_lock_file_to(lk, alternate_index_output);2115else2116returncommit_lock_file(lk);2117}21182119static intdo_write_locked_index(struct index_state *istate,struct lock_file *lock,2120unsigned flags)2121{2122int ret =do_write_index(istate,get_lock_file_fd(lock),0);2123if(ret)2124return ret;2125assert((flags & (COMMIT_LOCK | CLOSE_LOCK)) !=2126(COMMIT_LOCK | CLOSE_LOCK));2127if(flags & COMMIT_LOCK)2128returncommit_locked_index(lock);2129else if(flags & CLOSE_LOCK)2130returnclose_lock_file(lock);2131else2132return ret;2133}21342135static intwrite_split_index(struct index_state *istate,2136struct lock_file *lock,2137unsigned flags)2138{2139int ret;2140prepare_to_write_split_index(istate);2141 ret =do_write_locked_index(istate, lock, flags);2142finish_writing_split_index(istate);2143return ret;2144}21452146static struct tempfile temporary_sharedindex;21472148static intwrite_shared_index(struct index_state *istate,2149struct lock_file *lock,unsigned flags)2150{2151struct split_index *si = istate->split_index;2152int fd, ret;21532154 fd =mks_tempfile(&temporary_sharedindex,git_path("sharedindex_XXXXXX"));2155if(fd <0) {2156hashclr(si->base_sha1);2157returndo_write_locked_index(istate, lock, flags);2158}2159move_cache_to_base_index(istate);2160 ret =do_write_index(si->base, fd,1);2161if(ret) {2162delete_tempfile(&temporary_sharedindex);2163return ret;2164}2165 ret =rename_tempfile(&temporary_sharedindex,2166git_path("sharedindex.%s",sha1_to_hex(si->base->sha1)));2167if(!ret)2168hashcpy(si->base_sha1, si->base->sha1);2169return ret;2170}21712172intwrite_locked_index(struct index_state *istate,struct lock_file *lock,2173unsigned flags)2174{2175struct split_index *si = istate->split_index;21762177if(!si || alternate_index_output ||2178(istate->cache_changed & ~EXTMASK)) {2179if(si)2180hashclr(si->base_sha1);2181returndo_write_locked_index(istate, lock, flags);2182}21832184if(getenv("GIT_TEST_SPLIT_INDEX")) {2185int v = si->base_sha1[0];2186if((v &15) <6)2187 istate->cache_changed |= SPLIT_INDEX_ORDERED;2188}2189if(istate->cache_changed & SPLIT_INDEX_ORDERED) {2190int ret =write_shared_index(istate, lock, flags);2191if(ret)2192return ret;2193}21942195returnwrite_split_index(istate, lock, flags);2196}21972198/*2199 * Read the index file that is potentially unmerged into given2200 * index_state, dropping any unmerged entries. Returns true if2201 * the index is unmerged. Callers who want to refuse to work2202 * from an unmerged state can call this and check its return value,2203 * instead of calling read_cache().2204 */2205intread_index_unmerged(struct index_state *istate)2206{2207int i;2208int unmerged =0;22092210read_index(istate);2211for(i =0; i < istate->cache_nr; i++) {2212struct cache_entry *ce = istate->cache[i];2213struct cache_entry *new_ce;2214int size, len;22152216if(!ce_stage(ce))2217continue;2218 unmerged =1;2219 len =ce_namelen(ce);2220 size =cache_entry_size(len);2221 new_ce =xcalloc(1, size);2222memcpy(new_ce->name, ce->name, len);2223 new_ce->ce_flags =create_ce_flags(0) | CE_CONFLICTED;2224 new_ce->ce_namelen = len;2225 new_ce->ce_mode = ce->ce_mode;2226if(add_index_entry(istate, new_ce,0))2227returnerror("%s: cannot drop to stage #0",2228 new_ce->name);2229}2230return unmerged;2231}22322233/*2234 * Returns 1 if the path is an "other" path with respect to2235 * the index; that is, the path is not mentioned in the index at all,2236 * either as a file, a directory with some files in the index,2237 * or as an unmerged entry.2238 *2239 * We helpfully remove a trailing "/" from directories so that2240 * the output of read_directory can be used as-is.2241 */2242intindex_name_is_other(const struct index_state *istate,const char*name,2243int namelen)2244{2245int pos;2246if(namelen && name[namelen -1] =='/')2247 namelen--;2248 pos =index_name_pos(istate, name, namelen);2249if(0<= pos)2250return0;/* exact match */2251 pos = -pos -1;2252if(pos < istate->cache_nr) {2253struct cache_entry *ce = istate->cache[pos];2254if(ce_namelen(ce) == namelen &&2255!memcmp(ce->name, name, namelen))2256return0;/* Yup, this one exists unmerged */2257}2258return1;2259}22602261void*read_blob_data_from_index(struct index_state *istate,const char*path,unsigned long*size)2262{2263int pos, len;2264unsigned long sz;2265enum object_type type;2266void*data;22672268 len =strlen(path);2269 pos =index_name_pos(istate, path, len);2270if(pos <0) {2271/*2272 * We might be in the middle of a merge, in which2273 * case we would read stage #2 (ours).2274 */2275int i;2276for(i = -pos -1;2277(pos <0&& i < istate->cache_nr &&2278!strcmp(istate->cache[i]->name, path));2279 i++)2280if(ce_stage(istate->cache[i]) ==2)2281 pos = i;2282}2283if(pos <0)2284return NULL;2285 data =read_sha1_file(istate->cache[pos]->sha1, &type, &sz);2286if(!data || type != OBJ_BLOB) {2287free(data);2288return NULL;2289}2290if(size)2291*size = sz;2292return data;2293}22942295voidstat_validity_clear(struct stat_validity *sv)2296{2297free(sv->sd);2298 sv->sd = NULL;2299}23002301intstat_validity_check(struct stat_validity *sv,const char*path)2302{2303struct stat st;23042305if(stat(path, &st) <0)2306return sv->sd == NULL;2307if(!sv->sd)2308return0;2309returnS_ISREG(st.st_mode) && !match_stat_data(sv->sd, &st);2310}23112312voidstat_validity_update(struct stat_validity *sv,int fd)2313{2314struct stat st;23152316if(fstat(fd, &st) <0|| !S_ISREG(st.st_mode))2317stat_validity_clear(sv);2318else{2319if(!sv->sd)2320 sv->sd =xcalloc(1,sizeof(struct stat_data));2321fill_stat_data(sv->sd, &st);2322}2323}