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