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