summaryrefslogtreecommitdiff
path: root/split-index.c
diff options
context:
space:
mode:
authorSZEDER Gábor <szeder.dev@gmail.com>2018-10-11 09:53:57 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-10-11 22:23:29 (GMT)
commit4c490f3d321da415b8d3bec4a04565906657b9c9 (patch)
tree7edae412d7a71f336293e5cdee3c13d9c6be28b3 /split-index.c
parent5581a019ba0a53ea2b69d477d395590f7aba257c (diff)
downloadgit-4c490f3d321da415b8d3bec4a04565906657b9c9.zip
git-4c490f3d321da415b8d3bec4a04565906657b9c9.tar.gz
git-4c490f3d321da415b8d3bec4a04565906657b9c9.tar.bz2
split-index: BUG() when cache entry refers to non-existing shared entry
When the split index feature is in use, then a cache entry is: - either only present in the split index, in which case its 'index' field must be 0, - or it should refer to an existing entry in the shared index, i.e. the 'index' field can't be greater than the size of the shared index. If a cache entry were to refer to a non-existing entry in the shared index, then that's a sign of something being wrong in the index state, either as a result of a bug in dealing with the split/shared index entries, or perhaps a (potentially unrelated) memory corruption issue. prepare_to_write_split_index() already has a condition to catch cache entries with such bogus 'index' field, but instead of calling BUG() it just sets cache entry's 'index = 0', and the entry will then be written to the new split index. Don't write a new index file from bogus index state, and call BUG() upon encountering an cache entry referring to a non-existing shared index entry. Running the test suite repeatedly with 'GIT_TEST_SPLIT_INDEX=yes' doesn't trigger this condition. Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'split-index.c')
-rw-r--r--split-index.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/split-index.c b/split-index.c
index 875f538..5820412 100644
--- a/split-index.c
+++ b/split-index.c
@@ -254,8 +254,8 @@ void prepare_to_write_split_index(struct index_state *istate)
continue;
}
if (ce->index > si->base->cache_nr) {
- ce->index = 0;
- continue;
+ BUG("ce refers to a shared ce at %d, which is beyond the shared index size %d",
+ ce->index, si->base->cache_nr);
}
ce->ce_flags |= CE_MATCHED; /* or "shared" */
base = si->base->cache[ce->index - 1];