blob: e7cf7d21cfb5e4e137829123597eb8ff3af6391f [file] [log] [blame]
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001/* Copyright (C) 2009 Red Hat, Inc.
2 * Author: Michael S. Tsirkin <mst@redhat.com>
3 *
4 * This work is licensed under the terms of the GNU GPL, version 2.
5 *
6 * virtio-net server in host kernel.
7 */
8
9#include <linux/compat.h>
10#include <linux/eventfd.h>
11#include <linux/vhost.h>
12#include <linux/virtio_net.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000013#include <linux/miscdevice.h>
14#include <linux/module.h>
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000015#include <linux/moduleparam.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000016#include <linux/mutex.h>
17#include <linux/workqueue.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000018#include <linux/file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Ingo Molnare6017572017-02-01 16:36:40 +010020#include <linux/sched/clock.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010021#include <linux/sched/signal.h>
Michael S. Tsirkin23cc5a92013-01-23 21:46:47 +010022#include <linux/vmalloc.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000023
24#include <linux/net.h>
25#include <linux/if_packet.h>
26#include <linux/if_arp.h>
27#include <linux/if_tun.h>
Arnd Bergmann501c7742010-02-18 05:46:50 +000028#include <linux/if_macvlan.h>
Sainath Grandhi635b8c82017-02-10 16:03:47 -080029#include <linux/if_tap.h>
Basil Gorc53cff5e2012-05-03 22:55:23 +000030#include <linux/if_vlan.h>
Jason Wangc67df112017-05-17 12:14:45 +080031#include <linux/skb_array.h>
32#include <linux/skbuff.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000033
34#include <net/sock.h>
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +020035#include <net/xdp.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000036
37#include "vhost.h"
38
Michael S. Tsirkinf9611c42012-12-06 14:56:00 +020039static int experimental_zcopytx = 1;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000040module_param(experimental_zcopytx, int, 0444);
Michael S. Tsirkinf9611c42012-12-06 14:56:00 +020041MODULE_PARM_DESC(experimental_zcopytx, "Enable Zero Copy TX;"
42 " 1 -Enable; 0 - Disable");
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000043
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000044/* Max number of bytes transferred before requeueing the job.
45 * Using this limit prevents one virtqueue from starving others. */
46#define VHOST_NET_WEIGHT 0x80000
47
haibinzhang(张海斌)a2ac9992018-04-09 07:22:17 +000048/* Max number of packets transferred before requeueing the job.
Paolo Abenidb688c22018-04-24 10:34:36 +020049 * Using this limit prevents one virtqueue from starving others with small
50 * pkts.
51 */
52#define VHOST_NET_PKT_WEIGHT 256
haibinzhang(张海斌)a2ac9992018-04-09 07:22:17 +000053
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000054/* MAX number of TX used buffers for outstanding zerocopy */
55#define VHOST_MAX_PEND 128
56#define VHOST_GOODCOPY_LEN 256
57
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000058/*
59 * For transmit, used buffer len is unused; we override it to track buffer
60 * status internally; used for zerocopy tx only.
61 */
62/* Lower device DMA failed */
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030063#define VHOST_DMA_FAILED_LEN ((__force __virtio32)3)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000064/* Lower device DMA done */
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030065#define VHOST_DMA_DONE_LEN ((__force __virtio32)2)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000066/* Lower device DMA in progress */
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030067#define VHOST_DMA_IN_PROGRESS ((__force __virtio32)1)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000068/* Buffer unused */
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030069#define VHOST_DMA_CLEAR_LEN ((__force __virtio32)0)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000070
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030071#define VHOST_DMA_IS_DONE(len) ((__force u32)(len) >= (__force u32)VHOST_DMA_DONE_LEN)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000072
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000073enum {
Asias He8570a6e2013-05-06 16:38:20 +080074 VHOST_NET_FEATURES = VHOST_FEATURES |
75 (1ULL << VHOST_NET_F_VIRTIO_NET_HDR) |
Jason Wang6b1e6cc2016-06-23 02:04:32 -040076 (1ULL << VIRTIO_NET_F_MRG_RXBUF) |
77 (1ULL << VIRTIO_F_IOMMU_PLATFORM)
Asias He8570a6e2013-05-06 16:38:20 +080078};
79
80enum {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000081 VHOST_NET_VQ_RX = 0,
82 VHOST_NET_VQ_TX = 1,
83 VHOST_NET_VQ_MAX = 2,
84};
85
Asias Hefe729a52013-05-06 16:38:24 +080086struct vhost_net_ubuf_ref {
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +020087 /* refcount follows semantics similar to kref:
88 * 0: object is released
89 * 1: no outstanding ubufs
90 * >1: outstanding ubufs
91 */
92 atomic_t refcount;
Asias He28394002013-04-27 15:07:46 +080093 wait_queue_head_t wait;
94 struct vhost_virtqueue *vq;
95};
96
Jason Wangc67df112017-05-17 12:14:45 +080097#define VHOST_RX_BATCH 64
98struct vhost_net_buf {
Jason Wang5990a302018-01-04 11:14:27 +080099 void **queue;
Jason Wangc67df112017-05-17 12:14:45 +0800100 int tail;
101 int head;
102};
103
Asias He3ab2e422013-04-27 11:16:48 +0800104struct vhost_net_virtqueue {
105 struct vhost_virtqueue vq;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300106 size_t vhost_hlen;
107 size_t sock_hlen;
Asias He28394002013-04-27 15:07:46 +0800108 /* vhost zerocopy support fields below: */
109 /* last used idx for outstanding DMA zerocopy buffers */
110 int upend_idx;
Jason Wangf5a49412018-05-29 14:18:19 +0800111 /* For TX, first used idx for DMA done zerocopy buffers
112 * For RX, number of batched heads
113 */
Asias He28394002013-04-27 15:07:46 +0800114 int done_idx;
115 /* an array of userspace buffers info */
116 struct ubuf_info *ubuf_info;
117 /* Reference counting for outstanding ubufs.
118 * Protected by vq mutex. Writers must also take device mutex. */
Asias Hefe729a52013-05-06 16:38:24 +0800119 struct vhost_net_ubuf_ref *ubufs;
Jason Wang5990a302018-01-04 11:14:27 +0800120 struct ptr_ring *rx_ring;
Jason Wangc67df112017-05-17 12:14:45 +0800121 struct vhost_net_buf rxq;
Asias He3ab2e422013-04-27 11:16:48 +0800122};
123
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000124struct vhost_net {
125 struct vhost_dev dev;
Asias He3ab2e422013-04-27 11:16:48 +0800126 struct vhost_net_virtqueue vqs[VHOST_NET_VQ_MAX];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000127 struct vhost_poll poll[VHOST_NET_VQ_MAX];
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000128 /* Number of TX recently submitted.
129 * Protected by tx vq lock. */
130 unsigned tx_packets;
131 /* Number of times zerocopy TX recently failed.
132 * Protected by tx vq lock. */
133 unsigned tx_zcopy_err;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200134 /* Flush in progress. Protected by tx vq lock. */
135 bool tx_flush;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000136};
137
Asias Hefe729a52013-05-06 16:38:24 +0800138static unsigned vhost_net_zcopy_mask __read_mostly;
Asias He28394002013-04-27 15:07:46 +0800139
Jason Wangc67df112017-05-17 12:14:45 +0800140static void *vhost_net_buf_get_ptr(struct vhost_net_buf *rxq)
141{
142 if (rxq->tail != rxq->head)
143 return rxq->queue[rxq->head];
144 else
145 return NULL;
146}
147
148static int vhost_net_buf_get_size(struct vhost_net_buf *rxq)
149{
150 return rxq->tail - rxq->head;
151}
152
153static int vhost_net_buf_is_empty(struct vhost_net_buf *rxq)
154{
155 return rxq->tail == rxq->head;
156}
157
158static void *vhost_net_buf_consume(struct vhost_net_buf *rxq)
159{
160 void *ret = vhost_net_buf_get_ptr(rxq);
161 ++rxq->head;
162 return ret;
163}
164
165static int vhost_net_buf_produce(struct vhost_net_virtqueue *nvq)
166{
167 struct vhost_net_buf *rxq = &nvq->rxq;
168
169 rxq->head = 0;
Jason Wang5990a302018-01-04 11:14:27 +0800170 rxq->tail = ptr_ring_consume_batched(nvq->rx_ring, rxq->queue,
Jason Wangc67df112017-05-17 12:14:45 +0800171 VHOST_RX_BATCH);
172 return rxq->tail;
173}
174
175static void vhost_net_buf_unproduce(struct vhost_net_virtqueue *nvq)
176{
177 struct vhost_net_buf *rxq = &nvq->rxq;
178
Jason Wang5990a302018-01-04 11:14:27 +0800179 if (nvq->rx_ring && !vhost_net_buf_is_empty(rxq)) {
180 ptr_ring_unconsume(nvq->rx_ring, rxq->queue + rxq->head,
181 vhost_net_buf_get_size(rxq),
Jason Wang3a403072018-03-09 14:50:34 +0800182 tun_ptr_free);
Jason Wangc67df112017-05-17 12:14:45 +0800183 rxq->head = rxq->tail = 0;
184 }
185}
186
Jason Wangfc72d1d2018-01-04 11:14:28 +0800187static int vhost_net_buf_peek_len(void *ptr)
188{
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +0200189 if (tun_is_xdp_frame(ptr)) {
190 struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr);
Jason Wangfc72d1d2018-01-04 11:14:28 +0800191
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +0200192 return xdpf->len;
Jason Wangfc72d1d2018-01-04 11:14:28 +0800193 }
194
195 return __skb_array_len_with_tag(ptr);
196}
197
Jason Wangc67df112017-05-17 12:14:45 +0800198static int vhost_net_buf_peek(struct vhost_net_virtqueue *nvq)
199{
200 struct vhost_net_buf *rxq = &nvq->rxq;
201
202 if (!vhost_net_buf_is_empty(rxq))
203 goto out;
204
205 if (!vhost_net_buf_produce(nvq))
206 return 0;
207
208out:
Jason Wangfc72d1d2018-01-04 11:14:28 +0800209 return vhost_net_buf_peek_len(vhost_net_buf_get_ptr(rxq));
Jason Wangc67df112017-05-17 12:14:45 +0800210}
211
212static void vhost_net_buf_init(struct vhost_net_buf *rxq)
213{
214 rxq->head = rxq->tail = 0;
215}
216
Asias Hefe729a52013-05-06 16:38:24 +0800217static void vhost_net_enable_zcopy(int vq)
Asias He28394002013-04-27 15:07:46 +0800218{
Asias Hefe729a52013-05-06 16:38:24 +0800219 vhost_net_zcopy_mask |= 0x1 << vq;
Asias He28394002013-04-27 15:07:46 +0800220}
221
Asias Hefe729a52013-05-06 16:38:24 +0800222static struct vhost_net_ubuf_ref *
223vhost_net_ubuf_alloc(struct vhost_virtqueue *vq, bool zcopy)
Asias He28394002013-04-27 15:07:46 +0800224{
Asias Hefe729a52013-05-06 16:38:24 +0800225 struct vhost_net_ubuf_ref *ubufs;
Asias He28394002013-04-27 15:07:46 +0800226 /* No zero copy backend? Nothing to count. */
227 if (!zcopy)
228 return NULL;
229 ubufs = kmalloc(sizeof(*ubufs), GFP_KERNEL);
230 if (!ubufs)
231 return ERR_PTR(-ENOMEM);
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200232 atomic_set(&ubufs->refcount, 1);
Asias He28394002013-04-27 15:07:46 +0800233 init_waitqueue_head(&ubufs->wait);
234 ubufs->vq = vq;
235 return ubufs;
236}
237
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200238static int vhost_net_ubuf_put(struct vhost_net_ubuf_ref *ubufs)
Asias He28394002013-04-27 15:07:46 +0800239{
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200240 int r = atomic_sub_return(1, &ubufs->refcount);
241 if (unlikely(!r))
242 wake_up(&ubufs->wait);
243 return r;
Asias He28394002013-04-27 15:07:46 +0800244}
245
Asias Hefe729a52013-05-06 16:38:24 +0800246static void vhost_net_ubuf_put_and_wait(struct vhost_net_ubuf_ref *ubufs)
Asias He28394002013-04-27 15:07:46 +0800247{
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200248 vhost_net_ubuf_put(ubufs);
249 wait_event(ubufs->wait, !atomic_read(&ubufs->refcount));
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +0300250}
251
252static void vhost_net_ubuf_put_wait_and_free(struct vhost_net_ubuf_ref *ubufs)
253{
254 vhost_net_ubuf_put_and_wait(ubufs);
Asias He28394002013-04-27 15:07:46 +0800255 kfree(ubufs);
256}
257
Asias Heb1ad8492013-05-06 11:16:00 +0800258static void vhost_net_clear_ubuf_info(struct vhost_net *n)
259{
Asias Heb1ad8492013-05-06 11:16:00 +0800260 int i;
261
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300262 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
263 kfree(n->vqs[i].ubuf_info);
264 n->vqs[i].ubuf_info = NULL;
Asias Heb1ad8492013-05-06 11:16:00 +0800265 }
266}
267
Asias He0a1febf2013-06-05 21:17:38 +0800268static int vhost_net_set_ubuf_info(struct vhost_net *n)
Asias He28394002013-04-27 15:07:46 +0800269{
270 bool zcopy;
271 int i;
272
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300273 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
Asias Hefe729a52013-05-06 16:38:24 +0800274 zcopy = vhost_net_zcopy_mask & (0x1 << i);
Asias He28394002013-04-27 15:07:46 +0800275 if (!zcopy)
276 continue;
277 n->vqs[i].ubuf_info = kmalloc(sizeof(*n->vqs[i].ubuf_info) *
278 UIO_MAXIOV, GFP_KERNEL);
279 if (!n->vqs[i].ubuf_info)
280 goto err;
281 }
282 return 0;
283
284err:
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300285 vhost_net_clear_ubuf_info(n);
Asias He28394002013-04-27 15:07:46 +0800286 return -ENOMEM;
287}
288
Asias He0a1febf2013-06-05 21:17:38 +0800289static void vhost_net_vq_reset(struct vhost_net *n)
Asias He28394002013-04-27 15:07:46 +0800290{
291 int i;
292
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300293 vhost_net_clear_ubuf_info(n);
294
Asias He28394002013-04-27 15:07:46 +0800295 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
296 n->vqs[i].done_idx = 0;
297 n->vqs[i].upend_idx = 0;
298 n->vqs[i].ubufs = NULL;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300299 n->vqs[i].vhost_hlen = 0;
300 n->vqs[i].sock_hlen = 0;
Jason Wangc67df112017-05-17 12:14:45 +0800301 vhost_net_buf_init(&n->vqs[i].rxq);
Asias He28394002013-04-27 15:07:46 +0800302 }
303
304}
305
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000306static void vhost_net_tx_packet(struct vhost_net *net)
307{
308 ++net->tx_packets;
309 if (net->tx_packets < 1024)
310 return;
311 net->tx_packets = 0;
312 net->tx_zcopy_err = 0;
313}
314
315static void vhost_net_tx_err(struct vhost_net *net)
316{
317 ++net->tx_zcopy_err;
318}
319
320static bool vhost_net_tx_select_zcopy(struct vhost_net *net)
321{
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200322 /* TX flush waits for outstanding DMAs to be done.
323 * Don't start new DMAs.
324 */
325 return !net->tx_flush &&
326 net->tx_packets / 64 >= net->tx_zcopy_err;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000327}
328
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000329static bool vhost_sock_zcopy(struct socket *sock)
330{
331 return unlikely(experimental_zcopytx) &&
332 sock_flag(sock->sk, SOCK_ZEROCOPY);
333}
334
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000335/* In case of DMA done not in order in lower device driver for some reason.
336 * upend_idx is used to track end of used idx, done_idx is used to track head
337 * of used idx. Once lower device DMA done contiguously, we will signal KVM
338 * guest used idx.
339 */
Jason Wang094afe72013-09-02 16:40:56 +0800340static void vhost_zerocopy_signal_used(struct vhost_net *net,
341 struct vhost_virtqueue *vq)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000342{
Asias He28394002013-04-27 15:07:46 +0800343 struct vhost_net_virtqueue *nvq =
344 container_of(vq, struct vhost_net_virtqueue, vq);
Jason Wangc92112a2013-09-02 16:40:57 +0800345 int i, add;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000346 int j = 0;
347
Asias He28394002013-04-27 15:07:46 +0800348 for (i = nvq->done_idx; i != nvq->upend_idx; i = (i + 1) % UIO_MAXIOV) {
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000349 if (vq->heads[i].len == VHOST_DMA_FAILED_LEN)
350 vhost_net_tx_err(net);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000351 if (VHOST_DMA_IS_DONE(vq->heads[i].len)) {
352 vq->heads[i].len = VHOST_DMA_CLEAR_LEN;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000353 ++j;
354 } else
355 break;
356 }
Jason Wangc92112a2013-09-02 16:40:57 +0800357 while (j) {
358 add = min(UIO_MAXIOV - nvq->done_idx, j);
359 vhost_add_used_and_signal_n(vq->dev, vq,
360 &vq->heads[nvq->done_idx], add);
361 nvq->done_idx = (nvq->done_idx + add) % UIO_MAXIOV;
362 j -= add;
363 }
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000364}
365
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000366static void vhost_zerocopy_callback(struct ubuf_info *ubuf, bool success)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000367{
Asias Hefe729a52013-05-06 16:38:24 +0800368 struct vhost_net_ubuf_ref *ubufs = ubuf->ctx;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000369 struct vhost_virtqueue *vq = ubufs->vq;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200370 int cnt;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000371
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +0200372 rcu_read_lock_bh();
373
Jason Wang19c73b32013-09-02 16:41:00 +0800374 /* set len to mark this desc buffers done DMA */
375 vq->heads[ubuf->desc].len = success ?
376 VHOST_DMA_DONE_LEN : VHOST_DMA_FAILED_LEN;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200377 cnt = vhost_net_ubuf_put(ubufs);
Jason Wang19c73b32013-09-02 16:41:00 +0800378
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000379 /*
380 * Trigger polling thread if guest stopped submitting new buffers:
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200381 * in this case, the refcount after decrement will eventually reach 1.
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000382 * We also trigger polling periodically after each 16 packets
383 * (the value 16 here is more or less arbitrary, it's tuned to trigger
384 * less than 10% of times).
385 */
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200386 if (cnt <= 1 || !(cnt % 16))
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000387 vhost_poll_queue(&vq->poll);
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +0200388
389 rcu_read_unlock_bh();
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000390}
391
Jason Wang03088132016-03-04 06:24:53 -0500392static inline unsigned long busy_clock(void)
393{
394 return local_clock() >> 10;
395}
396
397static bool vhost_can_busy_poll(struct vhost_dev *dev,
398 unsigned long endtime)
399{
400 return likely(!need_resched()) &&
401 likely(!time_after(busy_clock(), endtime)) &&
402 likely(!signal_pending(current)) &&
403 !vhost_has_work(dev);
404}
405
Jason Wang8241a1e2016-06-01 01:56:33 -0400406static void vhost_net_disable_vq(struct vhost_net *n,
407 struct vhost_virtqueue *vq)
408{
409 struct vhost_net_virtqueue *nvq =
410 container_of(vq, struct vhost_net_virtqueue, vq);
411 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
412 if (!vq->private_data)
413 return;
414 vhost_poll_stop(poll);
415}
416
417static int vhost_net_enable_vq(struct vhost_net *n,
418 struct vhost_virtqueue *vq)
419{
420 struct vhost_net_virtqueue *nvq =
421 container_of(vq, struct vhost_net_virtqueue, vq);
422 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
423 struct socket *sock;
424
425 sock = vq->private_data;
426 if (!sock)
427 return 0;
428
429 return vhost_poll_start(poll, sock->file);
430}
431
Jason Wang03088132016-03-04 06:24:53 -0500432static int vhost_net_tx_get_vq_desc(struct vhost_net *net,
433 struct vhost_virtqueue *vq,
434 struct iovec iov[], unsigned int iov_size,
435 unsigned int *out_num, unsigned int *in_num)
436{
437 unsigned long uninitialized_var(endtime);
438 int r = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400439 out_num, in_num, NULL, NULL);
Jason Wang03088132016-03-04 06:24:53 -0500440
441 if (r == vq->num && vq->busyloop_timeout) {
442 preempt_disable();
443 endtime = busy_clock() + vq->busyloop_timeout;
444 while (vhost_can_busy_poll(vq->dev, endtime) &&
445 vhost_vq_avail_empty(vq->dev, vq))
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200446 cpu_relax();
Jason Wang03088132016-03-04 06:24:53 -0500447 preempt_enable();
448 r = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400449 out_num, in_num, NULL, NULL);
Jason Wang03088132016-03-04 06:24:53 -0500450 }
451
452 return r;
453}
454
Jason Wang0ed005c2017-01-18 15:02:02 +0800455static bool vhost_exceeds_maxpend(struct vhost_net *net)
456{
457 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
458 struct vhost_virtqueue *vq = &nvq->vq;
459
Willem de Bruijn1e6f7452017-10-06 13:22:31 -0400460 return (nvq->upend_idx + UIO_MAXIOV - nvq->done_idx) % UIO_MAXIOV >
461 min_t(unsigned int, VHOST_MAX_PEND, vq->num >> 2);
Jason Wang0ed005c2017-01-18 15:02:02 +0800462}
463
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000464/* Expects to be always run from workqueue - which acts as
465 * read-size critical section for our kind of RCU. */
466static void handle_tx(struct vhost_net *net)
467{
Asias He28394002013-04-27 15:07:46 +0800468 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300469 struct vhost_virtqueue *vq = &nvq->vq;
Al Viro98a527a2014-12-10 15:00:58 -0500470 unsigned out, in;
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300471 int head;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000472 struct msghdr msg = {
473 .msg_name = NULL,
474 .msg_namelen = 0,
475 .msg_control = NULL,
476 .msg_controllen = 0,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000477 .msg_flags = MSG_DONTWAIT,
478 };
479 size_t len, total_len = 0;
Jason Wang70181d512013-04-10 20:50:48 +0000480 int err;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000481 size_t hdr_size;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100482 struct socket *sock;
Asias Hefe729a52013-05-06 16:38:24 +0800483 struct vhost_net_ubuf_ref *uninitialized_var(ubufs);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200484 bool zcopy, zcopy_used;
haibinzhang(张海斌)a2ac9992018-04-09 07:22:17 +0000485 int sent_pkts = 0;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100486
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000487 mutex_lock(&vq->mutex);
Asias He2e26af72013-05-07 14:54:33 +0800488 sock = vq->private_data;
489 if (!sock)
490 goto out;
491
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400492 if (!vq_iotlb_prefetch(vq))
493 goto out;
494
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300495 vhost_disable_notify(&net->dev, vq);
Jason Wangfeb88922017-11-13 11:45:34 +0800496 vhost_net_disable_vq(net, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000497
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300498 hdr_size = nvq->vhost_hlen;
Asias He28394002013-04-27 15:07:46 +0800499 zcopy = nvq->ubufs;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000500
501 for (;;) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000502 /* Release DMAs done buffers first */
503 if (zcopy)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000504 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000505
Jason Wangf7c6be42013-09-02 16:41:01 +0800506
Jason Wang03088132016-03-04 06:24:53 -0500507 head = vhost_net_tx_get_vq_desc(net, vq, vq->iov,
508 ARRAY_SIZE(vq->iov),
509 &out, &in);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300510 /* On error, stop handling until the next kick. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +0300511 if (unlikely(head < 0))
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300512 break;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000513 /* Nothing new? Wait for eventfd to tell us they refilled. */
514 if (head == vq->num) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300515 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
516 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000517 continue;
518 }
519 break;
520 }
521 if (in) {
522 vq_err(vq, "Unexpected descriptor format for TX: "
523 "out %d, int %d\n", out, in);
524 break;
525 }
526 /* Skip header. TODO: support TSO. */
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000527 len = iov_length(vq->iov, out);
Al Viroc0371da2014-11-24 10:42:55 -0500528 iov_iter_init(&msg.msg_iter, WRITE, vq->iov, out, len);
Al Viro98a527a2014-12-10 15:00:58 -0500529 iov_iter_advance(&msg.msg_iter, hdr_size);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000530 /* Sanity check */
Al Viro01e97e62014-12-15 21:39:31 -0500531 if (!msg_data_left(&msg)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000532 vq_err(vq, "Unexpected header len for TX: "
533 "%zd expected %zd\n",
Al Viro98a527a2014-12-10 15:00:58 -0500534 len, hdr_size);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000535 break;
536 }
Al Viro01e97e62014-12-15 21:39:31 -0500537 len = msg_data_left(&msg);
Jason Wangce21a022013-09-02 16:40:59 +0800538
539 zcopy_used = zcopy && len >= VHOST_GOODCOPY_LEN
Willem de Bruijn1e6f7452017-10-06 13:22:31 -0400540 && !vhost_exceeds_maxpend(net)
Jason Wangce21a022013-09-02 16:40:59 +0800541 && vhost_net_tx_select_zcopy(net);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200542
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000543 /* use msg_control to pass vhost zerocopy ubuf info to skb */
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200544 if (zcopy_used) {
Jason Wangce21a022013-09-02 16:40:59 +0800545 struct ubuf_info *ubuf;
546 ubuf = nvq->ubuf_info + nvq->upend_idx;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000547
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300548 vq->heads[nvq->upend_idx].id = cpu_to_vhost32(vq, head);
Jason Wangce21a022013-09-02 16:40:59 +0800549 vq->heads[nvq->upend_idx].len = VHOST_DMA_IN_PROGRESS;
550 ubuf->callback = vhost_zerocopy_callback;
551 ubuf->ctx = nvq->ubufs;
552 ubuf->desc = nvq->upend_idx;
Eric Dumazetc1d1b432017-08-31 16:48:22 -0700553 refcount_set(&ubuf->refcnt, 1);
Jason Wangce21a022013-09-02 16:40:59 +0800554 msg.msg_control = ubuf;
555 msg.msg_controllen = sizeof(ubuf);
556 ubufs = nvq->ubufs;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200557 atomic_inc(&ubufs->refcount);
Asias He28394002013-04-27 15:07:46 +0800558 nvq->upend_idx = (nvq->upend_idx + 1) % UIO_MAXIOV;
Jason Wangce21a022013-09-02 16:40:59 +0800559 } else {
Jason Wang4364d5f2013-06-05 15:40:46 +0800560 msg.msg_control = NULL;
Jason Wangce21a022013-09-02 16:40:59 +0800561 ubufs = NULL;
562 }
Jason Wang0ed005c2017-01-18 15:02:02 +0800563
564 total_len += len;
565 if (total_len < VHOST_NET_WEIGHT &&
566 !vhost_vq_avail_empty(&net->dev, vq) &&
567 likely(!vhost_exceeds_maxpend(net))) {
568 msg.msg_flags |= MSG_MORE;
569 } else {
570 msg.msg_flags &= ~MSG_MORE;
571 }
572
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000573 /* TODO: Check specific error and bomb out unless ENOBUFS? */
Ying Xue1b784142015-03-02 15:37:48 +0800574 err = sock->ops->sendmsg(sock, &msg, len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000575 if (unlikely(err < 0)) {
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200576 if (zcopy_used) {
Jason Wangce21a022013-09-02 16:40:59 +0800577 vhost_net_ubuf_put(ubufs);
Asias He28394002013-04-27 15:07:46 +0800578 nvq->upend_idx = ((unsigned)nvq->upend_idx - 1)
579 % UIO_MAXIOV;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000580 }
David Stevens8dd014a2010-07-27 18:52:21 +0300581 vhost_discard_vq_desc(vq, 1);
Jason Wangfeb88922017-11-13 11:45:34 +0800582 vhost_net_enable_vq(net, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000583 break;
584 }
585 if (err != len)
Michael S. Tsirkin95c0ec62010-06-24 17:10:25 +0300586 pr_debug("Truncated TX packet: "
587 " len %d != %zd\n", err, len);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200588 if (!zcopy_used)
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000589 vhost_add_used_and_signal(&net->dev, vq, head, 0);
Jason Wangc8fb2172012-05-02 11:42:41 +0800590 else
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000591 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000592 vhost_net_tx_packet(net);
haibinzhang(张海斌)a2ac9992018-04-09 07:22:17 +0000593 if (unlikely(total_len >= VHOST_NET_WEIGHT) ||
Paolo Abenidb688c22018-04-24 10:34:36 +0200594 unlikely(++sent_pkts >= VHOST_NET_PKT_WEIGHT)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000595 vhost_poll_queue(&vq->poll);
596 break;
597 }
598 }
Asias He2e26af72013-05-07 14:54:33 +0800599out:
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000600 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000601}
602
Jason Wangc67df112017-05-17 12:14:45 +0800603static int peek_head_len(struct vhost_net_virtqueue *rvq, struct sock *sk)
David Stevens8dd014a2010-07-27 18:52:21 +0300604{
605 struct sk_buff *head;
606 int len = 0;
Jason Wang783e3982011-01-17 16:11:17 +0800607 unsigned long flags;
David Stevens8dd014a2010-07-27 18:52:21 +0300608
Jason Wang5990a302018-01-04 11:14:27 +0800609 if (rvq->rx_ring)
Jason Wangc67df112017-05-17 12:14:45 +0800610 return vhost_net_buf_peek(rvq);
Jason Wang1576d982016-06-30 14:45:36 +0800611
Jason Wang783e3982011-01-17 16:11:17 +0800612 spin_lock_irqsave(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300613 head = skb_peek(&sk->sk_receive_queue);
Basil Gorc53cff5e2012-05-03 22:55:23 +0000614 if (likely(head)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300615 len = head->len;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100616 if (skb_vlan_tag_present(head))
Basil Gorc53cff5e2012-05-03 22:55:23 +0000617 len += VLAN_HLEN;
618 }
619
Jason Wang783e3982011-01-17 16:11:17 +0800620 spin_unlock_irqrestore(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300621 return len;
622}
623
Jason Wang1576d982016-06-30 14:45:36 +0800624static int sk_has_rx_data(struct sock *sk)
625{
626 struct socket *sock = sk->sk_socket;
627
628 if (sock->ops->peek_len)
629 return sock->ops->peek_len(sock);
630
631 return skb_queue_empty(&sk->sk_receive_queue);
632}
633
Jason Wangf5a49412018-05-29 14:18:19 +0800634static void vhost_rx_signal_used(struct vhost_net_virtqueue *nvq)
635{
636 struct vhost_virtqueue *vq = &nvq->vq;
637 struct vhost_dev *dev = vq->dev;
638
639 if (!nvq->done_idx)
640 return;
641
642 vhost_add_used_and_signal_n(dev, vq, vq->heads, nvq->done_idx);
643 nvq->done_idx = 0;
644}
645
Jason Wang03088132016-03-04 06:24:53 -0500646static int vhost_net_rx_peek_head_len(struct vhost_net *net, struct sock *sk)
647{
Jason Wangc67df112017-05-17 12:14:45 +0800648 struct vhost_net_virtqueue *rvq = &net->vqs[VHOST_NET_VQ_RX];
Jason Wang03088132016-03-04 06:24:53 -0500649 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
650 struct vhost_virtqueue *vq = &nvq->vq;
651 unsigned long uninitialized_var(endtime);
Jason Wangc67df112017-05-17 12:14:45 +0800652 int len = peek_head_len(rvq, sk);
Jason Wang03088132016-03-04 06:24:53 -0500653
654 if (!len && vq->busyloop_timeout) {
Jason Wangf5a49412018-05-29 14:18:19 +0800655 /* Flush batched heads first */
656 vhost_rx_signal_used(rvq);
Jason Wang03088132016-03-04 06:24:53 -0500657 /* Both tx vq and rx socket were polled here */
Jason Wangaaa31492018-03-26 16:10:23 +0800658 mutex_lock_nested(&vq->mutex, 1);
Jason Wang03088132016-03-04 06:24:53 -0500659 vhost_disable_notify(&net->dev, vq);
660
661 preempt_disable();
662 endtime = busy_clock() + vq->busyloop_timeout;
663
664 while (vhost_can_busy_poll(&net->dev, endtime) &&
Jason Wang1576d982016-06-30 14:45:36 +0800665 !sk_has_rx_data(sk) &&
Jason Wang03088132016-03-04 06:24:53 -0500666 vhost_vq_avail_empty(&net->dev, vq))
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200667 cpu_relax();
Jason Wang03088132016-03-04 06:24:53 -0500668
669 preempt_enable();
670
Jason Wang8b949be2017-09-05 09:22:05 +0800671 if (!vhost_vq_avail_empty(&net->dev, vq))
Jason Wang03088132016-03-04 06:24:53 -0500672 vhost_poll_queue(&vq->poll);
Jason Wang8b949be2017-09-05 09:22:05 +0800673 else if (unlikely(vhost_enable_notify(&net->dev, vq))) {
674 vhost_disable_notify(&net->dev, vq);
675 vhost_poll_queue(&vq->poll);
676 }
677
Jason Wang03088132016-03-04 06:24:53 -0500678 mutex_unlock(&vq->mutex);
679
Jason Wangc67df112017-05-17 12:14:45 +0800680 len = peek_head_len(rvq, sk);
Jason Wang03088132016-03-04 06:24:53 -0500681 }
682
683 return len;
684}
685
David Stevens8dd014a2010-07-27 18:52:21 +0300686/* This is a multi-buffer version of vhost_get_desc, that works if
687 * vq has read descriptors only.
688 * @vq - the relevant virtqueue
689 * @datalen - data length we'll be reading
690 * @iovcount - returned count of io vectors we fill
691 * @log - vhost log
692 * @log_num - log offset
Jason Wang94249362011-01-17 16:11:08 +0800693 * @quota - headcount quota, 1 for big buffer
David Stevens8dd014a2010-07-27 18:52:21 +0300694 * returns number of buffer heads allocated, negative on error
695 */
696static int get_rx_bufs(struct vhost_virtqueue *vq,
697 struct vring_used_elem *heads,
698 int datalen,
699 unsigned *iovcount,
700 struct vhost_log *log,
Jason Wang94249362011-01-17 16:11:08 +0800701 unsigned *log_num,
702 unsigned int quota)
David Stevens8dd014a2010-07-27 18:52:21 +0300703{
704 unsigned int out, in;
705 int seg = 0;
706 int headcount = 0;
707 unsigned d;
708 int r, nlogs = 0;
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300709 /* len is always initialized before use since we are always called with
710 * datalen > 0.
711 */
712 u32 uninitialized_var(len);
David Stevens8dd014a2010-07-27 18:52:21 +0300713
Jason Wang94249362011-01-17 16:11:08 +0800714 while (datalen > 0 && headcount < quota) {
Jason Wange0e9b402010-09-14 23:53:05 +0800715 if (unlikely(seg >= UIO_MAXIOV)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300716 r = -ENOBUFS;
717 goto err;
718 }
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300719 r = vhost_get_vq_desc(vq, vq->iov + seg,
David Stevens8dd014a2010-07-27 18:52:21 +0300720 ARRAY_SIZE(vq->iov) - seg, &out,
721 &in, log, log_num);
Michael S. Tsirkina39ee442014-03-27 12:53:37 +0200722 if (unlikely(r < 0))
723 goto err;
724
725 d = r;
David Stevens8dd014a2010-07-27 18:52:21 +0300726 if (d == vq->num) {
727 r = 0;
728 goto err;
729 }
730 if (unlikely(out || in <= 0)) {
731 vq_err(vq, "unexpected descriptor format for RX: "
732 "out %d, in %d\n", out, in);
733 r = -EINVAL;
734 goto err;
735 }
736 if (unlikely(log)) {
737 nlogs += *log_num;
738 log += *log_num;
739 }
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300740 heads[headcount].id = cpu_to_vhost32(vq, d);
741 len = iov_length(vq->iov + seg, in);
742 heads[headcount].len = cpu_to_vhost32(vq, len);
743 datalen -= len;
David Stevens8dd014a2010-07-27 18:52:21 +0300744 ++headcount;
745 seg += in;
746 }
Michael S. Tsirkin99975cc2015-01-07 10:51:00 +0200747 heads[headcount - 1].len = cpu_to_vhost32(vq, len + datalen);
David Stevens8dd014a2010-07-27 18:52:21 +0300748 *iovcount = seg;
749 if (unlikely(log))
750 *log_num = nlogs;
Michael S. Tsirkind8316f32014-03-27 12:00:26 +0200751
752 /* Detect overrun */
753 if (unlikely(datalen > 0)) {
754 r = UIO_MAXIOV + 1;
755 goto err;
756 }
David Stevens8dd014a2010-07-27 18:52:21 +0300757 return headcount;
758err:
759 vhost_discard_vq_desc(vq, headcount);
760 return r;
761}
762
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000763/* Expects to be always run from workqueue - which acts as
764 * read-size critical section for our kind of RCU. */
Jason Wang94249362011-01-17 16:11:08 +0800765static void handle_rx(struct vhost_net *net)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000766{
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300767 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_RX];
768 struct vhost_virtqueue *vq = &nvq->vq;
David Stevens8dd014a2010-07-27 18:52:21 +0300769 unsigned uninitialized_var(in), log;
770 struct vhost_log *vq_log;
771 struct msghdr msg = {
772 .msg_name = NULL,
773 .msg_namelen = 0,
774 .msg_control = NULL, /* FIXME: get and handle RX aux data. */
775 .msg_controllen = 0,
David Stevens8dd014a2010-07-27 18:52:21 +0300776 .msg_flags = MSG_DONTWAIT,
777 };
Jason Wang0960b642015-02-15 16:35:17 +0800778 struct virtio_net_hdr hdr = {
779 .flags = 0,
780 .gso_type = VIRTIO_NET_HDR_GSO_NONE
David Stevens8dd014a2010-07-27 18:52:21 +0300781 };
David Stevens8dd014a2010-07-27 18:52:21 +0300782 size_t total_len = 0;
Michael S. Tsirkin910a5782012-10-24 20:37:51 +0200783 int err, mergeable;
Jason Wangf5a49412018-05-29 14:18:19 +0800784 s16 headcount;
David Stevens8dd014a2010-07-27 18:52:21 +0300785 size_t vhost_hlen, sock_hlen;
786 size_t vhost_len, sock_len;
Asias He2e26af72013-05-07 14:54:33 +0800787 struct socket *sock;
Al Viroba7438a2014-12-10 15:51:28 -0500788 struct iov_iter fixup;
Jason Wang0960b642015-02-15 16:35:17 +0800789 __virtio16 num_buffers;
Paolo Abenidb688c22018-04-24 10:34:36 +0200790 int recv_pkts = 0;
David Stevens8dd014a2010-07-27 18:52:21 +0300791
Jason Wangaaa31492018-03-26 16:10:23 +0800792 mutex_lock_nested(&vq->mutex, 0);
Asias He2e26af72013-05-07 14:54:33 +0800793 sock = vq->private_data;
794 if (!sock)
795 goto out;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400796
797 if (!vq_iotlb_prefetch(vq))
798 goto out;
799
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300800 vhost_disable_notify(&net->dev, vq);
Jason Wang8241a1e2016-06-01 01:56:33 -0400801 vhost_net_disable_vq(net, vq);
Asias He2e26af72013-05-07 14:54:33 +0800802
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300803 vhost_hlen = nvq->vhost_hlen;
804 sock_hlen = nvq->sock_hlen;
David Stevens8dd014a2010-07-27 18:52:21 +0300805
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300806 vq_log = unlikely(vhost_has_feature(vq, VHOST_F_LOG_ALL)) ?
David Stevens8dd014a2010-07-27 18:52:21 +0300807 vq->log : NULL;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300808 mergeable = vhost_has_feature(vq, VIRTIO_NET_F_MRG_RXBUF);
David Stevens8dd014a2010-07-27 18:52:21 +0300809
Jason Wang03088132016-03-04 06:24:53 -0500810 while ((sock_len = vhost_net_rx_peek_head_len(net, sock->sk))) {
David Stevens8dd014a2010-07-27 18:52:21 +0300811 sock_len += sock_hlen;
812 vhost_len = sock_len + vhost_hlen;
Jason Wangf5a49412018-05-29 14:18:19 +0800813 headcount = get_rx_bufs(vq, vq->heads + nvq->done_idx,
814 vhost_len, &in, vq_log, &log,
Jason Wang94249362011-01-17 16:11:08 +0800815 likely(mergeable) ? UIO_MAXIOV : 1);
David Stevens8dd014a2010-07-27 18:52:21 +0300816 /* On error, stop handling until the next kick. */
817 if (unlikely(headcount < 0))
Jason Wang8241a1e2016-06-01 01:56:33 -0400818 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +0300819 /* OK, now we need to know about added descriptors. */
820 if (!headcount) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300821 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
David Stevens8dd014a2010-07-27 18:52:21 +0300822 /* They have slipped one in as we were
823 * doing that: check again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300824 vhost_disable_notify(&net->dev, vq);
David Stevens8dd014a2010-07-27 18:52:21 +0300825 continue;
826 }
827 /* Nothing new? Wait for eventfd to tell us
828 * they refilled. */
Jason Wang8241a1e2016-06-01 01:56:33 -0400829 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +0300830 }
Jason Wang5990a302018-01-04 11:14:27 +0800831 if (nvq->rx_ring)
Wei Xu6e474082017-12-01 05:10:36 -0500832 msg.msg_control = vhost_net_buf_consume(&nvq->rxq);
833 /* On overrun, truncate and discard */
834 if (unlikely(headcount > UIO_MAXIOV)) {
835 iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1);
836 err = sock->ops->recvmsg(sock, &msg,
837 1, MSG_DONTWAIT | MSG_TRUNC);
838 pr_debug("Discarded rx packet: len %zd\n", sock_len);
839 continue;
840 }
David Stevens8dd014a2010-07-27 18:52:21 +0300841 /* We don't need to be notified again. */
Al Viroba7438a2014-12-10 15:51:28 -0500842 iov_iter_init(&msg.msg_iter, READ, vq->iov, in, vhost_len);
843 fixup = msg.msg_iter;
844 if (unlikely((vhost_hlen))) {
845 /* We will supply the header ourselves
846 * TODO: support TSO.
847 */
848 iov_iter_advance(&msg.msg_iter, vhost_hlen);
Al Viroba7438a2014-12-10 15:51:28 -0500849 }
Ying Xue1b784142015-03-02 15:37:48 +0800850 err = sock->ops->recvmsg(sock, &msg,
David Stevens8dd014a2010-07-27 18:52:21 +0300851 sock_len, MSG_DONTWAIT | MSG_TRUNC);
852 /* Userspace might have consumed the packet meanwhile:
853 * it's not supposed to do this usually, but might be hard
854 * to prevent. Discard data we got (if any) and keep going. */
855 if (unlikely(err != sock_len)) {
856 pr_debug("Discarded rx packet: "
857 " len %d, expected %zd\n", err, sock_len);
858 vhost_discard_vq_desc(vq, headcount);
859 continue;
860 }
Al Viroba7438a2014-12-10 15:51:28 -0500861 /* Supply virtio_net_hdr if VHOST_NET_F_VIRTIO_NET_HDR */
Michael S. Tsirkin4c5a8442015-02-25 15:19:28 +0100862 if (unlikely(vhost_hlen)) {
863 if (copy_to_iter(&hdr, sizeof(hdr),
864 &fixup) != sizeof(hdr)) {
865 vq_err(vq, "Unable to write vnet_hdr "
866 "at addr %p\n", vq->iov->iov_base);
Jason Wang8241a1e2016-06-01 01:56:33 -0400867 goto out;
Michael S. Tsirkin4c5a8442015-02-25 15:19:28 +0100868 }
869 } else {
870 /* Header came from socket; we'll need to patch
871 * ->num_buffers over if VIRTIO_NET_F_MRG_RXBUF
872 */
873 iov_iter_advance(&fixup, sizeof(hdr));
David Stevens8dd014a2010-07-27 18:52:21 +0300874 }
875 /* TODO: Should check and handle checksum. */
Michael S. Tsirkin5201aa42015-02-03 11:07:06 +0200876
Jason Wang0960b642015-02-15 16:35:17 +0800877 num_buffers = cpu_to_vhost16(vq, headcount);
Jason Wangcfbdab92011-01-17 16:10:59 +0800878 if (likely(mergeable) &&
Michael S. Tsirkin0d79a492015-02-25 15:20:01 +0100879 copy_to_iter(&num_buffers, sizeof num_buffers,
880 &fixup) != sizeof num_buffers) {
David Stevens8dd014a2010-07-27 18:52:21 +0300881 vq_err(vq, "Failed num_buffers write");
882 vhost_discard_vq_desc(vq, headcount);
Jason Wang8241a1e2016-06-01 01:56:33 -0400883 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +0300884 }
Jason Wangf5a49412018-05-29 14:18:19 +0800885 nvq->done_idx += headcount;
886 if (nvq->done_idx > VHOST_RX_BATCH)
887 vhost_rx_signal_used(nvq);
David Stevens8dd014a2010-07-27 18:52:21 +0300888 if (unlikely(vq_log))
889 vhost_log_write(vq, vq_log, log, vhost_len);
890 total_len += vhost_len;
Paolo Abenidb688c22018-04-24 10:34:36 +0200891 if (unlikely(total_len >= VHOST_NET_WEIGHT) ||
892 unlikely(++recv_pkts >= VHOST_NET_PKT_WEIGHT)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300893 vhost_poll_queue(&vq->poll);
Jason Wang8241a1e2016-06-01 01:56:33 -0400894 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +0300895 }
896 }
Jason Wang8241a1e2016-06-01 01:56:33 -0400897 vhost_net_enable_vq(net, vq);
Asias He2e26af72013-05-07 14:54:33 +0800898out:
Jason Wangf5a49412018-05-29 14:18:19 +0800899 vhost_rx_signal_used(nvq);
David Stevens8dd014a2010-07-27 18:52:21 +0300900 mutex_unlock(&vq->mutex);
David Stevens8dd014a2010-07-27 18:52:21 +0300901}
902
Tejun Heoc23f34452010-06-02 20:40:00 +0200903static void handle_tx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000904{
Tejun Heoc23f34452010-06-02 20:40:00 +0200905 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
906 poll.work);
907 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
908
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000909 handle_tx(net);
910}
911
Tejun Heoc23f34452010-06-02 20:40:00 +0200912static void handle_rx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000913{
Tejun Heoc23f34452010-06-02 20:40:00 +0200914 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
915 poll.work);
916 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
917
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000918 handle_rx(net);
919}
920
Tejun Heoc23f34452010-06-02 20:40:00 +0200921static void handle_tx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000922{
Tejun Heoc23f34452010-06-02 20:40:00 +0200923 struct vhost_net *net = container_of(work, struct vhost_net,
924 poll[VHOST_NET_VQ_TX].work);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000925 handle_tx(net);
926}
927
Tejun Heoc23f34452010-06-02 20:40:00 +0200928static void handle_rx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000929{
Tejun Heoc23f34452010-06-02 20:40:00 +0200930 struct vhost_net *net = container_of(work, struct vhost_net,
931 poll[VHOST_NET_VQ_RX].work);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000932 handle_rx(net);
933}
934
935static int vhost_net_open(struct inode *inode, struct file *f)
936{
Michael S. Tsirkin23cc5a92013-01-23 21:46:47 +0100937 struct vhost_net *n;
Tejun Heoc23f34452010-06-02 20:40:00 +0200938 struct vhost_dev *dev;
Asias He3ab2e422013-04-27 11:16:48 +0800939 struct vhost_virtqueue **vqs;
Jason Wang5990a302018-01-04 11:14:27 +0800940 void **queue;
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +0800941 int i;
Tejun Heoc23f34452010-06-02 20:40:00 +0200942
Michal Hockodcda9b02017-07-12 14:36:45 -0700943 n = kvmalloc(sizeof *n, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hocko6c5ab652017-05-08 15:57:15 -0700944 if (!n)
945 return -ENOMEM;
Asias He3ab2e422013-04-27 11:16:48 +0800946 vqs = kmalloc(VHOST_NET_VQ_MAX * sizeof(*vqs), GFP_KERNEL);
947 if (!vqs) {
Romain Francoised04257b2014-06-12 10:42:34 +0200948 kvfree(n);
Asias He3ab2e422013-04-27 11:16:48 +0800949 return -ENOMEM;
950 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200951
Jason Wang5990a302018-01-04 11:14:27 +0800952 queue = kmalloc_array(VHOST_RX_BATCH, sizeof(void *),
Jason Wangc67df112017-05-17 12:14:45 +0800953 GFP_KERNEL);
954 if (!queue) {
955 kfree(vqs);
956 kvfree(n);
957 return -ENOMEM;
958 }
959 n->vqs[VHOST_NET_VQ_RX].rxq.queue = queue;
960
Tejun Heoc23f34452010-06-02 20:40:00 +0200961 dev = &n->dev;
Asias He3ab2e422013-04-27 11:16:48 +0800962 vqs[VHOST_NET_VQ_TX] = &n->vqs[VHOST_NET_VQ_TX].vq;
963 vqs[VHOST_NET_VQ_RX] = &n->vqs[VHOST_NET_VQ_RX].vq;
964 n->vqs[VHOST_NET_VQ_TX].vq.handle_kick = handle_tx_kick;
965 n->vqs[VHOST_NET_VQ_RX].vq.handle_kick = handle_rx_kick;
Asias He28394002013-04-27 15:07:46 +0800966 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
967 n->vqs[i].ubufs = NULL;
968 n->vqs[i].ubuf_info = NULL;
969 n->vqs[i].upend_idx = 0;
970 n->vqs[i].done_idx = 0;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300971 n->vqs[i].vhost_hlen = 0;
972 n->vqs[i].sock_hlen = 0;
Alexander Potapenkoab7e34b2018-03-09 14:50:32 +0800973 n->vqs[i].rx_ring = NULL;
Jason Wangc67df112017-05-17 12:14:45 +0800974 vhost_net_buf_init(&n->vqs[i].rxq);
Asias He28394002013-04-27 15:07:46 +0800975 }
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +0800976 vhost_dev_init(dev, vqs, VHOST_NET_VQ_MAX);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000977
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800978 vhost_poll_init(n->poll + VHOST_NET_VQ_TX, handle_tx_net, EPOLLOUT, dev);
979 vhost_poll_init(n->poll + VHOST_NET_VQ_RX, handle_rx_net, EPOLLIN, dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000980
981 f->private_data = n;
982
983 return 0;
984}
985
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000986static struct socket *vhost_net_stop_vq(struct vhost_net *n,
987 struct vhost_virtqueue *vq)
988{
989 struct socket *sock;
Jason Wangc67df112017-05-17 12:14:45 +0800990 struct vhost_net_virtqueue *nvq =
991 container_of(vq, struct vhost_net_virtqueue, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000992
993 mutex_lock(&vq->mutex);
Asias He22fa90c2013-05-07 14:54:36 +0800994 sock = vq->private_data;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000995 vhost_net_disable_vq(n, vq);
Asias He22fa90c2013-05-07 14:54:36 +0800996 vq->private_data = NULL;
Jason Wangc67df112017-05-17 12:14:45 +0800997 vhost_net_buf_unproduce(nvq);
Jason Wang303fd71b2018-03-09 14:50:33 +0800998 nvq->rx_ring = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000999 mutex_unlock(&vq->mutex);
1000 return sock;
1001}
1002
1003static void vhost_net_stop(struct vhost_net *n, struct socket **tx_sock,
1004 struct socket **rx_sock)
1005{
Asias He3ab2e422013-04-27 11:16:48 +08001006 *tx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_TX].vq);
1007 *rx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_RX].vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001008}
1009
1010static void vhost_net_flush_vq(struct vhost_net *n, int index)
1011{
1012 vhost_poll_flush(n->poll + index);
Asias He3ab2e422013-04-27 11:16:48 +08001013 vhost_poll_flush(&n->vqs[index].vq.poll);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001014}
1015
1016static void vhost_net_flush(struct vhost_net *n)
1017{
1018 vhost_net_flush_vq(n, VHOST_NET_VQ_TX);
1019 vhost_net_flush_vq(n, VHOST_NET_VQ_RX);
Asias He28394002013-04-27 15:07:46 +08001020 if (n->vqs[VHOST_NET_VQ_TX].ubufs) {
Asias He3ab2e422013-04-27 11:16:48 +08001021 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001022 n->tx_flush = true;
Asias He3ab2e422013-04-27 11:16:48 +08001023 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001024 /* Wait for all lower device DMAs done. */
Asias Hefe729a52013-05-06 16:38:24 +08001025 vhost_net_ubuf_put_and_wait(n->vqs[VHOST_NET_VQ_TX].ubufs);
Asias He3ab2e422013-04-27 11:16:48 +08001026 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001027 n->tx_flush = false;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +02001028 atomic_set(&n->vqs[VHOST_NET_VQ_TX].ubufs->refcount, 1);
Asias He3ab2e422013-04-27 11:16:48 +08001029 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001030 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001031}
1032
1033static int vhost_net_release(struct inode *inode, struct file *f)
1034{
1035 struct vhost_net *n = f->private_data;
1036 struct socket *tx_sock;
1037 struct socket *rx_sock;
1038
1039 vhost_net_stop(n, &tx_sock, &rx_sock);
1040 vhost_net_flush(n);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +00001041 vhost_dev_stop(&n->dev);
夷则(Caspar)f6f93f72017-12-25 00:08:58 +08001042 vhost_dev_cleanup(&n->dev);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001043 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001044 if (tx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001045 sockfd_put(tx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001046 if (rx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001047 sockfd_put(rx_sock);
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +02001048 /* Make sure no callbacks are outstanding */
1049 synchronize_rcu_bh();
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001050 /* We do an extra flush before freeing memory,
1051 * since jobs can re-queue themselves. */
1052 vhost_net_flush(n);
Jason Wangc67df112017-05-17 12:14:45 +08001053 kfree(n->vqs[VHOST_NET_VQ_RX].rxq.queue);
Asias He3ab2e422013-04-27 11:16:48 +08001054 kfree(n->dev.vqs);
Romain Francoised04257b2014-06-12 10:42:34 +02001055 kvfree(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001056 return 0;
1057}
1058
1059static struct socket *get_raw_socket(int fd)
1060{
1061 struct {
1062 struct sockaddr_ll sa;
1063 char buf[MAX_ADDR_LEN];
1064 } uaddr;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001065 int r;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001066 struct socket *sock = sockfd_lookup(fd, &r);
Krishna Kumard47effe2011-03-01 17:06:37 +05301067
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001068 if (!sock)
1069 return ERR_PTR(-ENOTSOCK);
1070
1071 /* Parameter checking */
1072 if (sock->sk->sk_type != SOCK_RAW) {
1073 r = -ESOCKTNOSUPPORT;
1074 goto err;
1075 }
1076
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001077 r = sock->ops->getname(sock, (struct sockaddr *)&uaddr.sa, 0);
1078 if (r < 0)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001079 goto err;
1080
1081 if (uaddr.sa.sll_family != AF_PACKET) {
1082 r = -EPFNOSUPPORT;
1083 goto err;
1084 }
1085 return sock;
1086err:
Al Viro09aaacf2014-03-05 20:39:00 -05001087 sockfd_put(sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001088 return ERR_PTR(r);
1089}
1090
Jason Wang5990a302018-01-04 11:14:27 +08001091static struct ptr_ring *get_tap_ptr_ring(int fd)
Jason Wangc67df112017-05-17 12:14:45 +08001092{
Jason Wang5990a302018-01-04 11:14:27 +08001093 struct ptr_ring *ring;
Jason Wangc67df112017-05-17 12:14:45 +08001094 struct file *file = fget(fd);
1095
1096 if (!file)
1097 return NULL;
Jason Wang5990a302018-01-04 11:14:27 +08001098 ring = tun_get_tx_ring(file);
1099 if (!IS_ERR(ring))
Jason Wangc67df112017-05-17 12:14:45 +08001100 goto out;
Jason Wang5990a302018-01-04 11:14:27 +08001101 ring = tap_get_ptr_ring(file);
1102 if (!IS_ERR(ring))
Jason Wangc67df112017-05-17 12:14:45 +08001103 goto out;
Jason Wang5990a302018-01-04 11:14:27 +08001104 ring = NULL;
Jason Wangc67df112017-05-17 12:14:45 +08001105out:
1106 fput(file);
Jason Wang5990a302018-01-04 11:14:27 +08001107 return ring;
Jason Wangc67df112017-05-17 12:14:45 +08001108}
1109
Arnd Bergmann501c7742010-02-18 05:46:50 +00001110static struct socket *get_tap_socket(int fd)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001111{
1112 struct file *file = fget(fd);
1113 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +05301114
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001115 if (!file)
1116 return ERR_PTR(-EBADF);
1117 sock = tun_get_socket(file);
Arnd Bergmann501c7742010-02-18 05:46:50 +00001118 if (!IS_ERR(sock))
1119 return sock;
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001120 sock = tap_get_socket(file);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001121 if (IS_ERR(sock))
1122 fput(file);
1123 return sock;
1124}
1125
1126static struct socket *get_socket(int fd)
1127{
1128 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +05301129
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001130 /* special case to disable backend */
1131 if (fd == -1)
1132 return NULL;
1133 sock = get_raw_socket(fd);
1134 if (!IS_ERR(sock))
1135 return sock;
Arnd Bergmann501c7742010-02-18 05:46:50 +00001136 sock = get_tap_socket(fd);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001137 if (!IS_ERR(sock))
1138 return sock;
1139 return ERR_PTR(-ENOTSOCK);
1140}
1141
1142static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
1143{
1144 struct socket *sock, *oldsock;
1145 struct vhost_virtqueue *vq;
Asias He28394002013-04-27 15:07:46 +08001146 struct vhost_net_virtqueue *nvq;
Asias Hefe729a52013-05-06 16:38:24 +08001147 struct vhost_net_ubuf_ref *ubufs, *oldubufs = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001148 int r;
1149
1150 mutex_lock(&n->dev.mutex);
1151 r = vhost_dev_check_owner(&n->dev);
1152 if (r)
1153 goto err;
1154
1155 if (index >= VHOST_NET_VQ_MAX) {
1156 r = -ENOBUFS;
1157 goto err;
1158 }
Asias He3ab2e422013-04-27 11:16:48 +08001159 vq = &n->vqs[index].vq;
Asias He28394002013-04-27 15:07:46 +08001160 nvq = &n->vqs[index];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001161 mutex_lock(&vq->mutex);
1162
1163 /* Verify that ring has been setup correctly. */
1164 if (!vhost_vq_access_ok(vq)) {
1165 r = -EFAULT;
Jeff Dike1dace8c2010-03-04 16:10:14 -05001166 goto err_vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001167 }
1168 sock = get_socket(fd);
1169 if (IS_ERR(sock)) {
1170 r = PTR_ERR(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -05001171 goto err_vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001172 }
1173
1174 /* start polling new socket */
Asias He22fa90c2013-05-07 14:54:36 +08001175 oldsock = vq->private_data;
David S. Miller11fe8832010-07-20 18:25:24 -07001176 if (sock != oldsock) {
Asias Hefe729a52013-05-06 16:38:24 +08001177 ubufs = vhost_net_ubuf_alloc(vq,
1178 sock && vhost_sock_zcopy(sock));
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001179 if (IS_ERR(ubufs)) {
1180 r = PTR_ERR(ubufs);
1181 goto err_ubufs;
1182 }
Jason Wang692a9982013-01-28 01:05:17 +00001183
Krishna Kumard47effe2011-03-01 17:06:37 +05301184 vhost_net_disable_vq(n, vq);
Asias He22fa90c2013-05-07 14:54:36 +08001185 vq->private_data = sock;
Jason Wangc67df112017-05-17 12:14:45 +08001186 vhost_net_buf_unproduce(nvq);
Greg Kurz80f7d032016-02-16 15:59:44 +01001187 r = vhost_vq_init_access(vq);
Jason Wangf59281d2011-06-21 18:04:27 +08001188 if (r)
Jason Wang692a9982013-01-28 01:05:17 +00001189 goto err_used;
Jason Wang2b8b3282013-01-28 01:05:18 +00001190 r = vhost_net_enable_vq(n, vq);
1191 if (r)
1192 goto err_used;
Jason Wang303fd71b2018-03-09 14:50:33 +08001193 if (index == VHOST_NET_VQ_RX)
1194 nvq->rx_ring = get_tap_ptr_ring(fd);
Jason Wang692a9982013-01-28 01:05:17 +00001195
Asias He28394002013-04-27 15:07:46 +08001196 oldubufs = nvq->ubufs;
1197 nvq->ubufs = ubufs;
Michael S. Tsirkin64e9a9b2012-12-03 07:31:51 +00001198
1199 n->tx_packets = 0;
1200 n->tx_zcopy_err = 0;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001201 n->tx_flush = false;
Jeff Dikedd1f4072010-03-04 16:10:14 -05001202 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001203
Michael S. Tsirkin1680e902010-07-15 15:19:12 +03001204 mutex_unlock(&vq->mutex);
1205
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001206 if (oldubufs) {
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +03001207 vhost_net_ubuf_put_wait_and_free(oldubufs);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001208 mutex_lock(&vq->mutex);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +00001209 vhost_zerocopy_signal_used(n, vq);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001210 mutex_unlock(&vq->mutex);
1211 }
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001212
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001213 if (oldsock) {
1214 vhost_net_flush_vq(n, index);
Al Viro09aaacf2014-03-05 20:39:00 -05001215 sockfd_put(oldsock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001216 }
Jeff Dike1dace8c2010-03-04 16:10:14 -05001217
Michael S. Tsirkin1680e902010-07-15 15:19:12 +03001218 mutex_unlock(&n->dev.mutex);
1219 return 0;
1220
Jason Wang692a9982013-01-28 01:05:17 +00001221err_used:
Asias He22fa90c2013-05-07 14:54:36 +08001222 vq->private_data = oldsock;
Jason Wang692a9982013-01-28 01:05:17 +00001223 vhost_net_enable_vq(n, vq);
1224 if (ubufs)
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +03001225 vhost_net_ubuf_put_wait_and_free(ubufs);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001226err_ubufs:
Al Viro09aaacf2014-03-05 20:39:00 -05001227 sockfd_put(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -05001228err_vq:
1229 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001230err:
1231 mutex_unlock(&n->dev.mutex);
1232 return r;
1233}
1234
1235static long vhost_net_reset_owner(struct vhost_net *n)
1236{
1237 struct socket *tx_sock = NULL;
1238 struct socket *rx_sock = NULL;
1239 long err;
Jason Wanga9709d62016-06-23 02:04:31 -04001240 struct vhost_umem *umem;
Krishna Kumard47effe2011-03-01 17:06:37 +05301241
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001242 mutex_lock(&n->dev.mutex);
1243 err = vhost_dev_check_owner(&n->dev);
1244 if (err)
1245 goto done;
Jason Wanga9709d62016-06-23 02:04:31 -04001246 umem = vhost_dev_reset_owner_prepare();
1247 if (!umem) {
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +03001248 err = -ENOMEM;
1249 goto done;
1250 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001251 vhost_net_stop(n, &tx_sock, &rx_sock);
1252 vhost_net_flush(n);
Jason Wang4cd87952018-01-25 22:03:52 +08001253 vhost_dev_stop(&n->dev);
Jason Wanga9709d62016-06-23 02:04:31 -04001254 vhost_dev_reset_owner(&n->dev, umem);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001255 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001256done:
1257 mutex_unlock(&n->dev.mutex);
1258 if (tx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001259 sockfd_put(tx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001260 if (rx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001261 sockfd_put(rx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001262 return err;
1263}
1264
1265static int vhost_net_set_features(struct vhost_net *n, u64 features)
1266{
David Stevens8dd014a2010-07-27 18:52:21 +03001267 size_t vhost_hlen, sock_hlen, hdr_len;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001268 int i;
David Stevens8dd014a2010-07-27 18:52:21 +03001269
Michael S. Tsirkine4fca7d2014-10-24 14:23:52 +03001270 hdr_len = (features & ((1ULL << VIRTIO_NET_F_MRG_RXBUF) |
1271 (1ULL << VIRTIO_F_VERSION_1))) ?
David Stevens8dd014a2010-07-27 18:52:21 +03001272 sizeof(struct virtio_net_hdr_mrg_rxbuf) :
1273 sizeof(struct virtio_net_hdr);
1274 if (features & (1 << VHOST_NET_F_VIRTIO_NET_HDR)) {
1275 /* vhost provides vnet_hdr */
1276 vhost_hlen = hdr_len;
1277 sock_hlen = 0;
1278 } else {
1279 /* socket provides vnet_hdr */
1280 vhost_hlen = 0;
1281 sock_hlen = hdr_len;
1282 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001283 mutex_lock(&n->dev.mutex);
1284 if ((features & (1 << VHOST_F_LOG_ALL)) &&
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001285 !vhost_log_access_ok(&n->dev))
1286 goto out_unlock;
1287
1288 if ((features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))) {
1289 if (vhost_init_device_iotlb(&n->dev, true))
1290 goto out_unlock;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001291 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001292
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001293 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +08001294 mutex_lock(&n->vqs[i].vq.mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001295 n->vqs[i].vq.acked_features = features;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001296 n->vqs[i].vhost_hlen = vhost_hlen;
1297 n->vqs[i].sock_hlen = sock_hlen;
Asias He3ab2e422013-04-27 11:16:48 +08001298 mutex_unlock(&n->vqs[i].vq.mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001299 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001300 mutex_unlock(&n->dev.mutex);
1301 return 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001302
1303out_unlock:
1304 mutex_unlock(&n->dev.mutex);
1305 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001306}
1307
Asias Heb1ad8492013-05-06 11:16:00 +08001308static long vhost_net_set_owner(struct vhost_net *n)
1309{
1310 int r;
1311
1312 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin05c05352013-06-06 15:20:39 +03001313 if (vhost_dev_has_owner(&n->dev)) {
1314 r = -EBUSY;
1315 goto out;
1316 }
Asias Heb1ad8492013-05-06 11:16:00 +08001317 r = vhost_net_set_ubuf_info(n);
1318 if (r)
1319 goto out;
1320 r = vhost_dev_set_owner(&n->dev);
1321 if (r)
1322 vhost_net_clear_ubuf_info(n);
1323 vhost_net_flush(n);
1324out:
1325 mutex_unlock(&n->dev.mutex);
1326 return r;
1327}
1328
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001329static long vhost_net_ioctl(struct file *f, unsigned int ioctl,
1330 unsigned long arg)
1331{
1332 struct vhost_net *n = f->private_data;
1333 void __user *argp = (void __user *)arg;
1334 u64 __user *featurep = argp;
1335 struct vhost_vring_file backend;
1336 u64 features;
1337 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301338
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001339 switch (ioctl) {
1340 case VHOST_NET_SET_BACKEND:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001341 if (copy_from_user(&backend, argp, sizeof backend))
1342 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001343 return vhost_net_set_backend(n, backend.index, backend.fd);
1344 case VHOST_GET_FEATURES:
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001345 features = VHOST_NET_FEATURES;
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001346 if (copy_to_user(featurep, &features, sizeof features))
1347 return -EFAULT;
1348 return 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001349 case VHOST_SET_FEATURES:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001350 if (copy_from_user(&features, featurep, sizeof features))
1351 return -EFAULT;
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001352 if (features & ~VHOST_NET_FEATURES)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001353 return -EOPNOTSUPP;
1354 return vhost_net_set_features(n, features);
1355 case VHOST_RESET_OWNER:
1356 return vhost_net_reset_owner(n);
Asias Heb1ad8492013-05-06 11:16:00 +08001357 case VHOST_SET_OWNER:
1358 return vhost_net_set_owner(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001359 default:
1360 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001361 r = vhost_dev_ioctl(&n->dev, ioctl, argp);
1362 if (r == -ENOIOCTLCMD)
1363 r = vhost_vring_ioctl(&n->dev, ioctl, argp);
1364 else
1365 vhost_net_flush(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001366 mutex_unlock(&n->dev.mutex);
1367 return r;
1368 }
1369}
1370
1371#ifdef CONFIG_COMPAT
1372static long vhost_net_compat_ioctl(struct file *f, unsigned int ioctl,
1373 unsigned long arg)
1374{
1375 return vhost_net_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1376}
1377#endif
1378
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001379static ssize_t vhost_net_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
1380{
1381 struct file *file = iocb->ki_filp;
1382 struct vhost_net *n = file->private_data;
1383 struct vhost_dev *dev = &n->dev;
1384 int noblock = file->f_flags & O_NONBLOCK;
1385
1386 return vhost_chr_read_iter(dev, to, noblock);
1387}
1388
1389static ssize_t vhost_net_chr_write_iter(struct kiocb *iocb,
1390 struct iov_iter *from)
1391{
1392 struct file *file = iocb->ki_filp;
1393 struct vhost_net *n = file->private_data;
1394 struct vhost_dev *dev = &n->dev;
1395
1396 return vhost_chr_write_iter(dev, from);
1397}
1398
Al Viroafc9a422017-07-03 06:39:46 -04001399static __poll_t vhost_net_chr_poll(struct file *file, poll_table *wait)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001400{
1401 struct vhost_net *n = file->private_data;
1402 struct vhost_dev *dev = &n->dev;
1403
1404 return vhost_chr_poll(file, dev, wait);
1405}
1406
Tobias Klauser373a83a2010-05-17 15:12:49 +02001407static const struct file_operations vhost_net_fops = {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001408 .owner = THIS_MODULE,
1409 .release = vhost_net_release,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001410 .read_iter = vhost_net_chr_read_iter,
1411 .write_iter = vhost_net_chr_write_iter,
1412 .poll = vhost_net_chr_poll,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001413 .unlocked_ioctl = vhost_net_ioctl,
1414#ifdef CONFIG_COMPAT
1415 .compat_ioctl = vhost_net_compat_ioctl,
1416#endif
1417 .open = vhost_net_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001418 .llseek = noop_llseek,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001419};
1420
1421static struct miscdevice vhost_net_misc = {
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001422 .minor = VHOST_NET_MINOR,
1423 .name = "vhost-net",
1424 .fops = &vhost_net_fops,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001425};
1426
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001427static int vhost_net_init(void)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001428{
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001429 if (experimental_zcopytx)
Asias Hefe729a52013-05-06 16:38:24 +08001430 vhost_net_enable_zcopy(VHOST_NET_VQ_TX);
Tejun Heoc23f34452010-06-02 20:40:00 +02001431 return misc_register(&vhost_net_misc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001432}
1433module_init(vhost_net_init);
1434
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001435static void vhost_net_exit(void)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001436{
1437 misc_deregister(&vhost_net_misc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001438}
1439module_exit(vhost_net_exit);
1440
1441MODULE_VERSION("0.0.1");
1442MODULE_LICENSE("GPL v2");
1443MODULE_AUTHOR("Michael S. Tsirkin");
1444MODULE_DESCRIPTION("Host kernel accelerator for virtio net");
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001445MODULE_ALIAS_MISCDEV(VHOST_NET_MINOR);
1446MODULE_ALIAS("devname:vhost-net");