|
|
0a122b |
From 4ce3cdbea5f0006ec857767f2dc74a02fffd0cb5 Mon Sep 17 00:00:00 2001
|
|
|
0a122b |
From: Kevin Wolf <kwolf@redhat.com>
|
|
|
0a122b |
Date: Tue, 25 Mar 2014 14:23:50 +0100
|
|
|
0a122b |
Subject: [PATCH 43/49] qcow2: Fix NULL dereference in qcow2_open() error path (CVE-2014-0146)
|
|
|
0a122b |
|
|
|
0a122b |
RH-Author: Kevin Wolf <kwolf@redhat.com>
|
|
|
0a122b |
Message-id: <1395753835-7591-44-git-send-email-kwolf@redhat.com>
|
|
|
0a122b |
Patchwork-id: n/a
|
|
|
0a122b |
O-Subject: [virt-devel] [EMBARGOED RHEL-7.0 qemu-kvm PATCH 43/48] qcow2: Fix NULL dereference in qcow2_open() error path (CVE-2014-0146)
|
|
|
0a122b |
Bugzilla: 1079333
|
|
|
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=1079333
|
|
|
0a122b |
Upstream status: Embargoed
|
|
|
0a122b |
|
|
|
0a122b |
The qcow2 code assumes that s->snapshots is non-NULL if s->nb_snapshots
|
|
|
0a122b |
!= 0. By having the initialisation of both fields separated in
|
|
|
0a122b |
qcow2_open(), any error occuring in between would cause the error path
|
|
|
0a122b |
to dereference NULL in qcow2_free_snapshots() if the image had any
|
|
|
0a122b |
snapshots.
|
|
|
0a122b |
|
|
|
0a122b |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
0a122b |
---
|
|
|
0a122b |
block/qcow2.c | 7 ++++---
|
|
|
0a122b |
tests/qemu-iotests/080 | 7 +++++++
|
|
|
0a122b |
tests/qemu-iotests/080.out | 4 ++++
|
|
|
0a122b |
3 files changed, 15 insertions(+), 3 deletions(-)
|
|
|
0a122b |
|
|
|
0a122b |
diff --git a/block/qcow2.c b/block/qcow2.c
|
|
|
0a122b |
index db9f667..33b46b8 100644
|
|
|
0a122b |
--- a/block/qcow2.c
|
|
|
0a122b |
+++ b/block/qcow2.c
|
|
|
0a122b |
@@ -636,9 +636,6 @@ static int qcow2_open(BlockDriverState *bs, QDict *options, int flags,
|
|
|
0a122b |
goto fail;
|
|
|
0a122b |
}
|
|
|
0a122b |
|
|
|
0a122b |
- s->snapshots_offset = header.snapshots_offset;
|
|
|
0a122b |
- s->nb_snapshots = header.nb_snapshots;
|
|
|
0a122b |
-
|
|
|
0a122b |
/* read the level 1 table */
|
|
|
0a122b |
if (header.l1_size > 0x2000000) {
|
|
|
0a122b |
/* 32 MB L1 table is enough for 2 PB images at 64k cluster size
|
|
|
0a122b |
@@ -733,6 +730,10 @@ static int qcow2_open(BlockDriverState *bs, QDict *options, int flags,
|
|
|
0a122b |
bs->backing_file[len] = '\0';
|
|
|
0a122b |
}
|
|
|
0a122b |
|
|
|
0a122b |
+ /* Internal snapshots */
|
|
|
0a122b |
+ s->snapshots_offset = header.snapshots_offset;
|
|
|
0a122b |
+ s->nb_snapshots = header.nb_snapshots;
|
|
|
0a122b |
+
|
|
|
0a122b |
ret = qcow2_read_snapshots(bs);
|
|
|
0a122b |
if (ret < 0) {
|
|
|
0a122b |
error_setg_errno(errp, -ret, "Could not read snapshots");
|
|
|
0a122b |
diff --git a/tests/qemu-iotests/080 b/tests/qemu-iotests/080
|
|
|
0a122b |
index 56f8903..59e7a44 100755
|
|
|
0a122b |
--- a/tests/qemu-iotests/080
|
|
|
0a122b |
+++ b/tests/qemu-iotests/080
|
|
|
0a122b |
@@ -139,6 +139,13 @@ poke_file "$TEST_IMG" "$offset_l1_size" "\x00\x00\x00\x01"
|
|
|
0a122b |
{ $QEMU_IO -c "read 0 512" $TEST_IMG; } 2>&1 | _filter_qemu_io | _filter_testdir
|
|
|
0a122b |
|
|
|
0a122b |
echo
|
|
|
0a122b |
+echo "== Invalid L1 table (with internal snapshot in the image) =="
|
|
|
0a122b |
+_make_test_img 64M
|
|
|
0a122b |
+{ $QEMU_IMG snapshot -c foo $TEST_IMG; } 2>&1 | _filter_qemu_io | _filter_testdir
|
|
|
0a122b |
+poke_file "$TEST_IMG" "$offset_l1_size" "\x00\x00\x00\x00"
|
|
|
0a122b |
+_img_info
|
|
|
0a122b |
+
|
|
|
0a122b |
+echo
|
|
|
0a122b |
echo "== Invalid backing file size =="
|
|
|
0a122b |
_make_test_img 64M
|
|
|
0a122b |
poke_file "$TEST_IMG" "$offset_backing_file_offset" "\x00\x00\x00\x00\x00\x00\x10\x00"
|
|
|
0a122b |
diff --git a/tests/qemu-iotests/080.out b/tests/qemu-iotests/080.out
|
|
|
0a122b |
index 303d6c3..4d84fbf 100644
|
|
|
0a122b |
--- a/tests/qemu-iotests/080.out
|
|
|
0a122b |
+++ b/tests/qemu-iotests/080.out
|
|
|
0a122b |
@@ -59,6 +59,10 @@ no file open, try 'help open'
|
|
|
0a122b |
qemu-io: can't open device TEST_DIR/t.qcow2: Invalid L1 table offset
|
|
|
0a122b |
no file open, try 'help open'
|
|
|
0a122b |
|
|
|
0a122b |
+== Invalid L1 table (with internal snapshot in the image) ==
|
|
|
0a122b |
+Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
|
|
|
0a122b |
+qemu-img: Could not open 'TEST_DIR/t.IMGFMT': L1 table is too small
|
|
|
0a122b |
+
|
|
|
0a122b |
== Invalid backing file size ==
|
|
|
0a122b |
Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
|
|
|
0a122b |
qemu-io: can't open device TEST_DIR/t.qcow2: Backing file name too long
|
|
|
0a122b |
--
|
|
|
0a122b |
1.7.1
|
|
|
0a122b |
|