]> git.proxmox.com Git - qemu.git/commit
block/drive-mirror: Check for NULL backing_hd
authorMax Reitz <mreitz@redhat.com>
Wed, 6 Nov 2013 18:50:44 +0000 (19:50 +0100)
committerKevin Wolf <kwolf@redhat.com>
Thu, 14 Nov 2013 12:09:06 +0000 (13:09 +0100)
commit1452686495922b81d6cf43edf025c1aef15965c0
tree46183b6590029d2c370bf1b1f80ec03de2363f9f
parent1296c2f0bc8283164c925bf587e497511de7f569
block/drive-mirror: Check for NULL backing_hd

It should be possible to execute the QMP "drive-mirror" command in
"none" sync mode and "absolute-paths" mode even for block devices
lacking a backing file.

"absolute-paths" does in fact not require a backing file to be present,
as can be seen from the "top" sync mode code path. "top" basically
states that the device should indeed have a backing file - however, the
current code catches the case if it doesn't and then simply treats it as
"full" sync mode, creating a target image without a backing file (in
"absolute-paths" mode). Thus, "absolute-paths" does not imply the target
file must indeed have a backing file.

Therefore, the target file may be left unbacked in case of "none" sync
mode as well, if the specified device is not backed either. Currently,
qemu will crash trying to dereference the backing file pointer since it
assumes that it will always be non-NULL in that case ("none" with
"absolute-paths").

Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
blockdev.c