]> git.proxmox.com Git - mirror_qemu.git/commit - qemu-img.c
block: Validate node-name
authorKevin Wolf <kwolf@redhat.com>
Thu, 25 Sep 2014 07:54:02 +0000 (09:54 +0200)
committerKevin Wolf <kwolf@redhat.com>
Thu, 25 Sep 2014 13:24:32 +0000 (15:24 +0200)
commit9aebf3b89281a173d2dfeee379b800be5e3f363e
tree0e1ae715f5268dc2b4592c10ad521285a0cead26
parenta4127c428e61317b2966ec7fe480c3c6fb2d08df
block: Validate node-name

The device_name of a BlockDriverState is currently checked because it is
always used as a QemuOpts ID and qemu_opts_create() checks whether such
IDs are wellformed.

node-name is supposed to share the same namespace, but it isn't checked
currently. This patch adds explicit checks both for device_name and
node-name so that the same rules will still apply even if QemuOpts won't
be used any more at some point.

qemu-img used to use names with spaces in them, which isn't allowed any
more. Replace them with underscores.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
block.c
include/qemu/option.h
qemu-img.c
util/qemu-option.c