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