|
|
0a122b |
From 0f9e33b29b76a647c903753a0758b9c85e75d73a Mon Sep 17 00:00:00 2001
|
|
|
0a122b |
From: Kevin Wolf <kwolf@redhat.com>
|
|
|
0a122b |
Date: Tue, 25 Mar 2014 14:23:29 +0100
|
|
|
0a122b |
Subject: [PATCH 22/49] qcow2: Check refcount table size (CVE-2014-0144)
|
|
|
0a122b |
|
|
|
0a122b |
RH-Author: Kevin Wolf <kwolf@redhat.com>
|
|
|
0a122b |
Message-id: <1395753835-7591-23-git-send-email-kwolf@redhat.com>
|
|
|
0a122b |
Patchwork-id: n/a
|
|
|
0a122b |
O-Subject: [virt-devel] [EMBARGOED RHEL-7.0 qemu-kvm PATCH 22/48] qcow2: Check refcount table size (CVE-2014-0144)
|
|
|
0a122b |
Bugzilla: 1079455
|
|
|
0a122b |
RH-Acked-by: Jeff Cody <jcody@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
0a122b |
|
|
|
0a122b |
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1079455
|
|
|
0a122b |
Upstream status: Embargoed
|
|
|
0a122b |
|
|
|
0a122b |
Limit the in-memory reference count table size to 8 MB, it's enough in
|
|
|
0a122b |
practice. This fixes an unbounded allocation as well as a buffer
|
|
|
0a122b |
overflow in qcow2_refcount_init().
|
|
|
0a122b |
|
|
|
0a122b |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
0a122b |
---
|
|
|
0a122b |
block/qcow2-refcount.c | 4 +++-
|
|
|
0a122b |
block/qcow2.c | 9 +++++++++
|
|
|
0a122b |
tests/qemu-iotests/080 | 10 ++++++++++
|
|
|
0a122b |
tests/qemu-iotests/080.out | 7 +++++++
|
|
|
0a122b |
4 files changed, 29 insertions(+), 1 deletions(-)
|
|
|
0a122b |
|
|
|
0a122b |
diff --git a/block/qcow2-refcount.c b/block/qcow2-refcount.c
|
|
|
0a122b |
index 09c638f..13ea5f7 100644
|
|
|
0a122b |
--- a/block/qcow2-refcount.c
|
|
|
0a122b |
+++ b/block/qcow2-refcount.c
|
|
|
0a122b |
@@ -40,8 +40,10 @@ static int QEMU_WARN_UNUSED_RESULT update_refcount(BlockDriverState *bs,
|
|
|
0a122b |
int qcow2_refcount_init(BlockDriverState *bs)
|
|
|
0a122b |
{
|
|
|
0a122b |
BDRVQcowState *s = bs->opaque;
|
|
|
0a122b |
- int ret, refcount_table_size2, i;
|
|
|
0a122b |
+ unsigned int refcount_table_size2, i;
|
|
|
0a122b |
+ int ret;
|
|
|
0a122b |
|
|
|
0a122b |
+ assert(s->refcount_table_size <= INT_MAX / sizeof(uint64_t));
|
|
|
0a122b |
refcount_table_size2 = s->refcount_table_size * sizeof(uint64_t);
|
|
|
0a122b |
s->refcount_table = g_malloc(refcount_table_size2);
|
|
|
0a122b |
if (s->refcount_table_size > 0) {
|
|
|
0a122b |
diff --git a/block/qcow2.c b/block/qcow2.c
|
|
|
0a122b |
index 5568cf9..a7780ac 100644
|
|
|
0a122b |
--- a/block/qcow2.c
|
|
|
0a122b |
+++ b/block/qcow2.c
|
|
|
0a122b |
@@ -576,10 +576,19 @@ static int qcow2_open(BlockDriverState *bs, QDict *options, int flags,
|
|
|
0a122b |
s->csize_shift = (62 - (s->cluster_bits - 8));
|
|
|
0a122b |
s->csize_mask = (1 << (s->cluster_bits - 8)) - 1;
|
|
|
0a122b |
s->cluster_offset_mask = (1LL << s->csize_shift) - 1;
|
|
|
0a122b |
+
|
|
|
0a122b |
s->refcount_table_offset = header.refcount_table_offset;
|
|
|
0a122b |
s->refcount_table_size =
|
|
|
0a122b |
header.refcount_table_clusters << (s->cluster_bits - 3);
|
|
|
0a122b |
|
|
|
0a122b |
+ if (header.refcount_table_clusters > (0x800000 >> s->cluster_bits)) {
|
|
|
0a122b |
+ /* 8 MB refcount table is enough for 2 PB images at 64k cluster size
|
|
|
0a122b |
+ * (128 GB for 512 byte clusters, 2 EB for 2 MB clusters) */
|
|
|
0a122b |
+ error_setg(errp, "Reference count table too large");
|
|
|
0a122b |
+ ret = -EINVAL;
|
|
|
0a122b |
+ goto fail;
|
|
|
0a122b |
+ }
|
|
|
0a122b |
+
|
|
|
0a122b |
s->snapshots_offset = header.snapshots_offset;
|
|
|
0a122b |
s->nb_snapshots = header.nb_snapshots;
|
|
|
0a122b |
|
|
|
0a122b |
diff --git a/tests/qemu-iotests/080 b/tests/qemu-iotests/080
|
|
|
0a122b |
index 6d588dd..6179e05 100755
|
|
|
0a122b |
--- a/tests/qemu-iotests/080
|
|
|
0a122b |
+++ b/tests/qemu-iotests/080
|
|
|
0a122b |
@@ -45,6 +45,7 @@ _supported_os Linux
|
|
|
0a122b |
header_size=104
|
|
|
0a122b |
|
|
|
0a122b |
offset_backing_file_offset=8
|
|
|
0a122b |
+offset_refcount_table_clusters=56
|
|
|
0a122b |
offset_header_size=100
|
|
|
0a122b |
offset_ext_magic=$header_size
|
|
|
0a122b |
offset_ext_size=$((header_size + 4))
|
|
|
0a122b |
@@ -67,6 +68,15 @@ poke_file "$TEST_IMG" "$offset_ext_size" "\x7f\xff\xff\xff"
|
|
|
0a122b |
poke_file "$TEST_IMG" "$offset_backing_file_offset" "\x00\x00\x00\x00\x00\x00\x00\x00"
|
|
|
0a122b |
{ $QEMU_IO -c "read 0 512" $TEST_IMG; } 2>&1 | _filter_qemu_io | _filter_testdir
|
|
|
0a122b |
|
|
|
0a122b |
+echo
|
|
|
0a122b |
+echo "== Huge refcount table size =="
|
|
|
0a122b |
+_make_test_img 64M
|
|
|
0a122b |
+poke_file "$TEST_IMG" "$offset_refcount_table_clusters" "\xff\xff\xff\xff"
|
|
|
0a122b |
+{ $QEMU_IO -c "read 0 512" $TEST_IMG; } 2>&1 | _filter_qemu_io | _filter_testdir
|
|
|
0a122b |
+poke_file "$TEST_IMG" "$offset_refcount_table_clusters" "\x00\x02\x00\x01"
|
|
|
0a122b |
+{ $QEMU_IO -c "read 0 512" $TEST_IMG; } 2>&1 | _filter_qemu_io | _filter_testdir
|
|
|
0a122b |
+
|
|
|
0a122b |
+
|
|
|
0a122b |
# success, all done
|
|
|
0a122b |
echo "*** done"
|
|
|
0a122b |
rm -f $seq.full
|
|
|
0a122b |
diff --git a/tests/qemu-iotests/080.out b/tests/qemu-iotests/080.out
|
|
|
0a122b |
index 48c40aa..6fef6d9 100644
|
|
|
0a122b |
--- a/tests/qemu-iotests/080.out
|
|
|
0a122b |
+++ b/tests/qemu-iotests/080.out
|
|
|
0a122b |
@@ -13,4 +13,11 @@ qemu-io: can't open device TEST_DIR/t.qcow2: Invalid backing file offset
|
|
|
0a122b |
no file open, try 'help open'
|
|
|
0a122b |
qemu-io: can't open device TEST_DIR/t.qcow2: Header extension too large
|
|
|
0a122b |
no file open, try 'help open'
|
|
|
0a122b |
+
|
|
|
0a122b |
+== Huge refcount table size ==
|
|
|
0a122b |
+Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
|
|
|
0a122b |
+qemu-io: can't open device TEST_DIR/t.qcow2: Reference count table too large
|
|
|
0a122b |
+no file open, try 'help open'
|
|
|
0a122b |
+qemu-io: can't open device TEST_DIR/t.qcow2: Reference count table too large
|
|
|
0a122b |
+no file open, try 'help open'
|
|
|
0a122b |
*** done
|
|
|
0a122b |
--
|
|
|
0a122b |
1.7.1
|
|
|
0a122b |
|