summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStefan Hajnoczi <stefanha@redhat.com>2012-10-24 14:34:12 +0200
committerStefan Hajnoczi <stefanha@redhat.com>2012-11-01 11:05:57 +0100
commit645c9496f7083c105ecd32f32532496af6aadf62 (patch)
tree06ccb22d23f9ba29ef073367d5fe926d7ef7e7c6
parentf0e3ac70341febed02591b61b579723279783053 (diff)
downloadfocaccia-qemu-645c9496f7083c105ecd32f32532496af6aadf62.tar.gz
focaccia-qemu-645c9496f7083c105ecd32f32532496af6aadf62.zip
net: Reject non-netdevs in qmp_netdev_del()
The netdev_del command crashes when given a -net device, because it
calls qemu_opts_del(NULL).

Check that this is a -netdev before attempting to delete it and the
QemuOpts.

Note the subtle change from qemu_find_opts_err("netdev", errp) to
qemu_find_opts_err("netdev", NULL).  Since "netdev" is a built in
options group and we don't check for NULL return anyway, there's no use
in passing errp here.

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
-rw-r--r--net.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/net.c b/net.c
index ae4bc0d431..e8ae13e283 100644
--- a/net.c
+++ b/net.c
@@ -827,6 +827,7 @@ exit_err:
 void qmp_netdev_del(const char *id, Error **errp)
 {
     NetClientState *nc;
+    QemuOpts *opts;
 
     nc = qemu_find_netdev(id);
     if (!nc) {
@@ -834,8 +835,14 @@ void qmp_netdev_del(const char *id, Error **errp)
         return;
     }
 
+    opts = qemu_opts_find(qemu_find_opts_err("netdev", NULL), id);
+    if (!opts) {
+        error_setg(errp, "Device '%s' is not a netdev", id);
+        return;
+    }
+
     qemu_del_net_client(nc);
-    qemu_opts_del(qemu_opts_find(qemu_find_opts_err("netdev", errp), id));
+    qemu_opts_del(opts);
 }
 
 void print_net_client(Monitor *mon, NetClientState *nc)