diff options
author | Kevin Wolf <kwolf@redhat.com> | 2013-03-20 19:23:23 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2013-03-22 17:51:32 +0100 |
commit | 681e7ad024d80123a1ae8e35f86fb1a7f03b1bc9 (patch) | |
tree | 6146eae415de0b2a5db284f7382ce862f00ada0b /block | |
parent | bebbf7fa9c6235022ecd15f8f934d27e5ccab63a (diff) | |
download | qemu-681e7ad024d80123a1ae8e35f86fb1a7f03b1bc9.tar.gz qemu-681e7ad024d80123a1ae8e35f86fb1a7f03b1bc9.tar.bz2 qemu-681e7ad024d80123a1ae8e35f86fb1a7f03b1bc9.zip |
nbd: Check against invalid option combinations
A file name may only specified if no host or socket path is specified.
The latter two may not appear at the same time either.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'block')
-rw-r--r-- | block/nbd.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/block/nbd.c b/block/nbd.c index 67f1df298b..3d711b2735 100644 --- a/block/nbd.c +++ b/block/nbd.c @@ -148,6 +148,15 @@ static void nbd_parse_filename(const char *filename, QDict *options, const char *host_spec; const char *unixpath; + if (qdict_haskey(options, "host") + || qdict_haskey(options, "port") + || qdict_haskey(options, "path")) + { + error_setg(errp, "host/port/path and a file name may not be specified " + "at the same time"); + return; + } + if (strstr(filename, "://")) { int ret = nbd_parse_uri(filename, options); if (ret < 0) { @@ -204,6 +213,11 @@ static int nbd_config(BDRVNBDState *s, QDict *options) Error *local_err = NULL; if (qdict_haskey(options, "path")) { + if (qdict_haskey(options, "host")) { + qerror_report(ERROR_CLASS_GENERIC_ERROR, "path and host may not " + "be used at the same time."); + return -EINVAL; + } s->is_unix = true; } else if (qdict_haskey(options, "host")) { s->is_unix = false; |