cache,tree: move basic name compare functions from read-cache to tree
[git.git] / read-cache.c
blobb3e2917ddc95ad796d9d0c71e1a8c4c087340233
1 /*
2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
5 */
6 #include "cache.h"
7 #include "alloc.h"
8 #include "config.h"
9 #include "diff.h"
10 #include "diffcore.h"
11 #include "hex.h"
12 #include "tempfile.h"
13 #include "lockfile.h"
14 #include "cache-tree.h"
15 #include "refs.h"
16 #include "dir.h"
17 #include "object-file.h"
18 #include "object-store.h"
19 #include "oid-array.h"
20 #include "tree.h"
21 #include "commit.h"
22 #include "blob.h"
23 #include "environment.h"
24 #include "gettext.h"
25 #include "mem-pool.h"
26 #include "object-name.h"
27 #include "resolve-undo.h"
28 #include "run-command.h"
29 #include "strbuf.h"
30 #include "trace2.h"
31 #include "varint.h"
32 #include "split-index.h"
33 #include "symlinks.h"
34 #include "utf8.h"
35 #include "fsmonitor.h"
36 #include "thread-utils.h"
37 #include "progress.h"
38 #include "sparse-index.h"
39 #include "csum-file.h"
40 #include "promisor-remote.h"
41 #include "hook.h"
42 #include "wrapper.h"
44 /* Mask for the name length in ce_flags in the on-disk index */
46 #define CE_NAMEMASK (0x0fff)
48 /* Index extensions.
50 * The first letter should be 'A'..'Z' for extensions that are not
51 * necessary for a correct operation (i.e. optimization data).
52 * When new extensions are added that _needs_ to be understood in
53 * order to correctly interpret the index file, pick character that
54 * is outside the range, to cause the reader to abort.
57 #define CACHE_EXT(s) ( (s[0]<<24)|(s[1]<<16)|(s[2]<<8)|(s[3]) )
58 #define CACHE_EXT_TREE 0x54524545 /* "TREE" */
59 #define CACHE_EXT_RESOLVE_UNDO 0x52455543 /* "REUC" */
60 #define CACHE_EXT_LINK 0x6c696e6b /* "link" */
61 #define CACHE_EXT_UNTRACKED 0x554E5452 /* "UNTR" */
62 #define CACHE_EXT_FSMONITOR 0x46534D4E /* "FSMN" */
63 #define CACHE_EXT_ENDOFINDEXENTRIES 0x454F4945 /* "EOIE" */
64 #define CACHE_EXT_INDEXENTRYOFFSETTABLE 0x49454F54 /* "IEOT" */
65 #define CACHE_EXT_SPARSE_DIRECTORIES 0x73646972 /* "sdir" */
67 /* changes that can be kept in $GIT_DIR/index (basically all extensions) */
68 #define EXTMASK (RESOLVE_UNDO_CHANGED | CACHE_TREE_CHANGED | \
69 CE_ENTRY_ADDED | CE_ENTRY_REMOVED | CE_ENTRY_CHANGED | \
70 SPLIT_INDEX_ORDERED | UNTRACKED_CHANGED | FSMONITOR_CHANGED)
74 * This is an estimate of the pathname length in the index. We use
75 * this for V4 index files to guess the un-deltafied size of the index
76 * in memory because of pathname deltafication. This is not required
77 * for V2/V3 index formats because their pathnames are not compressed.
78 * If the initial amount of memory set aside is not sufficient, the
79 * mem pool will allocate extra memory.
81 #define CACHE_ENTRY_PATH_LENGTH 80
83 enum index_search_mode {
84 NO_EXPAND_SPARSE = 0,
85 EXPAND_SPARSE = 1
88 static inline struct cache_entry *mem_pool__ce_alloc(struct mem_pool *mem_pool, size_t len)
90 struct cache_entry *ce;
91 ce = mem_pool_alloc(mem_pool, cache_entry_size(len));
92 ce->mem_pool_allocated = 1;
93 return ce;
96 static inline struct cache_entry *mem_pool__ce_calloc(struct mem_pool *mem_pool, size_t len)
98 struct cache_entry * ce;
99 ce = mem_pool_calloc(mem_pool, 1, cache_entry_size(len));
100 ce->mem_pool_allocated = 1;
101 return ce;
104 static struct mem_pool *find_mem_pool(struct index_state *istate)
106 struct mem_pool **pool_ptr;
108 if (istate->split_index && istate->split_index->base)
109 pool_ptr = &istate->split_index->base->ce_mem_pool;
110 else
111 pool_ptr = &istate->ce_mem_pool;
113 if (!*pool_ptr) {
114 *pool_ptr = xmalloc(sizeof(**pool_ptr));
115 mem_pool_init(*pool_ptr, 0);
118 return *pool_ptr;
121 static const char *alternate_index_output;
123 static void set_index_entry(struct index_state *istate, int nr, struct cache_entry *ce)
125 if (S_ISSPARSEDIR(ce->ce_mode))
126 istate->sparse_index = INDEX_COLLAPSED;
128 istate->cache[nr] = ce;
129 add_name_hash(istate, ce);
132 static void replace_index_entry(struct index_state *istate, int nr, struct cache_entry *ce)
134 struct cache_entry *old = istate->cache[nr];
136 replace_index_entry_in_base(istate, old, ce);
137 remove_name_hash(istate, old);
138 discard_cache_entry(old);
139 ce->ce_flags &= ~CE_HASHED;
140 set_index_entry(istate, nr, ce);
141 ce->ce_flags |= CE_UPDATE_IN_BASE;
142 mark_fsmonitor_invalid(istate, ce);
143 istate->cache_changed |= CE_ENTRY_CHANGED;
146 void rename_index_entry_at(struct index_state *istate, int nr, const char *new_name)
148 struct cache_entry *old_entry = istate->cache[nr], *new_entry, *refreshed;
149 int namelen = strlen(new_name);
151 new_entry = make_empty_cache_entry(istate, namelen);
152 copy_cache_entry(new_entry, old_entry);
153 new_entry->ce_flags &= ~CE_HASHED;
154 new_entry->ce_namelen = namelen;
155 new_entry->index = 0;
156 memcpy(new_entry->name, new_name, namelen + 1);
158 cache_tree_invalidate_path(istate, old_entry->name);
159 untracked_cache_remove_from_index(istate, old_entry->name);
160 remove_index_entry_at(istate, nr);
163 * Refresh the new index entry. Using 'refresh_cache_entry' ensures
164 * we only update stat info if the entry is otherwise up-to-date (i.e.,
165 * the contents/mode haven't changed). This ensures that we reflect the
166 * 'ctime' of the rename in the index without (incorrectly) updating
167 * the cached stat info to reflect unstaged changes on disk.
169 refreshed = refresh_cache_entry(istate, new_entry, CE_MATCH_REFRESH);
170 if (refreshed && refreshed != new_entry) {
171 add_index_entry(istate, refreshed, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);
172 discard_cache_entry(new_entry);
173 } else
174 add_index_entry(istate, new_entry, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);
177 void fill_stat_data(struct stat_data *sd, struct stat *st)
179 sd->sd_ctime.sec = (unsigned int)st->st_ctime;
180 sd->sd_mtime.sec = (unsigned int)st->st_mtime;
181 sd->sd_ctime.nsec = ST_CTIME_NSEC(*st);
182 sd->sd_mtime.nsec = ST_MTIME_NSEC(*st);
183 sd->sd_dev = st->st_dev;
184 sd->sd_ino = st->st_ino;
185 sd->sd_uid = st->st_uid;
186 sd->sd_gid = st->st_gid;
187 sd->sd_size = st->st_size;
190 int match_stat_data(const struct stat_data *sd, struct stat *st)
192 int changed = 0;
194 if (sd->sd_mtime.sec != (unsigned int)st->st_mtime)
195 changed |= MTIME_CHANGED;
196 if (trust_ctime && check_stat &&
197 sd->sd_ctime.sec != (unsigned int)st->st_ctime)
198 changed |= CTIME_CHANGED;
200 #ifdef USE_NSEC
201 if (check_stat && sd->sd_mtime.nsec != ST_MTIME_NSEC(*st))
202 changed |= MTIME_CHANGED;
203 if (trust_ctime && check_stat &&
204 sd->sd_ctime.nsec != ST_CTIME_NSEC(*st))
205 changed |= CTIME_CHANGED;
206 #endif
208 if (check_stat) {
209 if (sd->sd_uid != (unsigned int) st->st_uid ||
210 sd->sd_gid != (unsigned int) st->st_gid)
211 changed |= OWNER_CHANGED;
212 if (sd->sd_ino != (unsigned int) st->st_ino)
213 changed |= INODE_CHANGED;
216 #ifdef USE_STDEV
218 * st_dev breaks on network filesystems where different
219 * clients will have different views of what "device"
220 * the filesystem is on
222 if (check_stat && sd->sd_dev != (unsigned int) st->st_dev)
223 changed |= INODE_CHANGED;
224 #endif
226 if (sd->sd_size != (unsigned int) st->st_size)
227 changed |= DATA_CHANGED;
229 return changed;
233 * This only updates the "non-critical" parts of the directory
234 * cache, ie the parts that aren't tracked by GIT, and only used
235 * to validate the cache.
237 void fill_stat_cache_info(struct index_state *istate, struct cache_entry *ce, struct stat *st)
239 fill_stat_data(&ce->ce_stat_data, st);
241 if (assume_unchanged)
242 ce->ce_flags |= CE_VALID;
244 if (S_ISREG(st->st_mode)) {
245 ce_mark_uptodate(ce);
246 mark_fsmonitor_valid(istate, ce);
250 static int ce_compare_data(struct index_state *istate,
251 const struct cache_entry *ce,
252 struct stat *st)
254 int match = -1;
255 int fd = git_open_cloexec(ce->name, O_RDONLY);
257 if (fd >= 0) {
258 struct object_id oid;
259 if (!index_fd(istate, &oid, fd, st, OBJ_BLOB, ce->name, 0))
260 match = !oideq(&oid, &ce->oid);
261 /* index_fd() closed the file descriptor already */
263 return match;
266 static int ce_compare_link(const struct cache_entry *ce, size_t expected_size)
268 int match = -1;
269 void *buffer;
270 unsigned long size;
271 enum object_type type;
272 struct strbuf sb = STRBUF_INIT;
274 if (strbuf_readlink(&sb, ce->name, expected_size))
275 return -1;
277 buffer = repo_read_object_file(the_repository, &ce->oid, &type, &size);
278 if (buffer) {
279 if (size == sb.len)
280 match = memcmp(buffer, sb.buf, size);
281 free(buffer);
283 strbuf_release(&sb);
284 return match;
287 static int ce_compare_gitlink(const struct cache_entry *ce)
289 struct object_id oid;
292 * We don't actually require that the .git directory
293 * under GITLINK directory be a valid git directory. It
294 * might even be missing (in case nobody populated that
295 * sub-project).
297 * If so, we consider it always to match.
299 if (resolve_gitlink_ref(ce->name, "HEAD", &oid) < 0)
300 return 0;
301 return !oideq(&oid, &ce->oid);
304 static int ce_modified_check_fs(struct index_state *istate,
305 const struct cache_entry *ce,
306 struct stat *st)
308 switch (st->st_mode & S_IFMT) {
309 case S_IFREG:
310 if (ce_compare_data(istate, ce, st))
311 return DATA_CHANGED;
312 break;
313 case S_IFLNK:
314 if (ce_compare_link(ce, xsize_t(st->st_size)))
315 return DATA_CHANGED;
316 break;
317 case S_IFDIR:
318 if (S_ISGITLINK(ce->ce_mode))
319 return ce_compare_gitlink(ce) ? DATA_CHANGED : 0;
320 /* else fallthrough */
321 default:
322 return TYPE_CHANGED;
324 return 0;
327 static int ce_match_stat_basic(const struct cache_entry *ce, struct stat *st)
329 unsigned int changed = 0;
331 if (ce->ce_flags & CE_REMOVE)
332 return MODE_CHANGED | DATA_CHANGED | TYPE_CHANGED;
334 switch (ce->ce_mode & S_IFMT) {
335 case S_IFREG:
336 changed |= !S_ISREG(st->st_mode) ? TYPE_CHANGED : 0;
337 /* We consider only the owner x bit to be relevant for
338 * "mode changes"
340 if (trust_executable_bit &&
341 (0100 & (ce->ce_mode ^ st->st_mode)))
342 changed |= MODE_CHANGED;
343 break;
344 case S_IFLNK:
345 if (!S_ISLNK(st->st_mode) &&
346 (has_symlinks || !S_ISREG(st->st_mode)))
347 changed |= TYPE_CHANGED;
348 break;
349 case S_IFGITLINK:
350 /* We ignore most of the st_xxx fields for gitlinks */
351 if (!S_ISDIR(st->st_mode))
352 changed |= TYPE_CHANGED;
353 else if (ce_compare_gitlink(ce))
354 changed |= DATA_CHANGED;
355 return changed;
356 default:
357 BUG("unsupported ce_mode: %o", ce->ce_mode);
360 changed |= match_stat_data(&ce->ce_stat_data, st);
362 /* Racily smudged entry? */
363 if (!ce->ce_stat_data.sd_size) {
364 if (!is_empty_blob_sha1(ce->oid.hash))
365 changed |= DATA_CHANGED;
368 return changed;
371 static int is_racy_stat(const struct index_state *istate,
372 const struct stat_data *sd)
374 return (istate->timestamp.sec &&
375 #ifdef USE_NSEC
376 /* nanosecond timestamped files can also be racy! */
377 (istate->timestamp.sec < sd->sd_mtime.sec ||
378 (istate->timestamp.sec == sd->sd_mtime.sec &&
379 istate->timestamp.nsec <= sd->sd_mtime.nsec))
380 #else
381 istate->timestamp.sec <= sd->sd_mtime.sec
382 #endif
386 int is_racy_timestamp(const struct index_state *istate,
387 const struct cache_entry *ce)
389 return (!S_ISGITLINK(ce->ce_mode) &&
390 is_racy_stat(istate, &ce->ce_stat_data));
393 int match_stat_data_racy(const struct index_state *istate,
394 const struct stat_data *sd, struct stat *st)
396 if (is_racy_stat(istate, sd))
397 return MTIME_CHANGED;
398 return match_stat_data(sd, st);
401 int ie_match_stat(struct index_state *istate,
402 const struct cache_entry *ce, struct stat *st,
403 unsigned int options)
405 unsigned int changed;
406 int ignore_valid = options & CE_MATCH_IGNORE_VALID;
407 int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE;
408 int assume_racy_is_modified = options & CE_MATCH_RACY_IS_DIRTY;
409 int ignore_fsmonitor = options & CE_MATCH_IGNORE_FSMONITOR;
411 if (!ignore_fsmonitor)
412 refresh_fsmonitor(istate);
414 * If it's marked as always valid in the index, it's
415 * valid whatever the checked-out copy says.
417 * skip-worktree has the same effect with higher precedence
419 if (!ignore_skip_worktree && ce_skip_worktree(ce))
420 return 0;
421 if (!ignore_valid && (ce->ce_flags & CE_VALID))
422 return 0;
423 if (!ignore_fsmonitor && (ce->ce_flags & CE_FSMONITOR_VALID))
424 return 0;
427 * Intent-to-add entries have not been added, so the index entry
428 * by definition never matches what is in the work tree until it
429 * actually gets added.
431 if (ce_intent_to_add(ce))
432 return DATA_CHANGED | TYPE_CHANGED | MODE_CHANGED;
434 changed = ce_match_stat_basic(ce, st);
437 * Within 1 second of this sequence:
438 * echo xyzzy >file && git-update-index --add file
439 * running this command:
440 * echo frotz >file
441 * would give a falsely clean cache entry. The mtime and
442 * length match the cache, and other stat fields do not change.
444 * We could detect this at update-index time (the cache entry
445 * being registered/updated records the same time as "now")
446 * and delay the return from git-update-index, but that would
447 * effectively mean we can make at most one commit per second,
448 * which is not acceptable. Instead, we check cache entries
449 * whose mtime are the same as the index file timestamp more
450 * carefully than others.
452 if (!changed && is_racy_timestamp(istate, ce)) {
453 if (assume_racy_is_modified)
454 changed |= DATA_CHANGED;
455 else
456 changed |= ce_modified_check_fs(istate, ce, st);
459 return changed;
462 int ie_modified(struct index_state *istate,
463 const struct cache_entry *ce,
464 struct stat *st, unsigned int options)
466 int changed, changed_fs;
468 changed = ie_match_stat(istate, ce, st, options);
469 if (!changed)
470 return 0;
472 * If the mode or type has changed, there's no point in trying
473 * to refresh the entry - it's not going to match
475 if (changed & (MODE_CHANGED | TYPE_CHANGED))
476 return changed;
479 * Immediately after read-tree or update-index --cacheinfo,
480 * the length field is zero, as we have never even read the
481 * lstat(2) information once, and we cannot trust DATA_CHANGED
482 * returned by ie_match_stat() which in turn was returned by
483 * ce_match_stat_basic() to signal that the filesize of the
484 * blob changed. We have to actually go to the filesystem to
485 * see if the contents match, and if so, should answer "unchanged".
487 * The logic does not apply to gitlinks, as ce_match_stat_basic()
488 * already has checked the actual HEAD from the filesystem in the
489 * subproject. If ie_match_stat() already said it is different,
490 * then we know it is.
492 if ((changed & DATA_CHANGED) &&
493 (S_ISGITLINK(ce->ce_mode) || ce->ce_stat_data.sd_size != 0))
494 return changed;
496 changed_fs = ce_modified_check_fs(istate, ce, st);
497 if (changed_fs)
498 return changed | changed_fs;
499 return 0;
502 static int cache_name_stage_compare(const char *name1, int len1, int stage1,
503 const char *name2, int len2, int stage2)
505 int cmp;
507 cmp = name_compare(name1, len1, name2, len2);
508 if (cmp)
509 return cmp;
511 if (stage1 < stage2)
512 return -1;
513 if (stage1 > stage2)
514 return 1;
515 return 0;
518 int cmp_cache_name_compare(const void *a_, const void *b_)
520 const struct cache_entry *ce1, *ce2;
522 ce1 = *((const struct cache_entry **)a_);
523 ce2 = *((const struct cache_entry **)b_);
524 return cache_name_stage_compare(ce1->name, ce1->ce_namelen, ce_stage(ce1),
525 ce2->name, ce2->ce_namelen, ce_stage(ce2));
528 static int index_name_stage_pos(struct index_state *istate,
529 const char *name, int namelen,
530 int stage,
531 enum index_search_mode search_mode)
533 int first, last;
535 first = 0;
536 last = istate->cache_nr;
537 while (last > first) {
538 int next = first + ((last - first) >> 1);
539 struct cache_entry *ce = istate->cache[next];
540 int cmp = cache_name_stage_compare(name, namelen, stage, ce->name, ce_namelen(ce), ce_stage(ce));
541 if (!cmp)
542 return next;
543 if (cmp < 0) {
544 last = next;
545 continue;
547 first = next+1;
550 if (search_mode == EXPAND_SPARSE && istate->sparse_index &&
551 first > 0) {
552 /* Note: first <= istate->cache_nr */
553 struct cache_entry *ce = istate->cache[first - 1];
556 * If we are in a sparse-index _and_ the entry before the
557 * insertion position is a sparse-directory entry that is
558 * an ancestor of 'name', then we need to expand the index
559 * and search again. This will only trigger once, because
560 * thereafter the index is fully expanded.
562 if (S_ISSPARSEDIR(ce->ce_mode) &&
563 ce_namelen(ce) < namelen &&
564 !strncmp(name, ce->name, ce_namelen(ce))) {
565 ensure_full_index(istate);
566 return index_name_stage_pos(istate, name, namelen, stage, search_mode);
570 return -first-1;
573 int index_name_pos(struct index_state *istate, const char *name, int namelen)
575 return index_name_stage_pos(istate, name, namelen, 0, EXPAND_SPARSE);
578 int index_name_pos_sparse(struct index_state *istate, const char *name, int namelen)
580 return index_name_stage_pos(istate, name, namelen, 0, NO_EXPAND_SPARSE);
583 int index_entry_exists(struct index_state *istate, const char *name, int namelen)
585 return index_name_stage_pos(istate, name, namelen, 0, NO_EXPAND_SPARSE) >= 0;
588 int remove_index_entry_at(struct index_state *istate, int pos)
590 struct cache_entry *ce = istate->cache[pos];
592 record_resolve_undo(istate, ce);
593 remove_name_hash(istate, ce);
594 save_or_free_index_entry(istate, ce);
595 istate->cache_changed |= CE_ENTRY_REMOVED;
596 istate->cache_nr--;
597 if (pos >= istate->cache_nr)
598 return 0;
599 MOVE_ARRAY(istate->cache + pos, istate->cache + pos + 1,
600 istate->cache_nr - pos);
601 return 1;
605 * Remove all cache entries marked for removal, that is where
606 * CE_REMOVE is set in ce_flags. This is much more effective than
607 * calling remove_index_entry_at() for each entry to be removed.
609 void remove_marked_cache_entries(struct index_state *istate, int invalidate)
611 struct cache_entry **ce_array = istate->cache;
612 unsigned int i, j;
614 for (i = j = 0; i < istate->cache_nr; i++) {
615 if (ce_array[i]->ce_flags & CE_REMOVE) {
616 if (invalidate) {
617 cache_tree_invalidate_path(istate,
618 ce_array[i]->name);
619 untracked_cache_remove_from_index(istate,
620 ce_array[i]->name);
622 remove_name_hash(istate, ce_array[i]);
623 save_or_free_index_entry(istate, ce_array[i]);
625 else
626 ce_array[j++] = ce_array[i];
628 if (j == istate->cache_nr)
629 return;
630 istate->cache_changed |= CE_ENTRY_REMOVED;
631 istate->cache_nr = j;
634 int remove_file_from_index(struct index_state *istate, const char *path)
636 int pos = index_name_pos(istate, path, strlen(path));
637 if (pos < 0)
638 pos = -pos-1;
639 cache_tree_invalidate_path(istate, path);
640 untracked_cache_remove_from_index(istate, path);
641 while (pos < istate->cache_nr && !strcmp(istate->cache[pos]->name, path))
642 remove_index_entry_at(istate, pos);
643 return 0;
646 static int compare_name(struct cache_entry *ce, const char *path, int namelen)
648 return namelen != ce_namelen(ce) || memcmp(path, ce->name, namelen);
651 static int index_name_pos_also_unmerged(struct index_state *istate,
652 const char *path, int namelen)
654 int pos = index_name_pos(istate, path, namelen);
655 struct cache_entry *ce;
657 if (pos >= 0)
658 return pos;
660 /* maybe unmerged? */
661 pos = -1 - pos;
662 if (pos >= istate->cache_nr ||
663 compare_name((ce = istate->cache[pos]), path, namelen))
664 return -1;
666 /* order of preference: stage 2, 1, 3 */
667 if (ce_stage(ce) == 1 && pos + 1 < istate->cache_nr &&
668 ce_stage((ce = istate->cache[pos + 1])) == 2 &&
669 !compare_name(ce, path, namelen))
670 pos++;
671 return pos;
674 static int different_name(struct cache_entry *ce, struct cache_entry *alias)
676 int len = ce_namelen(ce);
677 return ce_namelen(alias) != len || memcmp(ce->name, alias->name, len);
681 * If we add a filename that aliases in the cache, we will use the
682 * name that we already have - but we don't want to update the same
683 * alias twice, because that implies that there were actually two
684 * different files with aliasing names!
686 * So we use the CE_ADDED flag to verify that the alias was an old
687 * one before we accept it as
689 static struct cache_entry *create_alias_ce(struct index_state *istate,
690 struct cache_entry *ce,
691 struct cache_entry *alias)
693 int len;
694 struct cache_entry *new_entry;
696 if (alias->ce_flags & CE_ADDED)
697 die(_("will not add file alias '%s' ('%s' already exists in index)"),
698 ce->name, alias->name);
700 /* Ok, create the new entry using the name of the existing alias */
701 len = ce_namelen(alias);
702 new_entry = make_empty_cache_entry(istate, len);
703 memcpy(new_entry->name, alias->name, len);
704 copy_cache_entry(new_entry, ce);
705 save_or_free_index_entry(istate, ce);
706 return new_entry;
709 void set_object_name_for_intent_to_add_entry(struct cache_entry *ce)
711 struct object_id oid;
712 if (write_object_file("", 0, OBJ_BLOB, &oid))
713 die(_("cannot create an empty blob in the object database"));
714 oidcpy(&ce->oid, &oid);
717 int add_to_index(struct index_state *istate, const char *path, struct stat *st, int flags)
719 int namelen, was_same;
720 mode_t st_mode = st->st_mode;
721 struct cache_entry *ce, *alias = NULL;
722 unsigned ce_option = CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE|CE_MATCH_RACY_IS_DIRTY;
723 int verbose = flags & (ADD_CACHE_VERBOSE | ADD_CACHE_PRETEND);
724 int pretend = flags & ADD_CACHE_PRETEND;
725 int intent_only = flags & ADD_CACHE_INTENT;
726 int add_option = (ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE|
727 (intent_only ? ADD_CACHE_NEW_ONLY : 0));
728 unsigned hash_flags = pretend ? 0 : HASH_WRITE_OBJECT;
729 struct object_id oid;
731 if (flags & ADD_CACHE_RENORMALIZE)
732 hash_flags |= HASH_RENORMALIZE;
734 if (!S_ISREG(st_mode) && !S_ISLNK(st_mode) && !S_ISDIR(st_mode))
735 return error(_("%s: can only add regular files, symbolic links or git-directories"), path);
737 namelen = strlen(path);
738 if (S_ISDIR(st_mode)) {
739 if (resolve_gitlink_ref(path, "HEAD", &oid) < 0)
740 return error(_("'%s' does not have a commit checked out"), path);
741 while (namelen && path[namelen-1] == '/')
742 namelen--;
744 ce = make_empty_cache_entry(istate, namelen);
745 memcpy(ce->name, path, namelen);
746 ce->ce_namelen = namelen;
747 if (!intent_only)
748 fill_stat_cache_info(istate, ce, st);
749 else
750 ce->ce_flags |= CE_INTENT_TO_ADD;
753 if (trust_executable_bit && has_symlinks) {
754 ce->ce_mode = create_ce_mode(st_mode);
755 } else {
756 /* If there is an existing entry, pick the mode bits and type
757 * from it, otherwise assume unexecutable regular file.
759 struct cache_entry *ent;
760 int pos = index_name_pos_also_unmerged(istate, path, namelen);
762 ent = (0 <= pos) ? istate->cache[pos] : NULL;
763 ce->ce_mode = ce_mode_from_stat(ent, st_mode);
766 /* When core.ignorecase=true, determine if a directory of the same name but differing
767 * case already exists within the Git repository. If it does, ensure the directory
768 * case of the file being added to the repository matches (is folded into) the existing
769 * entry's directory case.
771 if (ignore_case) {
772 adjust_dirname_case(istate, ce->name);
774 if (!(flags & ADD_CACHE_RENORMALIZE)) {
775 alias = index_file_exists(istate, ce->name,
776 ce_namelen(ce), ignore_case);
777 if (alias &&
778 !ce_stage(alias) &&
779 !ie_match_stat(istate, alias, st, ce_option)) {
780 /* Nothing changed, really */
781 if (!S_ISGITLINK(alias->ce_mode))
782 ce_mark_uptodate(alias);
783 alias->ce_flags |= CE_ADDED;
785 discard_cache_entry(ce);
786 return 0;
789 if (!intent_only) {
790 if (index_path(istate, &ce->oid, path, st, hash_flags)) {
791 discard_cache_entry(ce);
792 return error(_("unable to index file '%s'"), path);
794 } else
795 set_object_name_for_intent_to_add_entry(ce);
797 if (ignore_case && alias && different_name(ce, alias))
798 ce = create_alias_ce(istate, ce, alias);
799 ce->ce_flags |= CE_ADDED;
801 /* It was suspected to be racily clean, but it turns out to be Ok */
802 was_same = (alias &&
803 !ce_stage(alias) &&
804 oideq(&alias->oid, &ce->oid) &&
805 ce->ce_mode == alias->ce_mode);
807 if (pretend)
808 discard_cache_entry(ce);
809 else if (add_index_entry(istate, ce, add_option)) {
810 discard_cache_entry(ce);
811 return error(_("unable to add '%s' to index"), path);
813 if (verbose && !was_same)
814 printf("add '%s'\n", path);
815 return 0;
818 int add_file_to_index(struct index_state *istate, const char *path, int flags)
820 struct stat st;
821 if (lstat(path, &st))
822 die_errno(_("unable to stat '%s'"), path);
823 return add_to_index(istate, path, &st, flags);
826 struct cache_entry *make_empty_cache_entry(struct index_state *istate, size_t len)
828 return mem_pool__ce_calloc(find_mem_pool(istate), len);
831 struct cache_entry *make_empty_transient_cache_entry(size_t len,
832 struct mem_pool *ce_mem_pool)
834 if (ce_mem_pool)
835 return mem_pool__ce_calloc(ce_mem_pool, len);
836 return xcalloc(1, cache_entry_size(len));
839 enum verify_path_result {
840 PATH_OK,
841 PATH_INVALID,
842 PATH_DIR_WITH_SEP,
845 static enum verify_path_result verify_path_internal(const char *, unsigned);
847 int verify_path(const char *path, unsigned mode)
849 return verify_path_internal(path, mode) == PATH_OK;
852 struct cache_entry *make_cache_entry(struct index_state *istate,
853 unsigned int mode,
854 const struct object_id *oid,
855 const char *path,
856 int stage,
857 unsigned int refresh_options)
859 struct cache_entry *ce, *ret;
860 int len;
862 if (verify_path_internal(path, mode) == PATH_INVALID) {
863 error(_("invalid path '%s'"), path);
864 return NULL;
867 len = strlen(path);
868 ce = make_empty_cache_entry(istate, len);
870 oidcpy(&ce->oid, oid);
871 memcpy(ce->name, path, len);
872 ce->ce_flags = create_ce_flags(stage);
873 ce->ce_namelen = len;
874 ce->ce_mode = create_ce_mode(mode);
876 ret = refresh_cache_entry(istate, ce, refresh_options);
877 if (ret != ce)
878 discard_cache_entry(ce);
879 return ret;
882 struct cache_entry *make_transient_cache_entry(unsigned int mode,
883 const struct object_id *oid,
884 const char *path,
885 int stage,
886 struct mem_pool *ce_mem_pool)
888 struct cache_entry *ce;
889 int len;
891 if (!verify_path(path, mode)) {
892 error(_("invalid path '%s'"), path);
893 return NULL;
896 len = strlen(path);
897 ce = make_empty_transient_cache_entry(len, ce_mem_pool);
899 oidcpy(&ce->oid, oid);
900 memcpy(ce->name, path, len);
901 ce->ce_flags = create_ce_flags(stage);
902 ce->ce_namelen = len;
903 ce->ce_mode = create_ce_mode(mode);
905 return ce;
909 * Chmod an index entry with either +x or -x.
911 * Returns -1 if the chmod for the particular cache entry failed (if it's
912 * not a regular file), -2 if an invalid flip argument is passed in, 0
913 * otherwise.
915 int chmod_index_entry(struct index_state *istate, struct cache_entry *ce,
916 char flip)
918 if (!S_ISREG(ce->ce_mode))
919 return -1;
920 switch (flip) {
921 case '+':
922 ce->ce_mode |= 0111;
923 break;
924 case '-':
925 ce->ce_mode &= ~0111;
926 break;
927 default:
928 return -2;
930 cache_tree_invalidate_path(istate, ce->name);
931 ce->ce_flags |= CE_UPDATE_IN_BASE;
932 mark_fsmonitor_invalid(istate, ce);
933 istate->cache_changed |= CE_ENTRY_CHANGED;
935 return 0;
938 int ce_same_name(const struct cache_entry *a, const struct cache_entry *b)
940 int len = ce_namelen(a);
941 return ce_namelen(b) == len && !memcmp(a->name, b->name, len);
945 * We fundamentally don't like some paths: we don't want
946 * dot or dot-dot anywhere, and for obvious reasons don't
947 * want to recurse into ".git" either.
949 * Also, we don't want double slashes or slashes at the
950 * end that can make pathnames ambiguous.
952 static int verify_dotfile(const char *rest, unsigned mode)
955 * The first character was '.', but that
956 * has already been discarded, we now test
957 * the rest.
960 /* "." is not allowed */
961 if (*rest == '\0' || is_dir_sep(*rest))
962 return 0;
964 switch (*rest) {
966 * ".git" followed by NUL or slash is bad. Note that we match
967 * case-insensitively here, even if ignore_case is not set.
968 * This outlaws ".GIT" everywhere out of an abundance of caution,
969 * since there's really no good reason to allow it.
971 * Once we've seen ".git", we can also find ".gitmodules", etc (also
972 * case-insensitively).
974 case 'g':
975 case 'G':
976 if (rest[1] != 'i' && rest[1] != 'I')
977 break;
978 if (rest[2] != 't' && rest[2] != 'T')
979 break;
980 if (rest[3] == '\0' || is_dir_sep(rest[3]))
981 return 0;
982 if (S_ISLNK(mode)) {
983 rest += 3;
984 if (skip_iprefix(rest, "modules", &rest) &&
985 (*rest == '\0' || is_dir_sep(*rest)))
986 return 0;
988 break;
989 case '.':
990 if (rest[1] == '\0' || is_dir_sep(rest[1]))
991 return 0;
993 return 1;
996 static enum verify_path_result verify_path_internal(const char *path,
997 unsigned mode)
999 char c = 0;
1001 if (has_dos_drive_prefix(path))
1002 return PATH_INVALID;
1004 if (!is_valid_path(path))
1005 return PATH_INVALID;
1007 goto inside;
1008 for (;;) {
1009 if (!c)
1010 return PATH_OK;
1011 if (is_dir_sep(c)) {
1012 inside:
1013 if (protect_hfs) {
1015 if (is_hfs_dotgit(path))
1016 return PATH_INVALID;
1017 if (S_ISLNK(mode)) {
1018 if (is_hfs_dotgitmodules(path))
1019 return PATH_INVALID;
1022 if (protect_ntfs) {
1023 #if defined GIT_WINDOWS_NATIVE || defined __CYGWIN__
1024 if (c == '\\')
1025 return PATH_INVALID;
1026 #endif
1027 if (is_ntfs_dotgit(path))
1028 return PATH_INVALID;
1029 if (S_ISLNK(mode)) {
1030 if (is_ntfs_dotgitmodules(path))
1031 return PATH_INVALID;
1035 c = *path++;
1036 if ((c == '.' && !verify_dotfile(path, mode)) ||
1037 is_dir_sep(c))
1038 return PATH_INVALID;
1040 * allow terminating directory separators for
1041 * sparse directory entries.
1043 if (c == '\0')
1044 return S_ISDIR(mode) ? PATH_DIR_WITH_SEP :
1045 PATH_INVALID;
1046 } else if (c == '\\' && protect_ntfs) {
1047 if (is_ntfs_dotgit(path))
1048 return PATH_INVALID;
1049 if (S_ISLNK(mode)) {
1050 if (is_ntfs_dotgitmodules(path))
1051 return PATH_INVALID;
1055 c = *path++;
1060 * Do we have another file that has the beginning components being a
1061 * proper superset of the name we're trying to add?
1063 static int has_file_name(struct index_state *istate,
1064 const struct cache_entry *ce, int pos, int ok_to_replace)
1066 int retval = 0;
1067 int len = ce_namelen(ce);
1068 int stage = ce_stage(ce);
1069 const char *name = ce->name;
1071 while (pos < istate->cache_nr) {
1072 struct cache_entry *p = istate->cache[pos++];
1074 if (len >= ce_namelen(p))
1075 break;
1076 if (memcmp(name, p->name, len))
1077 break;
1078 if (ce_stage(p) != stage)
1079 continue;
1080 if (p->name[len] != '/')
1081 continue;
1082 if (p->ce_flags & CE_REMOVE)
1083 continue;
1084 retval = -1;
1085 if (!ok_to_replace)
1086 break;
1087 remove_index_entry_at(istate, --pos);
1089 return retval;
1094 * Like strcmp(), but also return the offset of the first change.
1095 * If strings are equal, return the length.
1097 int strcmp_offset(const char *s1, const char *s2, size_t *first_change)
1099 size_t k;
1101 if (!first_change)
1102 return strcmp(s1, s2);
1104 for (k = 0; s1[k] == s2[k]; k++)
1105 if (s1[k] == '\0')
1106 break;
1108 *first_change = k;
1109 return (unsigned char)s1[k] - (unsigned char)s2[k];
1113 * Do we have another file with a pathname that is a proper
1114 * subset of the name we're trying to add?
1116 * That is, is there another file in the index with a path
1117 * that matches a sub-directory in the given entry?
1119 static int has_dir_name(struct index_state *istate,
1120 const struct cache_entry *ce, int pos, int ok_to_replace)
1122 int retval = 0;
1123 int stage = ce_stage(ce);
1124 const char *name = ce->name;
1125 const char *slash = name + ce_namelen(ce);
1126 size_t len_eq_last;
1127 int cmp_last = 0;
1130 * We are frequently called during an iteration on a sorted
1131 * list of pathnames and while building a new index. Therefore,
1132 * there is a high probability that this entry will eventually
1133 * be appended to the index, rather than inserted in the middle.
1134 * If we can confirm that, we can avoid binary searches on the
1135 * components of the pathname.
1137 * Compare the entry's full path with the last path in the index.
1139 if (istate->cache_nr > 0) {
1140 cmp_last = strcmp_offset(name,
1141 istate->cache[istate->cache_nr - 1]->name,
1142 &len_eq_last);
1143 if (cmp_last > 0) {
1144 if (len_eq_last == 0) {
1146 * The entry sorts AFTER the last one in the
1147 * index and their paths have no common prefix,
1148 * so there cannot be a F/D conflict.
1150 return retval;
1151 } else {
1153 * The entry sorts AFTER the last one in the
1154 * index, but has a common prefix. Fall through
1155 * to the loop below to disect the entry's path
1156 * and see where the difference is.
1159 } else if (cmp_last == 0) {
1161 * The entry exactly matches the last one in the
1162 * index, but because of multiple stage and CE_REMOVE
1163 * items, we fall through and let the regular search
1164 * code handle it.
1169 for (;;) {
1170 size_t len;
1172 for (;;) {
1173 if (*--slash == '/')
1174 break;
1175 if (slash <= ce->name)
1176 return retval;
1178 len = slash - name;
1180 if (cmp_last > 0) {
1182 * (len + 1) is a directory boundary (including
1183 * the trailing slash). And since the loop is
1184 * decrementing "slash", the first iteration is
1185 * the longest directory prefix; subsequent
1186 * iterations consider parent directories.
1189 if (len + 1 <= len_eq_last) {
1191 * The directory prefix (including the trailing
1192 * slash) also appears as a prefix in the last
1193 * entry, so the remainder cannot collide (because
1194 * strcmp said the whole path was greater).
1196 * EQ: last: xxx/A
1197 * this: xxx/B
1199 * LT: last: xxx/file_A
1200 * this: xxx/file_B
1202 return retval;
1205 if (len > len_eq_last) {
1207 * This part of the directory prefix (excluding
1208 * the trailing slash) is longer than the known
1209 * equal portions, so this sub-directory cannot
1210 * collide with a file.
1212 * GT: last: xxxA
1213 * this: xxxB/file
1215 return retval;
1219 * This is a possible collision. Fall through and
1220 * let the regular search code handle it.
1222 * last: xxx
1223 * this: xxx/file
1227 pos = index_name_stage_pos(istate, name, len, stage, EXPAND_SPARSE);
1228 if (pos >= 0) {
1230 * Found one, but not so fast. This could
1231 * be a marker that says "I was here, but
1232 * I am being removed". Such an entry is
1233 * not a part of the resulting tree, and
1234 * it is Ok to have a directory at the same
1235 * path.
1237 if (!(istate->cache[pos]->ce_flags & CE_REMOVE)) {
1238 retval = -1;
1239 if (!ok_to_replace)
1240 break;
1241 remove_index_entry_at(istate, pos);
1242 continue;
1245 else
1246 pos = -pos-1;
1249 * Trivial optimization: if we find an entry that
1250 * already matches the sub-directory, then we know
1251 * we're ok, and we can exit.
1253 while (pos < istate->cache_nr) {
1254 struct cache_entry *p = istate->cache[pos];
1255 if ((ce_namelen(p) <= len) ||
1256 (p->name[len] != '/') ||
1257 memcmp(p->name, name, len))
1258 break; /* not our subdirectory */
1259 if (ce_stage(p) == stage && !(p->ce_flags & CE_REMOVE))
1261 * p is at the same stage as our entry, and
1262 * is a subdirectory of what we are looking
1263 * at, so we cannot have conflicts at our
1264 * level or anything shorter.
1266 return retval;
1267 pos++;
1270 return retval;
1273 /* We may be in a situation where we already have path/file and path
1274 * is being added, or we already have path and path/file is being
1275 * added. Either one would result in a nonsense tree that has path
1276 * twice when git-write-tree tries to write it out. Prevent it.
1278 * If ok-to-replace is specified, we remove the conflicting entries
1279 * from the cache so the caller should recompute the insert position.
1280 * When this happens, we return non-zero.
1282 static int check_file_directory_conflict(struct index_state *istate,
1283 const struct cache_entry *ce,
1284 int pos, int ok_to_replace)
1286 int retval;
1289 * When ce is an "I am going away" entry, we allow it to be added
1291 if (ce->ce_flags & CE_REMOVE)
1292 return 0;
1295 * We check if the path is a sub-path of a subsequent pathname
1296 * first, since removing those will not change the position
1297 * in the array.
1299 retval = has_file_name(istate, ce, pos, ok_to_replace);
1302 * Then check if the path might have a clashing sub-directory
1303 * before it.
1305 return retval + has_dir_name(istate, ce, pos, ok_to_replace);
1308 static int add_index_entry_with_check(struct index_state *istate, struct cache_entry *ce, int option)
1310 int pos;
1311 int ok_to_add = option & ADD_CACHE_OK_TO_ADD;
1312 int ok_to_replace = option & ADD_CACHE_OK_TO_REPLACE;
1313 int skip_df_check = option & ADD_CACHE_SKIP_DFCHECK;
1314 int new_only = option & ADD_CACHE_NEW_ONLY;
1317 * If this entry's path sorts after the last entry in the index,
1318 * we can avoid searching for it.
1320 if (istate->cache_nr > 0 &&
1321 strcmp(ce->name, istate->cache[istate->cache_nr - 1]->name) > 0)
1322 pos = index_pos_to_insert_pos(istate->cache_nr);
1323 else
1324 pos = index_name_stage_pos(istate, ce->name, ce_namelen(ce), ce_stage(ce), EXPAND_SPARSE);
1327 * Cache tree path should be invalidated only after index_name_stage_pos,
1328 * in case it expands a sparse index.
1330 if (!(option & ADD_CACHE_KEEP_CACHE_TREE))
1331 cache_tree_invalidate_path(istate, ce->name);
1333 /* existing match? Just replace it. */
1334 if (pos >= 0) {
1335 if (!new_only)
1336 replace_index_entry(istate, pos, ce);
1337 return 0;
1339 pos = -pos-1;
1341 if (!(option & ADD_CACHE_KEEP_CACHE_TREE))
1342 untracked_cache_add_to_index(istate, ce->name);
1345 * Inserting a merged entry ("stage 0") into the index
1346 * will always replace all non-merged entries..
1348 if (pos < istate->cache_nr && ce_stage(ce) == 0) {
1349 while (ce_same_name(istate->cache[pos], ce)) {
1350 ok_to_add = 1;
1351 if (!remove_index_entry_at(istate, pos))
1352 break;
1356 if (!ok_to_add)
1357 return -1;
1358 if (verify_path_internal(ce->name, ce->ce_mode) == PATH_INVALID)
1359 return error(_("invalid path '%s'"), ce->name);
1361 if (!skip_df_check &&
1362 check_file_directory_conflict(istate, ce, pos, ok_to_replace)) {
1363 if (!ok_to_replace)
1364 return error(_("'%s' appears as both a file and as a directory"),
1365 ce->name);
1366 pos = index_name_stage_pos(istate, ce->name, ce_namelen(ce), ce_stage(ce), EXPAND_SPARSE);
1367 pos = -pos-1;
1369 return pos + 1;
1372 int add_index_entry(struct index_state *istate, struct cache_entry *ce, int option)
1374 int pos;
1376 if (option & ADD_CACHE_JUST_APPEND)
1377 pos = istate->cache_nr;
1378 else {
1379 int ret;
1380 ret = add_index_entry_with_check(istate, ce, option);
1381 if (ret <= 0)
1382 return ret;
1383 pos = ret - 1;
1386 /* Make sure the array is big enough .. */
1387 ALLOC_GROW(istate->cache, istate->cache_nr + 1, istate->cache_alloc);
1389 /* Add it in.. */
1390 istate->cache_nr++;
1391 if (istate->cache_nr > pos + 1)
1392 MOVE_ARRAY(istate->cache + pos + 1, istate->cache + pos,
1393 istate->cache_nr - pos - 1);
1394 set_index_entry(istate, pos, ce);
1395 istate->cache_changed |= CE_ENTRY_ADDED;
1396 return 0;
1400 * "refresh" does not calculate a new sha1 file or bring the
1401 * cache up-to-date for mode/content changes. But what it
1402 * _does_ do is to "re-match" the stat information of a file
1403 * with the cache, so that you can refresh the cache for a
1404 * file that hasn't been changed but where the stat entry is
1405 * out of date.
1407 * For example, you'd want to do this after doing a "git-read-tree",
1408 * to link up the stat cache details with the proper files.
1410 static struct cache_entry *refresh_cache_ent(struct index_state *istate,
1411 struct cache_entry *ce,
1412 unsigned int options, int *err,
1413 int *changed_ret,
1414 int *t2_did_lstat,
1415 int *t2_did_scan)
1417 struct stat st;
1418 struct cache_entry *updated;
1419 int changed;
1420 int refresh = options & CE_MATCH_REFRESH;
1421 int ignore_valid = options & CE_MATCH_IGNORE_VALID;
1422 int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE;
1423 int ignore_missing = options & CE_MATCH_IGNORE_MISSING;
1424 int ignore_fsmonitor = options & CE_MATCH_IGNORE_FSMONITOR;
1426 if (!refresh || ce_uptodate(ce))
1427 return ce;
1429 if (!ignore_fsmonitor)
1430 refresh_fsmonitor(istate);
1432 * CE_VALID or CE_SKIP_WORKTREE means the user promised us
1433 * that the change to the work tree does not matter and told
1434 * us not to worry.
1436 if (!ignore_skip_worktree && ce_skip_worktree(ce)) {
1437 ce_mark_uptodate(ce);
1438 return ce;
1440 if (!ignore_valid && (ce->ce_flags & CE_VALID)) {
1441 ce_mark_uptodate(ce);
1442 return ce;
1444 if (!ignore_fsmonitor && (ce->ce_flags & CE_FSMONITOR_VALID)) {
1445 ce_mark_uptodate(ce);
1446 return ce;
1449 if (has_symlink_leading_path(ce->name, ce_namelen(ce))) {
1450 if (ignore_missing)
1451 return ce;
1452 if (err)
1453 *err = ENOENT;
1454 return NULL;
1457 if (t2_did_lstat)
1458 *t2_did_lstat = 1;
1459 if (lstat(ce->name, &st) < 0) {
1460 if (ignore_missing && errno == ENOENT)
1461 return ce;
1462 if (err)
1463 *err = errno;
1464 return NULL;
1467 changed = ie_match_stat(istate, ce, &st, options);
1468 if (changed_ret)
1469 *changed_ret = changed;
1470 if (!changed) {
1472 * The path is unchanged. If we were told to ignore
1473 * valid bit, then we did the actual stat check and
1474 * found that the entry is unmodified. If the entry
1475 * is not marked VALID, this is the place to mark it
1476 * valid again, under "assume unchanged" mode.
1478 if (ignore_valid && assume_unchanged &&
1479 !(ce->ce_flags & CE_VALID))
1480 ; /* mark this one VALID again */
1481 else {
1483 * We do not mark the index itself "modified"
1484 * because CE_UPTODATE flag is in-core only;
1485 * we are not going to write this change out.
1487 if (!S_ISGITLINK(ce->ce_mode)) {
1488 ce_mark_uptodate(ce);
1489 mark_fsmonitor_valid(istate, ce);
1491 return ce;
1495 if (t2_did_scan)
1496 *t2_did_scan = 1;
1497 if (ie_modified(istate, ce, &st, options)) {
1498 if (err)
1499 *err = EINVAL;
1500 return NULL;
1503 updated = make_empty_cache_entry(istate, ce_namelen(ce));
1504 copy_cache_entry(updated, ce);
1505 memcpy(updated->name, ce->name, ce->ce_namelen + 1);
1506 fill_stat_cache_info(istate, updated, &st);
1508 * If ignore_valid is not set, we should leave CE_VALID bit
1509 * alone. Otherwise, paths marked with --no-assume-unchanged
1510 * (i.e. things to be edited) will reacquire CE_VALID bit
1511 * automatically, which is not really what we want.
1513 if (!ignore_valid && assume_unchanged &&
1514 !(ce->ce_flags & CE_VALID))
1515 updated->ce_flags &= ~CE_VALID;
1517 /* istate->cache_changed is updated in the caller */
1518 return updated;
1521 static void show_file(const char * fmt, const char * name, int in_porcelain,
1522 int * first, const char *header_msg)
1524 if (in_porcelain && *first && header_msg) {
1525 printf("%s\n", header_msg);
1526 *first = 0;
1528 printf(fmt, name);
1531 int repo_refresh_and_write_index(struct repository *repo,
1532 unsigned int refresh_flags,
1533 unsigned int write_flags,
1534 int gentle,
1535 const struct pathspec *pathspec,
1536 char *seen, const char *header_msg)
1538 struct lock_file lock_file = LOCK_INIT;
1539 int fd, ret = 0;
1541 fd = repo_hold_locked_index(repo, &lock_file, 0);
1542 if (!gentle && fd < 0)
1543 return -1;
1544 if (refresh_index(repo->index, refresh_flags, pathspec, seen, header_msg))
1545 ret = 1;
1546 if (0 <= fd && write_locked_index(repo->index, &lock_file, COMMIT_LOCK | write_flags))
1547 ret = -1;
1548 return ret;
1552 int refresh_index(struct index_state *istate, unsigned int flags,
1553 const struct pathspec *pathspec,
1554 char *seen, const char *header_msg)
1556 int i;
1557 int has_errors = 0;
1558 int really = (flags & REFRESH_REALLY) != 0;
1559 int allow_unmerged = (flags & REFRESH_UNMERGED) != 0;
1560 int quiet = (flags & REFRESH_QUIET) != 0;
1561 int not_new = (flags & REFRESH_IGNORE_MISSING) != 0;
1562 int ignore_submodules = (flags & REFRESH_IGNORE_SUBMODULES) != 0;
1563 int ignore_skip_worktree = (flags & REFRESH_IGNORE_SKIP_WORKTREE) != 0;
1564 int first = 1;
1565 int in_porcelain = (flags & REFRESH_IN_PORCELAIN);
1566 unsigned int options = (CE_MATCH_REFRESH |
1567 (really ? CE_MATCH_IGNORE_VALID : 0) |
1568 (not_new ? CE_MATCH_IGNORE_MISSING : 0));
1569 const char *modified_fmt;
1570 const char *deleted_fmt;
1571 const char *typechange_fmt;
1572 const char *added_fmt;
1573 const char *unmerged_fmt;
1574 struct progress *progress = NULL;
1575 int t2_sum_lstat = 0;
1576 int t2_sum_scan = 0;
1578 if (flags & REFRESH_PROGRESS && isatty(2))
1579 progress = start_delayed_progress(_("Refresh index"),
1580 istate->cache_nr);
1582 trace_performance_enter();
1583 modified_fmt = in_porcelain ? "M\t%s\n" : "%s: needs update\n";
1584 deleted_fmt = in_porcelain ? "D\t%s\n" : "%s: needs update\n";
1585 typechange_fmt = in_porcelain ? "T\t%s\n" : "%s: needs update\n";
1586 added_fmt = in_porcelain ? "A\t%s\n" : "%s: needs update\n";
1587 unmerged_fmt = in_porcelain ? "U\t%s\n" : "%s: needs merge\n";
1589 * Use the multi-threaded preload_index() to refresh most of the
1590 * cache entries quickly then in the single threaded loop below,
1591 * we only have to do the special cases that are left.
1593 preload_index(istate, pathspec, 0);
1594 trace2_region_enter("index", "refresh", NULL);
1596 for (i = 0; i < istate->cache_nr; i++) {
1597 struct cache_entry *ce, *new_entry;
1598 int cache_errno = 0;
1599 int changed = 0;
1600 int filtered = 0;
1601 int t2_did_lstat = 0;
1602 int t2_did_scan = 0;
1604 ce = istate->cache[i];
1605 if (ignore_submodules && S_ISGITLINK(ce->ce_mode))
1606 continue;
1607 if (ignore_skip_worktree && ce_skip_worktree(ce))
1608 continue;
1611 * If this entry is a sparse directory, then there isn't
1612 * any stat() information to update. Ignore the entry.
1614 if (S_ISSPARSEDIR(ce->ce_mode))
1615 continue;
1617 if (pathspec && !ce_path_match(istate, ce, pathspec, seen))
1618 filtered = 1;
1620 if (ce_stage(ce)) {
1621 while ((i < istate->cache_nr) &&
1622 ! strcmp(istate->cache[i]->name, ce->name))
1623 i++;
1624 i--;
1625 if (allow_unmerged)
1626 continue;
1627 if (!filtered)
1628 show_file(unmerged_fmt, ce->name, in_porcelain,
1629 &first, header_msg);
1630 has_errors = 1;
1631 continue;
1634 if (filtered)
1635 continue;
1637 new_entry = refresh_cache_ent(istate, ce, options,
1638 &cache_errno, &changed,
1639 &t2_did_lstat, &t2_did_scan);
1640 t2_sum_lstat += t2_did_lstat;
1641 t2_sum_scan += t2_did_scan;
1642 if (new_entry == ce)
1643 continue;
1644 display_progress(progress, i);
1645 if (!new_entry) {
1646 const char *fmt;
1648 if (really && cache_errno == EINVAL) {
1649 /* If we are doing --really-refresh that
1650 * means the index is not valid anymore.
1652 ce->ce_flags &= ~CE_VALID;
1653 ce->ce_flags |= CE_UPDATE_IN_BASE;
1654 mark_fsmonitor_invalid(istate, ce);
1655 istate->cache_changed |= CE_ENTRY_CHANGED;
1657 if (quiet)
1658 continue;
1660 if (cache_errno == ENOENT)
1661 fmt = deleted_fmt;
1662 else if (ce_intent_to_add(ce))
1663 fmt = added_fmt; /* must be before other checks */
1664 else if (changed & TYPE_CHANGED)
1665 fmt = typechange_fmt;
1666 else
1667 fmt = modified_fmt;
1668 show_file(fmt,
1669 ce->name, in_porcelain, &first, header_msg);
1670 has_errors = 1;
1671 continue;
1674 replace_index_entry(istate, i, new_entry);
1676 trace2_data_intmax("index", NULL, "refresh/sum_lstat", t2_sum_lstat);
1677 trace2_data_intmax("index", NULL, "refresh/sum_scan", t2_sum_scan);
1678 trace2_region_leave("index", "refresh", NULL);
1679 display_progress(progress, istate->cache_nr);
1680 stop_progress(&progress);
1681 trace_performance_leave("refresh index");
1682 return has_errors;
1685 struct cache_entry *refresh_cache_entry(struct index_state *istate,
1686 struct cache_entry *ce,
1687 unsigned int options)
1689 return refresh_cache_ent(istate, ce, options, NULL, NULL, NULL, NULL);
1693 /*****************************************************************
1694 * Index File I/O
1695 *****************************************************************/
1697 #define INDEX_FORMAT_DEFAULT 3
1699 static unsigned int get_index_format_default(struct repository *r)
1701 char *envversion = getenv("GIT_INDEX_VERSION");
1702 char *endp;
1703 unsigned int version = INDEX_FORMAT_DEFAULT;
1705 if (!envversion) {
1706 prepare_repo_settings(r);
1708 if (r->settings.index_version >= 0)
1709 version = r->settings.index_version;
1710 if (version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {
1711 warning(_("index.version set, but the value is invalid.\n"
1712 "Using version %i"), INDEX_FORMAT_DEFAULT);
1713 return INDEX_FORMAT_DEFAULT;
1715 return version;
1718 version = strtoul(envversion, &endp, 10);
1719 if (*endp ||
1720 version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {
1721 warning(_("GIT_INDEX_VERSION set, but the value is invalid.\n"
1722 "Using version %i"), INDEX_FORMAT_DEFAULT);
1723 version = INDEX_FORMAT_DEFAULT;
1725 return version;
1729 * dev/ino/uid/gid/size are also just tracked to the low 32 bits
1730 * Again - this is just a (very strong in practice) heuristic that
1731 * the inode hasn't changed.
1733 * We save the fields in big-endian order to allow using the
1734 * index file over NFS transparently.
1736 struct ondisk_cache_entry {
1737 struct cache_time ctime;
1738 struct cache_time mtime;
1739 uint32_t dev;
1740 uint32_t ino;
1741 uint32_t mode;
1742 uint32_t uid;
1743 uint32_t gid;
1744 uint32_t size;
1746 * unsigned char hash[hashsz];
1747 * uint16_t flags;
1748 * if (flags & CE_EXTENDED)
1749 * uint16_t flags2;
1751 unsigned char data[GIT_MAX_RAWSZ + 2 * sizeof(uint16_t)];
1752 char name[FLEX_ARRAY];
1755 /* These are only used for v3 or lower */
1756 #define align_padding_size(size, len) ((size + (len) + 8) & ~7) - (size + len)
1757 #define align_flex_name(STRUCT,len) ((offsetof(struct STRUCT,data) + (len) + 8) & ~7)
1758 #define ondisk_cache_entry_size(len) align_flex_name(ondisk_cache_entry,len)
1759 #define ondisk_data_size(flags, len) (the_hash_algo->rawsz + \
1760 ((flags & CE_EXTENDED) ? 2 : 1) * sizeof(uint16_t) + len)
1761 #define ondisk_data_size_max(len) (ondisk_data_size(CE_EXTENDED, len))
1762 #define ondisk_ce_size(ce) (ondisk_cache_entry_size(ondisk_data_size((ce)->ce_flags, ce_namelen(ce))))
1764 /* Allow fsck to force verification of the index checksum. */
1765 int verify_index_checksum;
1767 /* Allow fsck to force verification of the cache entry order. */
1768 int verify_ce_order;
1770 static int verify_hdr(const struct cache_header *hdr, unsigned long size)
1772 git_hash_ctx c;
1773 unsigned char hash[GIT_MAX_RAWSZ];
1774 int hdr_version;
1775 unsigned char *start, *end;
1776 struct object_id oid;
1778 if (hdr->hdr_signature != htonl(CACHE_SIGNATURE))
1779 return error(_("bad signature 0x%08x"), hdr->hdr_signature);
1780 hdr_version = ntohl(hdr->hdr_version);
1781 if (hdr_version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < hdr_version)
1782 return error(_("bad index version %d"), hdr_version);
1784 if (!verify_index_checksum)
1785 return 0;
1787 end = (unsigned char *)hdr + size;
1788 start = end - the_hash_algo->rawsz;
1789 oidread(&oid, start);
1790 if (oideq(&oid, null_oid()))
1791 return 0;
1793 the_hash_algo->init_fn(&c);
1794 the_hash_algo->update_fn(&c, hdr, size - the_hash_algo->rawsz);
1795 the_hash_algo->final_fn(hash, &c);
1796 if (!hasheq(hash, start))
1797 return error(_("bad index file sha1 signature"));
1798 return 0;
1801 static int read_index_extension(struct index_state *istate,
1802 const char *ext, const char *data, unsigned long sz)
1804 switch (CACHE_EXT(ext)) {
1805 case CACHE_EXT_TREE:
1806 istate->cache_tree = cache_tree_read(data, sz);
1807 break;
1808 case CACHE_EXT_RESOLVE_UNDO:
1809 istate->resolve_undo = resolve_undo_read(data, sz);
1810 break;
1811 case CACHE_EXT_LINK:
1812 if (read_link_extension(istate, data, sz))
1813 return -1;
1814 break;
1815 case CACHE_EXT_UNTRACKED:
1816 istate->untracked = read_untracked_extension(data, sz);
1817 break;
1818 case CACHE_EXT_FSMONITOR:
1819 read_fsmonitor_extension(istate, data, sz);
1820 break;
1821 case CACHE_EXT_ENDOFINDEXENTRIES:
1822 case CACHE_EXT_INDEXENTRYOFFSETTABLE:
1823 /* already handled in do_read_index() */
1824 break;
1825 case CACHE_EXT_SPARSE_DIRECTORIES:
1826 /* no content, only an indicator */
1827 istate->sparse_index = INDEX_COLLAPSED;
1828 break;
1829 default:
1830 if (*ext < 'A' || 'Z' < *ext)
1831 return error(_("index uses %.4s extension, which we do not understand"),
1832 ext);
1833 fprintf_ln(stderr, _("ignoring %.4s extension"), ext);
1834 break;
1836 return 0;
1840 * Parses the contents of the cache entry contained within the 'ondisk' buffer
1841 * into a new incore 'cache_entry'.
1843 * Note that 'char *ondisk' may not be aligned to a 4-byte address interval in
1844 * index v4, so we cannot cast it to 'struct ondisk_cache_entry *' and access
1845 * its members. Instead, we use the byte offsets of members within the struct to
1846 * identify where 'get_be16()', 'get_be32()', and 'oidread()' (which can all
1847 * read from an unaligned memory buffer) should read from the 'ondisk' buffer
1848 * into the corresponding incore 'cache_entry' members.
1850 static struct cache_entry *create_from_disk(struct mem_pool *ce_mem_pool,
1851 unsigned int version,
1852 const char *ondisk,
1853 unsigned long *ent_size,
1854 const struct cache_entry *previous_ce)
1856 struct cache_entry *ce;
1857 size_t len;
1858 const char *name;
1859 const unsigned hashsz = the_hash_algo->rawsz;
1860 const char *flagsp = ondisk + offsetof(struct ondisk_cache_entry, data) + hashsz;
1861 unsigned int flags;
1862 size_t copy_len = 0;
1864 * Adjacent cache entries tend to share the leading paths, so it makes
1865 * sense to only store the differences in later entries. In the v4
1866 * on-disk format of the index, each on-disk cache entry stores the
1867 * number of bytes to be stripped from the end of the previous name,
1868 * and the bytes to append to the result, to come up with its name.
1870 int expand_name_field = version == 4;
1872 /* On-disk flags are just 16 bits */
1873 flags = get_be16(flagsp);
1874 len = flags & CE_NAMEMASK;
1876 if (flags & CE_EXTENDED) {
1877 int extended_flags;
1878 extended_flags = get_be16(flagsp + sizeof(uint16_t)) << 16;
1879 /* We do not yet understand any bit out of CE_EXTENDED_FLAGS */
1880 if (extended_flags & ~CE_EXTENDED_FLAGS)
1881 die(_("unknown index entry format 0x%08x"), extended_flags);
1882 flags |= extended_flags;
1883 name = (const char *)(flagsp + 2 * sizeof(uint16_t));
1885 else
1886 name = (const char *)(flagsp + sizeof(uint16_t));
1888 if (expand_name_field) {
1889 const unsigned char *cp = (const unsigned char *)name;
1890 size_t strip_len, previous_len;
1892 /* If we're at the beginning of a block, ignore the previous name */
1893 strip_len = decode_varint(&cp);
1894 if (previous_ce) {
1895 previous_len = previous_ce->ce_namelen;
1896 if (previous_len < strip_len)
1897 die(_("malformed name field in the index, near path '%s'"),
1898 previous_ce->name);
1899 copy_len = previous_len - strip_len;
1901 name = (const char *)cp;
1904 if (len == CE_NAMEMASK) {
1905 len = strlen(name);
1906 if (expand_name_field)
1907 len += copy_len;
1910 ce = mem_pool__ce_alloc(ce_mem_pool, len);
1913 * NEEDSWORK: using 'offsetof()' is cumbersome and should be replaced
1914 * with something more akin to 'load_bitmap_entries_v1()'s use of
1915 * 'read_be16'/'read_be32'. For consistency with the corresponding
1916 * ondisk entry write function ('copy_cache_entry_to_ondisk()'), this
1917 * should be done at the same time as removing references to
1918 * 'ondisk_cache_entry' there.
1920 ce->ce_stat_data.sd_ctime.sec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, ctime)
1921 + offsetof(struct cache_time, sec));
1922 ce->ce_stat_data.sd_mtime.sec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, mtime)
1923 + offsetof(struct cache_time, sec));
1924 ce->ce_stat_data.sd_ctime.nsec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, ctime)
1925 + offsetof(struct cache_time, nsec));
1926 ce->ce_stat_data.sd_mtime.nsec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, mtime)
1927 + offsetof(struct cache_time, nsec));
1928 ce->ce_stat_data.sd_dev = get_be32(ondisk + offsetof(struct ondisk_cache_entry, dev));
1929 ce->ce_stat_data.sd_ino = get_be32(ondisk + offsetof(struct ondisk_cache_entry, ino));
1930 ce->ce_mode = get_be32(ondisk + offsetof(struct ondisk_cache_entry, mode));
1931 ce->ce_stat_data.sd_uid = get_be32(ondisk + offsetof(struct ondisk_cache_entry, uid));
1932 ce->ce_stat_data.sd_gid = get_be32(ondisk + offsetof(struct ondisk_cache_entry, gid));
1933 ce->ce_stat_data.sd_size = get_be32(ondisk + offsetof(struct ondisk_cache_entry, size));
1934 ce->ce_flags = flags & ~CE_NAMEMASK;
1935 ce->ce_namelen = len;
1936 ce->index = 0;
1937 oidread(&ce->oid, (const unsigned char *)ondisk + offsetof(struct ondisk_cache_entry, data));
1939 if (expand_name_field) {
1940 if (copy_len)
1941 memcpy(ce->name, previous_ce->name, copy_len);
1942 memcpy(ce->name + copy_len, name, len + 1 - copy_len);
1943 *ent_size = (name - ((char *)ondisk)) + len + 1 - copy_len;
1944 } else {
1945 memcpy(ce->name, name, len + 1);
1946 *ent_size = ondisk_ce_size(ce);
1948 return ce;
1951 static void check_ce_order(struct index_state *istate)
1953 unsigned int i;
1955 if (!verify_ce_order)
1956 return;
1958 for (i = 1; i < istate->cache_nr; i++) {
1959 struct cache_entry *ce = istate->cache[i - 1];
1960 struct cache_entry *next_ce = istate->cache[i];
1961 int name_compare = strcmp(ce->name, next_ce->name);
1963 if (0 < name_compare)
1964 die(_("unordered stage entries in index"));
1965 if (!name_compare) {
1966 if (!ce_stage(ce))
1967 die(_("multiple stage entries for merged file '%s'"),
1968 ce->name);
1969 if (ce_stage(ce) > ce_stage(next_ce))
1970 die(_("unordered stage entries for '%s'"),
1971 ce->name);
1976 static void tweak_untracked_cache(struct index_state *istate)
1978 struct repository *r = the_repository;
1980 prepare_repo_settings(r);
1982 switch (r->settings.core_untracked_cache) {
1983 case UNTRACKED_CACHE_REMOVE:
1984 remove_untracked_cache(istate);
1985 break;
1986 case UNTRACKED_CACHE_WRITE:
1987 add_untracked_cache(istate);
1988 break;
1989 case UNTRACKED_CACHE_KEEP:
1991 * Either an explicit "core.untrackedCache=keep", the
1992 * default if "core.untrackedCache" isn't configured,
1993 * or a fallback on an unknown "core.untrackedCache"
1994 * value.
1996 break;
2000 static void tweak_split_index(struct index_state *istate)
2002 switch (git_config_get_split_index()) {
2003 case -1: /* unset: do nothing */
2004 break;
2005 case 0: /* false */
2006 remove_split_index(istate);
2007 break;
2008 case 1: /* true */
2009 add_split_index(istate);
2010 break;
2011 default: /* unknown value: do nothing */
2012 break;
2016 static void post_read_index_from(struct index_state *istate)
2018 check_ce_order(istate);
2019 tweak_untracked_cache(istate);
2020 tweak_split_index(istate);
2021 tweak_fsmonitor(istate);
2024 static size_t estimate_cache_size_from_compressed(unsigned int entries)
2026 return entries * (sizeof(struct cache_entry) + CACHE_ENTRY_PATH_LENGTH);
2029 static size_t estimate_cache_size(size_t ondisk_size, unsigned int entries)
2031 long per_entry = sizeof(struct cache_entry) - sizeof(struct ondisk_cache_entry);
2034 * Account for potential alignment differences.
2036 per_entry += align_padding_size(per_entry, 0);
2037 return ondisk_size + entries * per_entry;
2040 struct index_entry_offset
2042 /* starting byte offset into index file, count of index entries in this block */
2043 int offset, nr;
2046 struct index_entry_offset_table
2048 int nr;
2049 struct index_entry_offset entries[FLEX_ARRAY];
2052 static struct index_entry_offset_table *read_ieot_extension(const char *mmap, size_t mmap_size, size_t offset);
2053 static void write_ieot_extension(struct strbuf *sb, struct index_entry_offset_table *ieot);
2055 static size_t read_eoie_extension(const char *mmap, size_t mmap_size);
2056 static void write_eoie_extension(struct strbuf *sb, git_hash_ctx *eoie_context, size_t offset);
2058 struct load_index_extensions
2060 pthread_t pthread;
2061 struct index_state *istate;
2062 const char *mmap;
2063 size_t mmap_size;
2064 unsigned long src_offset;
2067 static void *load_index_extensions(void *_data)
2069 struct load_index_extensions *p = _data;
2070 unsigned long src_offset = p->src_offset;
2072 while (src_offset <= p->mmap_size - the_hash_algo->rawsz - 8) {
2073 /* After an array of active_nr index entries,
2074 * there can be arbitrary number of extended
2075 * sections, each of which is prefixed with
2076 * extension name (4-byte) and section length
2077 * in 4-byte network byte order.
2079 uint32_t extsize = get_be32(p->mmap + src_offset + 4);
2080 if (read_index_extension(p->istate,
2081 p->mmap + src_offset,
2082 p->mmap + src_offset + 8,
2083 extsize) < 0) {
2084 munmap((void *)p->mmap, p->mmap_size);
2085 die(_("index file corrupt"));
2087 src_offset += 8;
2088 src_offset += extsize;
2091 return NULL;
2095 * A helper function that will load the specified range of cache entries
2096 * from the memory mapped file and add them to the given index.
2098 static unsigned long load_cache_entry_block(struct index_state *istate,
2099 struct mem_pool *ce_mem_pool, int offset, int nr, const char *mmap,
2100 unsigned long start_offset, const struct cache_entry *previous_ce)
2102 int i;
2103 unsigned long src_offset = start_offset;
2105 for (i = offset; i < offset + nr; i++) {
2106 struct cache_entry *ce;
2107 unsigned long consumed;
2109 ce = create_from_disk(ce_mem_pool, istate->version,
2110 mmap + src_offset,
2111 &consumed, previous_ce);
2112 set_index_entry(istate, i, ce);
2114 src_offset += consumed;
2115 previous_ce = ce;
2117 return src_offset - start_offset;
2120 static unsigned long load_all_cache_entries(struct index_state *istate,
2121 const char *mmap, size_t mmap_size, unsigned long src_offset)
2123 unsigned long consumed;
2125 istate->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool));
2126 if (istate->version == 4) {
2127 mem_pool_init(istate->ce_mem_pool,
2128 estimate_cache_size_from_compressed(istate->cache_nr));
2129 } else {
2130 mem_pool_init(istate->ce_mem_pool,
2131 estimate_cache_size(mmap_size, istate->cache_nr));
2134 consumed = load_cache_entry_block(istate, istate->ce_mem_pool,
2135 0, istate->cache_nr, mmap, src_offset, NULL);
2136 return consumed;
2140 * Mostly randomly chosen maximum thread counts: we
2141 * cap the parallelism to online_cpus() threads, and we want
2142 * to have at least 10000 cache entries per thread for it to
2143 * be worth starting a thread.
2146 #define THREAD_COST (10000)
2148 struct load_cache_entries_thread_data
2150 pthread_t pthread;
2151 struct index_state *istate;
2152 struct mem_pool *ce_mem_pool;
2153 int offset;
2154 const char *mmap;
2155 struct index_entry_offset_table *ieot;
2156 int ieot_start; /* starting index into the ieot array */
2157 int ieot_blocks; /* count of ieot entries to process */
2158 unsigned long consumed; /* return # of bytes in index file processed */
2162 * A thread proc to run the load_cache_entries() computation
2163 * across multiple background threads.
2165 static void *load_cache_entries_thread(void *_data)
2167 struct load_cache_entries_thread_data *p = _data;
2168 int i;
2170 /* iterate across all ieot blocks assigned to this thread */
2171 for (i = p->ieot_start; i < p->ieot_start + p->ieot_blocks; i++) {
2172 p->consumed += load_cache_entry_block(p->istate, p->ce_mem_pool,
2173 p->offset, p->ieot->entries[i].nr, p->mmap, p->ieot->entries[i].offset, NULL);
2174 p->offset += p->ieot->entries[i].nr;
2176 return NULL;
2179 static unsigned long load_cache_entries_threaded(struct index_state *istate, const char *mmap, size_t mmap_size,
2180 int nr_threads, struct index_entry_offset_table *ieot)
2182 int i, offset, ieot_blocks, ieot_start, err;
2183 struct load_cache_entries_thread_data *data;
2184 unsigned long consumed = 0;
2186 /* a little sanity checking */
2187 if (istate->name_hash_initialized)
2188 BUG("the name hash isn't thread safe");
2190 istate->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool));
2191 mem_pool_init(istate->ce_mem_pool, 0);
2193 /* ensure we have no more threads than we have blocks to process */
2194 if (nr_threads > ieot->nr)
2195 nr_threads = ieot->nr;
2196 CALLOC_ARRAY(data, nr_threads);
2198 offset = ieot_start = 0;
2199 ieot_blocks = DIV_ROUND_UP(ieot->nr, nr_threads);
2200 for (i = 0; i < nr_threads; i++) {
2201 struct load_cache_entries_thread_data *p = &data[i];
2202 int nr, j;
2204 if (ieot_start + ieot_blocks > ieot->nr)
2205 ieot_blocks = ieot->nr - ieot_start;
2207 p->istate = istate;
2208 p->offset = offset;
2209 p->mmap = mmap;
2210 p->ieot = ieot;
2211 p->ieot_start = ieot_start;
2212 p->ieot_blocks = ieot_blocks;
2214 /* create a mem_pool for each thread */
2215 nr = 0;
2216 for (j = p->ieot_start; j < p->ieot_start + p->ieot_blocks; j++)
2217 nr += p->ieot->entries[j].nr;
2218 p->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool));
2219 if (istate->version == 4) {
2220 mem_pool_init(p->ce_mem_pool,
2221 estimate_cache_size_from_compressed(nr));
2222 } else {
2223 mem_pool_init(p->ce_mem_pool,
2224 estimate_cache_size(mmap_size, nr));
2227 err = pthread_create(&p->pthread, NULL, load_cache_entries_thread, p);
2228 if (err)
2229 die(_("unable to create load_cache_entries thread: %s"), strerror(err));
2231 /* increment by the number of cache entries in the ieot block being processed */
2232 for (j = 0; j < ieot_blocks; j++)
2233 offset += ieot->entries[ieot_start + j].nr;
2234 ieot_start += ieot_blocks;
2237 for (i = 0; i < nr_threads; i++) {
2238 struct load_cache_entries_thread_data *p = &data[i];
2240 err = pthread_join(p->pthread, NULL);
2241 if (err)
2242 die(_("unable to join load_cache_entries thread: %s"), strerror(err));
2243 mem_pool_combine(istate->ce_mem_pool, p->ce_mem_pool);
2244 consumed += p->consumed;
2247 free(data);
2249 return consumed;
2252 static void set_new_index_sparsity(struct index_state *istate)
2255 * If the index's repo exists, mark it sparse according to
2256 * repo settings.
2258 prepare_repo_settings(istate->repo);
2259 if (!istate->repo->settings.command_requires_full_index &&
2260 is_sparse_index_allowed(istate, 0))
2261 istate->sparse_index = 1;
2264 /* remember to discard_cache() before reading a different cache! */
2265 int do_read_index(struct index_state *istate, const char *path, int must_exist)
2267 int fd;
2268 struct stat st;
2269 unsigned long src_offset;
2270 const struct cache_header *hdr;
2271 const char *mmap;
2272 size_t mmap_size;
2273 struct load_index_extensions p;
2274 size_t extension_offset = 0;
2275 int nr_threads, cpus;
2276 struct index_entry_offset_table *ieot = NULL;
2278 if (istate->initialized)
2279 return istate->cache_nr;
2281 istate->timestamp.sec = 0;
2282 istate->timestamp.nsec = 0;
2283 fd = open(path, O_RDONLY);
2284 if (fd < 0) {
2285 if (!must_exist && errno == ENOENT) {
2286 set_new_index_sparsity(istate);
2287 return 0;
2289 die_errno(_("%s: index file open failed"), path);
2292 if (fstat(fd, &st))
2293 die_errno(_("%s: cannot stat the open index"), path);
2295 mmap_size = xsize_t(st.st_size);
2296 if (mmap_size < sizeof(struct cache_header) + the_hash_algo->rawsz)
2297 die(_("%s: index file smaller than expected"), path);
2299 mmap = xmmap_gently(NULL, mmap_size, PROT_READ, MAP_PRIVATE, fd, 0);
2300 if (mmap == MAP_FAILED)
2301 die_errno(_("%s: unable to map index file%s"), path,
2302 mmap_os_err());
2303 close(fd);
2305 hdr = (const struct cache_header *)mmap;
2306 if (verify_hdr(hdr, mmap_size) < 0)
2307 goto unmap;
2309 oidread(&istate->oid, (const unsigned char *)hdr + mmap_size - the_hash_algo->rawsz);
2310 istate->version = ntohl(hdr->hdr_version);
2311 istate->cache_nr = ntohl(hdr->hdr_entries);
2312 istate->cache_alloc = alloc_nr(istate->cache_nr);
2313 CALLOC_ARRAY(istate->cache, istate->cache_alloc);
2314 istate->initialized = 1;
2316 p.istate = istate;
2317 p.mmap = mmap;
2318 p.mmap_size = mmap_size;
2320 src_offset = sizeof(*hdr);
2322 if (git_config_get_index_threads(&nr_threads))
2323 nr_threads = 1;
2325 /* TODO: does creating more threads than cores help? */
2326 if (!nr_threads) {
2327 nr_threads = istate->cache_nr / THREAD_COST;
2328 cpus = online_cpus();
2329 if (nr_threads > cpus)
2330 nr_threads = cpus;
2333 if (!HAVE_THREADS)
2334 nr_threads = 1;
2336 if (nr_threads > 1) {
2337 extension_offset = read_eoie_extension(mmap, mmap_size);
2338 if (extension_offset) {
2339 int err;
2341 p.src_offset = extension_offset;
2342 err = pthread_create(&p.pthread, NULL, load_index_extensions, &p);
2343 if (err)
2344 die(_("unable to create load_index_extensions thread: %s"), strerror(err));
2346 nr_threads--;
2351 * Locate and read the index entry offset table so that we can use it
2352 * to multi-thread the reading of the cache entries.
2354 if (extension_offset && nr_threads > 1)
2355 ieot = read_ieot_extension(mmap, mmap_size, extension_offset);
2357 if (ieot) {
2358 src_offset += load_cache_entries_threaded(istate, mmap, mmap_size, nr_threads, ieot);
2359 free(ieot);
2360 } else {
2361 src_offset += load_all_cache_entries(istate, mmap, mmap_size, src_offset);
2364 istate->timestamp.sec = st.st_mtime;
2365 istate->timestamp.nsec = ST_MTIME_NSEC(st);
2367 /* if we created a thread, join it otherwise load the extensions on the primary thread */
2368 if (extension_offset) {
2369 int ret = pthread_join(p.pthread, NULL);
2370 if (ret)
2371 die(_("unable to join load_index_extensions thread: %s"), strerror(ret));
2372 } else {
2373 p.src_offset = src_offset;
2374 load_index_extensions(&p);
2376 munmap((void *)mmap, mmap_size);
2379 * TODO trace2: replace "the_repository" with the actual repo instance
2380 * that is associated with the given "istate".
2382 trace2_data_intmax("index", the_repository, "read/version",
2383 istate->version);
2384 trace2_data_intmax("index", the_repository, "read/cache_nr",
2385 istate->cache_nr);
2388 * If the command explicitly requires a full index, force it
2389 * to be full. Otherwise, correct the sparsity based on repository
2390 * settings and other properties of the index (if necessary).
2392 prepare_repo_settings(istate->repo);
2393 if (istate->repo->settings.command_requires_full_index)
2394 ensure_full_index(istate);
2395 else
2396 ensure_correct_sparsity(istate);
2398 return istate->cache_nr;
2400 unmap:
2401 munmap((void *)mmap, mmap_size);
2402 die(_("index file corrupt"));
2406 * Signal that the shared index is used by updating its mtime.
2408 * This way, shared index can be removed if they have not been used
2409 * for some time.
2411 static void freshen_shared_index(const char *shared_index, int warn)
2413 if (!check_and_freshen_file(shared_index, 1) && warn)
2414 warning(_("could not freshen shared index '%s'"), shared_index);
2417 int read_index_from(struct index_state *istate, const char *path,
2418 const char *gitdir)
2420 struct split_index *split_index;
2421 int ret;
2422 char *base_oid_hex;
2423 char *base_path;
2425 /* istate->initialized covers both .git/index and .git/sharedindex.xxx */
2426 if (istate->initialized)
2427 return istate->cache_nr;
2430 * TODO trace2: replace "the_repository" with the actual repo instance
2431 * that is associated with the given "istate".
2433 trace2_region_enter_printf("index", "do_read_index", the_repository,
2434 "%s", path);
2435 trace_performance_enter();
2436 ret = do_read_index(istate, path, 0);
2437 trace_performance_leave("read cache %s", path);
2438 trace2_region_leave_printf("index", "do_read_index", the_repository,
2439 "%s", path);
2441 split_index = istate->split_index;
2442 if (!split_index || is_null_oid(&split_index->base_oid)) {
2443 post_read_index_from(istate);
2444 return ret;
2447 trace_performance_enter();
2448 if (split_index->base)
2449 release_index(split_index->base);
2450 else
2451 ALLOC_ARRAY(split_index->base, 1);
2452 index_state_init(split_index->base, istate->repo);
2454 base_oid_hex = oid_to_hex(&split_index->base_oid);
2455 base_path = xstrfmt("%s/sharedindex.%s", gitdir, base_oid_hex);
2456 trace2_region_enter_printf("index", "shared/do_read_index",
2457 the_repository, "%s", base_path);
2458 ret = do_read_index(split_index->base, base_path, 0);
2459 trace2_region_leave_printf("index", "shared/do_read_index",
2460 the_repository, "%s", base_path);
2461 if (!ret) {
2462 char *path_copy = xstrdup(path);
2463 char *base_path2 = xstrfmt("%s/sharedindex.%s",
2464 dirname(path_copy), base_oid_hex);
2465 free(path_copy);
2466 trace2_region_enter_printf("index", "shared/do_read_index",
2467 the_repository, "%s", base_path2);
2468 ret = do_read_index(split_index->base, base_path2, 1);
2469 trace2_region_leave_printf("index", "shared/do_read_index",
2470 the_repository, "%s", base_path2);
2471 free(base_path2);
2473 if (!oideq(&split_index->base_oid, &split_index->base->oid))
2474 die(_("broken index, expect %s in %s, got %s"),
2475 base_oid_hex, base_path,
2476 oid_to_hex(&split_index->base->oid));
2478 freshen_shared_index(base_path, 0);
2479 merge_base_index(istate);
2480 post_read_index_from(istate);
2481 trace_performance_leave("read cache %s", base_path);
2482 free(base_path);
2483 return ret;
2486 int is_index_unborn(struct index_state *istate)
2488 return (!istate->cache_nr && !istate->timestamp.sec);
2491 void index_state_init(struct index_state *istate, struct repository *r)
2493 struct index_state blank = INDEX_STATE_INIT(r);
2494 memcpy(istate, &blank, sizeof(*istate));
2497 void release_index(struct index_state *istate)
2500 * Cache entries in istate->cache[] should have been allocated
2501 * from the memory pool associated with this index, or from an
2502 * associated split_index. There is no need to free individual
2503 * cache entries. validate_cache_entries can detect when this
2504 * assertion does not hold.
2506 validate_cache_entries(istate);
2508 resolve_undo_clear_index(istate);
2509 free_name_hash(istate);
2510 cache_tree_free(&(istate->cache_tree));
2511 free(istate->fsmonitor_last_update);
2512 free(istate->cache);
2513 discard_split_index(istate);
2514 free_untracked_cache(istate->untracked);
2516 if (istate->sparse_checkout_patterns) {
2517 clear_pattern_list(istate->sparse_checkout_patterns);
2518 FREE_AND_NULL(istate->sparse_checkout_patterns);
2521 if (istate->ce_mem_pool) {
2522 mem_pool_discard(istate->ce_mem_pool, should_validate_cache_entries());
2523 FREE_AND_NULL(istate->ce_mem_pool);
2527 void discard_index(struct index_state *istate)
2529 release_index(istate);
2530 index_state_init(istate, istate->repo);
2534 * Validate the cache entries of this index.
2535 * All cache entries associated with this index
2536 * should have been allocated by the memory pool
2537 * associated with this index, or by a referenced
2538 * split index.
2540 void validate_cache_entries(const struct index_state *istate)
2542 int i;
2544 if (!should_validate_cache_entries() ||!istate || !istate->initialized)
2545 return;
2547 for (i = 0; i < istate->cache_nr; i++) {
2548 if (!istate) {
2549 BUG("cache entry is not allocated from expected memory pool");
2550 } else if (!istate->ce_mem_pool ||
2551 !mem_pool_contains(istate->ce_mem_pool, istate->cache[i])) {
2552 if (!istate->split_index ||
2553 !istate->split_index->base ||
2554 !istate->split_index->base->ce_mem_pool ||
2555 !mem_pool_contains(istate->split_index->base->ce_mem_pool, istate->cache[i])) {
2556 BUG("cache entry is not allocated from expected memory pool");
2561 if (istate->split_index)
2562 validate_cache_entries(istate->split_index->base);
2565 int unmerged_index(const struct index_state *istate)
2567 int i;
2568 for (i = 0; i < istate->cache_nr; i++) {
2569 if (ce_stage(istate->cache[i]))
2570 return 1;
2572 return 0;
2575 int repo_index_has_changes(struct repository *repo,
2576 struct tree *tree,
2577 struct strbuf *sb)
2579 struct index_state *istate = repo->index;
2580 struct object_id cmp;
2581 int i;
2583 if (tree)
2584 cmp = tree->object.oid;
2585 if (tree || !repo_get_oid_tree(repo, "HEAD", &cmp)) {
2586 struct diff_options opt;
2588 repo_diff_setup(repo, &opt);
2589 opt.flags.exit_with_status = 1;
2590 if (!sb)
2591 opt.flags.quick = 1;
2592 diff_setup_done(&opt);
2593 do_diff_cache(&cmp, &opt);
2594 diffcore_std(&opt);
2595 for (i = 0; sb && i < diff_queued_diff.nr; i++) {
2596 if (i)
2597 strbuf_addch(sb, ' ');
2598 strbuf_addstr(sb, diff_queued_diff.queue[i]->two->path);
2600 diff_flush(&opt);
2601 return opt.flags.has_changes != 0;
2602 } else {
2603 /* TODO: audit for interaction with sparse-index. */
2604 ensure_full_index(istate);
2605 for (i = 0; sb && i < istate->cache_nr; i++) {
2606 if (i)
2607 strbuf_addch(sb, ' ');
2608 strbuf_addstr(sb, istate->cache[i]->name);
2610 return !!istate->cache_nr;
2614 static int write_index_ext_header(struct hashfile *f,
2615 git_hash_ctx *eoie_f,
2616 unsigned int ext,
2617 unsigned int sz)
2619 hashwrite_be32(f, ext);
2620 hashwrite_be32(f, sz);
2622 if (eoie_f) {
2623 ext = htonl(ext);
2624 sz = htonl(sz);
2625 the_hash_algo->update_fn(eoie_f, &ext, sizeof(ext));
2626 the_hash_algo->update_fn(eoie_f, &sz, sizeof(sz));
2628 return 0;
2631 static void ce_smudge_racily_clean_entry(struct index_state *istate,
2632 struct cache_entry *ce)
2635 * The only thing we care about in this function is to smudge the
2636 * falsely clean entry due to touch-update-touch race, so we leave
2637 * everything else as they are. We are called for entries whose
2638 * ce_stat_data.sd_mtime match the index file mtime.
2640 * Note that this actually does not do much for gitlinks, for
2641 * which ce_match_stat_basic() always goes to the actual
2642 * contents. The caller checks with is_racy_timestamp() which
2643 * always says "no" for gitlinks, so we are not called for them ;-)
2645 struct stat st;
2647 if (lstat(ce->name, &st) < 0)
2648 return;
2649 if (ce_match_stat_basic(ce, &st))
2650 return;
2651 if (ce_modified_check_fs(istate, ce, &st)) {
2652 /* This is "racily clean"; smudge it. Note that this
2653 * is a tricky code. At first glance, it may appear
2654 * that it can break with this sequence:
2656 * $ echo xyzzy >frotz
2657 * $ git-update-index --add frotz
2658 * $ : >frotz
2659 * $ sleep 3
2660 * $ echo filfre >nitfol
2661 * $ git-update-index --add nitfol
2663 * but it does not. When the second update-index runs,
2664 * it notices that the entry "frotz" has the same timestamp
2665 * as index, and if we were to smudge it by resetting its
2666 * size to zero here, then the object name recorded
2667 * in index is the 6-byte file but the cached stat information
2668 * becomes zero --- which would then match what we would
2669 * obtain from the filesystem next time we stat("frotz").
2671 * However, the second update-index, before calling
2672 * this function, notices that the cached size is 6
2673 * bytes and what is on the filesystem is an empty
2674 * file, and never calls us, so the cached size information
2675 * for "frotz" stays 6 which does not match the filesystem.
2677 ce->ce_stat_data.sd_size = 0;
2681 /* Copy miscellaneous fields but not the name */
2682 static void copy_cache_entry_to_ondisk(struct ondisk_cache_entry *ondisk,
2683 struct cache_entry *ce)
2685 short flags;
2686 const unsigned hashsz = the_hash_algo->rawsz;
2687 uint16_t *flagsp = (uint16_t *)(ondisk->data + hashsz);
2689 ondisk->ctime.sec = htonl(ce->ce_stat_data.sd_ctime.sec);
2690 ondisk->mtime.sec = htonl(ce->ce_stat_data.sd_mtime.sec);
2691 ondisk->ctime.nsec = htonl(ce->ce_stat_data.sd_ctime.nsec);
2692 ondisk->mtime.nsec = htonl(ce->ce_stat_data.sd_mtime.nsec);
2693 ondisk->dev = htonl(ce->ce_stat_data.sd_dev);
2694 ondisk->ino = htonl(ce->ce_stat_data.sd_ino);
2695 ondisk->mode = htonl(ce->ce_mode);
2696 ondisk->uid = htonl(ce->ce_stat_data.sd_uid);
2697 ondisk->gid = htonl(ce->ce_stat_data.sd_gid);
2698 ondisk->size = htonl(ce->ce_stat_data.sd_size);
2699 hashcpy(ondisk->data, ce->oid.hash);
2701 flags = ce->ce_flags & ~CE_NAMEMASK;
2702 flags |= (ce_namelen(ce) >= CE_NAMEMASK ? CE_NAMEMASK : ce_namelen(ce));
2703 flagsp[0] = htons(flags);
2704 if (ce->ce_flags & CE_EXTENDED) {
2705 flagsp[1] = htons((ce->ce_flags & CE_EXTENDED_FLAGS) >> 16);
2709 static int ce_write_entry(struct hashfile *f, struct cache_entry *ce,
2710 struct strbuf *previous_name, struct ondisk_cache_entry *ondisk)
2712 int size;
2713 unsigned int saved_namelen;
2714 int stripped_name = 0;
2715 static unsigned char padding[8] = { 0x00 };
2717 if (ce->ce_flags & CE_STRIP_NAME) {
2718 saved_namelen = ce_namelen(ce);
2719 ce->ce_namelen = 0;
2720 stripped_name = 1;
2723 size = offsetof(struct ondisk_cache_entry,data) + ondisk_data_size(ce->ce_flags, 0);
2725 if (!previous_name) {
2726 int len = ce_namelen(ce);
2727 copy_cache_entry_to_ondisk(ondisk, ce);
2728 hashwrite(f, ondisk, size);
2729 hashwrite(f, ce->name, len);
2730 hashwrite(f, padding, align_padding_size(size, len));
2731 } else {
2732 int common, to_remove, prefix_size;
2733 unsigned char to_remove_vi[16];
2734 for (common = 0;
2735 (ce->name[common] &&
2736 common < previous_name->len &&
2737 ce->name[common] == previous_name->buf[common]);
2738 common++)
2739 ; /* still matching */
2740 to_remove = previous_name->len - common;
2741 prefix_size = encode_varint(to_remove, to_remove_vi);
2743 copy_cache_entry_to_ondisk(ondisk, ce);
2744 hashwrite(f, ondisk, size);
2745 hashwrite(f, to_remove_vi, prefix_size);
2746 hashwrite(f, ce->name + common, ce_namelen(ce) - common);
2747 hashwrite(f, padding, 1);
2749 strbuf_splice(previous_name, common, to_remove,
2750 ce->name + common, ce_namelen(ce) - common);
2752 if (stripped_name) {
2753 ce->ce_namelen = saved_namelen;
2754 ce->ce_flags &= ~CE_STRIP_NAME;
2757 return 0;
2761 * This function verifies if index_state has the correct sha1 of the
2762 * index file. Don't die if we have any other failure, just return 0.
2764 static int verify_index_from(const struct index_state *istate, const char *path)
2766 int fd;
2767 ssize_t n;
2768 struct stat st;
2769 unsigned char hash[GIT_MAX_RAWSZ];
2771 if (!istate->initialized)
2772 return 0;
2774 fd = open(path, O_RDONLY);
2775 if (fd < 0)
2776 return 0;
2778 if (fstat(fd, &st))
2779 goto out;
2781 if (st.st_size < sizeof(struct cache_header) + the_hash_algo->rawsz)
2782 goto out;
2784 n = pread_in_full(fd, hash, the_hash_algo->rawsz, st.st_size - the_hash_algo->rawsz);
2785 if (n != the_hash_algo->rawsz)
2786 goto out;
2788 if (!hasheq(istate->oid.hash, hash))
2789 goto out;
2791 close(fd);
2792 return 1;
2794 out:
2795 close(fd);
2796 return 0;
2799 static int repo_verify_index(struct repository *repo)
2801 return verify_index_from(repo->index, repo->index_file);
2804 int has_racy_timestamp(struct index_state *istate)
2806 int entries = istate->cache_nr;
2807 int i;
2809 for (i = 0; i < entries; i++) {
2810 struct cache_entry *ce = istate->cache[i];
2811 if (is_racy_timestamp(istate, ce))
2812 return 1;
2814 return 0;
2817 void repo_update_index_if_able(struct repository *repo,
2818 struct lock_file *lockfile)
2820 if ((repo->index->cache_changed ||
2821 has_racy_timestamp(repo->index)) &&
2822 repo_verify_index(repo))
2823 write_locked_index(repo->index, lockfile, COMMIT_LOCK);
2824 else
2825 rollback_lock_file(lockfile);
2828 static int record_eoie(void)
2830 int val;
2832 if (!git_config_get_bool("index.recordendofindexentries", &val))
2833 return val;
2836 * As a convenience, the end of index entries extension
2837 * used for threading is written by default if the user
2838 * explicitly requested threaded index reads.
2840 return !git_config_get_index_threads(&val) && val != 1;
2843 static int record_ieot(void)
2845 int val;
2847 if (!git_config_get_bool("index.recordoffsettable", &val))
2848 return val;
2851 * As a convenience, the offset table used for threading is
2852 * written by default if the user explicitly requested
2853 * threaded index reads.
2855 return !git_config_get_index_threads(&val) && val != 1;
2859 * On success, `tempfile` is closed. If it is the temporary file
2860 * of a `struct lock_file`, we will therefore effectively perform
2861 * a 'close_lock_file_gently()`. Since that is an implementation
2862 * detail of lockfiles, callers of `do_write_index()` should not
2863 * rely on it.
2865 static int do_write_index(struct index_state *istate, struct tempfile *tempfile,
2866 int strip_extensions, unsigned flags)
2868 uint64_t start = getnanotime();
2869 struct hashfile *f;
2870 git_hash_ctx *eoie_c = NULL;
2871 struct cache_header hdr;
2872 int i, err = 0, removed, extended, hdr_version;
2873 struct cache_entry **cache = istate->cache;
2874 int entries = istate->cache_nr;
2875 struct stat st;
2876 struct ondisk_cache_entry ondisk;
2877 struct strbuf previous_name_buf = STRBUF_INIT, *previous_name;
2878 int drop_cache_tree = istate->drop_cache_tree;
2879 off_t offset;
2880 int csum_fsync_flag;
2881 int ieot_entries = 1;
2882 struct index_entry_offset_table *ieot = NULL;
2883 int nr, nr_threads;
2884 struct repository *r = istate->repo;
2886 f = hashfd(tempfile->fd, tempfile->filename.buf);
2888 prepare_repo_settings(r);
2889 f->skip_hash = r->settings.index_skip_hash;
2891 for (i = removed = extended = 0; i < entries; i++) {
2892 if (cache[i]->ce_flags & CE_REMOVE)
2893 removed++;
2895 /* reduce extended entries if possible */
2896 cache[i]->ce_flags &= ~CE_EXTENDED;
2897 if (cache[i]->ce_flags & CE_EXTENDED_FLAGS) {
2898 extended++;
2899 cache[i]->ce_flags |= CE_EXTENDED;
2903 if (!istate->version)
2904 istate->version = get_index_format_default(r);
2906 /* demote version 3 to version 2 when the latter suffices */
2907 if (istate->version == 3 || istate->version == 2)
2908 istate->version = extended ? 3 : 2;
2910 hdr_version = istate->version;
2912 hdr.hdr_signature = htonl(CACHE_SIGNATURE);
2913 hdr.hdr_version = htonl(hdr_version);
2914 hdr.hdr_entries = htonl(entries - removed);
2916 hashwrite(f, &hdr, sizeof(hdr));
2918 if (!HAVE_THREADS || git_config_get_index_threads(&nr_threads))
2919 nr_threads = 1;
2921 if (nr_threads != 1 && record_ieot()) {
2922 int ieot_blocks, cpus;
2925 * ensure default number of ieot blocks maps evenly to the
2926 * default number of threads that will process them leaving
2927 * room for the thread to load the index extensions.
2929 if (!nr_threads) {
2930 ieot_blocks = istate->cache_nr / THREAD_COST;
2931 cpus = online_cpus();
2932 if (ieot_blocks > cpus - 1)
2933 ieot_blocks = cpus - 1;
2934 } else {
2935 ieot_blocks = nr_threads;
2936 if (ieot_blocks > istate->cache_nr)
2937 ieot_blocks = istate->cache_nr;
2941 * no reason to write out the IEOT extension if we don't
2942 * have enough blocks to utilize multi-threading
2944 if (ieot_blocks > 1) {
2945 ieot = xcalloc(1, sizeof(struct index_entry_offset_table)
2946 + (ieot_blocks * sizeof(struct index_entry_offset)));
2947 ieot_entries = DIV_ROUND_UP(entries, ieot_blocks);
2951 offset = hashfile_total(f);
2953 nr = 0;
2954 previous_name = (hdr_version == 4) ? &previous_name_buf : NULL;
2956 for (i = 0; i < entries; i++) {
2957 struct cache_entry *ce = cache[i];
2958 if (ce->ce_flags & CE_REMOVE)
2959 continue;
2960 if (!ce_uptodate(ce) && is_racy_timestamp(istate, ce))
2961 ce_smudge_racily_clean_entry(istate, ce);
2962 if (is_null_oid(&ce->oid)) {
2963 static const char msg[] = "cache entry has null sha1: %s";
2964 static int allow = -1;
2966 if (allow < 0)
2967 allow = git_env_bool("GIT_ALLOW_NULL_SHA1", 0);
2968 if (allow)
2969 warning(msg, ce->name);
2970 else
2971 err = error(msg, ce->name);
2973 drop_cache_tree = 1;
2975 if (ieot && i && (i % ieot_entries == 0)) {
2976 ieot->entries[ieot->nr].nr = nr;
2977 ieot->entries[ieot->nr].offset = offset;
2978 ieot->nr++;
2980 * If we have a V4 index, set the first byte to an invalid
2981 * character to ensure there is nothing common with the previous
2982 * entry
2984 if (previous_name)
2985 previous_name->buf[0] = 0;
2986 nr = 0;
2988 offset = hashfile_total(f);
2990 if (ce_write_entry(f, ce, previous_name, (struct ondisk_cache_entry *)&ondisk) < 0)
2991 err = -1;
2993 if (err)
2994 break;
2995 nr++;
2997 if (ieot && nr) {
2998 ieot->entries[ieot->nr].nr = nr;
2999 ieot->entries[ieot->nr].offset = offset;
3000 ieot->nr++;
3002 strbuf_release(&previous_name_buf);
3004 if (err) {
3005 free(ieot);
3006 return err;
3009 offset = hashfile_total(f);
3012 * The extension headers must be hashed on their own for the
3013 * EOIE extension. Create a hashfile here to compute that hash.
3015 if (offset && record_eoie()) {
3016 CALLOC_ARRAY(eoie_c, 1);
3017 the_hash_algo->init_fn(eoie_c);
3021 * Lets write out CACHE_EXT_INDEXENTRYOFFSETTABLE first so that we
3022 * can minimize the number of extensions we have to scan through to
3023 * find it during load. Write it out regardless of the
3024 * strip_extensions parameter as we need it when loading the shared
3025 * index.
3027 if (ieot) {
3028 struct strbuf sb = STRBUF_INIT;
3030 write_ieot_extension(&sb, ieot);
3031 err = write_index_ext_header(f, eoie_c, CACHE_EXT_INDEXENTRYOFFSETTABLE, sb.len) < 0;
3032 hashwrite(f, sb.buf, sb.len);
3033 strbuf_release(&sb);
3034 free(ieot);
3035 if (err)
3036 return -1;
3039 if (!strip_extensions && istate->split_index &&
3040 !is_null_oid(&istate->split_index->base_oid)) {
3041 struct strbuf sb = STRBUF_INIT;
3043 if (istate->sparse_index)
3044 die(_("cannot write split index for a sparse index"));
3046 err = write_link_extension(&sb, istate) < 0 ||
3047 write_index_ext_header(f, eoie_c, CACHE_EXT_LINK,
3048 sb.len) < 0;
3049 hashwrite(f, sb.buf, sb.len);
3050 strbuf_release(&sb);
3051 if (err)
3052 return -1;
3054 if (!strip_extensions && !drop_cache_tree && istate->cache_tree) {
3055 struct strbuf sb = STRBUF_INIT;
3057 cache_tree_write(&sb, istate->cache_tree);
3058 err = write_index_ext_header(f, eoie_c, CACHE_EXT_TREE, sb.len) < 0;
3059 hashwrite(f, sb.buf, sb.len);
3060 strbuf_release(&sb);
3061 if (err)
3062 return -1;
3064 if (!strip_extensions && istate->resolve_undo) {
3065 struct strbuf sb = STRBUF_INIT;
3067 resolve_undo_write(&sb, istate->resolve_undo);
3068 err = write_index_ext_header(f, eoie_c, CACHE_EXT_RESOLVE_UNDO,
3069 sb.len) < 0;
3070 hashwrite(f, sb.buf, sb.len);
3071 strbuf_release(&sb);
3072 if (err)
3073 return -1;
3075 if (!strip_extensions && istate->untracked) {
3076 struct strbuf sb = STRBUF_INIT;
3078 write_untracked_extension(&sb, istate->untracked);
3079 err = write_index_ext_header(f, eoie_c, CACHE_EXT_UNTRACKED,
3080 sb.len) < 0;
3081 hashwrite(f, sb.buf, sb.len);
3082 strbuf_release(&sb);
3083 if (err)
3084 return -1;
3086 if (!strip_extensions && istate->fsmonitor_last_update) {
3087 struct strbuf sb = STRBUF_INIT;
3089 write_fsmonitor_extension(&sb, istate);
3090 err = write_index_ext_header(f, eoie_c, CACHE_EXT_FSMONITOR, sb.len) < 0;
3091 hashwrite(f, sb.buf, sb.len);
3092 strbuf_release(&sb);
3093 if (err)
3094 return -1;
3096 if (istate->sparse_index) {
3097 if (write_index_ext_header(f, eoie_c, CACHE_EXT_SPARSE_DIRECTORIES, 0) < 0)
3098 return -1;
3102 * CACHE_EXT_ENDOFINDEXENTRIES must be written as the last entry before the SHA1
3103 * so that it can be found and processed before all the index entries are
3104 * read. Write it out regardless of the strip_extensions parameter as we need it
3105 * when loading the shared index.
3107 if (eoie_c) {
3108 struct strbuf sb = STRBUF_INIT;
3110 write_eoie_extension(&sb, eoie_c, offset);
3111 err = write_index_ext_header(f, NULL, CACHE_EXT_ENDOFINDEXENTRIES, sb.len) < 0;
3112 hashwrite(f, sb.buf, sb.len);
3113 strbuf_release(&sb);
3114 if (err)
3115 return -1;
3118 csum_fsync_flag = 0;
3119 if (!alternate_index_output && (flags & COMMIT_LOCK))
3120 csum_fsync_flag = CSUM_FSYNC;
3122 finalize_hashfile(f, istate->oid.hash, FSYNC_COMPONENT_INDEX,
3123 CSUM_HASH_IN_STREAM | csum_fsync_flag);
3125 if (close_tempfile_gently(tempfile)) {
3126 error(_("could not close '%s'"), get_tempfile_path(tempfile));
3127 return -1;
3129 if (stat(get_tempfile_path(tempfile), &st))
3130 return -1;
3131 istate->timestamp.sec = (unsigned int)st.st_mtime;
3132 istate->timestamp.nsec = ST_MTIME_NSEC(st);
3133 trace_performance_since(start, "write index, changed mask = %x", istate->cache_changed);
3136 * TODO trace2: replace "the_repository" with the actual repo instance
3137 * that is associated with the given "istate".
3139 trace2_data_intmax("index", the_repository, "write/version",
3140 istate->version);
3141 trace2_data_intmax("index", the_repository, "write/cache_nr",
3142 istate->cache_nr);
3144 return 0;
3147 void set_alternate_index_output(const char *name)
3149 alternate_index_output = name;
3152 static int commit_locked_index(struct lock_file *lk)
3154 if (alternate_index_output)
3155 return commit_lock_file_to(lk, alternate_index_output);
3156 else
3157 return commit_lock_file(lk);
3160 static int do_write_locked_index(struct index_state *istate, struct lock_file *lock,
3161 unsigned flags)
3163 int ret;
3164 int was_full = istate->sparse_index == INDEX_EXPANDED;
3166 ret = convert_to_sparse(istate, 0);
3168 if (ret) {
3169 warning(_("failed to convert to a sparse-index"));
3170 return ret;
3174 * TODO trace2: replace "the_repository" with the actual repo instance
3175 * that is associated with the given "istate".
3177 trace2_region_enter_printf("index", "do_write_index", the_repository,
3178 "%s", get_lock_file_path(lock));
3179 ret = do_write_index(istate, lock->tempfile, 0, flags);
3180 trace2_region_leave_printf("index", "do_write_index", the_repository,
3181 "%s", get_lock_file_path(lock));
3183 if (was_full)
3184 ensure_full_index(istate);
3186 if (ret)
3187 return ret;
3188 if (flags & COMMIT_LOCK)
3189 ret = commit_locked_index(lock);
3190 else
3191 ret = close_lock_file_gently(lock);
3193 run_hooks_l("post-index-change",
3194 istate->updated_workdir ? "1" : "0",
3195 istate->updated_skipworktree ? "1" : "0", NULL);
3196 istate->updated_workdir = 0;
3197 istate->updated_skipworktree = 0;
3199 return ret;
3202 static int write_split_index(struct index_state *istate,
3203 struct lock_file *lock,
3204 unsigned flags)
3206 int ret;
3207 prepare_to_write_split_index(istate);
3208 ret = do_write_locked_index(istate, lock, flags);
3209 finish_writing_split_index(istate);
3210 return ret;
3213 static const char *shared_index_expire = "2.weeks.ago";
3215 static unsigned long get_shared_index_expire_date(void)
3217 static unsigned long shared_index_expire_date;
3218 static int shared_index_expire_date_prepared;
3220 if (!shared_index_expire_date_prepared) {
3221 git_config_get_expiry("splitindex.sharedindexexpire",
3222 &shared_index_expire);
3223 shared_index_expire_date = approxidate(shared_index_expire);
3224 shared_index_expire_date_prepared = 1;
3227 return shared_index_expire_date;
3230 static int should_delete_shared_index(const char *shared_index_path)
3232 struct stat st;
3233 unsigned long expiration;
3235 /* Check timestamp */
3236 expiration = get_shared_index_expire_date();
3237 if (!expiration)
3238 return 0;
3239 if (stat(shared_index_path, &st))
3240 return error_errno(_("could not stat '%s'"), shared_index_path);
3241 if (st.st_mtime > expiration)
3242 return 0;
3244 return 1;
3247 static int clean_shared_index_files(const char *current_hex)
3249 struct dirent *de;
3250 DIR *dir = opendir(get_git_dir());
3252 if (!dir)
3253 return error_errno(_("unable to open git dir: %s"), get_git_dir());
3255 while ((de = readdir(dir)) != NULL) {
3256 const char *sha1_hex;
3257 const char *shared_index_path;
3258 if (!skip_prefix(de->d_name, "sharedindex.", &sha1_hex))
3259 continue;
3260 if (!strcmp(sha1_hex, current_hex))
3261 continue;
3262 shared_index_path = git_path("%s", de->d_name);
3263 if (should_delete_shared_index(shared_index_path) > 0 &&
3264 unlink(shared_index_path))
3265 warning_errno(_("unable to unlink: %s"), shared_index_path);
3267 closedir(dir);
3269 return 0;
3272 static int write_shared_index(struct index_state *istate,
3273 struct tempfile **temp, unsigned flags)
3275 struct split_index *si = istate->split_index;
3276 int ret, was_full = !istate->sparse_index;
3278 move_cache_to_base_index(istate);
3279 convert_to_sparse(istate, 0);
3281 trace2_region_enter_printf("index", "shared/do_write_index",
3282 the_repository, "%s", get_tempfile_path(*temp));
3283 ret = do_write_index(si->base, *temp, 1, flags);
3284 trace2_region_leave_printf("index", "shared/do_write_index",
3285 the_repository, "%s", get_tempfile_path(*temp));
3287 if (was_full)
3288 ensure_full_index(istate);
3290 if (ret)
3291 return ret;
3292 ret = adjust_shared_perm(get_tempfile_path(*temp));
3293 if (ret) {
3294 error(_("cannot fix permission bits on '%s'"), get_tempfile_path(*temp));
3295 return ret;
3297 ret = rename_tempfile(temp,
3298 git_path("sharedindex.%s", oid_to_hex(&si->base->oid)));
3299 if (!ret) {
3300 oidcpy(&si->base_oid, &si->base->oid);
3301 clean_shared_index_files(oid_to_hex(&si->base->oid));
3304 return ret;
3307 static const int default_max_percent_split_change = 20;
3309 static int too_many_not_shared_entries(struct index_state *istate)
3311 int i, not_shared = 0;
3312 int max_split = git_config_get_max_percent_split_change();
3314 switch (max_split) {
3315 case -1:
3316 /* not or badly configured: use the default value */
3317 max_split = default_max_percent_split_change;
3318 break;
3319 case 0:
3320 return 1; /* 0% means always write a new shared index */
3321 case 100:
3322 return 0; /* 100% means never write a new shared index */
3323 default:
3324 break; /* just use the configured value */
3327 /* Count not shared entries */
3328 for (i = 0; i < istate->cache_nr; i++) {
3329 struct cache_entry *ce = istate->cache[i];
3330 if (!ce->index)
3331 not_shared++;
3334 return (int64_t)istate->cache_nr * max_split < (int64_t)not_shared * 100;
3337 int write_locked_index(struct index_state *istate, struct lock_file *lock,
3338 unsigned flags)
3340 int new_shared_index, ret, test_split_index_env;
3341 struct split_index *si = istate->split_index;
3343 if (git_env_bool("GIT_TEST_CHECK_CACHE_TREE", 0))
3344 cache_tree_verify(the_repository, istate);
3346 if ((flags & SKIP_IF_UNCHANGED) && !istate->cache_changed) {
3347 if (flags & COMMIT_LOCK)
3348 rollback_lock_file(lock);
3349 return 0;
3352 if (istate->fsmonitor_last_update)
3353 fill_fsmonitor_bitmap(istate);
3355 test_split_index_env = git_env_bool("GIT_TEST_SPLIT_INDEX", 0);
3357 if ((!si && !test_split_index_env) ||
3358 alternate_index_output ||
3359 (istate->cache_changed & ~EXTMASK)) {
3360 if (si)
3361 oidclr(&si->base_oid);
3362 ret = do_write_locked_index(istate, lock, flags);
3363 goto out;
3366 if (test_split_index_env) {
3367 if (!si) {
3368 si = init_split_index(istate);
3369 istate->cache_changed |= SPLIT_INDEX_ORDERED;
3370 } else {
3371 int v = si->base_oid.hash[0];
3372 if ((v & 15) < 6)
3373 istate->cache_changed |= SPLIT_INDEX_ORDERED;
3376 if (too_many_not_shared_entries(istate))
3377 istate->cache_changed |= SPLIT_INDEX_ORDERED;
3379 new_shared_index = istate->cache_changed & SPLIT_INDEX_ORDERED;
3381 if (new_shared_index) {
3382 struct tempfile *temp;
3383 int saved_errno;
3385 /* Same initial permissions as the main .git/index file */
3386 temp = mks_tempfile_sm(git_path("sharedindex_XXXXXX"), 0, 0666);
3387 if (!temp) {
3388 oidclr(&si->base_oid);
3389 ret = do_write_locked_index(istate, lock, flags);
3390 goto out;
3392 ret = write_shared_index(istate, &temp, flags);
3394 saved_errno = errno;
3395 if (is_tempfile_active(temp))
3396 delete_tempfile(&temp);
3397 errno = saved_errno;
3399 if (ret)
3400 goto out;
3403 ret = write_split_index(istate, lock, flags);
3405 /* Freshen the shared index only if the split-index was written */
3406 if (!ret && !new_shared_index && !is_null_oid(&si->base_oid)) {
3407 const char *shared_index = git_path("sharedindex.%s",
3408 oid_to_hex(&si->base_oid));
3409 freshen_shared_index(shared_index, 1);
3412 out:
3413 if (flags & COMMIT_LOCK)
3414 rollback_lock_file(lock);
3415 return ret;
3419 * Read the index file that is potentially unmerged into given
3420 * index_state, dropping any unmerged entries to stage #0 (potentially
3421 * resulting in a path appearing as both a file and a directory in the
3422 * index; the caller is responsible to clear out the extra entries
3423 * before writing the index to a tree). Returns true if the index is
3424 * unmerged. Callers who want to refuse to work from an unmerged
3425 * state can call this and check its return value, instead of calling
3426 * read_cache().
3428 int repo_read_index_unmerged(struct repository *repo)
3430 struct index_state *istate;
3431 int i;
3432 int unmerged = 0;
3434 repo_read_index(repo);
3435 istate = repo->index;
3436 for (i = 0; i < istate->cache_nr; i++) {
3437 struct cache_entry *ce = istate->cache[i];
3438 struct cache_entry *new_ce;
3439 int len;
3441 if (!ce_stage(ce))
3442 continue;
3443 unmerged = 1;
3444 len = ce_namelen(ce);
3445 new_ce = make_empty_cache_entry(istate, len);
3446 memcpy(new_ce->name, ce->name, len);
3447 new_ce->ce_flags = create_ce_flags(0) | CE_CONFLICTED;
3448 new_ce->ce_namelen = len;
3449 new_ce->ce_mode = ce->ce_mode;
3450 if (add_index_entry(istate, new_ce, ADD_CACHE_SKIP_DFCHECK))
3451 return error(_("%s: cannot drop to stage #0"),
3452 new_ce->name);
3454 return unmerged;
3458 * Returns 1 if the path is an "other" path with respect to
3459 * the index; that is, the path is not mentioned in the index at all,
3460 * either as a file, a directory with some files in the index,
3461 * or as an unmerged entry.
3463 * We helpfully remove a trailing "/" from directories so that
3464 * the output of read_directory can be used as-is.
3466 int index_name_is_other(struct index_state *istate, const char *name,
3467 int namelen)
3469 int pos;
3470 if (namelen && name[namelen - 1] == '/')
3471 namelen--;
3472 pos = index_name_pos(istate, name, namelen);
3473 if (0 <= pos)
3474 return 0; /* exact match */
3475 pos = -pos - 1;
3476 if (pos < istate->cache_nr) {
3477 struct cache_entry *ce = istate->cache[pos];
3478 if (ce_namelen(ce) == namelen &&
3479 !memcmp(ce->name, name, namelen))
3480 return 0; /* Yup, this one exists unmerged */
3482 return 1;
3485 void *read_blob_data_from_index(struct index_state *istate,
3486 const char *path, unsigned long *size)
3488 int pos, len;
3489 unsigned long sz;
3490 enum object_type type;
3491 void *data;
3493 len = strlen(path);
3494 pos = index_name_pos(istate, path, len);
3495 if (pos < 0) {
3497 * We might be in the middle of a merge, in which
3498 * case we would read stage #2 (ours).
3500 int i;
3501 for (i = -pos - 1;
3502 (pos < 0 && i < istate->cache_nr &&
3503 !strcmp(istate->cache[i]->name, path));
3504 i++)
3505 if (ce_stage(istate->cache[i]) == 2)
3506 pos = i;
3508 if (pos < 0)
3509 return NULL;
3510 data = repo_read_object_file(the_repository, &istate->cache[pos]->oid,
3511 &type, &sz);
3512 if (!data || type != OBJ_BLOB) {
3513 free(data);
3514 return NULL;
3516 if (size)
3517 *size = sz;
3518 return data;
3521 void stat_validity_clear(struct stat_validity *sv)
3523 FREE_AND_NULL(sv->sd);
3526 int stat_validity_check(struct stat_validity *sv, const char *path)
3528 struct stat st;
3530 if (stat(path, &st) < 0)
3531 return sv->sd == NULL;
3532 if (!sv->sd)
3533 return 0;
3534 return S_ISREG(st.st_mode) && !match_stat_data(sv->sd, &st);
3537 void stat_validity_update(struct stat_validity *sv, int fd)
3539 struct stat st;
3541 if (fstat(fd, &st) < 0 || !S_ISREG(st.st_mode))
3542 stat_validity_clear(sv);
3543 else {
3544 if (!sv->sd)
3545 CALLOC_ARRAY(sv->sd, 1);
3546 fill_stat_data(sv->sd, &st);
3550 void move_index_extensions(struct index_state *dst, struct index_state *src)
3552 dst->untracked = src->untracked;
3553 src->untracked = NULL;
3554 dst->cache_tree = src->cache_tree;
3555 src->cache_tree = NULL;
3558 struct cache_entry *dup_cache_entry(const struct cache_entry *ce,
3559 struct index_state *istate)
3561 unsigned int size = ce_size(ce);
3562 int mem_pool_allocated;
3563 struct cache_entry *new_entry = make_empty_cache_entry(istate, ce_namelen(ce));
3564 mem_pool_allocated = new_entry->mem_pool_allocated;
3566 memcpy(new_entry, ce, size);
3567 new_entry->mem_pool_allocated = mem_pool_allocated;
3568 return new_entry;
3571 void discard_cache_entry(struct cache_entry *ce)
3573 if (ce && should_validate_cache_entries())
3574 memset(ce, 0xCD, cache_entry_size(ce->ce_namelen));
3576 if (ce && ce->mem_pool_allocated)
3577 return;
3579 free(ce);
3582 int should_validate_cache_entries(void)
3584 static int validate_index_cache_entries = -1;
3586 if (validate_index_cache_entries < 0) {
3587 if (getenv("GIT_TEST_VALIDATE_INDEX_CACHE_ENTRIES"))
3588 validate_index_cache_entries = 1;
3589 else
3590 validate_index_cache_entries = 0;
3593 return validate_index_cache_entries;
3596 #define EOIE_SIZE (4 + GIT_SHA1_RAWSZ) /* <4-byte offset> + <20-byte hash> */
3597 #define EOIE_SIZE_WITH_HEADER (4 + 4 + EOIE_SIZE) /* <4-byte signature> + <4-byte length> + EOIE_SIZE */
3599 static size_t read_eoie_extension(const char *mmap, size_t mmap_size)
3602 * The end of index entries (EOIE) extension is guaranteed to be last
3603 * so that it can be found by scanning backwards from the EOF.
3605 * "EOIE"
3606 * <4-byte length>
3607 * <4-byte offset>
3608 * <20-byte hash>
3610 const char *index, *eoie;
3611 uint32_t extsize;
3612 size_t offset, src_offset;
3613 unsigned char hash[GIT_MAX_RAWSZ];
3614 git_hash_ctx c;
3616 /* ensure we have an index big enough to contain an EOIE extension */
3617 if (mmap_size < sizeof(struct cache_header) + EOIE_SIZE_WITH_HEADER + the_hash_algo->rawsz)
3618 return 0;
3620 /* validate the extension signature */
3621 index = eoie = mmap + mmap_size - EOIE_SIZE_WITH_HEADER - the_hash_algo->rawsz;
3622 if (CACHE_EXT(index) != CACHE_EXT_ENDOFINDEXENTRIES)
3623 return 0;
3624 index += sizeof(uint32_t);
3626 /* validate the extension size */
3627 extsize = get_be32(index);
3628 if (extsize != EOIE_SIZE)
3629 return 0;
3630 index += sizeof(uint32_t);
3633 * Validate the offset we're going to look for the first extension
3634 * signature is after the index header and before the eoie extension.
3636 offset = get_be32(index);
3637 if (mmap + offset < mmap + sizeof(struct cache_header))
3638 return 0;
3639 if (mmap + offset >= eoie)
3640 return 0;
3641 index += sizeof(uint32_t);
3644 * The hash is computed over extension types and their sizes (but not
3645 * their contents). E.g. if we have "TREE" extension that is N-bytes
3646 * long, "REUC" extension that is M-bytes long, followed by "EOIE",
3647 * then the hash would be:
3649 * SHA-1("TREE" + <binary representation of N> +
3650 * "REUC" + <binary representation of M>)
3652 src_offset = offset;
3653 the_hash_algo->init_fn(&c);
3654 while (src_offset < mmap_size - the_hash_algo->rawsz - EOIE_SIZE_WITH_HEADER) {
3655 /* After an array of active_nr index entries,
3656 * there can be arbitrary number of extended
3657 * sections, each of which is prefixed with
3658 * extension name (4-byte) and section length
3659 * in 4-byte network byte order.
3661 uint32_t extsize;
3662 memcpy(&extsize, mmap + src_offset + 4, 4);
3663 extsize = ntohl(extsize);
3665 /* verify the extension size isn't so large it will wrap around */
3666 if (src_offset + 8 + extsize < src_offset)
3667 return 0;
3669 the_hash_algo->update_fn(&c, mmap + src_offset, 8);
3671 src_offset += 8;
3672 src_offset += extsize;
3674 the_hash_algo->final_fn(hash, &c);
3675 if (!hasheq(hash, (const unsigned char *)index))
3676 return 0;
3678 /* Validate that the extension offsets returned us back to the eoie extension. */
3679 if (src_offset != mmap_size - the_hash_algo->rawsz - EOIE_SIZE_WITH_HEADER)
3680 return 0;
3682 return offset;
3685 static void write_eoie_extension(struct strbuf *sb, git_hash_ctx *eoie_context, size_t offset)
3687 uint32_t buffer;
3688 unsigned char hash[GIT_MAX_RAWSZ];
3690 /* offset */
3691 put_be32(&buffer, offset);
3692 strbuf_add(sb, &buffer, sizeof(uint32_t));
3694 /* hash */
3695 the_hash_algo->final_fn(hash, eoie_context);
3696 strbuf_add(sb, hash, the_hash_algo->rawsz);
3699 #define IEOT_VERSION (1)
3701 static struct index_entry_offset_table *read_ieot_extension(const char *mmap, size_t mmap_size, size_t offset)
3703 const char *index = NULL;
3704 uint32_t extsize, ext_version;
3705 struct index_entry_offset_table *ieot;
3706 int i, nr;
3708 /* find the IEOT extension */
3709 if (!offset)
3710 return NULL;
3711 while (offset <= mmap_size - the_hash_algo->rawsz - 8) {
3712 extsize = get_be32(mmap + offset + 4);
3713 if (CACHE_EXT((mmap + offset)) == CACHE_EXT_INDEXENTRYOFFSETTABLE) {
3714 index = mmap + offset + 4 + 4;
3715 break;
3717 offset += 8;
3718 offset += extsize;
3720 if (!index)
3721 return NULL;
3723 /* validate the version is IEOT_VERSION */
3724 ext_version = get_be32(index);
3725 if (ext_version != IEOT_VERSION) {
3726 error("invalid IEOT version %d", ext_version);
3727 return NULL;
3729 index += sizeof(uint32_t);
3731 /* extension size - version bytes / bytes per entry */
3732 nr = (extsize - sizeof(uint32_t)) / (sizeof(uint32_t) + sizeof(uint32_t));
3733 if (!nr) {
3734 error("invalid number of IEOT entries %d", nr);
3735 return NULL;
3737 ieot = xmalloc(sizeof(struct index_entry_offset_table)
3738 + (nr * sizeof(struct index_entry_offset)));
3739 ieot->nr = nr;
3740 for (i = 0; i < nr; i++) {
3741 ieot->entries[i].offset = get_be32(index);
3742 index += sizeof(uint32_t);
3743 ieot->entries[i].nr = get_be32(index);
3744 index += sizeof(uint32_t);
3747 return ieot;
3750 static void write_ieot_extension(struct strbuf *sb, struct index_entry_offset_table *ieot)
3752 uint32_t buffer;
3753 int i;
3755 /* version */
3756 put_be32(&buffer, IEOT_VERSION);
3757 strbuf_add(sb, &buffer, sizeof(uint32_t));
3759 /* ieot */
3760 for (i = 0; i < ieot->nr; i++) {
3762 /* offset */
3763 put_be32(&buffer, ieot->entries[i].offset);
3764 strbuf_add(sb, &buffer, sizeof(uint32_t));
3766 /* count */
3767 put_be32(&buffer, ieot->entries[i].nr);
3768 strbuf_add(sb, &buffer, sizeof(uint32_t));
3772 void prefetch_cache_entries(const struct index_state *istate,
3773 must_prefetch_predicate must_prefetch)
3775 int i;
3776 struct oid_array to_fetch = OID_ARRAY_INIT;
3778 for (i = 0; i < istate->cache_nr; i++) {
3779 struct cache_entry *ce = istate->cache[i];
3781 if (S_ISGITLINK(ce->ce_mode) || !must_prefetch(ce))
3782 continue;
3783 if (!oid_object_info_extended(the_repository, &ce->oid,
3784 NULL,
3785 OBJECT_INFO_FOR_PREFETCH))
3786 continue;
3787 oid_array_append(&to_fetch, &ce->oid);
3789 promisor_remote_get_direct(the_repository,
3790 to_fetch.oid, to_fetch.nr);
3791 oid_array_clear(&to_fetch);