[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-block] [PULL 4/4] vmdk: return ERROR when cluster sector is larger
From: |
Max Reitz |
Subject: |
[Qemu-block] [PULL 4/4] vmdk: return ERROR when cluster sector is larger than vmdk limitation |
Date: |
Mon, 26 Mar 2018 22:20:39 +0200 |
From: yuchenlin <address@hidden>
VMDK has a hard limitation of extent size, which is due to the size of grain
table entry is 32 bits. It means it can only point to a grain located at
offset = 2^32. To avoid writing the user data beyond limitation and record a
useless offset
in grain table. We should return ERROR here.
Signed-off-by: yuchenlin <address@hidden>
Message-id: address@hidden
Reviewed-by: Fam Zheng <address@hidden>
Signed-off-by: Max Reitz <address@hidden>
---
block/vmdk.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/block/vmdk.c b/block/vmdk.c
index f94c49a9c0..84f8bbe480 100644
--- a/block/vmdk.c
+++ b/block/vmdk.c
@@ -47,6 +47,8 @@
#define VMDK4_FLAG_MARKER (1 << 17)
#define VMDK4_GD_AT_END 0xffffffffffffffffULL
+#define VMDK_EXTENT_MAX_SECTORS (1ULL << 32)
+
#define VMDK_GTE_ZEROED 0x1
/* VMDK internal error codes */
@@ -1250,6 +1252,10 @@ static int get_cluster_offset(BlockDriverState *bs,
return zeroed ? VMDK_ZEROED : VMDK_UNALLOC;
}
+ if (extent->next_cluster_sector >= VMDK_EXTENT_MAX_SECTORS) {
+ return VMDK_ERROR;
+ }
+
cluster_sector = extent->next_cluster_sector;
extent->next_cluster_sector += extent->cluster_sectors;
--
2.14.3
- [Qemu-block] [PULL 0/4] Block patches for 2.12.0-rc1, Max Reitz, 2018/03/26
- [Qemu-block] [PULL 2/4] qcow2: fix bitmaps loading when bitmaps already exist, Max Reitz, 2018/03/26
- [Qemu-block] [PULL 1/4] qcow2-bitmap: add qcow2_reopen_bitmaps_rw_hint(), Max Reitz, 2018/03/26
- [Qemu-block] [PULL 3/4] iotests: enable shared migration cases in 169, Max Reitz, 2018/03/26
- [Qemu-block] [PULL 4/4] vmdk: return ERROR when cluster sector is larger than vmdk limitation,
Max Reitz <=
- Re: [Qemu-block] [PULL 0/4] Block patches for 2.12.0-rc1, Peter Maydell, 2018/03/27
- Re: [Qemu-block] [Qemu-devel] [PULL 0/4] Block patches for 2.12.0-rc1, no-reply, 2018/03/31