]> Git Repo - qemu.git/commitdiff
vhost-user: verify that number of queues is less than MAX_QUEUE_NUM
authorIlya Maximets <[email protected]>
Wed, 24 Feb 2016 10:44:34 +0000 (13:44 +0300)
committerMichael S. Tsirkin <[email protected]>
Fri, 11 Mar 2016 12:55:15 +0000 (14:55 +0200)
Fix QEMU crash when -netdev vhost-user,queues=n is passed with number
of queues greater than MAX_QUEUE_NUM.

Signed-off-by: Ilya Maximets <[email protected]>
Reviewed-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Michael S. Tsirkin <[email protected]>
Acked-by: Jason Wang <[email protected]>
net/vhost-user.c

index 451dbbfb27db5af8043c7c2be01a3724b6059b5f..b753b3d80066227ba03812a9adfef1b727169c08 100644 (file)
@@ -317,9 +317,10 @@ int net_init_vhost_user(const NetClientOptions *opts, const char *name,
     }
 
     queues = vhost_user_opts->has_queues ? vhost_user_opts->queues : 1;
-    if (queues < 1) {
+    if (queues < 1 || queues > MAX_QUEUE_NUM) {
         error_setg(errp,
-                   "vhost-user number of queues must be bigger than zero");
+                   "vhost-user number of queues must be in range [1, %d]",
+                   MAX_QUEUE_NUM);
         return -1;
     }
 
This page took 0.026229 seconds and 4 git commands to generate.