vhost: Fix VPP crash when reloading VM with mixed-type ports [VPP-1406] 45/14545/6
authorYichen Wang <yicwang@cisco.com>
Wed, 29 Aug 2018 06:05:27 +0000 (23:05 -0700)
committerDamjan Marion <dmarion@me.com>
Wed, 12 Sep 2018 13:17:32 +0000 (13:17 +0000)
commit28812a0d938d5113787ed7a9ee4b210515c4168b
tree10f40ff5317b6ce2766486522a0bfd943bd53e47
parent79a05f547146e1eb972ec505e6605f604d3a3054
vhost: Fix VPP crash when reloading VM with mixed-type ports [VPP-1406]

When VM is having mixed type of vhost-user and SRIOV ports, QEMU (RedHat
v2.10) will not send disconnect signal to VPP, and just gives the new
memory region directly. VPP is not able to handle new memory region
mapping without disconnect signal first, which will result in a SEGV.
The fix will handle the VM reboot scenario without explict disconnect
signal from QEMU.

The fix is to invalidate the avail, desc, and used pointers in the txvq
when the new memory regions are received. This is because these pointers
are not valid anymore with the new memory regions. In the input node, check
to make sure the avail pointer is valid and punt if not.

Change-Id: Ieb8b427b202f4442a58907dab1661d63a03650de
Signed-off-by: Yichen Wang <yicwang@cisco.com>
src/vnet/devices/virtio/vhost_user.c
src/vnet/devices/virtio/vhost_user_input.c