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