summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Wolf <kwolf@redhat.com>2009-05-08 14:47:24 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-05-08 16:02:18 -0500
commitfbb7b4e0804d2168f24142eebf7552adde1968dc (patch)
treec1e950cc917f6c9439a22846d6fc8aca083ae4fd /block.c
parentRemove noisy printf when KVM masks CPU features (diff)
downloadqemu-kvm-fbb7b4e0804d2168f24142eebf7552adde1968dc.tar.gz
qemu-kvm-fbb7b4e0804d2168f24142eebf7552adde1968dc.tar.bz2
qemu-kvm-fbb7b4e0804d2168f24142eebf7552adde1968dc.zip
Improve block range checks
This patch makes the range checks for block requests more strict: It fixes a potential integer overflow and checks for negative offsets. Also, it adds the check for compressed writes. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'block.c')
-rw-r--r--block.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/block.c b/block.c
index 3d1223d5e..acb897678 100644
--- a/block.c
+++ b/block.c
@@ -578,7 +578,10 @@ static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
len = bdrv_getlength(bs);
- if ((offset + size) > len)
+ if (offset < 0)
+ return -EIO;
+
+ if ((offset > len) || (len - offset < size))
return -EIO;
return 0;
@@ -1150,6 +1153,8 @@ int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
return -ENOMEDIUM;
if (!drv->bdrv_write_compressed)
return -ENOTSUP;
+ if (bdrv_check_request(bs, sector_num, nb_sectors))
+ return -EIO;
return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
}