[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-block] [PATCH for-2.12 v2 07/12] parallels: Check maximum cluster
From: |
Kevin Wolf |
Subject: |
[Qemu-block] [PATCH for-2.12 v2 07/12] parallels: Check maximum cluster size on create |
Date: |
Wed, 21 Mar 2018 18:37:09 +0100 |
It's unclear what the real maximum cluster size is for the Parallels
format, but let's at least make sure that we don't get integer
overflows in our .bdrv_co_create implementation.
Signed-off-by: Kevin Wolf <address@hidden>
Reviewed-by: Eric Blake <address@hidden>
---
block/parallels.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/block/parallels.c b/block/parallels.c
index 2da5e56a9d..5cf16a3b3c 100644
--- a/block/parallels.c
+++ b/block/parallels.c
@@ -526,6 +526,11 @@ static int coroutine_fn
parallels_co_create(BlockdevCreateOptions* opts,
cl_size = DEFAULT_CLUSTER_SIZE;
}
+ /* XXX What is the real limit here? This is an insanely large maximum. */
+ if (cl_size >= INT64_MAX / MAX_PARALLELS_IMAGE_FACTOR) {
+ error_setg(errp, "Cluster size is too large");
+ return -EINVAL;
+ }
if (total_size >= MAX_PARALLELS_IMAGE_FACTOR * cl_size) {
error_setg(errp, "Image size is too large for this cluster size");
return -E2BIG;
--
2.13.6
- [Qemu-block] [PATCH for-2.12 v2 00/12] block: Follow-up for .bdrv_co_create (part 1), Kevin Wolf, 2018/03/21
- [Qemu-block] [PATCH for-2.12 v2 02/12] vdi: Fix build with CONFIG_VDI_DEBUG, Kevin Wolf, 2018/03/21
- [Qemu-block] [PATCH for-2.12 v2 01/12] vdi: Change 'static' create option to 'preallocation' in QMP, Kevin Wolf, 2018/03/21
- [Qemu-block] [PATCH for-2.12 v2 03/12] qemu-iotests: Test vdi image creation with QMP, Kevin Wolf, 2018/03/21
- [Qemu-block] [PATCH for-2.12 v2 05/12] luks: Turn another invalid assertion into check, Kevin Wolf, 2018/03/21
- [Qemu-block] [PATCH for-2.12 v2 04/12] qemu-iotests: Enable 025 for luks, Kevin Wolf, 2018/03/21
- [Qemu-block] [PATCH for-2.12 v2 06/12] qemu-iotests: Test invalid resize on luks, Kevin Wolf, 2018/03/21
- [Qemu-block] [PATCH for-2.12 v2 07/12] parallels: Check maximum cluster size on create,
Kevin Wolf <=
- [Qemu-block] [PATCH for-2.12 v2 09/12] vhdx: Require power-of-two block size on create, Kevin Wolf, 2018/03/21
- [Qemu-block] [PATCH for-2.12 v2 10/12] vhdx: Don't use error_setg_errno() with constant errno, Kevin Wolf, 2018/03/21
- [Qemu-block] [PATCH for-2.12 v2 08/12] qemu-iotests: Test parallels image creation with QMP, Kevin Wolf, 2018/03/21
- [Qemu-block] [PATCH for-2.12 v2 11/12] vhdx: Check for 4 GB maximum log size on creation, Kevin Wolf, 2018/03/21
- [Qemu-block] [PATCH for-2.12 v2 12/12] qemu-iotests: Test vhdx image creation with QMP, Kevin Wolf, 2018/03/21
- Re: [Qemu-block] [PATCH for-2.12 v2 00/12] block: Follow-up for .bdrv_co_create (part 1), Kevin Wolf, 2018/03/26