qcow2: Make qiov match request size until backing file EOF
commit44deba5a52576508f27edadf953e435141e2a76a
authorKevin Wolf <kwolf@redhat.com>
Thu, 3 Jul 2014 12:43:32 +0000 (3 14:43 +0200)
committerKevin Wolf <kwolf@redhat.com>
Mon, 14 Jul 2014 10:03:20 +0000 (14 12:03 +0200)
treef5e5cb9b5360d0060b78a72dda44c0f40316097d
parent33f461e0c5d8efa21ef7e746be561fc57a1df106
qcow2: Make qiov match request size until backing file EOF

If a qcow2 image has a shorter backing file and a read request to
unallocated clusters goes across EOF of the backing file, the backing
file sees a shortened request and the rest is filled with zeros.
However, the original too long qiov was used with the shortened request.

This patch makes the qiov size match the request size, avoiding a
potential buffer overflow in raw-posix.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
block/qcow2.c