Git 2.42.2
[git.git] / read-cache.c
blobbdd983e1d3a6455e7d4d6d28383d1e8e3561cfb6
1 /*
2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
5 */
6 #include "git-compat-util.h"
7 #include "bulk-checkin.h"
8 #include "config.h"
9 #include "date.h"
10 #include "diff.h"
11 #include "diffcore.h"
12 #include "hex.h"
13 #include "tempfile.h"
14 #include "lockfile.h"
15 #include "cache-tree.h"
16 #include "refs.h"
17 #include "dir.h"
18 #include "object-file.h"
19 #include "object-store-ll.h"
20 #include "oid-array.h"
21 #include "tree.h"
22 #include "commit.h"
23 #include "blob.h"
24 #include "environment.h"
25 #include "gettext.h"
26 #include "mem-pool.h"
27 #include "name-hash.h"
28 #include "object-name.h"
29 #include "path.h"
30 #include "preload-index.h"
31 #include "read-cache.h"
32 #include "resolve-undo.h"
33 #include "revision.h"
34 #include "run-command.h"
35 #include "strbuf.h"
36 #include "trace2.h"
37 #include "varint.h"
38 #include "split-index.h"
39 #include "symlinks.h"
40 #include "utf8.h"
41 #include "fsmonitor.h"
42 #include "thread-utils.h"
43 #include "progress.h"
44 #include "sparse-index.h"
45 #include "csum-file.h"
46 #include "promisor-remote.h"
47 #include "hook.h"
49 /* Mask for the name length in ce_flags in the on-disk index */
51 #define CE_NAMEMASK (0x0fff)
53 /* Index extensions.
55 * The first letter should be 'A'..'Z' for extensions that are not
56 * necessary for a correct operation (i.e. optimization data).
57 * When new extensions are added that _needs_ to be understood in
58 * order to correctly interpret the index file, pick character that
59 * is outside the range, to cause the reader to abort.
62 #define CACHE_EXT(s) ( (s[0]<<24)|(s[1]<<16)|(s[2]<<8)|(s[3]) )
63 #define CACHE_EXT_TREE 0x54524545 /* "TREE" */
64 #define CACHE_EXT_RESOLVE_UNDO 0x52455543 /* "REUC" */
65 #define CACHE_EXT_LINK 0x6c696e6b /* "link" */
66 #define CACHE_EXT_UNTRACKED 0x554E5452 /* "UNTR" */
67 #define CACHE_EXT_FSMONITOR 0x46534D4E /* "FSMN" */
68 #define CACHE_EXT_ENDOFINDEXENTRIES 0x454F4945 /* "EOIE" */
69 #define CACHE_EXT_INDEXENTRYOFFSETTABLE 0x49454F54 /* "IEOT" */
70 #define CACHE_EXT_SPARSE_DIRECTORIES 0x73646972 /* "sdir" */
72 /* changes that can be kept in $GIT_DIR/index (basically all extensions) */
73 #define EXTMASK (RESOLVE_UNDO_CHANGED | CACHE_TREE_CHANGED | \
74 CE_ENTRY_ADDED | CE_ENTRY_REMOVED | CE_ENTRY_CHANGED | \
75 SPLIT_INDEX_ORDERED | UNTRACKED_CHANGED | FSMONITOR_CHANGED)
79 * This is an estimate of the pathname length in the index. We use
80 * this for V4 index files to guess the un-deltafied size of the index
81 * in memory because of pathname deltafication. This is not required
82 * for V2/V3 index formats because their pathnames are not compressed.
83 * If the initial amount of memory set aside is not sufficient, the
84 * mem pool will allocate extra memory.
86 #define CACHE_ENTRY_PATH_LENGTH 80
88 enum index_search_mode {
89 NO_EXPAND_SPARSE = 0,
90 EXPAND_SPARSE = 1
93 static inline struct cache_entry *mem_pool__ce_alloc(struct mem_pool *mem_pool, size_t len)
95 struct cache_entry *ce;
96 ce = mem_pool_alloc(mem_pool, cache_entry_size(len));
97 ce->mem_pool_allocated = 1;
98 return ce;
101 static inline struct cache_entry *mem_pool__ce_calloc(struct mem_pool *mem_pool, size_t len)
103 struct cache_entry * ce;
104 ce = mem_pool_calloc(mem_pool, 1, cache_entry_size(len));
105 ce->mem_pool_allocated = 1;
106 return ce;
109 static struct mem_pool *find_mem_pool(struct index_state *istate)
111 struct mem_pool **pool_ptr;
113 if (istate->split_index && istate->split_index->base)
114 pool_ptr = &istate->split_index->base->ce_mem_pool;
115 else
116 pool_ptr = &istate->ce_mem_pool;
118 if (!*pool_ptr) {
119 *pool_ptr = xmalloc(sizeof(**pool_ptr));
120 mem_pool_init(*pool_ptr, 0);
123 return *pool_ptr;
126 static const char *alternate_index_output;
128 static void set_index_entry(struct index_state *istate, int nr, struct cache_entry *ce)
130 if (S_ISSPARSEDIR(ce->ce_mode))
131 istate->sparse_index = INDEX_COLLAPSED;
133 istate->cache[nr] = ce;
134 add_name_hash(istate, ce);
137 static void replace_index_entry(struct index_state *istate, int nr, struct cache_entry *ce)
139 struct cache_entry *old = istate->cache[nr];
141 replace_index_entry_in_base(istate, old, ce);
142 remove_name_hash(istate, old);
143 discard_cache_entry(old);
144 ce->ce_flags &= ~CE_HASHED;
145 set_index_entry(istate, nr, ce);
146 ce->ce_flags |= CE_UPDATE_IN_BASE;
147 mark_fsmonitor_invalid(istate, ce);
148 istate->cache_changed |= CE_ENTRY_CHANGED;
151 void rename_index_entry_at(struct index_state *istate, int nr, const char *new_name)
153 struct cache_entry *old_entry = istate->cache[nr], *new_entry, *refreshed;
154 int namelen = strlen(new_name);
156 new_entry = make_empty_cache_entry(istate, namelen);
157 copy_cache_entry(new_entry, old_entry);
158 new_entry->ce_flags &= ~CE_HASHED;
159 new_entry->ce_namelen = namelen;
160 new_entry->index = 0;
161 memcpy(new_entry->name, new_name, namelen + 1);
163 cache_tree_invalidate_path(istate, old_entry->name);
164 untracked_cache_remove_from_index(istate, old_entry->name);
165 remove_index_entry_at(istate, nr);
168 * Refresh the new index entry. Using 'refresh_cache_entry' ensures
169 * we only update stat info if the entry is otherwise up-to-date (i.e.,
170 * the contents/mode haven't changed). This ensures that we reflect the
171 * 'ctime' of the rename in the index without (incorrectly) updating
172 * the cached stat info to reflect unstaged changes on disk.
174 refreshed = refresh_cache_entry(istate, new_entry, CE_MATCH_REFRESH);
175 if (refreshed && refreshed != new_entry) {
176 add_index_entry(istate, refreshed, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);
177 discard_cache_entry(new_entry);
178 } else
179 add_index_entry(istate, new_entry, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);
183 * This only updates the "non-critical" parts of the directory
184 * cache, ie the parts that aren't tracked by GIT, and only used
185 * to validate the cache.
187 void fill_stat_cache_info(struct index_state *istate, struct cache_entry *ce, struct stat *st)
189 fill_stat_data(&ce->ce_stat_data, st);
191 if (assume_unchanged)
192 ce->ce_flags |= CE_VALID;
194 if (S_ISREG(st->st_mode)) {
195 ce_mark_uptodate(ce);
196 mark_fsmonitor_valid(istate, ce);
200 static int ce_compare_data(struct index_state *istate,
201 const struct cache_entry *ce,
202 struct stat *st)
204 int match = -1;
205 int fd = git_open_cloexec(ce->name, O_RDONLY);
207 if (fd >= 0) {
208 struct object_id oid;
209 if (!index_fd(istate, &oid, fd, st, OBJ_BLOB, ce->name, 0))
210 match = !oideq(&oid, &ce->oid);
211 /* index_fd() closed the file descriptor already */
213 return match;
216 static int ce_compare_link(const struct cache_entry *ce, size_t expected_size)
218 int match = -1;
219 void *buffer;
220 unsigned long size;
221 enum object_type type;
222 struct strbuf sb = STRBUF_INIT;
224 if (strbuf_readlink(&sb, ce->name, expected_size))
225 return -1;
227 buffer = repo_read_object_file(the_repository, &ce->oid, &type, &size);
228 if (buffer) {
229 if (size == sb.len)
230 match = memcmp(buffer, sb.buf, size);
231 free(buffer);
233 strbuf_release(&sb);
234 return match;
237 static int ce_compare_gitlink(const struct cache_entry *ce)
239 struct object_id oid;
242 * We don't actually require that the .git directory
243 * under GITLINK directory be a valid git directory. It
244 * might even be missing (in case nobody populated that
245 * sub-project).
247 * If so, we consider it always to match.
249 if (resolve_gitlink_ref(ce->name, "HEAD", &oid) < 0)
250 return 0;
251 return !oideq(&oid, &ce->oid);
254 static int ce_modified_check_fs(struct index_state *istate,
255 const struct cache_entry *ce,
256 struct stat *st)
258 switch (st->st_mode & S_IFMT) {
259 case S_IFREG:
260 if (ce_compare_data(istate, ce, st))
261 return DATA_CHANGED;
262 break;
263 case S_IFLNK:
264 if (ce_compare_link(ce, xsize_t(st->st_size)))
265 return DATA_CHANGED;
266 break;
267 case S_IFDIR:
268 if (S_ISGITLINK(ce->ce_mode))
269 return ce_compare_gitlink(ce) ? DATA_CHANGED : 0;
270 /* else fallthrough */
271 default:
272 return TYPE_CHANGED;
274 return 0;
277 static int ce_match_stat_basic(const struct cache_entry *ce, struct stat *st)
279 unsigned int changed = 0;
281 if (ce->ce_flags & CE_REMOVE)
282 return MODE_CHANGED | DATA_CHANGED | TYPE_CHANGED;
284 switch (ce->ce_mode & S_IFMT) {
285 case S_IFREG:
286 changed |= !S_ISREG(st->st_mode) ? TYPE_CHANGED : 0;
287 /* We consider only the owner x bit to be relevant for
288 * "mode changes"
290 if (trust_executable_bit &&
291 (0100 & (ce->ce_mode ^ st->st_mode)))
292 changed |= MODE_CHANGED;
293 break;
294 case S_IFLNK:
295 if (!S_ISLNK(st->st_mode) &&
296 (has_symlinks || !S_ISREG(st->st_mode)))
297 changed |= TYPE_CHANGED;
298 break;
299 case S_IFGITLINK:
300 /* We ignore most of the st_xxx fields for gitlinks */
301 if (!S_ISDIR(st->st_mode))
302 changed |= TYPE_CHANGED;
303 else if (ce_compare_gitlink(ce))
304 changed |= DATA_CHANGED;
305 return changed;
306 default:
307 BUG("unsupported ce_mode: %o", ce->ce_mode);
310 changed |= match_stat_data(&ce->ce_stat_data, st);
312 /* Racily smudged entry? */
313 if (!ce->ce_stat_data.sd_size) {
314 if (!is_empty_blob_sha1(ce->oid.hash))
315 changed |= DATA_CHANGED;
318 return changed;
321 static int is_racy_stat(const struct index_state *istate,
322 const struct stat_data *sd)
324 return (istate->timestamp.sec &&
325 #ifdef USE_NSEC
326 /* nanosecond timestamped files can also be racy! */
327 (istate->timestamp.sec < sd->sd_mtime.sec ||
328 (istate->timestamp.sec == sd->sd_mtime.sec &&
329 istate->timestamp.nsec <= sd->sd_mtime.nsec))
330 #else
331 istate->timestamp.sec <= sd->sd_mtime.sec
332 #endif
336 int is_racy_timestamp(const struct index_state *istate,
337 const struct cache_entry *ce)
339 return (!S_ISGITLINK(ce->ce_mode) &&
340 is_racy_stat(istate, &ce->ce_stat_data));
343 int match_stat_data_racy(const struct index_state *istate,
344 const struct stat_data *sd, struct stat *st)
346 if (is_racy_stat(istate, sd))
347 return MTIME_CHANGED;
348 return match_stat_data(sd, st);
351 int ie_match_stat(struct index_state *istate,
352 const struct cache_entry *ce, struct stat *st,
353 unsigned int options)
355 unsigned int changed;
356 int ignore_valid = options & CE_MATCH_IGNORE_VALID;
357 int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE;
358 int assume_racy_is_modified = options & CE_MATCH_RACY_IS_DIRTY;
359 int ignore_fsmonitor = options & CE_MATCH_IGNORE_FSMONITOR;
361 if (!ignore_fsmonitor)
362 refresh_fsmonitor(istate);
364 * If it's marked as always valid in the index, it's
365 * valid whatever the checked-out copy says.
367 * skip-worktree has the same effect with higher precedence
369 if (!ignore_skip_worktree && ce_skip_worktree(ce))
370 return 0;
371 if (!ignore_valid && (ce->ce_flags & CE_VALID))
372 return 0;
373 if (!ignore_fsmonitor && (ce->ce_flags & CE_FSMONITOR_VALID))
374 return 0;
377 * Intent-to-add entries have not been added, so the index entry
378 * by definition never matches what is in the work tree until it
379 * actually gets added.
381 if (ce_intent_to_add(ce))
382 return DATA_CHANGED | TYPE_CHANGED | MODE_CHANGED;
384 changed = ce_match_stat_basic(ce, st);
387 * Within 1 second of this sequence:
388 * echo xyzzy >file && git-update-index --add file
389 * running this command:
390 * echo frotz >file
391 * would give a falsely clean cache entry. The mtime and
392 * length match the cache, and other stat fields do not change.
394 * We could detect this at update-index time (the cache entry
395 * being registered/updated records the same time as "now")
396 * and delay the return from git-update-index, but that would
397 * effectively mean we can make at most one commit per second,
398 * which is not acceptable. Instead, we check cache entries
399 * whose mtime are the same as the index file timestamp more
400 * carefully than others.
402 if (!changed && is_racy_timestamp(istate, ce)) {
403 if (assume_racy_is_modified)
404 changed |= DATA_CHANGED;
405 else
406 changed |= ce_modified_check_fs(istate, ce, st);
409 return changed;
412 int ie_modified(struct index_state *istate,
413 const struct cache_entry *ce,
414 struct stat *st, unsigned int options)
416 int changed, changed_fs;
418 changed = ie_match_stat(istate, ce, st, options);
419 if (!changed)
420 return 0;
422 * If the mode or type has changed, there's no point in trying
423 * to refresh the entry - it's not going to match
425 if (changed & (MODE_CHANGED | TYPE_CHANGED))
426 return changed;
429 * Immediately after read-tree or update-index --cacheinfo,
430 * the length field is zero, as we have never even read the
431 * lstat(2) information once, and we cannot trust DATA_CHANGED
432 * returned by ie_match_stat() which in turn was returned by
433 * ce_match_stat_basic() to signal that the filesize of the
434 * blob changed. We have to actually go to the filesystem to
435 * see if the contents match, and if so, should answer "unchanged".
437 * The logic does not apply to gitlinks, as ce_match_stat_basic()
438 * already has checked the actual HEAD from the filesystem in the
439 * subproject. If ie_match_stat() already said it is different,
440 * then we know it is.
442 if ((changed & DATA_CHANGED) &&
443 (S_ISGITLINK(ce->ce_mode) || ce->ce_stat_data.sd_size != 0))
444 return changed;
446 changed_fs = ce_modified_check_fs(istate, ce, st);
447 if (changed_fs)
448 return changed | changed_fs;
449 return 0;
452 static int cache_name_stage_compare(const char *name1, int len1, int stage1,
453 const char *name2, int len2, int stage2)
455 int cmp;
457 cmp = name_compare(name1, len1, name2, len2);
458 if (cmp)
459 return cmp;
461 if (stage1 < stage2)
462 return -1;
463 if (stage1 > stage2)
464 return 1;
465 return 0;
468 int cmp_cache_name_compare(const void *a_, const void *b_)
470 const struct cache_entry *ce1, *ce2;
472 ce1 = *((const struct cache_entry **)a_);
473 ce2 = *((const struct cache_entry **)b_);
474 return cache_name_stage_compare(ce1->name, ce1->ce_namelen, ce_stage(ce1),
475 ce2->name, ce2->ce_namelen, ce_stage(ce2));
478 static int index_name_stage_pos(struct index_state *istate,
479 const char *name, int namelen,
480 int stage,
481 enum index_search_mode search_mode)
483 int first, last;
485 first = 0;
486 last = istate->cache_nr;
487 while (last > first) {
488 int next = first + ((last - first) >> 1);
489 struct cache_entry *ce = istate->cache[next];
490 int cmp = cache_name_stage_compare(name, namelen, stage, ce->name, ce_namelen(ce), ce_stage(ce));
491 if (!cmp)
492 return next;
493 if (cmp < 0) {
494 last = next;
495 continue;
497 first = next+1;
500 if (search_mode == EXPAND_SPARSE && istate->sparse_index &&
501 first > 0) {
502 /* Note: first <= istate->cache_nr */
503 struct cache_entry *ce = istate->cache[first - 1];
506 * If we are in a sparse-index _and_ the entry before the
507 * insertion position is a sparse-directory entry that is
508 * an ancestor of 'name', then we need to expand the index
509 * and search again. This will only trigger once, because
510 * thereafter the index is fully expanded.
512 if (S_ISSPARSEDIR(ce->ce_mode) &&
513 ce_namelen(ce) < namelen &&
514 !strncmp(name, ce->name, ce_namelen(ce))) {
515 ensure_full_index(istate);
516 return index_name_stage_pos(istate, name, namelen, stage, search_mode);
520 return -first-1;
523 int index_name_pos(struct index_state *istate, const char *name, int namelen)
525 return index_name_stage_pos(istate, name, namelen, 0, EXPAND_SPARSE);
528 int index_name_pos_sparse(struct index_state *istate, const char *name, int namelen)
530 return index_name_stage_pos(istate, name, namelen, 0, NO_EXPAND_SPARSE);
533 int index_entry_exists(struct index_state *istate, const char *name, int namelen)
535 return index_name_stage_pos(istate, name, namelen, 0, NO_EXPAND_SPARSE) >= 0;
538 int remove_index_entry_at(struct index_state *istate, int pos)
540 struct cache_entry *ce = istate->cache[pos];
542 record_resolve_undo(istate, ce);
543 remove_name_hash(istate, ce);
544 save_or_free_index_entry(istate, ce);
545 istate->cache_changed |= CE_ENTRY_REMOVED;
546 istate->cache_nr--;
547 if (pos >= istate->cache_nr)
548 return 0;
549 MOVE_ARRAY(istate->cache + pos, istate->cache + pos + 1,
550 istate->cache_nr - pos);
551 return 1;
555 * Remove all cache entries marked for removal, that is where
556 * CE_REMOVE is set in ce_flags. This is much more effective than
557 * calling remove_index_entry_at() for each entry to be removed.
559 void remove_marked_cache_entries(struct index_state *istate, int invalidate)
561 struct cache_entry **ce_array = istate->cache;
562 unsigned int i, j;
564 for (i = j = 0; i < istate->cache_nr; i++) {
565 if (ce_array[i]->ce_flags & CE_REMOVE) {
566 if (invalidate) {
567 cache_tree_invalidate_path(istate,
568 ce_array[i]->name);
569 untracked_cache_remove_from_index(istate,
570 ce_array[i]->name);
572 remove_name_hash(istate, ce_array[i]);
573 save_or_free_index_entry(istate, ce_array[i]);
575 else
576 ce_array[j++] = ce_array[i];
578 if (j == istate->cache_nr)
579 return;
580 istate->cache_changed |= CE_ENTRY_REMOVED;
581 istate->cache_nr = j;
584 int remove_file_from_index(struct index_state *istate, const char *path)
586 int pos = index_name_pos(istate, path, strlen(path));
587 if (pos < 0)
588 pos = -pos-1;
589 cache_tree_invalidate_path(istate, path);
590 untracked_cache_remove_from_index(istate, path);
591 while (pos < istate->cache_nr && !strcmp(istate->cache[pos]->name, path))
592 remove_index_entry_at(istate, pos);
593 return 0;
596 static int compare_name(struct cache_entry *ce, const char *path, int namelen)
598 return namelen != ce_namelen(ce) || memcmp(path, ce->name, namelen);
601 static int index_name_pos_also_unmerged(struct index_state *istate,
602 const char *path, int namelen)
604 int pos = index_name_pos(istate, path, namelen);
605 struct cache_entry *ce;
607 if (pos >= 0)
608 return pos;
610 /* maybe unmerged? */
611 pos = -1 - pos;
612 if (pos >= istate->cache_nr ||
613 compare_name((ce = istate->cache[pos]), path, namelen))
614 return -1;
616 /* order of preference: stage 2, 1, 3 */
617 if (ce_stage(ce) == 1 && pos + 1 < istate->cache_nr &&
618 ce_stage((ce = istate->cache[pos + 1])) == 2 &&
619 !compare_name(ce, path, namelen))
620 pos++;
621 return pos;
624 static int different_name(struct cache_entry *ce, struct cache_entry *alias)
626 int len = ce_namelen(ce);
627 return ce_namelen(alias) != len || memcmp(ce->name, alias->name, len);
631 * If we add a filename that aliases in the cache, we will use the
632 * name that we already have - but we don't want to update the same
633 * alias twice, because that implies that there were actually two
634 * different files with aliasing names!
636 * So we use the CE_ADDED flag to verify that the alias was an old
637 * one before we accept it as
639 static struct cache_entry *create_alias_ce(struct index_state *istate,
640 struct cache_entry *ce,
641 struct cache_entry *alias)
643 int len;
644 struct cache_entry *new_entry;
646 if (alias->ce_flags & CE_ADDED)
647 die(_("will not add file alias '%s' ('%s' already exists in index)"),
648 ce->name, alias->name);
650 /* Ok, create the new entry using the name of the existing alias */
651 len = ce_namelen(alias);
652 new_entry = make_empty_cache_entry(istate, len);
653 memcpy(new_entry->name, alias->name, len);
654 copy_cache_entry(new_entry, ce);
655 save_or_free_index_entry(istate, ce);
656 return new_entry;
659 void set_object_name_for_intent_to_add_entry(struct cache_entry *ce)
661 struct object_id oid;
662 if (write_object_file("", 0, OBJ_BLOB, &oid))
663 die(_("cannot create an empty blob in the object database"));
664 oidcpy(&ce->oid, &oid);
667 int add_to_index(struct index_state *istate, const char *path, struct stat *st, int flags)
669 int namelen, was_same;
670 mode_t st_mode = st->st_mode;
671 struct cache_entry *ce, *alias = NULL;
672 unsigned ce_option = CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE|CE_MATCH_RACY_IS_DIRTY;
673 int verbose = flags & (ADD_CACHE_VERBOSE | ADD_CACHE_PRETEND);
674 int pretend = flags & ADD_CACHE_PRETEND;
675 int intent_only = flags & ADD_CACHE_INTENT;
676 int add_option = (ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE|
677 (intent_only ? ADD_CACHE_NEW_ONLY : 0));
678 unsigned hash_flags = pretend ? 0 : HASH_WRITE_OBJECT;
679 struct object_id oid;
681 if (flags & ADD_CACHE_RENORMALIZE)
682 hash_flags |= HASH_RENORMALIZE;
684 if (!S_ISREG(st_mode) && !S_ISLNK(st_mode) && !S_ISDIR(st_mode))
685 return error(_("%s: can only add regular files, symbolic links or git-directories"), path);
687 namelen = strlen(path);
688 if (S_ISDIR(st_mode)) {
689 if (resolve_gitlink_ref(path, "HEAD", &oid) < 0)
690 return error(_("'%s' does not have a commit checked out"), path);
691 while (namelen && path[namelen-1] == '/')
692 namelen--;
694 ce = make_empty_cache_entry(istate, namelen);
695 memcpy(ce->name, path, namelen);
696 ce->ce_namelen = namelen;
697 if (!intent_only)
698 fill_stat_cache_info(istate, ce, st);
699 else
700 ce->ce_flags |= CE_INTENT_TO_ADD;
703 if (trust_executable_bit && has_symlinks) {
704 ce->ce_mode = create_ce_mode(st_mode);
705 } else {
706 /* If there is an existing entry, pick the mode bits and type
707 * from it, otherwise assume unexecutable regular file.
709 struct cache_entry *ent;
710 int pos = index_name_pos_also_unmerged(istate, path, namelen);
712 ent = (0 <= pos) ? istate->cache[pos] : NULL;
713 ce->ce_mode = ce_mode_from_stat(ent, st_mode);
716 /* When core.ignorecase=true, determine if a directory of the same name but differing
717 * case already exists within the Git repository. If it does, ensure the directory
718 * case of the file being added to the repository matches (is folded into) the existing
719 * entry's directory case.
721 if (ignore_case) {
722 adjust_dirname_case(istate, ce->name);
724 if (!(flags & ADD_CACHE_RENORMALIZE)) {
725 alias = index_file_exists(istate, ce->name,
726 ce_namelen(ce), ignore_case);
727 if (alias &&
728 !ce_stage(alias) &&
729 !ie_match_stat(istate, alias, st, ce_option)) {
730 /* Nothing changed, really */
731 if (!S_ISGITLINK(alias->ce_mode))
732 ce_mark_uptodate(alias);
733 alias->ce_flags |= CE_ADDED;
735 discard_cache_entry(ce);
736 return 0;
739 if (!intent_only) {
740 if (index_path(istate, &ce->oid, path, st, hash_flags)) {
741 discard_cache_entry(ce);
742 return error(_("unable to index file '%s'"), path);
744 } else
745 set_object_name_for_intent_to_add_entry(ce);
747 if (ignore_case && alias && different_name(ce, alias))
748 ce = create_alias_ce(istate, ce, alias);
749 ce->ce_flags |= CE_ADDED;
751 /* It was suspected to be racily clean, but it turns out to be Ok */
752 was_same = (alias &&
753 !ce_stage(alias) &&
754 oideq(&alias->oid, &ce->oid) &&
755 ce->ce_mode == alias->ce_mode);
757 if (pretend)
758 discard_cache_entry(ce);
759 else if (add_index_entry(istate, ce, add_option)) {
760 discard_cache_entry(ce);
761 return error(_("unable to add '%s' to index"), path);
763 if (verbose && !was_same)
764 printf("add '%s'\n", path);
765 return 0;
768 int add_file_to_index(struct index_state *istate, const char *path, int flags)
770 struct stat st;
771 if (lstat(path, &st))
772 die_errno(_("unable to stat '%s'"), path);
773 return add_to_index(istate, path, &st, flags);
776 struct cache_entry *make_empty_cache_entry(struct index_state *istate, size_t len)
778 return mem_pool__ce_calloc(find_mem_pool(istate), len);
781 struct cache_entry *make_empty_transient_cache_entry(size_t len,
782 struct mem_pool *ce_mem_pool)
784 if (ce_mem_pool)
785 return mem_pool__ce_calloc(ce_mem_pool, len);
786 return xcalloc(1, cache_entry_size(len));
789 enum verify_path_result {
790 PATH_OK,
791 PATH_INVALID,
792 PATH_DIR_WITH_SEP,
795 static enum verify_path_result verify_path_internal(const char *, unsigned);
797 int verify_path(const char *path, unsigned mode)
799 return verify_path_internal(path, mode) == PATH_OK;
802 struct cache_entry *make_cache_entry(struct index_state *istate,
803 unsigned int mode,
804 const struct object_id *oid,
805 const char *path,
806 int stage,
807 unsigned int refresh_options)
809 struct cache_entry *ce, *ret;
810 int len;
812 if (verify_path_internal(path, mode) == PATH_INVALID) {
813 error(_("invalid path '%s'"), path);
814 return NULL;
817 len = strlen(path);
818 ce = make_empty_cache_entry(istate, len);
820 oidcpy(&ce->oid, oid);
821 memcpy(ce->name, path, len);
822 ce->ce_flags = create_ce_flags(stage);
823 ce->ce_namelen = len;
824 ce->ce_mode = create_ce_mode(mode);
826 ret = refresh_cache_entry(istate, ce, refresh_options);
827 if (ret != ce)
828 discard_cache_entry(ce);
829 return ret;
832 struct cache_entry *make_transient_cache_entry(unsigned int mode,
833 const struct object_id *oid,
834 const char *path,
835 int stage,
836 struct mem_pool *ce_mem_pool)
838 struct cache_entry *ce;
839 int len;
841 if (!verify_path(path, mode)) {
842 error(_("invalid path '%s'"), path);
843 return NULL;
846 len = strlen(path);
847 ce = make_empty_transient_cache_entry(len, ce_mem_pool);
849 oidcpy(&ce->oid, oid);
850 memcpy(ce->name, path, len);
851 ce->ce_flags = create_ce_flags(stage);
852 ce->ce_namelen = len;
853 ce->ce_mode = create_ce_mode(mode);
855 return ce;
859 * Chmod an index entry with either +x or -x.
861 * Returns -1 if the chmod for the particular cache entry failed (if it's
862 * not a regular file), -2 if an invalid flip argument is passed in, 0
863 * otherwise.
865 int chmod_index_entry(struct index_state *istate, struct cache_entry *ce,
866 char flip)
868 if (!S_ISREG(ce->ce_mode))
869 return -1;
870 switch (flip) {
871 case '+':
872 ce->ce_mode |= 0111;
873 break;
874 case '-':
875 ce->ce_mode &= ~0111;
876 break;
877 default:
878 return -2;
880 cache_tree_invalidate_path(istate, ce->name);
881 ce->ce_flags |= CE_UPDATE_IN_BASE;
882 mark_fsmonitor_invalid(istate, ce);
883 istate->cache_changed |= CE_ENTRY_CHANGED;
885 return 0;
888 int ce_same_name(const struct cache_entry *a, const struct cache_entry *b)
890 int len = ce_namelen(a);
891 return ce_namelen(b) == len && !memcmp(a->name, b->name, len);
895 * We fundamentally don't like some paths: we don't want
896 * dot or dot-dot anywhere, and for obvious reasons don't
897 * want to recurse into ".git" either.
899 * Also, we don't want double slashes or slashes at the
900 * end that can make pathnames ambiguous.
902 static int verify_dotfile(const char *rest, unsigned mode)
905 * The first character was '.', but that
906 * has already been discarded, we now test
907 * the rest.
910 /* "." is not allowed */
911 if (*rest == '\0' || is_dir_sep(*rest))
912 return 0;
914 switch (*rest) {
916 * ".git" followed by NUL or slash is bad. Note that we match
917 * case-insensitively here, even if ignore_case is not set.
918 * This outlaws ".GIT" everywhere out of an abundance of caution,
919 * since there's really no good reason to allow it.
921 * Once we've seen ".git", we can also find ".gitmodules", etc (also
922 * case-insensitively).
924 case 'g':
925 case 'G':
926 if (rest[1] != 'i' && rest[1] != 'I')
927 break;
928 if (rest[2] != 't' && rest[2] != 'T')
929 break;
930 if (rest[3] == '\0' || is_dir_sep(rest[3]))
931 return 0;
932 if (S_ISLNK(mode)) {
933 rest += 3;
934 if (skip_iprefix(rest, "modules", &rest) &&
935 (*rest == '\0' || is_dir_sep(*rest)))
936 return 0;
938 break;
939 case '.':
940 if (rest[1] == '\0' || is_dir_sep(rest[1]))
941 return 0;
943 return 1;
946 static enum verify_path_result verify_path_internal(const char *path,
947 unsigned mode)
949 char c = 0;
951 if (has_dos_drive_prefix(path))
952 return PATH_INVALID;
954 if (!is_valid_path(path))
955 return PATH_INVALID;
957 goto inside;
958 for (;;) {
959 if (!c)
960 return PATH_OK;
961 if (is_dir_sep(c)) {
962 inside:
963 if (protect_hfs) {
965 if (is_hfs_dotgit(path))
966 return PATH_INVALID;
967 if (S_ISLNK(mode)) {
968 if (is_hfs_dotgitmodules(path))
969 return PATH_INVALID;
972 if (protect_ntfs) {
973 #if defined GIT_WINDOWS_NATIVE || defined __CYGWIN__
974 if (c == '\\')
975 return PATH_INVALID;
976 #endif
977 if (is_ntfs_dotgit(path))
978 return PATH_INVALID;
979 if (S_ISLNK(mode)) {
980 if (is_ntfs_dotgitmodules(path))
981 return PATH_INVALID;
985 c = *path++;
986 if ((c == '.' && !verify_dotfile(path, mode)) ||
987 is_dir_sep(c))
988 return PATH_INVALID;
990 * allow terminating directory separators for
991 * sparse directory entries.
993 if (c == '\0')
994 return S_ISDIR(mode) ? PATH_DIR_WITH_SEP :
995 PATH_INVALID;
996 } else if (c == '\\' && protect_ntfs) {
997 if (is_ntfs_dotgit(path))
998 return PATH_INVALID;
999 if (S_ISLNK(mode)) {
1000 if (is_ntfs_dotgitmodules(path))
1001 return PATH_INVALID;
1005 c = *path++;
1010 * Do we have another file that has the beginning components being a
1011 * proper superset of the name we're trying to add?
1013 static int has_file_name(struct index_state *istate,
1014 const struct cache_entry *ce, int pos, int ok_to_replace)
1016 int retval = 0;
1017 int len = ce_namelen(ce);
1018 int stage = ce_stage(ce);
1019 const char *name = ce->name;
1021 while (pos < istate->cache_nr) {
1022 struct cache_entry *p = istate->cache[pos++];
1024 if (len >= ce_namelen(p))
1025 break;
1026 if (memcmp(name, p->name, len))
1027 break;
1028 if (ce_stage(p) != stage)
1029 continue;
1030 if (p->name[len] != '/')
1031 continue;
1032 if (p->ce_flags & CE_REMOVE)
1033 continue;
1034 retval = -1;
1035 if (!ok_to_replace)
1036 break;
1037 remove_index_entry_at(istate, --pos);
1039 return retval;
1044 * Like strcmp(), but also return the offset of the first change.
1045 * If strings are equal, return the length.
1047 int strcmp_offset(const char *s1, const char *s2, size_t *first_change)
1049 size_t k;
1051 if (!first_change)
1052 return strcmp(s1, s2);
1054 for (k = 0; s1[k] == s2[k]; k++)
1055 if (s1[k] == '\0')
1056 break;
1058 *first_change = k;
1059 return (unsigned char)s1[k] - (unsigned char)s2[k];
1063 * Do we have another file with a pathname that is a proper
1064 * subset of the name we're trying to add?
1066 * That is, is there another file in the index with a path
1067 * that matches a sub-directory in the given entry?
1069 static int has_dir_name(struct index_state *istate,
1070 const struct cache_entry *ce, int pos, int ok_to_replace)
1072 int retval = 0;
1073 int stage = ce_stage(ce);
1074 const char *name = ce->name;
1075 const char *slash = name + ce_namelen(ce);
1076 size_t len_eq_last;
1077 int cmp_last = 0;
1080 * We are frequently called during an iteration on a sorted
1081 * list of pathnames and while building a new index. Therefore,
1082 * there is a high probability that this entry will eventually
1083 * be appended to the index, rather than inserted in the middle.
1084 * If we can confirm that, we can avoid binary searches on the
1085 * components of the pathname.
1087 * Compare the entry's full path with the last path in the index.
1089 if (istate->cache_nr > 0) {
1090 cmp_last = strcmp_offset(name,
1091 istate->cache[istate->cache_nr - 1]->name,
1092 &len_eq_last);
1093 if (cmp_last > 0) {
1094 if (name[len_eq_last] != '/') {
1096 * The entry sorts AFTER the last one in the
1097 * index.
1099 * If there were a conflict with "file", then our
1100 * name would start with "file/" and the last index
1101 * entry would start with "file" but not "file/".
1103 * The next character after common prefix is
1104 * not '/', so there can be no conflict.
1106 return retval;
1107 } else {
1109 * The entry sorts AFTER the last one in the
1110 * index, and the next character after common
1111 * prefix is '/'.
1113 * Either the last index entry is a file in
1114 * conflict with this entry, or it has a name
1115 * which sorts between this entry and the
1116 * potential conflicting file.
1118 * In both cases, we fall through to the loop
1119 * below and let the regular search code handle it.
1122 } else if (cmp_last == 0) {
1124 * The entry exactly matches the last one in the
1125 * index, but because of multiple stage and CE_REMOVE
1126 * items, we fall through and let the regular search
1127 * code handle it.
1132 for (;;) {
1133 size_t len;
1135 for (;;) {
1136 if (*--slash == '/')
1137 break;
1138 if (slash <= ce->name)
1139 return retval;
1141 len = slash - name;
1143 pos = index_name_stage_pos(istate, name, len, stage, EXPAND_SPARSE);
1144 if (pos >= 0) {
1146 * Found one, but not so fast. This could
1147 * be a marker that says "I was here, but
1148 * I am being removed". Such an entry is
1149 * not a part of the resulting tree, and
1150 * it is Ok to have a directory at the same
1151 * path.
1153 if (!(istate->cache[pos]->ce_flags & CE_REMOVE)) {
1154 retval = -1;
1155 if (!ok_to_replace)
1156 break;
1157 remove_index_entry_at(istate, pos);
1158 continue;
1161 else
1162 pos = -pos-1;
1165 * Trivial optimization: if we find an entry that
1166 * already matches the sub-directory, then we know
1167 * we're ok, and we can exit.
1169 while (pos < istate->cache_nr) {
1170 struct cache_entry *p = istate->cache[pos];
1171 if ((ce_namelen(p) <= len) ||
1172 (p->name[len] != '/') ||
1173 memcmp(p->name, name, len))
1174 break; /* not our subdirectory */
1175 if (ce_stage(p) == stage && !(p->ce_flags & CE_REMOVE))
1177 * p is at the same stage as our entry, and
1178 * is a subdirectory of what we are looking
1179 * at, so we cannot have conflicts at our
1180 * level or anything shorter.
1182 return retval;
1183 pos++;
1186 return retval;
1189 /* We may be in a situation where we already have path/file and path
1190 * is being added, or we already have path and path/file is being
1191 * added. Either one would result in a nonsense tree that has path
1192 * twice when git-write-tree tries to write it out. Prevent it.
1194 * If ok-to-replace is specified, we remove the conflicting entries
1195 * from the cache so the caller should recompute the insert position.
1196 * When this happens, we return non-zero.
1198 static int check_file_directory_conflict(struct index_state *istate,
1199 const struct cache_entry *ce,
1200 int pos, int ok_to_replace)
1202 int retval;
1205 * When ce is an "I am going away" entry, we allow it to be added
1207 if (ce->ce_flags & CE_REMOVE)
1208 return 0;
1211 * We check if the path is a sub-path of a subsequent pathname
1212 * first, since removing those will not change the position
1213 * in the array.
1215 retval = has_file_name(istate, ce, pos, ok_to_replace);
1218 * Then check if the path might have a clashing sub-directory
1219 * before it.
1221 return retval + has_dir_name(istate, ce, pos, ok_to_replace);
1224 static int add_index_entry_with_check(struct index_state *istate, struct cache_entry *ce, int option)
1226 int pos;
1227 int ok_to_add = option & ADD_CACHE_OK_TO_ADD;
1228 int ok_to_replace = option & ADD_CACHE_OK_TO_REPLACE;
1229 int skip_df_check = option & ADD_CACHE_SKIP_DFCHECK;
1230 int new_only = option & ADD_CACHE_NEW_ONLY;
1233 * If this entry's path sorts after the last entry in the index,
1234 * we can avoid searching for it.
1236 if (istate->cache_nr > 0 &&
1237 strcmp(ce->name, istate->cache[istate->cache_nr - 1]->name) > 0)
1238 pos = index_pos_to_insert_pos(istate->cache_nr);
1239 else
1240 pos = index_name_stage_pos(istate, ce->name, ce_namelen(ce), ce_stage(ce), EXPAND_SPARSE);
1243 * Cache tree path should be invalidated only after index_name_stage_pos,
1244 * in case it expands a sparse index.
1246 if (!(option & ADD_CACHE_KEEP_CACHE_TREE))
1247 cache_tree_invalidate_path(istate, ce->name);
1249 /* existing match? Just replace it. */
1250 if (pos >= 0) {
1251 if (!new_only)
1252 replace_index_entry(istate, pos, ce);
1253 return 0;
1255 pos = -pos-1;
1257 if (!(option & ADD_CACHE_KEEP_CACHE_TREE))
1258 untracked_cache_add_to_index(istate, ce->name);
1261 * Inserting a merged entry ("stage 0") into the index
1262 * will always replace all non-merged entries..
1264 if (pos < istate->cache_nr && ce_stage(ce) == 0) {
1265 while (ce_same_name(istate->cache[pos], ce)) {
1266 ok_to_add = 1;
1267 if (!remove_index_entry_at(istate, pos))
1268 break;
1272 if (!ok_to_add)
1273 return -1;
1274 if (verify_path_internal(ce->name, ce->ce_mode) == PATH_INVALID)
1275 return error(_("invalid path '%s'"), ce->name);
1277 if (!skip_df_check &&
1278 check_file_directory_conflict(istate, ce, pos, ok_to_replace)) {
1279 if (!ok_to_replace)
1280 return error(_("'%s' appears as both a file and as a directory"),
1281 ce->name);
1282 pos = index_name_stage_pos(istate, ce->name, ce_namelen(ce), ce_stage(ce), EXPAND_SPARSE);
1283 pos = -pos-1;
1285 return pos + 1;
1288 int add_index_entry(struct index_state *istate, struct cache_entry *ce, int option)
1290 int pos;
1292 if (option & ADD_CACHE_JUST_APPEND)
1293 pos = istate->cache_nr;
1294 else {
1295 int ret;
1296 ret = add_index_entry_with_check(istate, ce, option);
1297 if (ret <= 0)
1298 return ret;
1299 pos = ret - 1;
1302 /* Make sure the array is big enough .. */
1303 ALLOC_GROW(istate->cache, istate->cache_nr + 1, istate->cache_alloc);
1305 /* Add it in.. */
1306 istate->cache_nr++;
1307 if (istate->cache_nr > pos + 1)
1308 MOVE_ARRAY(istate->cache + pos + 1, istate->cache + pos,
1309 istate->cache_nr - pos - 1);
1310 set_index_entry(istate, pos, ce);
1311 istate->cache_changed |= CE_ENTRY_ADDED;
1312 return 0;
1316 * "refresh" does not calculate a new sha1 file or bring the
1317 * cache up-to-date for mode/content changes. But what it
1318 * _does_ do is to "re-match" the stat information of a file
1319 * with the cache, so that you can refresh the cache for a
1320 * file that hasn't been changed but where the stat entry is
1321 * out of date.
1323 * For example, you'd want to do this after doing a "git-read-tree",
1324 * to link up the stat cache details with the proper files.
1326 static struct cache_entry *refresh_cache_ent(struct index_state *istate,
1327 struct cache_entry *ce,
1328 unsigned int options, int *err,
1329 int *changed_ret,
1330 int *t2_did_lstat,
1331 int *t2_did_scan)
1333 struct stat st;
1334 struct cache_entry *updated;
1335 int changed;
1336 int refresh = options & CE_MATCH_REFRESH;
1337 int ignore_valid = options & CE_MATCH_IGNORE_VALID;
1338 int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE;
1339 int ignore_missing = options & CE_MATCH_IGNORE_MISSING;
1340 int ignore_fsmonitor = options & CE_MATCH_IGNORE_FSMONITOR;
1342 if (!refresh || ce_uptodate(ce))
1343 return ce;
1345 if (!ignore_fsmonitor)
1346 refresh_fsmonitor(istate);
1348 * CE_VALID or CE_SKIP_WORKTREE means the user promised us
1349 * that the change to the work tree does not matter and told
1350 * us not to worry.
1352 if (!ignore_skip_worktree && ce_skip_worktree(ce)) {
1353 ce_mark_uptodate(ce);
1354 return ce;
1356 if (!ignore_valid && (ce->ce_flags & CE_VALID)) {
1357 ce_mark_uptodate(ce);
1358 return ce;
1360 if (!ignore_fsmonitor && (ce->ce_flags & CE_FSMONITOR_VALID)) {
1361 ce_mark_uptodate(ce);
1362 return ce;
1365 if (has_symlink_leading_path(ce->name, ce_namelen(ce))) {
1366 if (ignore_missing)
1367 return ce;
1368 if (err)
1369 *err = ENOENT;
1370 return NULL;
1373 if (t2_did_lstat)
1374 *t2_did_lstat = 1;
1375 if (lstat(ce->name, &st) < 0) {
1376 if (ignore_missing && errno == ENOENT)
1377 return ce;
1378 if (err)
1379 *err = errno;
1380 return NULL;
1383 changed = ie_match_stat(istate, ce, &st, options);
1384 if (changed_ret)
1385 *changed_ret = changed;
1386 if (!changed) {
1388 * The path is unchanged. If we were told to ignore
1389 * valid bit, then we did the actual stat check and
1390 * found that the entry is unmodified. If the entry
1391 * is not marked VALID, this is the place to mark it
1392 * valid again, under "assume unchanged" mode.
1394 if (ignore_valid && assume_unchanged &&
1395 !(ce->ce_flags & CE_VALID))
1396 ; /* mark this one VALID again */
1397 else {
1399 * We do not mark the index itself "modified"
1400 * because CE_UPTODATE flag is in-core only;
1401 * we are not going to write this change out.
1403 if (!S_ISGITLINK(ce->ce_mode)) {
1404 ce_mark_uptodate(ce);
1405 mark_fsmonitor_valid(istate, ce);
1407 return ce;
1411 if (t2_did_scan)
1412 *t2_did_scan = 1;
1413 if (ie_modified(istate, ce, &st, options)) {
1414 if (err)
1415 *err = EINVAL;
1416 return NULL;
1419 updated = make_empty_cache_entry(istate, ce_namelen(ce));
1420 copy_cache_entry(updated, ce);
1421 memcpy(updated->name, ce->name, ce->ce_namelen + 1);
1422 fill_stat_cache_info(istate, updated, &st);
1424 * If ignore_valid is not set, we should leave CE_VALID bit
1425 * alone. Otherwise, paths marked with --no-assume-unchanged
1426 * (i.e. things to be edited) will reacquire CE_VALID bit
1427 * automatically, which is not really what we want.
1429 if (!ignore_valid && assume_unchanged &&
1430 !(ce->ce_flags & CE_VALID))
1431 updated->ce_flags &= ~CE_VALID;
1433 /* istate->cache_changed is updated in the caller */
1434 return updated;
1437 static void show_file(const char * fmt, const char * name, int in_porcelain,
1438 int * first, const char *header_msg)
1440 if (in_porcelain && *first && header_msg) {
1441 printf("%s\n", header_msg);
1442 *first = 0;
1444 printf(fmt, name);
1447 int repo_refresh_and_write_index(struct repository *repo,
1448 unsigned int refresh_flags,
1449 unsigned int write_flags,
1450 int gentle,
1451 const struct pathspec *pathspec,
1452 char *seen, const char *header_msg)
1454 struct lock_file lock_file = LOCK_INIT;
1455 int fd, ret = 0;
1457 fd = repo_hold_locked_index(repo, &lock_file, 0);
1458 if (!gentle && fd < 0)
1459 return -1;
1460 if (refresh_index(repo->index, refresh_flags, pathspec, seen, header_msg))
1461 ret = 1;
1462 if (0 <= fd && write_locked_index(repo->index, &lock_file, COMMIT_LOCK | write_flags))
1463 ret = -1;
1464 return ret;
1468 int refresh_index(struct index_state *istate, unsigned int flags,
1469 const struct pathspec *pathspec,
1470 char *seen, const char *header_msg)
1472 int i;
1473 int has_errors = 0;
1474 int really = (flags & REFRESH_REALLY) != 0;
1475 int allow_unmerged = (flags & REFRESH_UNMERGED) != 0;
1476 int quiet = (flags & REFRESH_QUIET) != 0;
1477 int not_new = (flags & REFRESH_IGNORE_MISSING) != 0;
1478 int ignore_submodules = (flags & REFRESH_IGNORE_SUBMODULES) != 0;
1479 int ignore_skip_worktree = (flags & REFRESH_IGNORE_SKIP_WORKTREE) != 0;
1480 int first = 1;
1481 int in_porcelain = (flags & REFRESH_IN_PORCELAIN);
1482 unsigned int options = (CE_MATCH_REFRESH |
1483 (really ? CE_MATCH_IGNORE_VALID : 0) |
1484 (not_new ? CE_MATCH_IGNORE_MISSING : 0));
1485 const char *modified_fmt;
1486 const char *deleted_fmt;
1487 const char *typechange_fmt;
1488 const char *added_fmt;
1489 const char *unmerged_fmt;
1490 struct progress *progress = NULL;
1491 int t2_sum_lstat = 0;
1492 int t2_sum_scan = 0;
1494 if (flags & REFRESH_PROGRESS && isatty(2))
1495 progress = start_delayed_progress(_("Refresh index"),
1496 istate->cache_nr);
1498 trace_performance_enter();
1499 modified_fmt = in_porcelain ? "M\t%s\n" : "%s: needs update\n";
1500 deleted_fmt = in_porcelain ? "D\t%s\n" : "%s: needs update\n";
1501 typechange_fmt = in_porcelain ? "T\t%s\n" : "%s: needs update\n";
1502 added_fmt = in_porcelain ? "A\t%s\n" : "%s: needs update\n";
1503 unmerged_fmt = in_porcelain ? "U\t%s\n" : "%s: needs merge\n";
1505 * Use the multi-threaded preload_index() to refresh most of the
1506 * cache entries quickly then in the single threaded loop below,
1507 * we only have to do the special cases that are left.
1509 preload_index(istate, pathspec, 0);
1510 trace2_region_enter("index", "refresh", NULL);
1512 for (i = 0; i < istate->cache_nr; i++) {
1513 struct cache_entry *ce, *new_entry;
1514 int cache_errno = 0;
1515 int changed = 0;
1516 int filtered = 0;
1517 int t2_did_lstat = 0;
1518 int t2_did_scan = 0;
1520 ce = istate->cache[i];
1521 if (ignore_submodules && S_ISGITLINK(ce->ce_mode))
1522 continue;
1523 if (ignore_skip_worktree && ce_skip_worktree(ce))
1524 continue;
1527 * If this entry is a sparse directory, then there isn't
1528 * any stat() information to update. Ignore the entry.
1530 if (S_ISSPARSEDIR(ce->ce_mode))
1531 continue;
1533 if (pathspec && !ce_path_match(istate, ce, pathspec, seen))
1534 filtered = 1;
1536 if (ce_stage(ce)) {
1537 while ((i < istate->cache_nr) &&
1538 ! strcmp(istate->cache[i]->name, ce->name))
1539 i++;
1540 i--;
1541 if (allow_unmerged)
1542 continue;
1543 if (!filtered)
1544 show_file(unmerged_fmt, ce->name, in_porcelain,
1545 &first, header_msg);
1546 has_errors = 1;
1547 continue;
1550 if (filtered)
1551 continue;
1553 new_entry = refresh_cache_ent(istate, ce, options,
1554 &cache_errno, &changed,
1555 &t2_did_lstat, &t2_did_scan);
1556 t2_sum_lstat += t2_did_lstat;
1557 t2_sum_scan += t2_did_scan;
1558 if (new_entry == ce)
1559 continue;
1560 display_progress(progress, i);
1561 if (!new_entry) {
1562 const char *fmt;
1564 if (really && cache_errno == EINVAL) {
1565 /* If we are doing --really-refresh that
1566 * means the index is not valid anymore.
1568 ce->ce_flags &= ~CE_VALID;
1569 ce->ce_flags |= CE_UPDATE_IN_BASE;
1570 mark_fsmonitor_invalid(istate, ce);
1571 istate->cache_changed |= CE_ENTRY_CHANGED;
1573 if (quiet)
1574 continue;
1576 if (cache_errno == ENOENT)
1577 fmt = deleted_fmt;
1578 else if (ce_intent_to_add(ce))
1579 fmt = added_fmt; /* must be before other checks */
1580 else if (changed & TYPE_CHANGED)
1581 fmt = typechange_fmt;
1582 else
1583 fmt = modified_fmt;
1584 show_file(fmt,
1585 ce->name, in_porcelain, &first, header_msg);
1586 has_errors = 1;
1587 continue;
1590 replace_index_entry(istate, i, new_entry);
1592 trace2_data_intmax("index", NULL, "refresh/sum_lstat", t2_sum_lstat);
1593 trace2_data_intmax("index", NULL, "refresh/sum_scan", t2_sum_scan);
1594 trace2_region_leave("index", "refresh", NULL);
1595 display_progress(progress, istate->cache_nr);
1596 stop_progress(&progress);
1597 trace_performance_leave("refresh index");
1598 return has_errors;
1601 struct cache_entry *refresh_cache_entry(struct index_state *istate,
1602 struct cache_entry *ce,
1603 unsigned int options)
1605 return refresh_cache_ent(istate, ce, options, NULL, NULL, NULL, NULL);
1609 /*****************************************************************
1610 * Index File I/O
1611 *****************************************************************/
1613 #define INDEX_FORMAT_DEFAULT 3
1615 static unsigned int get_index_format_default(struct repository *r)
1617 char *envversion = getenv("GIT_INDEX_VERSION");
1618 char *endp;
1619 unsigned int version = INDEX_FORMAT_DEFAULT;
1621 if (!envversion) {
1622 prepare_repo_settings(r);
1624 if (r->settings.index_version >= 0)
1625 version = r->settings.index_version;
1626 if (version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {
1627 warning(_("index.version set, but the value is invalid.\n"
1628 "Using version %i"), INDEX_FORMAT_DEFAULT);
1629 return INDEX_FORMAT_DEFAULT;
1631 return version;
1634 version = strtoul(envversion, &endp, 10);
1635 if (*endp ||
1636 version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {
1637 warning(_("GIT_INDEX_VERSION set, but the value is invalid.\n"
1638 "Using version %i"), INDEX_FORMAT_DEFAULT);
1639 version = INDEX_FORMAT_DEFAULT;
1641 return version;
1645 * dev/ino/uid/gid/size are also just tracked to the low 32 bits
1646 * Again - this is just a (very strong in practice) heuristic that
1647 * the inode hasn't changed.
1649 * We save the fields in big-endian order to allow using the
1650 * index file over NFS transparently.
1652 struct ondisk_cache_entry {
1653 struct cache_time ctime;
1654 struct cache_time mtime;
1655 uint32_t dev;
1656 uint32_t ino;
1657 uint32_t mode;
1658 uint32_t uid;
1659 uint32_t gid;
1660 uint32_t size;
1662 * unsigned char hash[hashsz];
1663 * uint16_t flags;
1664 * if (flags & CE_EXTENDED)
1665 * uint16_t flags2;
1667 unsigned char data[GIT_MAX_RAWSZ + 2 * sizeof(uint16_t)];
1668 char name[FLEX_ARRAY];
1671 /* These are only used for v3 or lower */
1672 #define align_padding_size(size, len) ((size + (len) + 8) & ~7) - (size + len)
1673 #define align_flex_name(STRUCT,len) ((offsetof(struct STRUCT,data) + (len) + 8) & ~7)
1674 #define ondisk_cache_entry_size(len) align_flex_name(ondisk_cache_entry,len)
1675 #define ondisk_data_size(flags, len) (the_hash_algo->rawsz + \
1676 ((flags & CE_EXTENDED) ? 2 : 1) * sizeof(uint16_t) + len)
1677 #define ondisk_data_size_max(len) (ondisk_data_size(CE_EXTENDED, len))
1678 #define ondisk_ce_size(ce) (ondisk_cache_entry_size(ondisk_data_size((ce)->ce_flags, ce_namelen(ce))))
1680 /* Allow fsck to force verification of the index checksum. */
1681 int verify_index_checksum;
1683 /* Allow fsck to force verification of the cache entry order. */
1684 int verify_ce_order;
1686 static int verify_hdr(const struct cache_header *hdr, unsigned long size)
1688 git_hash_ctx c;
1689 unsigned char hash[GIT_MAX_RAWSZ];
1690 int hdr_version;
1691 unsigned char *start, *end;
1692 struct object_id oid;
1694 if (hdr->hdr_signature != htonl(CACHE_SIGNATURE))
1695 return error(_("bad signature 0x%08x"), hdr->hdr_signature);
1696 hdr_version = ntohl(hdr->hdr_version);
1697 if (hdr_version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < hdr_version)
1698 return error(_("bad index version %d"), hdr_version);
1700 if (!verify_index_checksum)
1701 return 0;
1703 end = (unsigned char *)hdr + size;
1704 start = end - the_hash_algo->rawsz;
1705 oidread(&oid, start);
1706 if (oideq(&oid, null_oid()))
1707 return 0;
1709 the_hash_algo->init_fn(&c);
1710 the_hash_algo->update_fn(&c, hdr, size - the_hash_algo->rawsz);
1711 the_hash_algo->final_fn(hash, &c);
1712 if (!hasheq(hash, start))
1713 return error(_("bad index file sha1 signature"));
1714 return 0;
1717 static int read_index_extension(struct index_state *istate,
1718 const char *ext, const char *data, unsigned long sz)
1720 switch (CACHE_EXT(ext)) {
1721 case CACHE_EXT_TREE:
1722 istate->cache_tree = cache_tree_read(data, sz);
1723 break;
1724 case CACHE_EXT_RESOLVE_UNDO:
1725 istate->resolve_undo = resolve_undo_read(data, sz);
1726 break;
1727 case CACHE_EXT_LINK:
1728 if (read_link_extension(istate, data, sz))
1729 return -1;
1730 break;
1731 case CACHE_EXT_UNTRACKED:
1732 istate->untracked = read_untracked_extension(data, sz);
1733 break;
1734 case CACHE_EXT_FSMONITOR:
1735 read_fsmonitor_extension(istate, data, sz);
1736 break;
1737 case CACHE_EXT_ENDOFINDEXENTRIES:
1738 case CACHE_EXT_INDEXENTRYOFFSETTABLE:
1739 /* already handled in do_read_index() */
1740 break;
1741 case CACHE_EXT_SPARSE_DIRECTORIES:
1742 /* no content, only an indicator */
1743 istate->sparse_index = INDEX_COLLAPSED;
1744 break;
1745 default:
1746 if (*ext < 'A' || 'Z' < *ext)
1747 return error(_("index uses %.4s extension, which we do not understand"),
1748 ext);
1749 fprintf_ln(stderr, _("ignoring %.4s extension"), ext);
1750 break;
1752 return 0;
1756 * Parses the contents of the cache entry contained within the 'ondisk' buffer
1757 * into a new incore 'cache_entry'.
1759 * Note that 'char *ondisk' may not be aligned to a 4-byte address interval in
1760 * index v4, so we cannot cast it to 'struct ondisk_cache_entry *' and access
1761 * its members. Instead, we use the byte offsets of members within the struct to
1762 * identify where 'get_be16()', 'get_be32()', and 'oidread()' (which can all
1763 * read from an unaligned memory buffer) should read from the 'ondisk' buffer
1764 * into the corresponding incore 'cache_entry' members.
1766 static struct cache_entry *create_from_disk(struct mem_pool *ce_mem_pool,
1767 unsigned int version,
1768 const char *ondisk,
1769 unsigned long *ent_size,
1770 const struct cache_entry *previous_ce)
1772 struct cache_entry *ce;
1773 size_t len;
1774 const char *name;
1775 const unsigned hashsz = the_hash_algo->rawsz;
1776 const char *flagsp = ondisk + offsetof(struct ondisk_cache_entry, data) + hashsz;
1777 unsigned int flags;
1778 size_t copy_len = 0;
1780 * Adjacent cache entries tend to share the leading paths, so it makes
1781 * sense to only store the differences in later entries. In the v4
1782 * on-disk format of the index, each on-disk cache entry stores the
1783 * number of bytes to be stripped from the end of the previous name,
1784 * and the bytes to append to the result, to come up with its name.
1786 int expand_name_field = version == 4;
1788 /* On-disk flags are just 16 bits */
1789 flags = get_be16(flagsp);
1790 len = flags & CE_NAMEMASK;
1792 if (flags & CE_EXTENDED) {
1793 int extended_flags;
1794 extended_flags = get_be16(flagsp + sizeof(uint16_t)) << 16;
1795 /* We do not yet understand any bit out of CE_EXTENDED_FLAGS */
1796 if (extended_flags & ~CE_EXTENDED_FLAGS)
1797 die(_("unknown index entry format 0x%08x"), extended_flags);
1798 flags |= extended_flags;
1799 name = (const char *)(flagsp + 2 * sizeof(uint16_t));
1801 else
1802 name = (const char *)(flagsp + sizeof(uint16_t));
1804 if (expand_name_field) {
1805 const unsigned char *cp = (const unsigned char *)name;
1806 size_t strip_len, previous_len;
1808 /* If we're at the beginning of a block, ignore the previous name */
1809 strip_len = decode_varint(&cp);
1810 if (previous_ce) {
1811 previous_len = previous_ce->ce_namelen;
1812 if (previous_len < strip_len)
1813 die(_("malformed name field in the index, near path '%s'"),
1814 previous_ce->name);
1815 copy_len = previous_len - strip_len;
1817 name = (const char *)cp;
1820 if (len == CE_NAMEMASK) {
1821 len = strlen(name);
1822 if (expand_name_field)
1823 len += copy_len;
1826 ce = mem_pool__ce_alloc(ce_mem_pool, len);
1829 * NEEDSWORK: using 'offsetof()' is cumbersome and should be replaced
1830 * with something more akin to 'load_bitmap_entries_v1()'s use of
1831 * 'read_be16'/'read_be32'. For consistency with the corresponding
1832 * ondisk entry write function ('copy_cache_entry_to_ondisk()'), this
1833 * should be done at the same time as removing references to
1834 * 'ondisk_cache_entry' there.
1836 ce->ce_stat_data.sd_ctime.sec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, ctime)
1837 + offsetof(struct cache_time, sec));
1838 ce->ce_stat_data.sd_mtime.sec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, mtime)
1839 + offsetof(struct cache_time, sec));
1840 ce->ce_stat_data.sd_ctime.nsec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, ctime)
1841 + offsetof(struct cache_time, nsec));
1842 ce->ce_stat_data.sd_mtime.nsec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, mtime)
1843 + offsetof(struct cache_time, nsec));
1844 ce->ce_stat_data.sd_dev = get_be32(ondisk + offsetof(struct ondisk_cache_entry, dev));
1845 ce->ce_stat_data.sd_ino = get_be32(ondisk + offsetof(struct ondisk_cache_entry, ino));
1846 ce->ce_mode = get_be32(ondisk + offsetof(struct ondisk_cache_entry, mode));
1847 ce->ce_stat_data.sd_uid = get_be32(ondisk + offsetof(struct ondisk_cache_entry, uid));
1848 ce->ce_stat_data.sd_gid = get_be32(ondisk + offsetof(struct ondisk_cache_entry, gid));
1849 ce->ce_stat_data.sd_size = get_be32(ondisk + offsetof(struct ondisk_cache_entry, size));
1850 ce->ce_flags = flags & ~CE_NAMEMASK;
1851 ce->ce_namelen = len;
1852 ce->index = 0;
1853 oidread(&ce->oid, (const unsigned char *)ondisk + offsetof(struct ondisk_cache_entry, data));
1855 if (expand_name_field) {
1856 if (copy_len)
1857 memcpy(ce->name, previous_ce->name, copy_len);
1858 memcpy(ce->name + copy_len, name, len + 1 - copy_len);
1859 *ent_size = (name - ((char *)ondisk)) + len + 1 - copy_len;
1860 } else {
1861 memcpy(ce->name, name, len + 1);
1862 *ent_size = ondisk_ce_size(ce);
1864 return ce;
1867 static void check_ce_order(struct index_state *istate)
1869 unsigned int i;
1871 if (!verify_ce_order)
1872 return;
1874 for (i = 1; i < istate->cache_nr; i++) {
1875 struct cache_entry *ce = istate->cache[i - 1];
1876 struct cache_entry *next_ce = istate->cache[i];
1877 int name_compare = strcmp(ce->name, next_ce->name);
1879 if (0 < name_compare)
1880 die(_("unordered stage entries in index"));
1881 if (!name_compare) {
1882 if (!ce_stage(ce))
1883 die(_("multiple stage entries for merged file '%s'"),
1884 ce->name);
1885 if (ce_stage(ce) > ce_stage(next_ce))
1886 die(_("unordered stage entries for '%s'"),
1887 ce->name);
1892 static void tweak_untracked_cache(struct index_state *istate)
1894 struct repository *r = the_repository;
1896 prepare_repo_settings(r);
1898 switch (r->settings.core_untracked_cache) {
1899 case UNTRACKED_CACHE_REMOVE:
1900 remove_untracked_cache(istate);
1901 break;
1902 case UNTRACKED_CACHE_WRITE:
1903 add_untracked_cache(istate);
1904 break;
1905 case UNTRACKED_CACHE_KEEP:
1907 * Either an explicit "core.untrackedCache=keep", the
1908 * default if "core.untrackedCache" isn't configured,
1909 * or a fallback on an unknown "core.untrackedCache"
1910 * value.
1912 break;
1916 static void tweak_split_index(struct index_state *istate)
1918 switch (git_config_get_split_index()) {
1919 case -1: /* unset: do nothing */
1920 break;
1921 case 0: /* false */
1922 remove_split_index(istate);
1923 break;
1924 case 1: /* true */
1925 add_split_index(istate);
1926 break;
1927 default: /* unknown value: do nothing */
1928 break;
1932 static void post_read_index_from(struct index_state *istate)
1934 check_ce_order(istate);
1935 tweak_untracked_cache(istate);
1936 tweak_split_index(istate);
1937 tweak_fsmonitor(istate);
1940 static size_t estimate_cache_size_from_compressed(unsigned int entries)
1942 return entries * (sizeof(struct cache_entry) + CACHE_ENTRY_PATH_LENGTH);
1945 static size_t estimate_cache_size(size_t ondisk_size, unsigned int entries)
1947 long per_entry = sizeof(struct cache_entry) - sizeof(struct ondisk_cache_entry);
1950 * Account for potential alignment differences.
1952 per_entry += align_padding_size(per_entry, 0);
1953 return ondisk_size + entries * per_entry;
1956 struct index_entry_offset
1958 /* starting byte offset into index file, count of index entries in this block */
1959 int offset, nr;
1962 struct index_entry_offset_table
1964 int nr;
1965 struct index_entry_offset entries[FLEX_ARRAY];
1968 static struct index_entry_offset_table *read_ieot_extension(const char *mmap, size_t mmap_size, size_t offset);
1969 static void write_ieot_extension(struct strbuf *sb, struct index_entry_offset_table *ieot);
1971 static size_t read_eoie_extension(const char *mmap, size_t mmap_size);
1972 static void write_eoie_extension(struct strbuf *sb, git_hash_ctx *eoie_context, size_t offset);
1974 struct load_index_extensions
1976 pthread_t pthread;
1977 struct index_state *istate;
1978 const char *mmap;
1979 size_t mmap_size;
1980 unsigned long src_offset;
1983 static void *load_index_extensions(void *_data)
1985 struct load_index_extensions *p = _data;
1986 unsigned long src_offset = p->src_offset;
1988 while (src_offset <= p->mmap_size - the_hash_algo->rawsz - 8) {
1989 /* After an array of active_nr index entries,
1990 * there can be arbitrary number of extended
1991 * sections, each of which is prefixed with
1992 * extension name (4-byte) and section length
1993 * in 4-byte network byte order.
1995 uint32_t extsize = get_be32(p->mmap + src_offset + 4);
1996 if (read_index_extension(p->istate,
1997 p->mmap + src_offset,
1998 p->mmap + src_offset + 8,
1999 extsize) < 0) {
2000 munmap((void *)p->mmap, p->mmap_size);
2001 die(_("index file corrupt"));
2003 src_offset += 8;
2004 src_offset += extsize;
2007 return NULL;
2011 * A helper function that will load the specified range of cache entries
2012 * from the memory mapped file and add them to the given index.
2014 static unsigned long load_cache_entry_block(struct index_state *istate,
2015 struct mem_pool *ce_mem_pool, int offset, int nr, const char *mmap,
2016 unsigned long start_offset, const struct cache_entry *previous_ce)
2018 int i;
2019 unsigned long src_offset = start_offset;
2021 for (i = offset; i < offset + nr; i++) {
2022 struct cache_entry *ce;
2023 unsigned long consumed;
2025 ce = create_from_disk(ce_mem_pool, istate->version,
2026 mmap + src_offset,
2027 &consumed, previous_ce);
2028 set_index_entry(istate, i, ce);
2030 src_offset += consumed;
2031 previous_ce = ce;
2033 return src_offset - start_offset;
2036 static unsigned long load_all_cache_entries(struct index_state *istate,
2037 const char *mmap, size_t mmap_size, unsigned long src_offset)
2039 unsigned long consumed;
2041 istate->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool));
2042 if (istate->version == 4) {
2043 mem_pool_init(istate->ce_mem_pool,
2044 estimate_cache_size_from_compressed(istate->cache_nr));
2045 } else {
2046 mem_pool_init(istate->ce_mem_pool,
2047 estimate_cache_size(mmap_size, istate->cache_nr));
2050 consumed = load_cache_entry_block(istate, istate->ce_mem_pool,
2051 0, istate->cache_nr, mmap, src_offset, NULL);
2052 return consumed;
2056 * Mostly randomly chosen maximum thread counts: we
2057 * cap the parallelism to online_cpus() threads, and we want
2058 * to have at least 10000 cache entries per thread for it to
2059 * be worth starting a thread.
2062 #define THREAD_COST (10000)
2064 struct load_cache_entries_thread_data
2066 pthread_t pthread;
2067 struct index_state *istate;
2068 struct mem_pool *ce_mem_pool;
2069 int offset;
2070 const char *mmap;
2071 struct index_entry_offset_table *ieot;
2072 int ieot_start; /* starting index into the ieot array */
2073 int ieot_blocks; /* count of ieot entries to process */
2074 unsigned long consumed; /* return # of bytes in index file processed */
2078 * A thread proc to run the load_cache_entries() computation
2079 * across multiple background threads.
2081 static void *load_cache_entries_thread(void *_data)
2083 struct load_cache_entries_thread_data *p = _data;
2084 int i;
2086 /* iterate across all ieot blocks assigned to this thread */
2087 for (i = p->ieot_start; i < p->ieot_start + p->ieot_blocks; i++) {
2088 p->consumed += load_cache_entry_block(p->istate, p->ce_mem_pool,
2089 p->offset, p->ieot->entries[i].nr, p->mmap, p->ieot->entries[i].offset, NULL);
2090 p->offset += p->ieot->entries[i].nr;
2092 return NULL;
2095 static unsigned long load_cache_entries_threaded(struct index_state *istate, const char *mmap, size_t mmap_size,
2096 int nr_threads, struct index_entry_offset_table *ieot)
2098 int i, offset, ieot_blocks, ieot_start, err;
2099 struct load_cache_entries_thread_data *data;
2100 unsigned long consumed = 0;
2102 /* a little sanity checking */
2103 if (istate->name_hash_initialized)
2104 BUG("the name hash isn't thread safe");
2106 istate->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool));
2107 mem_pool_init(istate->ce_mem_pool, 0);
2109 /* ensure we have no more threads than we have blocks to process */
2110 if (nr_threads > ieot->nr)
2111 nr_threads = ieot->nr;
2112 CALLOC_ARRAY(data, nr_threads);
2114 offset = ieot_start = 0;
2115 ieot_blocks = DIV_ROUND_UP(ieot->nr, nr_threads);
2116 for (i = 0; i < nr_threads; i++) {
2117 struct load_cache_entries_thread_data *p = &data[i];
2118 int nr, j;
2120 if (ieot_start + ieot_blocks > ieot->nr)
2121 ieot_blocks = ieot->nr - ieot_start;
2123 p->istate = istate;
2124 p->offset = offset;
2125 p->mmap = mmap;
2126 p->ieot = ieot;
2127 p->ieot_start = ieot_start;
2128 p->ieot_blocks = ieot_blocks;
2130 /* create a mem_pool for each thread */
2131 nr = 0;
2132 for (j = p->ieot_start; j < p->ieot_start + p->ieot_blocks; j++)
2133 nr += p->ieot->entries[j].nr;
2134 p->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool));
2135 if (istate->version == 4) {
2136 mem_pool_init(p->ce_mem_pool,
2137 estimate_cache_size_from_compressed(nr));
2138 } else {
2139 mem_pool_init(p->ce_mem_pool,
2140 estimate_cache_size(mmap_size, nr));
2143 err = pthread_create(&p->pthread, NULL, load_cache_entries_thread, p);
2144 if (err)
2145 die(_("unable to create load_cache_entries thread: %s"), strerror(err));
2147 /* increment by the number of cache entries in the ieot block being processed */
2148 for (j = 0; j < ieot_blocks; j++)
2149 offset += ieot->entries[ieot_start + j].nr;
2150 ieot_start += ieot_blocks;
2153 for (i = 0; i < nr_threads; i++) {
2154 struct load_cache_entries_thread_data *p = &data[i];
2156 err = pthread_join(p->pthread, NULL);
2157 if (err)
2158 die(_("unable to join load_cache_entries thread: %s"), strerror(err));
2159 mem_pool_combine(istate->ce_mem_pool, p->ce_mem_pool);
2160 consumed += p->consumed;
2163 free(data);
2165 return consumed;
2168 static void set_new_index_sparsity(struct index_state *istate)
2171 * If the index's repo exists, mark it sparse according to
2172 * repo settings.
2174 prepare_repo_settings(istate->repo);
2175 if (!istate->repo->settings.command_requires_full_index &&
2176 is_sparse_index_allowed(istate, 0))
2177 istate->sparse_index = 1;
2180 /* remember to discard_cache() before reading a different cache! */
2181 int do_read_index(struct index_state *istate, const char *path, int must_exist)
2183 int fd;
2184 struct stat st;
2185 unsigned long src_offset;
2186 const struct cache_header *hdr;
2187 const char *mmap;
2188 size_t mmap_size;
2189 struct load_index_extensions p;
2190 size_t extension_offset = 0;
2191 int nr_threads, cpus;
2192 struct index_entry_offset_table *ieot = NULL;
2194 if (istate->initialized)
2195 return istate->cache_nr;
2197 istate->timestamp.sec = 0;
2198 istate->timestamp.nsec = 0;
2199 fd = open(path, O_RDONLY);
2200 if (fd < 0) {
2201 if (!must_exist && errno == ENOENT) {
2202 set_new_index_sparsity(istate);
2203 istate->initialized = 1;
2204 return 0;
2206 die_errno(_("%s: index file open failed"), path);
2209 if (fstat(fd, &st))
2210 die_errno(_("%s: cannot stat the open index"), path);
2212 mmap_size = xsize_t(st.st_size);
2213 if (mmap_size < sizeof(struct cache_header) + the_hash_algo->rawsz)
2214 die(_("%s: index file smaller than expected"), path);
2216 mmap = xmmap_gently(NULL, mmap_size, PROT_READ, MAP_PRIVATE, fd, 0);
2217 if (mmap == MAP_FAILED)
2218 die_errno(_("%s: unable to map index file%s"), path,
2219 mmap_os_err());
2220 close(fd);
2222 hdr = (const struct cache_header *)mmap;
2223 if (verify_hdr(hdr, mmap_size) < 0)
2224 goto unmap;
2226 oidread(&istate->oid, (const unsigned char *)hdr + mmap_size - the_hash_algo->rawsz);
2227 istate->version = ntohl(hdr->hdr_version);
2228 istate->cache_nr = ntohl(hdr->hdr_entries);
2229 istate->cache_alloc = alloc_nr(istate->cache_nr);
2230 CALLOC_ARRAY(istate->cache, istate->cache_alloc);
2231 istate->initialized = 1;
2233 p.istate = istate;
2234 p.mmap = mmap;
2235 p.mmap_size = mmap_size;
2237 src_offset = sizeof(*hdr);
2239 if (git_config_get_index_threads(&nr_threads))
2240 nr_threads = 1;
2242 /* TODO: does creating more threads than cores help? */
2243 if (!nr_threads) {
2244 nr_threads = istate->cache_nr / THREAD_COST;
2245 cpus = online_cpus();
2246 if (nr_threads > cpus)
2247 nr_threads = cpus;
2250 if (!HAVE_THREADS)
2251 nr_threads = 1;
2253 if (nr_threads > 1) {
2254 extension_offset = read_eoie_extension(mmap, mmap_size);
2255 if (extension_offset) {
2256 int err;
2258 p.src_offset = extension_offset;
2259 err = pthread_create(&p.pthread, NULL, load_index_extensions, &p);
2260 if (err)
2261 die(_("unable to create load_index_extensions thread: %s"), strerror(err));
2263 nr_threads--;
2268 * Locate and read the index entry offset table so that we can use it
2269 * to multi-thread the reading of the cache entries.
2271 if (extension_offset && nr_threads > 1)
2272 ieot = read_ieot_extension(mmap, mmap_size, extension_offset);
2274 if (ieot) {
2275 src_offset += load_cache_entries_threaded(istate, mmap, mmap_size, nr_threads, ieot);
2276 free(ieot);
2277 } else {
2278 src_offset += load_all_cache_entries(istate, mmap, mmap_size, src_offset);
2281 istate->timestamp.sec = st.st_mtime;
2282 istate->timestamp.nsec = ST_MTIME_NSEC(st);
2284 /* if we created a thread, join it otherwise load the extensions on the primary thread */
2285 if (extension_offset) {
2286 int ret = pthread_join(p.pthread, NULL);
2287 if (ret)
2288 die(_("unable to join load_index_extensions thread: %s"), strerror(ret));
2289 } else {
2290 p.src_offset = src_offset;
2291 load_index_extensions(&p);
2293 munmap((void *)mmap, mmap_size);
2296 * TODO trace2: replace "the_repository" with the actual repo instance
2297 * that is associated with the given "istate".
2299 trace2_data_intmax("index", the_repository, "read/version",
2300 istate->version);
2301 trace2_data_intmax("index", the_repository, "read/cache_nr",
2302 istate->cache_nr);
2305 * If the command explicitly requires a full index, force it
2306 * to be full. Otherwise, correct the sparsity based on repository
2307 * settings and other properties of the index (if necessary).
2309 prepare_repo_settings(istate->repo);
2310 if (istate->repo->settings.command_requires_full_index)
2311 ensure_full_index(istate);
2312 else
2313 ensure_correct_sparsity(istate);
2315 return istate->cache_nr;
2317 unmap:
2318 munmap((void *)mmap, mmap_size);
2319 die(_("index file corrupt"));
2323 * Signal that the shared index is used by updating its mtime.
2325 * This way, shared index can be removed if they have not been used
2326 * for some time.
2328 static void freshen_shared_index(const char *shared_index, int warn)
2330 if (!check_and_freshen_file(shared_index, 1) && warn)
2331 warning(_("could not freshen shared index '%s'"), shared_index);
2334 int read_index_from(struct index_state *istate, const char *path,
2335 const char *gitdir)
2337 struct split_index *split_index;
2338 int ret;
2339 char *base_oid_hex;
2340 char *base_path;
2342 /* istate->initialized covers both .git/index and .git/sharedindex.xxx */
2343 if (istate->initialized)
2344 return istate->cache_nr;
2347 * TODO trace2: replace "the_repository" with the actual repo instance
2348 * that is associated with the given "istate".
2350 trace2_region_enter_printf("index", "do_read_index", the_repository,
2351 "%s", path);
2352 trace_performance_enter();
2353 ret = do_read_index(istate, path, 0);
2354 trace_performance_leave("read cache %s", path);
2355 trace2_region_leave_printf("index", "do_read_index", the_repository,
2356 "%s", path);
2358 split_index = istate->split_index;
2359 if (!split_index || is_null_oid(&split_index->base_oid)) {
2360 post_read_index_from(istate);
2361 return ret;
2364 trace_performance_enter();
2365 if (split_index->base)
2366 release_index(split_index->base);
2367 else
2368 ALLOC_ARRAY(split_index->base, 1);
2369 index_state_init(split_index->base, istate->repo);
2371 base_oid_hex = oid_to_hex(&split_index->base_oid);
2372 base_path = xstrfmt("%s/sharedindex.%s", gitdir, base_oid_hex);
2373 if (file_exists(base_path)) {
2374 trace2_region_enter_printf("index", "shared/do_read_index",
2375 the_repository, "%s", base_path);
2377 ret = do_read_index(split_index->base, base_path, 0);
2378 trace2_region_leave_printf("index", "shared/do_read_index",
2379 the_repository, "%s", base_path);
2380 } else {
2381 char *path_copy = xstrdup(path);
2382 char *base_path2 = xstrfmt("%s/sharedindex.%s",
2383 dirname(path_copy), base_oid_hex);
2384 free(path_copy);
2385 trace2_region_enter_printf("index", "shared/do_read_index",
2386 the_repository, "%s", base_path2);
2387 ret = do_read_index(split_index->base, base_path2, 1);
2388 trace2_region_leave_printf("index", "shared/do_read_index",
2389 the_repository, "%s", base_path2);
2390 free(base_path2);
2392 if (!oideq(&split_index->base_oid, &split_index->base->oid))
2393 die(_("broken index, expect %s in %s, got %s"),
2394 base_oid_hex, base_path,
2395 oid_to_hex(&split_index->base->oid));
2397 freshen_shared_index(base_path, 0);
2398 merge_base_index(istate);
2399 post_read_index_from(istate);
2400 trace_performance_leave("read cache %s", base_path);
2401 free(base_path);
2402 return ret;
2405 int is_index_unborn(struct index_state *istate)
2407 return (!istate->cache_nr && !istate->timestamp.sec);
2410 void index_state_init(struct index_state *istate, struct repository *r)
2412 struct index_state blank = INDEX_STATE_INIT(r);
2413 memcpy(istate, &blank, sizeof(*istate));
2416 void release_index(struct index_state *istate)
2419 * Cache entries in istate->cache[] should have been allocated
2420 * from the memory pool associated with this index, or from an
2421 * associated split_index. There is no need to free individual
2422 * cache entries. validate_cache_entries can detect when this
2423 * assertion does not hold.
2425 validate_cache_entries(istate);
2427 resolve_undo_clear_index(istate);
2428 free_name_hash(istate);
2429 cache_tree_free(&(istate->cache_tree));
2430 free(istate->fsmonitor_last_update);
2431 free(istate->cache);
2432 discard_split_index(istate);
2433 free_untracked_cache(istate->untracked);
2435 if (istate->sparse_checkout_patterns) {
2436 clear_pattern_list(istate->sparse_checkout_patterns);
2437 FREE_AND_NULL(istate->sparse_checkout_patterns);
2440 if (istate->ce_mem_pool) {
2441 mem_pool_discard(istate->ce_mem_pool, should_validate_cache_entries());
2442 FREE_AND_NULL(istate->ce_mem_pool);
2446 void discard_index(struct index_state *istate)
2448 release_index(istate);
2449 index_state_init(istate, istate->repo);
2453 * Validate the cache entries of this index.
2454 * All cache entries associated with this index
2455 * should have been allocated by the memory pool
2456 * associated with this index, or by a referenced
2457 * split index.
2459 void validate_cache_entries(const struct index_state *istate)
2461 int i;
2463 if (!should_validate_cache_entries() ||!istate || !istate->initialized)
2464 return;
2466 for (i = 0; i < istate->cache_nr; i++) {
2467 if (!istate) {
2468 BUG("cache entry is not allocated from expected memory pool");
2469 } else if (!istate->ce_mem_pool ||
2470 !mem_pool_contains(istate->ce_mem_pool, istate->cache[i])) {
2471 if (!istate->split_index ||
2472 !istate->split_index->base ||
2473 !istate->split_index->base->ce_mem_pool ||
2474 !mem_pool_contains(istate->split_index->base->ce_mem_pool, istate->cache[i])) {
2475 BUG("cache entry is not allocated from expected memory pool");
2480 if (istate->split_index)
2481 validate_cache_entries(istate->split_index->base);
2484 int unmerged_index(const struct index_state *istate)
2486 int i;
2487 for (i = 0; i < istate->cache_nr; i++) {
2488 if (ce_stage(istate->cache[i]))
2489 return 1;
2491 return 0;
2494 int repo_index_has_changes(struct repository *repo,
2495 struct tree *tree,
2496 struct strbuf *sb)
2498 struct index_state *istate = repo->index;
2499 struct object_id cmp;
2500 int i;
2502 if (tree)
2503 cmp = tree->object.oid;
2504 if (tree || !repo_get_oid_tree(repo, "HEAD", &cmp)) {
2505 struct diff_options opt;
2507 repo_diff_setup(repo, &opt);
2508 opt.flags.exit_with_status = 1;
2509 if (!sb)
2510 opt.flags.quick = 1;
2511 diff_setup_done(&opt);
2512 do_diff_cache(&cmp, &opt);
2513 diffcore_std(&opt);
2514 for (i = 0; sb && i < diff_queued_diff.nr; i++) {
2515 if (i)
2516 strbuf_addch(sb, ' ');
2517 strbuf_addstr(sb, diff_queued_diff.queue[i]->two->path);
2519 diff_flush(&opt);
2520 return opt.flags.has_changes != 0;
2521 } else {
2522 /* TODO: audit for interaction with sparse-index. */
2523 ensure_full_index(istate);
2524 for (i = 0; sb && i < istate->cache_nr; i++) {
2525 if (i)
2526 strbuf_addch(sb, ' ');
2527 strbuf_addstr(sb, istate->cache[i]->name);
2529 return !!istate->cache_nr;
2533 static int write_index_ext_header(struct hashfile *f,
2534 git_hash_ctx *eoie_f,
2535 unsigned int ext,
2536 unsigned int sz)
2538 hashwrite_be32(f, ext);
2539 hashwrite_be32(f, sz);
2541 if (eoie_f) {
2542 ext = htonl(ext);
2543 sz = htonl(sz);
2544 the_hash_algo->update_fn(eoie_f, &ext, sizeof(ext));
2545 the_hash_algo->update_fn(eoie_f, &sz, sizeof(sz));
2547 return 0;
2550 static void ce_smudge_racily_clean_entry(struct index_state *istate,
2551 struct cache_entry *ce)
2554 * The only thing we care about in this function is to smudge the
2555 * falsely clean entry due to touch-update-touch race, so we leave
2556 * everything else as they are. We are called for entries whose
2557 * ce_stat_data.sd_mtime match the index file mtime.
2559 * Note that this actually does not do much for gitlinks, for
2560 * which ce_match_stat_basic() always goes to the actual
2561 * contents. The caller checks with is_racy_timestamp() which
2562 * always says "no" for gitlinks, so we are not called for them ;-)
2564 struct stat st;
2566 if (lstat(ce->name, &st) < 0)
2567 return;
2568 if (ce_match_stat_basic(ce, &st))
2569 return;
2570 if (ce_modified_check_fs(istate, ce, &st)) {
2571 /* This is "racily clean"; smudge it. Note that this
2572 * is a tricky code. At first glance, it may appear
2573 * that it can break with this sequence:
2575 * $ echo xyzzy >frotz
2576 * $ git-update-index --add frotz
2577 * $ : >frotz
2578 * $ sleep 3
2579 * $ echo filfre >nitfol
2580 * $ git-update-index --add nitfol
2582 * but it does not. When the second update-index runs,
2583 * it notices that the entry "frotz" has the same timestamp
2584 * as index, and if we were to smudge it by resetting its
2585 * size to zero here, then the object name recorded
2586 * in index is the 6-byte file but the cached stat information
2587 * becomes zero --- which would then match what we would
2588 * obtain from the filesystem next time we stat("frotz").
2590 * However, the second update-index, before calling
2591 * this function, notices that the cached size is 6
2592 * bytes and what is on the filesystem is an empty
2593 * file, and never calls us, so the cached size information
2594 * for "frotz" stays 6 which does not match the filesystem.
2596 ce->ce_stat_data.sd_size = 0;
2600 /* Copy miscellaneous fields but not the name */
2601 static void copy_cache_entry_to_ondisk(struct ondisk_cache_entry *ondisk,
2602 struct cache_entry *ce)
2604 short flags;
2605 const unsigned hashsz = the_hash_algo->rawsz;
2606 uint16_t *flagsp = (uint16_t *)(ondisk->data + hashsz);
2608 ondisk->ctime.sec = htonl(ce->ce_stat_data.sd_ctime.sec);
2609 ondisk->mtime.sec = htonl(ce->ce_stat_data.sd_mtime.sec);
2610 ondisk->ctime.nsec = htonl(ce->ce_stat_data.sd_ctime.nsec);
2611 ondisk->mtime.nsec = htonl(ce->ce_stat_data.sd_mtime.nsec);
2612 ondisk->dev = htonl(ce->ce_stat_data.sd_dev);
2613 ondisk->ino = htonl(ce->ce_stat_data.sd_ino);
2614 ondisk->mode = htonl(ce->ce_mode);
2615 ondisk->uid = htonl(ce->ce_stat_data.sd_uid);
2616 ondisk->gid = htonl(ce->ce_stat_data.sd_gid);
2617 ondisk->size = htonl(ce->ce_stat_data.sd_size);
2618 hashcpy(ondisk->data, ce->oid.hash);
2620 flags = ce->ce_flags & ~CE_NAMEMASK;
2621 flags |= (ce_namelen(ce) >= CE_NAMEMASK ? CE_NAMEMASK : ce_namelen(ce));
2622 flagsp[0] = htons(flags);
2623 if (ce->ce_flags & CE_EXTENDED) {
2624 flagsp[1] = htons((ce->ce_flags & CE_EXTENDED_FLAGS) >> 16);
2628 static int ce_write_entry(struct hashfile *f, struct cache_entry *ce,
2629 struct strbuf *previous_name, struct ondisk_cache_entry *ondisk)
2631 int size;
2632 unsigned int saved_namelen;
2633 int stripped_name = 0;
2634 static unsigned char padding[8] = { 0x00 };
2636 if (ce->ce_flags & CE_STRIP_NAME) {
2637 saved_namelen = ce_namelen(ce);
2638 ce->ce_namelen = 0;
2639 stripped_name = 1;
2642 size = offsetof(struct ondisk_cache_entry,data) + ondisk_data_size(ce->ce_flags, 0);
2644 if (!previous_name) {
2645 int len = ce_namelen(ce);
2646 copy_cache_entry_to_ondisk(ondisk, ce);
2647 hashwrite(f, ondisk, size);
2648 hashwrite(f, ce->name, len);
2649 hashwrite(f, padding, align_padding_size(size, len));
2650 } else {
2651 int common, to_remove, prefix_size;
2652 unsigned char to_remove_vi[16];
2653 for (common = 0;
2654 (ce->name[common] &&
2655 common < previous_name->len &&
2656 ce->name[common] == previous_name->buf[common]);
2657 common++)
2658 ; /* still matching */
2659 to_remove = previous_name->len - common;
2660 prefix_size = encode_varint(to_remove, to_remove_vi);
2662 copy_cache_entry_to_ondisk(ondisk, ce);
2663 hashwrite(f, ondisk, size);
2664 hashwrite(f, to_remove_vi, prefix_size);
2665 hashwrite(f, ce->name + common, ce_namelen(ce) - common);
2666 hashwrite(f, padding, 1);
2668 strbuf_splice(previous_name, common, to_remove,
2669 ce->name + common, ce_namelen(ce) - common);
2671 if (stripped_name) {
2672 ce->ce_namelen = saved_namelen;
2673 ce->ce_flags &= ~CE_STRIP_NAME;
2676 return 0;
2680 * This function verifies if index_state has the correct sha1 of the
2681 * index file. Don't die if we have any other failure, just return 0.
2683 static int verify_index_from(const struct index_state *istate, const char *path)
2685 int fd;
2686 ssize_t n;
2687 struct stat st;
2688 unsigned char hash[GIT_MAX_RAWSZ];
2690 if (!istate->initialized)
2691 return 0;
2693 fd = open(path, O_RDONLY);
2694 if (fd < 0)
2695 return 0;
2697 if (fstat(fd, &st))
2698 goto out;
2700 if (st.st_size < sizeof(struct cache_header) + the_hash_algo->rawsz)
2701 goto out;
2703 n = pread_in_full(fd, hash, the_hash_algo->rawsz, st.st_size - the_hash_algo->rawsz);
2704 if (n != the_hash_algo->rawsz)
2705 goto out;
2707 if (!hasheq(istate->oid.hash, hash))
2708 goto out;
2710 close(fd);
2711 return 1;
2713 out:
2714 close(fd);
2715 return 0;
2718 static int repo_verify_index(struct repository *repo)
2720 return verify_index_from(repo->index, repo->index_file);
2723 int has_racy_timestamp(struct index_state *istate)
2725 int entries = istate->cache_nr;
2726 int i;
2728 for (i = 0; i < entries; i++) {
2729 struct cache_entry *ce = istate->cache[i];
2730 if (is_racy_timestamp(istate, ce))
2731 return 1;
2733 return 0;
2736 void repo_update_index_if_able(struct repository *repo,
2737 struct lock_file *lockfile)
2739 if ((repo->index->cache_changed ||
2740 has_racy_timestamp(repo->index)) &&
2741 repo_verify_index(repo))
2742 write_locked_index(repo->index, lockfile, COMMIT_LOCK);
2743 else
2744 rollback_lock_file(lockfile);
2747 static int record_eoie(void)
2749 int val;
2751 if (!git_config_get_bool("index.recordendofindexentries", &val))
2752 return val;
2755 * As a convenience, the end of index entries extension
2756 * used for threading is written by default if the user
2757 * explicitly requested threaded index reads.
2759 return !git_config_get_index_threads(&val) && val != 1;
2762 static int record_ieot(void)
2764 int val;
2766 if (!git_config_get_bool("index.recordoffsettable", &val))
2767 return val;
2770 * As a convenience, the offset table used for threading is
2771 * written by default if the user explicitly requested
2772 * threaded index reads.
2774 return !git_config_get_index_threads(&val) && val != 1;
2777 enum write_extensions {
2778 WRITE_NO_EXTENSION = 0,
2779 WRITE_SPLIT_INDEX_EXTENSION = 1<<0,
2780 WRITE_CACHE_TREE_EXTENSION = 1<<1,
2781 WRITE_RESOLVE_UNDO_EXTENSION = 1<<2,
2782 WRITE_UNTRACKED_CACHE_EXTENSION = 1<<3,
2783 WRITE_FSMONITOR_EXTENSION = 1<<4,
2785 #define WRITE_ALL_EXTENSIONS ((enum write_extensions)-1)
2788 * On success, `tempfile` is closed. If it is the temporary file
2789 * of a `struct lock_file`, we will therefore effectively perform
2790 * a 'close_lock_file_gently()`. Since that is an implementation
2791 * detail of lockfiles, callers of `do_write_index()` should not
2792 * rely on it.
2794 static int do_write_index(struct index_state *istate, struct tempfile *tempfile,
2795 enum write_extensions write_extensions, unsigned flags)
2797 uint64_t start = getnanotime();
2798 struct hashfile *f;
2799 git_hash_ctx *eoie_c = NULL;
2800 struct cache_header hdr;
2801 int i, err = 0, removed, extended, hdr_version;
2802 struct cache_entry **cache = istate->cache;
2803 int entries = istate->cache_nr;
2804 struct stat st;
2805 struct ondisk_cache_entry ondisk;
2806 struct strbuf previous_name_buf = STRBUF_INIT, *previous_name;
2807 int drop_cache_tree = istate->drop_cache_tree;
2808 off_t offset;
2809 int csum_fsync_flag;
2810 int ieot_entries = 1;
2811 struct index_entry_offset_table *ieot = NULL;
2812 int nr, nr_threads;
2813 struct repository *r = istate->repo;
2815 f = hashfd(tempfile->fd, tempfile->filename.buf);
2817 prepare_repo_settings(r);
2818 f->skip_hash = r->settings.index_skip_hash;
2820 for (i = removed = extended = 0; i < entries; i++) {
2821 if (cache[i]->ce_flags & CE_REMOVE)
2822 removed++;
2824 /* reduce extended entries if possible */
2825 cache[i]->ce_flags &= ~CE_EXTENDED;
2826 if (cache[i]->ce_flags & CE_EXTENDED_FLAGS) {
2827 extended++;
2828 cache[i]->ce_flags |= CE_EXTENDED;
2832 if (!istate->version)
2833 istate->version = get_index_format_default(r);
2835 /* demote version 3 to version 2 when the latter suffices */
2836 if (istate->version == 3 || istate->version == 2)
2837 istate->version = extended ? 3 : 2;
2839 hdr_version = istate->version;
2841 hdr.hdr_signature = htonl(CACHE_SIGNATURE);
2842 hdr.hdr_version = htonl(hdr_version);
2843 hdr.hdr_entries = htonl(entries - removed);
2845 hashwrite(f, &hdr, sizeof(hdr));
2847 if (!HAVE_THREADS || git_config_get_index_threads(&nr_threads))
2848 nr_threads = 1;
2850 if (nr_threads != 1 && record_ieot()) {
2851 int ieot_blocks, cpus;
2854 * ensure default number of ieot blocks maps evenly to the
2855 * default number of threads that will process them leaving
2856 * room for the thread to load the index extensions.
2858 if (!nr_threads) {
2859 ieot_blocks = istate->cache_nr / THREAD_COST;
2860 cpus = online_cpus();
2861 if (ieot_blocks > cpus - 1)
2862 ieot_blocks = cpus - 1;
2863 } else {
2864 ieot_blocks = nr_threads;
2865 if (ieot_blocks > istate->cache_nr)
2866 ieot_blocks = istate->cache_nr;
2870 * no reason to write out the IEOT extension if we don't
2871 * have enough blocks to utilize multi-threading
2873 if (ieot_blocks > 1) {
2874 ieot = xcalloc(1, sizeof(struct index_entry_offset_table)
2875 + (ieot_blocks * sizeof(struct index_entry_offset)));
2876 ieot_entries = DIV_ROUND_UP(entries, ieot_blocks);
2880 offset = hashfile_total(f);
2882 nr = 0;
2883 previous_name = (hdr_version == 4) ? &previous_name_buf : NULL;
2885 for (i = 0; i < entries; i++) {
2886 struct cache_entry *ce = cache[i];
2887 if (ce->ce_flags & CE_REMOVE)
2888 continue;
2889 if (!ce_uptodate(ce) && is_racy_timestamp(istate, ce))
2890 ce_smudge_racily_clean_entry(istate, ce);
2891 if (is_null_oid(&ce->oid)) {
2892 static const char msg[] = "cache entry has null sha1: %s";
2893 static int allow = -1;
2895 if (allow < 0)
2896 allow = git_env_bool("GIT_ALLOW_NULL_SHA1", 0);
2897 if (allow)
2898 warning(msg, ce->name);
2899 else
2900 err = error(msg, ce->name);
2902 drop_cache_tree = 1;
2904 if (ieot && i && (i % ieot_entries == 0)) {
2905 ieot->entries[ieot->nr].nr = nr;
2906 ieot->entries[ieot->nr].offset = offset;
2907 ieot->nr++;
2909 * If we have a V4 index, set the first byte to an invalid
2910 * character to ensure there is nothing common with the previous
2911 * entry
2913 if (previous_name)
2914 previous_name->buf[0] = 0;
2915 nr = 0;
2917 offset = hashfile_total(f);
2919 if (ce_write_entry(f, ce, previous_name, (struct ondisk_cache_entry *)&ondisk) < 0)
2920 err = -1;
2922 if (err)
2923 break;
2924 nr++;
2926 if (ieot && nr) {
2927 ieot->entries[ieot->nr].nr = nr;
2928 ieot->entries[ieot->nr].offset = offset;
2929 ieot->nr++;
2931 strbuf_release(&previous_name_buf);
2933 if (err) {
2934 free(ieot);
2935 return err;
2938 offset = hashfile_total(f);
2941 * The extension headers must be hashed on their own for the
2942 * EOIE extension. Create a hashfile here to compute that hash.
2944 if (offset && record_eoie()) {
2945 CALLOC_ARRAY(eoie_c, 1);
2946 the_hash_algo->init_fn(eoie_c);
2950 * Lets write out CACHE_EXT_INDEXENTRYOFFSETTABLE first so that we
2951 * can minimize the number of extensions we have to scan through to
2952 * find it during load. Write it out regardless of the
2953 * strip_extensions parameter as we need it when loading the shared
2954 * index.
2956 if (ieot) {
2957 struct strbuf sb = STRBUF_INIT;
2959 write_ieot_extension(&sb, ieot);
2960 err = write_index_ext_header(f, eoie_c, CACHE_EXT_INDEXENTRYOFFSETTABLE, sb.len) < 0;
2961 hashwrite(f, sb.buf, sb.len);
2962 strbuf_release(&sb);
2963 free(ieot);
2964 if (err)
2965 return -1;
2968 if (write_extensions & WRITE_SPLIT_INDEX_EXTENSION &&
2969 istate->split_index) {
2970 struct strbuf sb = STRBUF_INIT;
2972 if (istate->sparse_index)
2973 die(_("cannot write split index for a sparse index"));
2975 err = write_link_extension(&sb, istate) < 0 ||
2976 write_index_ext_header(f, eoie_c, CACHE_EXT_LINK,
2977 sb.len) < 0;
2978 hashwrite(f, sb.buf, sb.len);
2979 strbuf_release(&sb);
2980 if (err)
2981 return -1;
2983 if (write_extensions & WRITE_CACHE_TREE_EXTENSION &&
2984 !drop_cache_tree && istate->cache_tree) {
2985 struct strbuf sb = STRBUF_INIT;
2987 cache_tree_write(&sb, istate->cache_tree);
2988 err = write_index_ext_header(f, eoie_c, CACHE_EXT_TREE, sb.len) < 0;
2989 hashwrite(f, sb.buf, sb.len);
2990 strbuf_release(&sb);
2991 if (err)
2992 return -1;
2994 if (write_extensions & WRITE_RESOLVE_UNDO_EXTENSION &&
2995 istate->resolve_undo) {
2996 struct strbuf sb = STRBUF_INIT;
2998 resolve_undo_write(&sb, istate->resolve_undo);
2999 err = write_index_ext_header(f, eoie_c, CACHE_EXT_RESOLVE_UNDO,
3000 sb.len) < 0;
3001 hashwrite(f, sb.buf, sb.len);
3002 strbuf_release(&sb);
3003 if (err)
3004 return -1;
3006 if (write_extensions & WRITE_UNTRACKED_CACHE_EXTENSION &&
3007 istate->untracked) {
3008 struct strbuf sb = STRBUF_INIT;
3010 write_untracked_extension(&sb, istate->untracked);
3011 err = write_index_ext_header(f, eoie_c, CACHE_EXT_UNTRACKED,
3012 sb.len) < 0;
3013 hashwrite(f, sb.buf, sb.len);
3014 strbuf_release(&sb);
3015 if (err)
3016 return -1;
3018 if (write_extensions & WRITE_FSMONITOR_EXTENSION &&
3019 istate->fsmonitor_last_update) {
3020 struct strbuf sb = STRBUF_INIT;
3022 write_fsmonitor_extension(&sb, istate);
3023 err = write_index_ext_header(f, eoie_c, CACHE_EXT_FSMONITOR, sb.len) < 0;
3024 hashwrite(f, sb.buf, sb.len);
3025 strbuf_release(&sb);
3026 if (err)
3027 return -1;
3029 if (istate->sparse_index) {
3030 if (write_index_ext_header(f, eoie_c, CACHE_EXT_SPARSE_DIRECTORIES, 0) < 0)
3031 return -1;
3035 * CACHE_EXT_ENDOFINDEXENTRIES must be written as the last entry before the SHA1
3036 * so that it can be found and processed before all the index entries are
3037 * read. Write it out regardless of the strip_extensions parameter as we need it
3038 * when loading the shared index.
3040 if (eoie_c) {
3041 struct strbuf sb = STRBUF_INIT;
3043 write_eoie_extension(&sb, eoie_c, offset);
3044 err = write_index_ext_header(f, NULL, CACHE_EXT_ENDOFINDEXENTRIES, sb.len) < 0;
3045 hashwrite(f, sb.buf, sb.len);
3046 strbuf_release(&sb);
3047 if (err)
3048 return -1;
3051 csum_fsync_flag = 0;
3052 if (!alternate_index_output && (flags & COMMIT_LOCK))
3053 csum_fsync_flag = CSUM_FSYNC;
3055 finalize_hashfile(f, istate->oid.hash, FSYNC_COMPONENT_INDEX,
3056 CSUM_HASH_IN_STREAM | csum_fsync_flag);
3058 if (close_tempfile_gently(tempfile)) {
3059 error(_("could not close '%s'"), get_tempfile_path(tempfile));
3060 return -1;
3062 if (stat(get_tempfile_path(tempfile), &st))
3063 return -1;
3064 istate->timestamp.sec = (unsigned int)st.st_mtime;
3065 istate->timestamp.nsec = ST_MTIME_NSEC(st);
3066 trace_performance_since(start, "write index, changed mask = %x", istate->cache_changed);
3069 * TODO trace2: replace "the_repository" with the actual repo instance
3070 * that is associated with the given "istate".
3072 trace2_data_intmax("index", the_repository, "write/version",
3073 istate->version);
3074 trace2_data_intmax("index", the_repository, "write/cache_nr",
3075 istate->cache_nr);
3077 return 0;
3080 void set_alternate_index_output(const char *name)
3082 alternate_index_output = name;
3085 static int commit_locked_index(struct lock_file *lk)
3087 if (alternate_index_output)
3088 return commit_lock_file_to(lk, alternate_index_output);
3089 else
3090 return commit_lock_file(lk);
3093 static int do_write_locked_index(struct index_state *istate,
3094 struct lock_file *lock,
3095 unsigned flags,
3096 enum write_extensions write_extensions)
3098 int ret;
3099 int was_full = istate->sparse_index == INDEX_EXPANDED;
3101 ret = convert_to_sparse(istate, 0);
3103 if (ret) {
3104 warning(_("failed to convert to a sparse-index"));
3105 return ret;
3109 * TODO trace2: replace "the_repository" with the actual repo instance
3110 * that is associated with the given "istate".
3112 trace2_region_enter_printf("index", "do_write_index", the_repository,
3113 "%s", get_lock_file_path(lock));
3114 ret = do_write_index(istate, lock->tempfile, write_extensions, flags);
3115 trace2_region_leave_printf("index", "do_write_index", the_repository,
3116 "%s", get_lock_file_path(lock));
3118 if (was_full)
3119 ensure_full_index(istate);
3121 if (ret)
3122 return ret;
3123 if (flags & COMMIT_LOCK)
3124 ret = commit_locked_index(lock);
3125 else
3126 ret = close_lock_file_gently(lock);
3128 run_hooks_l("post-index-change",
3129 istate->updated_workdir ? "1" : "0",
3130 istate->updated_skipworktree ? "1" : "0", NULL);
3131 istate->updated_workdir = 0;
3132 istate->updated_skipworktree = 0;
3134 return ret;
3137 static int write_split_index(struct index_state *istate,
3138 struct lock_file *lock,
3139 unsigned flags)
3141 int ret;
3142 prepare_to_write_split_index(istate);
3143 ret = do_write_locked_index(istate, lock, flags, WRITE_ALL_EXTENSIONS);
3144 finish_writing_split_index(istate);
3145 return ret;
3148 static const char *shared_index_expire = "2.weeks.ago";
3150 static unsigned long get_shared_index_expire_date(void)
3152 static unsigned long shared_index_expire_date;
3153 static int shared_index_expire_date_prepared;
3155 if (!shared_index_expire_date_prepared) {
3156 git_config_get_expiry("splitindex.sharedindexexpire",
3157 &shared_index_expire);
3158 shared_index_expire_date = approxidate(shared_index_expire);
3159 shared_index_expire_date_prepared = 1;
3162 return shared_index_expire_date;
3165 static int should_delete_shared_index(const char *shared_index_path)
3167 struct stat st;
3168 unsigned long expiration;
3170 /* Check timestamp */
3171 expiration = get_shared_index_expire_date();
3172 if (!expiration)
3173 return 0;
3174 if (stat(shared_index_path, &st))
3175 return error_errno(_("could not stat '%s'"), shared_index_path);
3176 if (st.st_mtime > expiration)
3177 return 0;
3179 return 1;
3182 static int clean_shared_index_files(const char *current_hex)
3184 struct dirent *de;
3185 DIR *dir = opendir(get_git_dir());
3187 if (!dir)
3188 return error_errno(_("unable to open git dir: %s"), get_git_dir());
3190 while ((de = readdir(dir)) != NULL) {
3191 const char *sha1_hex;
3192 const char *shared_index_path;
3193 if (!skip_prefix(de->d_name, "sharedindex.", &sha1_hex))
3194 continue;
3195 if (!strcmp(sha1_hex, current_hex))
3196 continue;
3197 shared_index_path = git_path("%s", de->d_name);
3198 if (should_delete_shared_index(shared_index_path) > 0 &&
3199 unlink(shared_index_path))
3200 warning_errno(_("unable to unlink: %s"), shared_index_path);
3202 closedir(dir);
3204 return 0;
3207 static int write_shared_index(struct index_state *istate,
3208 struct tempfile **temp, unsigned flags)
3210 struct split_index *si = istate->split_index;
3211 int ret, was_full = !istate->sparse_index;
3213 move_cache_to_base_index(istate);
3214 convert_to_sparse(istate, 0);
3216 trace2_region_enter_printf("index", "shared/do_write_index",
3217 the_repository, "%s", get_tempfile_path(*temp));
3218 ret = do_write_index(si->base, *temp, WRITE_NO_EXTENSION, flags);
3219 trace2_region_leave_printf("index", "shared/do_write_index",
3220 the_repository, "%s", get_tempfile_path(*temp));
3222 if (was_full)
3223 ensure_full_index(istate);
3225 if (ret)
3226 return ret;
3227 ret = adjust_shared_perm(get_tempfile_path(*temp));
3228 if (ret) {
3229 error(_("cannot fix permission bits on '%s'"), get_tempfile_path(*temp));
3230 return ret;
3232 ret = rename_tempfile(temp,
3233 git_path("sharedindex.%s", oid_to_hex(&si->base->oid)));
3234 if (!ret) {
3235 oidcpy(&si->base_oid, &si->base->oid);
3236 clean_shared_index_files(oid_to_hex(&si->base->oid));
3239 return ret;
3242 static const int default_max_percent_split_change = 20;
3244 static int too_many_not_shared_entries(struct index_state *istate)
3246 int i, not_shared = 0;
3247 int max_split = git_config_get_max_percent_split_change();
3249 switch (max_split) {
3250 case -1:
3251 /* not or badly configured: use the default value */
3252 max_split = default_max_percent_split_change;
3253 break;
3254 case 0:
3255 return 1; /* 0% means always write a new shared index */
3256 case 100:
3257 return 0; /* 100% means never write a new shared index */
3258 default:
3259 break; /* just use the configured value */
3262 /* Count not shared entries */
3263 for (i = 0; i < istate->cache_nr; i++) {
3264 struct cache_entry *ce = istate->cache[i];
3265 if (!ce->index)
3266 not_shared++;
3269 return (int64_t)istate->cache_nr * max_split < (int64_t)not_shared * 100;
3272 int write_locked_index(struct index_state *istate, struct lock_file *lock,
3273 unsigned flags)
3275 int new_shared_index, ret, test_split_index_env;
3276 struct split_index *si = istate->split_index;
3278 if (git_env_bool("GIT_TEST_CHECK_CACHE_TREE", 0))
3279 cache_tree_verify(the_repository, istate);
3281 if ((flags & SKIP_IF_UNCHANGED) && !istate->cache_changed) {
3282 if (flags & COMMIT_LOCK)
3283 rollback_lock_file(lock);
3284 return 0;
3287 if (istate->fsmonitor_last_update)
3288 fill_fsmonitor_bitmap(istate);
3290 test_split_index_env = git_env_bool("GIT_TEST_SPLIT_INDEX", 0);
3292 if ((!si && !test_split_index_env) ||
3293 alternate_index_output ||
3294 (istate->cache_changed & ~EXTMASK)) {
3295 ret = do_write_locked_index(istate, lock, flags,
3296 ~WRITE_SPLIT_INDEX_EXTENSION);
3297 goto out;
3300 if (test_split_index_env) {
3301 if (!si) {
3302 si = init_split_index(istate);
3303 istate->cache_changed |= SPLIT_INDEX_ORDERED;
3304 } else {
3305 int v = si->base_oid.hash[0];
3306 if ((v & 15) < 6)
3307 istate->cache_changed |= SPLIT_INDEX_ORDERED;
3310 if (too_many_not_shared_entries(istate))
3311 istate->cache_changed |= SPLIT_INDEX_ORDERED;
3313 new_shared_index = istate->cache_changed & SPLIT_INDEX_ORDERED;
3315 if (new_shared_index) {
3316 struct tempfile *temp;
3317 int saved_errno;
3319 /* Same initial permissions as the main .git/index file */
3320 temp = mks_tempfile_sm(git_path("sharedindex_XXXXXX"), 0, 0666);
3321 if (!temp) {
3322 ret = do_write_locked_index(istate, lock, flags,
3323 ~WRITE_SPLIT_INDEX_EXTENSION);
3324 goto out;
3326 ret = write_shared_index(istate, &temp, flags);
3328 saved_errno = errno;
3329 if (is_tempfile_active(temp))
3330 delete_tempfile(&temp);
3331 errno = saved_errno;
3333 if (ret)
3334 goto out;
3337 ret = write_split_index(istate, lock, flags);
3339 /* Freshen the shared index only if the split-index was written */
3340 if (!ret && !new_shared_index && !is_null_oid(&si->base_oid)) {
3341 const char *shared_index = git_path("sharedindex.%s",
3342 oid_to_hex(&si->base_oid));
3343 freshen_shared_index(shared_index, 1);
3346 out:
3347 if (flags & COMMIT_LOCK)
3348 rollback_lock_file(lock);
3349 return ret;
3353 * Read the index file that is potentially unmerged into given
3354 * index_state, dropping any unmerged entries to stage #0 (potentially
3355 * resulting in a path appearing as both a file and a directory in the
3356 * index; the caller is responsible to clear out the extra entries
3357 * before writing the index to a tree). Returns true if the index is
3358 * unmerged. Callers who want to refuse to work from an unmerged
3359 * state can call this and check its return value, instead of calling
3360 * read_cache().
3362 int repo_read_index_unmerged(struct repository *repo)
3364 struct index_state *istate;
3365 int i;
3366 int unmerged = 0;
3368 repo_read_index(repo);
3369 istate = repo->index;
3370 for (i = 0; i < istate->cache_nr; i++) {
3371 struct cache_entry *ce = istate->cache[i];
3372 struct cache_entry *new_ce;
3373 int len;
3375 if (!ce_stage(ce))
3376 continue;
3377 unmerged = 1;
3378 len = ce_namelen(ce);
3379 new_ce = make_empty_cache_entry(istate, len);
3380 memcpy(new_ce->name, ce->name, len);
3381 new_ce->ce_flags = create_ce_flags(0) | CE_CONFLICTED;
3382 new_ce->ce_namelen = len;
3383 new_ce->ce_mode = ce->ce_mode;
3384 if (add_index_entry(istate, new_ce, ADD_CACHE_SKIP_DFCHECK))
3385 return error(_("%s: cannot drop to stage #0"),
3386 new_ce->name);
3388 return unmerged;
3392 * Returns 1 if the path is an "other" path with respect to
3393 * the index; that is, the path is not mentioned in the index at all,
3394 * either as a file, a directory with some files in the index,
3395 * or as an unmerged entry.
3397 * We helpfully remove a trailing "/" from directories so that
3398 * the output of read_directory can be used as-is.
3400 int index_name_is_other(struct index_state *istate, const char *name,
3401 int namelen)
3403 int pos;
3404 if (namelen && name[namelen - 1] == '/')
3405 namelen--;
3406 pos = index_name_pos(istate, name, namelen);
3407 if (0 <= pos)
3408 return 0; /* exact match */
3409 pos = -pos - 1;
3410 if (pos < istate->cache_nr) {
3411 struct cache_entry *ce = istate->cache[pos];
3412 if (ce_namelen(ce) == namelen &&
3413 !memcmp(ce->name, name, namelen))
3414 return 0; /* Yup, this one exists unmerged */
3416 return 1;
3419 void *read_blob_data_from_index(struct index_state *istate,
3420 const char *path, unsigned long *size)
3422 int pos, len;
3423 unsigned long sz;
3424 enum object_type type;
3425 void *data;
3427 len = strlen(path);
3428 pos = index_name_pos(istate, path, len);
3429 if (pos < 0) {
3431 * We might be in the middle of a merge, in which
3432 * case we would read stage #2 (ours).
3434 int i;
3435 for (i = -pos - 1;
3436 (pos < 0 && i < istate->cache_nr &&
3437 !strcmp(istate->cache[i]->name, path));
3438 i++)
3439 if (ce_stage(istate->cache[i]) == 2)
3440 pos = i;
3442 if (pos < 0)
3443 return NULL;
3444 data = repo_read_object_file(the_repository, &istate->cache[pos]->oid,
3445 &type, &sz);
3446 if (!data || type != OBJ_BLOB) {
3447 free(data);
3448 return NULL;
3450 if (size)
3451 *size = sz;
3452 return data;
3455 void move_index_extensions(struct index_state *dst, struct index_state *src)
3457 dst->untracked = src->untracked;
3458 src->untracked = NULL;
3459 dst->cache_tree = src->cache_tree;
3460 src->cache_tree = NULL;
3463 struct cache_entry *dup_cache_entry(const struct cache_entry *ce,
3464 struct index_state *istate)
3466 unsigned int size = ce_size(ce);
3467 int mem_pool_allocated;
3468 struct cache_entry *new_entry = make_empty_cache_entry(istate, ce_namelen(ce));
3469 mem_pool_allocated = new_entry->mem_pool_allocated;
3471 memcpy(new_entry, ce, size);
3472 new_entry->mem_pool_allocated = mem_pool_allocated;
3473 return new_entry;
3476 void discard_cache_entry(struct cache_entry *ce)
3478 if (ce && should_validate_cache_entries())
3479 memset(ce, 0xCD, cache_entry_size(ce->ce_namelen));
3481 if (ce && ce->mem_pool_allocated)
3482 return;
3484 free(ce);
3487 int should_validate_cache_entries(void)
3489 static int validate_index_cache_entries = -1;
3491 if (validate_index_cache_entries < 0) {
3492 if (getenv("GIT_TEST_VALIDATE_INDEX_CACHE_ENTRIES"))
3493 validate_index_cache_entries = 1;
3494 else
3495 validate_index_cache_entries = 0;
3498 return validate_index_cache_entries;
3501 #define EOIE_SIZE (4 + GIT_SHA1_RAWSZ) /* <4-byte offset> + <20-byte hash> */
3502 #define EOIE_SIZE_WITH_HEADER (4 + 4 + EOIE_SIZE) /* <4-byte signature> + <4-byte length> + EOIE_SIZE */
3504 static size_t read_eoie_extension(const char *mmap, size_t mmap_size)
3507 * The end of index entries (EOIE) extension is guaranteed to be last
3508 * so that it can be found by scanning backwards from the EOF.
3510 * "EOIE"
3511 * <4-byte length>
3512 * <4-byte offset>
3513 * <20-byte hash>
3515 const char *index, *eoie;
3516 uint32_t extsize;
3517 size_t offset, src_offset;
3518 unsigned char hash[GIT_MAX_RAWSZ];
3519 git_hash_ctx c;
3521 /* ensure we have an index big enough to contain an EOIE extension */
3522 if (mmap_size < sizeof(struct cache_header) + EOIE_SIZE_WITH_HEADER + the_hash_algo->rawsz)
3523 return 0;
3525 /* validate the extension signature */
3526 index = eoie = mmap + mmap_size - EOIE_SIZE_WITH_HEADER - the_hash_algo->rawsz;
3527 if (CACHE_EXT(index) != CACHE_EXT_ENDOFINDEXENTRIES)
3528 return 0;
3529 index += sizeof(uint32_t);
3531 /* validate the extension size */
3532 extsize = get_be32(index);
3533 if (extsize != EOIE_SIZE)
3534 return 0;
3535 index += sizeof(uint32_t);
3538 * Validate the offset we're going to look for the first extension
3539 * signature is after the index header and before the eoie extension.
3541 offset = get_be32(index);
3542 if (mmap + offset < mmap + sizeof(struct cache_header))
3543 return 0;
3544 if (mmap + offset >= eoie)
3545 return 0;
3546 index += sizeof(uint32_t);
3549 * The hash is computed over extension types and their sizes (but not
3550 * their contents). E.g. if we have "TREE" extension that is N-bytes
3551 * long, "REUC" extension that is M-bytes long, followed by "EOIE",
3552 * then the hash would be:
3554 * SHA-1("TREE" + <binary representation of N> +
3555 * "REUC" + <binary representation of M>)
3557 src_offset = offset;
3558 the_hash_algo->init_fn(&c);
3559 while (src_offset < mmap_size - the_hash_algo->rawsz - EOIE_SIZE_WITH_HEADER) {
3560 /* After an array of active_nr index entries,
3561 * there can be arbitrary number of extended
3562 * sections, each of which is prefixed with
3563 * extension name (4-byte) and section length
3564 * in 4-byte network byte order.
3566 uint32_t extsize;
3567 memcpy(&extsize, mmap + src_offset + 4, 4);
3568 extsize = ntohl(extsize);
3570 /* verify the extension size isn't so large it will wrap around */
3571 if (src_offset + 8 + extsize < src_offset)
3572 return 0;
3574 the_hash_algo->update_fn(&c, mmap + src_offset, 8);
3576 src_offset += 8;
3577 src_offset += extsize;
3579 the_hash_algo->final_fn(hash, &c);
3580 if (!hasheq(hash, (const unsigned char *)index))
3581 return 0;
3583 /* Validate that the extension offsets returned us back to the eoie extension. */
3584 if (src_offset != mmap_size - the_hash_algo->rawsz - EOIE_SIZE_WITH_HEADER)
3585 return 0;
3587 return offset;
3590 static void write_eoie_extension(struct strbuf *sb, git_hash_ctx *eoie_context, size_t offset)
3592 uint32_t buffer;
3593 unsigned char hash[GIT_MAX_RAWSZ];
3595 /* offset */
3596 put_be32(&buffer, offset);
3597 strbuf_add(sb, &buffer, sizeof(uint32_t));
3599 /* hash */
3600 the_hash_algo->final_fn(hash, eoie_context);
3601 strbuf_add(sb, hash, the_hash_algo->rawsz);
3604 #define IEOT_VERSION (1)
3606 static struct index_entry_offset_table *read_ieot_extension(const char *mmap, size_t mmap_size, size_t offset)
3608 const char *index = NULL;
3609 uint32_t extsize, ext_version;
3610 struct index_entry_offset_table *ieot;
3611 int i, nr;
3613 /* find the IEOT extension */
3614 if (!offset)
3615 return NULL;
3616 while (offset <= mmap_size - the_hash_algo->rawsz - 8) {
3617 extsize = get_be32(mmap + offset + 4);
3618 if (CACHE_EXT((mmap + offset)) == CACHE_EXT_INDEXENTRYOFFSETTABLE) {
3619 index = mmap + offset + 4 + 4;
3620 break;
3622 offset += 8;
3623 offset += extsize;
3625 if (!index)
3626 return NULL;
3628 /* validate the version is IEOT_VERSION */
3629 ext_version = get_be32(index);
3630 if (ext_version != IEOT_VERSION) {
3631 error("invalid IEOT version %d", ext_version);
3632 return NULL;
3634 index += sizeof(uint32_t);
3636 /* extension size - version bytes / bytes per entry */
3637 nr = (extsize - sizeof(uint32_t)) / (sizeof(uint32_t) + sizeof(uint32_t));
3638 if (!nr) {
3639 error("invalid number of IEOT entries %d", nr);
3640 return NULL;
3642 ieot = xmalloc(sizeof(struct index_entry_offset_table)
3643 + (nr * sizeof(struct index_entry_offset)));
3644 ieot->nr = nr;
3645 for (i = 0; i < nr; i++) {
3646 ieot->entries[i].offset = get_be32(index);
3647 index += sizeof(uint32_t);
3648 ieot->entries[i].nr = get_be32(index);
3649 index += sizeof(uint32_t);
3652 return ieot;
3655 static void write_ieot_extension(struct strbuf *sb, struct index_entry_offset_table *ieot)
3657 uint32_t buffer;
3658 int i;
3660 /* version */
3661 put_be32(&buffer, IEOT_VERSION);
3662 strbuf_add(sb, &buffer, sizeof(uint32_t));
3664 /* ieot */
3665 for (i = 0; i < ieot->nr; i++) {
3667 /* offset */
3668 put_be32(&buffer, ieot->entries[i].offset);
3669 strbuf_add(sb, &buffer, sizeof(uint32_t));
3671 /* count */
3672 put_be32(&buffer, ieot->entries[i].nr);
3673 strbuf_add(sb, &buffer, sizeof(uint32_t));
3677 void prefetch_cache_entries(const struct index_state *istate,
3678 must_prefetch_predicate must_prefetch)
3680 int i;
3681 struct oid_array to_fetch = OID_ARRAY_INIT;
3683 for (i = 0; i < istate->cache_nr; i++) {
3684 struct cache_entry *ce = istate->cache[i];
3686 if (S_ISGITLINK(ce->ce_mode) || !must_prefetch(ce))
3687 continue;
3688 if (!oid_object_info_extended(the_repository, &ce->oid,
3689 NULL,
3690 OBJECT_INFO_FOR_PREFETCH))
3691 continue;
3692 oid_array_append(&to_fetch, &ce->oid);
3694 promisor_remote_get_direct(the_repository,
3695 to_fetch.oid, to_fetch.nr);
3696 oid_array_clear(&to_fetch);
3699 static int read_one_entry_opt(struct index_state *istate,
3700 const struct object_id *oid,
3701 struct strbuf *base,
3702 const char *pathname,
3703 unsigned mode, int opt)
3705 int len;
3706 struct cache_entry *ce;
3708 if (S_ISDIR(mode))
3709 return READ_TREE_RECURSIVE;
3711 len = strlen(pathname);
3712 ce = make_empty_cache_entry(istate, base->len + len);
3714 ce->ce_mode = create_ce_mode(mode);
3715 ce->ce_flags = create_ce_flags(1);
3716 ce->ce_namelen = base->len + len;
3717 memcpy(ce->name, base->buf, base->len);
3718 memcpy(ce->name + base->len, pathname, len+1);
3719 oidcpy(&ce->oid, oid);
3720 return add_index_entry(istate, ce, opt);
3723 static int read_one_entry(const struct object_id *oid, struct strbuf *base,
3724 const char *pathname, unsigned mode,
3725 void *context)
3727 struct index_state *istate = context;
3728 return read_one_entry_opt(istate, oid, base, pathname,
3729 mode,
3730 ADD_CACHE_OK_TO_ADD|ADD_CACHE_SKIP_DFCHECK);
3734 * This is used when the caller knows there is no existing entries at
3735 * the stage that will conflict with the entry being added.
3737 static int read_one_entry_quick(const struct object_id *oid, struct strbuf *base,
3738 const char *pathname, unsigned mode,
3739 void *context)
3741 struct index_state *istate = context;
3742 return read_one_entry_opt(istate, oid, base, pathname,
3743 mode, ADD_CACHE_JUST_APPEND);
3747 * Read the tree specified with --with-tree option
3748 * (typically, HEAD) into stage #1 and then
3749 * squash them down to stage #0. This is used for
3750 * --error-unmatch to list and check the path patterns
3751 * that were given from the command line. We are not
3752 * going to write this index out.
3754 void overlay_tree_on_index(struct index_state *istate,
3755 const char *tree_name, const char *prefix)
3757 struct tree *tree;
3758 struct object_id oid;
3759 struct pathspec pathspec;
3760 struct cache_entry *last_stage0 = NULL;
3761 int i;
3762 read_tree_fn_t fn = NULL;
3763 int err;
3765 if (repo_get_oid(the_repository, tree_name, &oid))
3766 die("tree-ish %s not found.", tree_name);
3767 tree = parse_tree_indirect(&oid);
3768 if (!tree)
3769 die("bad tree-ish %s", tree_name);
3771 /* Hoist the unmerged entries up to stage #3 to make room */
3772 /* TODO: audit for interaction with sparse-index. */
3773 ensure_full_index(istate);
3774 for (i = 0; i < istate->cache_nr; i++) {
3775 struct cache_entry *ce = istate->cache[i];
3776 if (!ce_stage(ce))
3777 continue;
3778 ce->ce_flags |= CE_STAGEMASK;
3781 if (prefix) {
3782 static const char *(matchbuf[1]);
3783 matchbuf[0] = NULL;
3784 parse_pathspec(&pathspec, PATHSPEC_ALL_MAGIC,
3785 PATHSPEC_PREFER_CWD, prefix, matchbuf);
3786 } else
3787 memset(&pathspec, 0, sizeof(pathspec));
3790 * See if we have cache entry at the stage. If so,
3791 * do it the original slow way, otherwise, append and then
3792 * sort at the end.
3794 for (i = 0; !fn && i < istate->cache_nr; i++) {
3795 const struct cache_entry *ce = istate->cache[i];
3796 if (ce_stage(ce) == 1)
3797 fn = read_one_entry;
3800 if (!fn)
3801 fn = read_one_entry_quick;
3802 err = read_tree(the_repository, tree, &pathspec, fn, istate);
3803 clear_pathspec(&pathspec);
3804 if (err)
3805 die("unable to read tree entries %s", tree_name);
3808 * Sort the cache entry -- we need to nuke the cache tree, though.
3810 if (fn == read_one_entry_quick) {
3811 cache_tree_free(&istate->cache_tree);
3812 QSORT(istate->cache, istate->cache_nr, cmp_cache_name_compare);
3815 for (i = 0; i < istate->cache_nr; i++) {
3816 struct cache_entry *ce = istate->cache[i];
3817 switch (ce_stage(ce)) {
3818 case 0:
3819 last_stage0 = ce;
3820 /* fallthru */
3821 default:
3822 continue;
3823 case 1:
3825 * If there is stage #0 entry for this, we do not
3826 * need to show it. We use CE_UPDATE bit to mark
3827 * such an entry.
3829 if (last_stage0 &&
3830 !strcmp(last_stage0->name, ce->name))
3831 ce->ce_flags |= CE_UPDATE;
3836 struct update_callback_data {
3837 struct index_state *index;
3838 int include_sparse;
3839 int flags;
3840 int add_errors;
3843 static int fix_unmerged_status(struct diff_filepair *p,
3844 struct update_callback_data *data)
3846 if (p->status != DIFF_STATUS_UNMERGED)
3847 return p->status;
3848 if (!(data->flags & ADD_CACHE_IGNORE_REMOVAL) && !p->two->mode)
3850 * This is not an explicit add request, and the
3851 * path is missing from the working tree (deleted)
3853 return DIFF_STATUS_DELETED;
3854 else
3856 * Either an explicit add request, or path exists
3857 * in the working tree. An attempt to explicitly
3858 * add a path that does not exist in the working tree
3859 * will be caught as an error by the caller immediately.
3861 return DIFF_STATUS_MODIFIED;
3864 static void update_callback(struct diff_queue_struct *q,
3865 struct diff_options *opt UNUSED, void *cbdata)
3867 int i;
3868 struct update_callback_data *data = cbdata;
3870 for (i = 0; i < q->nr; i++) {
3871 struct diff_filepair *p = q->queue[i];
3872 const char *path = p->one->path;
3874 if (!data->include_sparse &&
3875 !path_in_sparse_checkout(path, data->index))
3876 continue;
3878 switch (fix_unmerged_status(p, data)) {
3879 default:
3880 die(_("unexpected diff status %c"), p->status);
3881 case DIFF_STATUS_MODIFIED:
3882 case DIFF_STATUS_TYPE_CHANGED:
3883 if (add_file_to_index(data->index, path, data->flags)) {
3884 if (!(data->flags & ADD_CACHE_IGNORE_ERRORS))
3885 die(_("updating files failed"));
3886 data->add_errors++;
3888 break;
3889 case DIFF_STATUS_DELETED:
3890 if (data->flags & ADD_CACHE_IGNORE_REMOVAL)
3891 break;
3892 if (!(data->flags & ADD_CACHE_PRETEND))
3893 remove_file_from_index(data->index, path);
3894 if (data->flags & (ADD_CACHE_PRETEND|ADD_CACHE_VERBOSE))
3895 printf(_("remove '%s'\n"), path);
3896 break;
3901 int add_files_to_cache(struct repository *repo, const char *prefix,
3902 const struct pathspec *pathspec, int include_sparse,
3903 int flags)
3905 struct update_callback_data data;
3906 struct rev_info rev;
3908 memset(&data, 0, sizeof(data));
3909 data.index = repo->index;
3910 data.include_sparse = include_sparse;
3911 data.flags = flags;
3913 repo_init_revisions(repo, &rev, prefix);
3914 setup_revisions(0, NULL, &rev, NULL);
3915 if (pathspec)
3916 copy_pathspec(&rev.prune_data, pathspec);
3917 rev.diffopt.output_format = DIFF_FORMAT_CALLBACK;
3918 rev.diffopt.format_callback = update_callback;
3919 rev.diffopt.format_callback_data = &data;
3920 rev.diffopt.flags.override_submodule_config = 1;
3921 rev.max_count = 0; /* do not compare unmerged paths with stage #2 */
3924 * Use an ODB transaction to optimize adding multiple objects.
3925 * This function is invoked from commands other than 'add', which
3926 * may not have their own transaction active.
3928 begin_odb_transaction();
3929 run_diff_files(&rev, DIFF_RACY_IS_MODIFIED);
3930 end_odb_transaction();
3932 release_revisions(&rev);
3933 return !!data.add_errors;