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