| From: |
| Jiang Wang <jiang.wang-AT-bytedance.com> |
| To: |
| jiangleetcode-AT-gmail.com |
| Subject: |
| [RFC v2 0/5] virtio/vsock: introduce SOCK_DGRAM support |
| Date: |
| Tue, 14 Sep 2021 05:54:33 +0000 |
| Message-ID: |
| <20210914055440.3121004-1-jiang.wang@bytedance.com> |
| Cc: |
| virtualization-AT-lists.linux-foundation.org, stefanha-AT-redhat.com, sgarzare-AT-redhat.com, mst-AT-redhat.com, arseny.krasnov-AT-kaspersky.com, jhansen-AT-vmware.com, cong.wang-AT-bytedance.com, duanxiongchun-AT-bytedance.com, xieyongji-AT-bytedance.com, chaiwen.cc-AT-bytedance.com, Jason Wang <jasowang-AT-redhat.com>, "David S. Miller" <davem-AT-davemloft.net>, Jakub Kicinski <kuba-AT-kernel.org>, Steven Rostedt <rostedt-AT-goodmis.org>, Ingo Molnar <mingo-AT-redhat.com>, kvm-AT-vger.kernel.org, netdev-AT-vger.kernel.org, linux-kernel-AT-vger.kernel.org |
| Archive-link: |
| Article |
This patchset implements support of SOCK_DGRAM for virtio
transport.
Datagram sockets are connectionless and unreliable. To avoid unfair contention
with stream and other sockets, add two more virtqueues and
a new feature bit to indicate if those two new queues exist or not.
Dgram does not use the existing credit update mechanism for
stream sockets. When sending from the guest/driver, sending packets
synchronously, so the sender will get an error when the virtqueue is full.
When sending from the host/device, send packets asynchronously
because the descriptor memory belongs to the corresponding QEMU
process.
The virtio spec patch is here:
https://www.mail-archive.com/virtualization@lists.linux-f...
For those who prefer git repo, here is the link for the linux kernel:
https://github.com/Jiang1155/linux/tree/vsock-dgram-v2
qemu patch link:
https://lists.gnu.org/archive/html/qemu-devel/2021-09/msg...
To do:
1. use skb when receiving packets
2. support multiple transport
3. support mergeable rx buffer
4. support disabling F_STREAM feature bit
v1 -> v2 :
- fix migration bug in vhost-vsock
- rename some variables
- clean up some code in virtio-vsock
- use le_to_cpu16 in virtio-vsock
Jiang Wang (5):
virtio/vsock: add VIRTIO_VSOCK_F_DGRAM feature bit
virtio/vsock: add support for virtio datagram
vhost/vsock: add support for vhost dgram.
vsock_test: add tests for vsock dgram
virtio/vsock: add sysfs for rx buf len for dgram
drivers/vhost/vsock.c | 220 +++++++--
include/linux/virtio_vsock.h | 9 +
include/net/af_vsock.h | 1 +
.../events/vsock_virtio_transport_common.h | 2 +
include/uapi/linux/virtio_vsock.h | 3 +
net/vmw_vsock/af_vsock.c | 12 +
net/vmw_vsock/virtio_transport.c | 463 +++++++++++++++---
net/vmw_vsock/virtio_transport_common.c | 181 ++++++-
tools/testing/vsock/util.c | 105 ++++
tools/testing/vsock/util.h | 4 +
tools/testing/vsock/vsock_test.c | 195 ++++++++
11 files changed, 1083 insertions(+), 112 deletions(-)
--
2.20.1