2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
12 #include "cache-tree.h"
15 #include "object-store.h"
19 #include "resolve-undo.h"
20 #include "run-command.h"
23 #include "split-index.h"
25 #include "fsmonitor.h"
26 #include "thread-utils.h"
28 #include "sparse-index.h"
29 #include "csum-file.h"
30 #include "promisor-remote.h"
33 /* Mask for the name length in ce_flags in the on-disk index */
35 #define CE_NAMEMASK (0x0fff)
39 * The first letter should be 'A'..'Z' for extensions that are not
40 * necessary for a correct operation (i.e. optimization data).
41 * When new extensions are added that _needs_ to be understood in
42 * order to correctly interpret the index file, pick character that
43 * is outside the range, to cause the reader to abort.
46 #define CACHE_EXT(s) ( (s[0]<<24)|(s[1]<<16)|(s[2]<<8)|(s[3]) )
47 #define CACHE_EXT_TREE 0x54524545 /* "TREE" */
48 #define CACHE_EXT_RESOLVE_UNDO 0x52455543 /* "REUC" */
49 #define CACHE_EXT_LINK 0x6c696e6b /* "link" */
50 #define CACHE_EXT_UNTRACKED 0x554E5452 /* "UNTR" */
51 #define CACHE_EXT_FSMONITOR 0x46534D4E /* "FSMN" */
52 #define CACHE_EXT_ENDOFINDEXENTRIES 0x454F4945 /* "EOIE" */
53 #define CACHE_EXT_INDEXENTRYOFFSETTABLE 0x49454F54 /* "IEOT" */
54 #define CACHE_EXT_SPARSE_DIRECTORIES 0x73646972 /* "sdir" */
56 /* changes that can be kept in $GIT_DIR/index (basically all extensions) */
57 #define EXTMASK (RESOLVE_UNDO_CHANGED | CACHE_TREE_CHANGED | \
58 CE_ENTRY_ADDED | CE_ENTRY_REMOVED | CE_ENTRY_CHANGED | \
59 SPLIT_INDEX_ORDERED | UNTRACKED_CHANGED | FSMONITOR_CHANGED)
63 * This is an estimate of the pathname length in the index. We use
64 * this for V4 index files to guess the un-deltafied size of the index
65 * in memory because of pathname deltafication. This is not required
66 * for V2/V3 index formats because their pathnames are not compressed.
67 * If the initial amount of memory set aside is not sufficient, the
68 * mem pool will allocate extra memory.
70 #define CACHE_ENTRY_PATH_LENGTH 80
72 enum index_search_mode
{
77 static inline struct cache_entry
*mem_pool__ce_alloc(struct mem_pool
*mem_pool
, size_t len
)
79 struct cache_entry
*ce
;
80 ce
= mem_pool_alloc(mem_pool
, cache_entry_size(len
));
81 ce
->mem_pool_allocated
= 1;
85 static inline struct cache_entry
*mem_pool__ce_calloc(struct mem_pool
*mem_pool
, size_t len
)
87 struct cache_entry
* ce
;
88 ce
= mem_pool_calloc(mem_pool
, 1, cache_entry_size(len
));
89 ce
->mem_pool_allocated
= 1;
93 static struct mem_pool
*find_mem_pool(struct index_state
*istate
)
95 struct mem_pool
**pool_ptr
;
97 if (istate
->split_index
&& istate
->split_index
->base
)
98 pool_ptr
= &istate
->split_index
->base
->ce_mem_pool
;
100 pool_ptr
= &istate
->ce_mem_pool
;
103 *pool_ptr
= xmalloc(sizeof(**pool_ptr
));
104 mem_pool_init(*pool_ptr
, 0);
110 static const char *alternate_index_output
;
112 static void set_index_entry(struct index_state
*istate
, int nr
, struct cache_entry
*ce
)
114 if (S_ISSPARSEDIR(ce
->ce_mode
))
115 istate
->sparse_index
= 1;
117 istate
->cache
[nr
] = ce
;
118 add_name_hash(istate
, ce
);
121 static void replace_index_entry(struct index_state
*istate
, int nr
, struct cache_entry
*ce
)
123 struct cache_entry
*old
= istate
->cache
[nr
];
125 replace_index_entry_in_base(istate
, old
, ce
);
126 remove_name_hash(istate
, old
);
127 discard_cache_entry(old
);
128 ce
->ce_flags
&= ~CE_HASHED
;
129 set_index_entry(istate
, nr
, ce
);
130 ce
->ce_flags
|= CE_UPDATE_IN_BASE
;
131 mark_fsmonitor_invalid(istate
, ce
);
132 istate
->cache_changed
|= CE_ENTRY_CHANGED
;
135 void rename_index_entry_at(struct index_state
*istate
, int nr
, const char *new_name
)
137 struct cache_entry
*old_entry
= istate
->cache
[nr
], *new_entry
;
138 int namelen
= strlen(new_name
);
140 new_entry
= make_empty_cache_entry(istate
, namelen
);
141 copy_cache_entry(new_entry
, old_entry
);
142 new_entry
->ce_flags
&= ~CE_HASHED
;
143 new_entry
->ce_namelen
= namelen
;
144 new_entry
->index
= 0;
145 memcpy(new_entry
->name
, new_name
, namelen
+ 1);
147 cache_tree_invalidate_path(istate
, old_entry
->name
);
148 untracked_cache_remove_from_index(istate
, old_entry
->name
);
149 remove_index_entry_at(istate
, nr
);
150 add_index_entry(istate
, new_entry
, ADD_CACHE_OK_TO_ADD
|ADD_CACHE_OK_TO_REPLACE
);
153 void fill_stat_data(struct stat_data
*sd
, struct stat
*st
)
155 sd
->sd_ctime
.sec
= (unsigned int)st
->st_ctime
;
156 sd
->sd_mtime
.sec
= (unsigned int)st
->st_mtime
;
157 sd
->sd_ctime
.nsec
= ST_CTIME_NSEC(*st
);
158 sd
->sd_mtime
.nsec
= ST_MTIME_NSEC(*st
);
159 sd
->sd_dev
= st
->st_dev
;
160 sd
->sd_ino
= st
->st_ino
;
161 sd
->sd_uid
= st
->st_uid
;
162 sd
->sd_gid
= st
->st_gid
;
163 sd
->sd_size
= st
->st_size
;
166 int match_stat_data(const struct stat_data
*sd
, struct stat
*st
)
170 if (sd
->sd_mtime
.sec
!= (unsigned int)st
->st_mtime
)
171 changed
|= MTIME_CHANGED
;
172 if (trust_ctime
&& check_stat
&&
173 sd
->sd_ctime
.sec
!= (unsigned int)st
->st_ctime
)
174 changed
|= CTIME_CHANGED
;
177 if (check_stat
&& sd
->sd_mtime
.nsec
!= ST_MTIME_NSEC(*st
))
178 changed
|= MTIME_CHANGED
;
179 if (trust_ctime
&& check_stat
&&
180 sd
->sd_ctime
.nsec
!= ST_CTIME_NSEC(*st
))
181 changed
|= CTIME_CHANGED
;
185 if (sd
->sd_uid
!= (unsigned int) st
->st_uid
||
186 sd
->sd_gid
!= (unsigned int) st
->st_gid
)
187 changed
|= OWNER_CHANGED
;
188 if (sd
->sd_ino
!= (unsigned int) st
->st_ino
)
189 changed
|= INODE_CHANGED
;
194 * st_dev breaks on network filesystems where different
195 * clients will have different views of what "device"
196 * the filesystem is on
198 if (check_stat
&& sd
->sd_dev
!= (unsigned int) st
->st_dev
)
199 changed
|= INODE_CHANGED
;
202 if (sd
->sd_size
!= (unsigned int) st
->st_size
)
203 changed
|= DATA_CHANGED
;
209 * This only updates the "non-critical" parts of the directory
210 * cache, ie the parts that aren't tracked by GIT, and only used
211 * to validate the cache.
213 void fill_stat_cache_info(struct index_state
*istate
, struct cache_entry
*ce
, struct stat
*st
)
215 fill_stat_data(&ce
->ce_stat_data
, st
);
217 if (assume_unchanged
)
218 ce
->ce_flags
|= CE_VALID
;
220 if (S_ISREG(st
->st_mode
)) {
221 ce_mark_uptodate(ce
);
222 mark_fsmonitor_valid(istate
, ce
);
226 static int ce_compare_data(struct index_state
*istate
,
227 const struct cache_entry
*ce
,
231 int fd
= git_open_cloexec(ce
->name
, O_RDONLY
);
234 struct object_id oid
;
235 if (!index_fd(istate
, &oid
, fd
, st
, OBJ_BLOB
, ce
->name
, 0))
236 match
= !oideq(&oid
, &ce
->oid
);
237 /* index_fd() closed the file descriptor already */
242 static int ce_compare_link(const struct cache_entry
*ce
, size_t expected_size
)
247 enum object_type type
;
248 struct strbuf sb
= STRBUF_INIT
;
250 if (strbuf_readlink(&sb
, ce
->name
, expected_size
))
253 buffer
= read_object_file(&ce
->oid
, &type
, &size
);
256 match
= memcmp(buffer
, sb
.buf
, size
);
263 static int ce_compare_gitlink(const struct cache_entry
*ce
)
265 struct object_id oid
;
268 * We don't actually require that the .git directory
269 * under GITLINK directory be a valid git directory. It
270 * might even be missing (in case nobody populated that
273 * If so, we consider it always to match.
275 if (resolve_gitlink_ref(ce
->name
, "HEAD", &oid
) < 0)
277 return !oideq(&oid
, &ce
->oid
);
280 static int ce_modified_check_fs(struct index_state
*istate
,
281 const struct cache_entry
*ce
,
284 switch (st
->st_mode
& S_IFMT
) {
286 if (ce_compare_data(istate
, ce
, st
))
290 if (ce_compare_link(ce
, xsize_t(st
->st_size
)))
294 if (S_ISGITLINK(ce
->ce_mode
))
295 return ce_compare_gitlink(ce
) ? DATA_CHANGED
: 0;
296 /* else fallthrough */
303 static int ce_match_stat_basic(const struct cache_entry
*ce
, struct stat
*st
)
305 unsigned int changed
= 0;
307 if (ce
->ce_flags
& CE_REMOVE
)
308 return MODE_CHANGED
| DATA_CHANGED
| TYPE_CHANGED
;
310 switch (ce
->ce_mode
& S_IFMT
) {
312 changed
|= !S_ISREG(st
->st_mode
) ? TYPE_CHANGED
: 0;
313 /* We consider only the owner x bit to be relevant for
316 if (trust_executable_bit
&&
317 (0100 & (ce
->ce_mode
^ st
->st_mode
)))
318 changed
|= MODE_CHANGED
;
321 if (!S_ISLNK(st
->st_mode
) &&
322 (has_symlinks
|| !S_ISREG(st
->st_mode
)))
323 changed
|= TYPE_CHANGED
;
326 /* We ignore most of the st_xxx fields for gitlinks */
327 if (!S_ISDIR(st
->st_mode
))
328 changed
|= TYPE_CHANGED
;
329 else if (ce_compare_gitlink(ce
))
330 changed
|= DATA_CHANGED
;
333 BUG("unsupported ce_mode: %o", ce
->ce_mode
);
336 changed
|= match_stat_data(&ce
->ce_stat_data
, st
);
338 /* Racily smudged entry? */
339 if (!ce
->ce_stat_data
.sd_size
) {
340 if (!is_empty_blob_sha1(ce
->oid
.hash
))
341 changed
|= DATA_CHANGED
;
347 static int is_racy_stat(const struct index_state
*istate
,
348 const struct stat_data
*sd
)
350 return (istate
->timestamp
.sec
&&
352 /* nanosecond timestamped files can also be racy! */
353 (istate
->timestamp
.sec
< sd
->sd_mtime
.sec
||
354 (istate
->timestamp
.sec
== sd
->sd_mtime
.sec
&&
355 istate
->timestamp
.nsec
<= sd
->sd_mtime
.nsec
))
357 istate
->timestamp
.sec
<= sd
->sd_mtime
.sec
362 int is_racy_timestamp(const struct index_state
*istate
,
363 const struct cache_entry
*ce
)
365 return (!S_ISGITLINK(ce
->ce_mode
) &&
366 is_racy_stat(istate
, &ce
->ce_stat_data
));
369 int match_stat_data_racy(const struct index_state
*istate
,
370 const struct stat_data
*sd
, struct stat
*st
)
372 if (is_racy_stat(istate
, sd
))
373 return MTIME_CHANGED
;
374 return match_stat_data(sd
, st
);
377 int ie_match_stat(struct index_state
*istate
,
378 const struct cache_entry
*ce
, struct stat
*st
,
379 unsigned int options
)
381 unsigned int changed
;
382 int ignore_valid
= options
& CE_MATCH_IGNORE_VALID
;
383 int ignore_skip_worktree
= options
& CE_MATCH_IGNORE_SKIP_WORKTREE
;
384 int assume_racy_is_modified
= options
& CE_MATCH_RACY_IS_DIRTY
;
385 int ignore_fsmonitor
= options
& CE_MATCH_IGNORE_FSMONITOR
;
387 if (!ignore_fsmonitor
)
388 refresh_fsmonitor(istate
);
390 * If it's marked as always valid in the index, it's
391 * valid whatever the checked-out copy says.
393 * skip-worktree has the same effect with higher precedence
395 if (!ignore_skip_worktree
&& ce_skip_worktree(ce
))
397 if (!ignore_valid
&& (ce
->ce_flags
& CE_VALID
))
399 if (!ignore_fsmonitor
&& (ce
->ce_flags
& CE_FSMONITOR_VALID
))
403 * Intent-to-add entries have not been added, so the index entry
404 * by definition never matches what is in the work tree until it
405 * actually gets added.
407 if (ce_intent_to_add(ce
))
408 return DATA_CHANGED
| TYPE_CHANGED
| MODE_CHANGED
;
410 changed
= ce_match_stat_basic(ce
, st
);
413 * Within 1 second of this sequence:
414 * echo xyzzy >file && git-update-index --add file
415 * running this command:
417 * would give a falsely clean cache entry. The mtime and
418 * length match the cache, and other stat fields do not change.
420 * We could detect this at update-index time (the cache entry
421 * being registered/updated records the same time as "now")
422 * and delay the return from git-update-index, but that would
423 * effectively mean we can make at most one commit per second,
424 * which is not acceptable. Instead, we check cache entries
425 * whose mtime are the same as the index file timestamp more
426 * carefully than others.
428 if (!changed
&& is_racy_timestamp(istate
, ce
)) {
429 if (assume_racy_is_modified
)
430 changed
|= DATA_CHANGED
;
432 changed
|= ce_modified_check_fs(istate
, ce
, st
);
438 int ie_modified(struct index_state
*istate
,
439 const struct cache_entry
*ce
,
440 struct stat
*st
, unsigned int options
)
442 int changed
, changed_fs
;
444 changed
= ie_match_stat(istate
, ce
, st
, options
);
448 * If the mode or type has changed, there's no point in trying
449 * to refresh the entry - it's not going to match
451 if (changed
& (MODE_CHANGED
| TYPE_CHANGED
))
455 * Immediately after read-tree or update-index --cacheinfo,
456 * the length field is zero, as we have never even read the
457 * lstat(2) information once, and we cannot trust DATA_CHANGED
458 * returned by ie_match_stat() which in turn was returned by
459 * ce_match_stat_basic() to signal that the filesize of the
460 * blob changed. We have to actually go to the filesystem to
461 * see if the contents match, and if so, should answer "unchanged".
463 * The logic does not apply to gitlinks, as ce_match_stat_basic()
464 * already has checked the actual HEAD from the filesystem in the
465 * subproject. If ie_match_stat() already said it is different,
466 * then we know it is.
468 if ((changed
& DATA_CHANGED
) &&
469 (S_ISGITLINK(ce
->ce_mode
) || ce
->ce_stat_data
.sd_size
!= 0))
472 changed_fs
= ce_modified_check_fs(istate
, ce
, st
);
474 return changed
| changed_fs
;
478 int base_name_compare(const char *name1
, int len1
, int mode1
,
479 const char *name2
, int len2
, int mode2
)
481 unsigned char c1
, c2
;
482 int len
= len1
< len2
? len1
: len2
;
485 cmp
= memcmp(name1
, name2
, len
);
490 if (!c1
&& S_ISDIR(mode1
))
492 if (!c2
&& S_ISDIR(mode2
))
494 return (c1
< c2
) ? -1 : (c1
> c2
) ? 1 : 0;
498 * df_name_compare() is identical to base_name_compare(), except it
499 * compares conflicting directory/file entries as equal. Note that
500 * while a directory name compares as equal to a regular file, they
501 * then individually compare _differently_ to a filename that has
502 * a dot after the basename (because '\0' < '.' < '/').
504 * This is used by routines that want to traverse the git namespace
505 * but then handle conflicting entries together when possible.
507 int df_name_compare(const char *name1
, int len1
, int mode1
,
508 const char *name2
, int len2
, int mode2
)
510 int len
= len1
< len2
? len1
: len2
, cmp
;
511 unsigned char c1
, c2
;
513 cmp
= memcmp(name1
, name2
, len
);
516 /* Directories and files compare equal (same length, same name) */
520 if (!c1
&& S_ISDIR(mode1
))
523 if (!c2
&& S_ISDIR(mode2
))
525 if (c1
== '/' && !c2
)
527 if (c2
== '/' && !c1
)
532 int name_compare(const char *name1
, size_t len1
, const char *name2
, size_t len2
)
534 size_t min_len
= (len1
< len2
) ? len1
: len2
;
535 int cmp
= memcmp(name1
, name2
, min_len
);
545 int cache_name_stage_compare(const char *name1
, int len1
, int stage1
, const char *name2
, int len2
, int stage2
)
549 cmp
= name_compare(name1
, len1
, name2
, len2
);
560 static int index_name_stage_pos(struct index_state
*istate
,
561 const char *name
, int namelen
,
563 enum index_search_mode search_mode
)
568 last
= istate
->cache_nr
;
569 while (last
> first
) {
570 int next
= first
+ ((last
- first
) >> 1);
571 struct cache_entry
*ce
= istate
->cache
[next
];
572 int cmp
= cache_name_stage_compare(name
, namelen
, stage
, ce
->name
, ce_namelen(ce
), ce_stage(ce
));
582 if (search_mode
== EXPAND_SPARSE
&& istate
->sparse_index
&&
584 /* Note: first <= istate->cache_nr */
585 struct cache_entry
*ce
= istate
->cache
[first
- 1];
588 * If we are in a sparse-index _and_ the entry before the
589 * insertion position is a sparse-directory entry that is
590 * an ancestor of 'name', then we need to expand the index
591 * and search again. This will only trigger once, because
592 * thereafter the index is fully expanded.
594 if (S_ISSPARSEDIR(ce
->ce_mode
) &&
595 ce_namelen(ce
) < namelen
&&
596 !strncmp(name
, ce
->name
, ce_namelen(ce
))) {
597 ensure_full_index(istate
);
598 return index_name_stage_pos(istate
, name
, namelen
, stage
, search_mode
);
605 int index_name_pos(struct index_state
*istate
, const char *name
, int namelen
)
607 return index_name_stage_pos(istate
, name
, namelen
, 0, EXPAND_SPARSE
);
610 int index_entry_exists(struct index_state
*istate
, const char *name
, int namelen
)
612 return index_name_stage_pos(istate
, name
, namelen
, 0, NO_EXPAND_SPARSE
) >= 0;
615 int remove_index_entry_at(struct index_state
*istate
, int pos
)
617 struct cache_entry
*ce
= istate
->cache
[pos
];
619 record_resolve_undo(istate
, ce
);
620 remove_name_hash(istate
, ce
);
621 save_or_free_index_entry(istate
, ce
);
622 istate
->cache_changed
|= CE_ENTRY_REMOVED
;
624 if (pos
>= istate
->cache_nr
)
626 MOVE_ARRAY(istate
->cache
+ pos
, istate
->cache
+ pos
+ 1,
627 istate
->cache_nr
- pos
);
632 * Remove all cache entries marked for removal, that is where
633 * CE_REMOVE is set in ce_flags. This is much more effective than
634 * calling remove_index_entry_at() for each entry to be removed.
636 void remove_marked_cache_entries(struct index_state
*istate
, int invalidate
)
638 struct cache_entry
**ce_array
= istate
->cache
;
641 for (i
= j
= 0; i
< istate
->cache_nr
; i
++) {
642 if (ce_array
[i
]->ce_flags
& CE_REMOVE
) {
644 cache_tree_invalidate_path(istate
,
646 untracked_cache_remove_from_index(istate
,
649 remove_name_hash(istate
, ce_array
[i
]);
650 save_or_free_index_entry(istate
, ce_array
[i
]);
653 ce_array
[j
++] = ce_array
[i
];
655 if (j
== istate
->cache_nr
)
657 istate
->cache_changed
|= CE_ENTRY_REMOVED
;
658 istate
->cache_nr
= j
;
661 int remove_file_from_index(struct index_state
*istate
, const char *path
)
663 int pos
= index_name_pos(istate
, path
, strlen(path
));
666 cache_tree_invalidate_path(istate
, path
);
667 untracked_cache_remove_from_index(istate
, path
);
668 while (pos
< istate
->cache_nr
&& !strcmp(istate
->cache
[pos
]->name
, path
))
669 remove_index_entry_at(istate
, pos
);
673 static int compare_name(struct cache_entry
*ce
, const char *path
, int namelen
)
675 return namelen
!= ce_namelen(ce
) || memcmp(path
, ce
->name
, namelen
);
678 static int index_name_pos_also_unmerged(struct index_state
*istate
,
679 const char *path
, int namelen
)
681 int pos
= index_name_pos(istate
, path
, namelen
);
682 struct cache_entry
*ce
;
687 /* maybe unmerged? */
689 if (pos
>= istate
->cache_nr
||
690 compare_name((ce
= istate
->cache
[pos
]), path
, namelen
))
693 /* order of preference: stage 2, 1, 3 */
694 if (ce_stage(ce
) == 1 && pos
+ 1 < istate
->cache_nr
&&
695 ce_stage((ce
= istate
->cache
[pos
+ 1])) == 2 &&
696 !compare_name(ce
, path
, namelen
))
701 static int different_name(struct cache_entry
*ce
, struct cache_entry
*alias
)
703 int len
= ce_namelen(ce
);
704 return ce_namelen(alias
) != len
|| memcmp(ce
->name
, alias
->name
, len
);
708 * If we add a filename that aliases in the cache, we will use the
709 * name that we already have - but we don't want to update the same
710 * alias twice, because that implies that there were actually two
711 * different files with aliasing names!
713 * So we use the CE_ADDED flag to verify that the alias was an old
714 * one before we accept it as
716 static struct cache_entry
*create_alias_ce(struct index_state
*istate
,
717 struct cache_entry
*ce
,
718 struct cache_entry
*alias
)
721 struct cache_entry
*new_entry
;
723 if (alias
->ce_flags
& CE_ADDED
)
724 die(_("will not add file alias '%s' ('%s' already exists in index)"),
725 ce
->name
, alias
->name
);
727 /* Ok, create the new entry using the name of the existing alias */
728 len
= ce_namelen(alias
);
729 new_entry
= make_empty_cache_entry(istate
, len
);
730 memcpy(new_entry
->name
, alias
->name
, len
);
731 copy_cache_entry(new_entry
, ce
);
732 save_or_free_index_entry(istate
, ce
);
736 void set_object_name_for_intent_to_add_entry(struct cache_entry
*ce
)
738 struct object_id oid
;
739 if (write_object_file("", 0, OBJ_BLOB
, &oid
))
740 die(_("cannot create an empty blob in the object database"));
741 oidcpy(&ce
->oid
, &oid
);
744 int add_to_index(struct index_state
*istate
, const char *path
, struct stat
*st
, int flags
)
746 int namelen
, was_same
;
747 mode_t st_mode
= st
->st_mode
;
748 struct cache_entry
*ce
, *alias
= NULL
;
749 unsigned ce_option
= CE_MATCH_IGNORE_VALID
|CE_MATCH_IGNORE_SKIP_WORKTREE
|CE_MATCH_RACY_IS_DIRTY
;
750 int verbose
= flags
& (ADD_CACHE_VERBOSE
| ADD_CACHE_PRETEND
);
751 int pretend
= flags
& ADD_CACHE_PRETEND
;
752 int intent_only
= flags
& ADD_CACHE_INTENT
;
753 int add_option
= (ADD_CACHE_OK_TO_ADD
|ADD_CACHE_OK_TO_REPLACE
|
754 (intent_only
? ADD_CACHE_NEW_ONLY
: 0));
755 unsigned hash_flags
= pretend
? 0 : HASH_WRITE_OBJECT
;
756 struct object_id oid
;
758 if (flags
& ADD_CACHE_RENORMALIZE
)
759 hash_flags
|= HASH_RENORMALIZE
;
761 if (!S_ISREG(st_mode
) && !S_ISLNK(st_mode
) && !S_ISDIR(st_mode
))
762 return error(_("%s: can only add regular files, symbolic links or git-directories"), path
);
764 namelen
= strlen(path
);
765 if (S_ISDIR(st_mode
)) {
766 if (resolve_gitlink_ref(path
, "HEAD", &oid
) < 0)
767 return error(_("'%s' does not have a commit checked out"), path
);
768 while (namelen
&& path
[namelen
-1] == '/')
771 ce
= make_empty_cache_entry(istate
, namelen
);
772 memcpy(ce
->name
, path
, namelen
);
773 ce
->ce_namelen
= namelen
;
775 fill_stat_cache_info(istate
, ce
, st
);
777 ce
->ce_flags
|= CE_INTENT_TO_ADD
;
780 if (trust_executable_bit
&& has_symlinks
) {
781 ce
->ce_mode
= create_ce_mode(st_mode
);
783 /* If there is an existing entry, pick the mode bits and type
784 * from it, otherwise assume unexecutable regular file.
786 struct cache_entry
*ent
;
787 int pos
= index_name_pos_also_unmerged(istate
, path
, namelen
);
789 ent
= (0 <= pos
) ? istate
->cache
[pos
] : NULL
;
790 ce
->ce_mode
= ce_mode_from_stat(ent
, st_mode
);
793 /* When core.ignorecase=true, determine if a directory of the same name but differing
794 * case already exists within the Git repository. If it does, ensure the directory
795 * case of the file being added to the repository matches (is folded into) the existing
796 * entry's directory case.
799 adjust_dirname_case(istate
, ce
->name
);
801 if (!(flags
& ADD_CACHE_RENORMALIZE
)) {
802 alias
= index_file_exists(istate
, ce
->name
,
803 ce_namelen(ce
), ignore_case
);
806 !ie_match_stat(istate
, alias
, st
, ce_option
)) {
807 /* Nothing changed, really */
808 if (!S_ISGITLINK(alias
->ce_mode
))
809 ce_mark_uptodate(alias
);
810 alias
->ce_flags
|= CE_ADDED
;
812 discard_cache_entry(ce
);
817 if (index_path(istate
, &ce
->oid
, path
, st
, hash_flags
)) {
818 discard_cache_entry(ce
);
819 return error(_("unable to index file '%s'"), path
);
822 set_object_name_for_intent_to_add_entry(ce
);
824 if (ignore_case
&& alias
&& different_name(ce
, alias
))
825 ce
= create_alias_ce(istate
, ce
, alias
);
826 ce
->ce_flags
|= CE_ADDED
;
828 /* It was suspected to be racily clean, but it turns out to be Ok */
831 oideq(&alias
->oid
, &ce
->oid
) &&
832 ce
->ce_mode
== alias
->ce_mode
);
835 discard_cache_entry(ce
);
836 else if (add_index_entry(istate
, ce
, add_option
)) {
837 discard_cache_entry(ce
);
838 return error(_("unable to add '%s' to index"), path
);
840 if (verbose
&& !was_same
)
841 printf("add '%s'\n", path
);
845 int add_file_to_index(struct index_state
*istate
, const char *path
, int flags
)
848 if (lstat(path
, &st
))
849 die_errno(_("unable to stat '%s'"), path
);
850 return add_to_index(istate
, path
, &st
, flags
);
853 struct cache_entry
*make_empty_cache_entry(struct index_state
*istate
, size_t len
)
855 return mem_pool__ce_calloc(find_mem_pool(istate
), len
);
858 struct cache_entry
*make_empty_transient_cache_entry(size_t len
,
859 struct mem_pool
*ce_mem_pool
)
862 return mem_pool__ce_calloc(ce_mem_pool
, len
);
863 return xcalloc(1, cache_entry_size(len
));
866 enum verify_path_result
{
872 static enum verify_path_result
verify_path_internal(const char *, unsigned);
874 int verify_path(const char *path
, unsigned mode
)
876 return verify_path_internal(path
, mode
) == PATH_OK
;
879 struct cache_entry
*make_cache_entry(struct index_state
*istate
,
881 const struct object_id
*oid
,
884 unsigned int refresh_options
)
886 struct cache_entry
*ce
, *ret
;
889 if (verify_path_internal(path
, mode
) == PATH_INVALID
) {
890 error(_("invalid path '%s'"), path
);
895 ce
= make_empty_cache_entry(istate
, len
);
897 oidcpy(&ce
->oid
, oid
);
898 memcpy(ce
->name
, path
, len
);
899 ce
->ce_flags
= create_ce_flags(stage
);
900 ce
->ce_namelen
= len
;
901 ce
->ce_mode
= create_ce_mode(mode
);
903 ret
= refresh_cache_entry(istate
, ce
, refresh_options
);
905 discard_cache_entry(ce
);
909 struct cache_entry
*make_transient_cache_entry(unsigned int mode
,
910 const struct object_id
*oid
,
913 struct mem_pool
*ce_mem_pool
)
915 struct cache_entry
*ce
;
918 if (!verify_path(path
, mode
)) {
919 error(_("invalid path '%s'"), path
);
924 ce
= make_empty_transient_cache_entry(len
, ce_mem_pool
);
926 oidcpy(&ce
->oid
, oid
);
927 memcpy(ce
->name
, path
, len
);
928 ce
->ce_flags
= create_ce_flags(stage
);
929 ce
->ce_namelen
= len
;
930 ce
->ce_mode
= create_ce_mode(mode
);
936 * Chmod an index entry with either +x or -x.
938 * Returns -1 if the chmod for the particular cache entry failed (if it's
939 * not a regular file), -2 if an invalid flip argument is passed in, 0
942 int chmod_index_entry(struct index_state
*istate
, struct cache_entry
*ce
,
945 if (!S_ISREG(ce
->ce_mode
))
952 ce
->ce_mode
&= ~0111;
957 cache_tree_invalidate_path(istate
, ce
->name
);
958 ce
->ce_flags
|= CE_UPDATE_IN_BASE
;
959 mark_fsmonitor_invalid(istate
, ce
);
960 istate
->cache_changed
|= CE_ENTRY_CHANGED
;
965 int ce_same_name(const struct cache_entry
*a
, const struct cache_entry
*b
)
967 int len
= ce_namelen(a
);
968 return ce_namelen(b
) == len
&& !memcmp(a
->name
, b
->name
, len
);
972 * We fundamentally don't like some paths: we don't want
973 * dot or dot-dot anywhere, and for obvious reasons don't
974 * want to recurse into ".git" either.
976 * Also, we don't want double slashes or slashes at the
977 * end that can make pathnames ambiguous.
979 static int verify_dotfile(const char *rest
, unsigned mode
)
982 * The first character was '.', but that
983 * has already been discarded, we now test
987 /* "." is not allowed */
988 if (*rest
== '\0' || is_dir_sep(*rest
))
993 * ".git" followed by NUL or slash is bad. Note that we match
994 * case-insensitively here, even if ignore_case is not set.
995 * This outlaws ".GIT" everywhere out of an abundance of caution,
996 * since there's really no good reason to allow it.
998 * Once we've seen ".git", we can also find ".gitmodules", etc (also
999 * case-insensitively).
1003 if (rest
[1] != 'i' && rest
[1] != 'I')
1005 if (rest
[2] != 't' && rest
[2] != 'T')
1007 if (rest
[3] == '\0' || is_dir_sep(rest
[3]))
1009 if (S_ISLNK(mode
)) {
1011 if (skip_iprefix(rest
, "modules", &rest
) &&
1012 (*rest
== '\0' || is_dir_sep(*rest
)))
1017 if (rest
[1] == '\0' || is_dir_sep(rest
[1]))
1023 static enum verify_path_result
verify_path_internal(const char *path
,
1028 if (has_dos_drive_prefix(path
))
1029 return PATH_INVALID
;
1031 if (!is_valid_path(path
))
1032 return PATH_INVALID
;
1038 if (is_dir_sep(c
)) {
1042 if (is_hfs_dotgit(path
))
1043 return PATH_INVALID
;
1044 if (S_ISLNK(mode
)) {
1045 if (is_hfs_dotgitmodules(path
))
1046 return PATH_INVALID
;
1050 #if defined GIT_WINDOWS_NATIVE || defined __CYGWIN__
1052 return PATH_INVALID
;
1054 if (is_ntfs_dotgit(path
))
1055 return PATH_INVALID
;
1056 if (S_ISLNK(mode
)) {
1057 if (is_ntfs_dotgitmodules(path
))
1058 return PATH_INVALID
;
1063 if ((c
== '.' && !verify_dotfile(path
, mode
)) ||
1065 return PATH_INVALID
;
1067 * allow terminating directory separators for
1068 * sparse directory entries.
1071 return S_ISDIR(mode
) ? PATH_DIR_WITH_SEP
:
1073 } else if (c
== '\\' && protect_ntfs
) {
1074 if (is_ntfs_dotgit(path
))
1075 return PATH_INVALID
;
1076 if (S_ISLNK(mode
)) {
1077 if (is_ntfs_dotgitmodules(path
))
1078 return PATH_INVALID
;
1087 * Do we have another file that has the beginning components being a
1088 * proper superset of the name we're trying to add?
1090 static int has_file_name(struct index_state
*istate
,
1091 const struct cache_entry
*ce
, int pos
, int ok_to_replace
)
1094 int len
= ce_namelen(ce
);
1095 int stage
= ce_stage(ce
);
1096 const char *name
= ce
->name
;
1098 while (pos
< istate
->cache_nr
) {
1099 struct cache_entry
*p
= istate
->cache
[pos
++];
1101 if (len
>= ce_namelen(p
))
1103 if (memcmp(name
, p
->name
, len
))
1105 if (ce_stage(p
) != stage
)
1107 if (p
->name
[len
] != '/')
1109 if (p
->ce_flags
& CE_REMOVE
)
1114 remove_index_entry_at(istate
, --pos
);
1121 * Like strcmp(), but also return the offset of the first change.
1122 * If strings are equal, return the length.
1124 int strcmp_offset(const char *s1
, const char *s2
, size_t *first_change
)
1129 return strcmp(s1
, s2
);
1131 for (k
= 0; s1
[k
] == s2
[k
]; k
++)
1136 return (unsigned char)s1
[k
] - (unsigned char)s2
[k
];
1140 * Do we have another file with a pathname that is a proper
1141 * subset of the name we're trying to add?
1143 * That is, is there another file in the index with a path
1144 * that matches a sub-directory in the given entry?
1146 static int has_dir_name(struct index_state
*istate
,
1147 const struct cache_entry
*ce
, int pos
, int ok_to_replace
)
1150 int stage
= ce_stage(ce
);
1151 const char *name
= ce
->name
;
1152 const char *slash
= name
+ ce_namelen(ce
);
1157 * We are frequently called during an iteration on a sorted
1158 * list of pathnames and while building a new index. Therefore,
1159 * there is a high probability that this entry will eventually
1160 * be appended to the index, rather than inserted in the middle.
1161 * If we can confirm that, we can avoid binary searches on the
1162 * components of the pathname.
1164 * Compare the entry's full path with the last path in the index.
1166 if (istate
->cache_nr
> 0) {
1167 cmp_last
= strcmp_offset(name
,
1168 istate
->cache
[istate
->cache_nr
- 1]->name
,
1171 if (len_eq_last
== 0) {
1173 * The entry sorts AFTER the last one in the
1174 * index and their paths have no common prefix,
1175 * so there cannot be a F/D conflict.
1180 * The entry sorts AFTER the last one in the
1181 * index, but has a common prefix. Fall through
1182 * to the loop below to disect the entry's path
1183 * and see where the difference is.
1186 } else if (cmp_last
== 0) {
1188 * The entry exactly matches the last one in the
1189 * index, but because of multiple stage and CE_REMOVE
1190 * items, we fall through and let the regular search
1200 if (*--slash
== '/')
1202 if (slash
<= ce
->name
)
1209 * (len + 1) is a directory boundary (including
1210 * the trailing slash). And since the loop is
1211 * decrementing "slash", the first iteration is
1212 * the longest directory prefix; subsequent
1213 * iterations consider parent directories.
1216 if (len
+ 1 <= len_eq_last
) {
1218 * The directory prefix (including the trailing
1219 * slash) also appears as a prefix in the last
1220 * entry, so the remainder cannot collide (because
1221 * strcmp said the whole path was greater).
1226 * LT: last: xxx/file_A
1232 if (len
> len_eq_last
) {
1234 * This part of the directory prefix (excluding
1235 * the trailing slash) is longer than the known
1236 * equal portions, so this sub-directory cannot
1237 * collide with a file.
1246 * This is a possible collision. Fall through and
1247 * let the regular search code handle it.
1254 pos
= index_name_stage_pos(istate
, name
, len
, stage
, EXPAND_SPARSE
);
1257 * Found one, but not so fast. This could
1258 * be a marker that says "I was here, but
1259 * I am being removed". Such an entry is
1260 * not a part of the resulting tree, and
1261 * it is Ok to have a directory at the same
1264 if (!(istate
->cache
[pos
]->ce_flags
& CE_REMOVE
)) {
1268 remove_index_entry_at(istate
, pos
);
1276 * Trivial optimization: if we find an entry that
1277 * already matches the sub-directory, then we know
1278 * we're ok, and we can exit.
1280 while (pos
< istate
->cache_nr
) {
1281 struct cache_entry
*p
= istate
->cache
[pos
];
1282 if ((ce_namelen(p
) <= len
) ||
1283 (p
->name
[len
] != '/') ||
1284 memcmp(p
->name
, name
, len
))
1285 break; /* not our subdirectory */
1286 if (ce_stage(p
) == stage
&& !(p
->ce_flags
& CE_REMOVE
))
1288 * p is at the same stage as our entry, and
1289 * is a subdirectory of what we are looking
1290 * at, so we cannot have conflicts at our
1291 * level or anything shorter.
1300 /* We may be in a situation where we already have path/file and path
1301 * is being added, or we already have path and path/file is being
1302 * added. Either one would result in a nonsense tree that has path
1303 * twice when git-write-tree tries to write it out. Prevent it.
1305 * If ok-to-replace is specified, we remove the conflicting entries
1306 * from the cache so the caller should recompute the insert position.
1307 * When this happens, we return non-zero.
1309 static int check_file_directory_conflict(struct index_state
*istate
,
1310 const struct cache_entry
*ce
,
1311 int pos
, int ok_to_replace
)
1316 * When ce is an "I am going away" entry, we allow it to be added
1318 if (ce
->ce_flags
& CE_REMOVE
)
1322 * We check if the path is a sub-path of a subsequent pathname
1323 * first, since removing those will not change the position
1326 retval
= has_file_name(istate
, ce
, pos
, ok_to_replace
);
1329 * Then check if the path might have a clashing sub-directory
1332 return retval
+ has_dir_name(istate
, ce
, pos
, ok_to_replace
);
1335 static int add_index_entry_with_check(struct index_state
*istate
, struct cache_entry
*ce
, int option
)
1338 int ok_to_add
= option
& ADD_CACHE_OK_TO_ADD
;
1339 int ok_to_replace
= option
& ADD_CACHE_OK_TO_REPLACE
;
1340 int skip_df_check
= option
& ADD_CACHE_SKIP_DFCHECK
;
1341 int new_only
= option
& ADD_CACHE_NEW_ONLY
;
1344 * If this entry's path sorts after the last entry in the index,
1345 * we can avoid searching for it.
1347 if (istate
->cache_nr
> 0 &&
1348 strcmp(ce
->name
, istate
->cache
[istate
->cache_nr
- 1]->name
) > 0)
1349 pos
= index_pos_to_insert_pos(istate
->cache_nr
);
1351 pos
= index_name_stage_pos(istate
, ce
->name
, ce_namelen(ce
), ce_stage(ce
), EXPAND_SPARSE
);
1354 * Cache tree path should be invalidated only after index_name_stage_pos,
1355 * in case it expands a sparse index.
1357 if (!(option
& ADD_CACHE_KEEP_CACHE_TREE
))
1358 cache_tree_invalidate_path(istate
, ce
->name
);
1360 /* existing match? Just replace it. */
1363 replace_index_entry(istate
, pos
, ce
);
1368 if (!(option
& ADD_CACHE_KEEP_CACHE_TREE
))
1369 untracked_cache_add_to_index(istate
, ce
->name
);
1372 * Inserting a merged entry ("stage 0") into the index
1373 * will always replace all non-merged entries..
1375 if (pos
< istate
->cache_nr
&& ce_stage(ce
) == 0) {
1376 while (ce_same_name(istate
->cache
[pos
], ce
)) {
1378 if (!remove_index_entry_at(istate
, pos
))
1385 if (verify_path_internal(ce
->name
, ce
->ce_mode
) == PATH_INVALID
)
1386 return error(_("invalid path '%s'"), ce
->name
);
1388 if (!skip_df_check
&&
1389 check_file_directory_conflict(istate
, ce
, pos
, ok_to_replace
)) {
1391 return error(_("'%s' appears as both a file and as a directory"),
1393 pos
= index_name_stage_pos(istate
, ce
->name
, ce_namelen(ce
), ce_stage(ce
), EXPAND_SPARSE
);
1399 int add_index_entry(struct index_state
*istate
, struct cache_entry
*ce
, int option
)
1403 if (option
& ADD_CACHE_JUST_APPEND
)
1404 pos
= istate
->cache_nr
;
1407 ret
= add_index_entry_with_check(istate
, ce
, option
);
1413 /* Make sure the array is big enough .. */
1414 ALLOC_GROW(istate
->cache
, istate
->cache_nr
+ 1, istate
->cache_alloc
);
1418 if (istate
->cache_nr
> pos
+ 1)
1419 MOVE_ARRAY(istate
->cache
+ pos
+ 1, istate
->cache
+ pos
,
1420 istate
->cache_nr
- pos
- 1);
1421 set_index_entry(istate
, pos
, ce
);
1422 istate
->cache_changed
|= CE_ENTRY_ADDED
;
1427 * "refresh" does not calculate a new sha1 file or bring the
1428 * cache up-to-date for mode/content changes. But what it
1429 * _does_ do is to "re-match" the stat information of a file
1430 * with the cache, so that you can refresh the cache for a
1431 * file that hasn't been changed but where the stat entry is
1434 * For example, you'd want to do this after doing a "git-read-tree",
1435 * to link up the stat cache details with the proper files.
1437 static struct cache_entry
*refresh_cache_ent(struct index_state
*istate
,
1438 struct cache_entry
*ce
,
1439 unsigned int options
, int *err
,
1445 struct cache_entry
*updated
;
1447 int refresh
= options
& CE_MATCH_REFRESH
;
1448 int ignore_valid
= options
& CE_MATCH_IGNORE_VALID
;
1449 int ignore_skip_worktree
= options
& CE_MATCH_IGNORE_SKIP_WORKTREE
;
1450 int ignore_missing
= options
& CE_MATCH_IGNORE_MISSING
;
1451 int ignore_fsmonitor
= options
& CE_MATCH_IGNORE_FSMONITOR
;
1453 if (!refresh
|| ce_uptodate(ce
))
1456 if (!ignore_fsmonitor
)
1457 refresh_fsmonitor(istate
);
1459 * CE_VALID or CE_SKIP_WORKTREE means the user promised us
1460 * that the change to the work tree does not matter and told
1463 if (!ignore_skip_worktree
&& ce_skip_worktree(ce
)) {
1464 ce_mark_uptodate(ce
);
1467 if (!ignore_valid
&& (ce
->ce_flags
& CE_VALID
)) {
1468 ce_mark_uptodate(ce
);
1471 if (!ignore_fsmonitor
&& (ce
->ce_flags
& CE_FSMONITOR_VALID
)) {
1472 ce_mark_uptodate(ce
);
1476 if (has_symlink_leading_path(ce
->name
, ce_namelen(ce
))) {
1486 if (lstat(ce
->name
, &st
) < 0) {
1487 if (ignore_missing
&& errno
== ENOENT
)
1494 changed
= ie_match_stat(istate
, ce
, &st
, options
);
1496 *changed_ret
= changed
;
1499 * The path is unchanged. If we were told to ignore
1500 * valid bit, then we did the actual stat check and
1501 * found that the entry is unmodified. If the entry
1502 * is not marked VALID, this is the place to mark it
1503 * valid again, under "assume unchanged" mode.
1505 if (ignore_valid
&& assume_unchanged
&&
1506 !(ce
->ce_flags
& CE_VALID
))
1507 ; /* mark this one VALID again */
1510 * We do not mark the index itself "modified"
1511 * because CE_UPTODATE flag is in-core only;
1512 * we are not going to write this change out.
1514 if (!S_ISGITLINK(ce
->ce_mode
)) {
1515 ce_mark_uptodate(ce
);
1516 mark_fsmonitor_valid(istate
, ce
);
1524 if (ie_modified(istate
, ce
, &st
, options
)) {
1530 updated
= make_empty_cache_entry(istate
, ce_namelen(ce
));
1531 copy_cache_entry(updated
, ce
);
1532 memcpy(updated
->name
, ce
->name
, ce
->ce_namelen
+ 1);
1533 fill_stat_cache_info(istate
, updated
, &st
);
1535 * If ignore_valid is not set, we should leave CE_VALID bit
1536 * alone. Otherwise, paths marked with --no-assume-unchanged
1537 * (i.e. things to be edited) will reacquire CE_VALID bit
1538 * automatically, which is not really what we want.
1540 if (!ignore_valid
&& assume_unchanged
&&
1541 !(ce
->ce_flags
& CE_VALID
))
1542 updated
->ce_flags
&= ~CE_VALID
;
1544 /* istate->cache_changed is updated in the caller */
1548 static void show_file(const char * fmt
, const char * name
, int in_porcelain
,
1549 int * first
, const char *header_msg
)
1551 if (in_porcelain
&& *first
&& header_msg
) {
1552 printf("%s\n", header_msg
);
1558 int repo_refresh_and_write_index(struct repository
*repo
,
1559 unsigned int refresh_flags
,
1560 unsigned int write_flags
,
1562 const struct pathspec
*pathspec
,
1563 char *seen
, const char *header_msg
)
1565 struct lock_file lock_file
= LOCK_INIT
;
1568 fd
= repo_hold_locked_index(repo
, &lock_file
, 0);
1569 if (!gentle
&& fd
< 0)
1571 if (refresh_index(repo
->index
, refresh_flags
, pathspec
, seen
, header_msg
))
1573 if (0 <= fd
&& write_locked_index(repo
->index
, &lock_file
, COMMIT_LOCK
| write_flags
))
1579 int refresh_index(struct index_state
*istate
, unsigned int flags
,
1580 const struct pathspec
*pathspec
,
1581 char *seen
, const char *header_msg
)
1585 int really
= (flags
& REFRESH_REALLY
) != 0;
1586 int allow_unmerged
= (flags
& REFRESH_UNMERGED
) != 0;
1587 int quiet
= (flags
& REFRESH_QUIET
) != 0;
1588 int not_new
= (flags
& REFRESH_IGNORE_MISSING
) != 0;
1589 int ignore_submodules
= (flags
& REFRESH_IGNORE_SUBMODULES
) != 0;
1590 int ignore_skip_worktree
= (flags
& REFRESH_IGNORE_SKIP_WORKTREE
) != 0;
1592 int in_porcelain
= (flags
& REFRESH_IN_PORCELAIN
);
1593 unsigned int options
= (CE_MATCH_REFRESH
|
1594 (really
? CE_MATCH_IGNORE_VALID
: 0) |
1595 (not_new
? CE_MATCH_IGNORE_MISSING
: 0));
1596 const char *modified_fmt
;
1597 const char *deleted_fmt
;
1598 const char *typechange_fmt
;
1599 const char *added_fmt
;
1600 const char *unmerged_fmt
;
1601 struct progress
*progress
= NULL
;
1602 int t2_sum_lstat
= 0;
1603 int t2_sum_scan
= 0;
1605 if (flags
& REFRESH_PROGRESS
&& isatty(2))
1606 progress
= start_delayed_progress(_("Refresh index"),
1609 trace_performance_enter();
1610 modified_fmt
= in_porcelain
? "M\t%s\n" : "%s: needs update\n";
1611 deleted_fmt
= in_porcelain
? "D\t%s\n" : "%s: needs update\n";
1612 typechange_fmt
= in_porcelain
? "T\t%s\n" : "%s: needs update\n";
1613 added_fmt
= in_porcelain
? "A\t%s\n" : "%s: needs update\n";
1614 unmerged_fmt
= in_porcelain
? "U\t%s\n" : "%s: needs merge\n";
1616 * Use the multi-threaded preload_index() to refresh most of the
1617 * cache entries quickly then in the single threaded loop below,
1618 * we only have to do the special cases that are left.
1620 preload_index(istate
, pathspec
, 0);
1621 trace2_region_enter("index", "refresh", NULL
);
1623 for (i
= 0; i
< istate
->cache_nr
; i
++) {
1624 struct cache_entry
*ce
, *new_entry
;
1625 int cache_errno
= 0;
1628 int t2_did_lstat
= 0;
1629 int t2_did_scan
= 0;
1631 ce
= istate
->cache
[i
];
1632 if (ignore_submodules
&& S_ISGITLINK(ce
->ce_mode
))
1634 if (ignore_skip_worktree
&& ce_skip_worktree(ce
))
1638 * If this entry is a sparse directory, then there isn't
1639 * any stat() information to update. Ignore the entry.
1641 if (S_ISSPARSEDIR(ce
->ce_mode
))
1644 if (pathspec
&& !ce_path_match(istate
, ce
, pathspec
, seen
))
1648 while ((i
< istate
->cache_nr
) &&
1649 ! strcmp(istate
->cache
[i
]->name
, ce
->name
))
1655 show_file(unmerged_fmt
, ce
->name
, in_porcelain
,
1656 &first
, header_msg
);
1664 new_entry
= refresh_cache_ent(istate
, ce
, options
,
1665 &cache_errno
, &changed
,
1666 &t2_did_lstat
, &t2_did_scan
);
1667 t2_sum_lstat
+= t2_did_lstat
;
1668 t2_sum_scan
+= t2_did_scan
;
1669 if (new_entry
== ce
)
1671 display_progress(progress
, i
);
1675 if (really
&& cache_errno
== EINVAL
) {
1676 /* If we are doing --really-refresh that
1677 * means the index is not valid anymore.
1679 ce
->ce_flags
&= ~CE_VALID
;
1680 ce
->ce_flags
|= CE_UPDATE_IN_BASE
;
1681 mark_fsmonitor_invalid(istate
, ce
);
1682 istate
->cache_changed
|= CE_ENTRY_CHANGED
;
1687 if (cache_errno
== ENOENT
)
1689 else if (ce_intent_to_add(ce
))
1690 fmt
= added_fmt
; /* must be before other checks */
1691 else if (changed
& TYPE_CHANGED
)
1692 fmt
= typechange_fmt
;
1696 ce
->name
, in_porcelain
, &first
, header_msg
);
1701 replace_index_entry(istate
, i
, new_entry
);
1703 trace2_data_intmax("index", NULL
, "refresh/sum_lstat", t2_sum_lstat
);
1704 trace2_data_intmax("index", NULL
, "refresh/sum_scan", t2_sum_scan
);
1705 trace2_region_leave("index", "refresh", NULL
);
1706 display_progress(progress
, istate
->cache_nr
);
1707 stop_progress(&progress
);
1708 trace_performance_leave("refresh index");
1712 struct cache_entry
*refresh_cache_entry(struct index_state
*istate
,
1713 struct cache_entry
*ce
,
1714 unsigned int options
)
1716 return refresh_cache_ent(istate
, ce
, options
, NULL
, NULL
, NULL
, NULL
);
1720 /*****************************************************************
1722 *****************************************************************/
1724 #define INDEX_FORMAT_DEFAULT 3
1726 static unsigned int get_index_format_default(struct repository
*r
)
1728 char *envversion
= getenv("GIT_INDEX_VERSION");
1730 unsigned int version
= INDEX_FORMAT_DEFAULT
;
1733 prepare_repo_settings(r
);
1735 if (r
->settings
.index_version
>= 0)
1736 version
= r
->settings
.index_version
;
1737 if (version
< INDEX_FORMAT_LB
|| INDEX_FORMAT_UB
< version
) {
1738 warning(_("index.version set, but the value is invalid.\n"
1739 "Using version %i"), INDEX_FORMAT_DEFAULT
);
1740 return INDEX_FORMAT_DEFAULT
;
1745 version
= strtoul(envversion
, &endp
, 10);
1747 version
< INDEX_FORMAT_LB
|| INDEX_FORMAT_UB
< version
) {
1748 warning(_("GIT_INDEX_VERSION set, but the value is invalid.\n"
1749 "Using version %i"), INDEX_FORMAT_DEFAULT
);
1750 version
= INDEX_FORMAT_DEFAULT
;
1756 * dev/ino/uid/gid/size are also just tracked to the low 32 bits
1757 * Again - this is just a (very strong in practice) heuristic that
1758 * the inode hasn't changed.
1760 * We save the fields in big-endian order to allow using the
1761 * index file over NFS transparently.
1763 struct ondisk_cache_entry
{
1764 struct cache_time ctime
;
1765 struct cache_time mtime
;
1773 * unsigned char hash[hashsz];
1775 * if (flags & CE_EXTENDED)
1778 unsigned char data
[GIT_MAX_RAWSZ
+ 2 * sizeof(uint16_t)];
1779 char name
[FLEX_ARRAY
];
1782 /* These are only used for v3 or lower */
1783 #define align_padding_size(size, len) ((size + (len) + 8) & ~7) - (size + len)
1784 #define align_flex_name(STRUCT,len) ((offsetof(struct STRUCT,data) + (len) + 8) & ~7)
1785 #define ondisk_cache_entry_size(len) align_flex_name(ondisk_cache_entry,len)
1786 #define ondisk_data_size(flags, len) (the_hash_algo->rawsz + \
1787 ((flags & CE_EXTENDED) ? 2 : 1) * sizeof(uint16_t) + len)
1788 #define ondisk_data_size_max(len) (ondisk_data_size(CE_EXTENDED, len))
1789 #define ondisk_ce_size(ce) (ondisk_cache_entry_size(ondisk_data_size((ce)->ce_flags, ce_namelen(ce))))
1791 /* Allow fsck to force verification of the index checksum. */
1792 int verify_index_checksum
;
1794 /* Allow fsck to force verification of the cache entry order. */
1795 int verify_ce_order
;
1797 static int verify_hdr(const struct cache_header
*hdr
, unsigned long size
)
1800 unsigned char hash
[GIT_MAX_RAWSZ
];
1803 if (hdr
->hdr_signature
!= htonl(CACHE_SIGNATURE
))
1804 return error(_("bad signature 0x%08x"), hdr
->hdr_signature
);
1805 hdr_version
= ntohl(hdr
->hdr_version
);
1806 if (hdr_version
< INDEX_FORMAT_LB
|| INDEX_FORMAT_UB
< hdr_version
)
1807 return error(_("bad index version %d"), hdr_version
);
1809 if (!verify_index_checksum
)
1812 the_hash_algo
->init_fn(&c
);
1813 the_hash_algo
->update_fn(&c
, hdr
, size
- the_hash_algo
->rawsz
);
1814 the_hash_algo
->final_fn(hash
, &c
);
1815 if (!hasheq(hash
, (unsigned char *)hdr
+ size
- the_hash_algo
->rawsz
))
1816 return error(_("bad index file sha1 signature"));
1820 static int read_index_extension(struct index_state
*istate
,
1821 const char *ext
, const char *data
, unsigned long sz
)
1823 switch (CACHE_EXT(ext
)) {
1824 case CACHE_EXT_TREE
:
1825 istate
->cache_tree
= cache_tree_read(data
, sz
);
1827 case CACHE_EXT_RESOLVE_UNDO
:
1828 istate
->resolve_undo
= resolve_undo_read(data
, sz
);
1830 case CACHE_EXT_LINK
:
1831 if (read_link_extension(istate
, data
, sz
))
1834 case CACHE_EXT_UNTRACKED
:
1835 istate
->untracked
= read_untracked_extension(data
, sz
);
1837 case CACHE_EXT_FSMONITOR
:
1838 read_fsmonitor_extension(istate
, data
, sz
);
1840 case CACHE_EXT_ENDOFINDEXENTRIES
:
1841 case CACHE_EXT_INDEXENTRYOFFSETTABLE
:
1842 /* already handled in do_read_index() */
1844 case CACHE_EXT_SPARSE_DIRECTORIES
:
1845 /* no content, only an indicator */
1846 istate
->sparse_index
= 1;
1849 if (*ext
< 'A' || 'Z' < *ext
)
1850 return error(_("index uses %.4s extension, which we do not understand"),
1852 fprintf_ln(stderr
, _("ignoring %.4s extension"), ext
);
1858 static struct cache_entry
*create_from_disk(struct mem_pool
*ce_mem_pool
,
1859 unsigned int version
,
1860 struct ondisk_cache_entry
*ondisk
,
1861 unsigned long *ent_size
,
1862 const struct cache_entry
*previous_ce
)
1864 struct cache_entry
*ce
;
1867 const unsigned hashsz
= the_hash_algo
->rawsz
;
1868 const uint16_t *flagsp
= (const uint16_t *)(ondisk
->data
+ hashsz
);
1870 size_t copy_len
= 0;
1872 * Adjacent cache entries tend to share the leading paths, so it makes
1873 * sense to only store the differences in later entries. In the v4
1874 * on-disk format of the index, each on-disk cache entry stores the
1875 * number of bytes to be stripped from the end of the previous name,
1876 * and the bytes to append to the result, to come up with its name.
1878 int expand_name_field
= version
== 4;
1880 /* On-disk flags are just 16 bits */
1881 flags
= get_be16(flagsp
);
1882 len
= flags
& CE_NAMEMASK
;
1884 if (flags
& CE_EXTENDED
) {
1886 extended_flags
= get_be16(flagsp
+ 1) << 16;
1887 /* We do not yet understand any bit out of CE_EXTENDED_FLAGS */
1888 if (extended_flags
& ~CE_EXTENDED_FLAGS
)
1889 die(_("unknown index entry format 0x%08x"), extended_flags
);
1890 flags
|= extended_flags
;
1891 name
= (const char *)(flagsp
+ 2);
1894 name
= (const char *)(flagsp
+ 1);
1896 if (expand_name_field
) {
1897 const unsigned char *cp
= (const unsigned char *)name
;
1898 size_t strip_len
, previous_len
;
1900 /* If we're at the beginning of a block, ignore the previous name */
1901 strip_len
= decode_varint(&cp
);
1903 previous_len
= previous_ce
->ce_namelen
;
1904 if (previous_len
< strip_len
)
1905 die(_("malformed name field in the index, near path '%s'"),
1907 copy_len
= previous_len
- strip_len
;
1909 name
= (const char *)cp
;
1912 if (len
== CE_NAMEMASK
) {
1914 if (expand_name_field
)
1918 ce
= mem_pool__ce_alloc(ce_mem_pool
, len
);
1920 ce
->ce_stat_data
.sd_ctime
.sec
= get_be32(&ondisk
->ctime
.sec
);
1921 ce
->ce_stat_data
.sd_mtime
.sec
= get_be32(&ondisk
->mtime
.sec
);
1922 ce
->ce_stat_data
.sd_ctime
.nsec
= get_be32(&ondisk
->ctime
.nsec
);
1923 ce
->ce_stat_data
.sd_mtime
.nsec
= get_be32(&ondisk
->mtime
.nsec
);
1924 ce
->ce_stat_data
.sd_dev
= get_be32(&ondisk
->dev
);
1925 ce
->ce_stat_data
.sd_ino
= get_be32(&ondisk
->ino
);
1926 ce
->ce_mode
= get_be32(&ondisk
->mode
);
1927 ce
->ce_stat_data
.sd_uid
= get_be32(&ondisk
->uid
);
1928 ce
->ce_stat_data
.sd_gid
= get_be32(&ondisk
->gid
);
1929 ce
->ce_stat_data
.sd_size
= get_be32(&ondisk
->size
);
1930 ce
->ce_flags
= flags
& ~CE_NAMEMASK
;
1931 ce
->ce_namelen
= len
;
1933 oidread(&ce
->oid
, ondisk
->data
);
1934 memcpy(ce
->name
, name
, len
);
1935 ce
->name
[len
] = '\0';
1937 if (expand_name_field
) {
1939 memcpy(ce
->name
, previous_ce
->name
, copy_len
);
1940 memcpy(ce
->name
+ copy_len
, name
, len
+ 1 - copy_len
);
1941 *ent_size
= (name
- ((char *)ondisk
)) + len
+ 1 - copy_len
;
1943 memcpy(ce
->name
, name
, len
+ 1);
1944 *ent_size
= ondisk_ce_size(ce
);
1949 static void check_ce_order(struct index_state
*istate
)
1953 if (!verify_ce_order
)
1956 for (i
= 1; i
< istate
->cache_nr
; i
++) {
1957 struct cache_entry
*ce
= istate
->cache
[i
- 1];
1958 struct cache_entry
*next_ce
= istate
->cache
[i
];
1959 int name_compare
= strcmp(ce
->name
, next_ce
->name
);
1961 if (0 < name_compare
)
1962 die(_("unordered stage entries in index"));
1963 if (!name_compare
) {
1965 die(_("multiple stage entries for merged file '%s'"),
1967 if (ce_stage(ce
) > ce_stage(next_ce
))
1968 die(_("unordered stage entries for '%s'"),
1974 static void tweak_untracked_cache(struct index_state
*istate
)
1976 struct repository
*r
= the_repository
;
1978 prepare_repo_settings(r
);
1980 switch (r
->settings
.core_untracked_cache
) {
1981 case UNTRACKED_CACHE_REMOVE
:
1982 remove_untracked_cache(istate
);
1984 case UNTRACKED_CACHE_WRITE
:
1985 add_untracked_cache(istate
);
1987 case UNTRACKED_CACHE_KEEP
:
1989 * Either an explicit "core.untrackedCache=keep", the
1990 * default if "core.untrackedCache" isn't configured,
1991 * or a fallback on an unknown "core.untrackedCache"
1998 static void tweak_split_index(struct index_state
*istate
)
2000 switch (git_config_get_split_index()) {
2001 case -1: /* unset: do nothing */
2004 remove_split_index(istate
);
2007 add_split_index(istate
);
2009 default: /* unknown value: do nothing */
2014 static void post_read_index_from(struct index_state
*istate
)
2016 check_ce_order(istate
);
2017 tweak_untracked_cache(istate
);
2018 tweak_split_index(istate
);
2019 tweak_fsmonitor(istate
);
2022 static size_t estimate_cache_size_from_compressed(unsigned int entries
)
2024 return entries
* (sizeof(struct cache_entry
) + CACHE_ENTRY_PATH_LENGTH
);
2027 static size_t estimate_cache_size(size_t ondisk_size
, unsigned int entries
)
2029 long per_entry
= sizeof(struct cache_entry
) - sizeof(struct ondisk_cache_entry
);
2032 * Account for potential alignment differences.
2034 per_entry
+= align_padding_size(per_entry
, 0);
2035 return ondisk_size
+ entries
* per_entry
;
2038 struct index_entry_offset
2040 /* starting byte offset into index file, count of index entries in this block */
2044 struct index_entry_offset_table
2047 struct index_entry_offset entries
[FLEX_ARRAY
];
2050 static struct index_entry_offset_table
*read_ieot_extension(const char *mmap
, size_t mmap_size
, size_t offset
);
2051 static void write_ieot_extension(struct strbuf
*sb
, struct index_entry_offset_table
*ieot
);
2053 static size_t read_eoie_extension(const char *mmap
, size_t mmap_size
);
2054 static void write_eoie_extension(struct strbuf
*sb
, git_hash_ctx
*eoie_context
, size_t offset
);
2056 struct load_index_extensions
2059 struct index_state
*istate
;
2062 unsigned long src_offset
;
2065 static void *load_index_extensions(void *_data
)
2067 struct load_index_extensions
*p
= _data
;
2068 unsigned long src_offset
= p
->src_offset
;
2070 while (src_offset
<= p
->mmap_size
- the_hash_algo
->rawsz
- 8) {
2071 /* After an array of active_nr index entries,
2072 * there can be arbitrary number of extended
2073 * sections, each of which is prefixed with
2074 * extension name (4-byte) and section length
2075 * in 4-byte network byte order.
2077 uint32_t extsize
= get_be32(p
->mmap
+ src_offset
+ 4);
2078 if (read_index_extension(p
->istate
,
2079 p
->mmap
+ src_offset
,
2080 p
->mmap
+ src_offset
+ 8,
2082 munmap((void *)p
->mmap
, p
->mmap_size
);
2083 die(_("index file corrupt"));
2086 src_offset
+= extsize
;
2093 * A helper function that will load the specified range of cache entries
2094 * from the memory mapped file and add them to the given index.
2096 static unsigned long load_cache_entry_block(struct index_state
*istate
,
2097 struct mem_pool
*ce_mem_pool
, int offset
, int nr
, const char *mmap
,
2098 unsigned long start_offset
, const struct cache_entry
*previous_ce
)
2101 unsigned long src_offset
= start_offset
;
2103 for (i
= offset
; i
< offset
+ nr
; i
++) {
2104 struct ondisk_cache_entry
*disk_ce
;
2105 struct cache_entry
*ce
;
2106 unsigned long consumed
;
2108 disk_ce
= (struct ondisk_cache_entry
*)(mmap
+ src_offset
);
2109 ce
= create_from_disk(ce_mem_pool
, istate
->version
, disk_ce
, &consumed
, previous_ce
);
2110 set_index_entry(istate
, i
, ce
);
2112 src_offset
+= consumed
;
2115 return src_offset
- start_offset
;
2118 static unsigned long load_all_cache_entries(struct index_state
*istate
,
2119 const char *mmap
, size_t mmap_size
, unsigned long src_offset
)
2121 unsigned long consumed
;
2123 istate
->ce_mem_pool
= xmalloc(sizeof(*istate
->ce_mem_pool
));
2124 if (istate
->version
== 4) {
2125 mem_pool_init(istate
->ce_mem_pool
,
2126 estimate_cache_size_from_compressed(istate
->cache_nr
));
2128 mem_pool_init(istate
->ce_mem_pool
,
2129 estimate_cache_size(mmap_size
, istate
->cache_nr
));
2132 consumed
= load_cache_entry_block(istate
, istate
->ce_mem_pool
,
2133 0, istate
->cache_nr
, mmap
, src_offset
, NULL
);
2138 * Mostly randomly chosen maximum thread counts: we
2139 * cap the parallelism to online_cpus() threads, and we want
2140 * to have at least 10000 cache entries per thread for it to
2141 * be worth starting a thread.
2144 #define THREAD_COST (10000)
2146 struct load_cache_entries_thread_data
2149 struct index_state
*istate
;
2150 struct mem_pool
*ce_mem_pool
;
2153 struct index_entry_offset_table
*ieot
;
2154 int ieot_start
; /* starting index into the ieot array */
2155 int ieot_blocks
; /* count of ieot entries to process */
2156 unsigned long consumed
; /* return # of bytes in index file processed */
2160 * A thread proc to run the load_cache_entries() computation
2161 * across multiple background threads.
2163 static void *load_cache_entries_thread(void *_data
)
2165 struct load_cache_entries_thread_data
*p
= _data
;
2168 /* iterate across all ieot blocks assigned to this thread */
2169 for (i
= p
->ieot_start
; i
< p
->ieot_start
+ p
->ieot_blocks
; i
++) {
2170 p
->consumed
+= load_cache_entry_block(p
->istate
, p
->ce_mem_pool
,
2171 p
->offset
, p
->ieot
->entries
[i
].nr
, p
->mmap
, p
->ieot
->entries
[i
].offset
, NULL
);
2172 p
->offset
+= p
->ieot
->entries
[i
].nr
;
2177 static unsigned long load_cache_entries_threaded(struct index_state
*istate
, const char *mmap
, size_t mmap_size
,
2178 int nr_threads
, struct index_entry_offset_table
*ieot
)
2180 int i
, offset
, ieot_blocks
, ieot_start
, err
;
2181 struct load_cache_entries_thread_data
*data
;
2182 unsigned long consumed
= 0;
2184 /* a little sanity checking */
2185 if (istate
->name_hash_initialized
)
2186 BUG("the name hash isn't thread safe");
2188 istate
->ce_mem_pool
= xmalloc(sizeof(*istate
->ce_mem_pool
));
2189 mem_pool_init(istate
->ce_mem_pool
, 0);
2191 /* ensure we have no more threads than we have blocks to process */
2192 if (nr_threads
> ieot
->nr
)
2193 nr_threads
= ieot
->nr
;
2194 CALLOC_ARRAY(data
, nr_threads
);
2196 offset
= ieot_start
= 0;
2197 ieot_blocks
= DIV_ROUND_UP(ieot
->nr
, nr_threads
);
2198 for (i
= 0; i
< nr_threads
; i
++) {
2199 struct load_cache_entries_thread_data
*p
= &data
[i
];
2202 if (ieot_start
+ ieot_blocks
> ieot
->nr
)
2203 ieot_blocks
= ieot
->nr
- ieot_start
;
2209 p
->ieot_start
= ieot_start
;
2210 p
->ieot_blocks
= ieot_blocks
;
2212 /* create a mem_pool for each thread */
2214 for (j
= p
->ieot_start
; j
< p
->ieot_start
+ p
->ieot_blocks
; j
++)
2215 nr
+= p
->ieot
->entries
[j
].nr
;
2216 p
->ce_mem_pool
= xmalloc(sizeof(*istate
->ce_mem_pool
));
2217 if (istate
->version
== 4) {
2218 mem_pool_init(p
->ce_mem_pool
,
2219 estimate_cache_size_from_compressed(nr
));
2221 mem_pool_init(p
->ce_mem_pool
,
2222 estimate_cache_size(mmap_size
, nr
));
2225 err
= pthread_create(&p
->pthread
, NULL
, load_cache_entries_thread
, p
);
2227 die(_("unable to create load_cache_entries thread: %s"), strerror(err
));
2229 /* increment by the number of cache entries in the ieot block being processed */
2230 for (j
= 0; j
< ieot_blocks
; j
++)
2231 offset
+= ieot
->entries
[ieot_start
+ j
].nr
;
2232 ieot_start
+= ieot_blocks
;
2235 for (i
= 0; i
< nr_threads
; i
++) {
2236 struct load_cache_entries_thread_data
*p
= &data
[i
];
2238 err
= pthread_join(p
->pthread
, NULL
);
2240 die(_("unable to join load_cache_entries thread: %s"), strerror(err
));
2241 mem_pool_combine(istate
->ce_mem_pool
, p
->ce_mem_pool
);
2242 consumed
+= p
->consumed
;
2250 /* remember to discard_cache() before reading a different cache! */
2251 int do_read_index(struct index_state
*istate
, const char *path
, int must_exist
)
2255 unsigned long src_offset
;
2256 const struct cache_header
*hdr
;
2259 struct load_index_extensions p
;
2260 size_t extension_offset
= 0;
2261 int nr_threads
, cpus
;
2262 struct index_entry_offset_table
*ieot
= NULL
;
2264 if (istate
->initialized
)
2265 return istate
->cache_nr
;
2267 istate
->timestamp
.sec
= 0;
2268 istate
->timestamp
.nsec
= 0;
2269 fd
= open(path
, O_RDONLY
);
2271 if (!must_exist
&& errno
== ENOENT
)
2273 die_errno(_("%s: index file open failed"), path
);
2277 die_errno(_("%s: cannot stat the open index"), path
);
2279 mmap_size
= xsize_t(st
.st_size
);
2280 if (mmap_size
< sizeof(struct cache_header
) + the_hash_algo
->rawsz
)
2281 die(_("%s: index file smaller than expected"), path
);
2283 mmap
= xmmap_gently(NULL
, mmap_size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
2284 if (mmap
== MAP_FAILED
)
2285 die_errno(_("%s: unable to map index file%s"), path
,
2289 hdr
= (const struct cache_header
*)mmap
;
2290 if (verify_hdr(hdr
, mmap_size
) < 0)
2293 oidread(&istate
->oid
, (const unsigned char *)hdr
+ mmap_size
- the_hash_algo
->rawsz
);
2294 istate
->version
= ntohl(hdr
->hdr_version
);
2295 istate
->cache_nr
= ntohl(hdr
->hdr_entries
);
2296 istate
->cache_alloc
= alloc_nr(istate
->cache_nr
);
2297 CALLOC_ARRAY(istate
->cache
, istate
->cache_alloc
);
2298 istate
->initialized
= 1;
2302 p
.mmap_size
= mmap_size
;
2304 src_offset
= sizeof(*hdr
);
2306 if (git_config_get_index_threads(&nr_threads
))
2309 /* TODO: does creating more threads than cores help? */
2311 nr_threads
= istate
->cache_nr
/ THREAD_COST
;
2312 cpus
= online_cpus();
2313 if (nr_threads
> cpus
)
2320 if (nr_threads
> 1) {
2321 extension_offset
= read_eoie_extension(mmap
, mmap_size
);
2322 if (extension_offset
) {
2325 p
.src_offset
= extension_offset
;
2326 err
= pthread_create(&p
.pthread
, NULL
, load_index_extensions
, &p
);
2328 die(_("unable to create load_index_extensions thread: %s"), strerror(err
));
2335 * Locate and read the index entry offset table so that we can use it
2336 * to multi-thread the reading of the cache entries.
2338 if (extension_offset
&& nr_threads
> 1)
2339 ieot
= read_ieot_extension(mmap
, mmap_size
, extension_offset
);
2342 src_offset
+= load_cache_entries_threaded(istate
, mmap
, mmap_size
, nr_threads
, ieot
);
2345 src_offset
+= load_all_cache_entries(istate
, mmap
, mmap_size
, src_offset
);
2348 istate
->timestamp
.sec
= st
.st_mtime
;
2349 istate
->timestamp
.nsec
= ST_MTIME_NSEC(st
);
2351 /* if we created a thread, join it otherwise load the extensions on the primary thread */
2352 if (extension_offset
) {
2353 int ret
= pthread_join(p
.pthread
, NULL
);
2355 die(_("unable to join load_index_extensions thread: %s"), strerror(ret
));
2357 p
.src_offset
= src_offset
;
2358 load_index_extensions(&p
);
2360 munmap((void *)mmap
, mmap_size
);
2363 * TODO trace2: replace "the_repository" with the actual repo instance
2364 * that is associated with the given "istate".
2366 trace2_data_intmax("index", the_repository
, "read/version",
2368 trace2_data_intmax("index", the_repository
, "read/cache_nr",
2372 istate
->repo
= the_repository
;
2375 * If the command explicitly requires a full index, force it
2376 * to be full. Otherwise, correct the sparsity based on repository
2377 * settings and other properties of the index (if necessary).
2379 prepare_repo_settings(istate
->repo
);
2380 if (istate
->repo
->settings
.command_requires_full_index
)
2381 ensure_full_index(istate
);
2383 ensure_correct_sparsity(istate
);
2385 return istate
->cache_nr
;
2388 munmap((void *)mmap
, mmap_size
);
2389 die(_("index file corrupt"));
2393 * Signal that the shared index is used by updating its mtime.
2395 * This way, shared index can be removed if they have not been used
2398 static void freshen_shared_index(const char *shared_index
, int warn
)
2400 if (!check_and_freshen_file(shared_index
, 1) && warn
)
2401 warning(_("could not freshen shared index '%s'"), shared_index
);
2404 int read_index_from(struct index_state
*istate
, const char *path
,
2407 struct split_index
*split_index
;
2412 /* istate->initialized covers both .git/index and .git/sharedindex.xxx */
2413 if (istate
->initialized
)
2414 return istate
->cache_nr
;
2417 * TODO trace2: replace "the_repository" with the actual repo instance
2418 * that is associated with the given "istate".
2420 trace2_region_enter_printf("index", "do_read_index", the_repository
,
2422 trace_performance_enter();
2423 ret
= do_read_index(istate
, path
, 0);
2424 trace_performance_leave("read cache %s", path
);
2425 trace2_region_leave_printf("index", "do_read_index", the_repository
,
2428 split_index
= istate
->split_index
;
2429 if (!split_index
|| is_null_oid(&split_index
->base_oid
)) {
2430 post_read_index_from(istate
);
2434 trace_performance_enter();
2435 if (split_index
->base
)
2436 discard_index(split_index
->base
);
2438 CALLOC_ARRAY(split_index
->base
, 1);
2440 base_oid_hex
= oid_to_hex(&split_index
->base_oid
);
2441 base_path
= xstrfmt("%s/sharedindex.%s", gitdir
, base_oid_hex
);
2442 trace2_region_enter_printf("index", "shared/do_read_index",
2443 the_repository
, "%s", base_path
);
2444 ret
= do_read_index(split_index
->base
, base_path
, 0);
2445 trace2_region_leave_printf("index", "shared/do_read_index",
2446 the_repository
, "%s", base_path
);
2448 char *path_copy
= xstrdup(path
);
2449 const char *base_path2
= xstrfmt("%s/sharedindex.%s",
2453 trace2_region_enter_printf("index", "shared/do_read_index",
2454 the_repository
, "%s", base_path2
);
2455 ret
= do_read_index(split_index
->base
, base_path2
, 1);
2456 trace2_region_leave_printf("index", "shared/do_read_index",
2457 the_repository
, "%s", base_path2
);
2459 if (!oideq(&split_index
->base_oid
, &split_index
->base
->oid
))
2460 die(_("broken index, expect %s in %s, got %s"),
2461 base_oid_hex
, base_path
,
2462 oid_to_hex(&split_index
->base
->oid
));
2464 freshen_shared_index(base_path
, 0);
2465 merge_base_index(istate
);
2466 post_read_index_from(istate
);
2467 trace_performance_leave("read cache %s", base_path
);
2472 int is_index_unborn(struct index_state
*istate
)
2474 return (!istate
->cache_nr
&& !istate
->timestamp
.sec
);
2477 int discard_index(struct index_state
*istate
)
2480 * Cache entries in istate->cache[] should have been allocated
2481 * from the memory pool associated with this index, or from an
2482 * associated split_index. There is no need to free individual
2483 * cache entries. validate_cache_entries can detect when this
2484 * assertion does not hold.
2486 validate_cache_entries(istate
);
2488 resolve_undo_clear_index(istate
);
2489 istate
->cache_nr
= 0;
2490 istate
->cache_changed
= 0;
2491 istate
->timestamp
.sec
= 0;
2492 istate
->timestamp
.nsec
= 0;
2493 free_name_hash(istate
);
2494 cache_tree_free(&(istate
->cache_tree
));
2495 istate
->initialized
= 0;
2496 istate
->fsmonitor_has_run_once
= 0;
2497 FREE_AND_NULL(istate
->fsmonitor_last_update
);
2498 FREE_AND_NULL(istate
->cache
);
2499 istate
->cache_alloc
= 0;
2500 discard_split_index(istate
);
2501 free_untracked_cache(istate
->untracked
);
2502 istate
->untracked
= NULL
;
2504 if (istate
->ce_mem_pool
) {
2505 mem_pool_discard(istate
->ce_mem_pool
, should_validate_cache_entries());
2506 FREE_AND_NULL(istate
->ce_mem_pool
);
2513 * Validate the cache entries of this index.
2514 * All cache entries associated with this index
2515 * should have been allocated by the memory pool
2516 * associated with this index, or by a referenced
2519 void validate_cache_entries(const struct index_state
*istate
)
2523 if (!should_validate_cache_entries() ||!istate
|| !istate
->initialized
)
2526 for (i
= 0; i
< istate
->cache_nr
; i
++) {
2528 BUG("cache entry is not allocated from expected memory pool");
2529 } else if (!istate
->ce_mem_pool
||
2530 !mem_pool_contains(istate
->ce_mem_pool
, istate
->cache
[i
])) {
2531 if (!istate
->split_index
||
2532 !istate
->split_index
->base
||
2533 !istate
->split_index
->base
->ce_mem_pool
||
2534 !mem_pool_contains(istate
->split_index
->base
->ce_mem_pool
, istate
->cache
[i
])) {
2535 BUG("cache entry is not allocated from expected memory pool");
2540 if (istate
->split_index
)
2541 validate_cache_entries(istate
->split_index
->base
);
2544 int unmerged_index(const struct index_state
*istate
)
2547 for (i
= 0; i
< istate
->cache_nr
; i
++) {
2548 if (ce_stage(istate
->cache
[i
]))
2554 int repo_index_has_changes(struct repository
*repo
,
2558 struct index_state
*istate
= repo
->index
;
2559 struct object_id cmp
;
2563 cmp
= tree
->object
.oid
;
2564 if (tree
|| !get_oid_tree("HEAD", &cmp
)) {
2565 struct diff_options opt
;
2567 repo_diff_setup(repo
, &opt
);
2568 opt
.flags
.exit_with_status
= 1;
2570 opt
.flags
.quick
= 1;
2571 diff_setup_done(&opt
);
2572 do_diff_cache(&cmp
, &opt
);
2574 for (i
= 0; sb
&& i
< diff_queued_diff
.nr
; i
++) {
2576 strbuf_addch(sb
, ' ');
2577 strbuf_addstr(sb
, diff_queued_diff
.queue
[i
]->two
->path
);
2580 return opt
.flags
.has_changes
!= 0;
2582 /* TODO: audit for interaction with sparse-index. */
2583 ensure_full_index(istate
);
2584 for (i
= 0; sb
&& i
< istate
->cache_nr
; i
++) {
2586 strbuf_addch(sb
, ' ');
2587 strbuf_addstr(sb
, istate
->cache
[i
]->name
);
2589 return !!istate
->cache_nr
;
2593 static int write_index_ext_header(struct hashfile
*f
,
2594 git_hash_ctx
*eoie_f
,
2598 hashwrite_be32(f
, ext
);
2599 hashwrite_be32(f
, sz
);
2604 the_hash_algo
->update_fn(eoie_f
, &ext
, sizeof(ext
));
2605 the_hash_algo
->update_fn(eoie_f
, &sz
, sizeof(sz
));
2610 static void ce_smudge_racily_clean_entry(struct index_state
*istate
,
2611 struct cache_entry
*ce
)
2614 * The only thing we care about in this function is to smudge the
2615 * falsely clean entry due to touch-update-touch race, so we leave
2616 * everything else as they are. We are called for entries whose
2617 * ce_stat_data.sd_mtime match the index file mtime.
2619 * Note that this actually does not do much for gitlinks, for
2620 * which ce_match_stat_basic() always goes to the actual
2621 * contents. The caller checks with is_racy_timestamp() which
2622 * always says "no" for gitlinks, so we are not called for them ;-)
2626 if (lstat(ce
->name
, &st
) < 0)
2628 if (ce_match_stat_basic(ce
, &st
))
2630 if (ce_modified_check_fs(istate
, ce
, &st
)) {
2631 /* This is "racily clean"; smudge it. Note that this
2632 * is a tricky code. At first glance, it may appear
2633 * that it can break with this sequence:
2635 * $ echo xyzzy >frotz
2636 * $ git-update-index --add frotz
2639 * $ echo filfre >nitfol
2640 * $ git-update-index --add nitfol
2642 * but it does not. When the second update-index runs,
2643 * it notices that the entry "frotz" has the same timestamp
2644 * as index, and if we were to smudge it by resetting its
2645 * size to zero here, then the object name recorded
2646 * in index is the 6-byte file but the cached stat information
2647 * becomes zero --- which would then match what we would
2648 * obtain from the filesystem next time we stat("frotz").
2650 * However, the second update-index, before calling
2651 * this function, notices that the cached size is 6
2652 * bytes and what is on the filesystem is an empty
2653 * file, and never calls us, so the cached size information
2654 * for "frotz" stays 6 which does not match the filesystem.
2656 ce
->ce_stat_data
.sd_size
= 0;
2660 /* Copy miscellaneous fields but not the name */
2661 static void copy_cache_entry_to_ondisk(struct ondisk_cache_entry
*ondisk
,
2662 struct cache_entry
*ce
)
2665 const unsigned hashsz
= the_hash_algo
->rawsz
;
2666 uint16_t *flagsp
= (uint16_t *)(ondisk
->data
+ hashsz
);
2668 ondisk
->ctime
.sec
= htonl(ce
->ce_stat_data
.sd_ctime
.sec
);
2669 ondisk
->mtime
.sec
= htonl(ce
->ce_stat_data
.sd_mtime
.sec
);
2670 ondisk
->ctime
.nsec
= htonl(ce
->ce_stat_data
.sd_ctime
.nsec
);
2671 ondisk
->mtime
.nsec
= htonl(ce
->ce_stat_data
.sd_mtime
.nsec
);
2672 ondisk
->dev
= htonl(ce
->ce_stat_data
.sd_dev
);
2673 ondisk
->ino
= htonl(ce
->ce_stat_data
.sd_ino
);
2674 ondisk
->mode
= htonl(ce
->ce_mode
);
2675 ondisk
->uid
= htonl(ce
->ce_stat_data
.sd_uid
);
2676 ondisk
->gid
= htonl(ce
->ce_stat_data
.sd_gid
);
2677 ondisk
->size
= htonl(ce
->ce_stat_data
.sd_size
);
2678 hashcpy(ondisk
->data
, ce
->oid
.hash
);
2680 flags
= ce
->ce_flags
& ~CE_NAMEMASK
;
2681 flags
|= (ce_namelen(ce
) >= CE_NAMEMASK
? CE_NAMEMASK
: ce_namelen(ce
));
2682 flagsp
[0] = htons(flags
);
2683 if (ce
->ce_flags
& CE_EXTENDED
) {
2684 flagsp
[1] = htons((ce
->ce_flags
& CE_EXTENDED_FLAGS
) >> 16);
2688 static int ce_write_entry(struct hashfile
*f
, struct cache_entry
*ce
,
2689 struct strbuf
*previous_name
, struct ondisk_cache_entry
*ondisk
)
2692 unsigned int saved_namelen
;
2693 int stripped_name
= 0;
2694 static unsigned char padding
[8] = { 0x00 };
2696 if (ce
->ce_flags
& CE_STRIP_NAME
) {
2697 saved_namelen
= ce_namelen(ce
);
2702 size
= offsetof(struct ondisk_cache_entry
,data
) + ondisk_data_size(ce
->ce_flags
, 0);
2704 if (!previous_name
) {
2705 int len
= ce_namelen(ce
);
2706 copy_cache_entry_to_ondisk(ondisk
, ce
);
2707 hashwrite(f
, ondisk
, size
);
2708 hashwrite(f
, ce
->name
, len
);
2709 hashwrite(f
, padding
, align_padding_size(size
, len
));
2711 int common
, to_remove
, prefix_size
;
2712 unsigned char to_remove_vi
[16];
2714 (ce
->name
[common
] &&
2715 common
< previous_name
->len
&&
2716 ce
->name
[common
] == previous_name
->buf
[common
]);
2718 ; /* still matching */
2719 to_remove
= previous_name
->len
- common
;
2720 prefix_size
= encode_varint(to_remove
, to_remove_vi
);
2722 copy_cache_entry_to_ondisk(ondisk
, ce
);
2723 hashwrite(f
, ondisk
, size
);
2724 hashwrite(f
, to_remove_vi
, prefix_size
);
2725 hashwrite(f
, ce
->name
+ common
, ce_namelen(ce
) - common
);
2726 hashwrite(f
, padding
, 1);
2728 strbuf_splice(previous_name
, common
, to_remove
,
2729 ce
->name
+ common
, ce_namelen(ce
) - common
);
2731 if (stripped_name
) {
2732 ce
->ce_namelen
= saved_namelen
;
2733 ce
->ce_flags
&= ~CE_STRIP_NAME
;
2740 * This function verifies if index_state has the correct sha1 of the
2741 * index file. Don't die if we have any other failure, just return 0.
2743 static int verify_index_from(const struct index_state
*istate
, const char *path
)
2748 unsigned char hash
[GIT_MAX_RAWSZ
];
2750 if (!istate
->initialized
)
2753 fd
= open(path
, O_RDONLY
);
2760 if (st
.st_size
< sizeof(struct cache_header
) + the_hash_algo
->rawsz
)
2763 n
= pread_in_full(fd
, hash
, the_hash_algo
->rawsz
, st
.st_size
- the_hash_algo
->rawsz
);
2764 if (n
!= the_hash_algo
->rawsz
)
2767 if (!hasheq(istate
->oid
.hash
, hash
))
2778 static int repo_verify_index(struct repository
*repo
)
2780 return verify_index_from(repo
->index
, repo
->index_file
);
2783 int has_racy_timestamp(struct index_state
*istate
)
2785 int entries
= istate
->cache_nr
;
2788 for (i
= 0; i
< entries
; i
++) {
2789 struct cache_entry
*ce
= istate
->cache
[i
];
2790 if (is_racy_timestamp(istate
, ce
))
2796 void repo_update_index_if_able(struct repository
*repo
,
2797 struct lock_file
*lockfile
)
2799 if ((repo
->index
->cache_changed
||
2800 has_racy_timestamp(repo
->index
)) &&
2801 repo_verify_index(repo
))
2802 write_locked_index(repo
->index
, lockfile
, COMMIT_LOCK
);
2804 rollback_lock_file(lockfile
);
2807 static int record_eoie(void)
2811 if (!git_config_get_bool("index.recordendofindexentries", &val
))
2815 * As a convenience, the end of index entries extension
2816 * used for threading is written by default if the user
2817 * explicitly requested threaded index reads.
2819 return !git_config_get_index_threads(&val
) && val
!= 1;
2822 static int record_ieot(void)
2826 if (!git_config_get_bool("index.recordoffsettable", &val
))
2830 * As a convenience, the offset table used for threading is
2831 * written by default if the user explicitly requested
2832 * threaded index reads.
2834 return !git_config_get_index_threads(&val
) && val
!= 1;
2838 * On success, `tempfile` is closed. If it is the temporary file
2839 * of a `struct lock_file`, we will therefore effectively perform
2840 * a 'close_lock_file_gently()`. Since that is an implementation
2841 * detail of lockfiles, callers of `do_write_index()` should not
2844 static int do_write_index(struct index_state
*istate
, struct tempfile
*tempfile
,
2845 int strip_extensions
, unsigned flags
)
2847 uint64_t start
= getnanotime();
2849 git_hash_ctx
*eoie_c
= NULL
;
2850 struct cache_header hdr
;
2851 int i
, err
= 0, removed
, extended
, hdr_version
;
2852 struct cache_entry
**cache
= istate
->cache
;
2853 int entries
= istate
->cache_nr
;
2855 struct ondisk_cache_entry ondisk
;
2856 struct strbuf previous_name_buf
= STRBUF_INIT
, *previous_name
;
2857 int drop_cache_tree
= istate
->drop_cache_tree
;
2859 int csum_fsync_flag
;
2860 int ieot_entries
= 1;
2861 struct index_entry_offset_table
*ieot
= NULL
;
2864 f
= hashfd(tempfile
->fd
, tempfile
->filename
.buf
);
2866 for (i
= removed
= extended
= 0; i
< entries
; i
++) {
2867 if (cache
[i
]->ce_flags
& CE_REMOVE
)
2870 /* reduce extended entries if possible */
2871 cache
[i
]->ce_flags
&= ~CE_EXTENDED
;
2872 if (cache
[i
]->ce_flags
& CE_EXTENDED_FLAGS
) {
2874 cache
[i
]->ce_flags
|= CE_EXTENDED
;
2878 if (!istate
->version
)
2879 istate
->version
= get_index_format_default(the_repository
);
2881 /* demote version 3 to version 2 when the latter suffices */
2882 if (istate
->version
== 3 || istate
->version
== 2)
2883 istate
->version
= extended
? 3 : 2;
2885 hdr_version
= istate
->version
;
2887 hdr
.hdr_signature
= htonl(CACHE_SIGNATURE
);
2888 hdr
.hdr_version
= htonl(hdr_version
);
2889 hdr
.hdr_entries
= htonl(entries
- removed
);
2891 hashwrite(f
, &hdr
, sizeof(hdr
));
2893 if (!HAVE_THREADS
|| git_config_get_index_threads(&nr_threads
))
2896 if (nr_threads
!= 1 && record_ieot()) {
2897 int ieot_blocks
, cpus
;
2900 * ensure default number of ieot blocks maps evenly to the
2901 * default number of threads that will process them leaving
2902 * room for the thread to load the index extensions.
2905 ieot_blocks
= istate
->cache_nr
/ THREAD_COST
;
2906 cpus
= online_cpus();
2907 if (ieot_blocks
> cpus
- 1)
2908 ieot_blocks
= cpus
- 1;
2910 ieot_blocks
= nr_threads
;
2911 if (ieot_blocks
> istate
->cache_nr
)
2912 ieot_blocks
= istate
->cache_nr
;
2916 * no reason to write out the IEOT extension if we don't
2917 * have enough blocks to utilize multi-threading
2919 if (ieot_blocks
> 1) {
2920 ieot
= xcalloc(1, sizeof(struct index_entry_offset_table
)
2921 + (ieot_blocks
* sizeof(struct index_entry_offset
)));
2922 ieot_entries
= DIV_ROUND_UP(entries
, ieot_blocks
);
2926 offset
= hashfile_total(f
);
2929 previous_name
= (hdr_version
== 4) ? &previous_name_buf
: NULL
;
2931 for (i
= 0; i
< entries
; i
++) {
2932 struct cache_entry
*ce
= cache
[i
];
2933 if (ce
->ce_flags
& CE_REMOVE
)
2935 if (!ce_uptodate(ce
) && is_racy_timestamp(istate
, ce
))
2936 ce_smudge_racily_clean_entry(istate
, ce
);
2937 if (is_null_oid(&ce
->oid
)) {
2938 static const char msg
[] = "cache entry has null sha1: %s";
2939 static int allow
= -1;
2942 allow
= git_env_bool("GIT_ALLOW_NULL_SHA1", 0);
2944 warning(msg
, ce
->name
);
2946 err
= error(msg
, ce
->name
);
2948 drop_cache_tree
= 1;
2950 if (ieot
&& i
&& (i
% ieot_entries
== 0)) {
2951 ieot
->entries
[ieot
->nr
].nr
= nr
;
2952 ieot
->entries
[ieot
->nr
].offset
= offset
;
2955 * If we have a V4 index, set the first byte to an invalid
2956 * character to ensure there is nothing common with the previous
2960 previous_name
->buf
[0] = 0;
2963 offset
= hashfile_total(f
);
2965 if (ce_write_entry(f
, ce
, previous_name
, (struct ondisk_cache_entry
*)&ondisk
) < 0)
2973 ieot
->entries
[ieot
->nr
].nr
= nr
;
2974 ieot
->entries
[ieot
->nr
].offset
= offset
;
2977 strbuf_release(&previous_name_buf
);
2984 offset
= hashfile_total(f
);
2987 * The extension headers must be hashed on their own for the
2988 * EOIE extension. Create a hashfile here to compute that hash.
2990 if (offset
&& record_eoie()) {
2991 CALLOC_ARRAY(eoie_c
, 1);
2992 the_hash_algo
->init_fn(eoie_c
);
2996 * Lets write out CACHE_EXT_INDEXENTRYOFFSETTABLE first so that we
2997 * can minimize the number of extensions we have to scan through to
2998 * find it during load. Write it out regardless of the
2999 * strip_extensions parameter as we need it when loading the shared
3003 struct strbuf sb
= STRBUF_INIT
;
3005 write_ieot_extension(&sb
, ieot
);
3006 err
= write_index_ext_header(f
, eoie_c
, CACHE_EXT_INDEXENTRYOFFSETTABLE
, sb
.len
) < 0;
3007 hashwrite(f
, sb
.buf
, sb
.len
);
3008 strbuf_release(&sb
);
3014 if (!strip_extensions
&& istate
->split_index
&&
3015 !is_null_oid(&istate
->split_index
->base_oid
)) {
3016 struct strbuf sb
= STRBUF_INIT
;
3018 if (istate
->sparse_index
)
3019 die(_("cannot write split index for a sparse index"));
3021 err
= write_link_extension(&sb
, istate
) < 0 ||
3022 write_index_ext_header(f
, eoie_c
, CACHE_EXT_LINK
,
3024 hashwrite(f
, sb
.buf
, sb
.len
);
3025 strbuf_release(&sb
);
3029 if (!strip_extensions
&& !drop_cache_tree
&& istate
->cache_tree
) {
3030 struct strbuf sb
= STRBUF_INIT
;
3032 cache_tree_write(&sb
, istate
->cache_tree
);
3033 err
= write_index_ext_header(f
, eoie_c
, CACHE_EXT_TREE
, sb
.len
) < 0;
3034 hashwrite(f
, sb
.buf
, sb
.len
);
3035 strbuf_release(&sb
);
3039 if (!strip_extensions
&& istate
->resolve_undo
) {
3040 struct strbuf sb
= STRBUF_INIT
;
3042 resolve_undo_write(&sb
, istate
->resolve_undo
);
3043 err
= write_index_ext_header(f
, eoie_c
, CACHE_EXT_RESOLVE_UNDO
,
3045 hashwrite(f
, sb
.buf
, sb
.len
);
3046 strbuf_release(&sb
);
3050 if (!strip_extensions
&& istate
->untracked
) {
3051 struct strbuf sb
= STRBUF_INIT
;
3053 write_untracked_extension(&sb
, istate
->untracked
);
3054 err
= write_index_ext_header(f
, eoie_c
, CACHE_EXT_UNTRACKED
,
3056 hashwrite(f
, sb
.buf
, sb
.len
);
3057 strbuf_release(&sb
);
3061 if (!strip_extensions
&& istate
->fsmonitor_last_update
) {
3062 struct strbuf sb
= STRBUF_INIT
;
3064 write_fsmonitor_extension(&sb
, istate
);
3065 err
= write_index_ext_header(f
, eoie_c
, CACHE_EXT_FSMONITOR
, sb
.len
) < 0;
3066 hashwrite(f
, sb
.buf
, sb
.len
);
3067 strbuf_release(&sb
);
3071 if (istate
->sparse_index
) {
3072 if (write_index_ext_header(f
, eoie_c
, CACHE_EXT_SPARSE_DIRECTORIES
, 0) < 0)
3077 * CACHE_EXT_ENDOFINDEXENTRIES must be written as the last entry before the SHA1
3078 * so that it can be found and processed before all the index entries are
3079 * read. Write it out regardless of the strip_extensions parameter as we need it
3080 * when loading the shared index.
3083 struct strbuf sb
= STRBUF_INIT
;
3085 write_eoie_extension(&sb
, eoie_c
, offset
);
3086 err
= write_index_ext_header(f
, NULL
, CACHE_EXT_ENDOFINDEXENTRIES
, sb
.len
) < 0;
3087 hashwrite(f
, sb
.buf
, sb
.len
);
3088 strbuf_release(&sb
);
3093 csum_fsync_flag
= 0;
3094 if (!alternate_index_output
&& (flags
& COMMIT_LOCK
))
3095 csum_fsync_flag
= CSUM_FSYNC
;
3097 finalize_hashfile(f
, istate
->oid
.hash
, FSYNC_COMPONENT_INDEX
,
3098 CSUM_HASH_IN_STREAM
| csum_fsync_flag
);
3100 if (close_tempfile_gently(tempfile
)) {
3101 error(_("could not close '%s'"), get_tempfile_path(tempfile
));
3104 if (stat(get_tempfile_path(tempfile
), &st
))
3106 istate
->timestamp
.sec
= (unsigned int)st
.st_mtime
;
3107 istate
->timestamp
.nsec
= ST_MTIME_NSEC(st
);
3108 trace_performance_since(start
, "write index, changed mask = %x", istate
->cache_changed
);
3111 * TODO trace2: replace "the_repository" with the actual repo instance
3112 * that is associated with the given "istate".
3114 trace2_data_intmax("index", the_repository
, "write/version",
3116 trace2_data_intmax("index", the_repository
, "write/cache_nr",
3122 void set_alternate_index_output(const char *name
)
3124 alternate_index_output
= name
;
3127 static int commit_locked_index(struct lock_file
*lk
)
3129 if (alternate_index_output
)
3130 return commit_lock_file_to(lk
, alternate_index_output
);
3132 return commit_lock_file(lk
);
3135 static int do_write_locked_index(struct index_state
*istate
, struct lock_file
*lock
,
3139 int was_full
= !istate
->sparse_index
;
3141 ret
= convert_to_sparse(istate
, 0);
3144 warning(_("failed to convert to a sparse-index"));
3149 * TODO trace2: replace "the_repository" with the actual repo instance
3150 * that is associated with the given "istate".
3152 trace2_region_enter_printf("index", "do_write_index", the_repository
,
3153 "%s", get_lock_file_path(lock
));
3154 ret
= do_write_index(istate
, lock
->tempfile
, 0, flags
);
3155 trace2_region_leave_printf("index", "do_write_index", the_repository
,
3156 "%s", get_lock_file_path(lock
));
3159 ensure_full_index(istate
);
3163 if (flags
& COMMIT_LOCK
)
3164 ret
= commit_locked_index(lock
);
3166 ret
= close_lock_file_gently(lock
);
3168 run_hooks_l("post-index-change",
3169 istate
->updated_workdir
? "1" : "0",
3170 istate
->updated_skipworktree
? "1" : "0", NULL
);
3171 istate
->updated_workdir
= 0;
3172 istate
->updated_skipworktree
= 0;
3177 static int write_split_index(struct index_state
*istate
,
3178 struct lock_file
*lock
,
3182 prepare_to_write_split_index(istate
);
3183 ret
= do_write_locked_index(istate
, lock
, flags
);
3184 finish_writing_split_index(istate
);
3188 static const char *shared_index_expire
= "2.weeks.ago";
3190 static unsigned long get_shared_index_expire_date(void)
3192 static unsigned long shared_index_expire_date
;
3193 static int shared_index_expire_date_prepared
;
3195 if (!shared_index_expire_date_prepared
) {
3196 git_config_get_expiry("splitindex.sharedindexexpire",
3197 &shared_index_expire
);
3198 shared_index_expire_date
= approxidate(shared_index_expire
);
3199 shared_index_expire_date_prepared
= 1;
3202 return shared_index_expire_date
;
3205 static int should_delete_shared_index(const char *shared_index_path
)
3208 unsigned long expiration
;
3210 /* Check timestamp */
3211 expiration
= get_shared_index_expire_date();
3214 if (stat(shared_index_path
, &st
))
3215 return error_errno(_("could not stat '%s'"), shared_index_path
);
3216 if (st
.st_mtime
> expiration
)
3222 static int clean_shared_index_files(const char *current_hex
)
3225 DIR *dir
= opendir(get_git_dir());
3228 return error_errno(_("unable to open git dir: %s"), get_git_dir());
3230 while ((de
= readdir(dir
)) != NULL
) {
3231 const char *sha1_hex
;
3232 const char *shared_index_path
;
3233 if (!skip_prefix(de
->d_name
, "sharedindex.", &sha1_hex
))
3235 if (!strcmp(sha1_hex
, current_hex
))
3237 shared_index_path
= git_path("%s", de
->d_name
);
3238 if (should_delete_shared_index(shared_index_path
) > 0 &&
3239 unlink(shared_index_path
))
3240 warning_errno(_("unable to unlink: %s"), shared_index_path
);
3247 static int write_shared_index(struct index_state
*istate
,
3248 struct tempfile
**temp
, unsigned flags
)
3250 struct split_index
*si
= istate
->split_index
;
3251 int ret
, was_full
= !istate
->sparse_index
;
3253 move_cache_to_base_index(istate
);
3254 convert_to_sparse(istate
, 0);
3256 trace2_region_enter_printf("index", "shared/do_write_index",
3257 the_repository
, "%s", get_tempfile_path(*temp
));
3258 ret
= do_write_index(si
->base
, *temp
, 1, flags
);
3259 trace2_region_leave_printf("index", "shared/do_write_index",
3260 the_repository
, "%s", get_tempfile_path(*temp
));
3263 ensure_full_index(istate
);
3267 ret
= adjust_shared_perm(get_tempfile_path(*temp
));
3269 error(_("cannot fix permission bits on '%s'"), get_tempfile_path(*temp
));
3272 ret
= rename_tempfile(temp
,
3273 git_path("sharedindex.%s", oid_to_hex(&si
->base
->oid
)));
3275 oidcpy(&si
->base_oid
, &si
->base
->oid
);
3276 clean_shared_index_files(oid_to_hex(&si
->base
->oid
));
3282 static const int default_max_percent_split_change
= 20;
3284 static int too_many_not_shared_entries(struct index_state
*istate
)
3286 int i
, not_shared
= 0;
3287 int max_split
= git_config_get_max_percent_split_change();
3289 switch (max_split
) {
3291 /* not or badly configured: use the default value */
3292 max_split
= default_max_percent_split_change
;
3295 return 1; /* 0% means always write a new shared index */
3297 return 0; /* 100% means never write a new shared index */
3299 break; /* just use the configured value */
3302 /* Count not shared entries */
3303 for (i
= 0; i
< istate
->cache_nr
; i
++) {
3304 struct cache_entry
*ce
= istate
->cache
[i
];
3309 return (int64_t)istate
->cache_nr
* max_split
< (int64_t)not_shared
* 100;
3312 int write_locked_index(struct index_state
*istate
, struct lock_file
*lock
,
3315 int new_shared_index
, ret
, test_split_index_env
;
3316 struct split_index
*si
= istate
->split_index
;
3318 if (git_env_bool("GIT_TEST_CHECK_CACHE_TREE", 0))
3319 cache_tree_verify(the_repository
, istate
);
3321 if ((flags
& SKIP_IF_UNCHANGED
) && !istate
->cache_changed
) {
3322 if (flags
& COMMIT_LOCK
)
3323 rollback_lock_file(lock
);
3327 if (istate
->fsmonitor_last_update
)
3328 fill_fsmonitor_bitmap(istate
);
3330 test_split_index_env
= git_env_bool("GIT_TEST_SPLIT_INDEX", 0);
3332 if ((!si
&& !test_split_index_env
) ||
3333 alternate_index_output
||
3334 (istate
->cache_changed
& ~EXTMASK
)) {
3336 oidclr(&si
->base_oid
);
3337 ret
= do_write_locked_index(istate
, lock
, flags
);
3341 if (test_split_index_env
) {
3343 si
= init_split_index(istate
);
3344 istate
->cache_changed
|= SPLIT_INDEX_ORDERED
;
3346 int v
= si
->base_oid
.hash
[0];
3348 istate
->cache_changed
|= SPLIT_INDEX_ORDERED
;
3351 if (too_many_not_shared_entries(istate
))
3352 istate
->cache_changed
|= SPLIT_INDEX_ORDERED
;
3354 new_shared_index
= istate
->cache_changed
& SPLIT_INDEX_ORDERED
;
3356 if (new_shared_index
) {
3357 struct tempfile
*temp
;
3360 /* Same initial permissions as the main .git/index file */
3361 temp
= mks_tempfile_sm(git_path("sharedindex_XXXXXX"), 0, 0666);
3363 oidclr(&si
->base_oid
);
3364 ret
= do_write_locked_index(istate
, lock
, flags
);
3367 ret
= write_shared_index(istate
, &temp
, flags
);
3369 saved_errno
= errno
;
3370 if (is_tempfile_active(temp
))
3371 delete_tempfile(&temp
);
3372 errno
= saved_errno
;
3378 ret
= write_split_index(istate
, lock
, flags
);
3380 /* Freshen the shared index only if the split-index was written */
3381 if (!ret
&& !new_shared_index
&& !is_null_oid(&si
->base_oid
)) {
3382 const char *shared_index
= git_path("sharedindex.%s",
3383 oid_to_hex(&si
->base_oid
));
3384 freshen_shared_index(shared_index
, 1);
3388 if (flags
& COMMIT_LOCK
)
3389 rollback_lock_file(lock
);
3394 * Read the index file that is potentially unmerged into given
3395 * index_state, dropping any unmerged entries to stage #0 (potentially
3396 * resulting in a path appearing as both a file and a directory in the
3397 * index; the caller is responsible to clear out the extra entries
3398 * before writing the index to a tree). Returns true if the index is
3399 * unmerged. Callers who want to refuse to work from an unmerged
3400 * state can call this and check its return value, instead of calling
3403 int repo_read_index_unmerged(struct repository
*repo
)
3405 struct index_state
*istate
;
3409 repo_read_index(repo
);
3410 istate
= repo
->index
;
3411 for (i
= 0; i
< istate
->cache_nr
; i
++) {
3412 struct cache_entry
*ce
= istate
->cache
[i
];
3413 struct cache_entry
*new_ce
;
3419 len
= ce_namelen(ce
);
3420 new_ce
= make_empty_cache_entry(istate
, len
);
3421 memcpy(new_ce
->name
, ce
->name
, len
);
3422 new_ce
->ce_flags
= create_ce_flags(0) | CE_CONFLICTED
;
3423 new_ce
->ce_namelen
= len
;
3424 new_ce
->ce_mode
= ce
->ce_mode
;
3425 if (add_index_entry(istate
, new_ce
, ADD_CACHE_SKIP_DFCHECK
))
3426 return error(_("%s: cannot drop to stage #0"),
3433 * Returns 1 if the path is an "other" path with respect to
3434 * the index; that is, the path is not mentioned in the index at all,
3435 * either as a file, a directory with some files in the index,
3436 * or as an unmerged entry.
3438 * We helpfully remove a trailing "/" from directories so that
3439 * the output of read_directory can be used as-is.
3441 int index_name_is_other(struct index_state
*istate
, const char *name
,
3445 if (namelen
&& name
[namelen
- 1] == '/')
3447 pos
= index_name_pos(istate
, name
, namelen
);
3449 return 0; /* exact match */
3451 if (pos
< istate
->cache_nr
) {
3452 struct cache_entry
*ce
= istate
->cache
[pos
];
3453 if (ce_namelen(ce
) == namelen
&&
3454 !memcmp(ce
->name
, name
, namelen
))
3455 return 0; /* Yup, this one exists unmerged */
3460 void *read_blob_data_from_index(struct index_state
*istate
,
3461 const char *path
, unsigned long *size
)
3465 enum object_type type
;
3469 pos
= index_name_pos(istate
, path
, len
);
3472 * We might be in the middle of a merge, in which
3473 * case we would read stage #2 (ours).
3477 (pos
< 0 && i
< istate
->cache_nr
&&
3478 !strcmp(istate
->cache
[i
]->name
, path
));
3480 if (ce_stage(istate
->cache
[i
]) == 2)
3485 data
= read_object_file(&istate
->cache
[pos
]->oid
, &type
, &sz
);
3486 if (!data
|| type
!= OBJ_BLOB
) {
3495 void stat_validity_clear(struct stat_validity
*sv
)
3497 FREE_AND_NULL(sv
->sd
);
3500 int stat_validity_check(struct stat_validity
*sv
, const char *path
)
3504 if (stat(path
, &st
) < 0)
3505 return sv
->sd
== NULL
;
3508 return S_ISREG(st
.st_mode
) && !match_stat_data(sv
->sd
, &st
);
3511 void stat_validity_update(struct stat_validity
*sv
, int fd
)
3515 if (fstat(fd
, &st
) < 0 || !S_ISREG(st
.st_mode
))
3516 stat_validity_clear(sv
);
3519 CALLOC_ARRAY(sv
->sd
, 1);
3520 fill_stat_data(sv
->sd
, &st
);
3524 void move_index_extensions(struct index_state
*dst
, struct index_state
*src
)
3526 dst
->untracked
= src
->untracked
;
3527 src
->untracked
= NULL
;
3528 dst
->cache_tree
= src
->cache_tree
;
3529 src
->cache_tree
= NULL
;
3532 struct cache_entry
*dup_cache_entry(const struct cache_entry
*ce
,
3533 struct index_state
*istate
)
3535 unsigned int size
= ce_size(ce
);
3536 int mem_pool_allocated
;
3537 struct cache_entry
*new_entry
= make_empty_cache_entry(istate
, ce_namelen(ce
));
3538 mem_pool_allocated
= new_entry
->mem_pool_allocated
;
3540 memcpy(new_entry
, ce
, size
);
3541 new_entry
->mem_pool_allocated
= mem_pool_allocated
;
3545 void discard_cache_entry(struct cache_entry
*ce
)
3547 if (ce
&& should_validate_cache_entries())
3548 memset(ce
, 0xCD, cache_entry_size(ce
->ce_namelen
));
3550 if (ce
&& ce
->mem_pool_allocated
)
3556 int should_validate_cache_entries(void)
3558 static int validate_index_cache_entries
= -1;
3560 if (validate_index_cache_entries
< 0) {
3561 if (getenv("GIT_TEST_VALIDATE_INDEX_CACHE_ENTRIES"))
3562 validate_index_cache_entries
= 1;
3564 validate_index_cache_entries
= 0;
3567 return validate_index_cache_entries
;
3570 #define EOIE_SIZE (4 + GIT_SHA1_RAWSZ) /* <4-byte offset> + <20-byte hash> */
3571 #define EOIE_SIZE_WITH_HEADER (4 + 4 + EOIE_SIZE) /* <4-byte signature> + <4-byte length> + EOIE_SIZE */
3573 static size_t read_eoie_extension(const char *mmap
, size_t mmap_size
)
3576 * The end of index entries (EOIE) extension is guaranteed to be last
3577 * so that it can be found by scanning backwards from the EOF.
3584 const char *index
, *eoie
;
3586 size_t offset
, src_offset
;
3587 unsigned char hash
[GIT_MAX_RAWSZ
];
3590 /* ensure we have an index big enough to contain an EOIE extension */
3591 if (mmap_size
< sizeof(struct cache_header
) + EOIE_SIZE_WITH_HEADER
+ the_hash_algo
->rawsz
)
3594 /* validate the extension signature */
3595 index
= eoie
= mmap
+ mmap_size
- EOIE_SIZE_WITH_HEADER
- the_hash_algo
->rawsz
;
3596 if (CACHE_EXT(index
) != CACHE_EXT_ENDOFINDEXENTRIES
)
3598 index
+= sizeof(uint32_t);
3600 /* validate the extension size */
3601 extsize
= get_be32(index
);
3602 if (extsize
!= EOIE_SIZE
)
3604 index
+= sizeof(uint32_t);
3607 * Validate the offset we're going to look for the first extension
3608 * signature is after the index header and before the eoie extension.
3610 offset
= get_be32(index
);
3611 if (mmap
+ offset
< mmap
+ sizeof(struct cache_header
))
3613 if (mmap
+ offset
>= eoie
)
3615 index
+= sizeof(uint32_t);
3618 * The hash is computed over extension types and their sizes (but not
3619 * their contents). E.g. if we have "TREE" extension that is N-bytes
3620 * long, "REUC" extension that is M-bytes long, followed by "EOIE",
3621 * then the hash would be:
3623 * SHA-1("TREE" + <binary representation of N> +
3624 * "REUC" + <binary representation of M>)
3626 src_offset
= offset
;
3627 the_hash_algo
->init_fn(&c
);
3628 while (src_offset
< mmap_size
- the_hash_algo
->rawsz
- EOIE_SIZE_WITH_HEADER
) {
3629 /* After an array of active_nr index entries,
3630 * there can be arbitrary number of extended
3631 * sections, each of which is prefixed with
3632 * extension name (4-byte) and section length
3633 * in 4-byte network byte order.
3636 memcpy(&extsize
, mmap
+ src_offset
+ 4, 4);
3637 extsize
= ntohl(extsize
);
3639 /* verify the extension size isn't so large it will wrap around */
3640 if (src_offset
+ 8 + extsize
< src_offset
)
3643 the_hash_algo
->update_fn(&c
, mmap
+ src_offset
, 8);
3646 src_offset
+= extsize
;
3648 the_hash_algo
->final_fn(hash
, &c
);
3649 if (!hasheq(hash
, (const unsigned char *)index
))
3652 /* Validate that the extension offsets returned us back to the eoie extension. */
3653 if (src_offset
!= mmap_size
- the_hash_algo
->rawsz
- EOIE_SIZE_WITH_HEADER
)
3659 static void write_eoie_extension(struct strbuf
*sb
, git_hash_ctx
*eoie_context
, size_t offset
)
3662 unsigned char hash
[GIT_MAX_RAWSZ
];
3665 put_be32(&buffer
, offset
);
3666 strbuf_add(sb
, &buffer
, sizeof(uint32_t));
3669 the_hash_algo
->final_fn(hash
, eoie_context
);
3670 strbuf_add(sb
, hash
, the_hash_algo
->rawsz
);
3673 #define IEOT_VERSION (1)
3675 static struct index_entry_offset_table
*read_ieot_extension(const char *mmap
, size_t mmap_size
, size_t offset
)
3677 const char *index
= NULL
;
3678 uint32_t extsize
, ext_version
;
3679 struct index_entry_offset_table
*ieot
;
3682 /* find the IEOT extension */
3685 while (offset
<= mmap_size
- the_hash_algo
->rawsz
- 8) {
3686 extsize
= get_be32(mmap
+ offset
+ 4);
3687 if (CACHE_EXT((mmap
+ offset
)) == CACHE_EXT_INDEXENTRYOFFSETTABLE
) {
3688 index
= mmap
+ offset
+ 4 + 4;
3697 /* validate the version is IEOT_VERSION */
3698 ext_version
= get_be32(index
);
3699 if (ext_version
!= IEOT_VERSION
) {
3700 error("invalid IEOT version %d", ext_version
);
3703 index
+= sizeof(uint32_t);
3705 /* extension size - version bytes / bytes per entry */
3706 nr
= (extsize
- sizeof(uint32_t)) / (sizeof(uint32_t) + sizeof(uint32_t));
3708 error("invalid number of IEOT entries %d", nr
);
3711 ieot
= xmalloc(sizeof(struct index_entry_offset_table
)
3712 + (nr
* sizeof(struct index_entry_offset
)));
3714 for (i
= 0; i
< nr
; i
++) {
3715 ieot
->entries
[i
].offset
= get_be32(index
);
3716 index
+= sizeof(uint32_t);
3717 ieot
->entries
[i
].nr
= get_be32(index
);
3718 index
+= sizeof(uint32_t);
3724 static void write_ieot_extension(struct strbuf
*sb
, struct index_entry_offset_table
*ieot
)
3730 put_be32(&buffer
, IEOT_VERSION
);
3731 strbuf_add(sb
, &buffer
, sizeof(uint32_t));
3734 for (i
= 0; i
< ieot
->nr
; i
++) {
3737 put_be32(&buffer
, ieot
->entries
[i
].offset
);
3738 strbuf_add(sb
, &buffer
, sizeof(uint32_t));
3741 put_be32(&buffer
, ieot
->entries
[i
].nr
);
3742 strbuf_add(sb
, &buffer
, sizeof(uint32_t));
3746 void prefetch_cache_entries(const struct index_state
*istate
,
3747 must_prefetch_predicate must_prefetch
)
3750 struct oid_array to_fetch
= OID_ARRAY_INIT
;
3752 for (i
= 0; i
< istate
->cache_nr
; i
++) {
3753 struct cache_entry
*ce
= istate
->cache
[i
];
3755 if (S_ISGITLINK(ce
->ce_mode
) || !must_prefetch(ce
))
3757 if (!oid_object_info_extended(the_repository
, &ce
->oid
,
3759 OBJECT_INFO_FOR_PREFETCH
))
3761 oid_array_append(&to_fetch
, &ce
->oid
);
3763 promisor_remote_get_direct(the_repository
,
3764 to_fetch
.oid
, to_fetch
.nr
);
3765 oid_array_clear(&to_fetch
);