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