numam-dpdk/lib/librte_vhost
Yuanhan Liu 84ad6e4491 vhost: fix dequeue zero copy
For zero copy mode, we need pin the mbuf to not let the underlaying PMD
driver (or the app) free the mbuf. Currently, only the heading mbuf is
pinned. However, the mbuf free function would try to free all mbufs
in the mbuf chain (-1 to the refcnt). This may lead the head mbuf being
still pinned, while the other subsequent mbufs are actually freed. Which
is wrong.

It becomes more fatal after the mbuf refactor, more specificly, after
the commit 8f094a9ac5 ("mbuf: set mbuf fields while in pool"). The
refcnt resets to 1 after the last real reference. OTOH, it leads to a
situtation that we never know one mbuf is actually freed or not. This
would result the mbuf __just__ after the heading mbuf being freed twice:
it's firstly freed (and put back to mempool) when the underlaying PMD
finishes the DMA.  Later, it will then be freed again when vhost unpins
it. Meaning, one mbuf may be returned to the mempool twice, while in
turn, being allocated twice later. Something uncertain may happen then.
For example, the VM2VM case becomes broken.

Fixes: b0a985d1f3 ("vhost: add dequeue zero copy")
Cc: stable@dpdk.org

Signed-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
2017-04-19 10:49:06 +02:00
..
fd_man.c vhost: introduce API to start a specific driver 2017-04-01 10:42:44 +02:00
fd_man.h vhost: introduce API to start a specific driver 2017-04-01 10:42:44 +02:00
Makefile vhost: rename header file 2017-04-01 10:42:44 +02:00
rte_vhost_version.map vhost: introduce API to start a specific driver 2017-04-01 10:42:44 +02:00
rte_vhost.h vhost: workaround the build dependency on mbuf header 2017-04-01 10:42:44 +02:00
socket.c vhost: fix use after free 2017-04-19 10:49:06 +02:00
vhost_user.c vhost: do not destroy device on repeat mem table message 2017-04-01 10:42:44 +02:00
vhost_user.h vhost: rename header file 2017-04-01 10:42:44 +02:00
vhost.c vhost: rename header file 2017-04-01 10:42:44 +02:00
vhost.h vhost: rename header file 2017-04-01 10:42:44 +02:00
virtio_net.c vhost: fix dequeue zero copy 2017-04-19 10:49:06 +02:00