vhost: fix crash on reconnect
authorMaxime Coquelin <maxime.coquelin@redhat.com>
Mon, 26 Jul 2021 07:58:14 +0000 (09:58 +0200)
committerChenbo Xia <chenbo.xia@intel.com>
Wed, 28 Jul 2021 06:27:53 +0000 (08:27 +0200)
commit3c929a0bb3e7addc5103227bff126b8b9dd952ef
treee785cb1d861765f0c7b3a4bdd8a23be5a3faa347
parent11d7bc9ff074dc5e37dd9ab51bb365669d08c3d6
vhost: fix crash on reconnect

When the vhost-user frontend like Virtio-user tries to
reconnect to the restarted Vhost backend, the Vhost backend
segfaults when multiqueue is enabled.

This is caused by VHOST_USER_GET_VRING_BASE being called for
a virtqueue that has not been created before, causing a NULL
pointer dereferencing.

This patch adds the VHOST_USER_GET_VRING_BASE requests to
the list of requests that trigger queue pair allocations.

Fixes: 160cbc815b41 ("vhost: remove a hack on queue allocation")
Cc: stable@dpdk.org
Reported-by: Yinan Wang <yinan.wang@intel.com>
Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Tested-by: Yinan Wang <yinan.wang@intel.com>
Reviewed-by: Chenbo Xia <chenbo.xia@intel.com>
lib/vhost/vhost_user.c