block/vhdx: check for offset overflow to bdrv_truncate()
authorJeff Cody <jcody@redhat.com>
Mon, 7 Aug 2017 12:38:20 +0000 (08:38 -0400)
committerKevin Wolf <kwolf@redhat.com>
Tue, 8 Aug 2017 12:37:00 +0000 (14:37 +0200)
commit27539ac53154cf9da6990ce9bec1064d37cf2b1d
tree2af317fda58a7b406f29c35d4032dd436f51d8bb
parent3f910692c287e1c611c00e763ebeb95ed0e017f8
block/vhdx: check for offset overflow to bdrv_truncate()

VHDX uses uint64_t types for most offsets, following the VHDX spec.
However, bdrv_truncate() takes an int64_t value for the truncating
offset.  Check for overflow before calling bdrv_truncate().

While we are here, replace the bit shifting with QEMU_ALIGN_UP as well.

N.B.: For a compliant image this is not an issue, as the maximum VHDX
image size is defined per the spec to be 64TB.

Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Jeff Cody <jcody@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
block/vhdx-log.c
block/vhdx.c