cryptospore / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone
9ae3a8
From 0dcf104966d3fc385510a6a2d8b8dd81d731da61 Mon Sep 17 00:00:00 2001
9ae3a8
From: Max Reitz <mreitz@redhat.com>
9ae3a8
Date: Mon, 27 Nov 2017 18:09:28 +0100
9ae3a8
Subject: [PATCH 9/9] qcow2: Avoid making the L1 table too big
9ae3a8
9ae3a8
RH-Author: Max Reitz <mreitz@redhat.com>
9ae3a8
Message-id: <20171127180928.10364-3-mreitz@redhat.com>
9ae3a8
Patchwork-id: 77918
9ae3a8
O-Subject: [RHEL-7.5 qemu-kvm PATCH 2/2] qcow2: Avoid making the L1 table too big
9ae3a8
Bugzilla: 1459725
9ae3a8
RH-Acked-by: John Snow <jsnow@redhat.com>
9ae3a8
RH-Acked-by: Fam Zheng <famz@redhat.com>
9ae3a8
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
9ae3a8
9ae3a8
We refuse to open images whose L1 table we deem "too big". Consequently,
9ae3a8
we should not produce such images ourselves.
9ae3a8
9ae3a8
Cc: qemu-stable@nongnu.org
9ae3a8
Signed-off-by: Max Reitz <mreitz@redhat.com>
9ae3a8
Message-id: 20160615153630.2116-3-mreitz@redhat.com
9ae3a8
Reviewed-by: Eric Blake <eblake@redhat.com>
9ae3a8
[mreitz: Added QEMU_BUILD_BUG_ON()]
9ae3a8
Signed-off-by: Max Reitz <mreitz@redhat.com>
9ae3a8
(cherry picked from commit 84c26520d3c1c9ff4a10455748139463278816d5)
9ae3a8
Signed-off-by: Max Reitz <mreitz@redhat.com>
9ae3a8
9ae3a8
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
---
9ae3a8
 block/qcow2-cluster.c | 3 ++-
9ae3a8
 1 file changed, 2 insertions(+), 1 deletion(-)
9ae3a8
9ae3a8
diff --git a/block/qcow2-cluster.c b/block/qcow2-cluster.c
9ae3a8
index f7938f6..589b040 100644
9ae3a8
--- a/block/qcow2-cluster.c
9ae3a8
+++ b/block/qcow2-cluster.c
9ae3a8
@@ -55,7 +55,8 @@ int qcow2_grow_l1_table(BlockDriverState *bs, uint64_t min_size,
9ae3a8
         }
9ae3a8
     }
9ae3a8
 
9ae3a8
-    if (new_l1_size > INT_MAX / sizeof(uint64_t)) {
9ae3a8
+    QEMU_BUILD_BUG_ON(QCOW_MAX_L1_SIZE > INT_MAX);
9ae3a8
+    if (new_l1_size > QCOW_MAX_L1_SIZE / sizeof(uint64_t)) {
9ae3a8
         return -EFBIG;
9ae3a8
     }
9ae3a8
 
9ae3a8
-- 
9ae3a8
1.8.3.1
9ae3a8