multi-pack-index: verify bad header
When verifying if a multi-pack-index file is valid, we want the command to fail to signal an invalid file. Previously, we wrote an error to stderr and continued as if we had no multi-pack-index. Now, die() instead of error(). Add tests that check corrupted headers in a few ways: * Bad signature * Bad file version * Bad hash version * Truncated hash count * Extended hash count Signed-off-by: Derrick Stolee <dstolee@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
parent
56ee7ff156
commit
53ad040744
18
midx.c
18
midx.c
|
@ -76,24 +76,18 @@ struct multi_pack_index *load_multi_pack_index(const char *object_dir, int local
|
||||||
m->local = local;
|
m->local = local;
|
||||||
|
|
||||||
m->signature = get_be32(m->data);
|
m->signature = get_be32(m->data);
|
||||||
if (m->signature != MIDX_SIGNATURE) {
|
if (m->signature != MIDX_SIGNATURE)
|
||||||
error(_("multi-pack-index signature 0x%08x does not match signature 0x%08x"),
|
die(_("multi-pack-index signature 0x%08x does not match signature 0x%08x"),
|
||||||
m->signature, MIDX_SIGNATURE);
|
m->signature, MIDX_SIGNATURE);
|
||||||
goto cleanup_fail;
|
|
||||||
}
|
|
||||||
|
|
||||||
m->version = m->data[MIDX_BYTE_FILE_VERSION];
|
m->version = m->data[MIDX_BYTE_FILE_VERSION];
|
||||||
if (m->version != MIDX_VERSION) {
|
if (m->version != MIDX_VERSION)
|
||||||
error(_("multi-pack-index version %d not recognized"),
|
die(_("multi-pack-index version %d not recognized"),
|
||||||
m->version);
|
m->version);
|
||||||
goto cleanup_fail;
|
|
||||||
}
|
|
||||||
|
|
||||||
hash_version = m->data[MIDX_BYTE_HASH_VERSION];
|
hash_version = m->data[MIDX_BYTE_HASH_VERSION];
|
||||||
if (hash_version != MIDX_HASH_VERSION) {
|
if (hash_version != MIDX_HASH_VERSION)
|
||||||
error(_("hash version %u does not match"), hash_version);
|
die(_("hash version %u does not match"), hash_version);
|
||||||
goto cleanup_fail;
|
|
||||||
}
|
|
||||||
m->hash_len = MIDX_HASH_LEN;
|
m->hash_len = MIDX_HASH_LEN;
|
||||||
|
|
||||||
m->num_chunks = m->data[MIDX_BYTE_NUM_CHUNKS];
|
m->num_chunks = m->data[MIDX_BYTE_NUM_CHUNKS];
|
||||||
|
|
|
@ -154,6 +154,51 @@ test_expect_success 'verify multi-pack-index success' '
|
||||||
git multi-pack-index verify --object-dir=$objdir
|
git multi-pack-index verify --object-dir=$objdir
|
||||||
'
|
'
|
||||||
|
|
||||||
|
# usage: corrupt_midx_and_verify <pos> <data> <objdir> <string>
|
||||||
|
corrupt_midx_and_verify() {
|
||||||
|
POS=$1 &&
|
||||||
|
DATA="${2:-\0}" &&
|
||||||
|
OBJDIR=$3 &&
|
||||||
|
GREPSTR="$4" &&
|
||||||
|
FILE=$OBJDIR/pack/multi-pack-index &&
|
||||||
|
chmod a+w $FILE &&
|
||||||
|
test_when_finished mv midx-backup $FILE &&
|
||||||
|
cp $FILE midx-backup &&
|
||||||
|
printf "$DATA" | dd of="$FILE" bs=1 seek="$POS" conv=notrunc &&
|
||||||
|
test_must_fail git multi-pack-index verify --object-dir=$OBJDIR 2>test_err &&
|
||||||
|
grep -v "^+" test_err >err &&
|
||||||
|
test_i18ngrep "$GREPSTR" err
|
||||||
|
}
|
||||||
|
|
||||||
|
test_expect_success 'verify bad signature' '
|
||||||
|
corrupt_midx_and_verify 0 "\00" $objdir \
|
||||||
|
"multi-pack-index signature"
|
||||||
|
'
|
||||||
|
|
||||||
|
MIDX_BYTE_VERSION=4
|
||||||
|
MIDX_BYTE_OID_VERSION=5
|
||||||
|
MIDX_BYTE_CHUNK_COUNT=6
|
||||||
|
|
||||||
|
test_expect_success 'verify bad version' '
|
||||||
|
corrupt_midx_and_verify $MIDX_BYTE_VERSION "\00" $objdir \
|
||||||
|
"multi-pack-index version"
|
||||||
|
'
|
||||||
|
|
||||||
|
test_expect_success 'verify bad OID version' '
|
||||||
|
corrupt_midx_and_verify $MIDX_BYTE_OID_VERSION "\02" $objdir \
|
||||||
|
"hash version"
|
||||||
|
'
|
||||||
|
|
||||||
|
test_expect_success 'verify truncated chunk count' '
|
||||||
|
corrupt_midx_and_verify $MIDX_BYTE_CHUNK_COUNT "\01" $objdir \
|
||||||
|
"missing required"
|
||||||
|
'
|
||||||
|
|
||||||
|
test_expect_success 'verify extended chunk count' '
|
||||||
|
corrupt_midx_and_verify $MIDX_BYTE_CHUNK_COUNT "\07" $objdir \
|
||||||
|
"terminating multi-pack-index chunk id appears earlier than expected"
|
||||||
|
'
|
||||||
|
|
||||||
test_expect_success 'repack removes multi-pack-index' '
|
test_expect_success 'repack removes multi-pack-index' '
|
||||||
test_path_is_file $objdir/pack/multi-pack-index &&
|
test_path_is_file $objdir/pack/multi-pack-index &&
|
||||||
git repack -adf &&
|
git repack -adf &&
|
||||||
|
@ -191,7 +236,6 @@ test_expect_success 'multi-pack-index in an alternate' '
|
||||||
|
|
||||||
compare_results_with_midx "with alternate (remote midx)"
|
compare_results_with_midx "with alternate (remote midx)"
|
||||||
|
|
||||||
|
|
||||||
# usage: corrupt_data <file> <pos> [<data>]
|
# usage: corrupt_data <file> <pos> [<data>]
|
||||||
corrupt_data () {
|
corrupt_data () {
|
||||||
file=$1
|
file=$1
|
||||||
|
|
Loading…
Reference in New Issue