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"diff.h" 10#include"diffcore.h" 11#include"tempfile.h" 12#include"lockfile.h" 13#include"cache-tree.h" 14#include"refs.h" 15#include"dir.h" 16#include"object-store.h" 17#include"tree.h" 18#include"commit.h" 19#include"blob.h" 20#include"resolve-undo.h" 21#include"strbuf.h" 22#include"varint.h" 23#include"split-index.h" 24#include"utf8.h" 25#include"fsmonitor.h" 26 27/* Mask for the name length in ce_flags in the on-disk index */ 28 29#define CE_NAMEMASK (0x0fff) 30 31/* Index extensions. 32 * 33 * The first letter should be 'A'..'Z' for extensions that are not 34 * necessary for a correct operation (i.e. optimization data). 35 * When new extensions are added that _needs_ to be understood in 36 * order to correctly interpret the index file, pick character that 37 * is outside the range, to cause the reader to abort. 38 */ 39 40#define CACHE_EXT(s) ( (s[0]<<24)|(s[1]<<16)|(s[2]<<8)|(s[3]) ) 41#define CACHE_EXT_TREE 0x54524545/* "TREE" */ 42#define CACHE_EXT_RESOLVE_UNDO 0x52455543/* "REUC" */ 43#define CACHE_EXT_LINK 0x6c696e6b/* "link" */ 44#define CACHE_EXT_UNTRACKED 0x554E5452/* "UNTR" */ 45#define CACHE_EXT_FSMONITOR 0x46534D4E/* "FSMN" */ 46 47/* changes that can be kept in $GIT_DIR/index (basically all extensions) */ 48#define EXTMASK (RESOLVE_UNDO_CHANGED | CACHE_TREE_CHANGED | \ 49 CE_ENTRY_ADDED | CE_ENTRY_REMOVED | CE_ENTRY_CHANGED | \ 50 SPLIT_INDEX_ORDERED | UNTRACKED_CHANGED | FSMONITOR_CHANGED) 51 52 53/* 54 * This is an estimate of the pathname length in the index. We use 55 * this for V4 index files to guess the un-deltafied size of the index 56 * in memory because of pathname deltafication. This is not required 57 * for V2/V3 index formats because their pathnames are not compressed. 58 * If the initial amount of memory set aside is not sufficient, the 59 * mem pool will allocate extra memory. 60 */ 61#define CACHE_ENTRY_PATH_LENGTH 80 62 63staticinlinestruct cache_entry *mem_pool__ce_alloc(struct mem_pool *mem_pool,size_t len) 64{ 65struct cache_entry *ce; 66 ce =mem_pool_alloc(mem_pool,cache_entry_size(len)); 67 ce->mem_pool_allocated =1; 68return ce; 69} 70 71staticinlinestruct cache_entry *mem_pool__ce_calloc(struct mem_pool *mem_pool,size_t len) 72{ 73struct cache_entry * ce; 74 ce =mem_pool_calloc(mem_pool,1,cache_entry_size(len)); 75 ce->mem_pool_allocated =1; 76return ce; 77} 78 79static struct mem_pool *find_mem_pool(struct index_state *istate) 80{ 81struct mem_pool **pool_ptr; 82 83if(istate->split_index && istate->split_index->base) 84 pool_ptr = &istate->split_index->base->ce_mem_pool; 85else 86 pool_ptr = &istate->ce_mem_pool; 87 88if(!*pool_ptr) 89mem_pool_init(pool_ptr,0); 90 91return*pool_ptr; 92} 93 94struct index_state the_index; 95static const char*alternate_index_output; 96 97static voidset_index_entry(struct index_state *istate,int nr,struct cache_entry *ce) 98{ 99 istate->cache[nr] = ce; 100add_name_hash(istate, ce); 101} 102 103static voidreplace_index_entry(struct index_state *istate,int nr,struct cache_entry *ce) 104{ 105struct cache_entry *old = istate->cache[nr]; 106 107replace_index_entry_in_base(istate, old, ce); 108remove_name_hash(istate, old); 109discard_cache_entry(old); 110 ce->ce_flags &= ~CE_HASHED; 111set_index_entry(istate, nr, ce); 112 ce->ce_flags |= CE_UPDATE_IN_BASE; 113mark_fsmonitor_invalid(istate, ce); 114 istate->cache_changed |= CE_ENTRY_CHANGED; 115} 116 117voidrename_index_entry_at(struct index_state *istate,int nr,const char*new_name) 118{ 119struct cache_entry *old_entry = istate->cache[nr], *new_entry; 120int namelen =strlen(new_name); 121 122 new_entry =make_empty_cache_entry(istate, namelen); 123copy_cache_entry(new_entry, old_entry); 124 new_entry->ce_flags &= ~CE_HASHED; 125 new_entry->ce_namelen = namelen; 126 new_entry->index =0; 127memcpy(new_entry->name, new_name, namelen +1); 128 129cache_tree_invalidate_path(istate, old_entry->name); 130untracked_cache_remove_from_index(istate, old_entry->name); 131remove_index_entry_at(istate, nr); 132add_index_entry(istate, new_entry, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE); 133} 134 135voidfill_stat_data(struct stat_data *sd,struct stat *st) 136{ 137 sd->sd_ctime.sec = (unsigned int)st->st_ctime; 138 sd->sd_mtime.sec = (unsigned int)st->st_mtime; 139 sd->sd_ctime.nsec =ST_CTIME_NSEC(*st); 140 sd->sd_mtime.nsec =ST_MTIME_NSEC(*st); 141 sd->sd_dev = st->st_dev; 142 sd->sd_ino = st->st_ino; 143 sd->sd_uid = st->st_uid; 144 sd->sd_gid = st->st_gid; 145 sd->sd_size = st->st_size; 146} 147 148intmatch_stat_data(const struct stat_data *sd,struct stat *st) 149{ 150int changed =0; 151 152if(sd->sd_mtime.sec != (unsigned int)st->st_mtime) 153 changed |= MTIME_CHANGED; 154if(trust_ctime && check_stat && 155 sd->sd_ctime.sec != (unsigned int)st->st_ctime) 156 changed |= CTIME_CHANGED; 157 158#ifdef USE_NSEC 159if(check_stat && sd->sd_mtime.nsec !=ST_MTIME_NSEC(*st)) 160 changed |= MTIME_CHANGED; 161if(trust_ctime && check_stat && 162 sd->sd_ctime.nsec !=ST_CTIME_NSEC(*st)) 163 changed |= CTIME_CHANGED; 164#endif 165 166if(check_stat) { 167if(sd->sd_uid != (unsigned int) st->st_uid || 168 sd->sd_gid != (unsigned int) st->st_gid) 169 changed |= OWNER_CHANGED; 170if(sd->sd_ino != (unsigned int) st->st_ino) 171 changed |= INODE_CHANGED; 172} 173 174#ifdef USE_STDEV 175/* 176 * st_dev breaks on network filesystems where different 177 * clients will have different views of what "device" 178 * the filesystem is on 179 */ 180if(check_stat && sd->sd_dev != (unsigned int) st->st_dev) 181 changed |= INODE_CHANGED; 182#endif 183 184if(sd->sd_size != (unsigned int) st->st_size) 185 changed |= DATA_CHANGED; 186 187return changed; 188} 189 190/* 191 * This only updates the "non-critical" parts of the directory 192 * cache, ie the parts that aren't tracked by GIT, and only used 193 * to validate the cache. 194 */ 195voidfill_stat_cache_info(struct cache_entry *ce,struct stat *st) 196{ 197fill_stat_data(&ce->ce_stat_data, st); 198 199if(assume_unchanged) 200 ce->ce_flags |= CE_VALID; 201 202if(S_ISREG(st->st_mode)) { 203ce_mark_uptodate(ce); 204mark_fsmonitor_valid(ce); 205} 206} 207 208static intce_compare_data(const struct cache_entry *ce,struct stat *st) 209{ 210int match = -1; 211int fd =git_open_cloexec(ce->name, O_RDONLY); 212 213if(fd >=0) { 214struct object_id oid; 215if(!index_fd(&oid, fd, st, OBJ_BLOB, ce->name,0)) 216 match = !oideq(&oid, &ce->oid); 217/* index_fd() closed the file descriptor already */ 218} 219return match; 220} 221 222static intce_compare_link(const struct cache_entry *ce,size_t expected_size) 223{ 224int match = -1; 225void*buffer; 226unsigned long size; 227enum object_type type; 228struct strbuf sb = STRBUF_INIT; 229 230if(strbuf_readlink(&sb, ce->name, expected_size)) 231return-1; 232 233 buffer =read_object_file(&ce->oid, &type, &size); 234if(buffer) { 235if(size == sb.len) 236 match =memcmp(buffer, sb.buf, size); 237free(buffer); 238} 239strbuf_release(&sb); 240return match; 241} 242 243static intce_compare_gitlink(const struct cache_entry *ce) 244{ 245struct object_id oid; 246 247/* 248 * We don't actually require that the .git directory 249 * under GITLINK directory be a valid git directory. It 250 * might even be missing (in case nobody populated that 251 * sub-project). 252 * 253 * If so, we consider it always to match. 254 */ 255if(resolve_gitlink_ref(ce->name,"HEAD", &oid) <0) 256return0; 257return!oideq(&oid, &ce->oid); 258} 259 260static intce_modified_check_fs(const struct cache_entry *ce,struct stat *st) 261{ 262switch(st->st_mode & S_IFMT) { 263case S_IFREG: 264if(ce_compare_data(ce, st)) 265return DATA_CHANGED; 266break; 267case S_IFLNK: 268if(ce_compare_link(ce,xsize_t(st->st_size))) 269return DATA_CHANGED; 270break; 271case S_IFDIR: 272if(S_ISGITLINK(ce->ce_mode)) 273returnce_compare_gitlink(ce) ? DATA_CHANGED :0; 274/* else fallthrough */ 275default: 276return TYPE_CHANGED; 277} 278return0; 279} 280 281static intce_match_stat_basic(const struct cache_entry *ce,struct stat *st) 282{ 283unsigned int changed =0; 284 285if(ce->ce_flags & CE_REMOVE) 286return MODE_CHANGED | DATA_CHANGED | TYPE_CHANGED; 287 288switch(ce->ce_mode & S_IFMT) { 289case S_IFREG: 290 changed |= !S_ISREG(st->st_mode) ? TYPE_CHANGED :0; 291/* We consider only the owner x bit to be relevant for 292 * "mode changes" 293 */ 294if(trust_executable_bit && 295(0100& (ce->ce_mode ^ st->st_mode))) 296 changed |= MODE_CHANGED; 297break; 298case S_IFLNK: 299if(!S_ISLNK(st->st_mode) && 300(has_symlinks || !S_ISREG(st->st_mode))) 301 changed |= TYPE_CHANGED; 302break; 303case S_IFGITLINK: 304/* We ignore most of the st_xxx fields for gitlinks */ 305if(!S_ISDIR(st->st_mode)) 306 changed |= TYPE_CHANGED; 307else if(ce_compare_gitlink(ce)) 308 changed |= DATA_CHANGED; 309return changed; 310default: 311die("internal error: ce_mode is%o", ce->ce_mode); 312} 313 314 changed |=match_stat_data(&ce->ce_stat_data, st); 315 316/* Racily smudged entry? */ 317if(!ce->ce_stat_data.sd_size) { 318if(!is_empty_blob_sha1(ce->oid.hash)) 319 changed |= DATA_CHANGED; 320} 321 322return changed; 323} 324 325static intis_racy_stat(const struct index_state *istate, 326const struct stat_data *sd) 327{ 328return(istate->timestamp.sec && 329#ifdef USE_NSEC 330/* nanosecond timestamped files can also be racy! */ 331(istate->timestamp.sec < sd->sd_mtime.sec || 332(istate->timestamp.sec == sd->sd_mtime.sec && 333 istate->timestamp.nsec <= sd->sd_mtime.nsec)) 334#else 335 istate->timestamp.sec <= sd->sd_mtime.sec 336#endif 337); 338} 339 340static intis_racy_timestamp(const struct index_state *istate, 341const struct cache_entry *ce) 342{ 343return(!S_ISGITLINK(ce->ce_mode) && 344is_racy_stat(istate, &ce->ce_stat_data)); 345} 346 347intmatch_stat_data_racy(const struct index_state *istate, 348const struct stat_data *sd,struct stat *st) 349{ 350if(is_racy_stat(istate, sd)) 351return MTIME_CHANGED; 352returnmatch_stat_data(sd, st); 353} 354 355intie_match_stat(struct index_state *istate, 356const struct cache_entry *ce,struct stat *st, 357unsigned int options) 358{ 359unsigned int changed; 360int ignore_valid = options & CE_MATCH_IGNORE_VALID; 361int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE; 362int assume_racy_is_modified = options & CE_MATCH_RACY_IS_DIRTY; 363int ignore_fsmonitor = options & CE_MATCH_IGNORE_FSMONITOR; 364 365if(!ignore_fsmonitor) 366refresh_fsmonitor(istate); 367/* 368 * If it's marked as always valid in the index, it's 369 * valid whatever the checked-out copy says. 370 * 371 * skip-worktree has the same effect with higher precedence 372 */ 373if(!ignore_skip_worktree &&ce_skip_worktree(ce)) 374return0; 375if(!ignore_valid && (ce->ce_flags & CE_VALID)) 376return0; 377if(!ignore_fsmonitor && (ce->ce_flags & CE_FSMONITOR_VALID)) 378return0; 379 380/* 381 * Intent-to-add entries have not been added, so the index entry 382 * by definition never matches what is in the work tree until it 383 * actually gets added. 384 */ 385if(ce_intent_to_add(ce)) 386return DATA_CHANGED | TYPE_CHANGED | MODE_CHANGED; 387 388 changed =ce_match_stat_basic(ce, st); 389 390/* 391 * Within 1 second of this sequence: 392 * echo xyzzy >file && git-update-index --add file 393 * running this command: 394 * echo frotz >file 395 * would give a falsely clean cache entry. The mtime and 396 * length match the cache, and other stat fields do not change. 397 * 398 * We could detect this at update-index time (the cache entry 399 * being registered/updated records the same time as "now") 400 * and delay the return from git-update-index, but that would 401 * effectively mean we can make at most one commit per second, 402 * which is not acceptable. Instead, we check cache entries 403 * whose mtime are the same as the index file timestamp more 404 * carefully than others. 405 */ 406if(!changed &&is_racy_timestamp(istate, ce)) { 407if(assume_racy_is_modified) 408 changed |= DATA_CHANGED; 409else 410 changed |=ce_modified_check_fs(ce, st); 411} 412 413return changed; 414} 415 416intie_modified(struct index_state *istate, 417const struct cache_entry *ce, 418struct stat *st,unsigned int options) 419{ 420int changed, changed_fs; 421 422 changed =ie_match_stat(istate, ce, st, options); 423if(!changed) 424return0; 425/* 426 * If the mode or type has changed, there's no point in trying 427 * to refresh the entry - it's not going to match 428 */ 429if(changed & (MODE_CHANGED | TYPE_CHANGED)) 430return changed; 431 432/* 433 * Immediately after read-tree or update-index --cacheinfo, 434 * the length field is zero, as we have never even read the 435 * lstat(2) information once, and we cannot trust DATA_CHANGED 436 * returned by ie_match_stat() which in turn was returned by 437 * ce_match_stat_basic() to signal that the filesize of the 438 * blob changed. We have to actually go to the filesystem to 439 * see if the contents match, and if so, should answer "unchanged". 440 * 441 * The logic does not apply to gitlinks, as ce_match_stat_basic() 442 * already has checked the actual HEAD from the filesystem in the 443 * subproject. If ie_match_stat() already said it is different, 444 * then we know it is. 445 */ 446if((changed & DATA_CHANGED) && 447(S_ISGITLINK(ce->ce_mode) || ce->ce_stat_data.sd_size !=0)) 448return changed; 449 450 changed_fs =ce_modified_check_fs(ce, st); 451if(changed_fs) 452return changed | changed_fs; 453return0; 454} 455 456intbase_name_compare(const char*name1,int len1,int mode1, 457const char*name2,int len2,int mode2) 458{ 459unsigned char c1, c2; 460int len = len1 < len2 ? len1 : len2; 461int cmp; 462 463 cmp =memcmp(name1, name2, len); 464if(cmp) 465return cmp; 466 c1 = name1[len]; 467 c2 = name2[len]; 468if(!c1 &&S_ISDIR(mode1)) 469 c1 ='/'; 470if(!c2 &&S_ISDIR(mode2)) 471 c2 ='/'; 472return(c1 < c2) ? -1: (c1 > c2) ?1:0; 473} 474 475/* 476 * df_name_compare() is identical to base_name_compare(), except it 477 * compares conflicting directory/file entries as equal. Note that 478 * while a directory name compares as equal to a regular file, they 479 * then individually compare _differently_ to a filename that has 480 * a dot after the basename (because '\0' < '.' < '/'). 481 * 482 * This is used by routines that want to traverse the git namespace 483 * but then handle conflicting entries together when possible. 484 */ 485intdf_name_compare(const char*name1,int len1,int mode1, 486const char*name2,int len2,int mode2) 487{ 488int len = len1 < len2 ? len1 : len2, cmp; 489unsigned char c1, c2; 490 491 cmp =memcmp(name1, name2, len); 492if(cmp) 493return cmp; 494/* Directories and files compare equal (same length, same name) */ 495if(len1 == len2) 496return0; 497 c1 = name1[len]; 498if(!c1 &&S_ISDIR(mode1)) 499 c1 ='/'; 500 c2 = name2[len]; 501if(!c2 &&S_ISDIR(mode2)) 502 c2 ='/'; 503if(c1 =='/'&& !c2) 504return0; 505if(c2 =='/'&& !c1) 506return0; 507return c1 - c2; 508} 509 510intname_compare(const char*name1,size_t len1,const char*name2,size_t len2) 511{ 512size_t min_len = (len1 < len2) ? len1 : len2; 513int cmp =memcmp(name1, name2, min_len); 514if(cmp) 515return cmp; 516if(len1 < len2) 517return-1; 518if(len1 > len2) 519return1; 520return0; 521} 522 523intcache_name_stage_compare(const char*name1,int len1,int stage1,const char*name2,int len2,int stage2) 524{ 525int cmp; 526 527 cmp =name_compare(name1, len1, name2, len2); 528if(cmp) 529return cmp; 530 531if(stage1 < stage2) 532return-1; 533if(stage1 > stage2) 534return1; 535return0; 536} 537 538static intindex_name_stage_pos(const struct index_state *istate,const char*name,int namelen,int stage) 539{ 540int first, last; 541 542 first =0; 543 last = istate->cache_nr; 544while(last > first) { 545int next = (last + first) >>1; 546struct cache_entry *ce = istate->cache[next]; 547int cmp =cache_name_stage_compare(name, namelen, stage, ce->name,ce_namelen(ce),ce_stage(ce)); 548if(!cmp) 549return next; 550if(cmp <0) { 551 last = next; 552continue; 553} 554 first = next+1; 555} 556return-first-1; 557} 558 559intindex_name_pos(const struct index_state *istate,const char*name,int namelen) 560{ 561returnindex_name_stage_pos(istate, name, namelen,0); 562} 563 564intremove_index_entry_at(struct index_state *istate,int pos) 565{ 566struct cache_entry *ce = istate->cache[pos]; 567 568record_resolve_undo(istate, ce); 569remove_name_hash(istate, ce); 570save_or_free_index_entry(istate, ce); 571 istate->cache_changed |= CE_ENTRY_REMOVED; 572 istate->cache_nr--; 573if(pos >= istate->cache_nr) 574return0; 575MOVE_ARRAY(istate->cache + pos, istate->cache + pos +1, 576 istate->cache_nr - pos); 577return1; 578} 579 580/* 581 * Remove all cache entries marked for removal, that is where 582 * CE_REMOVE is set in ce_flags. This is much more effective than 583 * calling remove_index_entry_at() for each entry to be removed. 584 */ 585voidremove_marked_cache_entries(struct index_state *istate) 586{ 587struct cache_entry **ce_array = istate->cache; 588unsigned int i, j; 589 590for(i = j =0; i < istate->cache_nr; i++) { 591if(ce_array[i]->ce_flags & CE_REMOVE) { 592remove_name_hash(istate, ce_array[i]); 593save_or_free_index_entry(istate, ce_array[i]); 594} 595else 596 ce_array[j++] = ce_array[i]; 597} 598if(j == istate->cache_nr) 599return; 600 istate->cache_changed |= CE_ENTRY_REMOVED; 601 istate->cache_nr = j; 602} 603 604intremove_file_from_index(struct index_state *istate,const char*path) 605{ 606int pos =index_name_pos(istate, path,strlen(path)); 607if(pos <0) 608 pos = -pos-1; 609cache_tree_invalidate_path(istate, path); 610untracked_cache_remove_from_index(istate, path); 611while(pos < istate->cache_nr && !strcmp(istate->cache[pos]->name, path)) 612remove_index_entry_at(istate, pos); 613return0; 614} 615 616static intcompare_name(struct cache_entry *ce,const char*path,int namelen) 617{ 618return namelen !=ce_namelen(ce) ||memcmp(path, ce->name, namelen); 619} 620 621static intindex_name_pos_also_unmerged(struct index_state *istate, 622const char*path,int namelen) 623{ 624int pos =index_name_pos(istate, path, namelen); 625struct cache_entry *ce; 626 627if(pos >=0) 628return pos; 629 630/* maybe unmerged? */ 631 pos = -1- pos; 632if(pos >= istate->cache_nr || 633compare_name((ce = istate->cache[pos]), path, namelen)) 634return-1; 635 636/* order of preference: stage 2, 1, 3 */ 637if(ce_stage(ce) ==1&& pos +1< istate->cache_nr && 638ce_stage((ce = istate->cache[pos +1])) ==2&& 639!compare_name(ce, path, namelen)) 640 pos++; 641return pos; 642} 643 644static intdifferent_name(struct cache_entry *ce,struct cache_entry *alias) 645{ 646int len =ce_namelen(ce); 647returnce_namelen(alias) != len ||memcmp(ce->name, alias->name, len); 648} 649 650/* 651 * If we add a filename that aliases in the cache, we will use the 652 * name that we already have - but we don't want to update the same 653 * alias twice, because that implies that there were actually two 654 * different files with aliasing names! 655 * 656 * So we use the CE_ADDED flag to verify that the alias was an old 657 * one before we accept it as 658 */ 659static struct cache_entry *create_alias_ce(struct index_state *istate, 660struct cache_entry *ce, 661struct cache_entry *alias) 662{ 663int len; 664struct cache_entry *new_entry; 665 666if(alias->ce_flags & CE_ADDED) 667die("Will not add file alias '%s' ('%s' already exists in index)", ce->name, alias->name); 668 669/* Ok, create the new entry using the name of the existing alias */ 670 len =ce_namelen(alias); 671 new_entry =make_empty_cache_entry(istate, len); 672memcpy(new_entry->name, alias->name, len); 673copy_cache_entry(new_entry, ce); 674save_or_free_index_entry(istate, ce); 675return new_entry; 676} 677 678voidset_object_name_for_intent_to_add_entry(struct cache_entry *ce) 679{ 680struct object_id oid; 681if(write_object_file("",0, blob_type, &oid)) 682die("cannot create an empty blob in the object database"); 683oidcpy(&ce->oid, &oid); 684} 685 686intadd_to_index(struct index_state *istate,const char*path,struct stat *st,int flags) 687{ 688int namelen, was_same; 689 mode_t st_mode = st->st_mode; 690struct cache_entry *ce, *alias = NULL; 691unsigned ce_option = CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE|CE_MATCH_RACY_IS_DIRTY; 692int verbose = flags & (ADD_CACHE_VERBOSE | ADD_CACHE_PRETEND); 693int pretend = flags & ADD_CACHE_PRETEND; 694int intent_only = flags & ADD_CACHE_INTENT; 695int add_option = (ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE| 696(intent_only ? ADD_CACHE_NEW_ONLY :0)); 697int newflags = HASH_WRITE_OBJECT; 698 699if(flags & HASH_RENORMALIZE) 700 newflags |= HASH_RENORMALIZE; 701 702if(!S_ISREG(st_mode) && !S_ISLNK(st_mode) && !S_ISDIR(st_mode)) 703returnerror("%s: can only add regular files, symbolic links or git-directories", path); 704 705 namelen =strlen(path); 706if(S_ISDIR(st_mode)) { 707while(namelen && path[namelen-1] =='/') 708 namelen--; 709} 710 ce =make_empty_cache_entry(istate, namelen); 711memcpy(ce->name, path, namelen); 712 ce->ce_namelen = namelen; 713if(!intent_only) 714fill_stat_cache_info(ce, st); 715else 716 ce->ce_flags |= CE_INTENT_TO_ADD; 717 718 719if(trust_executable_bit && has_symlinks) { 720 ce->ce_mode =create_ce_mode(st_mode); 721}else{ 722/* If there is an existing entry, pick the mode bits and type 723 * from it, otherwise assume unexecutable regular file. 724 */ 725struct cache_entry *ent; 726int pos =index_name_pos_also_unmerged(istate, path, namelen); 727 728 ent = (0<= pos) ? istate->cache[pos] : NULL; 729 ce->ce_mode =ce_mode_from_stat(ent, st_mode); 730} 731 732/* When core.ignorecase=true, determine if a directory of the same name but differing 733 * case already exists within the Git repository. If it does, ensure the directory 734 * case of the file being added to the repository matches (is folded into) the existing 735 * entry's directory case. 736 */ 737if(ignore_case) { 738adjust_dirname_case(istate, ce->name); 739} 740if(!(flags & HASH_RENORMALIZE)) { 741 alias =index_file_exists(istate, ce->name, 742ce_namelen(ce), ignore_case); 743if(alias && 744!ce_stage(alias) && 745!ie_match_stat(istate, alias, st, ce_option)) { 746/* Nothing changed, really */ 747if(!S_ISGITLINK(alias->ce_mode)) 748ce_mark_uptodate(alias); 749 alias->ce_flags |= CE_ADDED; 750 751discard_cache_entry(ce); 752return0; 753} 754} 755if(!intent_only) { 756if(index_path(&ce->oid, path, st, newflags)) { 757discard_cache_entry(ce); 758returnerror("unable to index file%s", path); 759} 760}else 761set_object_name_for_intent_to_add_entry(ce); 762 763if(ignore_case && alias &&different_name(ce, alias)) 764 ce =create_alias_ce(istate, ce, alias); 765 ce->ce_flags |= CE_ADDED; 766 767/* It was suspected to be racily clean, but it turns out to be Ok */ 768 was_same = (alias && 769!ce_stage(alias) && 770oideq(&alias->oid, &ce->oid) && 771 ce->ce_mode == alias->ce_mode); 772 773if(pretend) 774discard_cache_entry(ce); 775else if(add_index_entry(istate, ce, add_option)) { 776discard_cache_entry(ce); 777returnerror("unable to add%sto index", path); 778} 779if(verbose && !was_same) 780printf("add '%s'\n", path); 781return0; 782} 783 784intadd_file_to_index(struct index_state *istate,const char*path,int flags) 785{ 786struct stat st; 787if(lstat(path, &st)) 788die_errno("unable to stat '%s'", path); 789returnadd_to_index(istate, path, &st, flags); 790} 791 792struct cache_entry *make_empty_cache_entry(struct index_state *istate,size_t len) 793{ 794returnmem_pool__ce_calloc(find_mem_pool(istate), len); 795} 796 797struct cache_entry *make_empty_transient_cache_entry(size_t len) 798{ 799returnxcalloc(1,cache_entry_size(len)); 800} 801 802struct cache_entry *make_cache_entry(struct index_state *istate, 803unsigned int mode, 804const struct object_id *oid, 805const char*path, 806int stage, 807unsigned int refresh_options) 808{ 809struct cache_entry *ce, *ret; 810int len; 811 812if(!verify_path(path, mode)) { 813error("Invalid path '%s'", path); 814return NULL; 815} 816 817 len =strlen(path); 818 ce =make_empty_cache_entry(istate, len); 819 820oidcpy(&ce->oid, oid); 821memcpy(ce->name, path, len); 822 ce->ce_flags =create_ce_flags(stage); 823 ce->ce_namelen = len; 824 ce->ce_mode =create_ce_mode(mode); 825 826 ret =refresh_cache_entry(&the_index, ce, refresh_options); 827if(ret != ce) 828discard_cache_entry(ce); 829return ret; 830} 831 832struct cache_entry *make_transient_cache_entry(unsigned int mode,const struct object_id *oid, 833const char*path,int stage) 834{ 835struct cache_entry *ce; 836int len; 837 838if(!verify_path(path, mode)) { 839error("Invalid path '%s'", path); 840return NULL; 841} 842 843 len =strlen(path); 844 ce =make_empty_transient_cache_entry(len); 845 846oidcpy(&ce->oid, oid); 847memcpy(ce->name, path, len); 848 ce->ce_flags =create_ce_flags(stage); 849 ce->ce_namelen = len; 850 ce->ce_mode =create_ce_mode(mode); 851 852return ce; 853} 854 855/* 856 * Chmod an index entry with either +x or -x. 857 * 858 * Returns -1 if the chmod for the particular cache entry failed (if it's 859 * not a regular file), -2 if an invalid flip argument is passed in, 0 860 * otherwise. 861 */ 862intchmod_index_entry(struct index_state *istate,struct cache_entry *ce, 863char flip) 864{ 865if(!S_ISREG(ce->ce_mode)) 866return-1; 867switch(flip) { 868case'+': 869 ce->ce_mode |=0111; 870break; 871case'-': 872 ce->ce_mode &= ~0111; 873break; 874default: 875return-2; 876} 877cache_tree_invalidate_path(istate, ce->name); 878 ce->ce_flags |= CE_UPDATE_IN_BASE; 879mark_fsmonitor_invalid(istate, ce); 880 istate->cache_changed |= CE_ENTRY_CHANGED; 881 882return0; 883} 884 885intce_same_name(const struct cache_entry *a,const struct cache_entry *b) 886{ 887int len =ce_namelen(a); 888returnce_namelen(b) == len && !memcmp(a->name, b->name, len); 889} 890 891/* 892 * We fundamentally don't like some paths: we don't want 893 * dot or dot-dot anywhere, and for obvious reasons don't 894 * want to recurse into ".git" either. 895 * 896 * Also, we don't want double slashes or slashes at the 897 * end that can make pathnames ambiguous. 898 */ 899static intverify_dotfile(const char*rest,unsigned mode) 900{ 901/* 902 * The first character was '.', but that 903 * has already been discarded, we now test 904 * the rest. 905 */ 906 907/* "." is not allowed */ 908if(*rest =='\0'||is_dir_sep(*rest)) 909return0; 910 911switch(*rest) { 912/* 913 * ".git" followed by NUL or slash is bad. Note that we match 914 * case-insensitively here, even if ignore_case is not set. 915 * This outlaws ".GIT" everywhere out of an abundance of caution, 916 * since there's really no good reason to allow it. 917 * 918 * Once we've seen ".git", we can also find ".gitmodules", etc (also 919 * case-insensitively). 920 */ 921case'g': 922case'G': 923if(rest[1] !='i'&& rest[1] !='I') 924break; 925if(rest[2] !='t'&& rest[2] !='T') 926break; 927if(rest[3] =='\0'||is_dir_sep(rest[3])) 928return0; 929if(S_ISLNK(mode)) { 930 rest +=3; 931if(skip_iprefix(rest,"modules", &rest) && 932(*rest =='\0'||is_dir_sep(*rest))) 933return0; 934} 935break; 936case'.': 937if(rest[1] =='\0'||is_dir_sep(rest[1])) 938return0; 939} 940return1; 941} 942 943intverify_path(const char*path,unsigned mode) 944{ 945char c; 946 947if(has_dos_drive_prefix(path)) 948return0; 949 950goto inside; 951for(;;) { 952if(!c) 953return1; 954if(is_dir_sep(c)) { 955inside: 956if(protect_hfs) { 957if(is_hfs_dotgit(path)) 958return0; 959if(S_ISLNK(mode)) { 960if(is_hfs_dotgitmodules(path)) 961return0; 962} 963} 964if(protect_ntfs) { 965if(is_ntfs_dotgit(path)) 966return0; 967if(S_ISLNK(mode)) { 968if(is_ntfs_dotgitmodules(path)) 969return0; 970} 971} 972 973 c = *path++; 974if((c =='.'&& !verify_dotfile(path, mode)) || 975is_dir_sep(c) || c =='\0') 976return0; 977} 978 c = *path++; 979} 980} 981 982/* 983 * Do we have another file that has the beginning components being a 984 * proper superset of the name we're trying to add? 985 */ 986static inthas_file_name(struct index_state *istate, 987const struct cache_entry *ce,int pos,int ok_to_replace) 988{ 989int retval =0; 990int len =ce_namelen(ce); 991int stage =ce_stage(ce); 992const char*name = ce->name; 993 994while(pos < istate->cache_nr) { 995struct cache_entry *p = istate->cache[pos++]; 996 997if(len >=ce_namelen(p)) 998break; 999if(memcmp(name, p->name, len))1000break;1001if(ce_stage(p) != stage)1002continue;1003if(p->name[len] !='/')1004continue;1005if(p->ce_flags & CE_REMOVE)1006continue;1007 retval = -1;1008if(!ok_to_replace)1009break;1010remove_index_entry_at(istate, --pos);1011}1012return retval;1013}101410151016/*1017 * Like strcmp(), but also return the offset of the first change.1018 * If strings are equal, return the length.1019 */1020intstrcmp_offset(const char*s1,const char*s2,size_t*first_change)1021{1022size_t k;10231024if(!first_change)1025returnstrcmp(s1, s2);10261027for(k =0; s1[k] == s2[k]; k++)1028if(s1[k] =='\0')1029break;10301031*first_change = k;1032return(unsigned char)s1[k] - (unsigned char)s2[k];1033}10341035/*1036 * Do we have another file with a pathname that is a proper1037 * subset of the name we're trying to add?1038 *1039 * That is, is there another file in the index with a path1040 * that matches a sub-directory in the given entry?1041 */1042static inthas_dir_name(struct index_state *istate,1043const struct cache_entry *ce,int pos,int ok_to_replace)1044{1045int retval =0;1046int stage =ce_stage(ce);1047const char*name = ce->name;1048const char*slash = name +ce_namelen(ce);1049size_t len_eq_last;1050int cmp_last =0;10511052/*1053 * We are frequently called during an iteration on a sorted1054 * list of pathnames and while building a new index. Therefore,1055 * there is a high probability that this entry will eventually1056 * be appended to the index, rather than inserted in the middle.1057 * If we can confirm that, we can avoid binary searches on the1058 * components of the pathname.1059 *1060 * Compare the entry's full path with the last path in the index.1061 */1062if(istate->cache_nr >0) {1063 cmp_last =strcmp_offset(name,1064 istate->cache[istate->cache_nr -1]->name,1065&len_eq_last);1066if(cmp_last >0) {1067if(len_eq_last ==0) {1068/*1069 * The entry sorts AFTER the last one in the1070 * index and their paths have no common prefix,1071 * so there cannot be a F/D conflict.1072 */1073return retval;1074}else{1075/*1076 * The entry sorts AFTER the last one in the1077 * index, but has a common prefix. Fall through1078 * to the loop below to disect the entry's path1079 * and see where the difference is.1080 */1081}1082}else if(cmp_last ==0) {1083/*1084 * The entry exactly matches the last one in the1085 * index, but because of multiple stage and CE_REMOVE1086 * items, we fall through and let the regular search1087 * code handle it.1088 */1089}1090}10911092for(;;) {1093size_t len;10941095for(;;) {1096if(*--slash =='/')1097break;1098if(slash <= ce->name)1099return retval;1100}1101 len = slash - name;11021103if(cmp_last >0) {1104/*1105 * (len + 1) is a directory boundary (including1106 * the trailing slash). And since the loop is1107 * decrementing "slash", the first iteration is1108 * the longest directory prefix; subsequent1109 * iterations consider parent directories.1110 */11111112if(len +1<= len_eq_last) {1113/*1114 * The directory prefix (including the trailing1115 * slash) also appears as a prefix in the last1116 * entry, so the remainder cannot collide (because1117 * strcmp said the whole path was greater).1118 *1119 * EQ: last: xxx/A1120 * this: xxx/B1121 *1122 * LT: last: xxx/file_A1123 * this: xxx/file_B1124 */1125return retval;1126}11271128if(len > len_eq_last) {1129/*1130 * This part of the directory prefix (excluding1131 * the trailing slash) is longer than the known1132 * equal portions, so this sub-directory cannot1133 * collide with a file.1134 *1135 * GT: last: xxxA1136 * this: xxxB/file1137 */1138return retval;1139}11401141if(istate->cache_nr >0&&1142ce_namelen(istate->cache[istate->cache_nr -1]) > len) {1143/*1144 * The directory prefix lines up with part of1145 * a longer file or directory name, but sorts1146 * after it, so this sub-directory cannot1147 * collide with a file.1148 *1149 * last: xxx/yy-file (because '-' sorts before '/')1150 * this: xxx/yy/abc1151 */1152return retval;1153}11541155/*1156 * This is a possible collision. Fall through and1157 * let the regular search code handle it.1158 *1159 * last: xxx1160 * this: xxx/file1161 */1162}11631164 pos =index_name_stage_pos(istate, name, len, stage);1165if(pos >=0) {1166/*1167 * Found one, but not so fast. This could1168 * be a marker that says "I was here, but1169 * I am being removed". Such an entry is1170 * not a part of the resulting tree, and1171 * it is Ok to have a directory at the same1172 * path.1173 */1174if(!(istate->cache[pos]->ce_flags & CE_REMOVE)) {1175 retval = -1;1176if(!ok_to_replace)1177break;1178remove_index_entry_at(istate, pos);1179continue;1180}1181}1182else1183 pos = -pos-1;11841185/*1186 * Trivial optimization: if we find an entry that1187 * already matches the sub-directory, then we know1188 * we're ok, and we can exit.1189 */1190while(pos < istate->cache_nr) {1191struct cache_entry *p = istate->cache[pos];1192if((ce_namelen(p) <= len) ||1193(p->name[len] !='/') ||1194memcmp(p->name, name, len))1195break;/* not our subdirectory */1196if(ce_stage(p) == stage && !(p->ce_flags & CE_REMOVE))1197/*1198 * p is at the same stage as our entry, and1199 * is a subdirectory of what we are looking1200 * at, so we cannot have conflicts at our1201 * level or anything shorter.1202 */1203return retval;1204 pos++;1205}1206}1207return retval;1208}12091210/* We may be in a situation where we already have path/file and path1211 * is being added, or we already have path and path/file is being1212 * added. Either one would result in a nonsense tree that has path1213 * twice when git-write-tree tries to write it out. Prevent it.1214 *1215 * If ok-to-replace is specified, we remove the conflicting entries1216 * from the cache so the caller should recompute the insert position.1217 * When this happens, we return non-zero.1218 */1219static intcheck_file_directory_conflict(struct index_state *istate,1220const struct cache_entry *ce,1221int pos,int ok_to_replace)1222{1223int retval;12241225/*1226 * When ce is an "I am going away" entry, we allow it to be added1227 */1228if(ce->ce_flags & CE_REMOVE)1229return0;12301231/*1232 * We check if the path is a sub-path of a subsequent pathname1233 * first, since removing those will not change the position1234 * in the array.1235 */1236 retval =has_file_name(istate, ce, pos, ok_to_replace);12371238/*1239 * Then check if the path might have a clashing sub-directory1240 * before it.1241 */1242return retval +has_dir_name(istate, ce, pos, ok_to_replace);1243}12441245static intadd_index_entry_with_check(struct index_state *istate,struct cache_entry *ce,int option)1246{1247int pos;1248int ok_to_add = option & ADD_CACHE_OK_TO_ADD;1249int ok_to_replace = option & ADD_CACHE_OK_TO_REPLACE;1250int skip_df_check = option & ADD_CACHE_SKIP_DFCHECK;1251int new_only = option & ADD_CACHE_NEW_ONLY;12521253if(!(option & ADD_CACHE_KEEP_CACHE_TREE))1254cache_tree_invalidate_path(istate, ce->name);12551256/*1257 * If this entry's path sorts after the last entry in the index,1258 * we can avoid searching for it.1259 */1260if(istate->cache_nr >0&&1261strcmp(ce->name, istate->cache[istate->cache_nr -1]->name) >0)1262 pos = -istate->cache_nr -1;1263else1264 pos =index_name_stage_pos(istate, ce->name,ce_namelen(ce),ce_stage(ce));12651266/* existing match? Just replace it. */1267if(pos >=0) {1268if(!new_only)1269replace_index_entry(istate, pos, ce);1270return0;1271}1272 pos = -pos-1;12731274if(!(option & ADD_CACHE_KEEP_CACHE_TREE))1275untracked_cache_add_to_index(istate, ce->name);12761277/*1278 * Inserting a merged entry ("stage 0") into the index1279 * will always replace all non-merged entries..1280 */1281if(pos < istate->cache_nr &&ce_stage(ce) ==0) {1282while(ce_same_name(istate->cache[pos], ce)) {1283 ok_to_add =1;1284if(!remove_index_entry_at(istate, pos))1285break;1286}1287}12881289if(!ok_to_add)1290return-1;1291if(!verify_path(ce->name, ce->ce_mode))1292returnerror("Invalid path '%s'", ce->name);12931294if(!skip_df_check &&1295check_file_directory_conflict(istate, ce, pos, ok_to_replace)) {1296if(!ok_to_replace)1297returnerror("'%s' appears as both a file and as a directory",1298 ce->name);1299 pos =index_name_stage_pos(istate, ce->name,ce_namelen(ce),ce_stage(ce));1300 pos = -pos-1;1301}1302return pos +1;1303}13041305intadd_index_entry(struct index_state *istate,struct cache_entry *ce,int option)1306{1307int pos;13081309if(option & ADD_CACHE_JUST_APPEND)1310 pos = istate->cache_nr;1311else{1312int ret;1313 ret =add_index_entry_with_check(istate, ce, option);1314if(ret <=0)1315return ret;1316 pos = ret -1;1317}13181319/* Make sure the array is big enough .. */1320ALLOC_GROW(istate->cache, istate->cache_nr +1, istate->cache_alloc);13211322/* Add it in.. */1323 istate->cache_nr++;1324if(istate->cache_nr > pos +1)1325MOVE_ARRAY(istate->cache + pos +1, istate->cache + pos,1326 istate->cache_nr - pos -1);1327set_index_entry(istate, pos, ce);1328 istate->cache_changed |= CE_ENTRY_ADDED;1329return0;1330}13311332/*1333 * "refresh" does not calculate a new sha1 file or bring the1334 * cache up-to-date for mode/content changes. But what it1335 * _does_ do is to "re-match" the stat information of a file1336 * with the cache, so that you can refresh the cache for a1337 * file that hasn't been changed but where the stat entry is1338 * out of date.1339 *1340 * For example, you'd want to do this after doing a "git-read-tree",1341 * to link up the stat cache details with the proper files.1342 */1343static struct cache_entry *refresh_cache_ent(struct index_state *istate,1344struct cache_entry *ce,1345unsigned int options,int*err,1346int*changed_ret)1347{1348struct stat st;1349struct cache_entry *updated;1350int changed;1351int refresh = options & CE_MATCH_REFRESH;1352int ignore_valid = options & CE_MATCH_IGNORE_VALID;1353int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE;1354int ignore_missing = options & CE_MATCH_IGNORE_MISSING;1355int ignore_fsmonitor = options & CE_MATCH_IGNORE_FSMONITOR;13561357if(!refresh ||ce_uptodate(ce))1358return ce;13591360if(!ignore_fsmonitor)1361refresh_fsmonitor(istate);1362/*1363 * CE_VALID or CE_SKIP_WORKTREE means the user promised us1364 * that the change to the work tree does not matter and told1365 * us not to worry.1366 */1367if(!ignore_skip_worktree &&ce_skip_worktree(ce)) {1368ce_mark_uptodate(ce);1369return ce;1370}1371if(!ignore_valid && (ce->ce_flags & CE_VALID)) {1372ce_mark_uptodate(ce);1373return ce;1374}1375if(!ignore_fsmonitor && (ce->ce_flags & CE_FSMONITOR_VALID)) {1376ce_mark_uptodate(ce);1377return ce;1378}13791380if(has_symlink_leading_path(ce->name,ce_namelen(ce))) {1381if(ignore_missing)1382return ce;1383if(err)1384*err = ENOENT;1385return NULL;1386}13871388if(lstat(ce->name, &st) <0) {1389if(ignore_missing && errno == ENOENT)1390return ce;1391if(err)1392*err = errno;1393return NULL;1394}13951396 changed =ie_match_stat(istate, ce, &st, options);1397if(changed_ret)1398*changed_ret = changed;1399if(!changed) {1400/*1401 * The path is unchanged. If we were told to ignore1402 * valid bit, then we did the actual stat check and1403 * found that the entry is unmodified. If the entry1404 * is not marked VALID, this is the place to mark it1405 * valid again, under "assume unchanged" mode.1406 */1407if(ignore_valid && assume_unchanged &&1408!(ce->ce_flags & CE_VALID))1409;/* mark this one VALID again */1410else{1411/*1412 * We do not mark the index itself "modified"1413 * because CE_UPTODATE flag is in-core only;1414 * we are not going to write this change out.1415 */1416if(!S_ISGITLINK(ce->ce_mode)) {1417ce_mark_uptodate(ce);1418mark_fsmonitor_valid(ce);1419}1420return ce;1421}1422}14231424if(ie_modified(istate, ce, &st, options)) {1425if(err)1426*err = EINVAL;1427return NULL;1428}14291430 updated =make_empty_cache_entry(istate,ce_namelen(ce));1431copy_cache_entry(updated, ce);1432memcpy(updated->name, ce->name, ce->ce_namelen +1);1433fill_stat_cache_info(updated, &st);1434/*1435 * If ignore_valid is not set, we should leave CE_VALID bit1436 * alone. Otherwise, paths marked with --no-assume-unchanged1437 * (i.e. things to be edited) will reacquire CE_VALID bit1438 * automatically, which is not really what we want.1439 */1440if(!ignore_valid && assume_unchanged &&1441!(ce->ce_flags & CE_VALID))1442 updated->ce_flags &= ~CE_VALID;14431444/* istate->cache_changed is updated in the caller */1445return updated;1446}14471448static voidshow_file(const char* fmt,const char* name,int in_porcelain,1449int* first,const char*header_msg)1450{1451if(in_porcelain && *first && header_msg) {1452printf("%s\n", header_msg);1453*first =0;1454}1455printf(fmt, name);1456}14571458intrefresh_index(struct index_state *istate,unsigned int flags,1459const struct pathspec *pathspec,1460char*seen,const char*header_msg)1461{1462int i;1463int has_errors =0;1464int really = (flags & REFRESH_REALLY) !=0;1465int allow_unmerged = (flags & REFRESH_UNMERGED) !=0;1466int quiet = (flags & REFRESH_QUIET) !=0;1467int not_new = (flags & REFRESH_IGNORE_MISSING) !=0;1468int ignore_submodules = (flags & REFRESH_IGNORE_SUBMODULES) !=0;1469int first =1;1470int in_porcelain = (flags & REFRESH_IN_PORCELAIN);1471unsigned int options = (CE_MATCH_REFRESH |1472(really ? CE_MATCH_IGNORE_VALID :0) |1473(not_new ? CE_MATCH_IGNORE_MISSING :0));1474const char*modified_fmt;1475const char*deleted_fmt;1476const char*typechange_fmt;1477const char*added_fmt;1478const char*unmerged_fmt;14791480trace_performance_enter();1481 modified_fmt = (in_porcelain ?"M\t%s\n":"%s: needs update\n");1482 deleted_fmt = (in_porcelain ?"D\t%s\n":"%s: needs update\n");1483 typechange_fmt = (in_porcelain ?"T\t%s\n":"%sneeds update\n");1484 added_fmt = (in_porcelain ?"A\t%s\n":"%sneeds update\n");1485 unmerged_fmt = (in_porcelain ?"U\t%s\n":"%s: needs merge\n");1486for(i =0; i < istate->cache_nr; i++) {1487struct cache_entry *ce, *new_entry;1488int cache_errno =0;1489int changed =0;1490int filtered =0;14911492 ce = istate->cache[i];1493if(ignore_submodules &&S_ISGITLINK(ce->ce_mode))1494continue;14951496if(pathspec && !ce_path_match(&the_index, ce, pathspec, seen))1497 filtered =1;14981499if(ce_stage(ce)) {1500while((i < istate->cache_nr) &&1501!strcmp(istate->cache[i]->name, ce->name))1502 i++;1503 i--;1504if(allow_unmerged)1505continue;1506if(!filtered)1507show_file(unmerged_fmt, ce->name, in_porcelain,1508&first, header_msg);1509 has_errors =1;1510continue;1511}15121513if(filtered)1514continue;15151516 new_entry =refresh_cache_ent(istate, ce, options, &cache_errno, &changed);1517if(new_entry == ce)1518continue;1519if(!new_entry) {1520const char*fmt;15211522if(really && cache_errno == EINVAL) {1523/* If we are doing --really-refresh that1524 * means the index is not valid anymore.1525 */1526 ce->ce_flags &= ~CE_VALID;1527 ce->ce_flags |= CE_UPDATE_IN_BASE;1528mark_fsmonitor_invalid(istate, ce);1529 istate->cache_changed |= CE_ENTRY_CHANGED;1530}1531if(quiet)1532continue;15331534if(cache_errno == ENOENT)1535 fmt = deleted_fmt;1536else if(ce_intent_to_add(ce))1537 fmt = added_fmt;/* must be before other checks */1538else if(changed & TYPE_CHANGED)1539 fmt = typechange_fmt;1540else1541 fmt = modified_fmt;1542show_file(fmt,1543 ce->name, in_porcelain, &first, header_msg);1544 has_errors =1;1545continue;1546}15471548replace_index_entry(istate, i, new_entry);1549}1550trace_performance_leave("refresh index");1551return has_errors;1552}15531554struct cache_entry *refresh_cache_entry(struct index_state *istate,1555struct cache_entry *ce,1556unsigned int options)1557{1558returnrefresh_cache_ent(istate, ce, options, NULL, NULL);1559}156015611562/*****************************************************************1563 * Index File I/O1564 *****************************************************************/15651566#define INDEX_FORMAT_DEFAULT 315671568static unsigned intget_index_format_default(void)1569{1570char*envversion =getenv("GIT_INDEX_VERSION");1571char*endp;1572int value;1573unsigned int version = INDEX_FORMAT_DEFAULT;15741575if(!envversion) {1576if(!git_config_get_int("index.version", &value))1577 version = value;1578if(version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {1579warning(_("index.version set, but the value is invalid.\n"1580"Using version%i"), INDEX_FORMAT_DEFAULT);1581return INDEX_FORMAT_DEFAULT;1582}1583return version;1584}15851586 version =strtoul(envversion, &endp,10);1587if(*endp ||1588 version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {1589warning(_("GIT_INDEX_VERSION set, but the value is invalid.\n"1590"Using version%i"), INDEX_FORMAT_DEFAULT);1591 version = INDEX_FORMAT_DEFAULT;1592}1593return version;1594}15951596/*1597 * dev/ino/uid/gid/size are also just tracked to the low 32 bits1598 * Again - this is just a (very strong in practice) heuristic that1599 * the inode hasn't changed.1600 *1601 * We save the fields in big-endian order to allow using the1602 * index file over NFS transparently.1603 */1604struct ondisk_cache_entry {1605struct cache_time ctime;1606struct cache_time mtime;1607uint32_t dev;1608uint32_t ino;1609uint32_t mode;1610uint32_t uid;1611uint32_t gid;1612uint32_t size;1613unsigned char sha1[20];1614uint16_t flags;1615char name[FLEX_ARRAY];/* more */1616};16171618/*1619 * This struct is used when CE_EXTENDED bit is 11620 * The struct must match ondisk_cache_entry exactly from1621 * ctime till flags1622 */1623struct ondisk_cache_entry_extended {1624struct cache_time ctime;1625struct cache_time mtime;1626uint32_t dev;1627uint32_t ino;1628uint32_t mode;1629uint32_t uid;1630uint32_t gid;1631uint32_t size;1632unsigned char sha1[20];1633uint16_t flags;1634uint16_t flags2;1635char name[FLEX_ARRAY];/* more */1636};16371638/* These are only used for v3 or lower */1639#define align_padding_size(size, len) ((size + (len) + 8) & ~7) - (size + len)1640#define align_flex_name(STRUCT,len) ((offsetof(struct STRUCT,name) + (len) + 8) & ~7)1641#define ondisk_cache_entry_size(len) align_flex_name(ondisk_cache_entry,len)1642#define ondisk_cache_entry_extended_size(len) align_flex_name(ondisk_cache_entry_extended,len)1643#define ondisk_ce_size(ce) (((ce)->ce_flags & CE_EXTENDED) ? \1644 ondisk_cache_entry_extended_size(ce_namelen(ce)) : \1645 ondisk_cache_entry_size(ce_namelen(ce)))16461647/* Allow fsck to force verification of the index checksum. */1648int verify_index_checksum;16491650/* Allow fsck to force verification of the cache entry order. */1651int verify_ce_order;16521653static intverify_hdr(struct cache_header *hdr,unsigned long size)1654{1655 git_hash_ctx c;1656unsigned char hash[GIT_MAX_RAWSZ];1657int hdr_version;16581659if(hdr->hdr_signature !=htonl(CACHE_SIGNATURE))1660returnerror("bad signature");1661 hdr_version =ntohl(hdr->hdr_version);1662if(hdr_version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < hdr_version)1663returnerror("bad index version%d", hdr_version);16641665if(!verify_index_checksum)1666return0;16671668 the_hash_algo->init_fn(&c);1669 the_hash_algo->update_fn(&c, hdr, size - the_hash_algo->rawsz);1670 the_hash_algo->final_fn(hash, &c);1671if(!hasheq(hash, (unsigned char*)hdr + size - the_hash_algo->rawsz))1672returnerror("bad index file sha1 signature");1673return0;1674}16751676static intread_index_extension(struct index_state *istate,1677const char*ext,void*data,unsigned long sz)1678{1679switch(CACHE_EXT(ext)) {1680case CACHE_EXT_TREE:1681 istate->cache_tree =cache_tree_read(data, sz);1682break;1683case CACHE_EXT_RESOLVE_UNDO:1684 istate->resolve_undo =resolve_undo_read(data, sz);1685break;1686case CACHE_EXT_LINK:1687if(read_link_extension(istate, data, sz))1688return-1;1689break;1690case CACHE_EXT_UNTRACKED:1691 istate->untracked =read_untracked_extension(data, sz);1692break;1693case CACHE_EXT_FSMONITOR:1694read_fsmonitor_extension(istate, data, sz);1695break;1696default:1697if(*ext <'A'||'Z'< *ext)1698returnerror("index uses %.4s extension, which we do not understand",1699 ext);1700fprintf(stderr,"ignoring %.4s extension\n", ext);1701break;1702}1703return0;1704}17051706inthold_locked_index(struct lock_file *lk,int lock_flags)1707{1708returnhold_lock_file_for_update(lk,get_index_file(), lock_flags);1709}17101711intread_index(struct index_state *istate)1712{1713returnread_index_from(istate,get_index_file(),get_git_dir());1714}17151716static struct cache_entry *cache_entry_from_ondisk(struct mem_pool *mem_pool,1717struct ondisk_cache_entry *ondisk,1718unsigned int flags,1719const char*name,1720size_t len)1721{1722struct cache_entry *ce =mem_pool__ce_alloc(mem_pool, len);17231724 ce->ce_stat_data.sd_ctime.sec =get_be32(&ondisk->ctime.sec);1725 ce->ce_stat_data.sd_mtime.sec =get_be32(&ondisk->mtime.sec);1726 ce->ce_stat_data.sd_ctime.nsec =get_be32(&ondisk->ctime.nsec);1727 ce->ce_stat_data.sd_mtime.nsec =get_be32(&ondisk->mtime.nsec);1728 ce->ce_stat_data.sd_dev =get_be32(&ondisk->dev);1729 ce->ce_stat_data.sd_ino =get_be32(&ondisk->ino);1730 ce->ce_mode =get_be32(&ondisk->mode);1731 ce->ce_stat_data.sd_uid =get_be32(&ondisk->uid);1732 ce->ce_stat_data.sd_gid =get_be32(&ondisk->gid);1733 ce->ce_stat_data.sd_size =get_be32(&ondisk->size);1734 ce->ce_flags = flags & ~CE_NAMEMASK;1735 ce->ce_namelen = len;1736 ce->index =0;1737hashcpy(ce->oid.hash, ondisk->sha1);1738memcpy(ce->name, name, len);1739 ce->name[len] ='\0';1740return ce;1741}17421743/*1744 * Adjacent cache entries tend to share the leading paths, so it makes1745 * sense to only store the differences in later entries. In the v41746 * on-disk format of the index, each on-disk cache entry stores the1747 * number of bytes to be stripped from the end of the previous name,1748 * and the bytes to append to the result, to come up with its name.1749 */1750static unsigned longexpand_name_field(struct strbuf *name,const char*cp_)1751{1752const unsigned char*ep, *cp = (const unsigned char*)cp_;1753size_t len =decode_varint(&cp);17541755if(name->len < len)1756die("malformed name field in the index");1757strbuf_remove(name, name->len - len, len);1758for(ep = cp; *ep; ep++)1759;/* find the end */1760strbuf_add(name, cp, ep - cp);1761return(const char*)ep +1- cp_;1762}17631764static struct cache_entry *create_from_disk(struct mem_pool *mem_pool,1765struct ondisk_cache_entry *ondisk,1766unsigned long*ent_size,1767struct strbuf *previous_name)1768{1769struct cache_entry *ce;1770size_t len;1771const char*name;1772unsigned int flags;17731774/* On-disk flags are just 16 bits */1775 flags =get_be16(&ondisk->flags);1776 len = flags & CE_NAMEMASK;17771778if(flags & CE_EXTENDED) {1779struct ondisk_cache_entry_extended *ondisk2;1780int extended_flags;1781 ondisk2 = (struct ondisk_cache_entry_extended *)ondisk;1782 extended_flags =get_be16(&ondisk2->flags2) <<16;1783/* We do not yet understand any bit out of CE_EXTENDED_FLAGS */1784if(extended_flags & ~CE_EXTENDED_FLAGS)1785die("Unknown index entry format%08x", extended_flags);1786 flags |= extended_flags;1787 name = ondisk2->name;1788}1789else1790 name = ondisk->name;17911792if(!previous_name) {1793/* v3 and earlier */1794if(len == CE_NAMEMASK)1795 len =strlen(name);1796 ce =cache_entry_from_ondisk(mem_pool, ondisk, flags, name, len);17971798*ent_size =ondisk_ce_size(ce);1799}else{1800unsigned long consumed;1801 consumed =expand_name_field(previous_name, name);1802 ce =cache_entry_from_ondisk(mem_pool, ondisk, flags,1803 previous_name->buf,1804 previous_name->len);18051806*ent_size = (name - ((char*)ondisk)) + consumed;1807}1808return ce;1809}18101811static voidcheck_ce_order(struct index_state *istate)1812{1813unsigned int i;18141815if(!verify_ce_order)1816return;18171818for(i =1; i < istate->cache_nr; i++) {1819struct cache_entry *ce = istate->cache[i -1];1820struct cache_entry *next_ce = istate->cache[i];1821int name_compare =strcmp(ce->name, next_ce->name);18221823if(0< name_compare)1824die("unordered stage entries in index");1825if(!name_compare) {1826if(!ce_stage(ce))1827die("multiple stage entries for merged file '%s'",1828 ce->name);1829if(ce_stage(ce) >ce_stage(next_ce))1830die("unordered stage entries for '%s'",1831 ce->name);1832}1833}1834}18351836static voidtweak_untracked_cache(struct index_state *istate)1837{1838switch(git_config_get_untracked_cache()) {1839case-1:/* keep: do nothing */1840break;1841case0:/* false */1842remove_untracked_cache(istate);1843break;1844case1:/* true */1845add_untracked_cache(istate);1846break;1847default:/* unknown value: do nothing */1848break;1849}1850}18511852static voidtweak_split_index(struct index_state *istate)1853{1854switch(git_config_get_split_index()) {1855case-1:/* unset: do nothing */1856break;1857case0:/* false */1858remove_split_index(istate);1859break;1860case1:/* true */1861add_split_index(istate);1862break;1863default:/* unknown value: do nothing */1864break;1865}1866}18671868static voidpost_read_index_from(struct index_state *istate)1869{1870check_ce_order(istate);1871tweak_untracked_cache(istate);1872tweak_split_index(istate);1873tweak_fsmonitor(istate);1874}18751876static size_testimate_cache_size_from_compressed(unsigned int entries)1877{1878return entries * (sizeof(struct cache_entry) + CACHE_ENTRY_PATH_LENGTH);1879}18801881static size_testimate_cache_size(size_t ondisk_size,unsigned int entries)1882{1883long per_entry =sizeof(struct cache_entry) -sizeof(struct ondisk_cache_entry);18841885/*1886 * Account for potential alignment differences.1887 */1888 per_entry +=align_padding_size(sizeof(struct cache_entry), -sizeof(struct ondisk_cache_entry));1889return ondisk_size + entries * per_entry;1890}18911892/* remember to discard_cache() before reading a different cache! */1893intdo_read_index(struct index_state *istate,const char*path,int must_exist)1894{1895int fd, i;1896struct stat st;1897unsigned long src_offset;1898struct cache_header *hdr;1899void*mmap;1900size_t mmap_size;1901struct strbuf previous_name_buf = STRBUF_INIT, *previous_name;19021903if(istate->initialized)1904return istate->cache_nr;19051906 istate->timestamp.sec =0;1907 istate->timestamp.nsec =0;1908 fd =open(path, O_RDONLY);1909if(fd <0) {1910if(!must_exist && errno == ENOENT)1911return0;1912die_errno("%s: index file open failed", path);1913}19141915if(fstat(fd, &st))1916die_errno("cannot stat the open index");19171918 mmap_size =xsize_t(st.st_size);1919if(mmap_size <sizeof(struct cache_header) + the_hash_algo->rawsz)1920die("index file smaller than expected");19211922 mmap =xmmap(NULL, mmap_size, PROT_READ, MAP_PRIVATE, fd,0);1923if(mmap == MAP_FAILED)1924die_errno("unable to map index file");1925close(fd);19261927 hdr = mmap;1928if(verify_hdr(hdr, mmap_size) <0)1929goto unmap;19301931hashcpy(istate->oid.hash, (const unsigned char*)hdr + mmap_size - the_hash_algo->rawsz);1932 istate->version =ntohl(hdr->hdr_version);1933 istate->cache_nr =ntohl(hdr->hdr_entries);1934 istate->cache_alloc =alloc_nr(istate->cache_nr);1935 istate->cache =xcalloc(istate->cache_alloc,sizeof(*istate->cache));1936 istate->initialized =1;19371938if(istate->version ==4) {1939 previous_name = &previous_name_buf;1940mem_pool_init(&istate->ce_mem_pool,1941estimate_cache_size_from_compressed(istate->cache_nr));1942}else{1943 previous_name = NULL;1944mem_pool_init(&istate->ce_mem_pool,1945estimate_cache_size(mmap_size, istate->cache_nr));1946}19471948 src_offset =sizeof(*hdr);1949for(i =0; i < istate->cache_nr; i++) {1950struct ondisk_cache_entry *disk_ce;1951struct cache_entry *ce;1952unsigned long consumed;19531954 disk_ce = (struct ondisk_cache_entry *)((char*)mmap + src_offset);1955 ce =create_from_disk(istate->ce_mem_pool, disk_ce, &consumed, previous_name);1956set_index_entry(istate, i, ce);19571958 src_offset += consumed;1959}1960strbuf_release(&previous_name_buf);1961 istate->timestamp.sec = st.st_mtime;1962 istate->timestamp.nsec =ST_MTIME_NSEC(st);19631964while(src_offset <= mmap_size - the_hash_algo->rawsz -8) {1965/* After an array of active_nr index entries,1966 * there can be arbitrary number of extended1967 * sections, each of which is prefixed with1968 * extension name (4-byte) and section length1969 * in 4-byte network byte order.1970 */1971uint32_t extsize;1972memcpy(&extsize, (char*)mmap + src_offset +4,4);1973 extsize =ntohl(extsize);1974if(read_index_extension(istate,1975(const char*) mmap + src_offset,1976(char*) mmap + src_offset +8,1977 extsize) <0)1978goto unmap;1979 src_offset +=8;1980 src_offset += extsize;1981}1982munmap(mmap, mmap_size);1983return istate->cache_nr;19841985unmap:1986munmap(mmap, mmap_size);1987die("index file corrupt");1988}19891990/*1991 * Signal that the shared index is used by updating its mtime.1992 *1993 * This way, shared index can be removed if they have not been used1994 * for some time.1995 */1996static voidfreshen_shared_index(const char*shared_index,int warn)1997{1998if(!check_and_freshen_file(shared_index,1) && warn)1999warning("could not freshen shared index '%s'", shared_index);2000}20012002intread_index_from(struct index_state *istate,const char*path,2003const char*gitdir)2004{2005struct split_index *split_index;2006int ret;2007char*base_oid_hex;2008char*base_path;20092010/* istate->initialized covers both .git/index and .git/sharedindex.xxx */2011if(istate->initialized)2012return istate->cache_nr;20132014trace_performance_enter();2015 ret =do_read_index(istate, path,0);2016trace_performance_leave("read cache%s", path);20172018 split_index = istate->split_index;2019if(!split_index ||is_null_oid(&split_index->base_oid)) {2020post_read_index_from(istate);2021return ret;2022}20232024trace_performance_enter();2025if(split_index->base)2026discard_index(split_index->base);2027else2028 split_index->base =xcalloc(1,sizeof(*split_index->base));20292030 base_oid_hex =oid_to_hex(&split_index->base_oid);2031 base_path =xstrfmt("%s/sharedindex.%s", gitdir, base_oid_hex);2032 ret =do_read_index(split_index->base, base_path,1);2033if(!oideq(&split_index->base_oid, &split_index->base->oid))2034die("broken index, expect%sin%s, got%s",2035 base_oid_hex, base_path,2036oid_to_hex(&split_index->base->oid));20372038freshen_shared_index(base_path,0);2039merge_base_index(istate);2040post_read_index_from(istate);2041free(base_path);2042trace_performance_leave("read cache%s", base_path);2043return ret;2044}20452046intis_index_unborn(struct index_state *istate)2047{2048return(!istate->cache_nr && !istate->timestamp.sec);2049}20502051intdiscard_index(struct index_state *istate)2052{2053/*2054 * Cache entries in istate->cache[] should have been allocated2055 * from the memory pool associated with this index, or from an2056 * associated split_index. There is no need to free individual2057 * cache entries. validate_cache_entries can detect when this2058 * assertion does not hold.2059 */2060validate_cache_entries(istate);20612062resolve_undo_clear_index(istate);2063 istate->cache_nr =0;2064 istate->cache_changed =0;2065 istate->timestamp.sec =0;2066 istate->timestamp.nsec =0;2067free_name_hash(istate);2068cache_tree_free(&(istate->cache_tree));2069 istate->initialized =0;2070FREE_AND_NULL(istate->cache);2071 istate->cache_alloc =0;2072discard_split_index(istate);2073free_untracked_cache(istate->untracked);2074 istate->untracked = NULL;20752076if(istate->ce_mem_pool) {2077mem_pool_discard(istate->ce_mem_pool,should_validate_cache_entries());2078 istate->ce_mem_pool = NULL;2079}20802081return0;2082}20832084/*2085 * Validate the cache entries of this index.2086 * All cache entries associated with this index2087 * should have been allocated by the memory pool2088 * associated with this index, or by a referenced2089 * split index.2090 */2091voidvalidate_cache_entries(const struct index_state *istate)2092{2093int i;20942095if(!should_validate_cache_entries() ||!istate || !istate->initialized)2096return;20972098for(i =0; i < istate->cache_nr; i++) {2099if(!istate) {2100die("internal error: cache entry is not allocated from expected memory pool");2101}else if(!istate->ce_mem_pool ||2102!mem_pool_contains(istate->ce_mem_pool, istate->cache[i])) {2103if(!istate->split_index ||2104!istate->split_index->base ||2105!istate->split_index->base->ce_mem_pool ||2106!mem_pool_contains(istate->split_index->base->ce_mem_pool, istate->cache[i])) {2107die("internal error: cache entry is not allocated from expected memory pool");2108}2109}2110}21112112if(istate->split_index)2113validate_cache_entries(istate->split_index->base);2114}21152116intunmerged_index(const struct index_state *istate)2117{2118int i;2119for(i =0; i < istate->cache_nr; i++) {2120if(ce_stage(istate->cache[i]))2121return1;2122}2123return0;2124}21252126intindex_has_changes(const struct index_state *istate,2127struct tree *tree,2128struct strbuf *sb)2129{2130struct object_id cmp;2131int i;21322133if(istate != &the_index) {2134BUG("index_has_changes cannot yet accept istate != &the_index; do_diff_cache needs updating first.");2135}2136if(tree)2137 cmp = tree->object.oid;2138if(tree || !get_oid_tree("HEAD", &cmp)) {2139struct diff_options opt;21402141diff_setup(&opt);2142 opt.flags.exit_with_status =1;2143if(!sb)2144 opt.flags.quick =1;2145do_diff_cache(&cmp, &opt);2146diffcore_std(&opt);2147for(i =0; sb && i < diff_queued_diff.nr; i++) {2148if(i)2149strbuf_addch(sb,' ');2150strbuf_addstr(sb, diff_queued_diff.queue[i]->two->path);2151}2152diff_flush(&opt);2153return opt.flags.has_changes !=0;2154}else{2155for(i =0; sb && i < istate->cache_nr; i++) {2156if(i)2157strbuf_addch(sb,' ');2158strbuf_addstr(sb, istate->cache[i]->name);2159}2160return!!istate->cache_nr;2161}2162}21632164#define WRITE_BUFFER_SIZE 81922165static unsigned char write_buffer[WRITE_BUFFER_SIZE];2166static unsigned long write_buffer_len;21672168static intce_write_flush(git_hash_ctx *context,int fd)2169{2170unsigned int buffered = write_buffer_len;2171if(buffered) {2172 the_hash_algo->update_fn(context, write_buffer, buffered);2173if(write_in_full(fd, write_buffer, buffered) <0)2174return-1;2175 write_buffer_len =0;2176}2177return0;2178}21792180static intce_write(git_hash_ctx *context,int fd,void*data,unsigned int len)2181{2182while(len) {2183unsigned int buffered = write_buffer_len;2184unsigned int partial = WRITE_BUFFER_SIZE - buffered;2185if(partial > len)2186 partial = len;2187memcpy(write_buffer + buffered, data, partial);2188 buffered += partial;2189if(buffered == WRITE_BUFFER_SIZE) {2190 write_buffer_len = buffered;2191if(ce_write_flush(context, fd))2192return-1;2193 buffered =0;2194}2195 write_buffer_len = buffered;2196 len -= partial;2197 data = (char*) data + partial;2198}2199return0;2200}22012202static intwrite_index_ext_header(git_hash_ctx *context,int fd,2203unsigned int ext,unsigned int sz)2204{2205 ext =htonl(ext);2206 sz =htonl(sz);2207return((ce_write(context, fd, &ext,4) <0) ||2208(ce_write(context, fd, &sz,4) <0)) ? -1:0;2209}22102211static intce_flush(git_hash_ctx *context,int fd,unsigned char*hash)2212{2213unsigned int left = write_buffer_len;22142215if(left) {2216 write_buffer_len =0;2217 the_hash_algo->update_fn(context, write_buffer, left);2218}22192220/* Flush first if not enough space for hash signature */2221if(left + the_hash_algo->rawsz > WRITE_BUFFER_SIZE) {2222if(write_in_full(fd, write_buffer, left) <0)2223return-1;2224 left =0;2225}22262227/* Append the hash signature at the end */2228 the_hash_algo->final_fn(write_buffer + left, context);2229hashcpy(hash, write_buffer + left);2230 left += the_hash_algo->rawsz;2231return(write_in_full(fd, write_buffer, left) <0) ? -1:0;2232}22332234static voidce_smudge_racily_clean_entry(struct cache_entry *ce)2235{2236/*2237 * The only thing we care about in this function is to smudge the2238 * falsely clean entry due to touch-update-touch race, so we leave2239 * everything else as they are. We are called for entries whose2240 * ce_stat_data.sd_mtime match the index file mtime.2241 *2242 * Note that this actually does not do much for gitlinks, for2243 * which ce_match_stat_basic() always goes to the actual2244 * contents. The caller checks with is_racy_timestamp() which2245 * always says "no" for gitlinks, so we are not called for them ;-)2246 */2247struct stat st;22482249if(lstat(ce->name, &st) <0)2250return;2251if(ce_match_stat_basic(ce, &st))2252return;2253if(ce_modified_check_fs(ce, &st)) {2254/* This is "racily clean"; smudge it. Note that this2255 * is a tricky code. At first glance, it may appear2256 * that it can break with this sequence:2257 *2258 * $ echo xyzzy >frotz2259 * $ git-update-index --add frotz2260 * $ : >frotz2261 * $ sleep 32262 * $ echo filfre >nitfol2263 * $ git-update-index --add nitfol2264 *2265 * but it does not. When the second update-index runs,2266 * it notices that the entry "frotz" has the same timestamp2267 * as index, and if we were to smudge it by resetting its2268 * size to zero here, then the object name recorded2269 * in index is the 6-byte file but the cached stat information2270 * becomes zero --- which would then match what we would2271 * obtain from the filesystem next time we stat("frotz").2272 *2273 * However, the second update-index, before calling2274 * this function, notices that the cached size is 62275 * bytes and what is on the filesystem is an empty2276 * file, and never calls us, so the cached size information2277 * for "frotz" stays 6 which does not match the filesystem.2278 */2279 ce->ce_stat_data.sd_size =0;2280}2281}22822283/* Copy miscellaneous fields but not the name */2284static voidcopy_cache_entry_to_ondisk(struct ondisk_cache_entry *ondisk,2285struct cache_entry *ce)2286{2287short flags;22882289 ondisk->ctime.sec =htonl(ce->ce_stat_data.sd_ctime.sec);2290 ondisk->mtime.sec =htonl(ce->ce_stat_data.sd_mtime.sec);2291 ondisk->ctime.nsec =htonl(ce->ce_stat_data.sd_ctime.nsec);2292 ondisk->mtime.nsec =htonl(ce->ce_stat_data.sd_mtime.nsec);2293 ondisk->dev =htonl(ce->ce_stat_data.sd_dev);2294 ondisk->ino =htonl(ce->ce_stat_data.sd_ino);2295 ondisk->mode =htonl(ce->ce_mode);2296 ondisk->uid =htonl(ce->ce_stat_data.sd_uid);2297 ondisk->gid =htonl(ce->ce_stat_data.sd_gid);2298 ondisk->size =htonl(ce->ce_stat_data.sd_size);2299hashcpy(ondisk->sha1, ce->oid.hash);23002301 flags = ce->ce_flags & ~CE_NAMEMASK;2302 flags |= (ce_namelen(ce) >= CE_NAMEMASK ? CE_NAMEMASK :ce_namelen(ce));2303 ondisk->flags =htons(flags);2304if(ce->ce_flags & CE_EXTENDED) {2305struct ondisk_cache_entry_extended *ondisk2;2306 ondisk2 = (struct ondisk_cache_entry_extended *)ondisk;2307 ondisk2->flags2 =htons((ce->ce_flags & CE_EXTENDED_FLAGS) >>16);2308}2309}23102311static intce_write_entry(git_hash_ctx *c,int fd,struct cache_entry *ce,2312struct strbuf *previous_name,struct ondisk_cache_entry *ondisk)2313{2314int size;2315int result;2316unsigned int saved_namelen;2317int stripped_name =0;2318static unsigned char padding[8] = {0x00};23192320if(ce->ce_flags & CE_STRIP_NAME) {2321 saved_namelen =ce_namelen(ce);2322 ce->ce_namelen =0;2323 stripped_name =1;2324}23252326if(ce->ce_flags & CE_EXTENDED)2327 size =offsetof(struct ondisk_cache_entry_extended, name);2328else2329 size =offsetof(struct ondisk_cache_entry, name);23302331if(!previous_name) {2332int len =ce_namelen(ce);2333copy_cache_entry_to_ondisk(ondisk, ce);2334 result =ce_write(c, fd, ondisk, size);2335if(!result)2336 result =ce_write(c, fd, ce->name, len);2337if(!result)2338 result =ce_write(c, fd, padding,align_padding_size(size, len));2339}else{2340int common, to_remove, prefix_size;2341unsigned char to_remove_vi[16];2342for(common =0;2343(ce->name[common] &&2344 common < previous_name->len &&2345 ce->name[common] == previous_name->buf[common]);2346 common++)2347;/* still matching */2348 to_remove = previous_name->len - common;2349 prefix_size =encode_varint(to_remove, to_remove_vi);23502351copy_cache_entry_to_ondisk(ondisk, ce);2352 result =ce_write(c, fd, ondisk, size);2353if(!result)2354 result =ce_write(c, fd, to_remove_vi, prefix_size);2355if(!result)2356 result =ce_write(c, fd, ce->name + common,ce_namelen(ce) - common);2357if(!result)2358 result =ce_write(c, fd, padding,1);23592360strbuf_splice(previous_name, common, to_remove,2361 ce->name + common,ce_namelen(ce) - common);2362}2363if(stripped_name) {2364 ce->ce_namelen = saved_namelen;2365 ce->ce_flags &= ~CE_STRIP_NAME;2366}23672368return result;2369}23702371/*2372 * This function verifies if index_state has the correct sha1 of the2373 * index file. Don't die if we have any other failure, just return 0.2374 */2375static intverify_index_from(const struct index_state *istate,const char*path)2376{2377int fd;2378 ssize_t n;2379struct stat st;2380unsigned char hash[GIT_MAX_RAWSZ];23812382if(!istate->initialized)2383return0;23842385 fd =open(path, O_RDONLY);2386if(fd <0)2387return0;23882389if(fstat(fd, &st))2390goto out;23912392if(st.st_size <sizeof(struct cache_header) + the_hash_algo->rawsz)2393goto out;23942395 n =pread_in_full(fd, hash, the_hash_algo->rawsz, st.st_size - the_hash_algo->rawsz);2396if(n != the_hash_algo->rawsz)2397goto out;23982399if(!hasheq(istate->oid.hash, hash))2400goto out;24012402close(fd);2403return1;24042405out:2406close(fd);2407return0;2408}24092410static intverify_index(const struct index_state *istate)2411{2412returnverify_index_from(istate,get_index_file());2413}24142415static inthas_racy_timestamp(struct index_state *istate)2416{2417int entries = istate->cache_nr;2418int i;24192420for(i =0; i < entries; i++) {2421struct cache_entry *ce = istate->cache[i];2422if(is_racy_timestamp(istate, ce))2423return1;2424}2425return0;2426}24272428voidupdate_index_if_able(struct index_state *istate,struct lock_file *lockfile)2429{2430if((istate->cache_changed ||has_racy_timestamp(istate)) &&2431verify_index(istate))2432write_locked_index(istate, lockfile, COMMIT_LOCK);2433else2434rollback_lock_file(lockfile);2435}24362437/*2438 * On success, `tempfile` is closed. If it is the temporary file2439 * of a `struct lock_file`, we will therefore effectively perform2440 * a 'close_lock_file_gently()`. Since that is an implementation2441 * detail of lockfiles, callers of `do_write_index()` should not2442 * rely on it.2443 */2444static intdo_write_index(struct index_state *istate,struct tempfile *tempfile,2445int strip_extensions)2446{2447uint64_t start =getnanotime();2448int newfd = tempfile->fd;2449 git_hash_ctx c;2450struct cache_header hdr;2451int i, err =0, removed, extended, hdr_version;2452struct cache_entry **cache = istate->cache;2453int entries = istate->cache_nr;2454struct stat st;2455struct ondisk_cache_entry_extended ondisk;2456struct strbuf previous_name_buf = STRBUF_INIT, *previous_name;2457int drop_cache_tree = istate->drop_cache_tree;24582459for(i = removed = extended =0; i < entries; i++) {2460if(cache[i]->ce_flags & CE_REMOVE)2461 removed++;24622463/* reduce extended entries if possible */2464 cache[i]->ce_flags &= ~CE_EXTENDED;2465if(cache[i]->ce_flags & CE_EXTENDED_FLAGS) {2466 extended++;2467 cache[i]->ce_flags |= CE_EXTENDED;2468}2469}24702471if(!istate->version) {2472 istate->version =get_index_format_default();2473if(git_env_bool("GIT_TEST_SPLIT_INDEX",0))2474init_split_index(istate);2475}24762477/* demote version 3 to version 2 when the latter suffices */2478if(istate->version ==3|| istate->version ==2)2479 istate->version = extended ?3:2;24802481 hdr_version = istate->version;24822483 hdr.hdr_signature =htonl(CACHE_SIGNATURE);2484 hdr.hdr_version =htonl(hdr_version);2485 hdr.hdr_entries =htonl(entries - removed);24862487 the_hash_algo->init_fn(&c);2488if(ce_write(&c, newfd, &hdr,sizeof(hdr)) <0)2489return-1;24902491 previous_name = (hdr_version ==4) ? &previous_name_buf : NULL;24922493for(i =0; i < entries; i++) {2494struct cache_entry *ce = cache[i];2495if(ce->ce_flags & CE_REMOVE)2496continue;2497if(!ce_uptodate(ce) &&is_racy_timestamp(istate, ce))2498ce_smudge_racily_clean_entry(ce);2499if(is_null_oid(&ce->oid)) {2500static const char msg[] ="cache entry has null sha1:%s";2501static int allow = -1;25022503if(allow <0)2504 allow =git_env_bool("GIT_ALLOW_NULL_SHA1",0);2505if(allow)2506warning(msg, ce->name);2507else2508 err =error(msg, ce->name);25092510 drop_cache_tree =1;2511}2512if(ce_write_entry(&c, newfd, ce, previous_name, (struct ondisk_cache_entry *)&ondisk) <0)2513 err = -1;25142515if(err)2516break;2517}2518strbuf_release(&previous_name_buf);25192520if(err)2521return err;25222523/* Write extension data here */2524if(!strip_extensions && istate->split_index) {2525struct strbuf sb = STRBUF_INIT;25262527 err =write_link_extension(&sb, istate) <0||2528write_index_ext_header(&c, newfd, CACHE_EXT_LINK,2529 sb.len) <0||2530ce_write(&c, newfd, sb.buf, sb.len) <0;2531strbuf_release(&sb);2532if(err)2533return-1;2534}2535if(!strip_extensions && !drop_cache_tree && istate->cache_tree) {2536struct strbuf sb = STRBUF_INIT;25372538cache_tree_write(&sb, istate->cache_tree);2539 err =write_index_ext_header(&c, newfd, CACHE_EXT_TREE, sb.len) <02540||ce_write(&c, newfd, sb.buf, sb.len) <0;2541strbuf_release(&sb);2542if(err)2543return-1;2544}2545if(!strip_extensions && istate->resolve_undo) {2546struct strbuf sb = STRBUF_INIT;25472548resolve_undo_write(&sb, istate->resolve_undo);2549 err =write_index_ext_header(&c, newfd, CACHE_EXT_RESOLVE_UNDO,2550 sb.len) <02551||ce_write(&c, newfd, sb.buf, sb.len) <0;2552strbuf_release(&sb);2553if(err)2554return-1;2555}2556if(!strip_extensions && istate->untracked) {2557struct strbuf sb = STRBUF_INIT;25582559write_untracked_extension(&sb, istate->untracked);2560 err =write_index_ext_header(&c, newfd, CACHE_EXT_UNTRACKED,2561 sb.len) <0||2562ce_write(&c, newfd, sb.buf, sb.len) <0;2563strbuf_release(&sb);2564if(err)2565return-1;2566}2567if(!strip_extensions && istate->fsmonitor_last_update) {2568struct strbuf sb = STRBUF_INIT;25692570write_fsmonitor_extension(&sb, istate);2571 err =write_index_ext_header(&c, newfd, CACHE_EXT_FSMONITOR, sb.len) <02572||ce_write(&c, newfd, sb.buf, sb.len) <0;2573strbuf_release(&sb);2574if(err)2575return-1;2576}25772578if(ce_flush(&c, newfd, istate->oid.hash))2579return-1;2580if(close_tempfile_gently(tempfile)) {2581error(_("could not close '%s'"), tempfile->filename.buf);2582return-1;2583}2584if(stat(tempfile->filename.buf, &st))2585return-1;2586 istate->timestamp.sec = (unsigned int)st.st_mtime;2587 istate->timestamp.nsec =ST_MTIME_NSEC(st);2588trace_performance_since(start,"write index, changed mask =%x", istate->cache_changed);2589return0;2590}25912592voidset_alternate_index_output(const char*name)2593{2594 alternate_index_output = name;2595}25962597static intcommit_locked_index(struct lock_file *lk)2598{2599if(alternate_index_output)2600returncommit_lock_file_to(lk, alternate_index_output);2601else2602returncommit_lock_file(lk);2603}26042605static intdo_write_locked_index(struct index_state *istate,struct lock_file *lock,2606unsigned flags)2607{2608int ret =do_write_index(istate, lock->tempfile,0);2609if(ret)2610return ret;2611if(flags & COMMIT_LOCK)2612returncommit_locked_index(lock);2613returnclose_lock_file_gently(lock);2614}26152616static intwrite_split_index(struct index_state *istate,2617struct lock_file *lock,2618unsigned flags)2619{2620int ret;2621prepare_to_write_split_index(istate);2622 ret =do_write_locked_index(istate, lock, flags);2623finish_writing_split_index(istate);2624return ret;2625}26262627static const char*shared_index_expire ="2.weeks.ago";26282629static unsigned longget_shared_index_expire_date(void)2630{2631static unsigned long shared_index_expire_date;2632static int shared_index_expire_date_prepared;26332634if(!shared_index_expire_date_prepared) {2635git_config_get_expiry("splitindex.sharedindexexpire",2636&shared_index_expire);2637 shared_index_expire_date =approxidate(shared_index_expire);2638 shared_index_expire_date_prepared =1;2639}26402641return shared_index_expire_date;2642}26432644static intshould_delete_shared_index(const char*shared_index_path)2645{2646struct stat st;2647unsigned long expiration;26482649/* Check timestamp */2650 expiration =get_shared_index_expire_date();2651if(!expiration)2652return0;2653if(stat(shared_index_path, &st))2654returnerror_errno(_("could not stat '%s'"), shared_index_path);2655if(st.st_mtime > expiration)2656return0;26572658return1;2659}26602661static intclean_shared_index_files(const char*current_hex)2662{2663struct dirent *de;2664DIR*dir =opendir(get_git_dir());26652666if(!dir)2667returnerror_errno(_("unable to open git dir:%s"),get_git_dir());26682669while((de =readdir(dir)) != NULL) {2670const char*sha1_hex;2671const char*shared_index_path;2672if(!skip_prefix(de->d_name,"sharedindex.", &sha1_hex))2673continue;2674if(!strcmp(sha1_hex, current_hex))2675continue;2676 shared_index_path =git_path("%s", de->d_name);2677if(should_delete_shared_index(shared_index_path) >0&&2678unlink(shared_index_path))2679warning_errno(_("unable to unlink:%s"), shared_index_path);2680}2681closedir(dir);26822683return0;2684}26852686static intwrite_shared_index(struct index_state *istate,2687struct tempfile **temp)2688{2689struct split_index *si = istate->split_index;2690int ret;26912692move_cache_to_base_index(istate);2693 ret =do_write_index(si->base, *temp,1);2694if(ret)2695return ret;2696 ret =adjust_shared_perm(get_tempfile_path(*temp));2697if(ret) {2698error("cannot fix permission bits on%s",get_tempfile_path(*temp));2699return ret;2700}2701 ret =rename_tempfile(temp,2702git_path("sharedindex.%s",oid_to_hex(&si->base->oid)));2703if(!ret) {2704oidcpy(&si->base_oid, &si->base->oid);2705clean_shared_index_files(oid_to_hex(&si->base->oid));2706}27072708return ret;2709}27102711static const int default_max_percent_split_change =20;27122713static inttoo_many_not_shared_entries(struct index_state *istate)2714{2715int i, not_shared =0;2716int max_split =git_config_get_max_percent_split_change();27172718switch(max_split) {2719case-1:2720/* not or badly configured: use the default value */2721 max_split = default_max_percent_split_change;2722break;2723case0:2724return1;/* 0% means always write a new shared index */2725case100:2726return0;/* 100% means never write a new shared index */2727default:2728break;/* just use the configured value */2729}27302731/* Count not shared entries */2732for(i =0; i < istate->cache_nr; i++) {2733struct cache_entry *ce = istate->cache[i];2734if(!ce->index)2735 not_shared++;2736}27372738return(int64_t)istate->cache_nr * max_split < (int64_t)not_shared *100;2739}27402741intwrite_locked_index(struct index_state *istate,struct lock_file *lock,2742unsigned flags)2743{2744int new_shared_index, ret;2745struct split_index *si = istate->split_index;27462747if(git_env_bool("GIT_TEST_CHECK_CACHE_TREE",0))2748cache_tree_verify(istate);27492750if((flags & SKIP_IF_UNCHANGED) && !istate->cache_changed) {2751if(flags & COMMIT_LOCK)2752rollback_lock_file(lock);2753return0;2754}27552756if(istate->fsmonitor_last_update)2757fill_fsmonitor_bitmap(istate);27582759if(!si || alternate_index_output ||2760(istate->cache_changed & ~EXTMASK)) {2761if(si)2762oidclr(&si->base_oid);2763 ret =do_write_locked_index(istate, lock, flags);2764goto out;2765}27662767if(git_env_bool("GIT_TEST_SPLIT_INDEX",0)) {2768int v = si->base_oid.hash[0];2769if((v &15) <6)2770 istate->cache_changed |= SPLIT_INDEX_ORDERED;2771}2772if(too_many_not_shared_entries(istate))2773 istate->cache_changed |= SPLIT_INDEX_ORDERED;27742775 new_shared_index = istate->cache_changed & SPLIT_INDEX_ORDERED;27762777if(new_shared_index) {2778struct tempfile *temp;2779int saved_errno;27802781 temp =mks_tempfile(git_path("sharedindex_XXXXXX"));2782if(!temp) {2783oidclr(&si->base_oid);2784 ret =do_write_locked_index(istate, lock, flags);2785goto out;2786}2787 ret =write_shared_index(istate, &temp);27882789 saved_errno = errno;2790if(is_tempfile_active(temp))2791delete_tempfile(&temp);2792 errno = saved_errno;27932794if(ret)2795goto out;2796}27972798 ret =write_split_index(istate, lock, flags);27992800/* Freshen the shared index only if the split-index was written */2801if(!ret && !new_shared_index) {2802const char*shared_index =git_path("sharedindex.%s",2803oid_to_hex(&si->base_oid));2804freshen_shared_index(shared_index,1);2805}28062807out:2808if(flags & COMMIT_LOCK)2809rollback_lock_file(lock);2810return ret;2811}28122813/*2814 * Read the index file that is potentially unmerged into given2815 * index_state, dropping any unmerged entries to stage #0 (potentially2816 * resulting in a path appearing as both a file and a directory in the2817 * index; the caller is responsible to clear out the extra entries2818 * before writing the index to a tree). Returns true if the index is2819 * unmerged. Callers who want to refuse to work from an unmerged2820 * state can call this and check its return value, instead of calling2821 * read_cache().2822 */2823intread_index_unmerged(struct index_state *istate)2824{2825int i;2826int unmerged =0;28272828read_index(istate);2829for(i =0; i < istate->cache_nr; i++) {2830struct cache_entry *ce = istate->cache[i];2831struct cache_entry *new_ce;2832int len;28332834if(!ce_stage(ce))2835continue;2836 unmerged =1;2837 len =ce_namelen(ce);2838 new_ce =make_empty_cache_entry(istate, len);2839memcpy(new_ce->name, ce->name, len);2840 new_ce->ce_flags =create_ce_flags(0) | CE_CONFLICTED;2841 new_ce->ce_namelen = len;2842 new_ce->ce_mode = ce->ce_mode;2843if(add_index_entry(istate, new_ce, ADD_CACHE_SKIP_DFCHECK))2844returnerror("%s: cannot drop to stage #0",2845 new_ce->name);2846}2847return unmerged;2848}28492850/*2851 * Returns 1 if the path is an "other" path with respect to2852 * the index; that is, the path is not mentioned in the index at all,2853 * either as a file, a directory with some files in the index,2854 * or as an unmerged entry.2855 *2856 * We helpfully remove a trailing "/" from directories so that2857 * the output of read_directory can be used as-is.2858 */2859intindex_name_is_other(const struct index_state *istate,const char*name,2860int namelen)2861{2862int pos;2863if(namelen && name[namelen -1] =='/')2864 namelen--;2865 pos =index_name_pos(istate, name, namelen);2866if(0<= pos)2867return0;/* exact match */2868 pos = -pos -1;2869if(pos < istate->cache_nr) {2870struct cache_entry *ce = istate->cache[pos];2871if(ce_namelen(ce) == namelen &&2872!memcmp(ce->name, name, namelen))2873return0;/* Yup, this one exists unmerged */2874}2875return1;2876}28772878void*read_blob_data_from_index(const struct index_state *istate,2879const char*path,unsigned long*size)2880{2881int pos, len;2882unsigned long sz;2883enum object_type type;2884void*data;28852886 len =strlen(path);2887 pos =index_name_pos(istate, path, len);2888if(pos <0) {2889/*2890 * We might be in the middle of a merge, in which2891 * case we would read stage #2 (ours).2892 */2893int i;2894for(i = -pos -1;2895(pos <0&& i < istate->cache_nr &&2896!strcmp(istate->cache[i]->name, path));2897 i++)2898if(ce_stage(istate->cache[i]) ==2)2899 pos = i;2900}2901if(pos <0)2902return NULL;2903 data =read_object_file(&istate->cache[pos]->oid, &type, &sz);2904if(!data || type != OBJ_BLOB) {2905free(data);2906return NULL;2907}2908if(size)2909*size = sz;2910return data;2911}29122913voidstat_validity_clear(struct stat_validity *sv)2914{2915FREE_AND_NULL(sv->sd);2916}29172918intstat_validity_check(struct stat_validity *sv,const char*path)2919{2920struct stat st;29212922if(stat(path, &st) <0)2923return sv->sd == NULL;2924if(!sv->sd)2925return0;2926returnS_ISREG(st.st_mode) && !match_stat_data(sv->sd, &st);2927}29282929voidstat_validity_update(struct stat_validity *sv,int fd)2930{2931struct stat st;29322933if(fstat(fd, &st) <0|| !S_ISREG(st.st_mode))2934stat_validity_clear(sv);2935else{2936if(!sv->sd)2937 sv->sd =xcalloc(1,sizeof(struct stat_data));2938fill_stat_data(sv->sd, &st);2939}2940}29412942voidmove_index_extensions(struct index_state *dst,struct index_state *src)2943{2944 dst->untracked = src->untracked;2945 src->untracked = NULL;2946 dst->cache_tree = src->cache_tree;2947 src->cache_tree = NULL;2948}29492950struct cache_entry *dup_cache_entry(const struct cache_entry *ce,2951struct index_state *istate)2952{2953unsigned int size =ce_size(ce);2954int mem_pool_allocated;2955struct cache_entry *new_entry =make_empty_cache_entry(istate,ce_namelen(ce));2956 mem_pool_allocated = new_entry->mem_pool_allocated;29572958memcpy(new_entry, ce, size);2959 new_entry->mem_pool_allocated = mem_pool_allocated;2960return new_entry;2961}29622963voiddiscard_cache_entry(struct cache_entry *ce)2964{2965if(ce &&should_validate_cache_entries())2966memset(ce,0xCD,cache_entry_size(ce->ce_namelen));29672968if(ce && ce->mem_pool_allocated)2969return;29702971free(ce);2972}29732974intshould_validate_cache_entries(void)2975{2976static int validate_index_cache_entries = -1;29772978if(validate_index_cache_entries <0) {2979if(getenv("GIT_TEST_VALIDATE_INDEX_CACHE_ENTRIES"))2980 validate_index_cache_entries =1;2981else2982 validate_index_cache_entries =0;2983}29842985return validate_index_cache_entries;2986}