]> git.ipfire.org Git - thirdparty/git.git/blob - read-cache.c
Merge branch 'en/header-split-cache-h-part-3'
[thirdparty/git.git] / read-cache.c
1 /*
2 * GIT - The information manager from hell
3 *
4 * Copyright (C) Linus Torvalds, 2005
5 */
6 #include "git-compat-util.h"
7 #include "alloc.h"
8 #include "bulk-checkin.h"
9 #include "config.h"
10 #include "date.h"
11 #include "diff.h"
12 #include "diffcore.h"
13 #include "hex.h"
14 #include "tempfile.h"
15 #include "lockfile.h"
16 #include "cache-tree.h"
17 #include "refs.h"
18 #include "dir.h"
19 #include "object-file.h"
20 #include "object-store-ll.h"
21 #include "oid-array.h"
22 #include "tree.h"
23 #include "commit.h"
24 #include "blob.h"
25 #include "environment.h"
26 #include "gettext.h"
27 #include "mem-pool.h"
28 #include "name-hash.h"
29 #include "object-name.h"
30 #include "path.h"
31 #include "preload-index.h"
32 #include "read-cache.h"
33 #include "resolve-undo.h"
34 #include "revision.h"
35 #include "run-command.h"
36 #include "strbuf.h"
37 #include "trace2.h"
38 #include "varint.h"
39 #include "split-index.h"
40 #include "symlinks.h"
41 #include "utf8.h"
42 #include "fsmonitor.h"
43 #include "thread-utils.h"
44 #include "progress.h"
45 #include "sparse-index.h"
46 #include "csum-file.h"
47 #include "promisor-remote.h"
48 #include "hook.h"
49 #include "wrapper.h"
50
51 /* Mask for the name length in ce_flags in the on-disk index */
52
53 #define CE_NAMEMASK (0x0fff)
54
55 /* Index extensions.
56 *
57 * The first letter should be 'A'..'Z' for extensions that are not
58 * necessary for a correct operation (i.e. optimization data).
59 * When new extensions are added that _needs_ to be understood in
60 * order to correctly interpret the index file, pick character that
61 * is outside the range, to cause the reader to abort.
62 */
63
64 #define CACHE_EXT(s) ( (s[0]<<24)|(s[1]<<16)|(s[2]<<8)|(s[3]) )
65 #define CACHE_EXT_TREE 0x54524545 /* "TREE" */
66 #define CACHE_EXT_RESOLVE_UNDO 0x52455543 /* "REUC" */
67 #define CACHE_EXT_LINK 0x6c696e6b /* "link" */
68 #define CACHE_EXT_UNTRACKED 0x554E5452 /* "UNTR" */
69 #define CACHE_EXT_FSMONITOR 0x46534D4E /* "FSMN" */
70 #define CACHE_EXT_ENDOFINDEXENTRIES 0x454F4945 /* "EOIE" */
71 #define CACHE_EXT_INDEXENTRYOFFSETTABLE 0x49454F54 /* "IEOT" */
72 #define CACHE_EXT_SPARSE_DIRECTORIES 0x73646972 /* "sdir" */
73
74 /* changes that can be kept in $GIT_DIR/index (basically all extensions) */
75 #define EXTMASK (RESOLVE_UNDO_CHANGED | CACHE_TREE_CHANGED | \
76 CE_ENTRY_ADDED | CE_ENTRY_REMOVED | CE_ENTRY_CHANGED | \
77 SPLIT_INDEX_ORDERED | UNTRACKED_CHANGED | FSMONITOR_CHANGED)
78
79
80 /*
81 * This is an estimate of the pathname length in the index. We use
82 * this for V4 index files to guess the un-deltafied size of the index
83 * in memory because of pathname deltafication. This is not required
84 * for V2/V3 index formats because their pathnames are not compressed.
85 * If the initial amount of memory set aside is not sufficient, the
86 * mem pool will allocate extra memory.
87 */
88 #define CACHE_ENTRY_PATH_LENGTH 80
89
90 enum index_search_mode {
91 NO_EXPAND_SPARSE = 0,
92 EXPAND_SPARSE = 1
93 };
94
95 static inline struct cache_entry *mem_pool__ce_alloc(struct mem_pool *mem_pool, size_t len)
96 {
97 struct cache_entry *ce;
98 ce = mem_pool_alloc(mem_pool, cache_entry_size(len));
99 ce->mem_pool_allocated = 1;
100 return ce;
101 }
102
103 static inline struct cache_entry *mem_pool__ce_calloc(struct mem_pool *mem_pool, size_t len)
104 {
105 struct cache_entry * ce;
106 ce = mem_pool_calloc(mem_pool, 1, cache_entry_size(len));
107 ce->mem_pool_allocated = 1;
108 return ce;
109 }
110
111 static struct mem_pool *find_mem_pool(struct index_state *istate)
112 {
113 struct mem_pool **pool_ptr;
114
115 if (istate->split_index && istate->split_index->base)
116 pool_ptr = &istate->split_index->base->ce_mem_pool;
117 else
118 pool_ptr = &istate->ce_mem_pool;
119
120 if (!*pool_ptr) {
121 *pool_ptr = xmalloc(sizeof(**pool_ptr));
122 mem_pool_init(*pool_ptr, 0);
123 }
124
125 return *pool_ptr;
126 }
127
128 static const char *alternate_index_output;
129
130 static void set_index_entry(struct index_state *istate, int nr, struct cache_entry *ce)
131 {
132 if (S_ISSPARSEDIR(ce->ce_mode))
133 istate->sparse_index = INDEX_COLLAPSED;
134
135 istate->cache[nr] = ce;
136 add_name_hash(istate, ce);
137 }
138
139 static void replace_index_entry(struct index_state *istate, int nr, struct cache_entry *ce)
140 {
141 struct cache_entry *old = istate->cache[nr];
142
143 replace_index_entry_in_base(istate, old, ce);
144 remove_name_hash(istate, old);
145 discard_cache_entry(old);
146 ce->ce_flags &= ~CE_HASHED;
147 set_index_entry(istate, nr, ce);
148 ce->ce_flags |= CE_UPDATE_IN_BASE;
149 mark_fsmonitor_invalid(istate, ce);
150 istate->cache_changed |= CE_ENTRY_CHANGED;
151 }
152
153 void rename_index_entry_at(struct index_state *istate, int nr, const char *new_name)
154 {
155 struct cache_entry *old_entry = istate->cache[nr], *new_entry, *refreshed;
156 int namelen = strlen(new_name);
157
158 new_entry = make_empty_cache_entry(istate, namelen);
159 copy_cache_entry(new_entry, old_entry);
160 new_entry->ce_flags &= ~CE_HASHED;
161 new_entry->ce_namelen = namelen;
162 new_entry->index = 0;
163 memcpy(new_entry->name, new_name, namelen + 1);
164
165 cache_tree_invalidate_path(istate, old_entry->name);
166 untracked_cache_remove_from_index(istate, old_entry->name);
167 remove_index_entry_at(istate, nr);
168
169 /*
170 * Refresh the new index entry. Using 'refresh_cache_entry' ensures
171 * we only update stat info if the entry is otherwise up-to-date (i.e.,
172 * the contents/mode haven't changed). This ensures that we reflect the
173 * 'ctime' of the rename in the index without (incorrectly) updating
174 * the cached stat info to reflect unstaged changes on disk.
175 */
176 refreshed = refresh_cache_entry(istate, new_entry, CE_MATCH_REFRESH);
177 if (refreshed && refreshed != new_entry) {
178 add_index_entry(istate, refreshed, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);
179 discard_cache_entry(new_entry);
180 } else
181 add_index_entry(istate, new_entry, ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);
182 }
183
184 /*
185 * This only updates the "non-critical" parts of the directory
186 * cache, ie the parts that aren't tracked by GIT, and only used
187 * to validate the cache.
188 */
189 void fill_stat_cache_info(struct index_state *istate, struct cache_entry *ce, struct stat *st)
190 {
191 fill_stat_data(&ce->ce_stat_data, st);
192
193 if (assume_unchanged)
194 ce->ce_flags |= CE_VALID;
195
196 if (S_ISREG(st->st_mode)) {
197 ce_mark_uptodate(ce);
198 mark_fsmonitor_valid(istate, ce);
199 }
200 }
201
202 static int ce_compare_data(struct index_state *istate,
203 const struct cache_entry *ce,
204 struct stat *st)
205 {
206 int match = -1;
207 int fd = git_open_cloexec(ce->name, O_RDONLY);
208
209 if (fd >= 0) {
210 struct object_id oid;
211 if (!index_fd(istate, &oid, fd, st, OBJ_BLOB, ce->name, 0))
212 match = !oideq(&oid, &ce->oid);
213 /* index_fd() closed the file descriptor already */
214 }
215 return match;
216 }
217
218 static int ce_compare_link(const struct cache_entry *ce, size_t expected_size)
219 {
220 int match = -1;
221 void *buffer;
222 unsigned long size;
223 enum object_type type;
224 struct strbuf sb = STRBUF_INIT;
225
226 if (strbuf_readlink(&sb, ce->name, expected_size))
227 return -1;
228
229 buffer = repo_read_object_file(the_repository, &ce->oid, &type, &size);
230 if (buffer) {
231 if (size == sb.len)
232 match = memcmp(buffer, sb.buf, size);
233 free(buffer);
234 }
235 strbuf_release(&sb);
236 return match;
237 }
238
239 static int ce_compare_gitlink(const struct cache_entry *ce)
240 {
241 struct object_id oid;
242
243 /*
244 * We don't actually require that the .git directory
245 * under GITLINK directory be a valid git directory. It
246 * might even be missing (in case nobody populated that
247 * sub-project).
248 *
249 * If so, we consider it always to match.
250 */
251 if (resolve_gitlink_ref(ce->name, "HEAD", &oid) < 0)
252 return 0;
253 return !oideq(&oid, &ce->oid);
254 }
255
256 static int ce_modified_check_fs(struct index_state *istate,
257 const struct cache_entry *ce,
258 struct stat *st)
259 {
260 switch (st->st_mode & S_IFMT) {
261 case S_IFREG:
262 if (ce_compare_data(istate, ce, st))
263 return DATA_CHANGED;
264 break;
265 case S_IFLNK:
266 if (ce_compare_link(ce, xsize_t(st->st_size)))
267 return DATA_CHANGED;
268 break;
269 case S_IFDIR:
270 if (S_ISGITLINK(ce->ce_mode))
271 return ce_compare_gitlink(ce) ? DATA_CHANGED : 0;
272 /* else fallthrough */
273 default:
274 return TYPE_CHANGED;
275 }
276 return 0;
277 }
278
279 static int ce_match_stat_basic(const struct cache_entry *ce, struct stat *st)
280 {
281 unsigned int changed = 0;
282
283 if (ce->ce_flags & CE_REMOVE)
284 return MODE_CHANGED | DATA_CHANGED | TYPE_CHANGED;
285
286 switch (ce->ce_mode & S_IFMT) {
287 case S_IFREG:
288 changed |= !S_ISREG(st->st_mode) ? TYPE_CHANGED : 0;
289 /* We consider only the owner x bit to be relevant for
290 * "mode changes"
291 */
292 if (trust_executable_bit &&
293 (0100 & (ce->ce_mode ^ st->st_mode)))
294 changed |= MODE_CHANGED;
295 break;
296 case S_IFLNK:
297 if (!S_ISLNK(st->st_mode) &&
298 (has_symlinks || !S_ISREG(st->st_mode)))
299 changed |= TYPE_CHANGED;
300 break;
301 case S_IFGITLINK:
302 /* We ignore most of the st_xxx fields for gitlinks */
303 if (!S_ISDIR(st->st_mode))
304 changed |= TYPE_CHANGED;
305 else if (ce_compare_gitlink(ce))
306 changed |= DATA_CHANGED;
307 return changed;
308 default:
309 BUG("unsupported ce_mode: %o", ce->ce_mode);
310 }
311
312 changed |= match_stat_data(&ce->ce_stat_data, st);
313
314 /* Racily smudged entry? */
315 if (!ce->ce_stat_data.sd_size) {
316 if (!is_empty_blob_sha1(ce->oid.hash))
317 changed |= DATA_CHANGED;
318 }
319
320 return changed;
321 }
322
323 static int is_racy_stat(const struct index_state *istate,
324 const struct stat_data *sd)
325 {
326 return (istate->timestamp.sec &&
327 #ifdef USE_NSEC
328 /* nanosecond timestamped files can also be racy! */
329 (istate->timestamp.sec < sd->sd_mtime.sec ||
330 (istate->timestamp.sec == sd->sd_mtime.sec &&
331 istate->timestamp.nsec <= sd->sd_mtime.nsec))
332 #else
333 istate->timestamp.sec <= sd->sd_mtime.sec
334 #endif
335 );
336 }
337
338 int is_racy_timestamp(const struct index_state *istate,
339 const struct cache_entry *ce)
340 {
341 return (!S_ISGITLINK(ce->ce_mode) &&
342 is_racy_stat(istate, &ce->ce_stat_data));
343 }
344
345 int match_stat_data_racy(const struct index_state *istate,
346 const struct stat_data *sd, struct stat *st)
347 {
348 if (is_racy_stat(istate, sd))
349 return MTIME_CHANGED;
350 return match_stat_data(sd, st);
351 }
352
353 int ie_match_stat(struct index_state *istate,
354 const struct cache_entry *ce, struct stat *st,
355 unsigned int options)
356 {
357 unsigned int changed;
358 int ignore_valid = options & CE_MATCH_IGNORE_VALID;
359 int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE;
360 int assume_racy_is_modified = options & CE_MATCH_RACY_IS_DIRTY;
361 int ignore_fsmonitor = options & CE_MATCH_IGNORE_FSMONITOR;
362
363 if (!ignore_fsmonitor)
364 refresh_fsmonitor(istate);
365 /*
366 * If it's marked as always valid in the index, it's
367 * valid whatever the checked-out copy says.
368 *
369 * skip-worktree has the same effect with higher precedence
370 */
371 if (!ignore_skip_worktree && ce_skip_worktree(ce))
372 return 0;
373 if (!ignore_valid && (ce->ce_flags & CE_VALID))
374 return 0;
375 if (!ignore_fsmonitor && (ce->ce_flags & CE_FSMONITOR_VALID))
376 return 0;
377
378 /*
379 * Intent-to-add entries have not been added, so the index entry
380 * by definition never matches what is in the work tree until it
381 * actually gets added.
382 */
383 if (ce_intent_to_add(ce))
384 return DATA_CHANGED | TYPE_CHANGED | MODE_CHANGED;
385
386 changed = ce_match_stat_basic(ce, st);
387
388 /*
389 * Within 1 second of this sequence:
390 * echo xyzzy >file && git-update-index --add file
391 * running this command:
392 * echo frotz >file
393 * would give a falsely clean cache entry. The mtime and
394 * length match the cache, and other stat fields do not change.
395 *
396 * We could detect this at update-index time (the cache entry
397 * being registered/updated records the same time as "now")
398 * and delay the return from git-update-index, but that would
399 * effectively mean we can make at most one commit per second,
400 * which is not acceptable. Instead, we check cache entries
401 * whose mtime are the same as the index file timestamp more
402 * carefully than others.
403 */
404 if (!changed && is_racy_timestamp(istate, ce)) {
405 if (assume_racy_is_modified)
406 changed |= DATA_CHANGED;
407 else
408 changed |= ce_modified_check_fs(istate, ce, st);
409 }
410
411 return changed;
412 }
413
414 int ie_modified(struct index_state *istate,
415 const struct cache_entry *ce,
416 struct stat *st, unsigned int options)
417 {
418 int changed, changed_fs;
419
420 changed = ie_match_stat(istate, ce, st, options);
421 if (!changed)
422 return 0;
423 /*
424 * If the mode or type has changed, there's no point in trying
425 * to refresh the entry - it's not going to match
426 */
427 if (changed & (MODE_CHANGED | TYPE_CHANGED))
428 return changed;
429
430 /*
431 * Immediately after read-tree or update-index --cacheinfo,
432 * the length field is zero, as we have never even read the
433 * lstat(2) information once, and we cannot trust DATA_CHANGED
434 * returned by ie_match_stat() which in turn was returned by
435 * ce_match_stat_basic() to signal that the filesize of the
436 * blob changed. We have to actually go to the filesystem to
437 * see if the contents match, and if so, should answer "unchanged".
438 *
439 * The logic does not apply to gitlinks, as ce_match_stat_basic()
440 * already has checked the actual HEAD from the filesystem in the
441 * subproject. If ie_match_stat() already said it is different,
442 * then we know it is.
443 */
444 if ((changed & DATA_CHANGED) &&
445 (S_ISGITLINK(ce->ce_mode) || ce->ce_stat_data.sd_size != 0))
446 return changed;
447
448 changed_fs = ce_modified_check_fs(istate, ce, st);
449 if (changed_fs)
450 return changed | changed_fs;
451 return 0;
452 }
453
454 static int cache_name_stage_compare(const char *name1, int len1, int stage1,
455 const char *name2, int len2, int stage2)
456 {
457 int cmp;
458
459 cmp = name_compare(name1, len1, name2, len2);
460 if (cmp)
461 return cmp;
462
463 if (stage1 < stage2)
464 return -1;
465 if (stage1 > stage2)
466 return 1;
467 return 0;
468 }
469
470 int cmp_cache_name_compare(const void *a_, const void *b_)
471 {
472 const struct cache_entry *ce1, *ce2;
473
474 ce1 = *((const struct cache_entry **)a_);
475 ce2 = *((const struct cache_entry **)b_);
476 return cache_name_stage_compare(ce1->name, ce1->ce_namelen, ce_stage(ce1),
477 ce2->name, ce2->ce_namelen, ce_stage(ce2));
478 }
479
480 static int index_name_stage_pos(struct index_state *istate,
481 const char *name, int namelen,
482 int stage,
483 enum index_search_mode search_mode)
484 {
485 int first, last;
486
487 first = 0;
488 last = istate->cache_nr;
489 while (last > first) {
490 int next = first + ((last - first) >> 1);
491 struct cache_entry *ce = istate->cache[next];
492 int cmp = cache_name_stage_compare(name, namelen, stage, ce->name, ce_namelen(ce), ce_stage(ce));
493 if (!cmp)
494 return next;
495 if (cmp < 0) {
496 last = next;
497 continue;
498 }
499 first = next+1;
500 }
501
502 if (search_mode == EXPAND_SPARSE && istate->sparse_index &&
503 first > 0) {
504 /* Note: first <= istate->cache_nr */
505 struct cache_entry *ce = istate->cache[first - 1];
506
507 /*
508 * If we are in a sparse-index _and_ the entry before the
509 * insertion position is a sparse-directory entry that is
510 * an ancestor of 'name', then we need to expand the index
511 * and search again. This will only trigger once, because
512 * thereafter the index is fully expanded.
513 */
514 if (S_ISSPARSEDIR(ce->ce_mode) &&
515 ce_namelen(ce) < namelen &&
516 !strncmp(name, ce->name, ce_namelen(ce))) {
517 ensure_full_index(istate);
518 return index_name_stage_pos(istate, name, namelen, stage, search_mode);
519 }
520 }
521
522 return -first-1;
523 }
524
525 int index_name_pos(struct index_state *istate, const char *name, int namelen)
526 {
527 return index_name_stage_pos(istate, name, namelen, 0, EXPAND_SPARSE);
528 }
529
530 int index_name_pos_sparse(struct index_state *istate, const char *name, int namelen)
531 {
532 return index_name_stage_pos(istate, name, namelen, 0, NO_EXPAND_SPARSE);
533 }
534
535 int index_entry_exists(struct index_state *istate, const char *name, int namelen)
536 {
537 return index_name_stage_pos(istate, name, namelen, 0, NO_EXPAND_SPARSE) >= 0;
538 }
539
540 int remove_index_entry_at(struct index_state *istate, int pos)
541 {
542 struct cache_entry *ce = istate->cache[pos];
543
544 record_resolve_undo(istate, ce);
545 remove_name_hash(istate, ce);
546 save_or_free_index_entry(istate, ce);
547 istate->cache_changed |= CE_ENTRY_REMOVED;
548 istate->cache_nr--;
549 if (pos >= istate->cache_nr)
550 return 0;
551 MOVE_ARRAY(istate->cache + pos, istate->cache + pos + 1,
552 istate->cache_nr - pos);
553 return 1;
554 }
555
556 /*
557 * Remove all cache entries marked for removal, that is where
558 * CE_REMOVE is set in ce_flags. This is much more effective than
559 * calling remove_index_entry_at() for each entry to be removed.
560 */
561 void remove_marked_cache_entries(struct index_state *istate, int invalidate)
562 {
563 struct cache_entry **ce_array = istate->cache;
564 unsigned int i, j;
565
566 for (i = j = 0; i < istate->cache_nr; i++) {
567 if (ce_array[i]->ce_flags & CE_REMOVE) {
568 if (invalidate) {
569 cache_tree_invalidate_path(istate,
570 ce_array[i]->name);
571 untracked_cache_remove_from_index(istate,
572 ce_array[i]->name);
573 }
574 remove_name_hash(istate, ce_array[i]);
575 save_or_free_index_entry(istate, ce_array[i]);
576 }
577 else
578 ce_array[j++] = ce_array[i];
579 }
580 if (j == istate->cache_nr)
581 return;
582 istate->cache_changed |= CE_ENTRY_REMOVED;
583 istate->cache_nr = j;
584 }
585
586 int remove_file_from_index(struct index_state *istate, const char *path)
587 {
588 int pos = index_name_pos(istate, path, strlen(path));
589 if (pos < 0)
590 pos = -pos-1;
591 cache_tree_invalidate_path(istate, path);
592 untracked_cache_remove_from_index(istate, path);
593 while (pos < istate->cache_nr && !strcmp(istate->cache[pos]->name, path))
594 remove_index_entry_at(istate, pos);
595 return 0;
596 }
597
598 static int compare_name(struct cache_entry *ce, const char *path, int namelen)
599 {
600 return namelen != ce_namelen(ce) || memcmp(path, ce->name, namelen);
601 }
602
603 static int index_name_pos_also_unmerged(struct index_state *istate,
604 const char *path, int namelen)
605 {
606 int pos = index_name_pos(istate, path, namelen);
607 struct cache_entry *ce;
608
609 if (pos >= 0)
610 return pos;
611
612 /* maybe unmerged? */
613 pos = -1 - pos;
614 if (pos >= istate->cache_nr ||
615 compare_name((ce = istate->cache[pos]), path, namelen))
616 return -1;
617
618 /* order of preference: stage 2, 1, 3 */
619 if (ce_stage(ce) == 1 && pos + 1 < istate->cache_nr &&
620 ce_stage((ce = istate->cache[pos + 1])) == 2 &&
621 !compare_name(ce, path, namelen))
622 pos++;
623 return pos;
624 }
625
626 static int different_name(struct cache_entry *ce, struct cache_entry *alias)
627 {
628 int len = ce_namelen(ce);
629 return ce_namelen(alias) != len || memcmp(ce->name, alias->name, len);
630 }
631
632 /*
633 * If we add a filename that aliases in the cache, we will use the
634 * name that we already have - but we don't want to update the same
635 * alias twice, because that implies that there were actually two
636 * different files with aliasing names!
637 *
638 * So we use the CE_ADDED flag to verify that the alias was an old
639 * one before we accept it as
640 */
641 static struct cache_entry *create_alias_ce(struct index_state *istate,
642 struct cache_entry *ce,
643 struct cache_entry *alias)
644 {
645 int len;
646 struct cache_entry *new_entry;
647
648 if (alias->ce_flags & CE_ADDED)
649 die(_("will not add file alias '%s' ('%s' already exists in index)"),
650 ce->name, alias->name);
651
652 /* Ok, create the new entry using the name of the existing alias */
653 len = ce_namelen(alias);
654 new_entry = make_empty_cache_entry(istate, len);
655 memcpy(new_entry->name, alias->name, len);
656 copy_cache_entry(new_entry, ce);
657 save_or_free_index_entry(istate, ce);
658 return new_entry;
659 }
660
661 void set_object_name_for_intent_to_add_entry(struct cache_entry *ce)
662 {
663 struct object_id oid;
664 if (write_object_file("", 0, OBJ_BLOB, &oid))
665 die(_("cannot create an empty blob in the object database"));
666 oidcpy(&ce->oid, &oid);
667 }
668
669 int add_to_index(struct index_state *istate, const char *path, struct stat *st, int flags)
670 {
671 int namelen, was_same;
672 mode_t st_mode = st->st_mode;
673 struct cache_entry *ce, *alias = NULL;
674 unsigned ce_option = CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE|CE_MATCH_RACY_IS_DIRTY;
675 int verbose = flags & (ADD_CACHE_VERBOSE | ADD_CACHE_PRETEND);
676 int pretend = flags & ADD_CACHE_PRETEND;
677 int intent_only = flags & ADD_CACHE_INTENT;
678 int add_option = (ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE|
679 (intent_only ? ADD_CACHE_NEW_ONLY : 0));
680 unsigned hash_flags = pretend ? 0 : HASH_WRITE_OBJECT;
681 struct object_id oid;
682
683 if (flags & ADD_CACHE_RENORMALIZE)
684 hash_flags |= HASH_RENORMALIZE;
685
686 if (!S_ISREG(st_mode) && !S_ISLNK(st_mode) && !S_ISDIR(st_mode))
687 return error(_("%s: can only add regular files, symbolic links or git-directories"), path);
688
689 namelen = strlen(path);
690 if (S_ISDIR(st_mode)) {
691 if (resolve_gitlink_ref(path, "HEAD", &oid) < 0)
692 return error(_("'%s' does not have a commit checked out"), path);
693 while (namelen && path[namelen-1] == '/')
694 namelen--;
695 }
696 ce = make_empty_cache_entry(istate, namelen);
697 memcpy(ce->name, path, namelen);
698 ce->ce_namelen = namelen;
699 if (!intent_only)
700 fill_stat_cache_info(istate, ce, st);
701 else
702 ce->ce_flags |= CE_INTENT_TO_ADD;
703
704
705 if (trust_executable_bit && has_symlinks) {
706 ce->ce_mode = create_ce_mode(st_mode);
707 } else {
708 /* If there is an existing entry, pick the mode bits and type
709 * from it, otherwise assume unexecutable regular file.
710 */
711 struct cache_entry *ent;
712 int pos = index_name_pos_also_unmerged(istate, path, namelen);
713
714 ent = (0 <= pos) ? istate->cache[pos] : NULL;
715 ce->ce_mode = ce_mode_from_stat(ent, st_mode);
716 }
717
718 /* When core.ignorecase=true, determine if a directory of the same name but differing
719 * case already exists within the Git repository. If it does, ensure the directory
720 * case of the file being added to the repository matches (is folded into) the existing
721 * entry's directory case.
722 */
723 if (ignore_case) {
724 adjust_dirname_case(istate, ce->name);
725 }
726 if (!(flags & ADD_CACHE_RENORMALIZE)) {
727 alias = index_file_exists(istate, ce->name,
728 ce_namelen(ce), ignore_case);
729 if (alias &&
730 !ce_stage(alias) &&
731 !ie_match_stat(istate, alias, st, ce_option)) {
732 /* Nothing changed, really */
733 if (!S_ISGITLINK(alias->ce_mode))
734 ce_mark_uptodate(alias);
735 alias->ce_flags |= CE_ADDED;
736
737 discard_cache_entry(ce);
738 return 0;
739 }
740 }
741 if (!intent_only) {
742 if (index_path(istate, &ce->oid, path, st, hash_flags)) {
743 discard_cache_entry(ce);
744 return error(_("unable to index file '%s'"), path);
745 }
746 } else
747 set_object_name_for_intent_to_add_entry(ce);
748
749 if (ignore_case && alias && different_name(ce, alias))
750 ce = create_alias_ce(istate, ce, alias);
751 ce->ce_flags |= CE_ADDED;
752
753 /* It was suspected to be racily clean, but it turns out to be Ok */
754 was_same = (alias &&
755 !ce_stage(alias) &&
756 oideq(&alias->oid, &ce->oid) &&
757 ce->ce_mode == alias->ce_mode);
758
759 if (pretend)
760 discard_cache_entry(ce);
761 else if (add_index_entry(istate, ce, add_option)) {
762 discard_cache_entry(ce);
763 return error(_("unable to add '%s' to index"), path);
764 }
765 if (verbose && !was_same)
766 printf("add '%s'\n", path);
767 return 0;
768 }
769
770 int add_file_to_index(struct index_state *istate, const char *path, int flags)
771 {
772 struct stat st;
773 if (lstat(path, &st))
774 die_errno(_("unable to stat '%s'"), path);
775 return add_to_index(istate, path, &st, flags);
776 }
777
778 struct cache_entry *make_empty_cache_entry(struct index_state *istate, size_t len)
779 {
780 return mem_pool__ce_calloc(find_mem_pool(istate), len);
781 }
782
783 struct cache_entry *make_empty_transient_cache_entry(size_t len,
784 struct mem_pool *ce_mem_pool)
785 {
786 if (ce_mem_pool)
787 return mem_pool__ce_calloc(ce_mem_pool, len);
788 return xcalloc(1, cache_entry_size(len));
789 }
790
791 enum verify_path_result {
792 PATH_OK,
793 PATH_INVALID,
794 PATH_DIR_WITH_SEP,
795 };
796
797 static enum verify_path_result verify_path_internal(const char *, unsigned);
798
799 int verify_path(const char *path, unsigned mode)
800 {
801 return verify_path_internal(path, mode) == PATH_OK;
802 }
803
804 struct cache_entry *make_cache_entry(struct index_state *istate,
805 unsigned int mode,
806 const struct object_id *oid,
807 const char *path,
808 int stage,
809 unsigned int refresh_options)
810 {
811 struct cache_entry *ce, *ret;
812 int len;
813
814 if (verify_path_internal(path, mode) == PATH_INVALID) {
815 error(_("invalid path '%s'"), path);
816 return NULL;
817 }
818
819 len = strlen(path);
820 ce = make_empty_cache_entry(istate, len);
821
822 oidcpy(&ce->oid, oid);
823 memcpy(ce->name, path, len);
824 ce->ce_flags = create_ce_flags(stage);
825 ce->ce_namelen = len;
826 ce->ce_mode = create_ce_mode(mode);
827
828 ret = refresh_cache_entry(istate, ce, refresh_options);
829 if (ret != ce)
830 discard_cache_entry(ce);
831 return ret;
832 }
833
834 struct cache_entry *make_transient_cache_entry(unsigned int mode,
835 const struct object_id *oid,
836 const char *path,
837 int stage,
838 struct mem_pool *ce_mem_pool)
839 {
840 struct cache_entry *ce;
841 int len;
842
843 if (!verify_path(path, mode)) {
844 error(_("invalid path '%s'"), path);
845 return NULL;
846 }
847
848 len = strlen(path);
849 ce = make_empty_transient_cache_entry(len, ce_mem_pool);
850
851 oidcpy(&ce->oid, oid);
852 memcpy(ce->name, path, len);
853 ce->ce_flags = create_ce_flags(stage);
854 ce->ce_namelen = len;
855 ce->ce_mode = create_ce_mode(mode);
856
857 return ce;
858 }
859
860 /*
861 * Chmod an index entry with either +x or -x.
862 *
863 * Returns -1 if the chmod for the particular cache entry failed (if it's
864 * not a regular file), -2 if an invalid flip argument is passed in, 0
865 * otherwise.
866 */
867 int chmod_index_entry(struct index_state *istate, struct cache_entry *ce,
868 char flip)
869 {
870 if (!S_ISREG(ce->ce_mode))
871 return -1;
872 switch (flip) {
873 case '+':
874 ce->ce_mode |= 0111;
875 break;
876 case '-':
877 ce->ce_mode &= ~0111;
878 break;
879 default:
880 return -2;
881 }
882 cache_tree_invalidate_path(istate, ce->name);
883 ce->ce_flags |= CE_UPDATE_IN_BASE;
884 mark_fsmonitor_invalid(istate, ce);
885 istate->cache_changed |= CE_ENTRY_CHANGED;
886
887 return 0;
888 }
889
890 int ce_same_name(const struct cache_entry *a, const struct cache_entry *b)
891 {
892 int len = ce_namelen(a);
893 return ce_namelen(b) == len && !memcmp(a->name, b->name, len);
894 }
895
896 /*
897 * We fundamentally don't like some paths: we don't want
898 * dot or dot-dot anywhere, and for obvious reasons don't
899 * want to recurse into ".git" either.
900 *
901 * Also, we don't want double slashes or slashes at the
902 * end that can make pathnames ambiguous.
903 */
904 static int verify_dotfile(const char *rest, unsigned mode)
905 {
906 /*
907 * The first character was '.', but that
908 * has already been discarded, we now test
909 * the rest.
910 */
911
912 /* "." is not allowed */
913 if (*rest == '\0' || is_dir_sep(*rest))
914 return 0;
915
916 switch (*rest) {
917 /*
918 * ".git" followed by NUL or slash is bad. Note that we match
919 * case-insensitively here, even if ignore_case is not set.
920 * This outlaws ".GIT" everywhere out of an abundance of caution,
921 * since there's really no good reason to allow it.
922 *
923 * Once we've seen ".git", we can also find ".gitmodules", etc (also
924 * case-insensitively).
925 */
926 case 'g':
927 case 'G':
928 if (rest[1] != 'i' && rest[1] != 'I')
929 break;
930 if (rest[2] != 't' && rest[2] != 'T')
931 break;
932 if (rest[3] == '\0' || is_dir_sep(rest[3]))
933 return 0;
934 if (S_ISLNK(mode)) {
935 rest += 3;
936 if (skip_iprefix(rest, "modules", &rest) &&
937 (*rest == '\0' || is_dir_sep(*rest)))
938 return 0;
939 }
940 break;
941 case '.':
942 if (rest[1] == '\0' || is_dir_sep(rest[1]))
943 return 0;
944 }
945 return 1;
946 }
947
948 static enum verify_path_result verify_path_internal(const char *path,
949 unsigned mode)
950 {
951 char c = 0;
952
953 if (has_dos_drive_prefix(path))
954 return PATH_INVALID;
955
956 if (!is_valid_path(path))
957 return PATH_INVALID;
958
959 goto inside;
960 for (;;) {
961 if (!c)
962 return PATH_OK;
963 if (is_dir_sep(c)) {
964 inside:
965 if (protect_hfs) {
966
967 if (is_hfs_dotgit(path))
968 return PATH_INVALID;
969 if (S_ISLNK(mode)) {
970 if (is_hfs_dotgitmodules(path))
971 return PATH_INVALID;
972 }
973 }
974 if (protect_ntfs) {
975 #if defined GIT_WINDOWS_NATIVE || defined __CYGWIN__
976 if (c == '\\')
977 return PATH_INVALID;
978 #endif
979 if (is_ntfs_dotgit(path))
980 return PATH_INVALID;
981 if (S_ISLNK(mode)) {
982 if (is_ntfs_dotgitmodules(path))
983 return PATH_INVALID;
984 }
985 }
986
987 c = *path++;
988 if ((c == '.' && !verify_dotfile(path, mode)) ||
989 is_dir_sep(c))
990 return PATH_INVALID;
991 /*
992 * allow terminating directory separators for
993 * sparse directory entries.
994 */
995 if (c == '\0')
996 return S_ISDIR(mode) ? PATH_DIR_WITH_SEP :
997 PATH_INVALID;
998 } else if (c == '\\' && protect_ntfs) {
999 if (is_ntfs_dotgit(path))
1000 return PATH_INVALID;
1001 if (S_ISLNK(mode)) {
1002 if (is_ntfs_dotgitmodules(path))
1003 return PATH_INVALID;
1004 }
1005 }
1006
1007 c = *path++;
1008 }
1009 }
1010
1011 /*
1012 * Do we have another file that has the beginning components being a
1013 * proper superset of the name we're trying to add?
1014 */
1015 static int has_file_name(struct index_state *istate,
1016 const struct cache_entry *ce, int pos, int ok_to_replace)
1017 {
1018 int retval = 0;
1019 int len = ce_namelen(ce);
1020 int stage = ce_stage(ce);
1021 const char *name = ce->name;
1022
1023 while (pos < istate->cache_nr) {
1024 struct cache_entry *p = istate->cache[pos++];
1025
1026 if (len >= ce_namelen(p))
1027 break;
1028 if (memcmp(name, p->name, len))
1029 break;
1030 if (ce_stage(p) != stage)
1031 continue;
1032 if (p->name[len] != '/')
1033 continue;
1034 if (p->ce_flags & CE_REMOVE)
1035 continue;
1036 retval = -1;
1037 if (!ok_to_replace)
1038 break;
1039 remove_index_entry_at(istate, --pos);
1040 }
1041 return retval;
1042 }
1043
1044
1045 /*
1046 * Like strcmp(), but also return the offset of the first change.
1047 * If strings are equal, return the length.
1048 */
1049 int strcmp_offset(const char *s1, const char *s2, size_t *first_change)
1050 {
1051 size_t k;
1052
1053 if (!first_change)
1054 return strcmp(s1, s2);
1055
1056 for (k = 0; s1[k] == s2[k]; k++)
1057 if (s1[k] == '\0')
1058 break;
1059
1060 *first_change = k;
1061 return (unsigned char)s1[k] - (unsigned char)s2[k];
1062 }
1063
1064 /*
1065 * Do we have another file with a pathname that is a proper
1066 * subset of the name we're trying to add?
1067 *
1068 * That is, is there another file in the index with a path
1069 * that matches a sub-directory in the given entry?
1070 */
1071 static int has_dir_name(struct index_state *istate,
1072 const struct cache_entry *ce, int pos, int ok_to_replace)
1073 {
1074 int retval = 0;
1075 int stage = ce_stage(ce);
1076 const char *name = ce->name;
1077 const char *slash = name + ce_namelen(ce);
1078 size_t len_eq_last;
1079 int cmp_last = 0;
1080
1081 /*
1082 * We are frequently called during an iteration on a sorted
1083 * list of pathnames and while building a new index. Therefore,
1084 * there is a high probability that this entry will eventually
1085 * be appended to the index, rather than inserted in the middle.
1086 * If we can confirm that, we can avoid binary searches on the
1087 * components of the pathname.
1088 *
1089 * Compare the entry's full path with the last path in the index.
1090 */
1091 if (istate->cache_nr > 0) {
1092 cmp_last = strcmp_offset(name,
1093 istate->cache[istate->cache_nr - 1]->name,
1094 &len_eq_last);
1095 if (cmp_last > 0) {
1096 if (len_eq_last == 0) {
1097 /*
1098 * The entry sorts AFTER the last one in the
1099 * index and their paths have no common prefix,
1100 * so there cannot be a F/D conflict.
1101 */
1102 return retval;
1103 } else {
1104 /*
1105 * The entry sorts AFTER the last one in the
1106 * index, but has a common prefix. Fall through
1107 * to the loop below to disect the entry's path
1108 * and see where the difference is.
1109 */
1110 }
1111 } else if (cmp_last == 0) {
1112 /*
1113 * The entry exactly matches the last one in the
1114 * index, but because of multiple stage and CE_REMOVE
1115 * items, we fall through and let the regular search
1116 * code handle it.
1117 */
1118 }
1119 }
1120
1121 for (;;) {
1122 size_t len;
1123
1124 for (;;) {
1125 if (*--slash == '/')
1126 break;
1127 if (slash <= ce->name)
1128 return retval;
1129 }
1130 len = slash - name;
1131
1132 if (cmp_last > 0) {
1133 /*
1134 * (len + 1) is a directory boundary (including
1135 * the trailing slash). And since the loop is
1136 * decrementing "slash", the first iteration is
1137 * the longest directory prefix; subsequent
1138 * iterations consider parent directories.
1139 */
1140
1141 if (len + 1 <= len_eq_last) {
1142 /*
1143 * The directory prefix (including the trailing
1144 * slash) also appears as a prefix in the last
1145 * entry, so the remainder cannot collide (because
1146 * strcmp said the whole path was greater).
1147 *
1148 * EQ: last: xxx/A
1149 * this: xxx/B
1150 *
1151 * LT: last: xxx/file_A
1152 * this: xxx/file_B
1153 */
1154 return retval;
1155 }
1156
1157 if (len > len_eq_last) {
1158 /*
1159 * This part of the directory prefix (excluding
1160 * the trailing slash) is longer than the known
1161 * equal portions, so this sub-directory cannot
1162 * collide with a file.
1163 *
1164 * GT: last: xxxA
1165 * this: xxxB/file
1166 */
1167 return retval;
1168 }
1169
1170 /*
1171 * This is a possible collision. Fall through and
1172 * let the regular search code handle it.
1173 *
1174 * last: xxx
1175 * this: xxx/file
1176 */
1177 }
1178
1179 pos = index_name_stage_pos(istate, name, len, stage, EXPAND_SPARSE);
1180 if (pos >= 0) {
1181 /*
1182 * Found one, but not so fast. This could
1183 * be a marker that says "I was here, but
1184 * I am being removed". Such an entry is
1185 * not a part of the resulting tree, and
1186 * it is Ok to have a directory at the same
1187 * path.
1188 */
1189 if (!(istate->cache[pos]->ce_flags & CE_REMOVE)) {
1190 retval = -1;
1191 if (!ok_to_replace)
1192 break;
1193 remove_index_entry_at(istate, pos);
1194 continue;
1195 }
1196 }
1197 else
1198 pos = -pos-1;
1199
1200 /*
1201 * Trivial optimization: if we find an entry that
1202 * already matches the sub-directory, then we know
1203 * we're ok, and we can exit.
1204 */
1205 while (pos < istate->cache_nr) {
1206 struct cache_entry *p = istate->cache[pos];
1207 if ((ce_namelen(p) <= len) ||
1208 (p->name[len] != '/') ||
1209 memcmp(p->name, name, len))
1210 break; /* not our subdirectory */
1211 if (ce_stage(p) == stage && !(p->ce_flags & CE_REMOVE))
1212 /*
1213 * p is at the same stage as our entry, and
1214 * is a subdirectory of what we are looking
1215 * at, so we cannot have conflicts at our
1216 * level or anything shorter.
1217 */
1218 return retval;
1219 pos++;
1220 }
1221 }
1222 return retval;
1223 }
1224
1225 /* We may be in a situation where we already have path/file and path
1226 * is being added, or we already have path and path/file is being
1227 * added. Either one would result in a nonsense tree that has path
1228 * twice when git-write-tree tries to write it out. Prevent it.
1229 *
1230 * If ok-to-replace is specified, we remove the conflicting entries
1231 * from the cache so the caller should recompute the insert position.
1232 * When this happens, we return non-zero.
1233 */
1234 static int check_file_directory_conflict(struct index_state *istate,
1235 const struct cache_entry *ce,
1236 int pos, int ok_to_replace)
1237 {
1238 int retval;
1239
1240 /*
1241 * When ce is an "I am going away" entry, we allow it to be added
1242 */
1243 if (ce->ce_flags & CE_REMOVE)
1244 return 0;
1245
1246 /*
1247 * We check if the path is a sub-path of a subsequent pathname
1248 * first, since removing those will not change the position
1249 * in the array.
1250 */
1251 retval = has_file_name(istate, ce, pos, ok_to_replace);
1252
1253 /*
1254 * Then check if the path might have a clashing sub-directory
1255 * before it.
1256 */
1257 return retval + has_dir_name(istate, ce, pos, ok_to_replace);
1258 }
1259
1260 static int add_index_entry_with_check(struct index_state *istate, struct cache_entry *ce, int option)
1261 {
1262 int pos;
1263 int ok_to_add = option & ADD_CACHE_OK_TO_ADD;
1264 int ok_to_replace = option & ADD_CACHE_OK_TO_REPLACE;
1265 int skip_df_check = option & ADD_CACHE_SKIP_DFCHECK;
1266 int new_only = option & ADD_CACHE_NEW_ONLY;
1267
1268 /*
1269 * If this entry's path sorts after the last entry in the index,
1270 * we can avoid searching for it.
1271 */
1272 if (istate->cache_nr > 0 &&
1273 strcmp(ce->name, istate->cache[istate->cache_nr - 1]->name) > 0)
1274 pos = index_pos_to_insert_pos(istate->cache_nr);
1275 else
1276 pos = index_name_stage_pos(istate, ce->name, ce_namelen(ce), ce_stage(ce), EXPAND_SPARSE);
1277
1278 /*
1279 * Cache tree path should be invalidated only after index_name_stage_pos,
1280 * in case it expands a sparse index.
1281 */
1282 if (!(option & ADD_CACHE_KEEP_CACHE_TREE))
1283 cache_tree_invalidate_path(istate, ce->name);
1284
1285 /* existing match? Just replace it. */
1286 if (pos >= 0) {
1287 if (!new_only)
1288 replace_index_entry(istate, pos, ce);
1289 return 0;
1290 }
1291 pos = -pos-1;
1292
1293 if (!(option & ADD_CACHE_KEEP_CACHE_TREE))
1294 untracked_cache_add_to_index(istate, ce->name);
1295
1296 /*
1297 * Inserting a merged entry ("stage 0") into the index
1298 * will always replace all non-merged entries..
1299 */
1300 if (pos < istate->cache_nr && ce_stage(ce) == 0) {
1301 while (ce_same_name(istate->cache[pos], ce)) {
1302 ok_to_add = 1;
1303 if (!remove_index_entry_at(istate, pos))
1304 break;
1305 }
1306 }
1307
1308 if (!ok_to_add)
1309 return -1;
1310 if (verify_path_internal(ce->name, ce->ce_mode) == PATH_INVALID)
1311 return error(_("invalid path '%s'"), ce->name);
1312
1313 if (!skip_df_check &&
1314 check_file_directory_conflict(istate, ce, pos, ok_to_replace)) {
1315 if (!ok_to_replace)
1316 return error(_("'%s' appears as both a file and as a directory"),
1317 ce->name);
1318 pos = index_name_stage_pos(istate, ce->name, ce_namelen(ce), ce_stage(ce), EXPAND_SPARSE);
1319 pos = -pos-1;
1320 }
1321 return pos + 1;
1322 }
1323
1324 int add_index_entry(struct index_state *istate, struct cache_entry *ce, int option)
1325 {
1326 int pos;
1327
1328 if (option & ADD_CACHE_JUST_APPEND)
1329 pos = istate->cache_nr;
1330 else {
1331 int ret;
1332 ret = add_index_entry_with_check(istate, ce, option);
1333 if (ret <= 0)
1334 return ret;
1335 pos = ret - 1;
1336 }
1337
1338 /* Make sure the array is big enough .. */
1339 ALLOC_GROW(istate->cache, istate->cache_nr + 1, istate->cache_alloc);
1340
1341 /* Add it in.. */
1342 istate->cache_nr++;
1343 if (istate->cache_nr > pos + 1)
1344 MOVE_ARRAY(istate->cache + pos + 1, istate->cache + pos,
1345 istate->cache_nr - pos - 1);
1346 set_index_entry(istate, pos, ce);
1347 istate->cache_changed |= CE_ENTRY_ADDED;
1348 return 0;
1349 }
1350
1351 /*
1352 * "refresh" does not calculate a new sha1 file or bring the
1353 * cache up-to-date for mode/content changes. But what it
1354 * _does_ do is to "re-match" the stat information of a file
1355 * with the cache, so that you can refresh the cache for a
1356 * file that hasn't been changed but where the stat entry is
1357 * out of date.
1358 *
1359 * For example, you'd want to do this after doing a "git-read-tree",
1360 * to link up the stat cache details with the proper files.
1361 */
1362 static struct cache_entry *refresh_cache_ent(struct index_state *istate,
1363 struct cache_entry *ce,
1364 unsigned int options, int *err,
1365 int *changed_ret,
1366 int *t2_did_lstat,
1367 int *t2_did_scan)
1368 {
1369 struct stat st;
1370 struct cache_entry *updated;
1371 int changed;
1372 int refresh = options & CE_MATCH_REFRESH;
1373 int ignore_valid = options & CE_MATCH_IGNORE_VALID;
1374 int ignore_skip_worktree = options & CE_MATCH_IGNORE_SKIP_WORKTREE;
1375 int ignore_missing = options & CE_MATCH_IGNORE_MISSING;
1376 int ignore_fsmonitor = options & CE_MATCH_IGNORE_FSMONITOR;
1377
1378 if (!refresh || ce_uptodate(ce))
1379 return ce;
1380
1381 if (!ignore_fsmonitor)
1382 refresh_fsmonitor(istate);
1383 /*
1384 * CE_VALID or CE_SKIP_WORKTREE means the user promised us
1385 * that the change to the work tree does not matter and told
1386 * us not to worry.
1387 */
1388 if (!ignore_skip_worktree && ce_skip_worktree(ce)) {
1389 ce_mark_uptodate(ce);
1390 return ce;
1391 }
1392 if (!ignore_valid && (ce->ce_flags & CE_VALID)) {
1393 ce_mark_uptodate(ce);
1394 return ce;
1395 }
1396 if (!ignore_fsmonitor && (ce->ce_flags & CE_FSMONITOR_VALID)) {
1397 ce_mark_uptodate(ce);
1398 return ce;
1399 }
1400
1401 if (has_symlink_leading_path(ce->name, ce_namelen(ce))) {
1402 if (ignore_missing)
1403 return ce;
1404 if (err)
1405 *err = ENOENT;
1406 return NULL;
1407 }
1408
1409 if (t2_did_lstat)
1410 *t2_did_lstat = 1;
1411 if (lstat(ce->name, &st) < 0) {
1412 if (ignore_missing && errno == ENOENT)
1413 return ce;
1414 if (err)
1415 *err = errno;
1416 return NULL;
1417 }
1418
1419 changed = ie_match_stat(istate, ce, &st, options);
1420 if (changed_ret)
1421 *changed_ret = changed;
1422 if (!changed) {
1423 /*
1424 * The path is unchanged. If we were told to ignore
1425 * valid bit, then we did the actual stat check and
1426 * found that the entry is unmodified. If the entry
1427 * is not marked VALID, this is the place to mark it
1428 * valid again, under "assume unchanged" mode.
1429 */
1430 if (ignore_valid && assume_unchanged &&
1431 !(ce->ce_flags & CE_VALID))
1432 ; /* mark this one VALID again */
1433 else {
1434 /*
1435 * We do not mark the index itself "modified"
1436 * because CE_UPTODATE flag is in-core only;
1437 * we are not going to write this change out.
1438 */
1439 if (!S_ISGITLINK(ce->ce_mode)) {
1440 ce_mark_uptodate(ce);
1441 mark_fsmonitor_valid(istate, ce);
1442 }
1443 return ce;
1444 }
1445 }
1446
1447 if (t2_did_scan)
1448 *t2_did_scan = 1;
1449 if (ie_modified(istate, ce, &st, options)) {
1450 if (err)
1451 *err = EINVAL;
1452 return NULL;
1453 }
1454
1455 updated = make_empty_cache_entry(istate, ce_namelen(ce));
1456 copy_cache_entry(updated, ce);
1457 memcpy(updated->name, ce->name, ce->ce_namelen + 1);
1458 fill_stat_cache_info(istate, updated, &st);
1459 /*
1460 * If ignore_valid is not set, we should leave CE_VALID bit
1461 * alone. Otherwise, paths marked with --no-assume-unchanged
1462 * (i.e. things to be edited) will reacquire CE_VALID bit
1463 * automatically, which is not really what we want.
1464 */
1465 if (!ignore_valid && assume_unchanged &&
1466 !(ce->ce_flags & CE_VALID))
1467 updated->ce_flags &= ~CE_VALID;
1468
1469 /* istate->cache_changed is updated in the caller */
1470 return updated;
1471 }
1472
1473 static void show_file(const char * fmt, const char * name, int in_porcelain,
1474 int * first, const char *header_msg)
1475 {
1476 if (in_porcelain && *first && header_msg) {
1477 printf("%s\n", header_msg);
1478 *first = 0;
1479 }
1480 printf(fmt, name);
1481 }
1482
1483 int repo_refresh_and_write_index(struct repository *repo,
1484 unsigned int refresh_flags,
1485 unsigned int write_flags,
1486 int gentle,
1487 const struct pathspec *pathspec,
1488 char *seen, const char *header_msg)
1489 {
1490 struct lock_file lock_file = LOCK_INIT;
1491 int fd, ret = 0;
1492
1493 fd = repo_hold_locked_index(repo, &lock_file, 0);
1494 if (!gentle && fd < 0)
1495 return -1;
1496 if (refresh_index(repo->index, refresh_flags, pathspec, seen, header_msg))
1497 ret = 1;
1498 if (0 <= fd && write_locked_index(repo->index, &lock_file, COMMIT_LOCK | write_flags))
1499 ret = -1;
1500 return ret;
1501 }
1502
1503
1504 int refresh_index(struct index_state *istate, unsigned int flags,
1505 const struct pathspec *pathspec,
1506 char *seen, const char *header_msg)
1507 {
1508 int i;
1509 int has_errors = 0;
1510 int really = (flags & REFRESH_REALLY) != 0;
1511 int allow_unmerged = (flags & REFRESH_UNMERGED) != 0;
1512 int quiet = (flags & REFRESH_QUIET) != 0;
1513 int not_new = (flags & REFRESH_IGNORE_MISSING) != 0;
1514 int ignore_submodules = (flags & REFRESH_IGNORE_SUBMODULES) != 0;
1515 int ignore_skip_worktree = (flags & REFRESH_IGNORE_SKIP_WORKTREE) != 0;
1516 int first = 1;
1517 int in_porcelain = (flags & REFRESH_IN_PORCELAIN);
1518 unsigned int options = (CE_MATCH_REFRESH |
1519 (really ? CE_MATCH_IGNORE_VALID : 0) |
1520 (not_new ? CE_MATCH_IGNORE_MISSING : 0));
1521 const char *modified_fmt;
1522 const char *deleted_fmt;
1523 const char *typechange_fmt;
1524 const char *added_fmt;
1525 const char *unmerged_fmt;
1526 struct progress *progress = NULL;
1527 int t2_sum_lstat = 0;
1528 int t2_sum_scan = 0;
1529
1530 if (flags & REFRESH_PROGRESS && isatty(2))
1531 progress = start_delayed_progress(_("Refresh index"),
1532 istate->cache_nr);
1533
1534 trace_performance_enter();
1535 modified_fmt = in_porcelain ? "M\t%s\n" : "%s: needs update\n";
1536 deleted_fmt = in_porcelain ? "D\t%s\n" : "%s: needs update\n";
1537 typechange_fmt = in_porcelain ? "T\t%s\n" : "%s: needs update\n";
1538 added_fmt = in_porcelain ? "A\t%s\n" : "%s: needs update\n";
1539 unmerged_fmt = in_porcelain ? "U\t%s\n" : "%s: needs merge\n";
1540 /*
1541 * Use the multi-threaded preload_index() to refresh most of the
1542 * cache entries quickly then in the single threaded loop below,
1543 * we only have to do the special cases that are left.
1544 */
1545 preload_index(istate, pathspec, 0);
1546 trace2_region_enter("index", "refresh", NULL);
1547
1548 for (i = 0; i < istate->cache_nr; i++) {
1549 struct cache_entry *ce, *new_entry;
1550 int cache_errno = 0;
1551 int changed = 0;
1552 int filtered = 0;
1553 int t2_did_lstat = 0;
1554 int t2_did_scan = 0;
1555
1556 ce = istate->cache[i];
1557 if (ignore_submodules && S_ISGITLINK(ce->ce_mode))
1558 continue;
1559 if (ignore_skip_worktree && ce_skip_worktree(ce))
1560 continue;
1561
1562 /*
1563 * If this entry is a sparse directory, then there isn't
1564 * any stat() information to update. Ignore the entry.
1565 */
1566 if (S_ISSPARSEDIR(ce->ce_mode))
1567 continue;
1568
1569 if (pathspec && !ce_path_match(istate, ce, pathspec, seen))
1570 filtered = 1;
1571
1572 if (ce_stage(ce)) {
1573 while ((i < istate->cache_nr) &&
1574 ! strcmp(istate->cache[i]->name, ce->name))
1575 i++;
1576 i--;
1577 if (allow_unmerged)
1578 continue;
1579 if (!filtered)
1580 show_file(unmerged_fmt, ce->name, in_porcelain,
1581 &first, header_msg);
1582 has_errors = 1;
1583 continue;
1584 }
1585
1586 if (filtered)
1587 continue;
1588
1589 new_entry = refresh_cache_ent(istate, ce, options,
1590 &cache_errno, &changed,
1591 &t2_did_lstat, &t2_did_scan);
1592 t2_sum_lstat += t2_did_lstat;
1593 t2_sum_scan += t2_did_scan;
1594 if (new_entry == ce)
1595 continue;
1596 display_progress(progress, i);
1597 if (!new_entry) {
1598 const char *fmt;
1599
1600 if (really && cache_errno == EINVAL) {
1601 /* If we are doing --really-refresh that
1602 * means the index is not valid anymore.
1603 */
1604 ce->ce_flags &= ~CE_VALID;
1605 ce->ce_flags |= CE_UPDATE_IN_BASE;
1606 mark_fsmonitor_invalid(istate, ce);
1607 istate->cache_changed |= CE_ENTRY_CHANGED;
1608 }
1609 if (quiet)
1610 continue;
1611
1612 if (cache_errno == ENOENT)
1613 fmt = deleted_fmt;
1614 else if (ce_intent_to_add(ce))
1615 fmt = added_fmt; /* must be before other checks */
1616 else if (changed & TYPE_CHANGED)
1617 fmt = typechange_fmt;
1618 else
1619 fmt = modified_fmt;
1620 show_file(fmt,
1621 ce->name, in_porcelain, &first, header_msg);
1622 has_errors = 1;
1623 continue;
1624 }
1625
1626 replace_index_entry(istate, i, new_entry);
1627 }
1628 trace2_data_intmax("index", NULL, "refresh/sum_lstat", t2_sum_lstat);
1629 trace2_data_intmax("index", NULL, "refresh/sum_scan", t2_sum_scan);
1630 trace2_region_leave("index", "refresh", NULL);
1631 display_progress(progress, istate->cache_nr);
1632 stop_progress(&progress);
1633 trace_performance_leave("refresh index");
1634 return has_errors;
1635 }
1636
1637 struct cache_entry *refresh_cache_entry(struct index_state *istate,
1638 struct cache_entry *ce,
1639 unsigned int options)
1640 {
1641 return refresh_cache_ent(istate, ce, options, NULL, NULL, NULL, NULL);
1642 }
1643
1644
1645 /*****************************************************************
1646 * Index File I/O
1647 *****************************************************************/
1648
1649 #define INDEX_FORMAT_DEFAULT 3
1650
1651 static unsigned int get_index_format_default(struct repository *r)
1652 {
1653 char *envversion = getenv("GIT_INDEX_VERSION");
1654 char *endp;
1655 unsigned int version = INDEX_FORMAT_DEFAULT;
1656
1657 if (!envversion) {
1658 prepare_repo_settings(r);
1659
1660 if (r->settings.index_version >= 0)
1661 version = r->settings.index_version;
1662 if (version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {
1663 warning(_("index.version set, but the value is invalid.\n"
1664 "Using version %i"), INDEX_FORMAT_DEFAULT);
1665 return INDEX_FORMAT_DEFAULT;
1666 }
1667 return version;
1668 }
1669
1670 version = strtoul(envversion, &endp, 10);
1671 if (*endp ||
1672 version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < version) {
1673 warning(_("GIT_INDEX_VERSION set, but the value is invalid.\n"
1674 "Using version %i"), INDEX_FORMAT_DEFAULT);
1675 version = INDEX_FORMAT_DEFAULT;
1676 }
1677 return version;
1678 }
1679
1680 /*
1681 * dev/ino/uid/gid/size are also just tracked to the low 32 bits
1682 * Again - this is just a (very strong in practice) heuristic that
1683 * the inode hasn't changed.
1684 *
1685 * We save the fields in big-endian order to allow using the
1686 * index file over NFS transparently.
1687 */
1688 struct ondisk_cache_entry {
1689 struct cache_time ctime;
1690 struct cache_time mtime;
1691 uint32_t dev;
1692 uint32_t ino;
1693 uint32_t mode;
1694 uint32_t uid;
1695 uint32_t gid;
1696 uint32_t size;
1697 /*
1698 * unsigned char hash[hashsz];
1699 * uint16_t flags;
1700 * if (flags & CE_EXTENDED)
1701 * uint16_t flags2;
1702 */
1703 unsigned char data[GIT_MAX_RAWSZ + 2 * sizeof(uint16_t)];
1704 char name[FLEX_ARRAY];
1705 };
1706
1707 /* These are only used for v3 or lower */
1708 #define align_padding_size(size, len) ((size + (len) + 8) & ~7) - (size + len)
1709 #define align_flex_name(STRUCT,len) ((offsetof(struct STRUCT,data) + (len) + 8) & ~7)
1710 #define ondisk_cache_entry_size(len) align_flex_name(ondisk_cache_entry,len)
1711 #define ondisk_data_size(flags, len) (the_hash_algo->rawsz + \
1712 ((flags & CE_EXTENDED) ? 2 : 1) * sizeof(uint16_t) + len)
1713 #define ondisk_data_size_max(len) (ondisk_data_size(CE_EXTENDED, len))
1714 #define ondisk_ce_size(ce) (ondisk_cache_entry_size(ondisk_data_size((ce)->ce_flags, ce_namelen(ce))))
1715
1716 /* Allow fsck to force verification of the index checksum. */
1717 int verify_index_checksum;
1718
1719 /* Allow fsck to force verification of the cache entry order. */
1720 int verify_ce_order;
1721
1722 static int verify_hdr(const struct cache_header *hdr, unsigned long size)
1723 {
1724 git_hash_ctx c;
1725 unsigned char hash[GIT_MAX_RAWSZ];
1726 int hdr_version;
1727 unsigned char *start, *end;
1728 struct object_id oid;
1729
1730 if (hdr->hdr_signature != htonl(CACHE_SIGNATURE))
1731 return error(_("bad signature 0x%08x"), hdr->hdr_signature);
1732 hdr_version = ntohl(hdr->hdr_version);
1733 if (hdr_version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < hdr_version)
1734 return error(_("bad index version %d"), hdr_version);
1735
1736 if (!verify_index_checksum)
1737 return 0;
1738
1739 end = (unsigned char *)hdr + size;
1740 start = end - the_hash_algo->rawsz;
1741 oidread(&oid, start);
1742 if (oideq(&oid, null_oid()))
1743 return 0;
1744
1745 the_hash_algo->init_fn(&c);
1746 the_hash_algo->update_fn(&c, hdr, size - the_hash_algo->rawsz);
1747 the_hash_algo->final_fn(hash, &c);
1748 if (!hasheq(hash, start))
1749 return error(_("bad index file sha1 signature"));
1750 return 0;
1751 }
1752
1753 static int read_index_extension(struct index_state *istate,
1754 const char *ext, const char *data, unsigned long sz)
1755 {
1756 switch (CACHE_EXT(ext)) {
1757 case CACHE_EXT_TREE:
1758 istate->cache_tree = cache_tree_read(data, sz);
1759 break;
1760 case CACHE_EXT_RESOLVE_UNDO:
1761 istate->resolve_undo = resolve_undo_read(data, sz);
1762 break;
1763 case CACHE_EXT_LINK:
1764 if (read_link_extension(istate, data, sz))
1765 return -1;
1766 break;
1767 case CACHE_EXT_UNTRACKED:
1768 istate->untracked = read_untracked_extension(data, sz);
1769 break;
1770 case CACHE_EXT_FSMONITOR:
1771 read_fsmonitor_extension(istate, data, sz);
1772 break;
1773 case CACHE_EXT_ENDOFINDEXENTRIES:
1774 case CACHE_EXT_INDEXENTRYOFFSETTABLE:
1775 /* already handled in do_read_index() */
1776 break;
1777 case CACHE_EXT_SPARSE_DIRECTORIES:
1778 /* no content, only an indicator */
1779 istate->sparse_index = INDEX_COLLAPSED;
1780 break;
1781 default:
1782 if (*ext < 'A' || 'Z' < *ext)
1783 return error(_("index uses %.4s extension, which we do not understand"),
1784 ext);
1785 fprintf_ln(stderr, _("ignoring %.4s extension"), ext);
1786 break;
1787 }
1788 return 0;
1789 }
1790
1791 /*
1792 * Parses the contents of the cache entry contained within the 'ondisk' buffer
1793 * into a new incore 'cache_entry'.
1794 *
1795 * Note that 'char *ondisk' may not be aligned to a 4-byte address interval in
1796 * index v4, so we cannot cast it to 'struct ondisk_cache_entry *' and access
1797 * its members. Instead, we use the byte offsets of members within the struct to
1798 * identify where 'get_be16()', 'get_be32()', and 'oidread()' (which can all
1799 * read from an unaligned memory buffer) should read from the 'ondisk' buffer
1800 * into the corresponding incore 'cache_entry' members.
1801 */
1802 static struct cache_entry *create_from_disk(struct mem_pool *ce_mem_pool,
1803 unsigned int version,
1804 const char *ondisk,
1805 unsigned long *ent_size,
1806 const struct cache_entry *previous_ce)
1807 {
1808 struct cache_entry *ce;
1809 size_t len;
1810 const char *name;
1811 const unsigned hashsz = the_hash_algo->rawsz;
1812 const char *flagsp = ondisk + offsetof(struct ondisk_cache_entry, data) + hashsz;
1813 unsigned int flags;
1814 size_t copy_len = 0;
1815 /*
1816 * Adjacent cache entries tend to share the leading paths, so it makes
1817 * sense to only store the differences in later entries. In the v4
1818 * on-disk format of the index, each on-disk cache entry stores the
1819 * number of bytes to be stripped from the end of the previous name,
1820 * and the bytes to append to the result, to come up with its name.
1821 */
1822 int expand_name_field = version == 4;
1823
1824 /* On-disk flags are just 16 bits */
1825 flags = get_be16(flagsp);
1826 len = flags & CE_NAMEMASK;
1827
1828 if (flags & CE_EXTENDED) {
1829 int extended_flags;
1830 extended_flags = get_be16(flagsp + sizeof(uint16_t)) << 16;
1831 /* We do not yet understand any bit out of CE_EXTENDED_FLAGS */
1832 if (extended_flags & ~CE_EXTENDED_FLAGS)
1833 die(_("unknown index entry format 0x%08x"), extended_flags);
1834 flags |= extended_flags;
1835 name = (const char *)(flagsp + 2 * sizeof(uint16_t));
1836 }
1837 else
1838 name = (const char *)(flagsp + sizeof(uint16_t));
1839
1840 if (expand_name_field) {
1841 const unsigned char *cp = (const unsigned char *)name;
1842 size_t strip_len, previous_len;
1843
1844 /* If we're at the beginning of a block, ignore the previous name */
1845 strip_len = decode_varint(&cp);
1846 if (previous_ce) {
1847 previous_len = previous_ce->ce_namelen;
1848 if (previous_len < strip_len)
1849 die(_("malformed name field in the index, near path '%s'"),
1850 previous_ce->name);
1851 copy_len = previous_len - strip_len;
1852 }
1853 name = (const char *)cp;
1854 }
1855
1856 if (len == CE_NAMEMASK) {
1857 len = strlen(name);
1858 if (expand_name_field)
1859 len += copy_len;
1860 }
1861
1862 ce = mem_pool__ce_alloc(ce_mem_pool, len);
1863
1864 /*
1865 * NEEDSWORK: using 'offsetof()' is cumbersome and should be replaced
1866 * with something more akin to 'load_bitmap_entries_v1()'s use of
1867 * 'read_be16'/'read_be32'. For consistency with the corresponding
1868 * ondisk entry write function ('copy_cache_entry_to_ondisk()'), this
1869 * should be done at the same time as removing references to
1870 * 'ondisk_cache_entry' there.
1871 */
1872 ce->ce_stat_data.sd_ctime.sec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, ctime)
1873 + offsetof(struct cache_time, sec));
1874 ce->ce_stat_data.sd_mtime.sec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, mtime)
1875 + offsetof(struct cache_time, sec));
1876 ce->ce_stat_data.sd_ctime.nsec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, ctime)
1877 + offsetof(struct cache_time, nsec));
1878 ce->ce_stat_data.sd_mtime.nsec = get_be32(ondisk + offsetof(struct ondisk_cache_entry, mtime)
1879 + offsetof(struct cache_time, nsec));
1880 ce->ce_stat_data.sd_dev = get_be32(ondisk + offsetof(struct ondisk_cache_entry, dev));
1881 ce->ce_stat_data.sd_ino = get_be32(ondisk + offsetof(struct ondisk_cache_entry, ino));
1882 ce->ce_mode = get_be32(ondisk + offsetof(struct ondisk_cache_entry, mode));
1883 ce->ce_stat_data.sd_uid = get_be32(ondisk + offsetof(struct ondisk_cache_entry, uid));
1884 ce->ce_stat_data.sd_gid = get_be32(ondisk + offsetof(struct ondisk_cache_entry, gid));
1885 ce->ce_stat_data.sd_size = get_be32(ondisk + offsetof(struct ondisk_cache_entry, size));
1886 ce->ce_flags = flags & ~CE_NAMEMASK;
1887 ce->ce_namelen = len;
1888 ce->index = 0;
1889 oidread(&ce->oid, (const unsigned char *)ondisk + offsetof(struct ondisk_cache_entry, data));
1890
1891 if (expand_name_field) {
1892 if (copy_len)
1893 memcpy(ce->name, previous_ce->name, copy_len);
1894 memcpy(ce->name + copy_len, name, len + 1 - copy_len);
1895 *ent_size = (name - ((char *)ondisk)) + len + 1 - copy_len;
1896 } else {
1897 memcpy(ce->name, name, len + 1);
1898 *ent_size = ondisk_ce_size(ce);
1899 }
1900 return ce;
1901 }
1902
1903 static void check_ce_order(struct index_state *istate)
1904 {
1905 unsigned int i;
1906
1907 if (!verify_ce_order)
1908 return;
1909
1910 for (i = 1; i < istate->cache_nr; i++) {
1911 struct cache_entry *ce = istate->cache[i - 1];
1912 struct cache_entry *next_ce = istate->cache[i];
1913 int name_compare = strcmp(ce->name, next_ce->name);
1914
1915 if (0 < name_compare)
1916 die(_("unordered stage entries in index"));
1917 if (!name_compare) {
1918 if (!ce_stage(ce))
1919 die(_("multiple stage entries for merged file '%s'"),
1920 ce->name);
1921 if (ce_stage(ce) > ce_stage(next_ce))
1922 die(_("unordered stage entries for '%s'"),
1923 ce->name);
1924 }
1925 }
1926 }
1927
1928 static void tweak_untracked_cache(struct index_state *istate)
1929 {
1930 struct repository *r = the_repository;
1931
1932 prepare_repo_settings(r);
1933
1934 switch (r->settings.core_untracked_cache) {
1935 case UNTRACKED_CACHE_REMOVE:
1936 remove_untracked_cache(istate);
1937 break;
1938 case UNTRACKED_CACHE_WRITE:
1939 add_untracked_cache(istate);
1940 break;
1941 case UNTRACKED_CACHE_KEEP:
1942 /*
1943 * Either an explicit "core.untrackedCache=keep", the
1944 * default if "core.untrackedCache" isn't configured,
1945 * or a fallback on an unknown "core.untrackedCache"
1946 * value.
1947 */
1948 break;
1949 }
1950 }
1951
1952 static void tweak_split_index(struct index_state *istate)
1953 {
1954 switch (git_config_get_split_index()) {
1955 case -1: /* unset: do nothing */
1956 break;
1957 case 0: /* false */
1958 remove_split_index(istate);
1959 break;
1960 case 1: /* true */
1961 add_split_index(istate);
1962 break;
1963 default: /* unknown value: do nothing */
1964 break;
1965 }
1966 }
1967
1968 static void post_read_index_from(struct index_state *istate)
1969 {
1970 check_ce_order(istate);
1971 tweak_untracked_cache(istate);
1972 tweak_split_index(istate);
1973 tweak_fsmonitor(istate);
1974 }
1975
1976 static size_t estimate_cache_size_from_compressed(unsigned int entries)
1977 {
1978 return entries * (sizeof(struct cache_entry) + CACHE_ENTRY_PATH_LENGTH);
1979 }
1980
1981 static size_t estimate_cache_size(size_t ondisk_size, unsigned int entries)
1982 {
1983 long per_entry = sizeof(struct cache_entry) - sizeof(struct ondisk_cache_entry);
1984
1985 /*
1986 * Account for potential alignment differences.
1987 */
1988 per_entry += align_padding_size(per_entry, 0);
1989 return ondisk_size + entries * per_entry;
1990 }
1991
1992 struct index_entry_offset
1993 {
1994 /* starting byte offset into index file, count of index entries in this block */
1995 int offset, nr;
1996 };
1997
1998 struct index_entry_offset_table
1999 {
2000 int nr;
2001 struct index_entry_offset entries[FLEX_ARRAY];
2002 };
2003
2004 static struct index_entry_offset_table *read_ieot_extension(const char *mmap, size_t mmap_size, size_t offset);
2005 static void write_ieot_extension(struct strbuf *sb, struct index_entry_offset_table *ieot);
2006
2007 static size_t read_eoie_extension(const char *mmap, size_t mmap_size);
2008 static void write_eoie_extension(struct strbuf *sb, git_hash_ctx *eoie_context, size_t offset);
2009
2010 struct load_index_extensions
2011 {
2012 pthread_t pthread;
2013 struct index_state *istate;
2014 const char *mmap;
2015 size_t mmap_size;
2016 unsigned long src_offset;
2017 };
2018
2019 static void *load_index_extensions(void *_data)
2020 {
2021 struct load_index_extensions *p = _data;
2022 unsigned long src_offset = p->src_offset;
2023
2024 while (src_offset <= p->mmap_size - the_hash_algo->rawsz - 8) {
2025 /* After an array of active_nr index entries,
2026 * there can be arbitrary number of extended
2027 * sections, each of which is prefixed with
2028 * extension name (4-byte) and section length
2029 * in 4-byte network byte order.
2030 */
2031 uint32_t extsize = get_be32(p->mmap + src_offset + 4);
2032 if (read_index_extension(p->istate,
2033 p->mmap + src_offset,
2034 p->mmap + src_offset + 8,
2035 extsize) < 0) {
2036 munmap((void *)p->mmap, p->mmap_size);
2037 die(_("index file corrupt"));
2038 }
2039 src_offset += 8;
2040 src_offset += extsize;
2041 }
2042
2043 return NULL;
2044 }
2045
2046 /*
2047 * A helper function that will load the specified range of cache entries
2048 * from the memory mapped file and add them to the given index.
2049 */
2050 static unsigned long load_cache_entry_block(struct index_state *istate,
2051 struct mem_pool *ce_mem_pool, int offset, int nr, const char *mmap,
2052 unsigned long start_offset, const struct cache_entry *previous_ce)
2053 {
2054 int i;
2055 unsigned long src_offset = start_offset;
2056
2057 for (i = offset; i < offset + nr; i++) {
2058 struct cache_entry *ce;
2059 unsigned long consumed;
2060
2061 ce = create_from_disk(ce_mem_pool, istate->version,
2062 mmap + src_offset,
2063 &consumed, previous_ce);
2064 set_index_entry(istate, i, ce);
2065
2066 src_offset += consumed;
2067 previous_ce = ce;
2068 }
2069 return src_offset - start_offset;
2070 }
2071
2072 static unsigned long load_all_cache_entries(struct index_state *istate,
2073 const char *mmap, size_t mmap_size, unsigned long src_offset)
2074 {
2075 unsigned long consumed;
2076
2077 istate->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool));
2078 if (istate->version == 4) {
2079 mem_pool_init(istate->ce_mem_pool,
2080 estimate_cache_size_from_compressed(istate->cache_nr));
2081 } else {
2082 mem_pool_init(istate->ce_mem_pool,
2083 estimate_cache_size(mmap_size, istate->cache_nr));
2084 }
2085
2086 consumed = load_cache_entry_block(istate, istate->ce_mem_pool,
2087 0, istate->cache_nr, mmap, src_offset, NULL);
2088 return consumed;
2089 }
2090
2091 /*
2092 * Mostly randomly chosen maximum thread counts: we
2093 * cap the parallelism to online_cpus() threads, and we want
2094 * to have at least 10000 cache entries per thread for it to
2095 * be worth starting a thread.
2096 */
2097
2098 #define THREAD_COST (10000)
2099
2100 struct load_cache_entries_thread_data
2101 {
2102 pthread_t pthread;
2103 struct index_state *istate;
2104 struct mem_pool *ce_mem_pool;
2105 int offset;
2106 const char *mmap;
2107 struct index_entry_offset_table *ieot;
2108 int ieot_start; /* starting index into the ieot array */
2109 int ieot_blocks; /* count of ieot entries to process */
2110 unsigned long consumed; /* return # of bytes in index file processed */
2111 };
2112
2113 /*
2114 * A thread proc to run the load_cache_entries() computation
2115 * across multiple background threads.
2116 */
2117 static void *load_cache_entries_thread(void *_data)
2118 {
2119 struct load_cache_entries_thread_data *p = _data;
2120 int i;
2121
2122 /* iterate across all ieot blocks assigned to this thread */
2123 for (i = p->ieot_start; i < p->ieot_start + p->ieot_blocks; i++) {
2124 p->consumed += load_cache_entry_block(p->istate, p->ce_mem_pool,
2125 p->offset, p->ieot->entries[i].nr, p->mmap, p->ieot->entries[i].offset, NULL);
2126 p->offset += p->ieot->entries[i].nr;
2127 }
2128 return NULL;
2129 }
2130
2131 static unsigned long load_cache_entries_threaded(struct index_state *istate, const char *mmap, size_t mmap_size,
2132 int nr_threads, struct index_entry_offset_table *ieot)
2133 {
2134 int i, offset, ieot_blocks, ieot_start, err;
2135 struct load_cache_entries_thread_data *data;
2136 unsigned long consumed = 0;
2137
2138 /* a little sanity checking */
2139 if (istate->name_hash_initialized)
2140 BUG("the name hash isn't thread safe");
2141
2142 istate->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool));
2143 mem_pool_init(istate->ce_mem_pool, 0);
2144
2145 /* ensure we have no more threads than we have blocks to process */
2146 if (nr_threads > ieot->nr)
2147 nr_threads = ieot->nr;
2148 CALLOC_ARRAY(data, nr_threads);
2149
2150 offset = ieot_start = 0;
2151 ieot_blocks = DIV_ROUND_UP(ieot->nr, nr_threads);
2152 for (i = 0; i < nr_threads; i++) {
2153 struct load_cache_entries_thread_data *p = &data[i];
2154 int nr, j;
2155
2156 if (ieot_start + ieot_blocks > ieot->nr)
2157 ieot_blocks = ieot->nr - ieot_start;
2158
2159 p->istate = istate;
2160 p->offset = offset;
2161 p->mmap = mmap;
2162 p->ieot = ieot;
2163 p->ieot_start = ieot_start;
2164 p->ieot_blocks = ieot_blocks;
2165
2166 /* create a mem_pool for each thread */
2167 nr = 0;
2168 for (j = p->ieot_start; j < p->ieot_start + p->ieot_blocks; j++)
2169 nr += p->ieot->entries[j].nr;
2170 p->ce_mem_pool = xmalloc(sizeof(*istate->ce_mem_pool));
2171 if (istate->version == 4) {
2172 mem_pool_init(p->ce_mem_pool,
2173 estimate_cache_size_from_compressed(nr));
2174 } else {
2175 mem_pool_init(p->ce_mem_pool,
2176 estimate_cache_size(mmap_size, nr));
2177 }
2178
2179 err = pthread_create(&p->pthread, NULL, load_cache_entries_thread, p);
2180 if (err)
2181 die(_("unable to create load_cache_entries thread: %s"), strerror(err));
2182
2183 /* increment by the number of cache entries in the ieot block being processed */
2184 for (j = 0; j < ieot_blocks; j++)
2185 offset += ieot->entries[ieot_start + j].nr;
2186 ieot_start += ieot_blocks;
2187 }
2188
2189 for (i = 0; i < nr_threads; i++) {
2190 struct load_cache_entries_thread_data *p = &data[i];
2191
2192 err = pthread_join(p->pthread, NULL);
2193 if (err)
2194 die(_("unable to join load_cache_entries thread: %s"), strerror(err));
2195 mem_pool_combine(istate->ce_mem_pool, p->ce_mem_pool);
2196 consumed += p->consumed;
2197 }
2198
2199 free(data);
2200
2201 return consumed;
2202 }
2203
2204 static void set_new_index_sparsity(struct index_state *istate)
2205 {
2206 /*
2207 * If the index's repo exists, mark it sparse according to
2208 * repo settings.
2209 */
2210 prepare_repo_settings(istate->repo);
2211 if (!istate->repo->settings.command_requires_full_index &&
2212 is_sparse_index_allowed(istate, 0))
2213 istate->sparse_index = 1;
2214 }
2215
2216 /* remember to discard_cache() before reading a different cache! */
2217 int do_read_index(struct index_state *istate, const char *path, int must_exist)
2218 {
2219 int fd;
2220 struct stat st;
2221 unsigned long src_offset;
2222 const struct cache_header *hdr;
2223 const char *mmap;
2224 size_t mmap_size;
2225 struct load_index_extensions p;
2226 size_t extension_offset = 0;
2227 int nr_threads, cpus;
2228 struct index_entry_offset_table *ieot = NULL;
2229
2230 if (istate->initialized)
2231 return istate->cache_nr;
2232
2233 istate->timestamp.sec = 0;
2234 istate->timestamp.nsec = 0;
2235 fd = open(path, O_RDONLY);
2236 if (fd < 0) {
2237 if (!must_exist && errno == ENOENT) {
2238 set_new_index_sparsity(istate);
2239 return 0;
2240 }
2241 die_errno(_("%s: index file open failed"), path);
2242 }
2243
2244 if (fstat(fd, &st))
2245 die_errno(_("%s: cannot stat the open index"), path);
2246
2247 mmap_size = xsize_t(st.st_size);
2248 if (mmap_size < sizeof(struct cache_header) + the_hash_algo->rawsz)
2249 die(_("%s: index file smaller than expected"), path);
2250
2251 mmap = xmmap_gently(NULL, mmap_size, PROT_READ, MAP_PRIVATE, fd, 0);
2252 if (mmap == MAP_FAILED)
2253 die_errno(_("%s: unable to map index file%s"), path,
2254 mmap_os_err());
2255 close(fd);
2256
2257 hdr = (const struct cache_header *)mmap;
2258 if (verify_hdr(hdr, mmap_size) < 0)
2259 goto unmap;
2260
2261 oidread(&istate->oid, (const unsigned char *)hdr + mmap_size - the_hash_algo->rawsz);
2262 istate->version = ntohl(hdr->hdr_version);
2263 istate->cache_nr = ntohl(hdr->hdr_entries);
2264 istate->cache_alloc = alloc_nr(istate->cache_nr);
2265 CALLOC_ARRAY(istate->cache, istate->cache_alloc);
2266 istate->initialized = 1;
2267
2268 p.istate = istate;
2269 p.mmap = mmap;
2270 p.mmap_size = mmap_size;
2271
2272 src_offset = sizeof(*hdr);
2273
2274 if (git_config_get_index_threads(&nr_threads))
2275 nr_threads = 1;
2276
2277 /* TODO: does creating more threads than cores help? */
2278 if (!nr_threads) {
2279 nr_threads = istate->cache_nr / THREAD_COST;
2280 cpus = online_cpus();
2281 if (nr_threads > cpus)
2282 nr_threads = cpus;
2283 }
2284
2285 if (!HAVE_THREADS)
2286 nr_threads = 1;
2287
2288 if (nr_threads > 1) {
2289 extension_offset = read_eoie_extension(mmap, mmap_size);
2290 if (extension_offset) {
2291 int err;
2292
2293 p.src_offset = extension_offset;
2294 err = pthread_create(&p.pthread, NULL, load_index_extensions, &p);
2295 if (err)
2296 die(_("unable to create load_index_extensions thread: %s"), strerror(err));
2297
2298 nr_threads--;
2299 }
2300 }
2301
2302 /*
2303 * Locate and read the index entry offset table so that we can use it
2304 * to multi-thread the reading of the cache entries.
2305 */
2306 if (extension_offset && nr_threads > 1)
2307 ieot = read_ieot_extension(mmap, mmap_size, extension_offset);
2308
2309 if (ieot) {
2310 src_offset += load_cache_entries_threaded(istate, mmap, mmap_size, nr_threads, ieot);
2311 free(ieot);
2312 } else {
2313 src_offset += load_all_cache_entries(istate, mmap, mmap_size, src_offset);
2314 }
2315
2316 istate->timestamp.sec = st.st_mtime;
2317 istate->timestamp.nsec = ST_MTIME_NSEC(st);
2318
2319 /* if we created a thread, join it otherwise load the extensions on the primary thread */
2320 if (extension_offset) {
2321 int ret = pthread_join(p.pthread, NULL);
2322 if (ret)
2323 die(_("unable to join load_index_extensions thread: %s"), strerror(ret));
2324 } else {
2325 p.src_offset = src_offset;
2326 load_index_extensions(&p);
2327 }
2328 munmap((void *)mmap, mmap_size);
2329
2330 /*
2331 * TODO trace2: replace "the_repository" with the actual repo instance
2332 * that is associated with the given "istate".
2333 */
2334 trace2_data_intmax("index", the_repository, "read/version",
2335 istate->version);
2336 trace2_data_intmax("index", the_repository, "read/cache_nr",
2337 istate->cache_nr);
2338
2339 /*
2340 * If the command explicitly requires a full index, force it
2341 * to be full. Otherwise, correct the sparsity based on repository
2342 * settings and other properties of the index (if necessary).
2343 */
2344 prepare_repo_settings(istate->repo);
2345 if (istate->repo->settings.command_requires_full_index)
2346 ensure_full_index(istate);
2347 else
2348 ensure_correct_sparsity(istate);
2349
2350 return istate->cache_nr;
2351
2352 unmap:
2353 munmap((void *)mmap, mmap_size);
2354 die(_("index file corrupt"));
2355 }
2356
2357 /*
2358 * Signal that the shared index is used by updating its mtime.
2359 *
2360 * This way, shared index can be removed if they have not been used
2361 * for some time.
2362 */
2363 static void freshen_shared_index(const char *shared_index, int warn)
2364 {
2365 if (!check_and_freshen_file(shared_index, 1) && warn)
2366 warning(_("could not freshen shared index '%s'"), shared_index);
2367 }
2368
2369 int read_index_from(struct index_state *istate, const char *path,
2370 const char *gitdir)
2371 {
2372 struct split_index *split_index;
2373 int ret;
2374 char *base_oid_hex;
2375 char *base_path;
2376
2377 /* istate->initialized covers both .git/index and .git/sharedindex.xxx */
2378 if (istate->initialized)
2379 return istate->cache_nr;
2380
2381 /*
2382 * TODO trace2: replace "the_repository" with the actual repo instance
2383 * that is associated with the given "istate".
2384 */
2385 trace2_region_enter_printf("index", "do_read_index", the_repository,
2386 "%s", path);
2387 trace_performance_enter();
2388 ret = do_read_index(istate, path, 0);
2389 trace_performance_leave("read cache %s", path);
2390 trace2_region_leave_printf("index", "do_read_index", the_repository,
2391 "%s", path);
2392
2393 split_index = istate->split_index;
2394 if (!split_index || is_null_oid(&split_index->base_oid)) {
2395 post_read_index_from(istate);
2396 return ret;
2397 }
2398
2399 trace_performance_enter();
2400 if (split_index->base)
2401 release_index(split_index->base);
2402 else
2403 ALLOC_ARRAY(split_index->base, 1);
2404 index_state_init(split_index->base, istate->repo);
2405
2406 base_oid_hex = oid_to_hex(&split_index->base_oid);
2407 base_path = xstrfmt("%s/sharedindex.%s", gitdir, base_oid_hex);
2408 trace2_region_enter_printf("index", "shared/do_read_index",
2409 the_repository, "%s", base_path);
2410 ret = do_read_index(split_index->base, base_path, 0);
2411 trace2_region_leave_printf("index", "shared/do_read_index",
2412 the_repository, "%s", base_path);
2413 if (!ret) {
2414 char *path_copy = xstrdup(path);
2415 char *base_path2 = xstrfmt("%s/sharedindex.%s",
2416 dirname(path_copy), base_oid_hex);
2417 free(path_copy);
2418 trace2_region_enter_printf("index", "shared/do_read_index",
2419 the_repository, "%s", base_path2);
2420 ret = do_read_index(split_index->base, base_path2, 1);
2421 trace2_region_leave_printf("index", "shared/do_read_index",
2422 the_repository, "%s", base_path2);
2423 free(base_path2);
2424 }
2425 if (!oideq(&split_index->base_oid, &split_index->base->oid))
2426 die(_("broken index, expect %s in %s, got %s"),
2427 base_oid_hex, base_path,
2428 oid_to_hex(&split_index->base->oid));
2429
2430 freshen_shared_index(base_path, 0);
2431 merge_base_index(istate);
2432 post_read_index_from(istate);
2433 trace_performance_leave("read cache %s", base_path);
2434 free(base_path);
2435 return ret;
2436 }
2437
2438 int is_index_unborn(struct index_state *istate)
2439 {
2440 return (!istate->cache_nr && !istate->timestamp.sec);
2441 }
2442
2443 void index_state_init(struct index_state *istate, struct repository *r)
2444 {
2445 struct index_state blank = INDEX_STATE_INIT(r);
2446 memcpy(istate, &blank, sizeof(*istate));
2447 }
2448
2449 void release_index(struct index_state *istate)
2450 {
2451 /*
2452 * Cache entries in istate->cache[] should have been allocated
2453 * from the memory pool associated with this index, or from an
2454 * associated split_index. There is no need to free individual
2455 * cache entries. validate_cache_entries can detect when this
2456 * assertion does not hold.
2457 */
2458 validate_cache_entries(istate);
2459
2460 resolve_undo_clear_index(istate);
2461 free_name_hash(istate);
2462 cache_tree_free(&(istate->cache_tree));
2463 free(istate->fsmonitor_last_update);
2464 free(istate->cache);
2465 discard_split_index(istate);
2466 free_untracked_cache(istate->untracked);
2467
2468 if (istate->sparse_checkout_patterns) {
2469 clear_pattern_list(istate->sparse_checkout_patterns);
2470 FREE_AND_NULL(istate->sparse_checkout_patterns);
2471 }
2472
2473 if (istate->ce_mem_pool) {
2474 mem_pool_discard(istate->ce_mem_pool, should_validate_cache_entries());
2475 FREE_AND_NULL(istate->ce_mem_pool);
2476 }
2477 }
2478
2479 void discard_index(struct index_state *istate)
2480 {
2481 release_index(istate);
2482 index_state_init(istate, istate->repo);
2483 }
2484
2485 /*
2486 * Validate the cache entries of this index.
2487 * All cache entries associated with this index
2488 * should have been allocated by the memory pool
2489 * associated with this index, or by a referenced
2490 * split index.
2491 */
2492 void validate_cache_entries(const struct index_state *istate)
2493 {
2494 int i;
2495
2496 if (!should_validate_cache_entries() ||!istate || !istate->initialized)
2497 return;
2498
2499 for (i = 0; i < istate->cache_nr; i++) {
2500 if (!istate) {
2501 BUG("cache entry is not allocated from expected memory pool");
2502 } else if (!istate->ce_mem_pool ||
2503 !mem_pool_contains(istate->ce_mem_pool, istate->cache[i])) {
2504 if (!istate->split_index ||
2505 !istate->split_index->base ||
2506 !istate->split_index->base->ce_mem_pool ||
2507 !mem_pool_contains(istate->split_index->base->ce_mem_pool, istate->cache[i])) {
2508 BUG("cache entry is not allocated from expected memory pool");
2509 }
2510 }
2511 }
2512
2513 if (istate->split_index)
2514 validate_cache_entries(istate->split_index->base);
2515 }
2516
2517 int unmerged_index(const struct index_state *istate)
2518 {
2519 int i;
2520 for (i = 0; i < istate->cache_nr; i++) {
2521 if (ce_stage(istate->cache[i]))
2522 return 1;
2523 }
2524 return 0;
2525 }
2526
2527 int repo_index_has_changes(struct repository *repo,
2528 struct tree *tree,
2529 struct strbuf *sb)
2530 {
2531 struct index_state *istate = repo->index;
2532 struct object_id cmp;
2533 int i;
2534
2535 if (tree)
2536 cmp = tree->object.oid;
2537 if (tree || !repo_get_oid_tree(repo, "HEAD", &cmp)) {
2538 struct diff_options opt;
2539
2540 repo_diff_setup(repo, &opt);
2541 opt.flags.exit_with_status = 1;
2542 if (!sb)
2543 opt.flags.quick = 1;
2544 diff_setup_done(&opt);
2545 do_diff_cache(&cmp, &opt);
2546 diffcore_std(&opt);
2547 for (i = 0; sb && i < diff_queued_diff.nr; i++) {
2548 if (i)
2549 strbuf_addch(sb, ' ');
2550 strbuf_addstr(sb, diff_queued_diff.queue[i]->two->path);
2551 }
2552 diff_flush(&opt);
2553 return opt.flags.has_changes != 0;
2554 } else {
2555 /* TODO: audit for interaction with sparse-index. */
2556 ensure_full_index(istate);
2557 for (i = 0; sb && i < istate->cache_nr; i++) {
2558 if (i)
2559 strbuf_addch(sb, ' ');
2560 strbuf_addstr(sb, istate->cache[i]->name);
2561 }
2562 return !!istate->cache_nr;
2563 }
2564 }
2565
2566 static int write_index_ext_header(struct hashfile *f,
2567 git_hash_ctx *eoie_f,
2568 unsigned int ext,
2569 unsigned int sz)
2570 {
2571 hashwrite_be32(f, ext);
2572 hashwrite_be32(f, sz);
2573
2574 if (eoie_f) {
2575 ext = htonl(ext);
2576 sz = htonl(sz);
2577 the_hash_algo->update_fn(eoie_f, &ext, sizeof(ext));
2578 the_hash_algo->update_fn(eoie_f, &sz, sizeof(sz));
2579 }
2580 return 0;
2581 }
2582
2583 static void ce_smudge_racily_clean_entry(struct index_state *istate,
2584 struct cache_entry *ce)
2585 {
2586 /*
2587 * The only thing we care about in this function is to smudge the
2588 * falsely clean entry due to touch-update-touch race, so we leave
2589 * everything else as they are. We are called for entries whose
2590 * ce_stat_data.sd_mtime match the index file mtime.
2591 *
2592 * Note that this actually does not do much for gitlinks, for
2593 * which ce_match_stat_basic() always goes to the actual
2594 * contents. The caller checks with is_racy_timestamp() which
2595 * always says "no" for gitlinks, so we are not called for them ;-)
2596 */
2597 struct stat st;
2598
2599 if (lstat(ce->name, &st) < 0)
2600 return;
2601 if (ce_match_stat_basic(ce, &st))
2602 return;
2603 if (ce_modified_check_fs(istate, ce, &st)) {
2604 /* This is "racily clean"; smudge it. Note that this
2605 * is a tricky code. At first glance, it may appear
2606 * that it can break with this sequence:
2607 *
2608 * $ echo xyzzy >frotz
2609 * $ git-update-index --add frotz
2610 * $ : >frotz
2611 * $ sleep 3
2612 * $ echo filfre >nitfol
2613 * $ git-update-index --add nitfol
2614 *
2615 * but it does not. When the second update-index runs,
2616 * it notices that the entry "frotz" has the same timestamp
2617 * as index, and if we were to smudge it by resetting its
2618 * size to zero here, then the object name recorded
2619 * in index is the 6-byte file but the cached stat information
2620 * becomes zero --- which would then match what we would
2621 * obtain from the filesystem next time we stat("frotz").
2622 *
2623 * However, the second update-index, before calling
2624 * this function, notices that the cached size is 6
2625 * bytes and what is on the filesystem is an empty
2626 * file, and never calls us, so the cached size information
2627 * for "frotz" stays 6 which does not match the filesystem.
2628 */
2629 ce->ce_stat_data.sd_size = 0;
2630 }
2631 }
2632
2633 /* Copy miscellaneous fields but not the name */
2634 static void copy_cache_entry_to_ondisk(struct ondisk_cache_entry *ondisk,
2635 struct cache_entry *ce)
2636 {
2637 short flags;
2638 const unsigned hashsz = the_hash_algo->rawsz;
2639 uint16_t *flagsp = (uint16_t *)(ondisk->data + hashsz);
2640
2641 ondisk->ctime.sec = htonl(ce->ce_stat_data.sd_ctime.sec);
2642 ondisk->mtime.sec = htonl(ce->ce_stat_data.sd_mtime.sec);
2643 ondisk->ctime.nsec = htonl(ce->ce_stat_data.sd_ctime.nsec);
2644 ondisk->mtime.nsec = htonl(ce->ce_stat_data.sd_mtime.nsec);
2645 ondisk->dev = htonl(ce->ce_stat_data.sd_dev);
2646 ondisk->ino = htonl(ce->ce_stat_data.sd_ino);
2647 ondisk->mode = htonl(ce->ce_mode);
2648 ondisk->uid = htonl(ce->ce_stat_data.sd_uid);
2649 ondisk->gid = htonl(ce->ce_stat_data.sd_gid);
2650 ondisk->size = htonl(ce->ce_stat_data.sd_size);
2651 hashcpy(ondisk->data, ce->oid.hash);
2652
2653 flags = ce->ce_flags & ~CE_NAMEMASK;
2654 flags |= (ce_namelen(ce) >= CE_NAMEMASK ? CE_NAMEMASK : ce_namelen(ce));
2655 flagsp[0] = htons(flags);
2656 if (ce->ce_flags & CE_EXTENDED) {
2657 flagsp[1] = htons((ce->ce_flags & CE_EXTENDED_FLAGS) >> 16);
2658 }
2659 }
2660
2661 static int ce_write_entry(struct hashfile *f, struct cache_entry *ce,
2662 struct strbuf *previous_name, struct ondisk_cache_entry *ondisk)
2663 {
2664 int size;
2665 unsigned int saved_namelen;
2666 int stripped_name = 0;
2667 static unsigned char padding[8] = { 0x00 };
2668
2669 if (ce->ce_flags & CE_STRIP_NAME) {
2670 saved_namelen = ce_namelen(ce);
2671 ce->ce_namelen = 0;
2672 stripped_name = 1;
2673 }
2674
2675 size = offsetof(struct ondisk_cache_entry,data) + ondisk_data_size(ce->ce_flags, 0);
2676
2677 if (!previous_name) {
2678 int len = ce_namelen(ce);
2679 copy_cache_entry_to_ondisk(ondisk, ce);
2680 hashwrite(f, ondisk, size);
2681 hashwrite(f, ce->name, len);
2682 hashwrite(f, padding, align_padding_size(size, len));
2683 } else {
2684 int common, to_remove, prefix_size;
2685 unsigned char to_remove_vi[16];
2686 for (common = 0;
2687 (ce->name[common] &&
2688 common < previous_name->len &&
2689 ce->name[common] == previous_name->buf[common]);
2690 common++)
2691 ; /* still matching */
2692 to_remove = previous_name->len - common;
2693 prefix_size = encode_varint(to_remove, to_remove_vi);
2694
2695 copy_cache_entry_to_ondisk(ondisk, ce);
2696 hashwrite(f, ondisk, size);
2697 hashwrite(f, to_remove_vi, prefix_size);
2698 hashwrite(f, ce->name + common, ce_namelen(ce) - common);
2699 hashwrite(f, padding, 1);
2700
2701 strbuf_splice(previous_name, common, to_remove,
2702 ce->name + common, ce_namelen(ce) - common);
2703 }
2704 if (stripped_name) {
2705 ce->ce_namelen = saved_namelen;
2706 ce->ce_flags &= ~CE_STRIP_NAME;
2707 }
2708
2709 return 0;
2710 }
2711
2712 /*
2713 * This function verifies if index_state has the correct sha1 of the
2714 * index file. Don't die if we have any other failure, just return 0.
2715 */
2716 static int verify_index_from(const struct index_state *istate, const char *path)
2717 {
2718 int fd;
2719 ssize_t n;
2720 struct stat st;
2721 unsigned char hash[GIT_MAX_RAWSZ];
2722
2723 if (!istate->initialized)
2724 return 0;
2725
2726 fd = open(path, O_RDONLY);
2727 if (fd < 0)
2728 return 0;
2729
2730 if (fstat(fd, &st))
2731 goto out;
2732
2733 if (st.st_size < sizeof(struct cache_header) + the_hash_algo->rawsz)
2734 goto out;
2735
2736 n = pread_in_full(fd, hash, the_hash_algo->rawsz, st.st_size - the_hash_algo->rawsz);
2737 if (n != the_hash_algo->rawsz)
2738 goto out;
2739
2740 if (!hasheq(istate->oid.hash, hash))
2741 goto out;
2742
2743 close(fd);
2744 return 1;
2745
2746 out:
2747 close(fd);
2748 return 0;
2749 }
2750
2751 static int repo_verify_index(struct repository *repo)
2752 {
2753 return verify_index_from(repo->index, repo->index_file);
2754 }
2755
2756 int has_racy_timestamp(struct index_state *istate)
2757 {
2758 int entries = istate->cache_nr;
2759 int i;
2760
2761 for (i = 0; i < entries; i++) {
2762 struct cache_entry *ce = istate->cache[i];
2763 if (is_racy_timestamp(istate, ce))
2764 return 1;
2765 }
2766 return 0;
2767 }
2768
2769 void repo_update_index_if_able(struct repository *repo,
2770 struct lock_file *lockfile)
2771 {
2772 if ((repo->index->cache_changed ||
2773 has_racy_timestamp(repo->index)) &&
2774 repo_verify_index(repo))
2775 write_locked_index(repo->index, lockfile, COMMIT_LOCK);
2776 else
2777 rollback_lock_file(lockfile);
2778 }
2779
2780 static int record_eoie(void)
2781 {
2782 int val;
2783
2784 if (!git_config_get_bool("index.recordendofindexentries", &val))
2785 return val;
2786
2787 /*
2788 * As a convenience, the end of index entries extension
2789 * used for threading is written by default if the user
2790 * explicitly requested threaded index reads.
2791 */
2792 return !git_config_get_index_threads(&val) && val != 1;
2793 }
2794
2795 static int record_ieot(void)
2796 {
2797 int val;
2798
2799 if (!git_config_get_bool("index.recordoffsettable", &val))
2800 return val;
2801
2802 /*
2803 * As a convenience, the offset table used for threading is
2804 * written by default if the user explicitly requested
2805 * threaded index reads.
2806 */
2807 return !git_config_get_index_threads(&val) && val != 1;
2808 }
2809
2810 enum write_extensions {
2811 WRITE_NO_EXTENSION = 0,
2812 WRITE_SPLIT_INDEX_EXTENSION = 1<<0,
2813 WRITE_CACHE_TREE_EXTENSION = 1<<1,
2814 WRITE_RESOLVE_UNDO_EXTENSION = 1<<2,
2815 WRITE_UNTRACKED_CACHE_EXTENSION = 1<<3,
2816 WRITE_FSMONITOR_EXTENSION = 1<<4,
2817 };
2818 #define WRITE_ALL_EXTENSIONS ((enum write_extensions)-1)
2819
2820 /*
2821 * On success, `tempfile` is closed. If it is the temporary file
2822 * of a `struct lock_file`, we will therefore effectively perform
2823 * a 'close_lock_file_gently()`. Since that is an implementation
2824 * detail of lockfiles, callers of `do_write_index()` should not
2825 * rely on it.
2826 */
2827 static int do_write_index(struct index_state *istate, struct tempfile *tempfile,
2828 enum write_extensions write_extensions, unsigned flags)
2829 {
2830 uint64_t start = getnanotime();
2831 struct hashfile *f;
2832 git_hash_ctx *eoie_c = NULL;
2833 struct cache_header hdr;
2834 int i, err = 0, removed, extended, hdr_version;
2835 struct cache_entry **cache = istate->cache;
2836 int entries = istate->cache_nr;
2837 struct stat st;
2838 struct ondisk_cache_entry ondisk;
2839 struct strbuf previous_name_buf = STRBUF_INIT, *previous_name;
2840 int drop_cache_tree = istate->drop_cache_tree;
2841 off_t offset;
2842 int csum_fsync_flag;
2843 int ieot_entries = 1;
2844 struct index_entry_offset_table *ieot = NULL;
2845 int nr, nr_threads;
2846 struct repository *r = istate->repo;
2847
2848 f = hashfd(tempfile->fd, tempfile->filename.buf);
2849
2850 prepare_repo_settings(r);
2851 f->skip_hash = r->settings.index_skip_hash;
2852
2853 for (i = removed = extended = 0; i < entries; i++) {
2854 if (cache[i]->ce_flags & CE_REMOVE)
2855 removed++;
2856
2857 /* reduce extended entries if possible */
2858 cache[i]->ce_flags &= ~CE_EXTENDED;
2859 if (cache[i]->ce_flags & CE_EXTENDED_FLAGS) {
2860 extended++;
2861 cache[i]->ce_flags |= CE_EXTENDED;
2862 }
2863 }
2864
2865 if (!istate->version)
2866 istate->version = get_index_format_default(r);
2867
2868 /* demote version 3 to version 2 when the latter suffices */
2869 if (istate->version == 3 || istate->version == 2)
2870 istate->version = extended ? 3 : 2;
2871
2872 hdr_version = istate->version;
2873
2874 hdr.hdr_signature = htonl(CACHE_SIGNATURE);
2875 hdr.hdr_version = htonl(hdr_version);
2876 hdr.hdr_entries = htonl(entries - removed);
2877
2878 hashwrite(f, &hdr, sizeof(hdr));
2879
2880 if (!HAVE_THREADS || git_config_get_index_threads(&nr_threads))
2881 nr_threads = 1;
2882
2883 if (nr_threads != 1 && record_ieot()) {
2884 int ieot_blocks, cpus;
2885
2886 /*
2887 * ensure default number of ieot blocks maps evenly to the
2888 * default number of threads that will process them leaving
2889 * room for the thread to load the index extensions.
2890 */
2891 if (!nr_threads) {
2892 ieot_blocks = istate->cache_nr / THREAD_COST;
2893 cpus = online_cpus();
2894 if (ieot_blocks > cpus - 1)
2895 ieot_blocks = cpus - 1;
2896 } else {
2897 ieot_blocks = nr_threads;
2898 if (ieot_blocks > istate->cache_nr)
2899 ieot_blocks = istate->cache_nr;
2900 }
2901
2902 /*
2903 * no reason to write out the IEOT extension if we don't
2904 * have enough blocks to utilize multi-threading
2905 */
2906 if (ieot_blocks > 1) {
2907 ieot = xcalloc(1, sizeof(struct index_entry_offset_table)
2908 + (ieot_blocks * sizeof(struct index_entry_offset)));
2909 ieot_entries = DIV_ROUND_UP(entries, ieot_blocks);
2910 }
2911 }
2912
2913 offset = hashfile_total(f);
2914
2915 nr = 0;
2916 previous_name = (hdr_version == 4) ? &previous_name_buf : NULL;
2917
2918 for (i = 0; i < entries; i++) {
2919 struct cache_entry *ce = cache[i];
2920 if (ce->ce_flags & CE_REMOVE)
2921 continue;
2922 if (!ce_uptodate(ce) && is_racy_timestamp(istate, ce))
2923 ce_smudge_racily_clean_entry(istate, ce);
2924 if (is_null_oid(&ce->oid)) {
2925 static const char msg[] = "cache entry has null sha1: %s";
2926 static int allow = -1;
2927
2928 if (allow < 0)
2929 allow = git_env_bool("GIT_ALLOW_NULL_SHA1", 0);
2930 if (allow)
2931 warning(msg, ce->name);
2932 else
2933 err = error(msg, ce->name);
2934
2935 drop_cache_tree = 1;
2936 }
2937 if (ieot && i && (i % ieot_entries == 0)) {
2938 ieot->entries[ieot->nr].nr = nr;
2939 ieot->entries[ieot->nr].offset = offset;
2940 ieot->nr++;
2941 /*
2942 * If we have a V4 index, set the first byte to an invalid
2943 * character to ensure there is nothing common with the previous
2944 * entry
2945 */
2946 if (previous_name)
2947 previous_name->buf[0] = 0;
2948 nr = 0;
2949
2950 offset = hashfile_total(f);
2951 }
2952 if (ce_write_entry(f, ce, previous_name, (struct ondisk_cache_entry *)&ondisk) < 0)
2953 err = -1;
2954
2955 if (err)
2956 break;
2957 nr++;
2958 }
2959 if (ieot && nr) {
2960 ieot->entries[ieot->nr].nr = nr;
2961 ieot->entries[ieot->nr].offset = offset;
2962 ieot->nr++;
2963 }
2964 strbuf_release(&previous_name_buf);
2965
2966 if (err) {
2967 free(ieot);
2968 return err;
2969 }
2970
2971 offset = hashfile_total(f);
2972
2973 /*
2974 * The extension headers must be hashed on their own for the
2975 * EOIE extension. Create a hashfile here to compute that hash.
2976 */
2977 if (offset && record_eoie()) {
2978 CALLOC_ARRAY(eoie_c, 1);
2979 the_hash_algo->init_fn(eoie_c);
2980 }
2981
2982 /*
2983 * Lets write out CACHE_EXT_INDEXENTRYOFFSETTABLE first so that we
2984 * can minimize the number of extensions we have to scan through to
2985 * find it during load. Write it out regardless of the
2986 * strip_extensions parameter as we need it when loading the shared
2987 * index.
2988 */
2989 if (ieot) {
2990 struct strbuf sb = STRBUF_INIT;
2991
2992 write_ieot_extension(&sb, ieot);
2993 err = write_index_ext_header(f, eoie_c, CACHE_EXT_INDEXENTRYOFFSETTABLE, sb.len) < 0;
2994 hashwrite(f, sb.buf, sb.len);
2995 strbuf_release(&sb);
2996 free(ieot);
2997 if (err)
2998 return -1;
2999 }
3000
3001 if (write_extensions & WRITE_SPLIT_INDEX_EXTENSION &&
3002 istate->split_index) {
3003 struct strbuf sb = STRBUF_INIT;
3004
3005 if (istate->sparse_index)
3006 die(_("cannot write split index for a sparse index"));
3007
3008 err = write_link_extension(&sb, istate) < 0 ||
3009 write_index_ext_header(f, eoie_c, CACHE_EXT_LINK,
3010 sb.len) < 0;
3011 hashwrite(f, sb.buf, sb.len);
3012 strbuf_release(&sb);
3013 if (err)
3014 return -1;
3015 }
3016 if (write_extensions & WRITE_CACHE_TREE_EXTENSION &&
3017 !drop_cache_tree && istate->cache_tree) {
3018 struct strbuf sb = STRBUF_INIT;
3019
3020 cache_tree_write(&sb, istate->cache_tree);
3021 err = write_index_ext_header(f, eoie_c, CACHE_EXT_TREE, sb.len) < 0;
3022 hashwrite(f, sb.buf, sb.len);
3023 strbuf_release(&sb);
3024 if (err)
3025 return -1;
3026 }
3027 if (write_extensions & WRITE_RESOLVE_UNDO_EXTENSION &&
3028 istate->resolve_undo) {
3029 struct strbuf sb = STRBUF_INIT;
3030
3031 resolve_undo_write(&sb, istate->resolve_undo);
3032 err = write_index_ext_header(f, eoie_c, CACHE_EXT_RESOLVE_UNDO,
3033 sb.len) < 0;
3034 hashwrite(f, sb.buf, sb.len);
3035 strbuf_release(&sb);
3036 if (err)
3037 return -1;
3038 }
3039 if (write_extensions & WRITE_UNTRACKED_CACHE_EXTENSION &&
3040 istate->untracked) {
3041 struct strbuf sb = STRBUF_INIT;
3042
3043 write_untracked_extension(&sb, istate->untracked);
3044 err = write_index_ext_header(f, eoie_c, CACHE_EXT_UNTRACKED,
3045 sb.len) < 0;
3046 hashwrite(f, sb.buf, sb.len);
3047 strbuf_release(&sb);
3048 if (err)
3049 return -1;
3050 }
3051 if (write_extensions & WRITE_FSMONITOR_EXTENSION &&
3052 istate->fsmonitor_last_update) {
3053 struct strbuf sb = STRBUF_INIT;
3054
3055 write_fsmonitor_extension(&sb, istate);
3056 err = write_index_ext_header(f, eoie_c, CACHE_EXT_FSMONITOR, sb.len) < 0;
3057 hashwrite(f, sb.buf, sb.len);
3058 strbuf_release(&sb);
3059 if (err)
3060 return -1;
3061 }
3062 if (istate->sparse_index) {
3063 if (write_index_ext_header(f, eoie_c, CACHE_EXT_SPARSE_DIRECTORIES, 0) < 0)
3064 return -1;
3065 }
3066
3067 /*
3068 * CACHE_EXT_ENDOFINDEXENTRIES must be written as the last entry before the SHA1
3069 * so that it can be found and processed before all the index entries are
3070 * read. Write it out regardless of the strip_extensions parameter as we need it
3071 * when loading the shared index.
3072 */
3073 if (eoie_c) {
3074 struct strbuf sb = STRBUF_INIT;
3075
3076 write_eoie_extension(&sb, eoie_c, offset);
3077 err = write_index_ext_header(f, NULL, CACHE_EXT_ENDOFINDEXENTRIES, sb.len) < 0;
3078 hashwrite(f, sb.buf, sb.len);
3079 strbuf_release(&sb);
3080 if (err)
3081 return -1;
3082 }
3083
3084 csum_fsync_flag = 0;
3085 if (!alternate_index_output && (flags & COMMIT_LOCK))
3086 csum_fsync_flag = CSUM_FSYNC;
3087
3088 finalize_hashfile(f, istate->oid.hash, FSYNC_COMPONENT_INDEX,
3089 CSUM_HASH_IN_STREAM | csum_fsync_flag);
3090
3091 if (close_tempfile_gently(tempfile)) {
3092 error(_("could not close '%s'"), get_tempfile_path(tempfile));
3093 return -1;
3094 }
3095 if (stat(get_tempfile_path(tempfile), &st))
3096 return -1;
3097 istate->timestamp.sec = (unsigned int)st.st_mtime;
3098 istate->timestamp.nsec = ST_MTIME_NSEC(st);
3099 trace_performance_since(start, "write index, changed mask = %x", istate->cache_changed);
3100
3101 /*
3102 * TODO trace2: replace "the_repository" with the actual repo instance
3103 * that is associated with the given "istate".
3104 */
3105 trace2_data_intmax("index", the_repository, "write/version",
3106 istate->version);
3107 trace2_data_intmax("index", the_repository, "write/cache_nr",
3108 istate->cache_nr);
3109
3110 return 0;
3111 }
3112
3113 void set_alternate_index_output(const char *name)
3114 {
3115 alternate_index_output = name;
3116 }
3117
3118 static int commit_locked_index(struct lock_file *lk)
3119 {
3120 if (alternate_index_output)
3121 return commit_lock_file_to(lk, alternate_index_output);
3122 else
3123 return commit_lock_file(lk);
3124 }
3125
3126 static int do_write_locked_index(struct index_state *istate,
3127 struct lock_file *lock,
3128 unsigned flags,
3129 enum write_extensions write_extensions)
3130 {
3131 int ret;
3132 int was_full = istate->sparse_index == INDEX_EXPANDED;
3133
3134 ret = convert_to_sparse(istate, 0);
3135
3136 if (ret) {
3137 warning(_("failed to convert to a sparse-index"));
3138 return ret;
3139 }
3140
3141 /*
3142 * TODO trace2: replace "the_repository" with the actual repo instance
3143 * that is associated with the given "istate".
3144 */
3145 trace2_region_enter_printf("index", "do_write_index", the_repository,
3146 "%s", get_lock_file_path(lock));
3147 ret = do_write_index(istate, lock->tempfile, write_extensions, flags);
3148 trace2_region_leave_printf("index", "do_write_index", the_repository,
3149 "%s", get_lock_file_path(lock));
3150
3151 if (was_full)
3152 ensure_full_index(istate);
3153
3154 if (ret)
3155 return ret;
3156 if (flags & COMMIT_LOCK)
3157 ret = commit_locked_index(lock);
3158 else
3159 ret = close_lock_file_gently(lock);
3160
3161 run_hooks_l("post-index-change",
3162 istate->updated_workdir ? "1" : "0",
3163 istate->updated_skipworktree ? "1" : "0", NULL);
3164 istate->updated_workdir = 0;
3165 istate->updated_skipworktree = 0;
3166
3167 return ret;
3168 }
3169
3170 static int write_split_index(struct index_state *istate,
3171 struct lock_file *lock,
3172 unsigned flags)
3173 {
3174 int ret;
3175 prepare_to_write_split_index(istate);
3176 ret = do_write_locked_index(istate, lock, flags, WRITE_ALL_EXTENSIONS);
3177 finish_writing_split_index(istate);
3178 return ret;
3179 }
3180
3181 static const char *shared_index_expire = "2.weeks.ago";
3182
3183 static unsigned long get_shared_index_expire_date(void)
3184 {
3185 static unsigned long shared_index_expire_date;
3186 static int shared_index_expire_date_prepared;
3187
3188 if (!shared_index_expire_date_prepared) {
3189 git_config_get_expiry("splitindex.sharedindexexpire",
3190 &shared_index_expire);
3191 shared_index_expire_date = approxidate(shared_index_expire);
3192 shared_index_expire_date_prepared = 1;
3193 }
3194
3195 return shared_index_expire_date;
3196 }
3197
3198 static int should_delete_shared_index(const char *shared_index_path)
3199 {
3200 struct stat st;
3201 unsigned long expiration;
3202
3203 /* Check timestamp */
3204 expiration = get_shared_index_expire_date();
3205 if (!expiration)
3206 return 0;
3207 if (stat(shared_index_path, &st))
3208 return error_errno(_("could not stat '%s'"), shared_index_path);
3209 if (st.st_mtime > expiration)
3210 return 0;
3211
3212 return 1;
3213 }
3214
3215 static int clean_shared_index_files(const char *current_hex)
3216 {
3217 struct dirent *de;
3218 DIR *dir = opendir(get_git_dir());
3219
3220 if (!dir)
3221 return error_errno(_("unable to open git dir: %s"), get_git_dir());
3222
3223 while ((de = readdir(dir)) != NULL) {
3224 const char *sha1_hex;
3225 const char *shared_index_path;
3226 if (!skip_prefix(de->d_name, "sharedindex.", &sha1_hex))
3227 continue;
3228 if (!strcmp(sha1_hex, current_hex))
3229 continue;
3230 shared_index_path = git_path("%s", de->d_name);
3231 if (should_delete_shared_index(shared_index_path) > 0 &&
3232 unlink(shared_index_path))
3233 warning_errno(_("unable to unlink: %s"), shared_index_path);
3234 }
3235 closedir(dir);
3236
3237 return 0;
3238 }
3239
3240 static int write_shared_index(struct index_state *istate,
3241 struct tempfile **temp, unsigned flags)
3242 {
3243 struct split_index *si = istate->split_index;
3244 int ret, was_full = !istate->sparse_index;
3245
3246 move_cache_to_base_index(istate);
3247 convert_to_sparse(istate, 0);
3248
3249 trace2_region_enter_printf("index", "shared/do_write_index",
3250 the_repository, "%s", get_tempfile_path(*temp));
3251 ret = do_write_index(si->base, *temp, WRITE_NO_EXTENSION, flags);
3252 trace2_region_leave_printf("index", "shared/do_write_index",
3253 the_repository, "%s", get_tempfile_path(*temp));
3254
3255 if (was_full)
3256 ensure_full_index(istate);
3257
3258 if (ret)
3259 return ret;
3260 ret = adjust_shared_perm(get_tempfile_path(*temp));
3261 if (ret) {
3262 error(_("cannot fix permission bits on '%s'"), get_tempfile_path(*temp));
3263 return ret;
3264 }
3265 ret = rename_tempfile(temp,
3266 git_path("sharedindex.%s", oid_to_hex(&si->base->oid)));
3267 if (!ret) {
3268 oidcpy(&si->base_oid, &si->base->oid);
3269 clean_shared_index_files(oid_to_hex(&si->base->oid));
3270 }
3271
3272 return ret;
3273 }
3274
3275 static const int default_max_percent_split_change = 20;
3276
3277 static int too_many_not_shared_entries(struct index_state *istate)
3278 {
3279 int i, not_shared = 0;
3280 int max_split = git_config_get_max_percent_split_change();
3281
3282 switch (max_split) {
3283 case -1:
3284 /* not or badly configured: use the default value */
3285 max_split = default_max_percent_split_change;
3286 break;
3287 case 0:
3288 return 1; /* 0% means always write a new shared index */
3289 case 100:
3290 return 0; /* 100% means never write a new shared index */
3291 default:
3292 break; /* just use the configured value */
3293 }
3294
3295 /* Count not shared entries */
3296 for (i = 0; i < istate->cache_nr; i++) {
3297 struct cache_entry *ce = istate->cache[i];
3298 if (!ce->index)
3299 not_shared++;
3300 }
3301
3302 return (int64_t)istate->cache_nr * max_split < (int64_t)not_shared * 100;
3303 }
3304
3305 int write_locked_index(struct index_state *istate, struct lock_file *lock,
3306 unsigned flags)
3307 {
3308 int new_shared_index, ret, test_split_index_env;
3309 struct split_index *si = istate->split_index;
3310
3311 if (git_env_bool("GIT_TEST_CHECK_CACHE_TREE", 0))
3312 cache_tree_verify(the_repository, istate);
3313
3314 if ((flags & SKIP_IF_UNCHANGED) && !istate->cache_changed) {
3315 if (flags & COMMIT_LOCK)
3316 rollback_lock_file(lock);
3317 return 0;
3318 }
3319
3320 if (istate->fsmonitor_last_update)
3321 fill_fsmonitor_bitmap(istate);
3322
3323 test_split_index_env = git_env_bool("GIT_TEST_SPLIT_INDEX", 0);
3324
3325 if ((!si && !test_split_index_env) ||
3326 alternate_index_output ||
3327 (istate->cache_changed & ~EXTMASK)) {
3328 ret = do_write_locked_index(istate, lock, flags,
3329 ~WRITE_SPLIT_INDEX_EXTENSION);
3330 goto out;
3331 }
3332
3333 if (test_split_index_env) {
3334 if (!si) {
3335 si = init_split_index(istate);
3336 istate->cache_changed |= SPLIT_INDEX_ORDERED;
3337 } else {
3338 int v = si->base_oid.hash[0];
3339 if ((v & 15) < 6)
3340 istate->cache_changed |= SPLIT_INDEX_ORDERED;
3341 }
3342 }
3343 if (too_many_not_shared_entries(istate))
3344 istate->cache_changed |= SPLIT_INDEX_ORDERED;
3345
3346 new_shared_index = istate->cache_changed & SPLIT_INDEX_ORDERED;
3347
3348 if (new_shared_index) {
3349 struct tempfile *temp;
3350 int saved_errno;
3351
3352 /* Same initial permissions as the main .git/index file */
3353 temp = mks_tempfile_sm(git_path("sharedindex_XXXXXX"), 0, 0666);
3354 if (!temp) {
3355 ret = do_write_locked_index(istate, lock, flags,
3356 ~WRITE_SPLIT_INDEX_EXTENSION);
3357 goto out;
3358 }
3359 ret = write_shared_index(istate, &temp, flags);
3360
3361 saved_errno = errno;
3362 if (is_tempfile_active(temp))
3363 delete_tempfile(&temp);
3364 errno = saved_errno;
3365
3366 if (ret)
3367 goto out;
3368 }
3369
3370 ret = write_split_index(istate, lock, flags);
3371
3372 /* Freshen the shared index only if the split-index was written */
3373 if (!ret && !new_shared_index && !is_null_oid(&si->base_oid)) {
3374 const char *shared_index = git_path("sharedindex.%s",
3375 oid_to_hex(&si->base_oid));
3376 freshen_shared_index(shared_index, 1);
3377 }
3378
3379 out:
3380 if (flags & COMMIT_LOCK)
3381 rollback_lock_file(lock);
3382 return ret;
3383 }
3384
3385 /*
3386 * Read the index file that is potentially unmerged into given
3387 * index_state, dropping any unmerged entries to stage #0 (potentially
3388 * resulting in a path appearing as both a file and a directory in the
3389 * index; the caller is responsible to clear out the extra entries
3390 * before writing the index to a tree). Returns true if the index is
3391 * unmerged. Callers who want to refuse to work from an unmerged
3392 * state can call this and check its return value, instead of calling
3393 * read_cache().
3394 */
3395 int repo_read_index_unmerged(struct repository *repo)
3396 {
3397 struct index_state *istate;
3398 int i;
3399 int unmerged = 0;
3400
3401 repo_read_index(repo);
3402 istate = repo->index;
3403 for (i = 0; i < istate->cache_nr; i++) {
3404 struct cache_entry *ce = istate->cache[i];
3405 struct cache_entry *new_ce;
3406 int len;
3407
3408 if (!ce_stage(ce))
3409 continue;
3410 unmerged = 1;
3411 len = ce_namelen(ce);
3412 new_ce = make_empty_cache_entry(istate, len);
3413 memcpy(new_ce->name, ce->name, len);
3414 new_ce->ce_flags = create_ce_flags(0) | CE_CONFLICTED;
3415 new_ce->ce_namelen = len;
3416 new_ce->ce_mode = ce->ce_mode;
3417 if (add_index_entry(istate, new_ce, ADD_CACHE_SKIP_DFCHECK))
3418 return error(_("%s: cannot drop to stage #0"),
3419 new_ce->name);
3420 }
3421 return unmerged;
3422 }
3423
3424 /*
3425 * Returns 1 if the path is an "other" path with respect to
3426 * the index; that is, the path is not mentioned in the index at all,
3427 * either as a file, a directory with some files in the index,
3428 * or as an unmerged entry.
3429 *
3430 * We helpfully remove a trailing "/" from directories so that
3431 * the output of read_directory can be used as-is.
3432 */
3433 int index_name_is_other(struct index_state *istate, const char *name,
3434 int namelen)
3435 {
3436 int pos;
3437 if (namelen && name[namelen - 1] == '/')
3438 namelen--;
3439 pos = index_name_pos(istate, name, namelen);
3440 if (0 <= pos)
3441 return 0; /* exact match */
3442 pos = -pos - 1;
3443 if (pos < istate->cache_nr) {
3444 struct cache_entry *ce = istate->cache[pos];
3445 if (ce_namelen(ce) == namelen &&
3446 !memcmp(ce->name, name, namelen))
3447 return 0; /* Yup, this one exists unmerged */
3448 }
3449 return 1;
3450 }
3451
3452 void *read_blob_data_from_index(struct index_state *istate,
3453 const char *path, unsigned long *size)
3454 {
3455 int pos, len;
3456 unsigned long sz;
3457 enum object_type type;
3458 void *data;
3459
3460 len = strlen(path);
3461 pos = index_name_pos(istate, path, len);
3462 if (pos < 0) {
3463 /*
3464 * We might be in the middle of a merge, in which
3465 * case we would read stage #2 (ours).
3466 */
3467 int i;
3468 for (i = -pos - 1;
3469 (pos < 0 && i < istate->cache_nr &&
3470 !strcmp(istate->cache[i]->name, path));
3471 i++)
3472 if (ce_stage(istate->cache[i]) == 2)
3473 pos = i;
3474 }
3475 if (pos < 0)
3476 return NULL;
3477 data = repo_read_object_file(the_repository, &istate->cache[pos]->oid,
3478 &type, &sz);
3479 if (!data || type != OBJ_BLOB) {
3480 free(data);
3481 return NULL;
3482 }
3483 if (size)
3484 *size = sz;
3485 return data;
3486 }
3487
3488 void move_index_extensions(struct index_state *dst, struct index_state *src)
3489 {
3490 dst->untracked = src->untracked;
3491 src->untracked = NULL;
3492 dst->cache_tree = src->cache_tree;
3493 src->cache_tree = NULL;
3494 }
3495
3496 struct cache_entry *dup_cache_entry(const struct cache_entry *ce,
3497 struct index_state *istate)
3498 {
3499 unsigned int size = ce_size(ce);
3500 int mem_pool_allocated;
3501 struct cache_entry *new_entry = make_empty_cache_entry(istate, ce_namelen(ce));
3502 mem_pool_allocated = new_entry->mem_pool_allocated;
3503
3504 memcpy(new_entry, ce, size);
3505 new_entry->mem_pool_allocated = mem_pool_allocated;
3506 return new_entry;
3507 }
3508
3509 void discard_cache_entry(struct cache_entry *ce)
3510 {
3511 if (ce && should_validate_cache_entries())
3512 memset(ce, 0xCD, cache_entry_size(ce->ce_namelen));
3513
3514 if (ce && ce->mem_pool_allocated)
3515 return;
3516
3517 free(ce);
3518 }
3519
3520 int should_validate_cache_entries(void)
3521 {
3522 static int validate_index_cache_entries = -1;
3523
3524 if (validate_index_cache_entries < 0) {
3525 if (getenv("GIT_TEST_VALIDATE_INDEX_CACHE_ENTRIES"))
3526 validate_index_cache_entries = 1;
3527 else
3528 validate_index_cache_entries = 0;
3529 }
3530
3531 return validate_index_cache_entries;
3532 }
3533
3534 #define EOIE_SIZE (4 + GIT_SHA1_RAWSZ) /* <4-byte offset> + <20-byte hash> */
3535 #define EOIE_SIZE_WITH_HEADER (4 + 4 + EOIE_SIZE) /* <4-byte signature> + <4-byte length> + EOIE_SIZE */
3536
3537 static size_t read_eoie_extension(const char *mmap, size_t mmap_size)
3538 {
3539 /*
3540 * The end of index entries (EOIE) extension is guaranteed to be last
3541 * so that it can be found by scanning backwards from the EOF.
3542 *
3543 * "EOIE"
3544 * <4-byte length>
3545 * <4-byte offset>
3546 * <20-byte hash>
3547 */
3548 const char *index, *eoie;
3549 uint32_t extsize;
3550 size_t offset, src_offset;
3551 unsigned char hash[GIT_MAX_RAWSZ];
3552 git_hash_ctx c;
3553
3554 /* ensure we have an index big enough to contain an EOIE extension */
3555 if (mmap_size < sizeof(struct cache_header) + EOIE_SIZE_WITH_HEADER + the_hash_algo->rawsz)
3556 return 0;
3557
3558 /* validate the extension signature */
3559 index = eoie = mmap + mmap_size - EOIE_SIZE_WITH_HEADER - the_hash_algo->rawsz;
3560 if (CACHE_EXT(index) != CACHE_EXT_ENDOFINDEXENTRIES)
3561 return 0;
3562 index += sizeof(uint32_t);
3563
3564 /* validate the extension size */
3565 extsize = get_be32(index);
3566 if (extsize != EOIE_SIZE)
3567 return 0;
3568 index += sizeof(uint32_t);
3569
3570 /*
3571 * Validate the offset we're going to look for the first extension
3572 * signature is after the index header and before the eoie extension.
3573 */
3574 offset = get_be32(index);
3575 if (mmap + offset < mmap + sizeof(struct cache_header))
3576 return 0;
3577 if (mmap + offset >= eoie)
3578 return 0;
3579 index += sizeof(uint32_t);
3580
3581 /*
3582 * The hash is computed over extension types and their sizes (but not
3583 * their contents). E.g. if we have "TREE" extension that is N-bytes
3584 * long, "REUC" extension that is M-bytes long, followed by "EOIE",
3585 * then the hash would be:
3586 *
3587 * SHA-1("TREE" + <binary representation of N> +
3588 * "REUC" + <binary representation of M>)
3589 */
3590 src_offset = offset;
3591 the_hash_algo->init_fn(&c);
3592 while (src_offset < mmap_size - the_hash_algo->rawsz - EOIE_SIZE_WITH_HEADER) {
3593 /* After an array of active_nr index entries,
3594 * there can be arbitrary number of extended
3595 * sections, each of which is prefixed with
3596 * extension name (4-byte) and section length
3597 * in 4-byte network byte order.
3598 */
3599 uint32_t extsize;
3600 memcpy(&extsize, mmap + src_offset + 4, 4);
3601 extsize = ntohl(extsize);
3602
3603 /* verify the extension size isn't so large it will wrap around */
3604 if (src_offset + 8 + extsize < src_offset)
3605 return 0;
3606
3607 the_hash_algo->update_fn(&c, mmap + src_offset, 8);
3608
3609 src_offset += 8;
3610 src_offset += extsize;
3611 }
3612 the_hash_algo->final_fn(hash, &c);
3613 if (!hasheq(hash, (const unsigned char *)index))
3614 return 0;
3615
3616 /* Validate that the extension offsets returned us back to the eoie extension. */
3617 if (src_offset != mmap_size - the_hash_algo->rawsz - EOIE_SIZE_WITH_HEADER)
3618 return 0;
3619
3620 return offset;
3621 }
3622
3623 static void write_eoie_extension(struct strbuf *sb, git_hash_ctx *eoie_context, size_t offset)
3624 {
3625 uint32_t buffer;
3626 unsigned char hash[GIT_MAX_RAWSZ];
3627
3628 /* offset */
3629 put_be32(&buffer, offset);
3630 strbuf_add(sb, &buffer, sizeof(uint32_t));
3631
3632 /* hash */
3633 the_hash_algo->final_fn(hash, eoie_context);
3634 strbuf_add(sb, hash, the_hash_algo->rawsz);
3635 }
3636
3637 #define IEOT_VERSION (1)
3638
3639 static struct index_entry_offset_table *read_ieot_extension(const char *mmap, size_t mmap_size, size_t offset)
3640 {
3641 const char *index = NULL;
3642 uint32_t extsize, ext_version;
3643 struct index_entry_offset_table *ieot;
3644 int i, nr;
3645
3646 /* find the IEOT extension */
3647 if (!offset)
3648 return NULL;
3649 while (offset <= mmap_size - the_hash_algo->rawsz - 8) {
3650 extsize = get_be32(mmap + offset + 4);
3651 if (CACHE_EXT((mmap + offset)) == CACHE_EXT_INDEXENTRYOFFSETTABLE) {
3652 index = mmap + offset + 4 + 4;
3653 break;
3654 }
3655 offset += 8;
3656 offset += extsize;
3657 }
3658 if (!index)
3659 return NULL;
3660
3661 /* validate the version is IEOT_VERSION */
3662 ext_version = get_be32(index);
3663 if (ext_version != IEOT_VERSION) {
3664 error("invalid IEOT version %d", ext_version);
3665 return NULL;
3666 }
3667 index += sizeof(uint32_t);
3668
3669 /* extension size - version bytes / bytes per entry */
3670 nr = (extsize - sizeof(uint32_t)) / (sizeof(uint32_t) + sizeof(uint32_t));
3671 if (!nr) {
3672 error("invalid number of IEOT entries %d", nr);
3673 return NULL;
3674 }
3675 ieot = xmalloc(sizeof(struct index_entry_offset_table)
3676 + (nr * sizeof(struct index_entry_offset)));
3677 ieot->nr = nr;
3678 for (i = 0; i < nr; i++) {
3679 ieot->entries[i].offset = get_be32(index);
3680 index += sizeof(uint32_t);
3681 ieot->entries[i].nr = get_be32(index);
3682 index += sizeof(uint32_t);
3683 }
3684
3685 return ieot;
3686 }
3687
3688 static void write_ieot_extension(struct strbuf *sb, struct index_entry_offset_table *ieot)
3689 {
3690 uint32_t buffer;
3691 int i;
3692
3693 /* version */
3694 put_be32(&buffer, IEOT_VERSION);
3695 strbuf_add(sb, &buffer, sizeof(uint32_t));
3696
3697 /* ieot */
3698 for (i = 0; i < ieot->nr; i++) {
3699
3700 /* offset */
3701 put_be32(&buffer, ieot->entries[i].offset);
3702 strbuf_add(sb, &buffer, sizeof(uint32_t));
3703
3704 /* count */
3705 put_be32(&buffer, ieot->entries[i].nr);
3706 strbuf_add(sb, &buffer, sizeof(uint32_t));
3707 }
3708 }
3709
3710 void prefetch_cache_entries(const struct index_state *istate,
3711 must_prefetch_predicate must_prefetch)
3712 {
3713 int i;
3714 struct oid_array to_fetch = OID_ARRAY_INIT;
3715
3716 for (i = 0; i < istate->cache_nr; i++) {
3717 struct cache_entry *ce = istate->cache[i];
3718
3719 if (S_ISGITLINK(ce->ce_mode) || !must_prefetch(ce))
3720 continue;
3721 if (!oid_object_info_extended(the_repository, &ce->oid,
3722 NULL,
3723 OBJECT_INFO_FOR_PREFETCH))
3724 continue;
3725 oid_array_append(&to_fetch, &ce->oid);
3726 }
3727 promisor_remote_get_direct(the_repository,
3728 to_fetch.oid, to_fetch.nr);
3729 oid_array_clear(&to_fetch);
3730 }
3731
3732 static int read_one_entry_opt(struct index_state *istate,
3733 const struct object_id *oid,
3734 struct strbuf *base,
3735 const char *pathname,
3736 unsigned mode, int opt)
3737 {
3738 int len;
3739 struct cache_entry *ce;
3740
3741 if (S_ISDIR(mode))
3742 return READ_TREE_RECURSIVE;
3743
3744 len = strlen(pathname);
3745 ce = make_empty_cache_entry(istate, base->len + len);
3746
3747 ce->ce_mode = create_ce_mode(mode);
3748 ce->ce_flags = create_ce_flags(1);
3749 ce->ce_namelen = base->len + len;
3750 memcpy(ce->name, base->buf, base->len);
3751 memcpy(ce->name + base->len, pathname, len+1);
3752 oidcpy(&ce->oid, oid);
3753 return add_index_entry(istate, ce, opt);
3754 }
3755
3756 static int read_one_entry(const struct object_id *oid, struct strbuf *base,
3757 const char *pathname, unsigned mode,
3758 void *context)
3759 {
3760 struct index_state *istate = context;
3761 return read_one_entry_opt(istate, oid, base, pathname,
3762 mode,
3763 ADD_CACHE_OK_TO_ADD|ADD_CACHE_SKIP_DFCHECK);
3764 }
3765
3766 /*
3767 * This is used when the caller knows there is no existing entries at
3768 * the stage that will conflict with the entry being added.
3769 */
3770 static int read_one_entry_quick(const struct object_id *oid, struct strbuf *base,
3771 const char *pathname, unsigned mode,
3772 void *context)
3773 {
3774 struct index_state *istate = context;
3775 return read_one_entry_opt(istate, oid, base, pathname,
3776 mode, ADD_CACHE_JUST_APPEND);
3777 }
3778
3779 /*
3780 * Read the tree specified with --with-tree option
3781 * (typically, HEAD) into stage #1 and then
3782 * squash them down to stage #0. This is used for
3783 * --error-unmatch to list and check the path patterns
3784 * that were given from the command line. We are not
3785 * going to write this index out.
3786 */
3787 void overlay_tree_on_index(struct index_state *istate,
3788 const char *tree_name, const char *prefix)
3789 {
3790 struct tree *tree;
3791 struct object_id oid;
3792 struct pathspec pathspec;
3793 struct cache_entry *last_stage0 = NULL;
3794 int i;
3795 read_tree_fn_t fn = NULL;
3796 int err;
3797
3798 if (repo_get_oid(the_repository, tree_name, &oid))
3799 die("tree-ish %s not found.", tree_name);
3800 tree = parse_tree_indirect(&oid);
3801 if (!tree)
3802 die("bad tree-ish %s", tree_name);
3803
3804 /* Hoist the unmerged entries up to stage #3 to make room */
3805 /* TODO: audit for interaction with sparse-index. */
3806 ensure_full_index(istate);
3807 for (i = 0; i < istate->cache_nr; i++) {
3808 struct cache_entry *ce = istate->cache[i];
3809 if (!ce_stage(ce))
3810 continue;
3811 ce->ce_flags |= CE_STAGEMASK;
3812 }
3813
3814 if (prefix) {
3815 static const char *(matchbuf[1]);
3816 matchbuf[0] = NULL;
3817 parse_pathspec(&pathspec, PATHSPEC_ALL_MAGIC,
3818 PATHSPEC_PREFER_CWD, prefix, matchbuf);
3819 } else
3820 memset(&pathspec, 0, sizeof(pathspec));
3821
3822 /*
3823 * See if we have cache entry at the stage. If so,
3824 * do it the original slow way, otherwise, append and then
3825 * sort at the end.
3826 */
3827 for (i = 0; !fn && i < istate->cache_nr; i++) {
3828 const struct cache_entry *ce = istate->cache[i];
3829 if (ce_stage(ce) == 1)
3830 fn = read_one_entry;
3831 }
3832
3833 if (!fn)
3834 fn = read_one_entry_quick;
3835 err = read_tree(the_repository, tree, &pathspec, fn, istate);
3836 clear_pathspec(&pathspec);
3837 if (err)
3838 die("unable to read tree entries %s", tree_name);
3839
3840 /*
3841 * Sort the cache entry -- we need to nuke the cache tree, though.
3842 */
3843 if (fn == read_one_entry_quick) {
3844 cache_tree_free(&istate->cache_tree);
3845 QSORT(istate->cache, istate->cache_nr, cmp_cache_name_compare);
3846 }
3847
3848 for (i = 0; i < istate->cache_nr; i++) {
3849 struct cache_entry *ce = istate->cache[i];
3850 switch (ce_stage(ce)) {
3851 case 0:
3852 last_stage0 = ce;
3853 /* fallthru */
3854 default:
3855 continue;
3856 case 1:
3857 /*
3858 * If there is stage #0 entry for this, we do not
3859 * need to show it. We use CE_UPDATE bit to mark
3860 * such an entry.
3861 */
3862 if (last_stage0 &&
3863 !strcmp(last_stage0->name, ce->name))
3864 ce->ce_flags |= CE_UPDATE;
3865 }
3866 }
3867 }
3868
3869 struct update_callback_data {
3870 struct index_state *index;
3871 int include_sparse;
3872 int flags;
3873 int add_errors;
3874 };
3875
3876 static int fix_unmerged_status(struct diff_filepair *p,
3877 struct update_callback_data *data)
3878 {
3879 if (p->status != DIFF_STATUS_UNMERGED)
3880 return p->status;
3881 if (!(data->flags & ADD_CACHE_IGNORE_REMOVAL) && !p->two->mode)
3882 /*
3883 * This is not an explicit add request, and the
3884 * path is missing from the working tree (deleted)
3885 */
3886 return DIFF_STATUS_DELETED;
3887 else
3888 /*
3889 * Either an explicit add request, or path exists
3890 * in the working tree. An attempt to explicitly
3891 * add a path that does not exist in the working tree
3892 * will be caught as an error by the caller immediately.
3893 */
3894 return DIFF_STATUS_MODIFIED;
3895 }
3896
3897 static void update_callback(struct diff_queue_struct *q,
3898 struct diff_options *opt UNUSED, void *cbdata)
3899 {
3900 int i;
3901 struct update_callback_data *data = cbdata;
3902
3903 for (i = 0; i < q->nr; i++) {
3904 struct diff_filepair *p = q->queue[i];
3905 const char *path = p->one->path;
3906
3907 if (!data->include_sparse &&
3908 !path_in_sparse_checkout(path, data->index))
3909 continue;
3910
3911 switch (fix_unmerged_status(p, data)) {
3912 default:
3913 die(_("unexpected diff status %c"), p->status);
3914 case DIFF_STATUS_MODIFIED:
3915 case DIFF_STATUS_TYPE_CHANGED:
3916 if (add_file_to_index(data->index, path, data->flags)) {
3917 if (!(data->flags & ADD_CACHE_IGNORE_ERRORS))
3918 die(_("updating files failed"));
3919 data->add_errors++;
3920 }
3921 break;
3922 case DIFF_STATUS_DELETED:
3923 if (data->flags & ADD_CACHE_IGNORE_REMOVAL)
3924 break;
3925 if (!(data->flags & ADD_CACHE_PRETEND))
3926 remove_file_from_index(data->index, path);
3927 if (data->flags & (ADD_CACHE_PRETEND|ADD_CACHE_VERBOSE))
3928 printf(_("remove '%s'\n"), path);
3929 break;
3930 }
3931 }
3932 }
3933
3934 int add_files_to_cache(struct repository *repo, const char *prefix,
3935 const struct pathspec *pathspec, int include_sparse,
3936 int flags)
3937 {
3938 struct update_callback_data data;
3939 struct rev_info rev;
3940
3941 memset(&data, 0, sizeof(data));
3942 data.index = repo->index;
3943 data.include_sparse = include_sparse;
3944 data.flags = flags;
3945
3946 repo_init_revisions(repo, &rev, prefix);
3947 setup_revisions(0, NULL, &rev, NULL);
3948 if (pathspec)
3949 copy_pathspec(&rev.prune_data, pathspec);
3950 rev.diffopt.output_format = DIFF_FORMAT_CALLBACK;
3951 rev.diffopt.format_callback = update_callback;
3952 rev.diffopt.format_callback_data = &data;
3953 rev.diffopt.flags.override_submodule_config = 1;
3954 rev.max_count = 0; /* do not compare unmerged paths with stage #2 */
3955
3956 /*
3957 * Use an ODB transaction to optimize adding multiple objects.
3958 * This function is invoked from commands other than 'add', which
3959 * may not have their own transaction active.
3960 */
3961 begin_odb_transaction();
3962 run_diff_files(&rev, DIFF_RACY_IS_MODIFIED);
3963 end_odb_transaction();
3964
3965 release_revisions(&rev);
3966 return !!data.add_errors;
3967 }