summaryrefslogtreecommitdiffstats
path: root/block.c
diff options
context:
space:
mode:
authorFam Zheng <famz@redhat.com>2015-05-15 16:36:05 +0800
committerKevin Wolf <kwolf@redhat.com>2015-05-22 17:08:01 +0200
commit4a9c9ea0d318bec2f67848c5ceaf4ad5bcb91d09 (patch)
tree9802cb9b558882a5df9c4de016c937d3047572f4 /block.c
parentb062ad86dcd33ab39be5060b0655d8e13834b167 (diff)
downloadhqemu-4a9c9ea0d318bec2f67848c5ceaf4ad5bcb91d09.zip
hqemu-4a9c9ea0d318bec2f67848c5ceaf4ad5bcb91d09.tar.gz
block: Detect multiplication overflow in bdrv_getlength
Bogus image may have a large total_sectors that will overflow the multiplication. For cleanness, fix the return code so the error message will be meaningful. Reported-by: Richard W.M. Jones <rjones@redhat.com> Signed-off-by: Fam Zheng <famz@redhat.com> Reviewed-by: Alberto Garcia <berto@igalia.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block.c')
-rw-r--r--block.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/block.c b/block.c
index 325f727..f42d70e 100644
--- a/block.c
+++ b/block.c
@@ -2341,6 +2341,7 @@ int64_t bdrv_getlength(BlockDriverState *bs)
{
int64_t ret = bdrv_nb_sectors(bs);
+ ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
}
OpenPOWER on IntegriCloud