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"config.h" 9#include"tempfile.h" 10#include"lockfile.h" 11#include"cache-tree.h" 12#include"refs.h" 13#include"dir.h" 14#include"object-store.h" 15#include"tree.h" 16#include"commit.h" 17#include"blob.h" 18#include"resolve-undo.h" 19#include"strbuf.h" 20#include"varint.h" 21#include"split-index.h" 22#include"utf8.h" 23#include"fsmonitor.h" 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#define CACHE_EXT_FSMONITOR 0x46534D4E/* "FSMN" */ 44 45/* changes that can be kept in $GIT_DIR/index (basically all extensions) */ 46#define EXTMASK (RESOLVE_UNDO_CHANGED | CACHE_TREE_CHANGED | \ 47 CE_ENTRY_ADDED | CE_ENTRY_REMOVED | CE_ENTRY_CHANGED | \ 48 SPLIT_INDEX_ORDERED | UNTRACKED_CHANGED | FSMONITOR_CHANGED) 49 50 51/* 52 * This is an estimate of the pathname length in the index. We use 53 * this for V4 index files to guess the un-deltafied size of the index 54 * in memory because of pathname deltafication. This is not required 55 * for V2/V3 index formats because their pathnames are not compressed. 56 * If the initial amount of memory set aside is not sufficient, the 57 * mem pool will allocate extra memory. 58 */ 59#define CACHE_ENTRY_PATH_LENGTH 80 60 61staticinlinestruct cache_entry *mem_pool__ce_alloc(struct mem_pool *mem_pool,size_t len) 62{ 63struct cache_entry *ce; 64 ce =mem_pool_alloc(mem_pool,cache_entry_size(len)); 65 ce->mem_pool_allocated =1; 66return ce; 67} 68 69staticinlinestruct cache_entry *mem_pool__ce_calloc(struct mem_pool *mem_pool,size_t len) 70{ 71struct cache_entry * ce; 72 ce =mem_pool_calloc(mem_pool,1,cache_entry_size(len)); 73 ce->mem_pool_allocated =1; 74return ce; 75} 76 77static struct mem_pool *find_mem_pool(struct index_state *istate) 78{ 79struct mem_pool **pool_ptr; 80 81if(istate->split_index && istate->split_index->base) 82 pool_ptr = &istate->split_index->base->ce_mem_pool; 83else 84 pool_ptr = &istate->ce_mem_pool; 85 86if(!*pool_ptr) 87mem_pool_init(pool_ptr,0); 88 89return*pool_ptr; 90} 91 92struct index_state the_index; 93static const char*alternate_index_output; 94 95static voidset_index_entry(struct index_state *istate,int nr,struct cache_entry *ce) 96{ 97 istate->cache[nr] = ce; 98add_name_hash(istate, ce); 99} 100 101static voidreplace_index_entry(struct index_state *istate,int nr,struct cache_entry *ce) 102{ 103struct cache_entry *old = istate->cache[nr]; 104 105replace_index_entry_in_base(istate, old, ce); 106remove_name_hash(istate, old); 107discard_cache_entry(old); 108 ce->ce_flags &= ~CE_HASHED; 109set_index_entry(istate, nr, ce); 110 ce->ce_flags |= CE_UPDATE_IN_BASE; 111mark_fsmonitor_invalid(istate, ce); 112 istate->cache_changed |= CE_ENTRY_CHANGED; 113} 114 115voidrename_index_entry_at(struct index_state *istate,int nr,const char*new_name) 116{ 117struct cache_entry *old_entry = istate->cache[nr], *new_entry; 118int namelen =strlen(new_name); 119 120 new_entry =make_empty_cache_entry(istate, namelen); 121copy_cache_entry(new_entry, old_entry); 122 new_entry->ce_flags &= ~CE_HASHED; 123 new_entry->ce_namelen = namelen; 124 new_entry->index =0; 125memcpy(new_entry->name, new_name, namelen +1); 126 127cache_tree_invalidate_path(istate, old_entry->name); 128untracked_cache_remove_from_index(istate, old_entry->name); 129remove_index_entry_at(istate, nr); 130add_index_entry(istate, new_entry, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE); 131} 132 133voidfill_stat_data(struct stat_data *sd,struct stat *st) 134{ 135 sd->sd_ctime.sec = (unsigned int)st->st_ctime; 136 sd->sd_mtime.sec = (unsigned int)st->st_mtime; 137 sd->sd_ctime.nsec =ST_CTIME_NSEC(*st); 138 sd->sd_mtime.nsec =ST_MTIME_NSEC(*st); 139 sd->sd_dev = st->st_dev; 140 sd->sd_ino = st->st_ino; 141 sd->sd_uid = st->st_uid; 142 sd->sd_gid = st->st_gid; 143 sd->sd_size = st->st_size; 144} 145 146intmatch_stat_data(const struct stat_data *sd,struct stat *st) 147{ 148int changed =0; 149 150if(sd->sd_mtime.sec != (unsigned int)st->st_mtime) 151 changed |= MTIME_CHANGED; 152if(trust_ctime && check_stat && 153 sd->sd_ctime.sec != (unsigned int)st->st_ctime) 154 changed |= CTIME_CHANGED; 155 156#ifdef USE_NSEC 157if(check_stat && sd->sd_mtime.nsec !=ST_MTIME_NSEC(*st)) 158 changed |= MTIME_CHANGED; 159if(trust_ctime && check_stat && 160 sd->sd_ctime.nsec !=ST_CTIME_NSEC(*st)) 161 changed |= CTIME_CHANGED; 162#endif 163 164if(check_stat) { 165if(sd->sd_uid != (unsigned int) st->st_uid || 166 sd->sd_gid != (unsigned int) st->st_gid) 167 changed |= OWNER_CHANGED; 168if(sd->sd_ino != (unsigned int) st->st_ino) 169 changed |= INODE_CHANGED; 170} 171 172#ifdef USE_STDEV 173/* 174 * st_dev breaks on network filesystems where different 175 * clients will have different views of what "device" 176 * the filesystem is on 177 */ 178if(check_stat && sd->sd_dev != (unsigned int) st->st_dev) 179 changed |= INODE_CHANGED; 180#endif 181 182if(sd->sd_size != (unsigned int) st->st_size) 183 changed |= DATA_CHANGED; 184 185return changed; 186} 187 188/* 189 * This only updates the "non-critical" parts of the directory 190 * cache, ie the parts that aren't tracked by GIT, and only used 191 * to validate the cache. 192 */ 193voidfill_stat_cache_info(struct cache_entry *ce,struct stat *st) 194{ 195fill_stat_data(&ce->ce_stat_data, st); 196 197if(assume_unchanged) 198 ce->ce_flags |= CE_VALID; 199 200if(S_ISREG(st->st_mode)) { 201ce_mark_uptodate(ce); 202mark_fsmonitor_valid(ce); 203} 204} 205 206static intce_compare_data(const struct cache_entry *ce,struct stat *st) 207{ 208int match = -1; 209int fd =git_open_cloexec(ce->name, O_RDONLY); 210 211if(fd >=0) { 212struct object_id oid; 213if(!index_fd(&oid, fd, st, OBJ_BLOB, ce->name,0)) 214 match =oidcmp(&oid, &ce->oid); 215/* index_fd() closed the file descriptor already */ 216} 217return match; 218} 219 220static intce_compare_link(const struct cache_entry *ce,size_t expected_size) 221{ 222int match = -1; 223void*buffer; 224unsigned long size; 225enum object_type type; 226struct strbuf sb = STRBUF_INIT; 227 228if(strbuf_readlink(&sb, ce->name, expected_size)) 229return-1; 230 231 buffer =read_object_file(&ce->oid, &type, &size); 232if(buffer) { 233if(size == sb.len) 234 match =memcmp(buffer, sb.buf, size); 235free(buffer); 236} 237strbuf_release(&sb); 238return match; 239} 240 241static intce_compare_gitlink(const struct cache_entry *ce) 242{ 243struct object_id oid; 244 245/* 246 * We don't actually require that the .git directory 247 * under GITLINK directory be a valid git directory. It 248 * might even be missing (in case nobody populated that 249 * sub-project). 250 * 251 * If so, we consider it always to match. 252 */ 253if(resolve_gitlink_ref(ce->name,"HEAD", &oid) <0) 254return0; 255returnoidcmp(&oid, &ce->oid); 256} 257 258static intce_modified_check_fs(const struct cache_entry *ce,struct stat *st) 259{ 260switch(st->st_mode & S_IFMT) { 261case S_IFREG: 262if(ce_compare_data(ce, st)) 263return DATA_CHANGED; 264break; 265case S_IFLNK: 266if(ce_compare_link(ce,xsize_t(st->st_size))) 267return DATA_CHANGED; 268break; 269case S_IFDIR: 270if(S_ISGITLINK(ce->ce_mode)) 271returnce_compare_gitlink(ce) ? DATA_CHANGED :0; 272/* else fallthrough */ 273default: 274return TYPE_CHANGED; 275} 276return0; 277} 278 279static intce_match_stat_basic(const struct cache_entry *ce,struct stat *st) 280{ 281unsigned int changed =0; 282 283if(ce->ce_flags & CE_REMOVE) 284return MODE_CHANGED | DATA_CHANGED | TYPE_CHANGED; 285 286switch(ce->ce_mode & S_IFMT) { 287case S_IFREG: 288 changed |= !S_ISREG(st->st_mode) ? TYPE_CHANGED :0; 289/* We consider only the owner x bit to be relevant for 290 * "mode changes" 291 */ 292if(trust_executable_bit && 293(0100& (ce->ce_mode ^ st->st_mode))) 294 changed |= MODE_CHANGED; 295break; 296case S_IFLNK: 297if(!S_ISLNK(st->st_mode) && 298(has_symlinks || !S_ISREG(st->st_mode))) 299 changed |= TYPE_CHANGED; 300break; 301case S_IFGITLINK: 302/* We ignore most of the st_xxx fields for gitlinks */ 303if(!S_ISDIR(st->st_mode)) 304 changed |= TYPE_CHANGED; 305else if(ce_compare_gitlink(ce)) 306 changed |= DATA_CHANGED; 307return changed; 308default: 309die("internal error: ce_mode is%o", ce->ce_mode); 310} 311 312 changed |=match_stat_data(&ce->ce_stat_data, st); 313 314/* Racily smudged entry? */ 315if(!ce->ce_stat_data.sd_size) { 316if(!is_empty_blob_sha1(ce->oid.hash)) 317 changed |= DATA_CHANGED; 318} 319 320return changed; 321} 322 323static intis_racy_stat(const struct index_state *istate, 324const struct stat_data *sd) 325{ 326return(istate->timestamp.sec && 327#ifdef USE_NSEC 328/* nanosecond timestamped files can also be racy! */ 329(istate->timestamp.sec < sd->sd_mtime.sec || 330(istate->timestamp.sec == sd->sd_mtime.sec && 331 istate->timestamp.nsec <= sd->sd_mtime.nsec)) 332#else 333 istate->timestamp.sec <= sd->sd_mtime.sec 334#endif 335); 336} 337 338static intis_racy_timestamp(const struct index_state *istate, 339const struct cache_entry *ce) 340{ 341return(!S_ISGITLINK(ce->ce_mode) && 342is_racy_stat(istate, &ce->ce_stat_data)); 343} 344 345intmatch_stat_data_racy(const struct index_state *istate, 346const struct stat_data *sd,struct stat *st) 347{ 348if(is_racy_stat(istate, sd)) 349return MTIME_CHANGED; 350returnmatch_stat_data(sd, st); 351} 352 353intie_match_stat(struct index_state *istate, 354const struct cache_entry *ce,struct stat *st, 355unsigned int options) 356{ 357unsigned int changed; 358int ignore_valid = options & CE_MATCH_IGNORE_VALID; 359int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE; 360int assume_racy_is_modified = options & CE_MATCH_RACY_IS_DIRTY; 361int ignore_fsmonitor = options & CE_MATCH_IGNORE_FSMONITOR; 362 363if(!ignore_fsmonitor) 364refresh_fsmonitor(istate); 365/* 366 * If it's marked as always valid in the index, it's 367 * valid whatever the checked-out copy says. 368 * 369 * skip-worktree has the same effect with higher precedence 370 */ 371if(!ignore_skip_worktree &&ce_skip_worktree(ce)) 372return0; 373if(!ignore_valid && (ce->ce_flags & CE_VALID)) 374return0; 375if(!ignore_fsmonitor && (ce->ce_flags & CE_FSMONITOR_VALID)) 376return0; 377 378/* 379 * Intent-to-add entries have not been added, so the index entry 380 * by definition never matches what is in the work tree until it 381 * actually gets added. 382 */ 383if(ce_intent_to_add(ce)) 384return DATA_CHANGED | TYPE_CHANGED | MODE_CHANGED; 385 386 changed =ce_match_stat_basic(ce, st); 387 388/* 389 * Within 1 second of this sequence: 390 * echo xyzzy >file && git-update-index --add file 391 * running this command: 392 * echo frotz >file 393 * would give a falsely clean cache entry. The mtime and 394 * length match the cache, and other stat fields do not change. 395 * 396 * We could detect this at update-index time (the cache entry 397 * being registered/updated records the same time as "now") 398 * and delay the return from git-update-index, but that would 399 * effectively mean we can make at most one commit per second, 400 * which is not acceptable. Instead, we check cache entries 401 * whose mtime are the same as the index file timestamp more 402 * carefully than others. 403 */ 404if(!changed &&is_racy_timestamp(istate, ce)) { 405if(assume_racy_is_modified) 406 changed |= DATA_CHANGED; 407else 408 changed |=ce_modified_check_fs(ce, st); 409} 410 411return changed; 412} 413 414intie_modified(struct index_state *istate, 415const struct cache_entry *ce, 416struct stat *st,unsigned int options) 417{ 418int changed, changed_fs; 419 420 changed =ie_match_stat(istate, ce, st, options); 421if(!changed) 422return0; 423/* 424 * If the mode or type has changed, there's no point in trying 425 * to refresh the entry - it's not going to match 426 */ 427if(changed & (MODE_CHANGED | TYPE_CHANGED)) 428return changed; 429 430/* 431 * Immediately after read-tree or update-index --cacheinfo, 432 * the length field is zero, as we have never even read the 433 * lstat(2) information once, and we cannot trust DATA_CHANGED 434 * returned by ie_match_stat() which in turn was returned by 435 * ce_match_stat_basic() to signal that the filesize of the 436 * blob changed. We have to actually go to the filesystem to 437 * see if the contents match, and if so, should answer "unchanged". 438 * 439 * The logic does not apply to gitlinks, as ce_match_stat_basic() 440 * already has checked the actual HEAD from the filesystem in the 441 * subproject. If ie_match_stat() already said it is different, 442 * then we know it is. 443 */ 444if((changed & DATA_CHANGED) && 445(S_ISGITLINK(ce->ce_mode) || ce->ce_stat_data.sd_size !=0)) 446return changed; 447 448 changed_fs =ce_modified_check_fs(ce, st); 449if(changed_fs) 450return changed | changed_fs; 451return0; 452} 453 454intbase_name_compare(const char*name1,int len1,int mode1, 455const char*name2,int len2,int mode2) 456{ 457unsigned char c1, c2; 458int len = len1 < len2 ? len1 : len2; 459int cmp; 460 461 cmp =memcmp(name1, name2, len); 462if(cmp) 463return cmp; 464 c1 = name1[len]; 465 c2 = name2[len]; 466if(!c1 &&S_ISDIR(mode1)) 467 c1 ='/'; 468if(!c2 &&S_ISDIR(mode2)) 469 c2 ='/'; 470return(c1 < c2) ? -1: (c1 > c2) ?1:0; 471} 472 473/* 474 * df_name_compare() is identical to base_name_compare(), except it 475 * compares conflicting directory/file entries as equal. Note that 476 * while a directory name compares as equal to a regular file, they 477 * then individually compare _differently_ to a filename that has 478 * a dot after the basename (because '\0' < '.' < '/'). 479 * 480 * This is used by routines that want to traverse the git namespace 481 * but then handle conflicting entries together when possible. 482 */ 483intdf_name_compare(const char*name1,int len1,int mode1, 484const char*name2,int len2,int mode2) 485{ 486int len = len1 < len2 ? len1 : len2, cmp; 487unsigned char c1, c2; 488 489 cmp =memcmp(name1, name2, len); 490if(cmp) 491return cmp; 492/* Directories and files compare equal (same length, same name) */ 493if(len1 == len2) 494return0; 495 c1 = name1[len]; 496if(!c1 &&S_ISDIR(mode1)) 497 c1 ='/'; 498 c2 = name2[len]; 499if(!c2 &&S_ISDIR(mode2)) 500 c2 ='/'; 501if(c1 =='/'&& !c2) 502return0; 503if(c2 =='/'&& !c1) 504return0; 505return c1 - c2; 506} 507 508intname_compare(const char*name1,size_t len1,const char*name2,size_t len2) 509{ 510size_t min_len = (len1 < len2) ? len1 : len2; 511int cmp =memcmp(name1, name2, min_len); 512if(cmp) 513return cmp; 514if(len1 < len2) 515return-1; 516if(len1 > len2) 517return1; 518return0; 519} 520 521intcache_name_stage_compare(const char*name1,int len1,int stage1,const char*name2,int len2,int stage2) 522{ 523int cmp; 524 525 cmp =name_compare(name1, len1, name2, len2); 526if(cmp) 527return cmp; 528 529if(stage1 < stage2) 530return-1; 531if(stage1 > stage2) 532return1; 533return0; 534} 535 536static intindex_name_stage_pos(const struct index_state *istate,const char*name,int namelen,int stage) 537{ 538int first, last; 539 540 first =0; 541 last = istate->cache_nr; 542while(last > first) { 543int next = (last + first) >>1; 544struct cache_entry *ce = istate->cache[next]; 545int cmp =cache_name_stage_compare(name, namelen, stage, ce->name,ce_namelen(ce),ce_stage(ce)); 546if(!cmp) 547return next; 548if(cmp <0) { 549 last = next; 550continue; 551} 552 first = next+1; 553} 554return-first-1; 555} 556 557intindex_name_pos(const struct index_state *istate,const char*name,int namelen) 558{ 559returnindex_name_stage_pos(istate, name, namelen,0); 560} 561 562intremove_index_entry_at(struct index_state *istate,int pos) 563{ 564struct cache_entry *ce = istate->cache[pos]; 565 566record_resolve_undo(istate, ce); 567remove_name_hash(istate, ce); 568save_or_free_index_entry(istate, ce); 569 istate->cache_changed |= CE_ENTRY_REMOVED; 570 istate->cache_nr--; 571if(pos >= istate->cache_nr) 572return0; 573MOVE_ARRAY(istate->cache + pos, istate->cache + pos +1, 574 istate->cache_nr - pos); 575return1; 576} 577 578/* 579 * Remove all cache entries marked for removal, that is where 580 * CE_REMOVE is set in ce_flags. This is much more effective than 581 * calling remove_index_entry_at() for each entry to be removed. 582 */ 583voidremove_marked_cache_entries(struct index_state *istate) 584{ 585struct cache_entry **ce_array = istate->cache; 586unsigned int i, j; 587 588for(i = j =0; i < istate->cache_nr; i++) { 589if(ce_array[i]->ce_flags & CE_REMOVE) { 590remove_name_hash(istate, ce_array[i]); 591save_or_free_index_entry(istate, ce_array[i]); 592} 593else 594 ce_array[j++] = ce_array[i]; 595} 596if(j == istate->cache_nr) 597return; 598 istate->cache_changed |= CE_ENTRY_REMOVED; 599 istate->cache_nr = j; 600} 601 602intremove_file_from_index(struct index_state *istate,const char*path) 603{ 604int pos =index_name_pos(istate, path,strlen(path)); 605if(pos <0) 606 pos = -pos-1; 607cache_tree_invalidate_path(istate, path); 608untracked_cache_remove_from_index(istate, path); 609while(pos < istate->cache_nr && !strcmp(istate->cache[pos]->name, path)) 610remove_index_entry_at(istate, pos); 611return0; 612} 613 614static intcompare_name(struct cache_entry *ce,const char*path,int namelen) 615{ 616return namelen !=ce_namelen(ce) ||memcmp(path, ce->name, namelen); 617} 618 619static intindex_name_pos_also_unmerged(struct index_state *istate, 620const char*path,int namelen) 621{ 622int pos =index_name_pos(istate, path, namelen); 623struct cache_entry *ce; 624 625if(pos >=0) 626return pos; 627 628/* maybe unmerged? */ 629 pos = -1- pos; 630if(pos >= istate->cache_nr || 631compare_name((ce = istate->cache[pos]), path, namelen)) 632return-1; 633 634/* order of preference: stage 2, 1, 3 */ 635if(ce_stage(ce) ==1&& pos +1< istate->cache_nr && 636ce_stage((ce = istate->cache[pos +1])) ==2&& 637!compare_name(ce, path, namelen)) 638 pos++; 639return pos; 640} 641 642static intdifferent_name(struct cache_entry *ce,struct cache_entry *alias) 643{ 644int len =ce_namelen(ce); 645returnce_namelen(alias) != len ||memcmp(ce->name, alias->name, len); 646} 647 648/* 649 * If we add a filename that aliases in the cache, we will use the 650 * name that we already have - but we don't want to update the same 651 * alias twice, because that implies that there were actually two 652 * different files with aliasing names! 653 * 654 * So we use the CE_ADDED flag to verify that the alias was an old 655 * one before we accept it as 656 */ 657static struct cache_entry *create_alias_ce(struct index_state *istate, 658struct cache_entry *ce, 659struct cache_entry *alias) 660{ 661int len; 662struct cache_entry *new_entry; 663 664if(alias->ce_flags & CE_ADDED) 665die("Will not add file alias '%s' ('%s' already exists in index)", ce->name, alias->name); 666 667/* Ok, create the new entry using the name of the existing alias */ 668 len =ce_namelen(alias); 669 new_entry =make_empty_cache_entry(istate, len); 670memcpy(new_entry->name, alias->name, len); 671copy_cache_entry(new_entry, ce); 672save_or_free_index_entry(istate, ce); 673return new_entry; 674} 675 676voidset_object_name_for_intent_to_add_entry(struct cache_entry *ce) 677{ 678struct object_id oid; 679if(write_object_file("",0, blob_type, &oid)) 680die("cannot create an empty blob in the object database"); 681oidcpy(&ce->oid, &oid); 682} 683 684intadd_to_index(struct index_state *istate,const char*path,struct stat *st,int flags) 685{ 686int namelen, was_same; 687 mode_t st_mode = st->st_mode; 688struct cache_entry *ce, *alias = NULL; 689unsigned ce_option = CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE|CE_MATCH_RACY_IS_DIRTY; 690int verbose = flags & (ADD_CACHE_VERBOSE | ADD_CACHE_PRETEND); 691int pretend = flags & ADD_CACHE_PRETEND; 692int intent_only = flags & ADD_CACHE_INTENT; 693int add_option = (ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE| 694(intent_only ? ADD_CACHE_NEW_ONLY :0)); 695int newflags = HASH_WRITE_OBJECT; 696 697if(flags & HASH_RENORMALIZE) 698 newflags |= HASH_RENORMALIZE; 699 700if(!S_ISREG(st_mode) && !S_ISLNK(st_mode) && !S_ISDIR(st_mode)) 701returnerror("%s: can only add regular files, symbolic links or git-directories", path); 702 703 namelen =strlen(path); 704if(S_ISDIR(st_mode)) { 705while(namelen && path[namelen-1] =='/') 706 namelen--; 707} 708 ce =make_empty_cache_entry(istate, namelen); 709memcpy(ce->name, path, namelen); 710 ce->ce_namelen = namelen; 711if(!intent_only) 712fill_stat_cache_info(ce, st); 713else 714 ce->ce_flags |= CE_INTENT_TO_ADD; 715 716 717if(trust_executable_bit && has_symlinks) { 718 ce->ce_mode =create_ce_mode(st_mode); 719}else{ 720/* If there is an existing entry, pick the mode bits and type 721 * from it, otherwise assume unexecutable regular file. 722 */ 723struct cache_entry *ent; 724int pos =index_name_pos_also_unmerged(istate, path, namelen); 725 726 ent = (0<= pos) ? istate->cache[pos] : NULL; 727 ce->ce_mode =ce_mode_from_stat(ent, st_mode); 728} 729 730/* When core.ignorecase=true, determine if a directory of the same name but differing 731 * case already exists within the Git repository. If it does, ensure the directory 732 * case of the file being added to the repository matches (is folded into) the existing 733 * entry's directory case. 734 */ 735if(ignore_case) { 736adjust_dirname_case(istate, ce->name); 737} 738if(!(flags & HASH_RENORMALIZE)) { 739 alias =index_file_exists(istate, ce->name, 740ce_namelen(ce), ignore_case); 741if(alias && 742!ce_stage(alias) && 743!ie_match_stat(istate, alias, st, ce_option)) { 744/* Nothing changed, really */ 745if(!S_ISGITLINK(alias->ce_mode)) 746ce_mark_uptodate(alias); 747 alias->ce_flags |= CE_ADDED; 748 749discard_cache_entry(ce); 750return0; 751} 752} 753if(!intent_only) { 754if(index_path(&ce->oid, path, st, newflags)) { 755discard_cache_entry(ce); 756returnerror("unable to index file%s", path); 757} 758}else 759set_object_name_for_intent_to_add_entry(ce); 760 761if(ignore_case && alias &&different_name(ce, alias)) 762 ce =create_alias_ce(istate, ce, alias); 763 ce->ce_flags |= CE_ADDED; 764 765/* It was suspected to be racily clean, but it turns out to be Ok */ 766 was_same = (alias && 767!ce_stage(alias) && 768!oidcmp(&alias->oid, &ce->oid) && 769 ce->ce_mode == alias->ce_mode); 770 771if(pretend) 772discard_cache_entry(ce); 773else if(add_index_entry(istate, ce, add_option)) { 774discard_cache_entry(ce); 775returnerror("unable to add%sto index", path); 776} 777if(verbose && !was_same) 778printf("add '%s'\n", path); 779return0; 780} 781 782intadd_file_to_index(struct index_state *istate,const char*path,int flags) 783{ 784struct stat st; 785if(lstat(path, &st)) 786die_errno("unable to stat '%s'", path); 787returnadd_to_index(istate, path, &st, flags); 788} 789 790struct cache_entry *make_empty_cache_entry(struct index_state *istate,size_t len) 791{ 792returnmem_pool__ce_calloc(find_mem_pool(istate), len); 793} 794 795struct cache_entry *make_empty_transient_cache_entry(size_t len) 796{ 797returnxcalloc(1,cache_entry_size(len)); 798} 799 800struct cache_entry *make_cache_entry(struct index_state *istate, 801unsigned int mode, 802const struct object_id *oid, 803const char*path, 804int stage, 805unsigned int refresh_options) 806{ 807struct cache_entry *ce, *ret; 808int len; 809 810if(!verify_path(path, mode)) { 811error("Invalid path '%s'", path); 812return NULL; 813} 814 815 len =strlen(path); 816 ce =make_empty_cache_entry(istate, len); 817 818oidcpy(&ce->oid, oid); 819memcpy(ce->name, path, len); 820 ce->ce_flags =create_ce_flags(stage); 821 ce->ce_namelen = len; 822 ce->ce_mode =create_ce_mode(mode); 823 824 ret =refresh_cache_entry(&the_index, ce, refresh_options); 825if(ret != ce) 826discard_cache_entry(ce); 827return ret; 828} 829 830struct cache_entry *make_transient_cache_entry(unsigned int mode,const struct object_id *oid, 831const char*path,int stage) 832{ 833struct cache_entry *ce; 834int len; 835 836if(!verify_path(path, mode)) { 837error("Invalid path '%s'", path); 838return NULL; 839} 840 841 len =strlen(path); 842 ce =make_empty_transient_cache_entry(len); 843 844oidcpy(&ce->oid, oid); 845memcpy(ce->name, path, len); 846 ce->ce_flags =create_ce_flags(stage); 847 ce->ce_namelen = len; 848 ce->ce_mode =create_ce_mode(mode); 849 850return ce; 851} 852 853/* 854 * Chmod an index entry with either +x or -x. 855 * 856 * Returns -1 if the chmod for the particular cache entry failed (if it's 857 * not a regular file), -2 if an invalid flip argument is passed in, 0 858 * otherwise. 859 */ 860intchmod_index_entry(struct index_state *istate,struct cache_entry *ce, 861char flip) 862{ 863if(!S_ISREG(ce->ce_mode)) 864return-1; 865switch(flip) { 866case'+': 867 ce->ce_mode |=0111; 868break; 869case'-': 870 ce->ce_mode &= ~0111; 871break; 872default: 873return-2; 874} 875cache_tree_invalidate_path(istate, ce->name); 876 ce->ce_flags |= CE_UPDATE_IN_BASE; 877mark_fsmonitor_invalid(istate, ce); 878 istate->cache_changed |= CE_ENTRY_CHANGED; 879 880return0; 881} 882 883intce_same_name(const struct cache_entry *a,const struct cache_entry *b) 884{ 885int len =ce_namelen(a); 886returnce_namelen(b) == len && !memcmp(a->name, b->name, len); 887} 888 889/* 890 * We fundamentally don't like some paths: we don't want 891 * dot or dot-dot anywhere, and for obvious reasons don't 892 * want to recurse into ".git" either. 893 * 894 * Also, we don't want double slashes or slashes at the 895 * end that can make pathnames ambiguous. 896 */ 897static intverify_dotfile(const char*rest,unsigned mode) 898{ 899/* 900 * The first character was '.', but that 901 * has already been discarded, we now test 902 * the rest. 903 */ 904 905/* "." is not allowed */ 906if(*rest =='\0'||is_dir_sep(*rest)) 907return0; 908 909switch(*rest) { 910/* 911 * ".git" followed by NUL or slash is bad. Note that we match 912 * case-insensitively here, even if ignore_case is not set. 913 * This outlaws ".GIT" everywhere out of an abundance of caution, 914 * since there's really no good reason to allow it. 915 * 916 * Once we've seen ".git", we can also find ".gitmodules", etc (also 917 * case-insensitively). 918 */ 919case'g': 920case'G': 921if(rest[1] !='i'&& rest[1] !='I') 922break; 923if(rest[2] !='t'&& rest[2] !='T') 924break; 925if(rest[3] =='\0'||is_dir_sep(rest[3])) 926return0; 927if(S_ISLNK(mode)) { 928 rest +=3; 929if(skip_iprefix(rest,"modules", &rest) && 930(*rest =='\0'||is_dir_sep(*rest))) 931return0; 932} 933break; 934case'.': 935if(rest[1] =='\0'||is_dir_sep(rest[1])) 936return0; 937} 938return1; 939} 940 941intverify_path(const char*path,unsigned mode) 942{ 943char c; 944 945if(has_dos_drive_prefix(path)) 946return0; 947 948goto inside; 949for(;;) { 950if(!c) 951return1; 952if(is_dir_sep(c)) { 953inside: 954if(protect_hfs) { 955if(is_hfs_dotgit(path)) 956return0; 957if(S_ISLNK(mode)) { 958if(is_hfs_dotgitmodules(path)) 959return0; 960} 961} 962if(protect_ntfs) { 963if(is_ntfs_dotgit(path)) 964return0; 965if(S_ISLNK(mode)) { 966if(is_ntfs_dotgitmodules(path)) 967return0; 968} 969} 970 971 c = *path++; 972if((c =='.'&& !verify_dotfile(path, mode)) || 973is_dir_sep(c) || c =='\0') 974return0; 975} 976 c = *path++; 977} 978} 979 980/* 981 * Do we have another file that has the beginning components being a 982 * proper superset of the name we're trying to add? 983 */ 984static inthas_file_name(struct index_state *istate, 985const struct cache_entry *ce,int pos,int ok_to_replace) 986{ 987int retval =0; 988int len =ce_namelen(ce); 989int stage =ce_stage(ce); 990const char*name = ce->name; 991 992while(pos < istate->cache_nr) { 993struct cache_entry *p = istate->cache[pos++]; 994 995if(len >=ce_namelen(p)) 996break; 997if(memcmp(name, p->name, len)) 998break; 999if(ce_stage(p) != stage)1000continue;1001if(p->name[len] !='/')1002continue;1003if(p->ce_flags & CE_REMOVE)1004continue;1005 retval = -1;1006if(!ok_to_replace)1007break;1008remove_index_entry_at(istate, --pos);1009}1010return retval;1011}101210131014/*1015 * Like strcmp(), but also return the offset of the first change.1016 * If strings are equal, return the length.1017 */1018intstrcmp_offset(const char*s1,const char*s2,size_t*first_change)1019{1020size_t k;10211022if(!first_change)1023returnstrcmp(s1, s2);10241025for(k =0; s1[k] == s2[k]; k++)1026if(s1[k] =='\0')1027break;10281029*first_change = k;1030return(unsigned char)s1[k] - (unsigned char)s2[k];1031}10321033/*1034 * Do we have another file with a pathname that is a proper1035 * subset of the name we're trying to add?1036 *1037 * That is, is there another file in the index with a path1038 * that matches a sub-directory in the given entry?1039 */1040static inthas_dir_name(struct index_state *istate,1041const struct cache_entry *ce,int pos,int ok_to_replace)1042{1043int retval =0;1044int stage =ce_stage(ce);1045const char*name = ce->name;1046const char*slash = name +ce_namelen(ce);1047size_t len_eq_last;1048int cmp_last =0;10491050/*1051 * We are frequently called during an iteration on a sorted1052 * list of pathnames and while building a new index. Therefore,1053 * there is a high probability that this entry will eventually1054 * be appended to the index, rather than inserted in the middle.1055 * If we can confirm that, we can avoid binary searches on the1056 * components of the pathname.1057 *1058 * Compare the entry's full path with the last path in the index.1059 */1060if(istate->cache_nr >0) {1061 cmp_last =strcmp_offset(name,1062 istate->cache[istate->cache_nr -1]->name,1063&len_eq_last);1064if(cmp_last >0) {1065if(len_eq_last ==0) {1066/*1067 * The entry sorts AFTER the last one in the1068 * index and their paths have no common prefix,1069 * so there cannot be a F/D conflict.1070 */1071return retval;1072}else{1073/*1074 * The entry sorts AFTER the last one in the1075 * index, but has a common prefix. Fall through1076 * to the loop below to disect the entry's path1077 * and see where the difference is.1078 */1079}1080}else if(cmp_last ==0) {1081/*1082 * The entry exactly matches the last one in the1083 * index, but because of multiple stage and CE_REMOVE1084 * items, we fall through and let the regular search1085 * code handle it.1086 */1087}1088}10891090for(;;) {1091size_t len;10921093for(;;) {1094if(*--slash =='/')1095break;1096if(slash <= ce->name)1097return retval;1098}1099 len = slash - name;11001101if(cmp_last >0) {1102/*1103 * (len + 1) is a directory boundary (including1104 * the trailing slash). And since the loop is1105 * decrementing "slash", the first iteration is1106 * the longest directory prefix; subsequent1107 * iterations consider parent directories.1108 */11091110if(len +1<= len_eq_last) {1111/*1112 * The directory prefix (including the trailing1113 * slash) also appears as a prefix in the last1114 * entry, so the remainder cannot collide (because1115 * strcmp said the whole path was greater).1116 *1117 * EQ: last: xxx/A1118 * this: xxx/B1119 *1120 * LT: last: xxx/file_A1121 * this: xxx/file_B1122 */1123return retval;1124}11251126if(len > len_eq_last) {1127/*1128 * This part of the directory prefix (excluding1129 * the trailing slash) is longer than the known1130 * equal portions, so this sub-directory cannot1131 * collide with a file.1132 *1133 * GT: last: xxxA1134 * this: xxxB/file1135 */1136return retval;1137}11381139if(istate->cache_nr >0&&1140ce_namelen(istate->cache[istate->cache_nr -1]) > len) {1141/*1142 * The directory prefix lines up with part of1143 * a longer file or directory name, but sorts1144 * after it, so this sub-directory cannot1145 * collide with a file.1146 *1147 * last: xxx/yy-file (because '-' sorts before '/')1148 * this: xxx/yy/abc1149 */1150return retval;1151}11521153/*1154 * This is a possible collision. Fall through and1155 * let the regular search code handle it.1156 *1157 * last: xxx1158 * this: xxx/file1159 */1160}11611162 pos =index_name_stage_pos(istate, name, len, stage);1163if(pos >=0) {1164/*1165 * Found one, but not so fast. This could1166 * be a marker that says "I was here, but1167 * I am being removed". Such an entry is1168 * not a part of the resulting tree, and1169 * it is Ok to have a directory at the same1170 * path.1171 */1172if(!(istate->cache[pos]->ce_flags & CE_REMOVE)) {1173 retval = -1;1174if(!ok_to_replace)1175break;1176remove_index_entry_at(istate, pos);1177continue;1178}1179}1180else1181 pos = -pos-1;11821183/*1184 * Trivial optimization: if we find an entry that1185 * already matches the sub-directory, then we know1186 * we're ok, and we can exit.1187 */1188while(pos < istate->cache_nr) {1189struct cache_entry *p = istate->cache[pos];1190if((ce_namelen(p) <= len) ||1191(p->name[len] !='/') ||1192memcmp(p->name, name, len))1193break;/* not our subdirectory */1194if(ce_stage(p) == stage && !(p->ce_flags & CE_REMOVE))1195/*1196 * p is at the same stage as our entry, and1197 * is a subdirectory of what we are looking1198 * at, so we cannot have conflicts at our1199 * level or anything shorter.1200 */1201return retval;1202 pos++;1203}1204}1205return retval;1206}12071208/* We may be in a situation where we already have path/file and path1209 * is being added, or we already have path and path/file is being1210 * added. Either one would result in a nonsense tree that has path1211 * twice when git-write-tree tries to write it out. Prevent it.1212 *1213 * If ok-to-replace is specified, we remove the conflicting entries1214 * from the cache so the caller should recompute the insert position.1215 * When this happens, we return non-zero.1216 */1217static intcheck_file_directory_conflict(struct index_state *istate,1218const struct cache_entry *ce,1219int pos,int ok_to_replace)1220{1221int retval;12221223/*1224 * When ce is an "I am going away" entry, we allow it to be added1225 */1226if(ce->ce_flags & CE_REMOVE)1227return0;12281229/*1230 * We check if the path is a sub-path of a subsequent pathname1231 * first, since removing those will not change the position1232 * in the array.1233 */1234 retval =has_file_name(istate, ce, pos, ok_to_replace);12351236/*1237 * Then check if the path might have a clashing sub-directory1238 * before it.1239 */1240return retval +has_dir_name(istate, ce, pos, ok_to_replace);1241}12421243static intadd_index_entry_with_check(struct index_state *istate,struct cache_entry *ce,int option)1244{1245int pos;1246int ok_to_add = option & ADD_CACHE_OK_TO_ADD;1247int ok_to_replace = option & ADD_CACHE_OK_TO_REPLACE;1248int skip_df_check = option & ADD_CACHE_SKIP_DFCHECK;1249int new_only = option & ADD_CACHE_NEW_ONLY;12501251if(!(option & ADD_CACHE_KEEP_CACHE_TREE))1252cache_tree_invalidate_path(istate, ce->name);12531254/*1255 * If this entry's path sorts after the last entry in the index,1256 * we can avoid searching for it.1257 */1258if(istate->cache_nr >0&&1259strcmp(ce->name, istate->cache[istate->cache_nr -1]->name) >0)1260 pos = -istate->cache_nr -1;1261else1262 pos =index_name_stage_pos(istate, ce->name,ce_namelen(ce),ce_stage(ce));12631264/* existing match? Just replace it. */1265if(pos >=0) {1266if(!new_only)1267replace_index_entry(istate, pos, ce);1268return0;1269}1270 pos = -pos-1;12711272if(!(option & ADD_CACHE_KEEP_CACHE_TREE))1273untracked_cache_add_to_index(istate, ce->name);12741275/*1276 * Inserting a merged entry ("stage 0") into the index1277 * will always replace all non-merged entries..1278 */1279if(pos < istate->cache_nr &&ce_stage(ce) ==0) {1280while(ce_same_name(istate->cache[pos], ce)) {1281 ok_to_add =1;1282if(!remove_index_entry_at(istate, pos))1283break;1284}1285}12861287if(!ok_to_add)1288return-1;1289if(!verify_path(ce->name, ce->ce_mode))1290returnerror("Invalid path '%s'", ce->name);12911292if(!skip_df_check &&1293check_file_directory_conflict(istate, ce, pos, ok_to_replace)) {1294if(!ok_to_replace)1295returnerror("'%s' appears as both a file and as a directory",1296 ce->name);1297 pos =index_name_stage_pos(istate, ce->name,ce_namelen(ce),ce_stage(ce));1298 pos = -pos-1;1299}1300return pos +1;1301}13021303intadd_index_entry(struct index_state *istate,struct cache_entry *ce,int option)1304{1305int pos;13061307if(option & ADD_CACHE_JUST_APPEND)1308 pos = istate->cache_nr;1309else{1310int ret;1311 ret =add_index_entry_with_check(istate, ce, option);1312if(ret <=0)1313return ret;1314 pos = ret -1;1315}13161317/* Make sure the array is big enough .. */1318ALLOC_GROW(istate->cache, istate->cache_nr +1, istate->cache_alloc);13191320/* Add it in.. */1321 istate->cache_nr++;1322if(istate->cache_nr > pos +1)1323MOVE_ARRAY(istate->cache + pos +1, istate->cache + pos,1324 istate->cache_nr - pos -1);1325set_index_entry(istate, pos, ce);1326 istate->cache_changed |= CE_ENTRY_ADDED;1327return0;1328}13291330/*1331 * "refresh" does not calculate a new sha1 file or bring the1332 * cache up-to-date for mode/content changes. But what it1333 * _does_ do is to "re-match" the stat information of a file1334 * with the cache, so that you can refresh the cache for a1335 * file that hasn't been changed but where the stat entry is1336 * out of date.1337 *1338 * For example, you'd want to do this after doing a "git-read-tree",1339 * to link up the stat cache details with the proper files.1340 */1341static struct cache_entry *refresh_cache_ent(struct index_state *istate,1342struct cache_entry *ce,1343unsigned int options,int*err,1344int*changed_ret)1345{1346struct stat st;1347struct cache_entry *updated;1348int changed;1349int refresh = options & CE_MATCH_REFRESH;1350int ignore_valid = options & CE_MATCH_IGNORE_VALID;1351int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE;1352int ignore_missing = options & CE_MATCH_IGNORE_MISSING;1353int ignore_fsmonitor = options & CE_MATCH_IGNORE_FSMONITOR;13541355if(!refresh ||ce_uptodate(ce))1356return ce;13571358if(!ignore_fsmonitor)1359refresh_fsmonitor(istate);1360/*1361 * CE_VALID or CE_SKIP_WORKTREE means the user promised us1362 * that the change to the work tree does not matter and told1363 * us not to worry.1364 */1365if(!ignore_skip_worktree &&ce_skip_worktree(ce)) {1366ce_mark_uptodate(ce);1367return ce;1368}1369if(!ignore_valid && (ce->ce_flags & CE_VALID)) {1370ce_mark_uptodate(ce);1371return ce;1372}1373if(!ignore_fsmonitor && (ce->ce_flags & CE_FSMONITOR_VALID)) {1374ce_mark_uptodate(ce);1375return ce;1376}13771378if(has_symlink_leading_path(ce->name,ce_namelen(ce))) {1379if(ignore_missing)1380return ce;1381if(err)1382*err = ENOENT;1383return NULL;1384}13851386if(lstat(ce->name, &st) <0) {1387if(ignore_missing && errno == ENOENT)1388return ce;1389if(err)1390*err = errno;1391return NULL;1392}13931394 changed =ie_match_stat(istate, ce, &st, options);1395if(changed_ret)1396*changed_ret = changed;1397if(!changed) {1398/*1399 * The path is unchanged. If we were told to ignore1400 * valid bit, then we did the actual stat check and1401 * found that the entry is unmodified. If the entry1402 * is not marked VALID, this is the place to mark it1403 * valid again, under "assume unchanged" mode.1404 */1405if(ignore_valid && assume_unchanged &&1406!(ce->ce_flags & CE_VALID))1407;/* mark this one VALID again */1408else{1409/*1410 * We do not mark the index itself "modified"1411 * because CE_UPTODATE flag is in-core only;1412 * we are not going to write this change out.1413 */1414if(!S_ISGITLINK(ce->ce_mode)) {1415ce_mark_uptodate(ce);1416mark_fsmonitor_valid(ce);1417}1418return ce;1419}1420}14211422if(ie_modified(istate, ce, &st, options)) {1423if(err)1424*err = EINVAL;1425return NULL;1426}14271428 updated =make_empty_cache_entry(istate,ce_namelen(ce));1429copy_cache_entry(updated, ce);1430memcpy(updated->name, ce->name, ce->ce_namelen +1);1431fill_stat_cache_info(updated, &st);1432/*1433 * If ignore_valid is not set, we should leave CE_VALID bit1434 * alone. Otherwise, paths marked with --no-assume-unchanged1435 * (i.e. things to be edited) will reacquire CE_VALID bit1436 * automatically, which is not really what we want.1437 */1438if(!ignore_valid && assume_unchanged &&1439!(ce->ce_flags & CE_VALID))1440 updated->ce_flags &= ~CE_VALID;14411442/* istate->cache_changed is updated in the caller */1443return updated;1444}14451446static voidshow_file(const char* fmt,const char* name,int in_porcelain,1447int* first,const char*header_msg)1448{1449if(in_porcelain && *first && header_msg) {1450printf("%s\n", header_msg);1451*first =0;1452}1453printf(fmt, name);1454}14551456intrefresh_index(struct index_state *istate,unsigned int flags,1457const struct pathspec *pathspec,1458char*seen,const char*header_msg)1459{1460int i;1461int has_errors =0;1462int really = (flags & REFRESH_REALLY) !=0;1463int allow_unmerged = (flags & REFRESH_UNMERGED) !=0;1464int quiet = (flags & REFRESH_QUIET) !=0;1465int not_new = (flags & REFRESH_IGNORE_MISSING) !=0;1466int ignore_submodules = (flags & REFRESH_IGNORE_SUBMODULES) !=0;1467int first =1;1468int in_porcelain = (flags & REFRESH_IN_PORCELAIN);1469unsigned int options = (CE_MATCH_REFRESH |1470(really ? CE_MATCH_IGNORE_VALID :0) |1471(not_new ? CE_MATCH_IGNORE_MISSING :0));1472const char*modified_fmt;1473const char*deleted_fmt;1474const char*typechange_fmt;1475const char*added_fmt;1476const char*unmerged_fmt;1477uint64_t start =getnanotime();14781479 modified_fmt = (in_porcelain ?"M\t%s\n":"%s: needs update\n");1480 deleted_fmt = (in_porcelain ?"D\t%s\n":"%s: needs update\n");1481 typechange_fmt = (in_porcelain ?"T\t%s\n":"%sneeds update\n");1482 added_fmt = (in_porcelain ?"A\t%s\n":"%sneeds update\n");1483 unmerged_fmt = (in_porcelain ?"U\t%s\n":"%s: needs merge\n");1484for(i =0; i < istate->cache_nr; i++) {1485struct cache_entry *ce, *new_entry;1486int cache_errno =0;1487int changed =0;1488int filtered =0;14891490 ce = istate->cache[i];1491if(ignore_submodules &&S_ISGITLINK(ce->ce_mode))1492continue;14931494if(pathspec && !ce_path_match(ce, pathspec, seen))1495 filtered =1;14961497if(ce_stage(ce)) {1498while((i < istate->cache_nr) &&1499!strcmp(istate->cache[i]->name, ce->name))1500 i++;1501 i--;1502if(allow_unmerged)1503continue;1504if(!filtered)1505show_file(unmerged_fmt, ce->name, in_porcelain,1506&first, header_msg);1507 has_errors =1;1508continue;1509}15101511if(filtered)1512continue;15131514 new_entry =refresh_cache_ent(istate, ce, options, &cache_errno, &changed);1515if(new_entry == ce)1516continue;1517if(!new_entry) {1518const char*fmt;15191520if(really && cache_errno == EINVAL) {1521/* If we are doing --really-refresh that1522 * means the index is not valid anymore.1523 */1524 ce->ce_flags &= ~CE_VALID;1525 ce->ce_flags |= CE_UPDATE_IN_BASE;1526mark_fsmonitor_invalid(istate, ce);1527 istate->cache_changed |= CE_ENTRY_CHANGED;1528}1529if(quiet)1530continue;15311532if(cache_errno == ENOENT)1533 fmt = deleted_fmt;1534else if(ce_intent_to_add(ce))1535 fmt = added_fmt;/* must be before other checks */1536else if(changed & TYPE_CHANGED)1537 fmt = typechange_fmt;1538else1539 fmt = modified_fmt;1540show_file(fmt,1541 ce->name, in_porcelain, &first, header_msg);1542 has_errors =1;1543continue;1544}15451546replace_index_entry(istate, i, new_entry);1547}1548trace_performance_since(start,"refresh index");1549return has_errors;1550}15511552struct cache_entry *refresh_cache_entry(struct index_state *istate,1553struct cache_entry *ce,1554unsigned int options)1555{1556returnrefresh_cache_ent(istate, ce, options, NULL, NULL);1557}155815591560/*****************************************************************1561 * Index File I/O1562 *****************************************************************/15631564#define INDEX_FORMAT_DEFAULT 315651566static unsigned intget_index_format_default(void)1567{1568char*envversion =getenv("GIT_INDEX_VERSION");1569char*endp;1570int value;1571unsigned int version = INDEX_FORMAT_DEFAULT;15721573if(!envversion) {1574if(!git_config_get_int("index.version", &value))1575 version = value;1576if(version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {1577warning(_("index.version set, but the value is invalid.\n"1578"Using version%i"), INDEX_FORMAT_DEFAULT);1579return INDEX_FORMAT_DEFAULT;1580}1581return version;1582}15831584 version =strtoul(envversion, &endp,10);1585if(*endp ||1586 version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {1587warning(_("GIT_INDEX_VERSION set, but the value is invalid.\n"1588"Using version%i"), INDEX_FORMAT_DEFAULT);1589 version = INDEX_FORMAT_DEFAULT;1590}1591return version;1592}15931594/*1595 * dev/ino/uid/gid/size are also just tracked to the low 32 bits1596 * Again - this is just a (very strong in practice) heuristic that1597 * the inode hasn't changed.1598 *1599 * We save the fields in big-endian order to allow using the1600 * index file over NFS transparently.1601 */1602struct ondisk_cache_entry {1603struct cache_time ctime;1604struct cache_time mtime;1605uint32_t dev;1606uint32_t ino;1607uint32_t mode;1608uint32_t uid;1609uint32_t gid;1610uint32_t size;1611unsigned char sha1[20];1612uint16_t flags;1613char name[FLEX_ARRAY];/* more */1614};16151616/*1617 * This struct is used when CE_EXTENDED bit is 11618 * The struct must match ondisk_cache_entry exactly from1619 * ctime till flags1620 */1621struct ondisk_cache_entry_extended {1622struct cache_time ctime;1623struct cache_time mtime;1624uint32_t dev;1625uint32_t ino;1626uint32_t mode;1627uint32_t uid;1628uint32_t gid;1629uint32_t size;1630unsigned char sha1[20];1631uint16_t flags;1632uint16_t flags2;1633char name[FLEX_ARRAY];/* more */1634};16351636/* These are only used for v3 or lower */1637#define align_padding_size(size, len) ((size + (len) + 8) & ~7) - (size + len)1638#define align_flex_name(STRUCT,len) ((offsetof(struct STRUCT,name) + (len) + 8) & ~7)1639#define ondisk_cache_entry_size(len) align_flex_name(ondisk_cache_entry,len)1640#define ondisk_cache_entry_extended_size(len) align_flex_name(ondisk_cache_entry_extended,len)1641#define ondisk_ce_size(ce) (((ce)->ce_flags & CE_EXTENDED) ? \1642 ondisk_cache_entry_extended_size(ce_namelen(ce)) : \1643 ondisk_cache_entry_size(ce_namelen(ce)))16441645/* Allow fsck to force verification of the index checksum. */1646int verify_index_checksum;16471648/* Allow fsck to force verification of the cache entry order. */1649int verify_ce_order;16501651static intverify_hdr(struct cache_header *hdr,unsigned long size)1652{1653 git_hash_ctx c;1654unsigned char hash[GIT_MAX_RAWSZ];1655int hdr_version;16561657if(hdr->hdr_signature !=htonl(CACHE_SIGNATURE))1658returnerror("bad signature");1659 hdr_version =ntohl(hdr->hdr_version);1660if(hdr_version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < hdr_version)1661returnerror("bad index version%d", hdr_version);16621663if(!verify_index_checksum)1664return0;16651666 the_hash_algo->init_fn(&c);1667 the_hash_algo->update_fn(&c, hdr, size - the_hash_algo->rawsz);1668 the_hash_algo->final_fn(hash, &c);1669if(hashcmp(hash, (unsigned char*)hdr + size - the_hash_algo->rawsz))1670returnerror("bad index file sha1 signature");1671return0;1672}16731674static intread_index_extension(struct index_state *istate,1675const char*ext,void*data,unsigned long sz)1676{1677switch(CACHE_EXT(ext)) {1678case CACHE_EXT_TREE:1679 istate->cache_tree =cache_tree_read(data, sz);1680break;1681case CACHE_EXT_RESOLVE_UNDO:1682 istate->resolve_undo =resolve_undo_read(data, sz);1683break;1684case CACHE_EXT_LINK:1685if(read_link_extension(istate, data, sz))1686return-1;1687break;1688case CACHE_EXT_UNTRACKED:1689 istate->untracked =read_untracked_extension(data, sz);1690break;1691case CACHE_EXT_FSMONITOR:1692read_fsmonitor_extension(istate, data, sz);1693break;1694default:1695if(*ext <'A'||'Z'< *ext)1696returnerror("index uses %.4s extension, which we do not understand",1697 ext);1698fprintf(stderr,"ignoring %.4s extension\n", ext);1699break;1700}1701return0;1702}17031704inthold_locked_index(struct lock_file *lk,int lock_flags)1705{1706returnhold_lock_file_for_update(lk,get_index_file(), lock_flags);1707}17081709intread_index(struct index_state *istate)1710{1711returnread_index_from(istate,get_index_file(),get_git_dir());1712}17131714static struct cache_entry *cache_entry_from_ondisk(struct mem_pool *mem_pool,1715struct ondisk_cache_entry *ondisk,1716unsigned int flags,1717const char*name,1718size_t len)1719{1720struct cache_entry *ce =mem_pool__ce_alloc(mem_pool, len);17211722 ce->ce_stat_data.sd_ctime.sec =get_be32(&ondisk->ctime.sec);1723 ce->ce_stat_data.sd_mtime.sec =get_be32(&ondisk->mtime.sec);1724 ce->ce_stat_data.sd_ctime.nsec =get_be32(&ondisk->ctime.nsec);1725 ce->ce_stat_data.sd_mtime.nsec =get_be32(&ondisk->mtime.nsec);1726 ce->ce_stat_data.sd_dev =get_be32(&ondisk->dev);1727 ce->ce_stat_data.sd_ino =get_be32(&ondisk->ino);1728 ce->ce_mode =get_be32(&ondisk->mode);1729 ce->ce_stat_data.sd_uid =get_be32(&ondisk->uid);1730 ce->ce_stat_data.sd_gid =get_be32(&ondisk->gid);1731 ce->ce_stat_data.sd_size =get_be32(&ondisk->size);1732 ce->ce_flags = flags & ~CE_NAMEMASK;1733 ce->ce_namelen = len;1734 ce->index =0;1735hashcpy(ce->oid.hash, ondisk->sha1);1736memcpy(ce->name, name, len);1737 ce->name[len] ='\0';1738return ce;1739}17401741/*1742 * Adjacent cache entries tend to share the leading paths, so it makes1743 * sense to only store the differences in later entries. In the v41744 * on-disk format of the index, each on-disk cache entry stores the1745 * number of bytes to be stripped from the end of the previous name,1746 * and the bytes to append to the result, to come up with its name.1747 */1748static unsigned longexpand_name_field(struct strbuf *name,const char*cp_)1749{1750const unsigned char*ep, *cp = (const unsigned char*)cp_;1751size_t len =decode_varint(&cp);17521753if(name->len < len)1754die("malformed name field in the index");1755strbuf_remove(name, name->len - len, len);1756for(ep = cp; *ep; ep++)1757;/* find the end */1758strbuf_add(name, cp, ep - cp);1759return(const char*)ep +1- cp_;1760}17611762static struct cache_entry *create_from_disk(struct mem_pool *mem_pool,1763struct ondisk_cache_entry *ondisk,1764unsigned long*ent_size,1765struct strbuf *previous_name)1766{1767struct cache_entry *ce;1768size_t len;1769const char*name;1770unsigned int flags;17711772/* On-disk flags are just 16 bits */1773 flags =get_be16(&ondisk->flags);1774 len = flags & CE_NAMEMASK;17751776if(flags & CE_EXTENDED) {1777struct ondisk_cache_entry_extended *ondisk2;1778int extended_flags;1779 ondisk2 = (struct ondisk_cache_entry_extended *)ondisk;1780 extended_flags =get_be16(&ondisk2->flags2) <<16;1781/* We do not yet understand any bit out of CE_EXTENDED_FLAGS */1782if(extended_flags & ~CE_EXTENDED_FLAGS)1783die("Unknown index entry format%08x", extended_flags);1784 flags |= extended_flags;1785 name = ondisk2->name;1786}1787else1788 name = ondisk->name;17891790if(!previous_name) {1791/* v3 and earlier */1792if(len == CE_NAMEMASK)1793 len =strlen(name);1794 ce =cache_entry_from_ondisk(mem_pool, ondisk, flags, name, len);17951796*ent_size =ondisk_ce_size(ce);1797}else{1798unsigned long consumed;1799 consumed =expand_name_field(previous_name, name);1800 ce =cache_entry_from_ondisk(mem_pool, ondisk, flags,1801 previous_name->buf,1802 previous_name->len);18031804*ent_size = (name - ((char*)ondisk)) + consumed;1805}1806return ce;1807}18081809static voidcheck_ce_order(struct index_state *istate)1810{1811unsigned int i;18121813if(!verify_ce_order)1814return;18151816for(i =1; i < istate->cache_nr; i++) {1817struct cache_entry *ce = istate->cache[i -1];1818struct cache_entry *next_ce = istate->cache[i];1819int name_compare =strcmp(ce->name, next_ce->name);18201821if(0< name_compare)1822die("unordered stage entries in index");1823if(!name_compare) {1824if(!ce_stage(ce))1825die("multiple stage entries for merged file '%s'",1826 ce->name);1827if(ce_stage(ce) >ce_stage(next_ce))1828die("unordered stage entries for '%s'",1829 ce->name);1830}1831}1832}18331834static voidtweak_untracked_cache(struct index_state *istate)1835{1836switch(git_config_get_untracked_cache()) {1837case-1:/* keep: do nothing */1838break;1839case0:/* false */1840remove_untracked_cache(istate);1841break;1842case1:/* true */1843add_untracked_cache(istate);1844break;1845default:/* unknown value: do nothing */1846break;1847}1848}18491850static voidtweak_split_index(struct index_state *istate)1851{1852switch(git_config_get_split_index()) {1853case-1:/* unset: do nothing */1854break;1855case0:/* false */1856remove_split_index(istate);1857break;1858case1:/* true */1859add_split_index(istate);1860break;1861default:/* unknown value: do nothing */1862break;1863}1864}18651866static voidpost_read_index_from(struct index_state *istate)1867{1868check_ce_order(istate);1869tweak_untracked_cache(istate);1870tweak_split_index(istate);1871tweak_fsmonitor(istate);1872}18731874static size_testimate_cache_size_from_compressed(unsigned int entries)1875{1876return entries * (sizeof(struct cache_entry) + CACHE_ENTRY_PATH_LENGTH);1877}18781879static size_testimate_cache_size(size_t ondisk_size,unsigned int entries)1880{1881long per_entry =sizeof(struct cache_entry) -sizeof(struct ondisk_cache_entry);18821883/*1884 * Account for potential alignment differences.1885 */1886 per_entry +=align_padding_size(sizeof(struct cache_entry), -sizeof(struct ondisk_cache_entry));1887return ondisk_size + entries * per_entry;1888}18891890/* remember to discard_cache() before reading a different cache! */1891intdo_read_index(struct index_state *istate,const char*path,int must_exist)1892{1893int fd, i;1894struct stat st;1895unsigned long src_offset;1896struct cache_header *hdr;1897void*mmap;1898size_t mmap_size;1899struct strbuf previous_name_buf = STRBUF_INIT, *previous_name;19001901if(istate->initialized)1902return istate->cache_nr;19031904 istate->timestamp.sec =0;1905 istate->timestamp.nsec =0;1906 fd =open(path, O_RDONLY);1907if(fd <0) {1908if(!must_exist && errno == ENOENT)1909return0;1910die_errno("%s: index file open failed", path);1911}19121913if(fstat(fd, &st))1914die_errno("cannot stat the open index");19151916 mmap_size =xsize_t(st.st_size);1917if(mmap_size <sizeof(struct cache_header) + the_hash_algo->rawsz)1918die("index file smaller than expected");19191920 mmap =xmmap(NULL, mmap_size, PROT_READ, MAP_PRIVATE, fd,0);1921if(mmap == MAP_FAILED)1922die_errno("unable to map index file");1923close(fd);19241925 hdr = mmap;1926if(verify_hdr(hdr, mmap_size) <0)1927goto unmap;19281929hashcpy(istate->oid.hash, (const unsigned char*)hdr + mmap_size - the_hash_algo->rawsz);1930 istate->version =ntohl(hdr->hdr_version);1931 istate->cache_nr =ntohl(hdr->hdr_entries);1932 istate->cache_alloc =alloc_nr(istate->cache_nr);1933 istate->cache =xcalloc(istate->cache_alloc,sizeof(*istate->cache));1934 istate->initialized =1;19351936if(istate->version ==4) {1937 previous_name = &previous_name_buf;1938mem_pool_init(&istate->ce_mem_pool,1939estimate_cache_size_from_compressed(istate->cache_nr));1940}else{1941 previous_name = NULL;1942mem_pool_init(&istate->ce_mem_pool,1943estimate_cache_size(mmap_size, istate->cache_nr));1944}19451946 src_offset =sizeof(*hdr);1947for(i =0; i < istate->cache_nr; i++) {1948struct ondisk_cache_entry *disk_ce;1949struct cache_entry *ce;1950unsigned long consumed;19511952 disk_ce = (struct ondisk_cache_entry *)((char*)mmap + src_offset);1953 ce =create_from_disk(istate->ce_mem_pool, disk_ce, &consumed, previous_name);1954set_index_entry(istate, i, ce);19551956 src_offset += consumed;1957}1958strbuf_release(&previous_name_buf);1959 istate->timestamp.sec = st.st_mtime;1960 istate->timestamp.nsec =ST_MTIME_NSEC(st);19611962while(src_offset <= mmap_size - the_hash_algo->rawsz -8) {1963/* After an array of active_nr index entries,1964 * there can be arbitrary number of extended1965 * sections, each of which is prefixed with1966 * extension name (4-byte) and section length1967 * in 4-byte network byte order.1968 */1969uint32_t extsize;1970memcpy(&extsize, (char*)mmap + src_offset +4,4);1971 extsize =ntohl(extsize);1972if(read_index_extension(istate,1973(const char*) mmap + src_offset,1974(char*) mmap + src_offset +8,1975 extsize) <0)1976goto unmap;1977 src_offset +=8;1978 src_offset += extsize;1979}1980munmap(mmap, mmap_size);1981return istate->cache_nr;19821983unmap:1984munmap(mmap, mmap_size);1985die("index file corrupt");1986}19871988/*1989 * Signal that the shared index is used by updating its mtime.1990 *1991 * This way, shared index can be removed if they have not been used1992 * for some time.1993 */1994static voidfreshen_shared_index(const char*shared_index,int warn)1995{1996if(!check_and_freshen_file(shared_index,1) && warn)1997warning("could not freshen shared index '%s'", shared_index);1998}19992000intread_index_from(struct index_state *istate,const char*path,2001const char*gitdir)2002{2003uint64_t start =getnanotime();2004struct split_index *split_index;2005int ret;2006char*base_oid_hex;2007char*base_path;20082009/* istate->initialized covers both .git/index and .git/sharedindex.xxx */2010if(istate->initialized)2011return istate->cache_nr;20122013 ret =do_read_index(istate, path,0);2014trace_performance_since(start,"read cache%s", path);20152016 split_index = istate->split_index;2017if(!split_index ||is_null_oid(&split_index->base_oid)) {2018post_read_index_from(istate);2019return ret;2020}20212022if(split_index->base)2023discard_index(split_index->base);2024else2025 split_index->base =xcalloc(1,sizeof(*split_index->base));20262027 base_oid_hex =oid_to_hex(&split_index->base_oid);2028 base_path =xstrfmt("%s/sharedindex.%s", gitdir, base_oid_hex);2029 ret =do_read_index(split_index->base, base_path,1);2030if(oidcmp(&split_index->base_oid, &split_index->base->oid))2031die("broken index, expect%sin%s, got%s",2032 base_oid_hex, base_path,2033oid_to_hex(&split_index->base->oid));20342035freshen_shared_index(base_path,0);2036merge_base_index(istate);2037post_read_index_from(istate);2038trace_performance_since(start,"read cache%s", base_path);2039free(base_path);2040return ret;2041}20422043intis_index_unborn(struct index_state *istate)2044{2045return(!istate->cache_nr && !istate->timestamp.sec);2046}20472048intdiscard_index(struct index_state *istate)2049{2050/*2051 * Cache entries in istate->cache[] should have been allocated2052 * from the memory pool associated with this index, or from an2053 * associated split_index. There is no need to free individual2054 * cache entries. validate_cache_entries can detect when this2055 * assertion does not hold.2056 */2057validate_cache_entries(istate);20582059resolve_undo_clear_index(istate);2060 istate->cache_nr =0;2061 istate->cache_changed =0;2062 istate->timestamp.sec =0;2063 istate->timestamp.nsec =0;2064free_name_hash(istate);2065cache_tree_free(&(istate->cache_tree));2066 istate->initialized =0;2067FREE_AND_NULL(istate->cache);2068 istate->cache_alloc =0;2069discard_split_index(istate);2070free_untracked_cache(istate->untracked);2071 istate->untracked = NULL;20722073if(istate->ce_mem_pool) {2074mem_pool_discard(istate->ce_mem_pool,should_validate_cache_entries());2075 istate->ce_mem_pool = NULL;2076}20772078return0;2079}20802081/*2082 * Validate the cache entries of this index.2083 * All cache entries associated with this index2084 * should have been allocated by the memory pool2085 * associated with this index, or by a referenced2086 * split index.2087 */2088voidvalidate_cache_entries(const struct index_state *istate)2089{2090int i;20912092if(!should_validate_cache_entries() ||!istate || !istate->initialized)2093return;20942095for(i =0; i < istate->cache_nr; i++) {2096if(!istate) {2097die("internal error: cache entry is not allocated from expected memory pool");2098}else if(!istate->ce_mem_pool ||2099!mem_pool_contains(istate->ce_mem_pool, istate->cache[i])) {2100if(!istate->split_index ||2101!istate->split_index->base ||2102!istate->split_index->base->ce_mem_pool ||2103!mem_pool_contains(istate->split_index->base->ce_mem_pool, istate->cache[i])) {2104die("internal error: cache entry is not allocated from expected memory pool");2105}2106}2107}21082109if(istate->split_index)2110validate_cache_entries(istate->split_index->base);2111}21122113intunmerged_index(const struct index_state *istate)2114{2115int i;2116for(i =0; i < istate->cache_nr; i++) {2117if(ce_stage(istate->cache[i]))2118return1;2119}2120return0;2121}21222123#define WRITE_BUFFER_SIZE 81922124static unsigned char write_buffer[WRITE_BUFFER_SIZE];2125static unsigned long write_buffer_len;21262127static intce_write_flush(git_hash_ctx *context,int fd)2128{2129unsigned int buffered = write_buffer_len;2130if(buffered) {2131 the_hash_algo->update_fn(context, write_buffer, buffered);2132if(write_in_full(fd, write_buffer, buffered) <0)2133return-1;2134 write_buffer_len =0;2135}2136return0;2137}21382139static intce_write(git_hash_ctx *context,int fd,void*data,unsigned int len)2140{2141while(len) {2142unsigned int buffered = write_buffer_len;2143unsigned int partial = WRITE_BUFFER_SIZE - buffered;2144if(partial > len)2145 partial = len;2146memcpy(write_buffer + buffered, data, partial);2147 buffered += partial;2148if(buffered == WRITE_BUFFER_SIZE) {2149 write_buffer_len = buffered;2150if(ce_write_flush(context, fd))2151return-1;2152 buffered =0;2153}2154 write_buffer_len = buffered;2155 len -= partial;2156 data = (char*) data + partial;2157}2158return0;2159}21602161static intwrite_index_ext_header(git_hash_ctx *context,int fd,2162unsigned int ext,unsigned int sz)2163{2164 ext =htonl(ext);2165 sz =htonl(sz);2166return((ce_write(context, fd, &ext,4) <0) ||2167(ce_write(context, fd, &sz,4) <0)) ? -1:0;2168}21692170static intce_flush(git_hash_ctx *context,int fd,unsigned char*hash)2171{2172unsigned int left = write_buffer_len;21732174if(left) {2175 write_buffer_len =0;2176 the_hash_algo->update_fn(context, write_buffer, left);2177}21782179/* Flush first if not enough space for hash signature */2180if(left + the_hash_algo->rawsz > WRITE_BUFFER_SIZE) {2181if(write_in_full(fd, write_buffer, left) <0)2182return-1;2183 left =0;2184}21852186/* Append the hash signature at the end */2187 the_hash_algo->final_fn(write_buffer + left, context);2188hashcpy(hash, write_buffer + left);2189 left += the_hash_algo->rawsz;2190return(write_in_full(fd, write_buffer, left) <0) ? -1:0;2191}21922193static voidce_smudge_racily_clean_entry(struct cache_entry *ce)2194{2195/*2196 * The only thing we care about in this function is to smudge the2197 * falsely clean entry due to touch-update-touch race, so we leave2198 * everything else as they are. We are called for entries whose2199 * ce_stat_data.sd_mtime match the index file mtime.2200 *2201 * Note that this actually does not do much for gitlinks, for2202 * which ce_match_stat_basic() always goes to the actual2203 * contents. The caller checks with is_racy_timestamp() which2204 * always says "no" for gitlinks, so we are not called for them ;-)2205 */2206struct stat st;22072208if(lstat(ce->name, &st) <0)2209return;2210if(ce_match_stat_basic(ce, &st))2211return;2212if(ce_modified_check_fs(ce, &st)) {2213/* This is "racily clean"; smudge it. Note that this2214 * is a tricky code. At first glance, it may appear2215 * that it can break with this sequence:2216 *2217 * $ echo xyzzy >frotz2218 * $ git-update-index --add frotz2219 * $ : >frotz2220 * $ sleep 32221 * $ echo filfre >nitfol2222 * $ git-update-index --add nitfol2223 *2224 * but it does not. When the second update-index runs,2225 * it notices that the entry "frotz" has the same timestamp2226 * as index, and if we were to smudge it by resetting its2227 * size to zero here, then the object name recorded2228 * in index is the 6-byte file but the cached stat information2229 * becomes zero --- which would then match what we would2230 * obtain from the filesystem next time we stat("frotz").2231 *2232 * However, the second update-index, before calling2233 * this function, notices that the cached size is 62234 * bytes and what is on the filesystem is an empty2235 * file, and never calls us, so the cached size information2236 * for "frotz" stays 6 which does not match the filesystem.2237 */2238 ce->ce_stat_data.sd_size =0;2239}2240}22412242/* Copy miscellaneous fields but not the name */2243static voidcopy_cache_entry_to_ondisk(struct ondisk_cache_entry *ondisk,2244struct cache_entry *ce)2245{2246short flags;22472248 ondisk->ctime.sec =htonl(ce->ce_stat_data.sd_ctime.sec);2249 ondisk->mtime.sec =htonl(ce->ce_stat_data.sd_mtime.sec);2250 ondisk->ctime.nsec =htonl(ce->ce_stat_data.sd_ctime.nsec);2251 ondisk->mtime.nsec =htonl(ce->ce_stat_data.sd_mtime.nsec);2252 ondisk->dev =htonl(ce->ce_stat_data.sd_dev);2253 ondisk->ino =htonl(ce->ce_stat_data.sd_ino);2254 ondisk->mode =htonl(ce->ce_mode);2255 ondisk->uid =htonl(ce->ce_stat_data.sd_uid);2256 ondisk->gid =htonl(ce->ce_stat_data.sd_gid);2257 ondisk->size =htonl(ce->ce_stat_data.sd_size);2258hashcpy(ondisk->sha1, ce->oid.hash);22592260 flags = ce->ce_flags & ~CE_NAMEMASK;2261 flags |= (ce_namelen(ce) >= CE_NAMEMASK ? CE_NAMEMASK :ce_namelen(ce));2262 ondisk->flags =htons(flags);2263if(ce->ce_flags & CE_EXTENDED) {2264struct ondisk_cache_entry_extended *ondisk2;2265 ondisk2 = (struct ondisk_cache_entry_extended *)ondisk;2266 ondisk2->flags2 =htons((ce->ce_flags & CE_EXTENDED_FLAGS) >>16);2267}2268}22692270static intce_write_entry(git_hash_ctx *c,int fd,struct cache_entry *ce,2271struct strbuf *previous_name,struct ondisk_cache_entry *ondisk)2272{2273int size;2274int result;2275unsigned int saved_namelen;2276int stripped_name =0;2277static unsigned char padding[8] = {0x00};22782279if(ce->ce_flags & CE_STRIP_NAME) {2280 saved_namelen =ce_namelen(ce);2281 ce->ce_namelen =0;2282 stripped_name =1;2283}22842285if(ce->ce_flags & CE_EXTENDED)2286 size =offsetof(struct ondisk_cache_entry_extended, name);2287else2288 size =offsetof(struct ondisk_cache_entry, name);22892290if(!previous_name) {2291int len =ce_namelen(ce);2292copy_cache_entry_to_ondisk(ondisk, ce);2293 result =ce_write(c, fd, ondisk, size);2294if(!result)2295 result =ce_write(c, fd, ce->name, len);2296if(!result)2297 result =ce_write(c, fd, padding,align_padding_size(size, len));2298}else{2299int common, to_remove, prefix_size;2300unsigned char to_remove_vi[16];2301for(common =0;2302(ce->name[common] &&2303 common < previous_name->len &&2304 ce->name[common] == previous_name->buf[common]);2305 common++)2306;/* still matching */2307 to_remove = previous_name->len - common;2308 prefix_size =encode_varint(to_remove, to_remove_vi);23092310copy_cache_entry_to_ondisk(ondisk, ce);2311 result =ce_write(c, fd, ondisk, size);2312if(!result)2313 result =ce_write(c, fd, to_remove_vi, prefix_size);2314if(!result)2315 result =ce_write(c, fd, ce->name + common,ce_namelen(ce) - common);2316if(!result)2317 result =ce_write(c, fd, padding,1);23182319strbuf_splice(previous_name, common, to_remove,2320 ce->name + common,ce_namelen(ce) - common);2321}2322if(stripped_name) {2323 ce->ce_namelen = saved_namelen;2324 ce->ce_flags &= ~CE_STRIP_NAME;2325}23262327return result;2328}23292330/*2331 * This function verifies if index_state has the correct sha1 of the2332 * index file. Don't die if we have any other failure, just return 0.2333 */2334static intverify_index_from(const struct index_state *istate,const char*path)2335{2336int fd;2337 ssize_t n;2338struct stat st;2339unsigned char hash[GIT_MAX_RAWSZ];23402341if(!istate->initialized)2342return0;23432344 fd =open(path, O_RDONLY);2345if(fd <0)2346return0;23472348if(fstat(fd, &st))2349goto out;23502351if(st.st_size <sizeof(struct cache_header) + the_hash_algo->rawsz)2352goto out;23532354 n =pread_in_full(fd, hash, the_hash_algo->rawsz, st.st_size - the_hash_algo->rawsz);2355if(n != the_hash_algo->rawsz)2356goto out;23572358if(hashcmp(istate->oid.hash, hash))2359goto out;23602361close(fd);2362return1;23632364out:2365close(fd);2366return0;2367}23682369static intverify_index(const struct index_state *istate)2370{2371returnverify_index_from(istate,get_index_file());2372}23732374static inthas_racy_timestamp(struct index_state *istate)2375{2376int entries = istate->cache_nr;2377int i;23782379for(i =0; i < entries; i++) {2380struct cache_entry *ce = istate->cache[i];2381if(is_racy_timestamp(istate, ce))2382return1;2383}2384return0;2385}23862387voidupdate_index_if_able(struct index_state *istate,struct lock_file *lockfile)2388{2389if((istate->cache_changed ||has_racy_timestamp(istate)) &&2390verify_index(istate))2391write_locked_index(istate, lockfile, COMMIT_LOCK);2392else2393rollback_lock_file(lockfile);2394}23952396/*2397 * On success, `tempfile` is closed. If it is the temporary file2398 * of a `struct lock_file`, we will therefore effectively perform2399 * a 'close_lock_file_gently()`. Since that is an implementation2400 * detail of lockfiles, callers of `do_write_index()` should not2401 * rely on it.2402 */2403static intdo_write_index(struct index_state *istate,struct tempfile *tempfile,2404int strip_extensions)2405{2406uint64_t start =getnanotime();2407int newfd = tempfile->fd;2408 git_hash_ctx c;2409struct cache_header hdr;2410int i, err =0, removed, extended, hdr_version;2411struct cache_entry **cache = istate->cache;2412int entries = istate->cache_nr;2413struct stat st;2414struct ondisk_cache_entry_extended ondisk;2415struct strbuf previous_name_buf = STRBUF_INIT, *previous_name;2416int drop_cache_tree = istate->drop_cache_tree;24172418for(i = removed = extended =0; i < entries; i++) {2419if(cache[i]->ce_flags & CE_REMOVE)2420 removed++;24212422/* reduce extended entries if possible */2423 cache[i]->ce_flags &= ~CE_EXTENDED;2424if(cache[i]->ce_flags & CE_EXTENDED_FLAGS) {2425 extended++;2426 cache[i]->ce_flags |= CE_EXTENDED;2427}2428}24292430if(!istate->version) {2431 istate->version =get_index_format_default();2432if(git_env_bool("GIT_TEST_SPLIT_INDEX",0))2433init_split_index(istate);2434}24352436/* demote version 3 to version 2 when the latter suffices */2437if(istate->version ==3|| istate->version ==2)2438 istate->version = extended ?3:2;24392440 hdr_version = istate->version;24412442 hdr.hdr_signature =htonl(CACHE_SIGNATURE);2443 hdr.hdr_version =htonl(hdr_version);2444 hdr.hdr_entries =htonl(entries - removed);24452446 the_hash_algo->init_fn(&c);2447if(ce_write(&c, newfd, &hdr,sizeof(hdr)) <0)2448return-1;24492450 previous_name = (hdr_version ==4) ? &previous_name_buf : NULL;24512452for(i =0; i < entries; i++) {2453struct cache_entry *ce = cache[i];2454if(ce->ce_flags & CE_REMOVE)2455continue;2456if(!ce_uptodate(ce) &&is_racy_timestamp(istate, ce))2457ce_smudge_racily_clean_entry(ce);2458if(is_null_oid(&ce->oid)) {2459static const char msg[] ="cache entry has null sha1:%s";2460static int allow = -1;24612462if(allow <0)2463 allow =git_env_bool("GIT_ALLOW_NULL_SHA1",0);2464if(allow)2465warning(msg, ce->name);2466else2467 err =error(msg, ce->name);24682469 drop_cache_tree =1;2470}2471if(ce_write_entry(&c, newfd, ce, previous_name, (struct ondisk_cache_entry *)&ondisk) <0)2472 err = -1;24732474if(err)2475break;2476}2477strbuf_release(&previous_name_buf);24782479if(err)2480return err;24812482/* Write extension data here */2483if(!strip_extensions && istate->split_index) {2484struct strbuf sb = STRBUF_INIT;24852486 err =write_link_extension(&sb, istate) <0||2487write_index_ext_header(&c, newfd, CACHE_EXT_LINK,2488 sb.len) <0||2489ce_write(&c, newfd, sb.buf, sb.len) <0;2490strbuf_release(&sb);2491if(err)2492return-1;2493}2494if(!strip_extensions && !drop_cache_tree && istate->cache_tree) {2495struct strbuf sb = STRBUF_INIT;24962497cache_tree_write(&sb, istate->cache_tree);2498 err =write_index_ext_header(&c, newfd, CACHE_EXT_TREE, sb.len) <02499||ce_write(&c, newfd, sb.buf, sb.len) <0;2500strbuf_release(&sb);2501if(err)2502return-1;2503}2504if(!strip_extensions && istate->resolve_undo) {2505struct strbuf sb = STRBUF_INIT;25062507resolve_undo_write(&sb, istate->resolve_undo);2508 err =write_index_ext_header(&c, newfd, CACHE_EXT_RESOLVE_UNDO,2509 sb.len) <02510||ce_write(&c, newfd, sb.buf, sb.len) <0;2511strbuf_release(&sb);2512if(err)2513return-1;2514}2515if(!strip_extensions && istate->untracked) {2516struct strbuf sb = STRBUF_INIT;25172518write_untracked_extension(&sb, istate->untracked);2519 err =write_index_ext_header(&c, newfd, CACHE_EXT_UNTRACKED,2520 sb.len) <0||2521ce_write(&c, newfd, sb.buf, sb.len) <0;2522strbuf_release(&sb);2523if(err)2524return-1;2525}2526if(!strip_extensions && istate->fsmonitor_last_update) {2527struct strbuf sb = STRBUF_INIT;25282529write_fsmonitor_extension(&sb, istate);2530 err =write_index_ext_header(&c, newfd, CACHE_EXT_FSMONITOR, sb.len) <02531||ce_write(&c, newfd, sb.buf, sb.len) <0;2532strbuf_release(&sb);2533if(err)2534return-1;2535}25362537if(ce_flush(&c, newfd, istate->oid.hash))2538return-1;2539if(close_tempfile_gently(tempfile)) {2540error(_("could not close '%s'"), tempfile->filename.buf);2541return-1;2542}2543if(stat(tempfile->filename.buf, &st))2544return-1;2545 istate->timestamp.sec = (unsigned int)st.st_mtime;2546 istate->timestamp.nsec =ST_MTIME_NSEC(st);2547trace_performance_since(start,"write index, changed mask =%x", istate->cache_changed);2548return0;2549}25502551voidset_alternate_index_output(const char*name)2552{2553 alternate_index_output = name;2554}25552556static intcommit_locked_index(struct lock_file *lk)2557{2558if(alternate_index_output)2559returncommit_lock_file_to(lk, alternate_index_output);2560else2561returncommit_lock_file(lk);2562}25632564static intdo_write_locked_index(struct index_state *istate,struct lock_file *lock,2565unsigned flags)2566{2567int ret =do_write_index(istate, lock->tempfile,0);2568if(ret)2569return ret;2570if(flags & COMMIT_LOCK)2571returncommit_locked_index(lock);2572returnclose_lock_file_gently(lock);2573}25742575static intwrite_split_index(struct index_state *istate,2576struct lock_file *lock,2577unsigned flags)2578{2579int ret;2580prepare_to_write_split_index(istate);2581 ret =do_write_locked_index(istate, lock, flags);2582finish_writing_split_index(istate);2583return ret;2584}25852586static const char*shared_index_expire ="2.weeks.ago";25872588static unsigned longget_shared_index_expire_date(void)2589{2590static unsigned long shared_index_expire_date;2591static int shared_index_expire_date_prepared;25922593if(!shared_index_expire_date_prepared) {2594git_config_get_expiry("splitindex.sharedindexexpire",2595&shared_index_expire);2596 shared_index_expire_date =approxidate(shared_index_expire);2597 shared_index_expire_date_prepared =1;2598}25992600return shared_index_expire_date;2601}26022603static intshould_delete_shared_index(const char*shared_index_path)2604{2605struct stat st;2606unsigned long expiration;26072608/* Check timestamp */2609 expiration =get_shared_index_expire_date();2610if(!expiration)2611return0;2612if(stat(shared_index_path, &st))2613returnerror_errno(_("could not stat '%s'"), shared_index_path);2614if(st.st_mtime > expiration)2615return0;26162617return1;2618}26192620static intclean_shared_index_files(const char*current_hex)2621{2622struct dirent *de;2623DIR*dir =opendir(get_git_dir());26242625if(!dir)2626returnerror_errno(_("unable to open git dir:%s"),get_git_dir());26272628while((de =readdir(dir)) != NULL) {2629const char*sha1_hex;2630const char*shared_index_path;2631if(!skip_prefix(de->d_name,"sharedindex.", &sha1_hex))2632continue;2633if(!strcmp(sha1_hex, current_hex))2634continue;2635 shared_index_path =git_path("%s", de->d_name);2636if(should_delete_shared_index(shared_index_path) >0&&2637unlink(shared_index_path))2638warning_errno(_("unable to unlink:%s"), shared_index_path);2639}2640closedir(dir);26412642return0;2643}26442645static intwrite_shared_index(struct index_state *istate,2646struct tempfile **temp)2647{2648struct split_index *si = istate->split_index;2649int ret;26502651move_cache_to_base_index(istate);2652 ret =do_write_index(si->base, *temp,1);2653if(ret)2654return ret;2655 ret =adjust_shared_perm(get_tempfile_path(*temp));2656if(ret) {2657error("cannot fix permission bits on%s",get_tempfile_path(*temp));2658return ret;2659}2660 ret =rename_tempfile(temp,2661git_path("sharedindex.%s",oid_to_hex(&si->base->oid)));2662if(!ret) {2663oidcpy(&si->base_oid, &si->base->oid);2664clean_shared_index_files(oid_to_hex(&si->base->oid));2665}26662667return ret;2668}26692670static const int default_max_percent_split_change =20;26712672static inttoo_many_not_shared_entries(struct index_state *istate)2673{2674int i, not_shared =0;2675int max_split =git_config_get_max_percent_split_change();26762677switch(max_split) {2678case-1:2679/* not or badly configured: use the default value */2680 max_split = default_max_percent_split_change;2681break;2682case0:2683return1;/* 0% means always write a new shared index */2684case100:2685return0;/* 100% means never write a new shared index */2686default:2687break;/* just use the configured value */2688}26892690/* Count not shared entries */2691for(i =0; i < istate->cache_nr; i++) {2692struct cache_entry *ce = istate->cache[i];2693if(!ce->index)2694 not_shared++;2695}26962697return(int64_t)istate->cache_nr * max_split < (int64_t)not_shared *100;2698}26992700intwrite_locked_index(struct index_state *istate,struct lock_file *lock,2701unsigned flags)2702{2703int new_shared_index, ret;2704struct split_index *si = istate->split_index;27052706if((flags & SKIP_IF_UNCHANGED) && !istate->cache_changed) {2707if(flags & COMMIT_LOCK)2708rollback_lock_file(lock);2709return0;2710}27112712if(istate->fsmonitor_last_update)2713fill_fsmonitor_bitmap(istate);27142715if(!si || alternate_index_output ||2716(istate->cache_changed & ~EXTMASK)) {2717if(si)2718oidclr(&si->base_oid);2719 ret =do_write_locked_index(istate, lock, flags);2720goto out;2721}27222723if(git_env_bool("GIT_TEST_SPLIT_INDEX",0)) {2724int v = si->base_oid.hash[0];2725if((v &15) <6)2726 istate->cache_changed |= SPLIT_INDEX_ORDERED;2727}2728if(too_many_not_shared_entries(istate))2729 istate->cache_changed |= SPLIT_INDEX_ORDERED;27302731 new_shared_index = istate->cache_changed & SPLIT_INDEX_ORDERED;27322733if(new_shared_index) {2734struct tempfile *temp;2735int saved_errno;27362737 temp =mks_tempfile(git_path("sharedindex_XXXXXX"));2738if(!temp) {2739oidclr(&si->base_oid);2740 ret =do_write_locked_index(istate, lock, flags);2741goto out;2742}2743 ret =write_shared_index(istate, &temp);27442745 saved_errno = errno;2746if(is_tempfile_active(temp))2747delete_tempfile(&temp);2748 errno = saved_errno;27492750if(ret)2751goto out;2752}27532754 ret =write_split_index(istate, lock, flags);27552756/* Freshen the shared index only if the split-index was written */2757if(!ret && !new_shared_index) {2758const char*shared_index =git_path("sharedindex.%s",2759oid_to_hex(&si->base_oid));2760freshen_shared_index(shared_index,1);2761}27622763out:2764if(flags & COMMIT_LOCK)2765rollback_lock_file(lock);2766return ret;2767}27682769/*2770 * Read the index file that is potentially unmerged into given2771 * index_state, dropping any unmerged entries. Returns true if2772 * the index is unmerged. Callers who want to refuse to work2773 * from an unmerged state can call this and check its return value,2774 * instead of calling read_cache().2775 */2776intread_index_unmerged(struct index_state *istate)2777{2778int i;2779int unmerged =0;27802781read_index(istate);2782for(i =0; i < istate->cache_nr; i++) {2783struct cache_entry *ce = istate->cache[i];2784struct cache_entry *new_ce;2785int len;27862787if(!ce_stage(ce))2788continue;2789 unmerged =1;2790 len =ce_namelen(ce);2791 new_ce =make_empty_cache_entry(istate, len);2792memcpy(new_ce->name, ce->name, len);2793 new_ce->ce_flags =create_ce_flags(0) | CE_CONFLICTED;2794 new_ce->ce_namelen = len;2795 new_ce->ce_mode = ce->ce_mode;2796if(add_index_entry(istate, new_ce,0))2797returnerror("%s: cannot drop to stage #0",2798 new_ce->name);2799}2800return unmerged;2801}28022803/*2804 * Returns 1 if the path is an "other" path with respect to2805 * the index; that is, the path is not mentioned in the index at all,2806 * either as a file, a directory with some files in the index,2807 * or as an unmerged entry.2808 *2809 * We helpfully remove a trailing "/" from directories so that2810 * the output of read_directory can be used as-is.2811 */2812intindex_name_is_other(const struct index_state *istate,const char*name,2813int namelen)2814{2815int pos;2816if(namelen && name[namelen -1] =='/')2817 namelen--;2818 pos =index_name_pos(istate, name, namelen);2819if(0<= pos)2820return0;/* exact match */2821 pos = -pos -1;2822if(pos < istate->cache_nr) {2823struct cache_entry *ce = istate->cache[pos];2824if(ce_namelen(ce) == namelen &&2825!memcmp(ce->name, name, namelen))2826return0;/* Yup, this one exists unmerged */2827}2828return1;2829}28302831void*read_blob_data_from_index(const struct index_state *istate,2832const char*path,unsigned long*size)2833{2834int pos, len;2835unsigned long sz;2836enum object_type type;2837void*data;28382839 len =strlen(path);2840 pos =index_name_pos(istate, path, len);2841if(pos <0) {2842/*2843 * We might be in the middle of a merge, in which2844 * case we would read stage #2 (ours).2845 */2846int i;2847for(i = -pos -1;2848(pos <0&& i < istate->cache_nr &&2849!strcmp(istate->cache[i]->name, path));2850 i++)2851if(ce_stage(istate->cache[i]) ==2)2852 pos = i;2853}2854if(pos <0)2855return NULL;2856 data =read_object_file(&istate->cache[pos]->oid, &type, &sz);2857if(!data || type != OBJ_BLOB) {2858free(data);2859return NULL;2860}2861if(size)2862*size = sz;2863return data;2864}28652866voidstat_validity_clear(struct stat_validity *sv)2867{2868FREE_AND_NULL(sv->sd);2869}28702871intstat_validity_check(struct stat_validity *sv,const char*path)2872{2873struct stat st;28742875if(stat(path, &st) <0)2876return sv->sd == NULL;2877if(!sv->sd)2878return0;2879returnS_ISREG(st.st_mode) && !match_stat_data(sv->sd, &st);2880}28812882voidstat_validity_update(struct stat_validity *sv,int fd)2883{2884struct stat st;28852886if(fstat(fd, &st) <0|| !S_ISREG(st.st_mode))2887stat_validity_clear(sv);2888else{2889if(!sv->sd)2890 sv->sd =xcalloc(1,sizeof(struct stat_data));2891fill_stat_data(sv->sd, &st);2892}2893}28942895voidmove_index_extensions(struct index_state *dst,struct index_state *src)2896{2897 dst->untracked = src->untracked;2898 src->untracked = NULL;2899}29002901struct cache_entry *dup_cache_entry(const struct cache_entry *ce,2902struct index_state *istate)2903{2904unsigned int size =ce_size(ce);2905int mem_pool_allocated;2906struct cache_entry *new_entry =make_empty_cache_entry(istate,ce_namelen(ce));2907 mem_pool_allocated = new_entry->mem_pool_allocated;29082909memcpy(new_entry, ce, size);2910 new_entry->mem_pool_allocated = mem_pool_allocated;2911return new_entry;2912}29132914voiddiscard_cache_entry(struct cache_entry *ce)2915{2916if(ce &&should_validate_cache_entries())2917memset(ce,0xCD,cache_entry_size(ce->ce_namelen));29182919if(ce && ce->mem_pool_allocated)2920return;29212922free(ce);2923}29242925intshould_validate_cache_entries(void)2926{2927static int validate_index_cache_entries = -1;29282929if(validate_index_cache_entries <0) {2930if(getenv("GIT_TEST_VALIDATE_INDEX_CACHE_ENTRIES"))2931 validate_index_cache_entries =1;2932else2933 validate_index_cache_entries =0;2934}29352936return validate_index_cache_entries;2937}