vhost: fix out-of-bounds read
authorHuawei Xie <huawei.xie@intel.com>
Thu, 10 Dec 2015 17:57:16 +0000 (01:57 +0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Sun, 13 Dec 2015 01:11:19 +0000 (02:11 +0100)
CID 107126 (#1 OF 1): Out-of-bounds read
Fixes: 8f972312b8f4 ("vhost: support vhost-user")

Signed-off-by: Huawei Xie <huawei.xie@intel.com>
Acked-by: John McNamara <john.mcnamara@intel.com>
lib/librte_vhost/vhost_user/vhost-net-user.c

index 2dc0547..549f907 100644 (file)
@@ -333,7 +333,7 @@ vserver_message_handler(int connfd, void *dat, int *remove)
 
        ctx.fh = cfd_ctx->fh;
        ret = read_vhost_message(connfd, &msg);
-       if (ret <= 0 || msg.request > VHOST_USER_MAX) {
+       if (ret <= 0 || msg.request >= VHOST_USER_MAX) {
                if (ret < 0)
                        RTE_LOG(ERR, VHOST_CONFIG,
                                "vhost read message failed\n");