blob: dd4e0a301635a701c0c9a7929ec4e684a06a6c99 [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 {
Jason Wang429711a2018-08-06 11:17:47 +080081 VHOST_NET_BACKEND_FEATURES = (1ULL << VHOST_BACKEND_F_IOTLB_MSG_V2)
82};
83
84enum {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000085 VHOST_NET_VQ_RX = 0,
86 VHOST_NET_VQ_TX = 1,
87 VHOST_NET_VQ_MAX = 2,
88};
89
Asias Hefe729a52013-05-06 16:38:24 +080090struct vhost_net_ubuf_ref {
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +020091 /* refcount follows semantics similar to kref:
92 * 0: object is released
93 * 1: no outstanding ubufs
94 * >1: outstanding ubufs
95 */
96 atomic_t refcount;
Asias He28394002013-04-27 15:07:46 +080097 wait_queue_head_t wait;
98 struct vhost_virtqueue *vq;
99};
100
Jason Wangd0d86972018-07-20 08:15:20 +0800101#define VHOST_NET_BATCH 64
Jason Wangc67df112017-05-17 12:14:45 +0800102struct vhost_net_buf {
Jason Wang5990a302018-01-04 11:14:27 +0800103 void **queue;
Jason Wangc67df112017-05-17 12:14:45 +0800104 int tail;
105 int head;
106};
107
Asias He3ab2e422013-04-27 11:16:48 +0800108struct vhost_net_virtqueue {
109 struct vhost_virtqueue vq;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300110 size_t vhost_hlen;
111 size_t sock_hlen;
Asias He28394002013-04-27 15:07:46 +0800112 /* vhost zerocopy support fields below: */
113 /* last used idx for outstanding DMA zerocopy buffers */
114 int upend_idx;
Jason Wangf5a49412018-05-29 14:18:19 +0800115 /* For TX, first used idx for DMA done zerocopy buffers
116 * For RX, number of batched heads
117 */
Asias He28394002013-04-27 15:07:46 +0800118 int done_idx;
Jason Wang0a0be132018-09-12 11:17:09 +0800119 /* Number of XDP frames batched */
120 int batched_xdp;
Asias He28394002013-04-27 15:07:46 +0800121 /* an array of userspace buffers info */
122 struct ubuf_info *ubuf_info;
123 /* Reference counting for outstanding ubufs.
124 * Protected by vq mutex. Writers must also take device mutex. */
Asias Hefe729a52013-05-06 16:38:24 +0800125 struct vhost_net_ubuf_ref *ubufs;
Jason Wang5990a302018-01-04 11:14:27 +0800126 struct ptr_ring *rx_ring;
Jason Wangc67df112017-05-17 12:14:45 +0800127 struct vhost_net_buf rxq;
Jason Wang0a0be132018-09-12 11:17:09 +0800128 /* Batched XDP buffs */
129 struct xdp_buff *xdp;
Asias He3ab2e422013-04-27 11:16:48 +0800130};
131
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000132struct vhost_net {
133 struct vhost_dev dev;
Asias He3ab2e422013-04-27 11:16:48 +0800134 struct vhost_net_virtqueue vqs[VHOST_NET_VQ_MAX];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000135 struct vhost_poll poll[VHOST_NET_VQ_MAX];
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000136 /* Number of TX recently submitted.
137 * Protected by tx vq lock. */
138 unsigned tx_packets;
139 /* Number of times zerocopy TX recently failed.
140 * Protected by tx vq lock. */
141 unsigned tx_zcopy_err;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200142 /* Flush in progress. Protected by tx vq lock. */
143 bool tx_flush;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000144};
145
Asias Hefe729a52013-05-06 16:38:24 +0800146static unsigned vhost_net_zcopy_mask __read_mostly;
Asias He28394002013-04-27 15:07:46 +0800147
Jason Wangc67df112017-05-17 12:14:45 +0800148static void *vhost_net_buf_get_ptr(struct vhost_net_buf *rxq)
149{
150 if (rxq->tail != rxq->head)
151 return rxq->queue[rxq->head];
152 else
153 return NULL;
154}
155
156static int vhost_net_buf_get_size(struct vhost_net_buf *rxq)
157{
158 return rxq->tail - rxq->head;
159}
160
161static int vhost_net_buf_is_empty(struct vhost_net_buf *rxq)
162{
163 return rxq->tail == rxq->head;
164}
165
166static void *vhost_net_buf_consume(struct vhost_net_buf *rxq)
167{
168 void *ret = vhost_net_buf_get_ptr(rxq);
169 ++rxq->head;
170 return ret;
171}
172
173static int vhost_net_buf_produce(struct vhost_net_virtqueue *nvq)
174{
175 struct vhost_net_buf *rxq = &nvq->rxq;
176
177 rxq->head = 0;
Jason Wang5990a302018-01-04 11:14:27 +0800178 rxq->tail = ptr_ring_consume_batched(nvq->rx_ring, rxq->queue,
Jason Wangd0d86972018-07-20 08:15:20 +0800179 VHOST_NET_BATCH);
Jason Wangc67df112017-05-17 12:14:45 +0800180 return rxq->tail;
181}
182
183static void vhost_net_buf_unproduce(struct vhost_net_virtqueue *nvq)
184{
185 struct vhost_net_buf *rxq = &nvq->rxq;
186
Jason Wang5990a302018-01-04 11:14:27 +0800187 if (nvq->rx_ring && !vhost_net_buf_is_empty(rxq)) {
188 ptr_ring_unconsume(nvq->rx_ring, rxq->queue + rxq->head,
189 vhost_net_buf_get_size(rxq),
Jason Wang3a403072018-03-09 14:50:34 +0800190 tun_ptr_free);
Jason Wangc67df112017-05-17 12:14:45 +0800191 rxq->head = rxq->tail = 0;
192 }
193}
194
Jason Wangfc72d1d2018-01-04 11:14:28 +0800195static int vhost_net_buf_peek_len(void *ptr)
196{
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +0200197 if (tun_is_xdp_frame(ptr)) {
198 struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr);
Jason Wangfc72d1d2018-01-04 11:14:28 +0800199
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +0200200 return xdpf->len;
Jason Wangfc72d1d2018-01-04 11:14:28 +0800201 }
202
203 return __skb_array_len_with_tag(ptr);
204}
205
Jason Wangc67df112017-05-17 12:14:45 +0800206static int vhost_net_buf_peek(struct vhost_net_virtqueue *nvq)
207{
208 struct vhost_net_buf *rxq = &nvq->rxq;
209
210 if (!vhost_net_buf_is_empty(rxq))
211 goto out;
212
213 if (!vhost_net_buf_produce(nvq))
214 return 0;
215
216out:
Jason Wangfc72d1d2018-01-04 11:14:28 +0800217 return vhost_net_buf_peek_len(vhost_net_buf_get_ptr(rxq));
Jason Wangc67df112017-05-17 12:14:45 +0800218}
219
220static void vhost_net_buf_init(struct vhost_net_buf *rxq)
221{
222 rxq->head = rxq->tail = 0;
223}
224
Asias Hefe729a52013-05-06 16:38:24 +0800225static void vhost_net_enable_zcopy(int vq)
Asias He28394002013-04-27 15:07:46 +0800226{
Asias Hefe729a52013-05-06 16:38:24 +0800227 vhost_net_zcopy_mask |= 0x1 << vq;
Asias He28394002013-04-27 15:07:46 +0800228}
229
Asias Hefe729a52013-05-06 16:38:24 +0800230static struct vhost_net_ubuf_ref *
231vhost_net_ubuf_alloc(struct vhost_virtqueue *vq, bool zcopy)
Asias He28394002013-04-27 15:07:46 +0800232{
Asias Hefe729a52013-05-06 16:38:24 +0800233 struct vhost_net_ubuf_ref *ubufs;
Asias He28394002013-04-27 15:07:46 +0800234 /* No zero copy backend? Nothing to count. */
235 if (!zcopy)
236 return NULL;
237 ubufs = kmalloc(sizeof(*ubufs), GFP_KERNEL);
238 if (!ubufs)
239 return ERR_PTR(-ENOMEM);
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200240 atomic_set(&ubufs->refcount, 1);
Asias He28394002013-04-27 15:07:46 +0800241 init_waitqueue_head(&ubufs->wait);
242 ubufs->vq = vq;
243 return ubufs;
244}
245
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200246static int vhost_net_ubuf_put(struct vhost_net_ubuf_ref *ubufs)
Asias He28394002013-04-27 15:07:46 +0800247{
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200248 int r = atomic_sub_return(1, &ubufs->refcount);
249 if (unlikely(!r))
250 wake_up(&ubufs->wait);
251 return r;
Asias He28394002013-04-27 15:07:46 +0800252}
253
Asias Hefe729a52013-05-06 16:38:24 +0800254static void vhost_net_ubuf_put_and_wait(struct vhost_net_ubuf_ref *ubufs)
Asias He28394002013-04-27 15:07:46 +0800255{
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200256 vhost_net_ubuf_put(ubufs);
257 wait_event(ubufs->wait, !atomic_read(&ubufs->refcount));
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +0300258}
259
260static void vhost_net_ubuf_put_wait_and_free(struct vhost_net_ubuf_ref *ubufs)
261{
262 vhost_net_ubuf_put_and_wait(ubufs);
Asias He28394002013-04-27 15:07:46 +0800263 kfree(ubufs);
264}
265
Asias Heb1ad8492013-05-06 11:16:00 +0800266static void vhost_net_clear_ubuf_info(struct vhost_net *n)
267{
Asias Heb1ad8492013-05-06 11:16:00 +0800268 int i;
269
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300270 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
271 kfree(n->vqs[i].ubuf_info);
272 n->vqs[i].ubuf_info = NULL;
Asias Heb1ad8492013-05-06 11:16:00 +0800273 }
274}
275
Asias He0a1febf2013-06-05 21:17:38 +0800276static int vhost_net_set_ubuf_info(struct vhost_net *n)
Asias He28394002013-04-27 15:07:46 +0800277{
278 bool zcopy;
279 int i;
280
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300281 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
Asias Hefe729a52013-05-06 16:38:24 +0800282 zcopy = vhost_net_zcopy_mask & (0x1 << i);
Asias He28394002013-04-27 15:07:46 +0800283 if (!zcopy)
284 continue;
Kees Cook6da2ec52018-06-12 13:55:00 -0700285 n->vqs[i].ubuf_info =
286 kmalloc_array(UIO_MAXIOV,
287 sizeof(*n->vqs[i].ubuf_info),
288 GFP_KERNEL);
Asias He28394002013-04-27 15:07:46 +0800289 if (!n->vqs[i].ubuf_info)
290 goto err;
291 }
292 return 0;
293
294err:
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300295 vhost_net_clear_ubuf_info(n);
Asias He28394002013-04-27 15:07:46 +0800296 return -ENOMEM;
297}
298
Asias He0a1febf2013-06-05 21:17:38 +0800299static void vhost_net_vq_reset(struct vhost_net *n)
Asias He28394002013-04-27 15:07:46 +0800300{
301 int i;
302
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300303 vhost_net_clear_ubuf_info(n);
304
Asias He28394002013-04-27 15:07:46 +0800305 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
306 n->vqs[i].done_idx = 0;
307 n->vqs[i].upend_idx = 0;
308 n->vqs[i].ubufs = NULL;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300309 n->vqs[i].vhost_hlen = 0;
310 n->vqs[i].sock_hlen = 0;
Jason Wangc67df112017-05-17 12:14:45 +0800311 vhost_net_buf_init(&n->vqs[i].rxq);
Asias He28394002013-04-27 15:07:46 +0800312 }
313
314}
315
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000316static void vhost_net_tx_packet(struct vhost_net *net)
317{
318 ++net->tx_packets;
319 if (net->tx_packets < 1024)
320 return;
321 net->tx_packets = 0;
322 net->tx_zcopy_err = 0;
323}
324
325static void vhost_net_tx_err(struct vhost_net *net)
326{
327 ++net->tx_zcopy_err;
328}
329
330static bool vhost_net_tx_select_zcopy(struct vhost_net *net)
331{
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200332 /* TX flush waits for outstanding DMAs to be done.
333 * Don't start new DMAs.
334 */
335 return !net->tx_flush &&
336 net->tx_packets / 64 >= net->tx_zcopy_err;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000337}
338
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000339static bool vhost_sock_zcopy(struct socket *sock)
340{
341 return unlikely(experimental_zcopytx) &&
342 sock_flag(sock->sk, SOCK_ZEROCOPY);
343}
344
Jason Wang0a0be132018-09-12 11:17:09 +0800345static bool vhost_sock_xdp(struct socket *sock)
346{
347 return sock_flag(sock->sk, SOCK_XDP);
348}
349
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000350/* In case of DMA done not in order in lower device driver for some reason.
351 * upend_idx is used to track end of used idx, done_idx is used to track head
352 * of used idx. Once lower device DMA done contiguously, we will signal KVM
353 * guest used idx.
354 */
Jason Wang094afe72013-09-02 16:40:56 +0800355static void vhost_zerocopy_signal_used(struct vhost_net *net,
356 struct vhost_virtqueue *vq)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000357{
Asias He28394002013-04-27 15:07:46 +0800358 struct vhost_net_virtqueue *nvq =
359 container_of(vq, struct vhost_net_virtqueue, vq);
Jason Wangc92112a2013-09-02 16:40:57 +0800360 int i, add;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000361 int j = 0;
362
Asias He28394002013-04-27 15:07:46 +0800363 for (i = nvq->done_idx; i != nvq->upend_idx; i = (i + 1) % UIO_MAXIOV) {
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000364 if (vq->heads[i].len == VHOST_DMA_FAILED_LEN)
365 vhost_net_tx_err(net);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000366 if (VHOST_DMA_IS_DONE(vq->heads[i].len)) {
367 vq->heads[i].len = VHOST_DMA_CLEAR_LEN;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000368 ++j;
369 } else
370 break;
371 }
Jason Wangc92112a2013-09-02 16:40:57 +0800372 while (j) {
373 add = min(UIO_MAXIOV - nvq->done_idx, j);
374 vhost_add_used_and_signal_n(vq->dev, vq,
375 &vq->heads[nvq->done_idx], add);
376 nvq->done_idx = (nvq->done_idx + add) % UIO_MAXIOV;
377 j -= add;
378 }
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000379}
380
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000381static void vhost_zerocopy_callback(struct ubuf_info *ubuf, bool success)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000382{
Asias Hefe729a52013-05-06 16:38:24 +0800383 struct vhost_net_ubuf_ref *ubufs = ubuf->ctx;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000384 struct vhost_virtqueue *vq = ubufs->vq;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200385 int cnt;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000386
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +0200387 rcu_read_lock_bh();
388
Jason Wang19c73b32013-09-02 16:41:00 +0800389 /* set len to mark this desc buffers done DMA */
390 vq->heads[ubuf->desc].len = success ?
391 VHOST_DMA_DONE_LEN : VHOST_DMA_FAILED_LEN;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200392 cnt = vhost_net_ubuf_put(ubufs);
Jason Wang19c73b32013-09-02 16:41:00 +0800393
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000394 /*
395 * Trigger polling thread if guest stopped submitting new buffers:
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200396 * in this case, the refcount after decrement will eventually reach 1.
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000397 * We also trigger polling periodically after each 16 packets
398 * (the value 16 here is more or less arbitrary, it's tuned to trigger
399 * less than 10% of times).
400 */
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200401 if (cnt <= 1 || !(cnt % 16))
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000402 vhost_poll_queue(&vq->poll);
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +0200403
404 rcu_read_unlock_bh();
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000405}
406
Jason Wang03088132016-03-04 06:24:53 -0500407static inline unsigned long busy_clock(void)
408{
409 return local_clock() >> 10;
410}
411
Toshiaki Makita027b1762018-07-03 16:31:32 +0900412static bool vhost_can_busy_poll(unsigned long endtime)
Jason Wang03088132016-03-04 06:24:53 -0500413{
Toshiaki Makita027b1762018-07-03 16:31:32 +0900414 return likely(!need_resched() && !time_after(busy_clock(), endtime) &&
415 !signal_pending(current));
Jason Wang03088132016-03-04 06:24:53 -0500416}
417
Jason Wang8241a1e2016-06-01 01:56:33 -0400418static void vhost_net_disable_vq(struct vhost_net *n,
419 struct vhost_virtqueue *vq)
420{
421 struct vhost_net_virtqueue *nvq =
422 container_of(vq, struct vhost_net_virtqueue, vq);
423 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
424 if (!vq->private_data)
425 return;
426 vhost_poll_stop(poll);
427}
428
429static int vhost_net_enable_vq(struct vhost_net *n,
430 struct vhost_virtqueue *vq)
431{
432 struct vhost_net_virtqueue *nvq =
433 container_of(vq, struct vhost_net_virtqueue, vq);
434 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
435 struct socket *sock;
436
437 sock = vq->private_data;
438 if (!sock)
439 return 0;
440
441 return vhost_poll_start(poll, sock->file);
442}
443
Jason Wang4afb52c2018-07-20 08:15:21 +0800444static void vhost_net_signal_used(struct vhost_net_virtqueue *nvq)
445{
446 struct vhost_virtqueue *vq = &nvq->vq;
447 struct vhost_dev *dev = vq->dev;
448
449 if (!nvq->done_idx)
450 return;
451
452 vhost_add_used_and_signal_n(dev, vq, vq->heads, nvq->done_idx);
453 nvq->done_idx = 0;
454}
455
Jason Wang0a0be132018-09-12 11:17:09 +0800456static void vhost_tx_batch(struct vhost_net *net,
457 struct vhost_net_virtqueue *nvq,
458 struct socket *sock,
459 struct msghdr *msghdr)
460{
461 struct tun_msg_ctl ctl = {
462 .type = TUN_MSG_PTR,
463 .num = nvq->batched_xdp,
464 .ptr = nvq->xdp,
465 };
466 int err;
467
468 if (nvq->batched_xdp == 0)
469 goto signal_used;
470
471 msghdr->msg_control = &ctl;
472 err = sock->ops->sendmsg(sock, msghdr, 0);
473 if (unlikely(err < 0)) {
474 vq_err(&nvq->vq, "Fail to batch sending packets\n");
475 return;
476 }
477
478signal_used:
479 vhost_net_signal_used(nvq);
480 nvq->batched_xdp = 0;
481}
482
Jason Wang03088132016-03-04 06:24:53 -0500483static int vhost_net_tx_get_vq_desc(struct vhost_net *net,
Jason Wang4afb52c2018-07-20 08:15:21 +0800484 struct vhost_net_virtqueue *nvq,
Toshiaki Makita027b1762018-07-03 16:31:32 +0900485 unsigned int *out_num, unsigned int *in_num,
Jason Wang0a0be132018-09-12 11:17:09 +0800486 struct msghdr *msghdr, bool *busyloop_intr)
Jason Wang03088132016-03-04 06:24:53 -0500487{
Jason Wang4afb52c2018-07-20 08:15:21 +0800488 struct vhost_virtqueue *vq = &nvq->vq;
Jason Wang03088132016-03-04 06:24:53 -0500489 unsigned long uninitialized_var(endtime);
490 int r = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400491 out_num, in_num, NULL, NULL);
Jason Wang03088132016-03-04 06:24:53 -0500492
493 if (r == vq->num && vq->busyloop_timeout) {
Jason Wang0a0be132018-09-12 11:17:09 +0800494 /* Flush batched packets first */
Jason Wang4afb52c2018-07-20 08:15:21 +0800495 if (!vhost_sock_zcopy(vq->private_data))
Jason Wang0a0be132018-09-12 11:17:09 +0800496 vhost_tx_batch(net, nvq, vq->private_data, msghdr);
Jason Wang03088132016-03-04 06:24:53 -0500497 preempt_disable();
498 endtime = busy_clock() + vq->busyloop_timeout;
Toshiaki Makita027b1762018-07-03 16:31:32 +0900499 while (vhost_can_busy_poll(endtime)) {
500 if (vhost_has_work(vq->dev)) {
501 *busyloop_intr = true;
502 break;
503 }
504 if (!vhost_vq_avail_empty(vq->dev, vq))
505 break;
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200506 cpu_relax();
Toshiaki Makita027b1762018-07-03 16:31:32 +0900507 }
Jason Wang03088132016-03-04 06:24:53 -0500508 preempt_enable();
509 r = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400510 out_num, in_num, NULL, NULL);
Jason Wang03088132016-03-04 06:24:53 -0500511 }
512
513 return r;
514}
515
Jason Wang0ed005c2017-01-18 15:02:02 +0800516static bool vhost_exceeds_maxpend(struct vhost_net *net)
517{
518 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
519 struct vhost_virtqueue *vq = &nvq->vq;
520
Willem de Bruijn1e6f7452017-10-06 13:22:31 -0400521 return (nvq->upend_idx + UIO_MAXIOV - nvq->done_idx) % UIO_MAXIOV >
522 min_t(unsigned int, VHOST_MAX_PEND, vq->num >> 2);
Jason Wang0ed005c2017-01-18 15:02:02 +0800523}
524
Jason Wangb0d0ea52018-07-20 08:15:14 +0800525static size_t init_iov_iter(struct vhost_virtqueue *vq, struct iov_iter *iter,
526 size_t hdr_size, int out)
527{
528 /* Skip header. TODO: support TSO. */
529 size_t len = iov_length(vq->iov, out);
530
531 iov_iter_init(iter, WRITE, vq->iov, out, len);
532 iov_iter_advance(iter, hdr_size);
533
534 return iov_iter_count(iter);
535}
536
Jason Wang272f35c2018-07-20 08:15:15 +0800537static bool vhost_exceeds_weight(int pkts, int total_len)
538{
539 return total_len >= VHOST_NET_WEIGHT ||
540 pkts >= VHOST_NET_PKT_WEIGHT;
541}
542
Jason Wanga2a91a12018-07-20 08:15:16 +0800543static int get_tx_bufs(struct vhost_net *net,
544 struct vhost_net_virtqueue *nvq,
545 struct msghdr *msg,
546 unsigned int *out, unsigned int *in,
547 size_t *len, bool *busyloop_intr)
548{
549 struct vhost_virtqueue *vq = &nvq->vq;
550 int ret;
551
Jason Wang0a0be132018-09-12 11:17:09 +0800552 ret = vhost_net_tx_get_vq_desc(net, nvq, out, in, msg, busyloop_intr);
Jason Wang4afb52c2018-07-20 08:15:21 +0800553
Jason Wanga2a91a12018-07-20 08:15:16 +0800554 if (ret < 0 || ret == vq->num)
555 return ret;
556
557 if (*in) {
558 vq_err(vq, "Unexpected descriptor format for TX: out %d, int %d\n",
559 *out, *in);
560 return -EFAULT;
561 }
562
563 /* Sanity check */
564 *len = init_iov_iter(vq, &msg->msg_iter, nvq->vhost_hlen, *out);
565 if (*len == 0) {
566 vq_err(vq, "Unexpected header len for TX: %zd expected %zd\n",
567 *len, nvq->vhost_hlen);
568 return -EFAULT;
569 }
570
571 return ret;
572}
573
Jason Wangc92a8a82018-07-20 08:15:17 +0800574static bool tx_can_batch(struct vhost_virtqueue *vq, size_t total_len)
575{
576 return total_len < VHOST_NET_WEIGHT &&
577 !vhost_vq_avail_empty(vq->dev, vq);
578}
579
Jason Wang0a0be132018-09-12 11:17:09 +0800580#define VHOST_NET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
581
582static int vhost_net_build_xdp(struct vhost_net_virtqueue *nvq,
583 struct iov_iter *from)
584{
585 struct vhost_virtqueue *vq = &nvq->vq;
586 struct socket *sock = vq->private_data;
587 struct page_frag *alloc_frag = &current->task_frag;
588 struct virtio_net_hdr *gso;
589 struct xdp_buff *xdp = &nvq->xdp[nvq->batched_xdp];
590 struct tun_xdp_hdr *hdr;
591 size_t len = iov_iter_count(from);
592 int headroom = vhost_sock_xdp(sock) ? XDP_PACKET_HEADROOM : 0;
593 int buflen = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
594 int pad = SKB_DATA_ALIGN(VHOST_NET_RX_PAD + headroom + nvq->sock_hlen);
595 int sock_hlen = nvq->sock_hlen;
596 void *buf;
597 int copied;
598
599 if (unlikely(len < nvq->sock_hlen))
600 return -EFAULT;
601
602 if (SKB_DATA_ALIGN(len + pad) +
603 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) > PAGE_SIZE)
604 return -ENOSPC;
605
606 buflen += SKB_DATA_ALIGN(len + pad);
607 alloc_frag->offset = ALIGN((u64)alloc_frag->offset, SMP_CACHE_BYTES);
608 if (unlikely(!skb_page_frag_refill(buflen, alloc_frag, GFP_KERNEL)))
609 return -ENOMEM;
610
611 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
612 copied = copy_page_from_iter(alloc_frag->page,
613 alloc_frag->offset +
614 offsetof(struct tun_xdp_hdr, gso),
615 sock_hlen, from);
616 if (copied != sock_hlen)
617 return -EFAULT;
618
619 hdr = buf;
620 gso = &hdr->gso;
621
622 if ((gso->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
623 vhost16_to_cpu(vq, gso->csum_start) +
624 vhost16_to_cpu(vq, gso->csum_offset) + 2 >
625 vhost16_to_cpu(vq, gso->hdr_len)) {
626 gso->hdr_len = cpu_to_vhost16(vq,
627 vhost16_to_cpu(vq, gso->csum_start) +
628 vhost16_to_cpu(vq, gso->csum_offset) + 2);
629
630 if (vhost16_to_cpu(vq, gso->hdr_len) > len)
631 return -EINVAL;
632 }
633
634 len -= sock_hlen;
635 copied = copy_page_from_iter(alloc_frag->page,
636 alloc_frag->offset + pad,
637 len, from);
638 if (copied != len)
639 return -EFAULT;
640
641 xdp->data_hard_start = buf;
642 xdp->data = buf + pad;
643 xdp->data_end = xdp->data + len;
644 hdr->buflen = buflen;
645
646 get_page(alloc_frag->page);
647 alloc_frag->offset += buflen;
648
649 ++nvq->batched_xdp;
650
651 return 0;
652}
653
Jason Wang0d20bdf2018-07-20 08:15:18 +0800654static void handle_tx_copy(struct vhost_net *net, struct socket *sock)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000655{
Asias He28394002013-04-27 15:07:46 +0800656 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300657 struct vhost_virtqueue *vq = &nvq->vq;
Al Viro98a527a2014-12-10 15:00:58 -0500658 unsigned out, in;
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300659 int head;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000660 struct msghdr msg = {
661 .msg_name = NULL,
662 .msg_namelen = 0,
663 .msg_control = NULL,
664 .msg_controllen = 0,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000665 .msg_flags = MSG_DONTWAIT,
666 };
667 size_t len, total_len = 0;
Jason Wang70181d512013-04-10 20:50:48 +0000668 int err;
haibinzhang(张海斌)a2ac9992018-04-09 07:22:17 +0000669 int sent_pkts = 0;
Jason Wang0a0be132018-09-12 11:17:09 +0800670 bool sock_can_batch = (sock->sk->sk_sndbuf == INT_MAX);
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100671
Jason Wang0d20bdf2018-07-20 08:15:18 +0800672 for (;;) {
673 bool busyloop_intr = false;
Asias He2e26af72013-05-07 14:54:33 +0800674
Jason Wang0a0be132018-09-12 11:17:09 +0800675 if (nvq->done_idx == VHOST_NET_BATCH)
676 vhost_tx_batch(net, nvq, sock, &msg);
677
Jason Wang0d20bdf2018-07-20 08:15:18 +0800678 head = get_tx_bufs(net, nvq, &msg, &out, &in, &len,
679 &busyloop_intr);
680 /* On error, stop handling until the next kick. */
681 if (unlikely(head < 0))
682 break;
683 /* Nothing new? Wait for eventfd to tell us they refilled. */
684 if (head == vq->num) {
685 if (unlikely(busyloop_intr)) {
686 vhost_poll_queue(&vq->poll);
687 } else if (unlikely(vhost_enable_notify(&net->dev,
688 vq))) {
689 vhost_disable_notify(&net->dev, vq);
690 continue;
691 }
692 break;
693 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400694
Jason Wang0d20bdf2018-07-20 08:15:18 +0800695 total_len += len;
Jason Wang0a0be132018-09-12 11:17:09 +0800696
697 /* For simplicity, TX batching is only enabled if
698 * sndbuf is unlimited.
699 */
700 if (sock_can_batch) {
701 err = vhost_net_build_xdp(nvq, &msg.msg_iter);
702 if (!err) {
703 goto done;
704 } else if (unlikely(err != -ENOSPC)) {
705 vhost_tx_batch(net, nvq, sock, &msg);
706 vhost_discard_vq_desc(vq, 1);
707 vhost_net_enable_vq(net, vq);
708 break;
709 }
710
711 /* We can't build XDP buff, go for single
712 * packet path but let's flush batched
713 * packets.
714 */
715 vhost_tx_batch(net, nvq, sock, &msg);
716 msg.msg_control = NULL;
717 } else {
718 if (tx_can_batch(vq, total_len))
719 msg.msg_flags |= MSG_MORE;
720 else
721 msg.msg_flags &= ~MSG_MORE;
722 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000723
Jason Wang0d20bdf2018-07-20 08:15:18 +0800724 /* TODO: Check specific error and bomb out unless ENOBUFS? */
725 err = sock->ops->sendmsg(sock, &msg, len);
726 if (unlikely(err < 0)) {
727 vhost_discard_vq_desc(vq, 1);
728 vhost_net_enable_vq(net, vq);
729 break;
730 }
731 if (err != len)
732 pr_debug("Truncated TX packet: len %d != %zd\n",
733 err, len);
Jason Wang0a0be132018-09-12 11:17:09 +0800734done:
735 vq->heads[nvq->done_idx].id = cpu_to_vhost32(vq, head);
736 vq->heads[nvq->done_idx].len = 0;
737 ++nvq->done_idx;
Jason Wang0d20bdf2018-07-20 08:15:18 +0800738 if (vhost_exceeds_weight(++sent_pkts, total_len)) {
739 vhost_poll_queue(&vq->poll);
740 break;
741 }
742 }
Jason Wang4afb52c2018-07-20 08:15:21 +0800743
Jason Wang0a0be132018-09-12 11:17:09 +0800744 vhost_tx_batch(net, nvq, sock, &msg);
Jason Wang0d20bdf2018-07-20 08:15:18 +0800745}
746
747static void handle_tx_zerocopy(struct vhost_net *net, struct socket *sock)
748{
749 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
750 struct vhost_virtqueue *vq = &nvq->vq;
751 unsigned out, in;
752 int head;
753 struct msghdr msg = {
754 .msg_name = NULL,
755 .msg_namelen = 0,
756 .msg_control = NULL,
757 .msg_controllen = 0,
758 .msg_flags = MSG_DONTWAIT,
759 };
Jason Wangfe8dd452018-09-12 11:17:06 +0800760 struct tun_msg_ctl ctl;
Jason Wang0d20bdf2018-07-20 08:15:18 +0800761 size_t len, total_len = 0;
762 int err;
763 struct vhost_net_ubuf_ref *uninitialized_var(ubufs);
764 bool zcopy_used;
765 int sent_pkts = 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000766
767 for (;;) {
Toshiaki Makita027b1762018-07-03 16:31:32 +0900768 bool busyloop_intr;
769
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000770 /* Release DMAs done buffers first */
Jason Wang0d20bdf2018-07-20 08:15:18 +0800771 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000772
Toshiaki Makita027b1762018-07-03 16:31:32 +0900773 busyloop_intr = false;
Jason Wanga2a91a12018-07-20 08:15:16 +0800774 head = get_tx_bufs(net, nvq, &msg, &out, &in, &len,
775 &busyloop_intr);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300776 /* On error, stop handling until the next kick. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +0300777 if (unlikely(head < 0))
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300778 break;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000779 /* Nothing new? Wait for eventfd to tell us they refilled. */
780 if (head == vq->num) {
Toshiaki Makita027b1762018-07-03 16:31:32 +0900781 if (unlikely(busyloop_intr)) {
782 vhost_poll_queue(&vq->poll);
783 } else if (unlikely(vhost_enable_notify(&net->dev, vq))) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300784 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000785 continue;
786 }
787 break;
788 }
Jason Wangce21a022013-09-02 16:40:59 +0800789
Jason Wang0d20bdf2018-07-20 08:15:18 +0800790 zcopy_used = len >= VHOST_GOODCOPY_LEN
791 && !vhost_exceeds_maxpend(net)
792 && vhost_net_tx_select_zcopy(net);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200793
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000794 /* use msg_control to pass vhost zerocopy ubuf info to skb */
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200795 if (zcopy_used) {
Jason Wangce21a022013-09-02 16:40:59 +0800796 struct ubuf_info *ubuf;
797 ubuf = nvq->ubuf_info + nvq->upend_idx;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000798
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300799 vq->heads[nvq->upend_idx].id = cpu_to_vhost32(vq, head);
Jason Wangce21a022013-09-02 16:40:59 +0800800 vq->heads[nvq->upend_idx].len = VHOST_DMA_IN_PROGRESS;
801 ubuf->callback = vhost_zerocopy_callback;
802 ubuf->ctx = nvq->ubufs;
803 ubuf->desc = nvq->upend_idx;
Eric Dumazetc1d1b432017-08-31 16:48:22 -0700804 refcount_set(&ubuf->refcnt, 1);
Jason Wangfe8dd452018-09-12 11:17:06 +0800805 msg.msg_control = &ctl;
806 ctl.type = TUN_MSG_UBUF;
807 ctl.ptr = ubuf;
808 msg.msg_controllen = sizeof(ctl);
Jason Wangce21a022013-09-02 16:40:59 +0800809 ubufs = nvq->ubufs;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200810 atomic_inc(&ubufs->refcount);
Asias He28394002013-04-27 15:07:46 +0800811 nvq->upend_idx = (nvq->upend_idx + 1) % UIO_MAXIOV;
Jason Wangce21a022013-09-02 16:40:59 +0800812 } else {
Jason Wang4364d5f2013-06-05 15:40:46 +0800813 msg.msg_control = NULL;
Jason Wangce21a022013-09-02 16:40:59 +0800814 ubufs = NULL;
815 }
Jason Wang0ed005c2017-01-18 15:02:02 +0800816 total_len += len;
Jason Wangc92a8a82018-07-20 08:15:17 +0800817 if (tx_can_batch(vq, total_len) &&
Jason Wang0ed005c2017-01-18 15:02:02 +0800818 likely(!vhost_exceeds_maxpend(net))) {
819 msg.msg_flags |= MSG_MORE;
820 } else {
821 msg.msg_flags &= ~MSG_MORE;
822 }
823
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000824 /* TODO: Check specific error and bomb out unless ENOBUFS? */
Ying Xue1b784142015-03-02 15:37:48 +0800825 err = sock->ops->sendmsg(sock, &msg, len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000826 if (unlikely(err < 0)) {
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200827 if (zcopy_used) {
Jason Wangce21a022013-09-02 16:40:59 +0800828 vhost_net_ubuf_put(ubufs);
Asias He28394002013-04-27 15:07:46 +0800829 nvq->upend_idx = ((unsigned)nvq->upend_idx - 1)
830 % UIO_MAXIOV;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000831 }
David Stevens8dd014a2010-07-27 18:52:21 +0300832 vhost_discard_vq_desc(vq, 1);
Jason Wangfeb88922017-11-13 11:45:34 +0800833 vhost_net_enable_vq(net, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000834 break;
835 }
836 if (err != len)
Michael S. Tsirkin95c0ec62010-06-24 17:10:25 +0300837 pr_debug("Truncated TX packet: "
838 " len %d != %zd\n", err, len);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200839 if (!zcopy_used)
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000840 vhost_add_used_and_signal(&net->dev, vq, head, 0);
Jason Wangc8fb2172012-05-02 11:42:41 +0800841 else
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000842 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000843 vhost_net_tx_packet(net);
Jason Wang272f35c2018-07-20 08:15:15 +0800844 if (unlikely(vhost_exceeds_weight(++sent_pkts, total_len))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000845 vhost_poll_queue(&vq->poll);
846 break;
847 }
848 }
Jason Wang0d20bdf2018-07-20 08:15:18 +0800849}
850
851/* Expects to be always run from workqueue - which acts as
852 * read-size critical section for our kind of RCU. */
853static void handle_tx(struct vhost_net *net)
854{
855 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
856 struct vhost_virtqueue *vq = &nvq->vq;
857 struct socket *sock;
858
859 mutex_lock(&vq->mutex);
860 sock = vq->private_data;
861 if (!sock)
862 goto out;
863
864 if (!vq_iotlb_prefetch(vq))
865 goto out;
866
867 vhost_disable_notify(&net->dev, vq);
868 vhost_net_disable_vq(net, vq);
869
870 if (vhost_sock_zcopy(sock))
871 handle_tx_zerocopy(net, sock);
872 else
873 handle_tx_copy(net, sock);
874
Asias He2e26af72013-05-07 14:54:33 +0800875out:
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000876 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000877}
878
Jason Wangc67df112017-05-17 12:14:45 +0800879static int peek_head_len(struct vhost_net_virtqueue *rvq, struct sock *sk)
David Stevens8dd014a2010-07-27 18:52:21 +0300880{
881 struct sk_buff *head;
882 int len = 0;
Jason Wang783e3982011-01-17 16:11:17 +0800883 unsigned long flags;
David Stevens8dd014a2010-07-27 18:52:21 +0300884
Jason Wang5990a302018-01-04 11:14:27 +0800885 if (rvq->rx_ring)
Jason Wangc67df112017-05-17 12:14:45 +0800886 return vhost_net_buf_peek(rvq);
Jason Wang1576d982016-06-30 14:45:36 +0800887
Jason Wang783e3982011-01-17 16:11:17 +0800888 spin_lock_irqsave(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300889 head = skb_peek(&sk->sk_receive_queue);
Basil Gorc53cff5e2012-05-03 22:55:23 +0000890 if (likely(head)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300891 len = head->len;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100892 if (skb_vlan_tag_present(head))
Basil Gorc53cff5e2012-05-03 22:55:23 +0000893 len += VLAN_HLEN;
894 }
895
Jason Wang783e3982011-01-17 16:11:17 +0800896 spin_unlock_irqrestore(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300897 return len;
898}
899
Jason Wang1576d982016-06-30 14:45:36 +0800900static int sk_has_rx_data(struct sock *sk)
901{
902 struct socket *sock = sk->sk_socket;
903
904 if (sock->ops->peek_len)
905 return sock->ops->peek_len(sock);
906
907 return skb_queue_empty(&sk->sk_receive_queue);
908}
909
Toshiaki Makitabe294a52018-07-03 16:31:33 +0900910static int vhost_net_rx_peek_head_len(struct vhost_net *net, struct sock *sk,
911 bool *busyloop_intr)
Jason Wang03088132016-03-04 06:24:53 -0500912{
Toshiaki Makita28b9b332018-07-03 16:31:31 +0900913 struct vhost_net_virtqueue *rnvq = &net->vqs[VHOST_NET_VQ_RX];
914 struct vhost_net_virtqueue *tnvq = &net->vqs[VHOST_NET_VQ_TX];
Toshiaki Makita6369fec2018-07-03 16:31:34 +0900915 struct vhost_virtqueue *rvq = &rnvq->vq;
Toshiaki Makita28b9b332018-07-03 16:31:31 +0900916 struct vhost_virtqueue *tvq = &tnvq->vq;
Jason Wang03088132016-03-04 06:24:53 -0500917 unsigned long uninitialized_var(endtime);
Toshiaki Makita28b9b332018-07-03 16:31:31 +0900918 int len = peek_head_len(rnvq, sk);
Jason Wang03088132016-03-04 06:24:53 -0500919
Toshiaki Makita28b9b332018-07-03 16:31:31 +0900920 if (!len && tvq->busyloop_timeout) {
Jason Wangf5a49412018-05-29 14:18:19 +0800921 /* Flush batched heads first */
Jason Wang09c32482018-07-20 08:15:19 +0800922 vhost_net_signal_used(rnvq);
Jason Wang03088132016-03-04 06:24:53 -0500923 /* Both tx vq and rx socket were polled here */
Toshiaki Makita28b9b332018-07-03 16:31:31 +0900924 mutex_lock_nested(&tvq->mutex, 1);
925 vhost_disable_notify(&net->dev, tvq);
Jason Wang03088132016-03-04 06:24:53 -0500926
927 preempt_disable();
Toshiaki Makita28b9b332018-07-03 16:31:31 +0900928 endtime = busy_clock() + tvq->busyloop_timeout;
Jason Wang03088132016-03-04 06:24:53 -0500929
Toshiaki Makitabe294a52018-07-03 16:31:33 +0900930 while (vhost_can_busy_poll(endtime)) {
931 if (vhost_has_work(&net->dev)) {
932 *busyloop_intr = true;
933 break;
934 }
Toshiaki Makita6369fec2018-07-03 16:31:34 +0900935 if ((sk_has_rx_data(sk) &&
936 !vhost_vq_avail_empty(&net->dev, rvq)) ||
Toshiaki Makitabe294a52018-07-03 16:31:33 +0900937 !vhost_vq_avail_empty(&net->dev, tvq))
938 break;
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200939 cpu_relax();
Toshiaki Makitabe294a52018-07-03 16:31:33 +0900940 }
Jason Wang03088132016-03-04 06:24:53 -0500941
942 preempt_enable();
943
Toshiaki Makita28b9b332018-07-03 16:31:31 +0900944 if (!vhost_vq_avail_empty(&net->dev, tvq)) {
945 vhost_poll_queue(&tvq->poll);
946 } else if (unlikely(vhost_enable_notify(&net->dev, tvq))) {
947 vhost_disable_notify(&net->dev, tvq);
948 vhost_poll_queue(&tvq->poll);
Jason Wang8b949be2017-09-05 09:22:05 +0800949 }
950
Toshiaki Makita28b9b332018-07-03 16:31:31 +0900951 mutex_unlock(&tvq->mutex);
Jason Wang03088132016-03-04 06:24:53 -0500952
Toshiaki Makita28b9b332018-07-03 16:31:31 +0900953 len = peek_head_len(rnvq, sk);
Jason Wang03088132016-03-04 06:24:53 -0500954 }
955
956 return len;
957}
958
David Stevens8dd014a2010-07-27 18:52:21 +0300959/* This is a multi-buffer version of vhost_get_desc, that works if
960 * vq has read descriptors only.
961 * @vq - the relevant virtqueue
962 * @datalen - data length we'll be reading
963 * @iovcount - returned count of io vectors we fill
964 * @log - vhost log
965 * @log_num - log offset
Jason Wang94249362011-01-17 16:11:08 +0800966 * @quota - headcount quota, 1 for big buffer
David Stevens8dd014a2010-07-27 18:52:21 +0300967 * returns number of buffer heads allocated, negative on error
968 */
969static int get_rx_bufs(struct vhost_virtqueue *vq,
970 struct vring_used_elem *heads,
971 int datalen,
972 unsigned *iovcount,
973 struct vhost_log *log,
Jason Wang94249362011-01-17 16:11:08 +0800974 unsigned *log_num,
975 unsigned int quota)
David Stevens8dd014a2010-07-27 18:52:21 +0300976{
977 unsigned int out, in;
978 int seg = 0;
979 int headcount = 0;
980 unsigned d;
981 int r, nlogs = 0;
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300982 /* len is always initialized before use since we are always called with
983 * datalen > 0.
984 */
985 u32 uninitialized_var(len);
David Stevens8dd014a2010-07-27 18:52:21 +0300986
Jason Wang94249362011-01-17 16:11:08 +0800987 while (datalen > 0 && headcount < quota) {
Jason Wange0e9b402010-09-14 23:53:05 +0800988 if (unlikely(seg >= UIO_MAXIOV)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300989 r = -ENOBUFS;
990 goto err;
991 }
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300992 r = vhost_get_vq_desc(vq, vq->iov + seg,
David Stevens8dd014a2010-07-27 18:52:21 +0300993 ARRAY_SIZE(vq->iov) - seg, &out,
994 &in, log, log_num);
Michael S. Tsirkina39ee442014-03-27 12:53:37 +0200995 if (unlikely(r < 0))
996 goto err;
997
998 d = r;
David Stevens8dd014a2010-07-27 18:52:21 +0300999 if (d == vq->num) {
1000 r = 0;
1001 goto err;
1002 }
1003 if (unlikely(out || in <= 0)) {
1004 vq_err(vq, "unexpected descriptor format for RX: "
1005 "out %d, in %d\n", out, in);
1006 r = -EINVAL;
1007 goto err;
1008 }
1009 if (unlikely(log)) {
1010 nlogs += *log_num;
1011 log += *log_num;
1012 }
Michael S. Tsirkin8b386942014-10-24 14:19:48 +03001013 heads[headcount].id = cpu_to_vhost32(vq, d);
1014 len = iov_length(vq->iov + seg, in);
1015 heads[headcount].len = cpu_to_vhost32(vq, len);
1016 datalen -= len;
David Stevens8dd014a2010-07-27 18:52:21 +03001017 ++headcount;
1018 seg += in;
1019 }
Michael S. Tsirkin99975cc2015-01-07 10:51:00 +02001020 heads[headcount - 1].len = cpu_to_vhost32(vq, len + datalen);
David Stevens8dd014a2010-07-27 18:52:21 +03001021 *iovcount = seg;
1022 if (unlikely(log))
1023 *log_num = nlogs;
Michael S. Tsirkind8316f32014-03-27 12:00:26 +02001024
1025 /* Detect overrun */
1026 if (unlikely(datalen > 0)) {
1027 r = UIO_MAXIOV + 1;
1028 goto err;
1029 }
David Stevens8dd014a2010-07-27 18:52:21 +03001030 return headcount;
1031err:
1032 vhost_discard_vq_desc(vq, headcount);
1033 return r;
1034}
1035
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001036/* Expects to be always run from workqueue - which acts as
1037 * read-size critical section for our kind of RCU. */
Jason Wang94249362011-01-17 16:11:08 +08001038static void handle_rx(struct vhost_net *net)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001039{
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001040 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_RX];
1041 struct vhost_virtqueue *vq = &nvq->vq;
David Stevens8dd014a2010-07-27 18:52:21 +03001042 unsigned uninitialized_var(in), log;
1043 struct vhost_log *vq_log;
1044 struct msghdr msg = {
1045 .msg_name = NULL,
1046 .msg_namelen = 0,
1047 .msg_control = NULL, /* FIXME: get and handle RX aux data. */
1048 .msg_controllen = 0,
David Stevens8dd014a2010-07-27 18:52:21 +03001049 .msg_flags = MSG_DONTWAIT,
1050 };
Jason Wang0960b642015-02-15 16:35:17 +08001051 struct virtio_net_hdr hdr = {
1052 .flags = 0,
1053 .gso_type = VIRTIO_NET_HDR_GSO_NONE
David Stevens8dd014a2010-07-27 18:52:21 +03001054 };
David Stevens8dd014a2010-07-27 18:52:21 +03001055 size_t total_len = 0;
Michael S. Tsirkin910a5782012-10-24 20:37:51 +02001056 int err, mergeable;
Jason Wangf5a49412018-05-29 14:18:19 +08001057 s16 headcount;
David Stevens8dd014a2010-07-27 18:52:21 +03001058 size_t vhost_hlen, sock_hlen;
1059 size_t vhost_len, sock_len;
Toshiaki Makitabe294a52018-07-03 16:31:33 +09001060 bool busyloop_intr = false;
Asias He2e26af72013-05-07 14:54:33 +08001061 struct socket *sock;
Al Viroba7438ae2014-12-10 15:51:28 -05001062 struct iov_iter fixup;
Jason Wang0960b642015-02-15 16:35:17 +08001063 __virtio16 num_buffers;
Paolo Abenidb688c22018-04-24 10:34:36 +02001064 int recv_pkts = 0;
David Stevens8dd014a2010-07-27 18:52:21 +03001065
Jason Wangaaa31492018-03-26 16:10:23 +08001066 mutex_lock_nested(&vq->mutex, 0);
Asias He2e26af72013-05-07 14:54:33 +08001067 sock = vq->private_data;
1068 if (!sock)
1069 goto out;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001070
1071 if (!vq_iotlb_prefetch(vq))
1072 goto out;
1073
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001074 vhost_disable_notify(&net->dev, vq);
Jason Wang8241a1e2016-06-01 01:56:33 -04001075 vhost_net_disable_vq(net, vq);
Asias He2e26af72013-05-07 14:54:33 +08001076
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001077 vhost_hlen = nvq->vhost_hlen;
1078 sock_hlen = nvq->sock_hlen;
David Stevens8dd014a2010-07-27 18:52:21 +03001079
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001080 vq_log = unlikely(vhost_has_feature(vq, VHOST_F_LOG_ALL)) ?
David Stevens8dd014a2010-07-27 18:52:21 +03001081 vq->log : NULL;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001082 mergeable = vhost_has_feature(vq, VIRTIO_NET_F_MRG_RXBUF);
David Stevens8dd014a2010-07-27 18:52:21 +03001083
Toshiaki Makitabe294a52018-07-03 16:31:33 +09001084 while ((sock_len = vhost_net_rx_peek_head_len(net, sock->sk,
1085 &busyloop_intr))) {
David Stevens8dd014a2010-07-27 18:52:21 +03001086 sock_len += sock_hlen;
1087 vhost_len = sock_len + vhost_hlen;
Jason Wangf5a49412018-05-29 14:18:19 +08001088 headcount = get_rx_bufs(vq, vq->heads + nvq->done_idx,
1089 vhost_len, &in, vq_log, &log,
Jason Wang94249362011-01-17 16:11:08 +08001090 likely(mergeable) ? UIO_MAXIOV : 1);
David Stevens8dd014a2010-07-27 18:52:21 +03001091 /* On error, stop handling until the next kick. */
1092 if (unlikely(headcount < 0))
Jason Wang8241a1e2016-06-01 01:56:33 -04001093 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +03001094 /* OK, now we need to know about added descriptors. */
1095 if (!headcount) {
Toshiaki Makita6369fec2018-07-03 16:31:34 +09001096 if (unlikely(busyloop_intr)) {
1097 vhost_poll_queue(&vq->poll);
1098 } else if (unlikely(vhost_enable_notify(&net->dev, vq))) {
David Stevens8dd014a2010-07-27 18:52:21 +03001099 /* They have slipped one in as we were
1100 * doing that: check again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001101 vhost_disable_notify(&net->dev, vq);
David Stevens8dd014a2010-07-27 18:52:21 +03001102 continue;
1103 }
1104 /* Nothing new? Wait for eventfd to tell us
1105 * they refilled. */
Jason Wang8241a1e2016-06-01 01:56:33 -04001106 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +03001107 }
Toshiaki Makita6369fec2018-07-03 16:31:34 +09001108 busyloop_intr = false;
Jason Wang5990a302018-01-04 11:14:27 +08001109 if (nvq->rx_ring)
Wei Xu6e474082017-12-01 05:10:36 -05001110 msg.msg_control = vhost_net_buf_consume(&nvq->rxq);
1111 /* On overrun, truncate and discard */
1112 if (unlikely(headcount > UIO_MAXIOV)) {
1113 iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1);
1114 err = sock->ops->recvmsg(sock, &msg,
1115 1, MSG_DONTWAIT | MSG_TRUNC);
1116 pr_debug("Discarded rx packet: len %zd\n", sock_len);
1117 continue;
1118 }
David Stevens8dd014a2010-07-27 18:52:21 +03001119 /* We don't need to be notified again. */
Al Viroba7438ae2014-12-10 15:51:28 -05001120 iov_iter_init(&msg.msg_iter, READ, vq->iov, in, vhost_len);
1121 fixup = msg.msg_iter;
1122 if (unlikely((vhost_hlen))) {
1123 /* We will supply the header ourselves
1124 * TODO: support TSO.
1125 */
1126 iov_iter_advance(&msg.msg_iter, vhost_hlen);
Al Viroba7438ae2014-12-10 15:51:28 -05001127 }
Ying Xue1b784142015-03-02 15:37:48 +08001128 err = sock->ops->recvmsg(sock, &msg,
David Stevens8dd014a2010-07-27 18:52:21 +03001129 sock_len, MSG_DONTWAIT | MSG_TRUNC);
1130 /* Userspace might have consumed the packet meanwhile:
1131 * it's not supposed to do this usually, but might be hard
1132 * to prevent. Discard data we got (if any) and keep going. */
1133 if (unlikely(err != sock_len)) {
1134 pr_debug("Discarded rx packet: "
1135 " len %d, expected %zd\n", err, sock_len);
1136 vhost_discard_vq_desc(vq, headcount);
1137 continue;
1138 }
Al Viroba7438ae2014-12-10 15:51:28 -05001139 /* Supply virtio_net_hdr if VHOST_NET_F_VIRTIO_NET_HDR */
Michael S. Tsirkin4c5a8442015-02-25 15:19:28 +01001140 if (unlikely(vhost_hlen)) {
1141 if (copy_to_iter(&hdr, sizeof(hdr),
1142 &fixup) != sizeof(hdr)) {
1143 vq_err(vq, "Unable to write vnet_hdr "
1144 "at addr %p\n", vq->iov->iov_base);
Jason Wang8241a1e2016-06-01 01:56:33 -04001145 goto out;
Michael S. Tsirkin4c5a8442015-02-25 15:19:28 +01001146 }
1147 } else {
1148 /* Header came from socket; we'll need to patch
1149 * ->num_buffers over if VIRTIO_NET_F_MRG_RXBUF
1150 */
1151 iov_iter_advance(&fixup, sizeof(hdr));
David Stevens8dd014a2010-07-27 18:52:21 +03001152 }
1153 /* TODO: Should check and handle checksum. */
Michael S. Tsirkin5201aa42015-02-03 11:07:06 +02001154
Jason Wang0960b642015-02-15 16:35:17 +08001155 num_buffers = cpu_to_vhost16(vq, headcount);
Jason Wangcfbdab92011-01-17 16:10:59 +08001156 if (likely(mergeable) &&
Michael S. Tsirkin0d79a492015-02-25 15:20:01 +01001157 copy_to_iter(&num_buffers, sizeof num_buffers,
1158 &fixup) != sizeof num_buffers) {
David Stevens8dd014a2010-07-27 18:52:21 +03001159 vq_err(vq, "Failed num_buffers write");
1160 vhost_discard_vq_desc(vq, headcount);
Jason Wang8241a1e2016-06-01 01:56:33 -04001161 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +03001162 }
Jason Wangf5a49412018-05-29 14:18:19 +08001163 nvq->done_idx += headcount;
Jason Wangd0d86972018-07-20 08:15:20 +08001164 if (nvq->done_idx > VHOST_NET_BATCH)
Jason Wang09c32482018-07-20 08:15:19 +08001165 vhost_net_signal_used(nvq);
David Stevens8dd014a2010-07-27 18:52:21 +03001166 if (unlikely(vq_log))
1167 vhost_log_write(vq, vq_log, log, vhost_len);
1168 total_len += vhost_len;
Jason Wang272f35c2018-07-20 08:15:15 +08001169 if (unlikely(vhost_exceeds_weight(++recv_pkts, total_len))) {
David Stevens8dd014a2010-07-27 18:52:21 +03001170 vhost_poll_queue(&vq->poll);
Jason Wang8241a1e2016-06-01 01:56:33 -04001171 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +03001172 }
1173 }
Toshiaki Makitabe294a52018-07-03 16:31:33 +09001174 if (unlikely(busyloop_intr))
1175 vhost_poll_queue(&vq->poll);
1176 else
1177 vhost_net_enable_vq(net, vq);
Asias He2e26af72013-05-07 14:54:33 +08001178out:
Jason Wang09c32482018-07-20 08:15:19 +08001179 vhost_net_signal_used(nvq);
David Stevens8dd014a2010-07-27 18:52:21 +03001180 mutex_unlock(&vq->mutex);
David Stevens8dd014a2010-07-27 18:52:21 +03001181}
1182
Tejun Heoc23f34452010-06-02 20:40:00 +02001183static void handle_tx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001184{
Tejun Heoc23f34452010-06-02 20:40:00 +02001185 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1186 poll.work);
1187 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
1188
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001189 handle_tx(net);
1190}
1191
Tejun Heoc23f34452010-06-02 20:40:00 +02001192static void handle_rx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001193{
Tejun Heoc23f34452010-06-02 20:40:00 +02001194 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1195 poll.work);
1196 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
1197
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001198 handle_rx(net);
1199}
1200
Tejun Heoc23f34452010-06-02 20:40:00 +02001201static void handle_tx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001202{
Tejun Heoc23f34452010-06-02 20:40:00 +02001203 struct vhost_net *net = container_of(work, struct vhost_net,
1204 poll[VHOST_NET_VQ_TX].work);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001205 handle_tx(net);
1206}
1207
Tejun Heoc23f34452010-06-02 20:40:00 +02001208static void handle_rx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001209{
Tejun Heoc23f34452010-06-02 20:40:00 +02001210 struct vhost_net *net = container_of(work, struct vhost_net,
1211 poll[VHOST_NET_VQ_RX].work);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001212 handle_rx(net);
1213}
1214
1215static int vhost_net_open(struct inode *inode, struct file *f)
1216{
Michael S. Tsirkin23cc5a92013-01-23 21:46:47 +01001217 struct vhost_net *n;
Tejun Heoc23f34452010-06-02 20:40:00 +02001218 struct vhost_dev *dev;
Asias He3ab2e422013-04-27 11:16:48 +08001219 struct vhost_virtqueue **vqs;
Jason Wang5990a302018-01-04 11:14:27 +08001220 void **queue;
Jason Wang0a0be132018-09-12 11:17:09 +08001221 struct xdp_buff *xdp;
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +08001222 int i;
Tejun Heoc23f34452010-06-02 20:40:00 +02001223
Michal Hockodcda9b02017-07-12 14:36:45 -07001224 n = kvmalloc(sizeof *n, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hocko6c5ab652017-05-08 15:57:15 -07001225 if (!n)
1226 return -ENOMEM;
Kees Cook6da2ec52018-06-12 13:55:00 -07001227 vqs = kmalloc_array(VHOST_NET_VQ_MAX, sizeof(*vqs), GFP_KERNEL);
Asias He3ab2e422013-04-27 11:16:48 +08001228 if (!vqs) {
Romain Francoised04257b2014-06-12 10:42:34 +02001229 kvfree(n);
Asias He3ab2e422013-04-27 11:16:48 +08001230 return -ENOMEM;
1231 }
Tejun Heoc23f34452010-06-02 20:40:00 +02001232
Jason Wangd0d86972018-07-20 08:15:20 +08001233 queue = kmalloc_array(VHOST_NET_BATCH, sizeof(void *),
Jason Wangc67df112017-05-17 12:14:45 +08001234 GFP_KERNEL);
1235 if (!queue) {
1236 kfree(vqs);
1237 kvfree(n);
1238 return -ENOMEM;
1239 }
1240 n->vqs[VHOST_NET_VQ_RX].rxq.queue = queue;
1241
Jason Wang0a0be132018-09-12 11:17:09 +08001242 xdp = kmalloc_array(VHOST_NET_BATCH, sizeof(*xdp), GFP_KERNEL);
1243 if (!xdp) {
1244 kfree(vqs);
1245 kvfree(n);
1246 kfree(queue);
1247 }
1248 n->vqs[VHOST_NET_VQ_TX].xdp = xdp;
1249
Tejun Heoc23f34452010-06-02 20:40:00 +02001250 dev = &n->dev;
Asias He3ab2e422013-04-27 11:16:48 +08001251 vqs[VHOST_NET_VQ_TX] = &n->vqs[VHOST_NET_VQ_TX].vq;
1252 vqs[VHOST_NET_VQ_RX] = &n->vqs[VHOST_NET_VQ_RX].vq;
1253 n->vqs[VHOST_NET_VQ_TX].vq.handle_kick = handle_tx_kick;
1254 n->vqs[VHOST_NET_VQ_RX].vq.handle_kick = handle_rx_kick;
Asias He28394002013-04-27 15:07:46 +08001255 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
1256 n->vqs[i].ubufs = NULL;
1257 n->vqs[i].ubuf_info = NULL;
1258 n->vqs[i].upend_idx = 0;
1259 n->vqs[i].done_idx = 0;
Jason Wang0a0be132018-09-12 11:17:09 +08001260 n->vqs[i].batched_xdp = 0;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001261 n->vqs[i].vhost_hlen = 0;
1262 n->vqs[i].sock_hlen = 0;
Alexander Potapenkoab7e34b2018-03-09 14:50:32 +08001263 n->vqs[i].rx_ring = NULL;
Jason Wangc67df112017-05-17 12:14:45 +08001264 vhost_net_buf_init(&n->vqs[i].rxq);
Asias He28394002013-04-27 15:07:46 +08001265 }
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +08001266 vhost_dev_init(dev, vqs, VHOST_NET_VQ_MAX);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001267
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001268 vhost_poll_init(n->poll + VHOST_NET_VQ_TX, handle_tx_net, EPOLLOUT, dev);
1269 vhost_poll_init(n->poll + VHOST_NET_VQ_RX, handle_rx_net, EPOLLIN, dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001270
1271 f->private_data = n;
1272
1273 return 0;
1274}
1275
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001276static struct socket *vhost_net_stop_vq(struct vhost_net *n,
1277 struct vhost_virtqueue *vq)
1278{
1279 struct socket *sock;
Jason Wangc67df112017-05-17 12:14:45 +08001280 struct vhost_net_virtqueue *nvq =
1281 container_of(vq, struct vhost_net_virtqueue, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001282
1283 mutex_lock(&vq->mutex);
Asias He22fa90c2013-05-07 14:54:36 +08001284 sock = vq->private_data;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001285 vhost_net_disable_vq(n, vq);
Asias He22fa90c2013-05-07 14:54:36 +08001286 vq->private_data = NULL;
Jason Wangc67df112017-05-17 12:14:45 +08001287 vhost_net_buf_unproduce(nvq);
Jason Wang303fd71b2018-03-09 14:50:33 +08001288 nvq->rx_ring = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001289 mutex_unlock(&vq->mutex);
1290 return sock;
1291}
1292
1293static void vhost_net_stop(struct vhost_net *n, struct socket **tx_sock,
1294 struct socket **rx_sock)
1295{
Asias He3ab2e422013-04-27 11:16:48 +08001296 *tx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_TX].vq);
1297 *rx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_RX].vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001298}
1299
1300static void vhost_net_flush_vq(struct vhost_net *n, int index)
1301{
1302 vhost_poll_flush(n->poll + index);
Asias He3ab2e422013-04-27 11:16:48 +08001303 vhost_poll_flush(&n->vqs[index].vq.poll);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001304}
1305
1306static void vhost_net_flush(struct vhost_net *n)
1307{
1308 vhost_net_flush_vq(n, VHOST_NET_VQ_TX);
1309 vhost_net_flush_vq(n, VHOST_NET_VQ_RX);
Asias He28394002013-04-27 15:07:46 +08001310 if (n->vqs[VHOST_NET_VQ_TX].ubufs) {
Asias He3ab2e422013-04-27 11:16:48 +08001311 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001312 n->tx_flush = true;
Asias He3ab2e422013-04-27 11:16:48 +08001313 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001314 /* Wait for all lower device DMAs done. */
Asias Hefe729a52013-05-06 16:38:24 +08001315 vhost_net_ubuf_put_and_wait(n->vqs[VHOST_NET_VQ_TX].ubufs);
Asias He3ab2e422013-04-27 11:16:48 +08001316 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001317 n->tx_flush = false;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +02001318 atomic_set(&n->vqs[VHOST_NET_VQ_TX].ubufs->refcount, 1);
Asias He3ab2e422013-04-27 11:16:48 +08001319 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001320 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001321}
1322
1323static int vhost_net_release(struct inode *inode, struct file *f)
1324{
1325 struct vhost_net *n = f->private_data;
1326 struct socket *tx_sock;
1327 struct socket *rx_sock;
1328
1329 vhost_net_stop(n, &tx_sock, &rx_sock);
1330 vhost_net_flush(n);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +00001331 vhost_dev_stop(&n->dev);
夷则(Caspar)f6f93f72017-12-25 00:08:58 +08001332 vhost_dev_cleanup(&n->dev);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001333 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001334 if (tx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001335 sockfd_put(tx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001336 if (rx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001337 sockfd_put(rx_sock);
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +02001338 /* Make sure no callbacks are outstanding */
1339 synchronize_rcu_bh();
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001340 /* We do an extra flush before freeing memory,
1341 * since jobs can re-queue themselves. */
1342 vhost_net_flush(n);
Jason Wangc67df112017-05-17 12:14:45 +08001343 kfree(n->vqs[VHOST_NET_VQ_RX].rxq.queue);
Jason Wang0a0be132018-09-12 11:17:09 +08001344 kfree(n->vqs[VHOST_NET_VQ_TX].xdp);
Asias He3ab2e422013-04-27 11:16:48 +08001345 kfree(n->dev.vqs);
Romain Francoised04257b2014-06-12 10:42:34 +02001346 kvfree(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001347 return 0;
1348}
1349
1350static struct socket *get_raw_socket(int fd)
1351{
1352 struct {
1353 struct sockaddr_ll sa;
1354 char buf[MAX_ADDR_LEN];
1355 } uaddr;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001356 int r;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001357 struct socket *sock = sockfd_lookup(fd, &r);
Krishna Kumard47effe2011-03-01 17:06:37 +05301358
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001359 if (!sock)
1360 return ERR_PTR(-ENOTSOCK);
1361
1362 /* Parameter checking */
1363 if (sock->sk->sk_type != SOCK_RAW) {
1364 r = -ESOCKTNOSUPPORT;
1365 goto err;
1366 }
1367
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001368 r = sock->ops->getname(sock, (struct sockaddr *)&uaddr.sa, 0);
1369 if (r < 0)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001370 goto err;
1371
1372 if (uaddr.sa.sll_family != AF_PACKET) {
1373 r = -EPFNOSUPPORT;
1374 goto err;
1375 }
1376 return sock;
1377err:
Al Viro09aaacf2014-03-05 20:39:00 -05001378 sockfd_put(sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001379 return ERR_PTR(r);
1380}
1381
Jason Wang5990a302018-01-04 11:14:27 +08001382static struct ptr_ring *get_tap_ptr_ring(int fd)
Jason Wangc67df112017-05-17 12:14:45 +08001383{
Jason Wang5990a302018-01-04 11:14:27 +08001384 struct ptr_ring *ring;
Jason Wangc67df112017-05-17 12:14:45 +08001385 struct file *file = fget(fd);
1386
1387 if (!file)
1388 return NULL;
Jason Wang5990a302018-01-04 11:14:27 +08001389 ring = tun_get_tx_ring(file);
1390 if (!IS_ERR(ring))
Jason Wangc67df112017-05-17 12:14:45 +08001391 goto out;
Jason Wang5990a302018-01-04 11:14:27 +08001392 ring = tap_get_ptr_ring(file);
1393 if (!IS_ERR(ring))
Jason Wangc67df112017-05-17 12:14:45 +08001394 goto out;
Jason Wang5990a302018-01-04 11:14:27 +08001395 ring = NULL;
Jason Wangc67df112017-05-17 12:14:45 +08001396out:
1397 fput(file);
Jason Wang5990a302018-01-04 11:14:27 +08001398 return ring;
Jason Wangc67df112017-05-17 12:14:45 +08001399}
1400
Arnd Bergmann501c7742010-02-18 05:46:50 +00001401static struct socket *get_tap_socket(int fd)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001402{
1403 struct file *file = fget(fd);
1404 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +05301405
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001406 if (!file)
1407 return ERR_PTR(-EBADF);
1408 sock = tun_get_socket(file);
Arnd Bergmann501c7742010-02-18 05:46:50 +00001409 if (!IS_ERR(sock))
1410 return sock;
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001411 sock = tap_get_socket(file);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001412 if (IS_ERR(sock))
1413 fput(file);
1414 return sock;
1415}
1416
1417static struct socket *get_socket(int fd)
1418{
1419 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +05301420
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001421 /* special case to disable backend */
1422 if (fd == -1)
1423 return NULL;
1424 sock = get_raw_socket(fd);
1425 if (!IS_ERR(sock))
1426 return sock;
Arnd Bergmann501c7742010-02-18 05:46:50 +00001427 sock = get_tap_socket(fd);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001428 if (!IS_ERR(sock))
1429 return sock;
1430 return ERR_PTR(-ENOTSOCK);
1431}
1432
1433static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
1434{
1435 struct socket *sock, *oldsock;
1436 struct vhost_virtqueue *vq;
Asias He28394002013-04-27 15:07:46 +08001437 struct vhost_net_virtqueue *nvq;
Asias Hefe729a52013-05-06 16:38:24 +08001438 struct vhost_net_ubuf_ref *ubufs, *oldubufs = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001439 int r;
1440
1441 mutex_lock(&n->dev.mutex);
1442 r = vhost_dev_check_owner(&n->dev);
1443 if (r)
1444 goto err;
1445
1446 if (index >= VHOST_NET_VQ_MAX) {
1447 r = -ENOBUFS;
1448 goto err;
1449 }
Asias He3ab2e422013-04-27 11:16:48 +08001450 vq = &n->vqs[index].vq;
Asias He28394002013-04-27 15:07:46 +08001451 nvq = &n->vqs[index];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001452 mutex_lock(&vq->mutex);
1453
1454 /* Verify that ring has been setup correctly. */
1455 if (!vhost_vq_access_ok(vq)) {
1456 r = -EFAULT;
Jeff Dike1dace8c2010-03-04 16:10:14 -05001457 goto err_vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001458 }
1459 sock = get_socket(fd);
1460 if (IS_ERR(sock)) {
1461 r = PTR_ERR(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -05001462 goto err_vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001463 }
1464
1465 /* start polling new socket */
Asias He22fa90c2013-05-07 14:54:36 +08001466 oldsock = vq->private_data;
David S. Miller11fe8832010-07-20 18:25:24 -07001467 if (sock != oldsock) {
Asias Hefe729a52013-05-06 16:38:24 +08001468 ubufs = vhost_net_ubuf_alloc(vq,
1469 sock && vhost_sock_zcopy(sock));
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001470 if (IS_ERR(ubufs)) {
1471 r = PTR_ERR(ubufs);
1472 goto err_ubufs;
1473 }
Jason Wang692a9982013-01-28 01:05:17 +00001474
Krishna Kumard47effe2011-03-01 17:06:37 +05301475 vhost_net_disable_vq(n, vq);
Asias He22fa90c2013-05-07 14:54:36 +08001476 vq->private_data = sock;
Jason Wangc67df112017-05-17 12:14:45 +08001477 vhost_net_buf_unproduce(nvq);
Greg Kurz80f7d032016-02-16 15:59:44 +01001478 r = vhost_vq_init_access(vq);
Jason Wangf59281d2011-06-21 18:04:27 +08001479 if (r)
Jason Wang692a9982013-01-28 01:05:17 +00001480 goto err_used;
Jason Wang2b8b3282013-01-28 01:05:18 +00001481 r = vhost_net_enable_vq(n, vq);
1482 if (r)
1483 goto err_used;
Jason Wang303fd71b2018-03-09 14:50:33 +08001484 if (index == VHOST_NET_VQ_RX)
1485 nvq->rx_ring = get_tap_ptr_ring(fd);
Jason Wang692a9982013-01-28 01:05:17 +00001486
Asias He28394002013-04-27 15:07:46 +08001487 oldubufs = nvq->ubufs;
1488 nvq->ubufs = ubufs;
Michael S. Tsirkin64e9a9b2012-12-03 07:31:51 +00001489
1490 n->tx_packets = 0;
1491 n->tx_zcopy_err = 0;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001492 n->tx_flush = false;
Jeff Dikedd1f4072010-03-04 16:10:14 -05001493 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001494
Michael S. Tsirkin1680e902010-07-15 15:19:12 +03001495 mutex_unlock(&vq->mutex);
1496
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001497 if (oldubufs) {
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +03001498 vhost_net_ubuf_put_wait_and_free(oldubufs);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001499 mutex_lock(&vq->mutex);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +00001500 vhost_zerocopy_signal_used(n, vq);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001501 mutex_unlock(&vq->mutex);
1502 }
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001503
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001504 if (oldsock) {
1505 vhost_net_flush_vq(n, index);
Al Viro09aaacf2014-03-05 20:39:00 -05001506 sockfd_put(oldsock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001507 }
Jeff Dike1dace8c2010-03-04 16:10:14 -05001508
Michael S. Tsirkin1680e902010-07-15 15:19:12 +03001509 mutex_unlock(&n->dev.mutex);
1510 return 0;
1511
Jason Wang692a9982013-01-28 01:05:17 +00001512err_used:
Asias He22fa90c2013-05-07 14:54:36 +08001513 vq->private_data = oldsock;
Jason Wang692a9982013-01-28 01:05:17 +00001514 vhost_net_enable_vq(n, vq);
1515 if (ubufs)
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +03001516 vhost_net_ubuf_put_wait_and_free(ubufs);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001517err_ubufs:
Jason Wangb8f1f652018-06-21 13:11:31 +08001518 if (sock)
1519 sockfd_put(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -05001520err_vq:
1521 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001522err:
1523 mutex_unlock(&n->dev.mutex);
1524 return r;
1525}
1526
1527static long vhost_net_reset_owner(struct vhost_net *n)
1528{
1529 struct socket *tx_sock = NULL;
1530 struct socket *rx_sock = NULL;
1531 long err;
Jason Wanga9709d62016-06-23 02:04:31 -04001532 struct vhost_umem *umem;
Krishna Kumard47effe2011-03-01 17:06:37 +05301533
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001534 mutex_lock(&n->dev.mutex);
1535 err = vhost_dev_check_owner(&n->dev);
1536 if (err)
1537 goto done;
Jason Wanga9709d62016-06-23 02:04:31 -04001538 umem = vhost_dev_reset_owner_prepare();
1539 if (!umem) {
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +03001540 err = -ENOMEM;
1541 goto done;
1542 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001543 vhost_net_stop(n, &tx_sock, &rx_sock);
1544 vhost_net_flush(n);
Jason Wang4cd87952018-01-25 22:03:52 +08001545 vhost_dev_stop(&n->dev);
Jason Wanga9709d62016-06-23 02:04:31 -04001546 vhost_dev_reset_owner(&n->dev, umem);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001547 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001548done:
1549 mutex_unlock(&n->dev.mutex);
1550 if (tx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001551 sockfd_put(tx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001552 if (rx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001553 sockfd_put(rx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001554 return err;
1555}
1556
Jason Wang429711a2018-08-06 11:17:47 +08001557static int vhost_net_set_backend_features(struct vhost_net *n, u64 features)
1558{
1559 int i;
1560
1561 mutex_lock(&n->dev.mutex);
1562 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
1563 mutex_lock(&n->vqs[i].vq.mutex);
1564 n->vqs[i].vq.acked_backend_features = features;
1565 mutex_unlock(&n->vqs[i].vq.mutex);
1566 }
1567 mutex_unlock(&n->dev.mutex);
1568
1569 return 0;
1570}
1571
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001572static int vhost_net_set_features(struct vhost_net *n, u64 features)
1573{
David Stevens8dd014a2010-07-27 18:52:21 +03001574 size_t vhost_hlen, sock_hlen, hdr_len;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001575 int i;
David Stevens8dd014a2010-07-27 18:52:21 +03001576
Michael S. Tsirkine4fca7d2014-10-24 14:23:52 +03001577 hdr_len = (features & ((1ULL << VIRTIO_NET_F_MRG_RXBUF) |
1578 (1ULL << VIRTIO_F_VERSION_1))) ?
David Stevens8dd014a2010-07-27 18:52:21 +03001579 sizeof(struct virtio_net_hdr_mrg_rxbuf) :
1580 sizeof(struct virtio_net_hdr);
1581 if (features & (1 << VHOST_NET_F_VIRTIO_NET_HDR)) {
1582 /* vhost provides vnet_hdr */
1583 vhost_hlen = hdr_len;
1584 sock_hlen = 0;
1585 } else {
1586 /* socket provides vnet_hdr */
1587 vhost_hlen = 0;
1588 sock_hlen = hdr_len;
1589 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001590 mutex_lock(&n->dev.mutex);
1591 if ((features & (1 << VHOST_F_LOG_ALL)) &&
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001592 !vhost_log_access_ok(&n->dev))
1593 goto out_unlock;
1594
1595 if ((features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))) {
1596 if (vhost_init_device_iotlb(&n->dev, true))
1597 goto out_unlock;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001598 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001599
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001600 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +08001601 mutex_lock(&n->vqs[i].vq.mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001602 n->vqs[i].vq.acked_features = features;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001603 n->vqs[i].vhost_hlen = vhost_hlen;
1604 n->vqs[i].sock_hlen = sock_hlen;
Asias He3ab2e422013-04-27 11:16:48 +08001605 mutex_unlock(&n->vqs[i].vq.mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001606 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001607 mutex_unlock(&n->dev.mutex);
1608 return 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001609
1610out_unlock:
1611 mutex_unlock(&n->dev.mutex);
1612 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001613}
1614
Asias Heb1ad8492013-05-06 11:16:00 +08001615static long vhost_net_set_owner(struct vhost_net *n)
1616{
1617 int r;
1618
1619 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin05c05352013-06-06 15:20:39 +03001620 if (vhost_dev_has_owner(&n->dev)) {
1621 r = -EBUSY;
1622 goto out;
1623 }
Asias Heb1ad8492013-05-06 11:16:00 +08001624 r = vhost_net_set_ubuf_info(n);
1625 if (r)
1626 goto out;
1627 r = vhost_dev_set_owner(&n->dev);
1628 if (r)
1629 vhost_net_clear_ubuf_info(n);
1630 vhost_net_flush(n);
1631out:
1632 mutex_unlock(&n->dev.mutex);
1633 return r;
1634}
1635
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001636static long vhost_net_ioctl(struct file *f, unsigned int ioctl,
1637 unsigned long arg)
1638{
1639 struct vhost_net *n = f->private_data;
1640 void __user *argp = (void __user *)arg;
1641 u64 __user *featurep = argp;
1642 struct vhost_vring_file backend;
1643 u64 features;
1644 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301645
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001646 switch (ioctl) {
1647 case VHOST_NET_SET_BACKEND:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001648 if (copy_from_user(&backend, argp, sizeof backend))
1649 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001650 return vhost_net_set_backend(n, backend.index, backend.fd);
1651 case VHOST_GET_FEATURES:
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001652 features = VHOST_NET_FEATURES;
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001653 if (copy_to_user(featurep, &features, sizeof features))
1654 return -EFAULT;
1655 return 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001656 case VHOST_SET_FEATURES:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001657 if (copy_from_user(&features, featurep, sizeof features))
1658 return -EFAULT;
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001659 if (features & ~VHOST_NET_FEATURES)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001660 return -EOPNOTSUPP;
1661 return vhost_net_set_features(n, features);
Jason Wang429711a2018-08-06 11:17:47 +08001662 case VHOST_GET_BACKEND_FEATURES:
1663 features = VHOST_NET_BACKEND_FEATURES;
1664 if (copy_to_user(featurep, &features, sizeof(features)))
1665 return -EFAULT;
1666 return 0;
1667 case VHOST_SET_BACKEND_FEATURES:
1668 if (copy_from_user(&features, featurep, sizeof(features)))
1669 return -EFAULT;
1670 if (features & ~VHOST_NET_BACKEND_FEATURES)
1671 return -EOPNOTSUPP;
1672 return vhost_net_set_backend_features(n, features);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001673 case VHOST_RESET_OWNER:
1674 return vhost_net_reset_owner(n);
Asias Heb1ad8492013-05-06 11:16:00 +08001675 case VHOST_SET_OWNER:
1676 return vhost_net_set_owner(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001677 default:
1678 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001679 r = vhost_dev_ioctl(&n->dev, ioctl, argp);
1680 if (r == -ENOIOCTLCMD)
1681 r = vhost_vring_ioctl(&n->dev, ioctl, argp);
1682 else
1683 vhost_net_flush(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001684 mutex_unlock(&n->dev.mutex);
1685 return r;
1686 }
1687}
1688
1689#ifdef CONFIG_COMPAT
1690static long vhost_net_compat_ioctl(struct file *f, unsigned int ioctl,
1691 unsigned long arg)
1692{
1693 return vhost_net_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1694}
1695#endif
1696
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001697static ssize_t vhost_net_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
1698{
1699 struct file *file = iocb->ki_filp;
1700 struct vhost_net *n = file->private_data;
1701 struct vhost_dev *dev = &n->dev;
1702 int noblock = file->f_flags & O_NONBLOCK;
1703
1704 return vhost_chr_read_iter(dev, to, noblock);
1705}
1706
1707static ssize_t vhost_net_chr_write_iter(struct kiocb *iocb,
1708 struct iov_iter *from)
1709{
1710 struct file *file = iocb->ki_filp;
1711 struct vhost_net *n = file->private_data;
1712 struct vhost_dev *dev = &n->dev;
1713
1714 return vhost_chr_write_iter(dev, from);
1715}
1716
Al Viroafc9a422017-07-03 06:39:46 -04001717static __poll_t vhost_net_chr_poll(struct file *file, poll_table *wait)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001718{
1719 struct vhost_net *n = file->private_data;
1720 struct vhost_dev *dev = &n->dev;
1721
1722 return vhost_chr_poll(file, dev, wait);
1723}
1724
Tobias Klauser373a83a2010-05-17 15:12:49 +02001725static const struct file_operations vhost_net_fops = {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001726 .owner = THIS_MODULE,
1727 .release = vhost_net_release,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001728 .read_iter = vhost_net_chr_read_iter,
1729 .write_iter = vhost_net_chr_write_iter,
1730 .poll = vhost_net_chr_poll,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001731 .unlocked_ioctl = vhost_net_ioctl,
1732#ifdef CONFIG_COMPAT
1733 .compat_ioctl = vhost_net_compat_ioctl,
1734#endif
1735 .open = vhost_net_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001736 .llseek = noop_llseek,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001737};
1738
1739static struct miscdevice vhost_net_misc = {
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001740 .minor = VHOST_NET_MINOR,
1741 .name = "vhost-net",
1742 .fops = &vhost_net_fops,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001743};
1744
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001745static int vhost_net_init(void)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001746{
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001747 if (experimental_zcopytx)
Asias Hefe729a52013-05-06 16:38:24 +08001748 vhost_net_enable_zcopy(VHOST_NET_VQ_TX);
Tejun Heoc23f34452010-06-02 20:40:00 +02001749 return misc_register(&vhost_net_misc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001750}
1751module_init(vhost_net_init);
1752
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001753static void vhost_net_exit(void)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001754{
1755 misc_deregister(&vhost_net_misc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001756}
1757module_exit(vhost_net_exit);
1758
1759MODULE_VERSION("0.0.1");
1760MODULE_LICENSE("GPL v2");
1761MODULE_AUTHOR("Michael S. Tsirkin");
1762MODULE_DESCRIPTION("Host kernel accelerator for virtio net");
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001763MODULE_ALIAS_MISCDEV(VHOST_NET_MINOR);
1764MODULE_ALIAS("devname:vhost-net");