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