blob: ad7a6f475a442a9b08843f77708729b3e123317b [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
Tonghao Zhangdc151282018-09-25 05:36:51 -0700483static int sock_has_rx_data(struct socket *sock)
484{
485 if (unlikely(!sock))
486 return 0;
487
488 if (sock->ops->peek_len)
489 return sock->ops->peek_len(sock);
490
491 return skb_queue_empty(&sock->sk->sk_receive_queue);
492}
493
494static void vhost_net_busy_poll_try_queue(struct vhost_net *net,
495 struct vhost_virtqueue *vq)
496{
497 if (!vhost_vq_avail_empty(&net->dev, vq)) {
498 vhost_poll_queue(&vq->poll);
499 } else if (unlikely(vhost_enable_notify(&net->dev, vq))) {
500 vhost_disable_notify(&net->dev, vq);
501 vhost_poll_queue(&vq->poll);
502 }
503}
504
505static void vhost_net_busy_poll(struct vhost_net *net,
506 struct vhost_virtqueue *rvq,
507 struct vhost_virtqueue *tvq,
508 bool *busyloop_intr,
509 bool poll_rx)
510{
511 unsigned long busyloop_timeout;
512 unsigned long endtime;
513 struct socket *sock;
514 struct vhost_virtqueue *vq = poll_rx ? tvq : rvq;
515
Jason Wang476e8ba2018-12-13 10:53:38 +0800516 /* Try to hold the vq mutex of the paired virtqueue. We can't
517 * use mutex_lock() here since we could not guarantee a
518 * consistenet lock ordering.
519 */
520 if (!mutex_trylock(&vq->mutex))
521 return;
522
Tonghao Zhangdc151282018-09-25 05:36:51 -0700523 vhost_disable_notify(&net->dev, vq);
524 sock = rvq->private_data;
525
526 busyloop_timeout = poll_rx ? rvq->busyloop_timeout:
527 tvq->busyloop_timeout;
528
529 preempt_disable();
530 endtime = busy_clock() + busyloop_timeout;
531
532 while (vhost_can_busy_poll(endtime)) {
533 if (vhost_has_work(&net->dev)) {
534 *busyloop_intr = true;
535 break;
536 }
537
538 if ((sock_has_rx_data(sock) &&
539 !vhost_vq_avail_empty(&net->dev, rvq)) ||
540 !vhost_vq_avail_empty(&net->dev, tvq))
541 break;
542
543 cpu_relax();
544 }
545
546 preempt_enable();
547
548 if (poll_rx || sock_has_rx_data(sock))
549 vhost_net_busy_poll_try_queue(net, vq);
550 else if (!poll_rx) /* On tx here, sock has no rx data. */
551 vhost_enable_notify(&net->dev, rvq);
552
553 mutex_unlock(&vq->mutex);
554}
555
Jason Wang03088132016-03-04 06:24:53 -0500556static int vhost_net_tx_get_vq_desc(struct vhost_net *net,
Tonghao Zhang441abde2018-09-25 05:36:52 -0700557 struct vhost_net_virtqueue *tnvq,
Toshiaki Makita027b1762018-07-03 16:31:32 +0900558 unsigned int *out_num, unsigned int *in_num,
Jason Wang0a0be132018-09-12 11:17:09 +0800559 struct msghdr *msghdr, bool *busyloop_intr)
Jason Wang03088132016-03-04 06:24:53 -0500560{
Tonghao Zhang441abde2018-09-25 05:36:52 -0700561 struct vhost_net_virtqueue *rnvq = &net->vqs[VHOST_NET_VQ_RX];
562 struct vhost_virtqueue *rvq = &rnvq->vq;
563 struct vhost_virtqueue *tvq = &tnvq->vq;
564
565 int r = vhost_get_vq_desc(tvq, tvq->iov, ARRAY_SIZE(tvq->iov),
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400566 out_num, in_num, NULL, NULL);
Jason Wang03088132016-03-04 06:24:53 -0500567
Tonghao Zhang441abde2018-09-25 05:36:52 -0700568 if (r == tvq->num && tvq->busyloop_timeout) {
Jason Wang0a0be132018-09-12 11:17:09 +0800569 /* Flush batched packets first */
Tonghao Zhang441abde2018-09-25 05:36:52 -0700570 if (!vhost_sock_zcopy(tvq->private_data))
Tonghao Zhang441abde2018-09-25 05:36:52 -0700571 vhost_tx_batch(net, tnvq, tvq->private_data, msghdr);
572
573 vhost_net_busy_poll(net, rvq, tvq, busyloop_intr, false);
574
575 r = vhost_get_vq_desc(tvq, tvq->iov, ARRAY_SIZE(tvq->iov),
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400576 out_num, in_num, NULL, NULL);
Jason Wang03088132016-03-04 06:24:53 -0500577 }
578
579 return r;
580}
581
Jason Wang0ed005c2017-01-18 15:02:02 +0800582static bool vhost_exceeds_maxpend(struct vhost_net *net)
583{
584 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
585 struct vhost_virtqueue *vq = &nvq->vq;
586
Willem de Bruijn1e6f7452017-10-06 13:22:31 -0400587 return (nvq->upend_idx + UIO_MAXIOV - nvq->done_idx) % UIO_MAXIOV >
588 min_t(unsigned int, VHOST_MAX_PEND, vq->num >> 2);
Jason Wang0ed005c2017-01-18 15:02:02 +0800589}
590
Jason Wangb0d0ea52018-07-20 08:15:14 +0800591static size_t init_iov_iter(struct vhost_virtqueue *vq, struct iov_iter *iter,
592 size_t hdr_size, int out)
593{
594 /* Skip header. TODO: support TSO. */
595 size_t len = iov_length(vq->iov, out);
596
597 iov_iter_init(iter, WRITE, vq->iov, out, len);
598 iov_iter_advance(iter, hdr_size);
599
600 return iov_iter_count(iter);
601}
602
Jason Wang272f35c2018-07-20 08:15:15 +0800603static bool vhost_exceeds_weight(int pkts, int total_len)
604{
605 return total_len >= VHOST_NET_WEIGHT ||
606 pkts >= VHOST_NET_PKT_WEIGHT;
607}
608
Jason Wanga2a91a12018-07-20 08:15:16 +0800609static int get_tx_bufs(struct vhost_net *net,
610 struct vhost_net_virtqueue *nvq,
611 struct msghdr *msg,
612 unsigned int *out, unsigned int *in,
613 size_t *len, bool *busyloop_intr)
614{
615 struct vhost_virtqueue *vq = &nvq->vq;
616 int ret;
617
Jason Wang0a0be132018-09-12 11:17:09 +0800618 ret = vhost_net_tx_get_vq_desc(net, nvq, out, in, msg, busyloop_intr);
Jason Wang4afb52c2018-07-20 08:15:21 +0800619
Jason Wanga2a91a12018-07-20 08:15:16 +0800620 if (ret < 0 || ret == vq->num)
621 return ret;
622
623 if (*in) {
624 vq_err(vq, "Unexpected descriptor format for TX: out %d, int %d\n",
625 *out, *in);
626 return -EFAULT;
627 }
628
629 /* Sanity check */
630 *len = init_iov_iter(vq, &msg->msg_iter, nvq->vhost_hlen, *out);
631 if (*len == 0) {
632 vq_err(vq, "Unexpected header len for TX: %zd expected %zd\n",
633 *len, nvq->vhost_hlen);
634 return -EFAULT;
635 }
636
637 return ret;
638}
639
Jason Wangc92a8a82018-07-20 08:15:17 +0800640static bool tx_can_batch(struct vhost_virtqueue *vq, size_t total_len)
641{
642 return total_len < VHOST_NET_WEIGHT &&
643 !vhost_vq_avail_empty(vq->dev, vq);
644}
645
Jason Wang0a0be132018-09-12 11:17:09 +0800646#define VHOST_NET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
647
648static int vhost_net_build_xdp(struct vhost_net_virtqueue *nvq,
649 struct iov_iter *from)
650{
651 struct vhost_virtqueue *vq = &nvq->vq;
652 struct socket *sock = vq->private_data;
653 struct page_frag *alloc_frag = &current->task_frag;
654 struct virtio_net_hdr *gso;
655 struct xdp_buff *xdp = &nvq->xdp[nvq->batched_xdp];
656 struct tun_xdp_hdr *hdr;
657 size_t len = iov_iter_count(from);
658 int headroom = vhost_sock_xdp(sock) ? XDP_PACKET_HEADROOM : 0;
659 int buflen = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
660 int pad = SKB_DATA_ALIGN(VHOST_NET_RX_PAD + headroom + nvq->sock_hlen);
661 int sock_hlen = nvq->sock_hlen;
662 void *buf;
663 int copied;
664
665 if (unlikely(len < nvq->sock_hlen))
666 return -EFAULT;
667
668 if (SKB_DATA_ALIGN(len + pad) +
669 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) > PAGE_SIZE)
670 return -ENOSPC;
671
672 buflen += SKB_DATA_ALIGN(len + pad);
673 alloc_frag->offset = ALIGN((u64)alloc_frag->offset, SMP_CACHE_BYTES);
674 if (unlikely(!skb_page_frag_refill(buflen, alloc_frag, GFP_KERNEL)))
675 return -ENOMEM;
676
677 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
678 copied = copy_page_from_iter(alloc_frag->page,
679 alloc_frag->offset +
680 offsetof(struct tun_xdp_hdr, gso),
681 sock_hlen, from);
682 if (copied != sock_hlen)
683 return -EFAULT;
684
685 hdr = buf;
686 gso = &hdr->gso;
687
688 if ((gso->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
689 vhost16_to_cpu(vq, gso->csum_start) +
690 vhost16_to_cpu(vq, gso->csum_offset) + 2 >
691 vhost16_to_cpu(vq, gso->hdr_len)) {
692 gso->hdr_len = cpu_to_vhost16(vq,
693 vhost16_to_cpu(vq, gso->csum_start) +
694 vhost16_to_cpu(vq, gso->csum_offset) + 2);
695
696 if (vhost16_to_cpu(vq, gso->hdr_len) > len)
697 return -EINVAL;
698 }
699
700 len -= sock_hlen;
701 copied = copy_page_from_iter(alloc_frag->page,
702 alloc_frag->offset + pad,
703 len, from);
704 if (copied != len)
705 return -EFAULT;
706
707 xdp->data_hard_start = buf;
708 xdp->data = buf + pad;
709 xdp->data_end = xdp->data + len;
710 hdr->buflen = buflen;
711
712 get_page(alloc_frag->page);
713 alloc_frag->offset += buflen;
714
715 ++nvq->batched_xdp;
716
717 return 0;
718}
719
Jason Wang0d20bdf2018-07-20 08:15:18 +0800720static void handle_tx_copy(struct vhost_net *net, struct socket *sock)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000721{
Asias He28394002013-04-27 15:07:46 +0800722 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300723 struct vhost_virtqueue *vq = &nvq->vq;
Al Viro98a527a2014-12-10 15:00:58 -0500724 unsigned out, in;
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300725 int head;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000726 struct msghdr msg = {
727 .msg_name = NULL,
728 .msg_namelen = 0,
729 .msg_control = NULL,
730 .msg_controllen = 0,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000731 .msg_flags = MSG_DONTWAIT,
732 };
733 size_t len, total_len = 0;
Jason Wang70181d512013-04-10 20:50:48 +0000734 int err;
haibinzhang(张海斌)a2ac9992018-04-09 07:22:17 +0000735 int sent_pkts = 0;
Jason Wang0a0be132018-09-12 11:17:09 +0800736 bool sock_can_batch = (sock->sk->sk_sndbuf == INT_MAX);
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100737
Jason Wang0d20bdf2018-07-20 08:15:18 +0800738 for (;;) {
739 bool busyloop_intr = false;
Asias He2e26af72013-05-07 14:54:33 +0800740
Jason Wang0a0be132018-09-12 11:17:09 +0800741 if (nvq->done_idx == VHOST_NET_BATCH)
742 vhost_tx_batch(net, nvq, sock, &msg);
743
Jason Wang0d20bdf2018-07-20 08:15:18 +0800744 head = get_tx_bufs(net, nvq, &msg, &out, &in, &len,
745 &busyloop_intr);
746 /* On error, stop handling until the next kick. */
747 if (unlikely(head < 0))
748 break;
749 /* Nothing new? Wait for eventfd to tell us they refilled. */
750 if (head == vq->num) {
751 if (unlikely(busyloop_intr)) {
752 vhost_poll_queue(&vq->poll);
753 } else if (unlikely(vhost_enable_notify(&net->dev,
754 vq))) {
755 vhost_disable_notify(&net->dev, vq);
756 continue;
757 }
758 break;
759 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400760
Jason Wang0d20bdf2018-07-20 08:15:18 +0800761 total_len += len;
Jason Wang0a0be132018-09-12 11:17:09 +0800762
763 /* For simplicity, TX batching is only enabled if
764 * sndbuf is unlimited.
765 */
766 if (sock_can_batch) {
767 err = vhost_net_build_xdp(nvq, &msg.msg_iter);
768 if (!err) {
769 goto done;
770 } else if (unlikely(err != -ENOSPC)) {
771 vhost_tx_batch(net, nvq, sock, &msg);
772 vhost_discard_vq_desc(vq, 1);
773 vhost_net_enable_vq(net, vq);
774 break;
775 }
776
777 /* We can't build XDP buff, go for single
778 * packet path but let's flush batched
779 * packets.
780 */
781 vhost_tx_batch(net, nvq, sock, &msg);
782 msg.msg_control = NULL;
783 } else {
784 if (tx_can_batch(vq, total_len))
785 msg.msg_flags |= MSG_MORE;
786 else
787 msg.msg_flags &= ~MSG_MORE;
788 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000789
Jason Wang0d20bdf2018-07-20 08:15:18 +0800790 /* TODO: Check specific error and bomb out unless ENOBUFS? */
791 err = sock->ops->sendmsg(sock, &msg, len);
792 if (unlikely(err < 0)) {
793 vhost_discard_vq_desc(vq, 1);
794 vhost_net_enable_vq(net, vq);
795 break;
796 }
797 if (err != len)
798 pr_debug("Truncated TX packet: len %d != %zd\n",
799 err, len);
Jason Wang0a0be132018-09-12 11:17:09 +0800800done:
801 vq->heads[nvq->done_idx].id = cpu_to_vhost32(vq, head);
802 vq->heads[nvq->done_idx].len = 0;
803 ++nvq->done_idx;
Jason Wang0d20bdf2018-07-20 08:15:18 +0800804 if (vhost_exceeds_weight(++sent_pkts, total_len)) {
805 vhost_poll_queue(&vq->poll);
806 break;
807 }
808 }
Jason Wang4afb52c2018-07-20 08:15:21 +0800809
Jason Wang0a0be132018-09-12 11:17:09 +0800810 vhost_tx_batch(net, nvq, sock, &msg);
Jason Wang0d20bdf2018-07-20 08:15:18 +0800811}
812
813static void handle_tx_zerocopy(struct vhost_net *net, struct socket *sock)
814{
815 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
816 struct vhost_virtqueue *vq = &nvq->vq;
817 unsigned out, in;
818 int head;
819 struct msghdr msg = {
820 .msg_name = NULL,
821 .msg_namelen = 0,
822 .msg_control = NULL,
823 .msg_controllen = 0,
824 .msg_flags = MSG_DONTWAIT,
825 };
Jason Wangfe8dd452018-09-12 11:17:06 +0800826 struct tun_msg_ctl ctl;
Jason Wang0d20bdf2018-07-20 08:15:18 +0800827 size_t len, total_len = 0;
828 int err;
829 struct vhost_net_ubuf_ref *uninitialized_var(ubufs);
830 bool zcopy_used;
831 int sent_pkts = 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000832
833 for (;;) {
Toshiaki Makita027b1762018-07-03 16:31:32 +0900834 bool busyloop_intr;
835
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000836 /* Release DMAs done buffers first */
Jason Wang0d20bdf2018-07-20 08:15:18 +0800837 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000838
Toshiaki Makita027b1762018-07-03 16:31:32 +0900839 busyloop_intr = false;
Jason Wanga2a91a12018-07-20 08:15:16 +0800840 head = get_tx_bufs(net, nvq, &msg, &out, &in, &len,
841 &busyloop_intr);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300842 /* On error, stop handling until the next kick. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +0300843 if (unlikely(head < 0))
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300844 break;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000845 /* Nothing new? Wait for eventfd to tell us they refilled. */
846 if (head == vq->num) {
Toshiaki Makita027b1762018-07-03 16:31:32 +0900847 if (unlikely(busyloop_intr)) {
848 vhost_poll_queue(&vq->poll);
849 } else if (unlikely(vhost_enable_notify(&net->dev, vq))) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300850 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000851 continue;
852 }
853 break;
854 }
Jason Wangce21a022013-09-02 16:40:59 +0800855
Jason Wang0d20bdf2018-07-20 08:15:18 +0800856 zcopy_used = len >= VHOST_GOODCOPY_LEN
857 && !vhost_exceeds_maxpend(net)
858 && vhost_net_tx_select_zcopy(net);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200859
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000860 /* use msg_control to pass vhost zerocopy ubuf info to skb */
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200861 if (zcopy_used) {
Jason Wangce21a022013-09-02 16:40:59 +0800862 struct ubuf_info *ubuf;
863 ubuf = nvq->ubuf_info + nvq->upend_idx;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000864
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300865 vq->heads[nvq->upend_idx].id = cpu_to_vhost32(vq, head);
Jason Wangce21a022013-09-02 16:40:59 +0800866 vq->heads[nvq->upend_idx].len = VHOST_DMA_IN_PROGRESS;
867 ubuf->callback = vhost_zerocopy_callback;
868 ubuf->ctx = nvq->ubufs;
869 ubuf->desc = nvq->upend_idx;
Eric Dumazetc1d1b432017-08-31 16:48:22 -0700870 refcount_set(&ubuf->refcnt, 1);
Jason Wangfe8dd452018-09-12 11:17:06 +0800871 msg.msg_control = &ctl;
872 ctl.type = TUN_MSG_UBUF;
873 ctl.ptr = ubuf;
874 msg.msg_controllen = sizeof(ctl);
Jason Wangce21a022013-09-02 16:40:59 +0800875 ubufs = nvq->ubufs;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200876 atomic_inc(&ubufs->refcount);
Asias He28394002013-04-27 15:07:46 +0800877 nvq->upend_idx = (nvq->upend_idx + 1) % UIO_MAXIOV;
Jason Wangce21a022013-09-02 16:40:59 +0800878 } else {
Jason Wang4364d5f2013-06-05 15:40:46 +0800879 msg.msg_control = NULL;
Jason Wangce21a022013-09-02 16:40:59 +0800880 ubufs = NULL;
881 }
Jason Wang0ed005c2017-01-18 15:02:02 +0800882 total_len += len;
Jason Wangc92a8a82018-07-20 08:15:17 +0800883 if (tx_can_batch(vq, total_len) &&
Jason Wang0ed005c2017-01-18 15:02:02 +0800884 likely(!vhost_exceeds_maxpend(net))) {
885 msg.msg_flags |= MSG_MORE;
886 } else {
887 msg.msg_flags &= ~MSG_MORE;
888 }
889
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000890 /* TODO: Check specific error and bomb out unless ENOBUFS? */
Ying Xue1b784142015-03-02 15:37:48 +0800891 err = sock->ops->sendmsg(sock, &msg, len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000892 if (unlikely(err < 0)) {
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200893 if (zcopy_used) {
Jason Wangce21a022013-09-02 16:40:59 +0800894 vhost_net_ubuf_put(ubufs);
Asias He28394002013-04-27 15:07:46 +0800895 nvq->upend_idx = ((unsigned)nvq->upend_idx - 1)
896 % UIO_MAXIOV;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000897 }
David Stevens8dd014a2010-07-27 18:52:21 +0300898 vhost_discard_vq_desc(vq, 1);
Jason Wangfeb88922017-11-13 11:45:34 +0800899 vhost_net_enable_vq(net, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000900 break;
901 }
902 if (err != len)
Michael S. Tsirkin95c0ec62010-06-24 17:10:25 +0300903 pr_debug("Truncated TX packet: "
904 " len %d != %zd\n", err, len);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200905 if (!zcopy_used)
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000906 vhost_add_used_and_signal(&net->dev, vq, head, 0);
Jason Wangc8fb2172012-05-02 11:42:41 +0800907 else
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000908 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000909 vhost_net_tx_packet(net);
Jason Wang272f35c2018-07-20 08:15:15 +0800910 if (unlikely(vhost_exceeds_weight(++sent_pkts, total_len))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000911 vhost_poll_queue(&vq->poll);
912 break;
913 }
914 }
Jason Wang0d20bdf2018-07-20 08:15:18 +0800915}
916
917/* Expects to be always run from workqueue - which acts as
918 * read-size critical section for our kind of RCU. */
919static void handle_tx(struct vhost_net *net)
920{
921 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
922 struct vhost_virtqueue *vq = &nvq->vq;
923 struct socket *sock;
924
Tonghao Zhanga6a67a22018-09-25 05:36:50 -0700925 mutex_lock_nested(&vq->mutex, VHOST_NET_VQ_TX);
Jason Wang0d20bdf2018-07-20 08:15:18 +0800926 sock = vq->private_data;
927 if (!sock)
928 goto out;
929
930 if (!vq_iotlb_prefetch(vq))
931 goto out;
932
933 vhost_disable_notify(&net->dev, vq);
934 vhost_net_disable_vq(net, vq);
935
936 if (vhost_sock_zcopy(sock))
937 handle_tx_zerocopy(net, sock);
938 else
939 handle_tx_copy(net, sock);
940
Asias He2e26af72013-05-07 14:54:33 +0800941out:
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000942 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000943}
944
Jason Wangc67df112017-05-17 12:14:45 +0800945static int peek_head_len(struct vhost_net_virtqueue *rvq, struct sock *sk)
David Stevens8dd014a2010-07-27 18:52:21 +0300946{
947 struct sk_buff *head;
948 int len = 0;
Jason Wang783e3982011-01-17 16:11:17 +0800949 unsigned long flags;
David Stevens8dd014a2010-07-27 18:52:21 +0300950
Jason Wang5990a302018-01-04 11:14:27 +0800951 if (rvq->rx_ring)
Jason Wangc67df112017-05-17 12:14:45 +0800952 return vhost_net_buf_peek(rvq);
Jason Wang1576d982016-06-30 14:45:36 +0800953
Jason Wang783e3982011-01-17 16:11:17 +0800954 spin_lock_irqsave(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300955 head = skb_peek(&sk->sk_receive_queue);
Basil Gorc53cff5e2012-05-03 22:55:23 +0000956 if (likely(head)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300957 len = head->len;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100958 if (skb_vlan_tag_present(head))
Basil Gorc53cff5e2012-05-03 22:55:23 +0000959 len += VLAN_HLEN;
960 }
961
Jason Wang783e3982011-01-17 16:11:17 +0800962 spin_unlock_irqrestore(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300963 return len;
964}
965
Toshiaki Makitabe294a52018-07-03 16:31:33 +0900966static int vhost_net_rx_peek_head_len(struct vhost_net *net, struct sock *sk,
967 bool *busyloop_intr)
Jason Wang03088132016-03-04 06:24:53 -0500968{
Toshiaki Makita28b9b332018-07-03 16:31:31 +0900969 struct vhost_net_virtqueue *rnvq = &net->vqs[VHOST_NET_VQ_RX];
970 struct vhost_net_virtqueue *tnvq = &net->vqs[VHOST_NET_VQ_TX];
Toshiaki Makita6369fec2018-07-03 16:31:34 +0900971 struct vhost_virtqueue *rvq = &rnvq->vq;
Toshiaki Makita28b9b332018-07-03 16:31:31 +0900972 struct vhost_virtqueue *tvq = &tnvq->vq;
Toshiaki Makita28b9b332018-07-03 16:31:31 +0900973 int len = peek_head_len(rnvq, sk);
Jason Wang03088132016-03-04 06:24:53 -0500974
Tonghao Zhangdc151282018-09-25 05:36:51 -0700975 if (!len && rvq->busyloop_timeout) {
Jason Wangf5a49412018-05-29 14:18:19 +0800976 /* Flush batched heads first */
Jason Wang09c32482018-07-20 08:15:19 +0800977 vhost_net_signal_used(rnvq);
Jason Wang03088132016-03-04 06:24:53 -0500978 /* Both tx vq and rx socket were polled here */
Tonghao Zhangdc151282018-09-25 05:36:51 -0700979 vhost_net_busy_poll(net, rvq, tvq, busyloop_intr, true);
Jason Wang03088132016-03-04 06:24:53 -0500980
Toshiaki Makita28b9b332018-07-03 16:31:31 +0900981 len = peek_head_len(rnvq, sk);
Jason Wang03088132016-03-04 06:24:53 -0500982 }
983
984 return len;
985}
986
David Stevens8dd014a2010-07-27 18:52:21 +0300987/* This is a multi-buffer version of vhost_get_desc, that works if
988 * vq has read descriptors only.
989 * @vq - the relevant virtqueue
990 * @datalen - data length we'll be reading
991 * @iovcount - returned count of io vectors we fill
992 * @log - vhost log
993 * @log_num - log offset
Jason Wang94249362011-01-17 16:11:08 +0800994 * @quota - headcount quota, 1 for big buffer
David Stevens8dd014a2010-07-27 18:52:21 +0300995 * returns number of buffer heads allocated, negative on error
996 */
997static int get_rx_bufs(struct vhost_virtqueue *vq,
998 struct vring_used_elem *heads,
999 int datalen,
1000 unsigned *iovcount,
1001 struct vhost_log *log,
Jason Wang94249362011-01-17 16:11:08 +08001002 unsigned *log_num,
1003 unsigned int quota)
David Stevens8dd014a2010-07-27 18:52:21 +03001004{
1005 unsigned int out, in;
1006 int seg = 0;
1007 int headcount = 0;
1008 unsigned d;
1009 int r, nlogs = 0;
Michael S. Tsirkin8b386942014-10-24 14:19:48 +03001010 /* len is always initialized before use since we are always called with
1011 * datalen > 0.
1012 */
1013 u32 uninitialized_var(len);
David Stevens8dd014a2010-07-27 18:52:21 +03001014
Jason Wang94249362011-01-17 16:11:08 +08001015 while (datalen > 0 && headcount < quota) {
Jason Wange0e9b402010-09-14 23:53:05 +08001016 if (unlikely(seg >= UIO_MAXIOV)) {
David Stevens8dd014a2010-07-27 18:52:21 +03001017 r = -ENOBUFS;
1018 goto err;
1019 }
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001020 r = vhost_get_vq_desc(vq, vq->iov + seg,
David Stevens8dd014a2010-07-27 18:52:21 +03001021 ARRAY_SIZE(vq->iov) - seg, &out,
1022 &in, log, log_num);
Michael S. Tsirkina39ee442014-03-27 12:53:37 +02001023 if (unlikely(r < 0))
1024 goto err;
1025
1026 d = r;
David Stevens8dd014a2010-07-27 18:52:21 +03001027 if (d == vq->num) {
1028 r = 0;
1029 goto err;
1030 }
1031 if (unlikely(out || in <= 0)) {
1032 vq_err(vq, "unexpected descriptor format for RX: "
1033 "out %d, in %d\n", out, in);
1034 r = -EINVAL;
1035 goto err;
1036 }
1037 if (unlikely(log)) {
1038 nlogs += *log_num;
1039 log += *log_num;
1040 }
Michael S. Tsirkin8b386942014-10-24 14:19:48 +03001041 heads[headcount].id = cpu_to_vhost32(vq, d);
1042 len = iov_length(vq->iov + seg, in);
1043 heads[headcount].len = cpu_to_vhost32(vq, len);
1044 datalen -= len;
David Stevens8dd014a2010-07-27 18:52:21 +03001045 ++headcount;
1046 seg += in;
1047 }
Michael S. Tsirkin99975cc2015-01-07 10:51:00 +02001048 heads[headcount - 1].len = cpu_to_vhost32(vq, len + datalen);
David Stevens8dd014a2010-07-27 18:52:21 +03001049 *iovcount = seg;
1050 if (unlikely(log))
1051 *log_num = nlogs;
Michael S. Tsirkind8316f32014-03-27 12:00:26 +02001052
1053 /* Detect overrun */
1054 if (unlikely(datalen > 0)) {
1055 r = UIO_MAXIOV + 1;
1056 goto err;
1057 }
David Stevens8dd014a2010-07-27 18:52:21 +03001058 return headcount;
1059err:
1060 vhost_discard_vq_desc(vq, headcount);
1061 return r;
1062}
1063
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001064/* Expects to be always run from workqueue - which acts as
1065 * read-size critical section for our kind of RCU. */
Jason Wang94249362011-01-17 16:11:08 +08001066static void handle_rx(struct vhost_net *net)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001067{
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001068 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_RX];
1069 struct vhost_virtqueue *vq = &nvq->vq;
David Stevens8dd014a2010-07-27 18:52:21 +03001070 unsigned uninitialized_var(in), log;
1071 struct vhost_log *vq_log;
1072 struct msghdr msg = {
1073 .msg_name = NULL,
1074 .msg_namelen = 0,
1075 .msg_control = NULL, /* FIXME: get and handle RX aux data. */
1076 .msg_controllen = 0,
David Stevens8dd014a2010-07-27 18:52:21 +03001077 .msg_flags = MSG_DONTWAIT,
1078 };
Jason Wang0960b642015-02-15 16:35:17 +08001079 struct virtio_net_hdr hdr = {
1080 .flags = 0,
1081 .gso_type = VIRTIO_NET_HDR_GSO_NONE
David Stevens8dd014a2010-07-27 18:52:21 +03001082 };
David Stevens8dd014a2010-07-27 18:52:21 +03001083 size_t total_len = 0;
Michael S. Tsirkin910a5782012-10-24 20:37:51 +02001084 int err, mergeable;
Jason Wangf5a49412018-05-29 14:18:19 +08001085 s16 headcount;
David Stevens8dd014a2010-07-27 18:52:21 +03001086 size_t vhost_hlen, sock_hlen;
1087 size_t vhost_len, sock_len;
Toshiaki Makitabe294a52018-07-03 16:31:33 +09001088 bool busyloop_intr = false;
Asias He2e26af72013-05-07 14:54:33 +08001089 struct socket *sock;
Al Viroba7438ae2014-12-10 15:51:28 -05001090 struct iov_iter fixup;
Jason Wang0960b642015-02-15 16:35:17 +08001091 __virtio16 num_buffers;
Paolo Abenidb688c22018-04-24 10:34:36 +02001092 int recv_pkts = 0;
David Stevens8dd014a2010-07-27 18:52:21 +03001093
Tonghao Zhanga6a67a22018-09-25 05:36:50 -07001094 mutex_lock_nested(&vq->mutex, VHOST_NET_VQ_RX);
Asias He2e26af72013-05-07 14:54:33 +08001095 sock = vq->private_data;
1096 if (!sock)
1097 goto out;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001098
1099 if (!vq_iotlb_prefetch(vq))
1100 goto out;
1101
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001102 vhost_disable_notify(&net->dev, vq);
Jason Wang8241a1e2016-06-01 01:56:33 -04001103 vhost_net_disable_vq(net, vq);
Asias He2e26af72013-05-07 14:54:33 +08001104
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001105 vhost_hlen = nvq->vhost_hlen;
1106 sock_hlen = nvq->sock_hlen;
David Stevens8dd014a2010-07-27 18:52:21 +03001107
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001108 vq_log = unlikely(vhost_has_feature(vq, VHOST_F_LOG_ALL)) ?
David Stevens8dd014a2010-07-27 18:52:21 +03001109 vq->log : NULL;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001110 mergeable = vhost_has_feature(vq, VIRTIO_NET_F_MRG_RXBUF);
David Stevens8dd014a2010-07-27 18:52:21 +03001111
Toshiaki Makitabe294a52018-07-03 16:31:33 +09001112 while ((sock_len = vhost_net_rx_peek_head_len(net, sock->sk,
1113 &busyloop_intr))) {
David Stevens8dd014a2010-07-27 18:52:21 +03001114 sock_len += sock_hlen;
1115 vhost_len = sock_len + vhost_hlen;
Jason Wangf5a49412018-05-29 14:18:19 +08001116 headcount = get_rx_bufs(vq, vq->heads + nvq->done_idx,
1117 vhost_len, &in, vq_log, &log,
Jason Wang94249362011-01-17 16:11:08 +08001118 likely(mergeable) ? UIO_MAXIOV : 1);
David Stevens8dd014a2010-07-27 18:52:21 +03001119 /* On error, stop handling until the next kick. */
1120 if (unlikely(headcount < 0))
Jason Wang8241a1e2016-06-01 01:56:33 -04001121 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +03001122 /* OK, now we need to know about added descriptors. */
1123 if (!headcount) {
Toshiaki Makita6369fec2018-07-03 16:31:34 +09001124 if (unlikely(busyloop_intr)) {
1125 vhost_poll_queue(&vq->poll);
1126 } else if (unlikely(vhost_enable_notify(&net->dev, vq))) {
David Stevens8dd014a2010-07-27 18:52:21 +03001127 /* They have slipped one in as we were
1128 * doing that: check again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001129 vhost_disable_notify(&net->dev, vq);
David Stevens8dd014a2010-07-27 18:52:21 +03001130 continue;
1131 }
1132 /* Nothing new? Wait for eventfd to tell us
1133 * they refilled. */
Jason Wang8241a1e2016-06-01 01:56:33 -04001134 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +03001135 }
Toshiaki Makita6369fec2018-07-03 16:31:34 +09001136 busyloop_intr = false;
Jason Wang5990a302018-01-04 11:14:27 +08001137 if (nvq->rx_ring)
Wei Xu6e474082017-12-01 05:10:36 -05001138 msg.msg_control = vhost_net_buf_consume(&nvq->rxq);
1139 /* On overrun, truncate and discard */
1140 if (unlikely(headcount > UIO_MAXIOV)) {
1141 iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1);
1142 err = sock->ops->recvmsg(sock, &msg,
1143 1, MSG_DONTWAIT | MSG_TRUNC);
1144 pr_debug("Discarded rx packet: len %zd\n", sock_len);
1145 continue;
1146 }
David Stevens8dd014a2010-07-27 18:52:21 +03001147 /* We don't need to be notified again. */
Al Viroba7438ae2014-12-10 15:51:28 -05001148 iov_iter_init(&msg.msg_iter, READ, vq->iov, in, vhost_len);
1149 fixup = msg.msg_iter;
1150 if (unlikely((vhost_hlen))) {
1151 /* We will supply the header ourselves
1152 * TODO: support TSO.
1153 */
1154 iov_iter_advance(&msg.msg_iter, vhost_hlen);
Al Viroba7438ae2014-12-10 15:51:28 -05001155 }
Ying Xue1b784142015-03-02 15:37:48 +08001156 err = sock->ops->recvmsg(sock, &msg,
David Stevens8dd014a2010-07-27 18:52:21 +03001157 sock_len, MSG_DONTWAIT | MSG_TRUNC);
1158 /* Userspace might have consumed the packet meanwhile:
1159 * it's not supposed to do this usually, but might be hard
1160 * to prevent. Discard data we got (if any) and keep going. */
1161 if (unlikely(err != sock_len)) {
1162 pr_debug("Discarded rx packet: "
1163 " len %d, expected %zd\n", err, sock_len);
1164 vhost_discard_vq_desc(vq, headcount);
1165 continue;
1166 }
Al Viroba7438ae2014-12-10 15:51:28 -05001167 /* Supply virtio_net_hdr if VHOST_NET_F_VIRTIO_NET_HDR */
Michael S. Tsirkin4c5a8442015-02-25 15:19:28 +01001168 if (unlikely(vhost_hlen)) {
1169 if (copy_to_iter(&hdr, sizeof(hdr),
1170 &fixup) != sizeof(hdr)) {
1171 vq_err(vq, "Unable to write vnet_hdr "
1172 "at addr %p\n", vq->iov->iov_base);
Jason Wang8241a1e2016-06-01 01:56:33 -04001173 goto out;
Michael S. Tsirkin4c5a8442015-02-25 15:19:28 +01001174 }
1175 } else {
1176 /* Header came from socket; we'll need to patch
1177 * ->num_buffers over if VIRTIO_NET_F_MRG_RXBUF
1178 */
1179 iov_iter_advance(&fixup, sizeof(hdr));
David Stevens8dd014a2010-07-27 18:52:21 +03001180 }
1181 /* TODO: Should check and handle checksum. */
Michael S. Tsirkin5201aa42015-02-03 11:07:06 +02001182
Jason Wang0960b642015-02-15 16:35:17 +08001183 num_buffers = cpu_to_vhost16(vq, headcount);
Jason Wangcfbdab92011-01-17 16:10:59 +08001184 if (likely(mergeable) &&
Michael S. Tsirkin0d79a492015-02-25 15:20:01 +01001185 copy_to_iter(&num_buffers, sizeof num_buffers,
1186 &fixup) != sizeof num_buffers) {
David Stevens8dd014a2010-07-27 18:52:21 +03001187 vq_err(vq, "Failed num_buffers write");
1188 vhost_discard_vq_desc(vq, headcount);
Jason Wang8241a1e2016-06-01 01:56:33 -04001189 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +03001190 }
Jason Wangf5a49412018-05-29 14:18:19 +08001191 nvq->done_idx += headcount;
Jason Wangd0d86972018-07-20 08:15:20 +08001192 if (nvq->done_idx > VHOST_NET_BATCH)
Jason Wang09c32482018-07-20 08:15:19 +08001193 vhost_net_signal_used(nvq);
David Stevens8dd014a2010-07-27 18:52:21 +03001194 if (unlikely(vq_log))
1195 vhost_log_write(vq, vq_log, log, vhost_len);
1196 total_len += vhost_len;
Jason Wang272f35c2018-07-20 08:15:15 +08001197 if (unlikely(vhost_exceeds_weight(++recv_pkts, total_len))) {
David Stevens8dd014a2010-07-27 18:52:21 +03001198 vhost_poll_queue(&vq->poll);
Jason Wang8241a1e2016-06-01 01:56:33 -04001199 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +03001200 }
1201 }
Toshiaki Makitabe294a52018-07-03 16:31:33 +09001202 if (unlikely(busyloop_intr))
1203 vhost_poll_queue(&vq->poll);
1204 else
1205 vhost_net_enable_vq(net, vq);
Asias He2e26af72013-05-07 14:54:33 +08001206out:
Jason Wang09c32482018-07-20 08:15:19 +08001207 vhost_net_signal_used(nvq);
David Stevens8dd014a2010-07-27 18:52:21 +03001208 mutex_unlock(&vq->mutex);
David Stevens8dd014a2010-07-27 18:52:21 +03001209}
1210
Tejun Heoc23f34452010-06-02 20:40:00 +02001211static void handle_tx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001212{
Tejun Heoc23f34452010-06-02 20:40:00 +02001213 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1214 poll.work);
1215 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
1216
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001217 handle_tx(net);
1218}
1219
Tejun Heoc23f34452010-06-02 20:40:00 +02001220static void handle_rx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001221{
Tejun Heoc23f34452010-06-02 20:40:00 +02001222 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1223 poll.work);
1224 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
1225
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001226 handle_rx(net);
1227}
1228
Tejun Heoc23f34452010-06-02 20:40:00 +02001229static void handle_tx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001230{
Tejun Heoc23f34452010-06-02 20:40:00 +02001231 struct vhost_net *net = container_of(work, struct vhost_net,
1232 poll[VHOST_NET_VQ_TX].work);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001233 handle_tx(net);
1234}
1235
Tejun Heoc23f34452010-06-02 20:40:00 +02001236static void handle_rx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001237{
Tejun Heoc23f34452010-06-02 20:40:00 +02001238 struct vhost_net *net = container_of(work, struct vhost_net,
1239 poll[VHOST_NET_VQ_RX].work);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001240 handle_rx(net);
1241}
1242
1243static int vhost_net_open(struct inode *inode, struct file *f)
1244{
Michael S. Tsirkin23cc5a92013-01-23 21:46:47 +01001245 struct vhost_net *n;
Tejun Heoc23f34452010-06-02 20:40:00 +02001246 struct vhost_dev *dev;
Asias He3ab2e422013-04-27 11:16:48 +08001247 struct vhost_virtqueue **vqs;
Jason Wang5990a302018-01-04 11:14:27 +08001248 void **queue;
Jason Wang0a0be132018-09-12 11:17:09 +08001249 struct xdp_buff *xdp;
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +08001250 int i;
Tejun Heoc23f34452010-06-02 20:40:00 +02001251
Michal Hockodcda9b02017-07-12 14:36:45 -07001252 n = kvmalloc(sizeof *n, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hocko6c5ab652017-05-08 15:57:15 -07001253 if (!n)
1254 return -ENOMEM;
Kees Cook6da2ec52018-06-12 13:55:00 -07001255 vqs = kmalloc_array(VHOST_NET_VQ_MAX, sizeof(*vqs), GFP_KERNEL);
Asias He3ab2e422013-04-27 11:16:48 +08001256 if (!vqs) {
Romain Francoised04257b2014-06-12 10:42:34 +02001257 kvfree(n);
Asias He3ab2e422013-04-27 11:16:48 +08001258 return -ENOMEM;
1259 }
Tejun Heoc23f34452010-06-02 20:40:00 +02001260
Jason Wangd0d86972018-07-20 08:15:20 +08001261 queue = kmalloc_array(VHOST_NET_BATCH, sizeof(void *),
Jason Wangc67df112017-05-17 12:14:45 +08001262 GFP_KERNEL);
1263 if (!queue) {
1264 kfree(vqs);
1265 kvfree(n);
1266 return -ENOMEM;
1267 }
1268 n->vqs[VHOST_NET_VQ_RX].rxq.queue = queue;
1269
Jason Wang0a0be132018-09-12 11:17:09 +08001270 xdp = kmalloc_array(VHOST_NET_BATCH, sizeof(*xdp), GFP_KERNEL);
1271 if (!xdp) {
1272 kfree(vqs);
1273 kvfree(n);
1274 kfree(queue);
Dan Carpenter8a1aff12018-09-20 13:01:59 +03001275 return -ENOMEM;
Jason Wang0a0be132018-09-12 11:17:09 +08001276 }
1277 n->vqs[VHOST_NET_VQ_TX].xdp = xdp;
1278
Tejun Heoc23f34452010-06-02 20:40:00 +02001279 dev = &n->dev;
Asias He3ab2e422013-04-27 11:16:48 +08001280 vqs[VHOST_NET_VQ_TX] = &n->vqs[VHOST_NET_VQ_TX].vq;
1281 vqs[VHOST_NET_VQ_RX] = &n->vqs[VHOST_NET_VQ_RX].vq;
1282 n->vqs[VHOST_NET_VQ_TX].vq.handle_kick = handle_tx_kick;
1283 n->vqs[VHOST_NET_VQ_RX].vq.handle_kick = handle_rx_kick;
Asias He28394002013-04-27 15:07:46 +08001284 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
1285 n->vqs[i].ubufs = NULL;
1286 n->vqs[i].ubuf_info = NULL;
1287 n->vqs[i].upend_idx = 0;
1288 n->vqs[i].done_idx = 0;
Jason Wang0a0be132018-09-12 11:17:09 +08001289 n->vqs[i].batched_xdp = 0;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001290 n->vqs[i].vhost_hlen = 0;
1291 n->vqs[i].sock_hlen = 0;
Alexander Potapenkoab7e34b2018-03-09 14:50:32 +08001292 n->vqs[i].rx_ring = NULL;
Jason Wangc67df112017-05-17 12:14:45 +08001293 vhost_net_buf_init(&n->vqs[i].rxq);
Asias He28394002013-04-27 15:07:46 +08001294 }
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +08001295 vhost_dev_init(dev, vqs, VHOST_NET_VQ_MAX);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001296
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001297 vhost_poll_init(n->poll + VHOST_NET_VQ_TX, handle_tx_net, EPOLLOUT, dev);
1298 vhost_poll_init(n->poll + VHOST_NET_VQ_RX, handle_rx_net, EPOLLIN, dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001299
1300 f->private_data = n;
1301
1302 return 0;
1303}
1304
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001305static struct socket *vhost_net_stop_vq(struct vhost_net *n,
1306 struct vhost_virtqueue *vq)
1307{
1308 struct socket *sock;
Jason Wangc67df112017-05-17 12:14:45 +08001309 struct vhost_net_virtqueue *nvq =
1310 container_of(vq, struct vhost_net_virtqueue, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001311
1312 mutex_lock(&vq->mutex);
Asias He22fa90c2013-05-07 14:54:36 +08001313 sock = vq->private_data;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001314 vhost_net_disable_vq(n, vq);
Asias He22fa90c2013-05-07 14:54:36 +08001315 vq->private_data = NULL;
Jason Wangc67df112017-05-17 12:14:45 +08001316 vhost_net_buf_unproduce(nvq);
Jason Wang303fd71b2018-03-09 14:50:33 +08001317 nvq->rx_ring = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001318 mutex_unlock(&vq->mutex);
1319 return sock;
1320}
1321
1322static void vhost_net_stop(struct vhost_net *n, struct socket **tx_sock,
1323 struct socket **rx_sock)
1324{
Asias He3ab2e422013-04-27 11:16:48 +08001325 *tx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_TX].vq);
1326 *rx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_RX].vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001327}
1328
1329static void vhost_net_flush_vq(struct vhost_net *n, int index)
1330{
1331 vhost_poll_flush(n->poll + index);
Asias He3ab2e422013-04-27 11:16:48 +08001332 vhost_poll_flush(&n->vqs[index].vq.poll);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001333}
1334
1335static void vhost_net_flush(struct vhost_net *n)
1336{
1337 vhost_net_flush_vq(n, VHOST_NET_VQ_TX);
1338 vhost_net_flush_vq(n, VHOST_NET_VQ_RX);
Asias He28394002013-04-27 15:07:46 +08001339 if (n->vqs[VHOST_NET_VQ_TX].ubufs) {
Asias He3ab2e422013-04-27 11:16:48 +08001340 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001341 n->tx_flush = true;
Asias He3ab2e422013-04-27 11:16:48 +08001342 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001343 /* Wait for all lower device DMAs done. */
Asias Hefe729a52013-05-06 16:38:24 +08001344 vhost_net_ubuf_put_and_wait(n->vqs[VHOST_NET_VQ_TX].ubufs);
Asias He3ab2e422013-04-27 11:16:48 +08001345 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001346 n->tx_flush = false;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +02001347 atomic_set(&n->vqs[VHOST_NET_VQ_TX].ubufs->refcount, 1);
Asias He3ab2e422013-04-27 11:16:48 +08001348 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001349 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001350}
1351
1352static int vhost_net_release(struct inode *inode, struct file *f)
1353{
1354 struct vhost_net *n = f->private_data;
1355 struct socket *tx_sock;
1356 struct socket *rx_sock;
1357
1358 vhost_net_stop(n, &tx_sock, &rx_sock);
1359 vhost_net_flush(n);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +00001360 vhost_dev_stop(&n->dev);
夷则(Caspar)f6f93f72017-12-25 00:08:58 +08001361 vhost_dev_cleanup(&n->dev);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001362 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001363 if (tx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001364 sockfd_put(tx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001365 if (rx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001366 sockfd_put(rx_sock);
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +02001367 /* Make sure no callbacks are outstanding */
1368 synchronize_rcu_bh();
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001369 /* We do an extra flush before freeing memory,
1370 * since jobs can re-queue themselves. */
1371 vhost_net_flush(n);
Jason Wangc67df112017-05-17 12:14:45 +08001372 kfree(n->vqs[VHOST_NET_VQ_RX].rxq.queue);
Jason Wang0a0be132018-09-12 11:17:09 +08001373 kfree(n->vqs[VHOST_NET_VQ_TX].xdp);
Asias He3ab2e422013-04-27 11:16:48 +08001374 kfree(n->dev.vqs);
Romain Francoised04257b2014-06-12 10:42:34 +02001375 kvfree(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001376 return 0;
1377}
1378
1379static struct socket *get_raw_socket(int fd)
1380{
1381 struct {
1382 struct sockaddr_ll sa;
1383 char buf[MAX_ADDR_LEN];
1384 } uaddr;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001385 int r;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001386 struct socket *sock = sockfd_lookup(fd, &r);
Krishna Kumard47effe2011-03-01 17:06:37 +05301387
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001388 if (!sock)
1389 return ERR_PTR(-ENOTSOCK);
1390
1391 /* Parameter checking */
1392 if (sock->sk->sk_type != SOCK_RAW) {
1393 r = -ESOCKTNOSUPPORT;
1394 goto err;
1395 }
1396
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001397 r = sock->ops->getname(sock, (struct sockaddr *)&uaddr.sa, 0);
1398 if (r < 0)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001399 goto err;
1400
1401 if (uaddr.sa.sll_family != AF_PACKET) {
1402 r = -EPFNOSUPPORT;
1403 goto err;
1404 }
1405 return sock;
1406err:
Al Viro09aaacf2014-03-05 20:39:00 -05001407 sockfd_put(sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001408 return ERR_PTR(r);
1409}
1410
Jason Wang5990a302018-01-04 11:14:27 +08001411static struct ptr_ring *get_tap_ptr_ring(int fd)
Jason Wangc67df112017-05-17 12:14:45 +08001412{
Jason Wang5990a302018-01-04 11:14:27 +08001413 struct ptr_ring *ring;
Jason Wangc67df112017-05-17 12:14:45 +08001414 struct file *file = fget(fd);
1415
1416 if (!file)
1417 return NULL;
Jason Wang5990a302018-01-04 11:14:27 +08001418 ring = tun_get_tx_ring(file);
1419 if (!IS_ERR(ring))
Jason Wangc67df112017-05-17 12:14:45 +08001420 goto out;
Jason Wang5990a302018-01-04 11:14:27 +08001421 ring = tap_get_ptr_ring(file);
1422 if (!IS_ERR(ring))
Jason Wangc67df112017-05-17 12:14:45 +08001423 goto out;
Jason Wang5990a302018-01-04 11:14:27 +08001424 ring = NULL;
Jason Wangc67df112017-05-17 12:14:45 +08001425out:
1426 fput(file);
Jason Wang5990a302018-01-04 11:14:27 +08001427 return ring;
Jason Wangc67df112017-05-17 12:14:45 +08001428}
1429
Arnd Bergmann501c7742010-02-18 05:46:50 +00001430static struct socket *get_tap_socket(int fd)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001431{
1432 struct file *file = fget(fd);
1433 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +05301434
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001435 if (!file)
1436 return ERR_PTR(-EBADF);
1437 sock = tun_get_socket(file);
Arnd Bergmann501c7742010-02-18 05:46:50 +00001438 if (!IS_ERR(sock))
1439 return sock;
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001440 sock = tap_get_socket(file);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001441 if (IS_ERR(sock))
1442 fput(file);
1443 return sock;
1444}
1445
1446static struct socket *get_socket(int fd)
1447{
1448 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +05301449
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001450 /* special case to disable backend */
1451 if (fd == -1)
1452 return NULL;
1453 sock = get_raw_socket(fd);
1454 if (!IS_ERR(sock))
1455 return sock;
Arnd Bergmann501c7742010-02-18 05:46:50 +00001456 sock = get_tap_socket(fd);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001457 if (!IS_ERR(sock))
1458 return sock;
1459 return ERR_PTR(-ENOTSOCK);
1460}
1461
1462static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
1463{
1464 struct socket *sock, *oldsock;
1465 struct vhost_virtqueue *vq;
Asias He28394002013-04-27 15:07:46 +08001466 struct vhost_net_virtqueue *nvq;
Asias Hefe729a52013-05-06 16:38:24 +08001467 struct vhost_net_ubuf_ref *ubufs, *oldubufs = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001468 int r;
1469
1470 mutex_lock(&n->dev.mutex);
1471 r = vhost_dev_check_owner(&n->dev);
1472 if (r)
1473 goto err;
1474
1475 if (index >= VHOST_NET_VQ_MAX) {
1476 r = -ENOBUFS;
1477 goto err;
1478 }
Asias He3ab2e422013-04-27 11:16:48 +08001479 vq = &n->vqs[index].vq;
Asias He28394002013-04-27 15:07:46 +08001480 nvq = &n->vqs[index];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001481 mutex_lock(&vq->mutex);
1482
1483 /* Verify that ring has been setup correctly. */
1484 if (!vhost_vq_access_ok(vq)) {
1485 r = -EFAULT;
Jeff Dike1dace8c2010-03-04 16:10:14 -05001486 goto err_vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001487 }
1488 sock = get_socket(fd);
1489 if (IS_ERR(sock)) {
1490 r = PTR_ERR(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -05001491 goto err_vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001492 }
1493
1494 /* start polling new socket */
Asias He22fa90c2013-05-07 14:54:36 +08001495 oldsock = vq->private_data;
David S. Miller11fe8832010-07-20 18:25:24 -07001496 if (sock != oldsock) {
Asias Hefe729a52013-05-06 16:38:24 +08001497 ubufs = vhost_net_ubuf_alloc(vq,
1498 sock && vhost_sock_zcopy(sock));
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001499 if (IS_ERR(ubufs)) {
1500 r = PTR_ERR(ubufs);
1501 goto err_ubufs;
1502 }
Jason Wang692a9982013-01-28 01:05:17 +00001503
Krishna Kumard47effe2011-03-01 17:06:37 +05301504 vhost_net_disable_vq(n, vq);
Asias He22fa90c2013-05-07 14:54:36 +08001505 vq->private_data = sock;
Jason Wangc67df112017-05-17 12:14:45 +08001506 vhost_net_buf_unproduce(nvq);
Greg Kurz80f7d032016-02-16 15:59:44 +01001507 r = vhost_vq_init_access(vq);
Jason Wangf59281d2011-06-21 18:04:27 +08001508 if (r)
Jason Wang692a9982013-01-28 01:05:17 +00001509 goto err_used;
Jason Wang2b8b3282013-01-28 01:05:18 +00001510 r = vhost_net_enable_vq(n, vq);
1511 if (r)
1512 goto err_used;
Jason Wang303fd71b2018-03-09 14:50:33 +08001513 if (index == VHOST_NET_VQ_RX)
1514 nvq->rx_ring = get_tap_ptr_ring(fd);
Jason Wang692a9982013-01-28 01:05:17 +00001515
Asias He28394002013-04-27 15:07:46 +08001516 oldubufs = nvq->ubufs;
1517 nvq->ubufs = ubufs;
Michael S. Tsirkin64e9a9b2012-12-03 07:31:51 +00001518
1519 n->tx_packets = 0;
1520 n->tx_zcopy_err = 0;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001521 n->tx_flush = false;
Jeff Dikedd1f4072010-03-04 16:10:14 -05001522 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001523
Michael S. Tsirkin1680e902010-07-15 15:19:12 +03001524 mutex_unlock(&vq->mutex);
1525
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001526 if (oldubufs) {
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +03001527 vhost_net_ubuf_put_wait_and_free(oldubufs);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001528 mutex_lock(&vq->mutex);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +00001529 vhost_zerocopy_signal_used(n, vq);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001530 mutex_unlock(&vq->mutex);
1531 }
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001532
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001533 if (oldsock) {
1534 vhost_net_flush_vq(n, index);
Al Viro09aaacf2014-03-05 20:39:00 -05001535 sockfd_put(oldsock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001536 }
Jeff Dike1dace8c2010-03-04 16:10:14 -05001537
Michael S. Tsirkin1680e902010-07-15 15:19:12 +03001538 mutex_unlock(&n->dev.mutex);
1539 return 0;
1540
Jason Wang692a9982013-01-28 01:05:17 +00001541err_used:
Asias He22fa90c2013-05-07 14:54:36 +08001542 vq->private_data = oldsock;
Jason Wang692a9982013-01-28 01:05:17 +00001543 vhost_net_enable_vq(n, vq);
1544 if (ubufs)
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +03001545 vhost_net_ubuf_put_wait_and_free(ubufs);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001546err_ubufs:
Jason Wangb8f1f652018-06-21 13:11:31 +08001547 if (sock)
1548 sockfd_put(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -05001549err_vq:
1550 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001551err:
1552 mutex_unlock(&n->dev.mutex);
1553 return r;
1554}
1555
1556static long vhost_net_reset_owner(struct vhost_net *n)
1557{
1558 struct socket *tx_sock = NULL;
1559 struct socket *rx_sock = NULL;
1560 long err;
Jason Wanga9709d62016-06-23 02:04:31 -04001561 struct vhost_umem *umem;
Krishna Kumard47effe2011-03-01 17:06:37 +05301562
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001563 mutex_lock(&n->dev.mutex);
1564 err = vhost_dev_check_owner(&n->dev);
1565 if (err)
1566 goto done;
Jason Wanga9709d62016-06-23 02:04:31 -04001567 umem = vhost_dev_reset_owner_prepare();
1568 if (!umem) {
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +03001569 err = -ENOMEM;
1570 goto done;
1571 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001572 vhost_net_stop(n, &tx_sock, &rx_sock);
1573 vhost_net_flush(n);
Jason Wang4cd87952018-01-25 22:03:52 +08001574 vhost_dev_stop(&n->dev);
Jason Wanga9709d62016-06-23 02:04:31 -04001575 vhost_dev_reset_owner(&n->dev, umem);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001576 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001577done:
1578 mutex_unlock(&n->dev.mutex);
1579 if (tx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001580 sockfd_put(tx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001581 if (rx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001582 sockfd_put(rx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001583 return err;
1584}
1585
Jason Wang429711a2018-08-06 11:17:47 +08001586static int vhost_net_set_backend_features(struct vhost_net *n, u64 features)
1587{
1588 int i;
1589
1590 mutex_lock(&n->dev.mutex);
1591 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
1592 mutex_lock(&n->vqs[i].vq.mutex);
1593 n->vqs[i].vq.acked_backend_features = features;
1594 mutex_unlock(&n->vqs[i].vq.mutex);
1595 }
1596 mutex_unlock(&n->dev.mutex);
1597
1598 return 0;
1599}
1600
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001601static int vhost_net_set_features(struct vhost_net *n, u64 features)
1602{
David Stevens8dd014a2010-07-27 18:52:21 +03001603 size_t vhost_hlen, sock_hlen, hdr_len;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001604 int i;
David Stevens8dd014a2010-07-27 18:52:21 +03001605
Michael S. Tsirkine4fca7d2014-10-24 14:23:52 +03001606 hdr_len = (features & ((1ULL << VIRTIO_NET_F_MRG_RXBUF) |
1607 (1ULL << VIRTIO_F_VERSION_1))) ?
David Stevens8dd014a2010-07-27 18:52:21 +03001608 sizeof(struct virtio_net_hdr_mrg_rxbuf) :
1609 sizeof(struct virtio_net_hdr);
1610 if (features & (1 << VHOST_NET_F_VIRTIO_NET_HDR)) {
1611 /* vhost provides vnet_hdr */
1612 vhost_hlen = hdr_len;
1613 sock_hlen = 0;
1614 } else {
1615 /* socket provides vnet_hdr */
1616 vhost_hlen = 0;
1617 sock_hlen = hdr_len;
1618 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001619 mutex_lock(&n->dev.mutex);
1620 if ((features & (1 << VHOST_F_LOG_ALL)) &&
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001621 !vhost_log_access_ok(&n->dev))
1622 goto out_unlock;
1623
1624 if ((features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))) {
1625 if (vhost_init_device_iotlb(&n->dev, true))
1626 goto out_unlock;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001627 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001628
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001629 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +08001630 mutex_lock(&n->vqs[i].vq.mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001631 n->vqs[i].vq.acked_features = features;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001632 n->vqs[i].vhost_hlen = vhost_hlen;
1633 n->vqs[i].sock_hlen = sock_hlen;
Asias He3ab2e422013-04-27 11:16:48 +08001634 mutex_unlock(&n->vqs[i].vq.mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001635 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001636 mutex_unlock(&n->dev.mutex);
1637 return 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001638
1639out_unlock:
1640 mutex_unlock(&n->dev.mutex);
1641 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001642}
1643
Asias Heb1ad8492013-05-06 11:16:00 +08001644static long vhost_net_set_owner(struct vhost_net *n)
1645{
1646 int r;
1647
1648 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin05c05352013-06-06 15:20:39 +03001649 if (vhost_dev_has_owner(&n->dev)) {
1650 r = -EBUSY;
1651 goto out;
1652 }
Asias Heb1ad8492013-05-06 11:16:00 +08001653 r = vhost_net_set_ubuf_info(n);
1654 if (r)
1655 goto out;
1656 r = vhost_dev_set_owner(&n->dev);
1657 if (r)
1658 vhost_net_clear_ubuf_info(n);
1659 vhost_net_flush(n);
1660out:
1661 mutex_unlock(&n->dev.mutex);
1662 return r;
1663}
1664
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001665static long vhost_net_ioctl(struct file *f, unsigned int ioctl,
1666 unsigned long arg)
1667{
1668 struct vhost_net *n = f->private_data;
1669 void __user *argp = (void __user *)arg;
1670 u64 __user *featurep = argp;
1671 struct vhost_vring_file backend;
1672 u64 features;
1673 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301674
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001675 switch (ioctl) {
1676 case VHOST_NET_SET_BACKEND:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001677 if (copy_from_user(&backend, argp, sizeof backend))
1678 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001679 return vhost_net_set_backend(n, backend.index, backend.fd);
1680 case VHOST_GET_FEATURES:
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001681 features = VHOST_NET_FEATURES;
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001682 if (copy_to_user(featurep, &features, sizeof features))
1683 return -EFAULT;
1684 return 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001685 case VHOST_SET_FEATURES:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001686 if (copy_from_user(&features, featurep, sizeof features))
1687 return -EFAULT;
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001688 if (features & ~VHOST_NET_FEATURES)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001689 return -EOPNOTSUPP;
1690 return vhost_net_set_features(n, features);
Jason Wang429711a2018-08-06 11:17:47 +08001691 case VHOST_GET_BACKEND_FEATURES:
1692 features = VHOST_NET_BACKEND_FEATURES;
1693 if (copy_to_user(featurep, &features, sizeof(features)))
1694 return -EFAULT;
1695 return 0;
1696 case VHOST_SET_BACKEND_FEATURES:
1697 if (copy_from_user(&features, featurep, sizeof(features)))
1698 return -EFAULT;
1699 if (features & ~VHOST_NET_BACKEND_FEATURES)
1700 return -EOPNOTSUPP;
1701 return vhost_net_set_backend_features(n, features);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001702 case VHOST_RESET_OWNER:
1703 return vhost_net_reset_owner(n);
Asias Heb1ad8492013-05-06 11:16:00 +08001704 case VHOST_SET_OWNER:
1705 return vhost_net_set_owner(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001706 default:
1707 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001708 r = vhost_dev_ioctl(&n->dev, ioctl, argp);
1709 if (r == -ENOIOCTLCMD)
1710 r = vhost_vring_ioctl(&n->dev, ioctl, argp);
1711 else
1712 vhost_net_flush(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001713 mutex_unlock(&n->dev.mutex);
1714 return r;
1715 }
1716}
1717
1718#ifdef CONFIG_COMPAT
1719static long vhost_net_compat_ioctl(struct file *f, unsigned int ioctl,
1720 unsigned long arg)
1721{
1722 return vhost_net_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1723}
1724#endif
1725
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001726static ssize_t vhost_net_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
1727{
1728 struct file *file = iocb->ki_filp;
1729 struct vhost_net *n = file->private_data;
1730 struct vhost_dev *dev = &n->dev;
1731 int noblock = file->f_flags & O_NONBLOCK;
1732
1733 return vhost_chr_read_iter(dev, to, noblock);
1734}
1735
1736static ssize_t vhost_net_chr_write_iter(struct kiocb *iocb,
1737 struct iov_iter *from)
1738{
1739 struct file *file = iocb->ki_filp;
1740 struct vhost_net *n = file->private_data;
1741 struct vhost_dev *dev = &n->dev;
1742
1743 return vhost_chr_write_iter(dev, from);
1744}
1745
Al Viroafc9a422017-07-03 06:39:46 -04001746static __poll_t vhost_net_chr_poll(struct file *file, poll_table *wait)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001747{
1748 struct vhost_net *n = file->private_data;
1749 struct vhost_dev *dev = &n->dev;
1750
1751 return vhost_chr_poll(file, dev, wait);
1752}
1753
Tobias Klauser373a83a2010-05-17 15:12:49 +02001754static const struct file_operations vhost_net_fops = {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001755 .owner = THIS_MODULE,
1756 .release = vhost_net_release,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001757 .read_iter = vhost_net_chr_read_iter,
1758 .write_iter = vhost_net_chr_write_iter,
1759 .poll = vhost_net_chr_poll,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001760 .unlocked_ioctl = vhost_net_ioctl,
1761#ifdef CONFIG_COMPAT
1762 .compat_ioctl = vhost_net_compat_ioctl,
1763#endif
1764 .open = vhost_net_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001765 .llseek = noop_llseek,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001766};
1767
1768static struct miscdevice vhost_net_misc = {
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001769 .minor = VHOST_NET_MINOR,
1770 .name = "vhost-net",
1771 .fops = &vhost_net_fops,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001772};
1773
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001774static int vhost_net_init(void)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001775{
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001776 if (experimental_zcopytx)
Asias Hefe729a52013-05-06 16:38:24 +08001777 vhost_net_enable_zcopy(VHOST_NET_VQ_TX);
Tejun Heoc23f34452010-06-02 20:40:00 +02001778 return misc_register(&vhost_net_misc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001779}
1780module_init(vhost_net_init);
1781
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001782static void vhost_net_exit(void)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001783{
1784 misc_deregister(&vhost_net_misc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001785}
1786module_exit(vhost_net_exit);
1787
1788MODULE_VERSION("0.0.1");
1789MODULE_LICENSE("GPL v2");
1790MODULE_AUTHOR("Michael S. Tsirkin");
1791MODULE_DESCRIPTION("Host kernel accelerator for virtio net");
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001792MODULE_ALIAS_MISCDEV(VHOST_NET_MINOR);
1793MODULE_ALIAS("devname:vhost-net");