blob: 12bcfbac2cc9de526e1bfdcaf558c9b3396976a3 [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>
35
36#include "vhost.h"
37
Michael S. Tsirkinf9611c42012-12-06 14:56:00 +020038static int experimental_zcopytx = 1;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000039module_param(experimental_zcopytx, int, 0444);
Michael S. Tsirkinf9611c42012-12-06 14:56:00 +020040MODULE_PARM_DESC(experimental_zcopytx, "Enable Zero Copy TX;"
41 " 1 -Enable; 0 - Disable");
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000042
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000043/* Max number of bytes transferred before requeueing the job.
44 * Using this limit prevents one virtqueue from starving others. */
45#define VHOST_NET_WEIGHT 0x80000
46
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000047/* MAX number of TX used buffers for outstanding zerocopy */
48#define VHOST_MAX_PEND 128
49#define VHOST_GOODCOPY_LEN 256
50
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000051/*
52 * For transmit, used buffer len is unused; we override it to track buffer
53 * status internally; used for zerocopy tx only.
54 */
55/* Lower device DMA failed */
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030056#define VHOST_DMA_FAILED_LEN ((__force __virtio32)3)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000057/* Lower device DMA done */
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030058#define VHOST_DMA_DONE_LEN ((__force __virtio32)2)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000059/* Lower device DMA in progress */
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030060#define VHOST_DMA_IN_PROGRESS ((__force __virtio32)1)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000061/* Buffer unused */
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030062#define VHOST_DMA_CLEAR_LEN ((__force __virtio32)0)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000063
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030064#define VHOST_DMA_IS_DONE(len) ((__force u32)(len) >= (__force u32)VHOST_DMA_DONE_LEN)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000065
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000066enum {
Asias He8570a6e2013-05-06 16:38:20 +080067 VHOST_NET_FEATURES = VHOST_FEATURES |
68 (1ULL << VHOST_NET_F_VIRTIO_NET_HDR) |
Jason Wang6b1e6cc2016-06-23 02:04:32 -040069 (1ULL << VIRTIO_NET_F_MRG_RXBUF) |
70 (1ULL << VIRTIO_F_IOMMU_PLATFORM)
Asias He8570a6e2013-05-06 16:38:20 +080071};
72
73enum {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000074 VHOST_NET_VQ_RX = 0,
75 VHOST_NET_VQ_TX = 1,
76 VHOST_NET_VQ_MAX = 2,
77};
78
Asias Hefe729a52013-05-06 16:38:24 +080079struct vhost_net_ubuf_ref {
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +020080 /* refcount follows semantics similar to kref:
81 * 0: object is released
82 * 1: no outstanding ubufs
83 * >1: outstanding ubufs
84 */
85 atomic_t refcount;
Asias He28394002013-04-27 15:07:46 +080086 wait_queue_head_t wait;
87 struct vhost_virtqueue *vq;
88};
89
Jason Wangc67df112017-05-17 12:14:45 +080090#define VHOST_RX_BATCH 64
91struct vhost_net_buf {
Jason Wang5990a302018-01-04 11:14:27 +080092 void **queue;
Jason Wangc67df112017-05-17 12:14:45 +080093 int tail;
94 int head;
95};
96
Asias He3ab2e422013-04-27 11:16:48 +080097struct vhost_net_virtqueue {
98 struct vhost_virtqueue vq;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +030099 size_t vhost_hlen;
100 size_t sock_hlen;
Asias He28394002013-04-27 15:07:46 +0800101 /* vhost zerocopy support fields below: */
102 /* last used idx for outstanding DMA zerocopy buffers */
103 int upend_idx;
104 /* first used idx for DMA done zerocopy buffers */
105 int done_idx;
106 /* an array of userspace buffers info */
107 struct ubuf_info *ubuf_info;
108 /* Reference counting for outstanding ubufs.
109 * Protected by vq mutex. Writers must also take device mutex. */
Asias Hefe729a52013-05-06 16:38:24 +0800110 struct vhost_net_ubuf_ref *ubufs;
Jason Wang5990a302018-01-04 11:14:27 +0800111 struct ptr_ring *rx_ring;
Jason Wangc67df112017-05-17 12:14:45 +0800112 struct vhost_net_buf rxq;
Asias He3ab2e422013-04-27 11:16:48 +0800113};
114
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000115struct vhost_net {
116 struct vhost_dev dev;
Asias He3ab2e422013-04-27 11:16:48 +0800117 struct vhost_net_virtqueue vqs[VHOST_NET_VQ_MAX];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000118 struct vhost_poll poll[VHOST_NET_VQ_MAX];
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000119 /* Number of TX recently submitted.
120 * Protected by tx vq lock. */
121 unsigned tx_packets;
122 /* Number of times zerocopy TX recently failed.
123 * Protected by tx vq lock. */
124 unsigned tx_zcopy_err;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200125 /* Flush in progress. Protected by tx vq lock. */
126 bool tx_flush;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000127};
128
Asias Hefe729a52013-05-06 16:38:24 +0800129static unsigned vhost_net_zcopy_mask __read_mostly;
Asias He28394002013-04-27 15:07:46 +0800130
Jason Wangc67df112017-05-17 12:14:45 +0800131static void *vhost_net_buf_get_ptr(struct vhost_net_buf *rxq)
132{
133 if (rxq->tail != rxq->head)
134 return rxq->queue[rxq->head];
135 else
136 return NULL;
137}
138
139static int vhost_net_buf_get_size(struct vhost_net_buf *rxq)
140{
141 return rxq->tail - rxq->head;
142}
143
144static int vhost_net_buf_is_empty(struct vhost_net_buf *rxq)
145{
146 return rxq->tail == rxq->head;
147}
148
149static void *vhost_net_buf_consume(struct vhost_net_buf *rxq)
150{
151 void *ret = vhost_net_buf_get_ptr(rxq);
152 ++rxq->head;
153 return ret;
154}
155
156static int vhost_net_buf_produce(struct vhost_net_virtqueue *nvq)
157{
158 struct vhost_net_buf *rxq = &nvq->rxq;
159
160 rxq->head = 0;
Jason Wang5990a302018-01-04 11:14:27 +0800161 rxq->tail = ptr_ring_consume_batched(nvq->rx_ring, rxq->queue,
Jason Wangc67df112017-05-17 12:14:45 +0800162 VHOST_RX_BATCH);
163 return rxq->tail;
164}
165
166static void vhost_net_buf_unproduce(struct vhost_net_virtqueue *nvq)
167{
168 struct vhost_net_buf *rxq = &nvq->rxq;
169
Jason Wang5990a302018-01-04 11:14:27 +0800170 if (nvq->rx_ring && !vhost_net_buf_is_empty(rxq)) {
171 ptr_ring_unconsume(nvq->rx_ring, rxq->queue + rxq->head,
172 vhost_net_buf_get_size(rxq),
Jason Wang3a403072018-03-09 14:50:34 +0800173 tun_ptr_free);
Jason Wangc67df112017-05-17 12:14:45 +0800174 rxq->head = rxq->tail = 0;
175 }
176}
177
Jason Wangfc72d1d2018-01-04 11:14:28 +0800178static int vhost_net_buf_peek_len(void *ptr)
179{
180 if (tun_is_xdp_buff(ptr)) {
181 struct xdp_buff *xdp = tun_ptr_to_xdp(ptr);
182
183 return xdp->data_end - xdp->data;
184 }
185
186 return __skb_array_len_with_tag(ptr);
187}
188
Jason Wangc67df112017-05-17 12:14:45 +0800189static int vhost_net_buf_peek(struct vhost_net_virtqueue *nvq)
190{
191 struct vhost_net_buf *rxq = &nvq->rxq;
192
193 if (!vhost_net_buf_is_empty(rxq))
194 goto out;
195
196 if (!vhost_net_buf_produce(nvq))
197 return 0;
198
199out:
Jason Wangfc72d1d2018-01-04 11:14:28 +0800200 return vhost_net_buf_peek_len(vhost_net_buf_get_ptr(rxq));
Jason Wangc67df112017-05-17 12:14:45 +0800201}
202
203static void vhost_net_buf_init(struct vhost_net_buf *rxq)
204{
205 rxq->head = rxq->tail = 0;
206}
207
Asias Hefe729a52013-05-06 16:38:24 +0800208static void vhost_net_enable_zcopy(int vq)
Asias He28394002013-04-27 15:07:46 +0800209{
Asias Hefe729a52013-05-06 16:38:24 +0800210 vhost_net_zcopy_mask |= 0x1 << vq;
Asias He28394002013-04-27 15:07:46 +0800211}
212
Asias Hefe729a52013-05-06 16:38:24 +0800213static struct vhost_net_ubuf_ref *
214vhost_net_ubuf_alloc(struct vhost_virtqueue *vq, bool zcopy)
Asias He28394002013-04-27 15:07:46 +0800215{
Asias Hefe729a52013-05-06 16:38:24 +0800216 struct vhost_net_ubuf_ref *ubufs;
Asias He28394002013-04-27 15:07:46 +0800217 /* No zero copy backend? Nothing to count. */
218 if (!zcopy)
219 return NULL;
220 ubufs = kmalloc(sizeof(*ubufs), GFP_KERNEL);
221 if (!ubufs)
222 return ERR_PTR(-ENOMEM);
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200223 atomic_set(&ubufs->refcount, 1);
Asias He28394002013-04-27 15:07:46 +0800224 init_waitqueue_head(&ubufs->wait);
225 ubufs->vq = vq;
226 return ubufs;
227}
228
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200229static int vhost_net_ubuf_put(struct vhost_net_ubuf_ref *ubufs)
Asias He28394002013-04-27 15:07:46 +0800230{
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200231 int r = atomic_sub_return(1, &ubufs->refcount);
232 if (unlikely(!r))
233 wake_up(&ubufs->wait);
234 return r;
Asias He28394002013-04-27 15:07:46 +0800235}
236
Asias Hefe729a52013-05-06 16:38:24 +0800237static void vhost_net_ubuf_put_and_wait(struct vhost_net_ubuf_ref *ubufs)
Asias He28394002013-04-27 15:07:46 +0800238{
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200239 vhost_net_ubuf_put(ubufs);
240 wait_event(ubufs->wait, !atomic_read(&ubufs->refcount));
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +0300241}
242
243static void vhost_net_ubuf_put_wait_and_free(struct vhost_net_ubuf_ref *ubufs)
244{
245 vhost_net_ubuf_put_and_wait(ubufs);
Asias He28394002013-04-27 15:07:46 +0800246 kfree(ubufs);
247}
248
Asias Heb1ad8492013-05-06 11:16:00 +0800249static void vhost_net_clear_ubuf_info(struct vhost_net *n)
250{
Asias Heb1ad8492013-05-06 11:16:00 +0800251 int i;
252
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300253 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
254 kfree(n->vqs[i].ubuf_info);
255 n->vqs[i].ubuf_info = NULL;
Asias Heb1ad8492013-05-06 11:16:00 +0800256 }
257}
258
Asias He0a1febf2013-06-05 21:17:38 +0800259static int vhost_net_set_ubuf_info(struct vhost_net *n)
Asias He28394002013-04-27 15:07:46 +0800260{
261 bool zcopy;
262 int i;
263
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300264 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
Asias Hefe729a52013-05-06 16:38:24 +0800265 zcopy = vhost_net_zcopy_mask & (0x1 << i);
Asias He28394002013-04-27 15:07:46 +0800266 if (!zcopy)
267 continue;
268 n->vqs[i].ubuf_info = kmalloc(sizeof(*n->vqs[i].ubuf_info) *
269 UIO_MAXIOV, GFP_KERNEL);
270 if (!n->vqs[i].ubuf_info)
271 goto err;
272 }
273 return 0;
274
275err:
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300276 vhost_net_clear_ubuf_info(n);
Asias He28394002013-04-27 15:07:46 +0800277 return -ENOMEM;
278}
279
Asias He0a1febf2013-06-05 21:17:38 +0800280static void vhost_net_vq_reset(struct vhost_net *n)
Asias He28394002013-04-27 15:07:46 +0800281{
282 int i;
283
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300284 vhost_net_clear_ubuf_info(n);
285
Asias He28394002013-04-27 15:07:46 +0800286 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
287 n->vqs[i].done_idx = 0;
288 n->vqs[i].upend_idx = 0;
289 n->vqs[i].ubufs = NULL;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300290 n->vqs[i].vhost_hlen = 0;
291 n->vqs[i].sock_hlen = 0;
Jason Wangc67df112017-05-17 12:14:45 +0800292 vhost_net_buf_init(&n->vqs[i].rxq);
Asias He28394002013-04-27 15:07:46 +0800293 }
294
295}
296
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000297static void vhost_net_tx_packet(struct vhost_net *net)
298{
299 ++net->tx_packets;
300 if (net->tx_packets < 1024)
301 return;
302 net->tx_packets = 0;
303 net->tx_zcopy_err = 0;
304}
305
306static void vhost_net_tx_err(struct vhost_net *net)
307{
308 ++net->tx_zcopy_err;
309}
310
311static bool vhost_net_tx_select_zcopy(struct vhost_net *net)
312{
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200313 /* TX flush waits for outstanding DMAs to be done.
314 * Don't start new DMAs.
315 */
316 return !net->tx_flush &&
317 net->tx_packets / 64 >= net->tx_zcopy_err;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000318}
319
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000320static bool vhost_sock_zcopy(struct socket *sock)
321{
322 return unlikely(experimental_zcopytx) &&
323 sock_flag(sock->sk, SOCK_ZEROCOPY);
324}
325
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000326/* In case of DMA done not in order in lower device driver for some reason.
327 * upend_idx is used to track end of used idx, done_idx is used to track head
328 * of used idx. Once lower device DMA done contiguously, we will signal KVM
329 * guest used idx.
330 */
Jason Wang094afe72013-09-02 16:40:56 +0800331static void vhost_zerocopy_signal_used(struct vhost_net *net,
332 struct vhost_virtqueue *vq)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000333{
Asias He28394002013-04-27 15:07:46 +0800334 struct vhost_net_virtqueue *nvq =
335 container_of(vq, struct vhost_net_virtqueue, vq);
Jason Wangc92112a2013-09-02 16:40:57 +0800336 int i, add;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000337 int j = 0;
338
Asias He28394002013-04-27 15:07:46 +0800339 for (i = nvq->done_idx; i != nvq->upend_idx; i = (i + 1) % UIO_MAXIOV) {
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000340 if (vq->heads[i].len == VHOST_DMA_FAILED_LEN)
341 vhost_net_tx_err(net);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000342 if (VHOST_DMA_IS_DONE(vq->heads[i].len)) {
343 vq->heads[i].len = VHOST_DMA_CLEAR_LEN;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000344 ++j;
345 } else
346 break;
347 }
Jason Wangc92112a2013-09-02 16:40:57 +0800348 while (j) {
349 add = min(UIO_MAXIOV - nvq->done_idx, j);
350 vhost_add_used_and_signal_n(vq->dev, vq,
351 &vq->heads[nvq->done_idx], add);
352 nvq->done_idx = (nvq->done_idx + add) % UIO_MAXIOV;
353 j -= add;
354 }
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000355}
356
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000357static void vhost_zerocopy_callback(struct ubuf_info *ubuf, bool success)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000358{
Asias Hefe729a52013-05-06 16:38:24 +0800359 struct vhost_net_ubuf_ref *ubufs = ubuf->ctx;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000360 struct vhost_virtqueue *vq = ubufs->vq;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200361 int cnt;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000362
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +0200363 rcu_read_lock_bh();
364
Jason Wang19c73b32013-09-02 16:41:00 +0800365 /* set len to mark this desc buffers done DMA */
366 vq->heads[ubuf->desc].len = success ?
367 VHOST_DMA_DONE_LEN : VHOST_DMA_FAILED_LEN;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200368 cnt = vhost_net_ubuf_put(ubufs);
Jason Wang19c73b32013-09-02 16:41:00 +0800369
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000370 /*
371 * Trigger polling thread if guest stopped submitting new buffers:
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200372 * in this case, the refcount after decrement will eventually reach 1.
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000373 * We also trigger polling periodically after each 16 packets
374 * (the value 16 here is more or less arbitrary, it's tuned to trigger
375 * less than 10% of times).
376 */
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200377 if (cnt <= 1 || !(cnt % 16))
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000378 vhost_poll_queue(&vq->poll);
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +0200379
380 rcu_read_unlock_bh();
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000381}
382
Jason Wang03088132016-03-04 06:24:53 -0500383static inline unsigned long busy_clock(void)
384{
385 return local_clock() >> 10;
386}
387
388static bool vhost_can_busy_poll(struct vhost_dev *dev,
389 unsigned long endtime)
390{
391 return likely(!need_resched()) &&
392 likely(!time_after(busy_clock(), endtime)) &&
393 likely(!signal_pending(current)) &&
394 !vhost_has_work(dev);
395}
396
Jason Wang8241a1e2016-06-01 01:56:33 -0400397static void vhost_net_disable_vq(struct vhost_net *n,
398 struct vhost_virtqueue *vq)
399{
400 struct vhost_net_virtqueue *nvq =
401 container_of(vq, struct vhost_net_virtqueue, vq);
402 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
403 if (!vq->private_data)
404 return;
405 vhost_poll_stop(poll);
406}
407
408static int vhost_net_enable_vq(struct vhost_net *n,
409 struct vhost_virtqueue *vq)
410{
411 struct vhost_net_virtqueue *nvq =
412 container_of(vq, struct vhost_net_virtqueue, vq);
413 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
414 struct socket *sock;
415
416 sock = vq->private_data;
417 if (!sock)
418 return 0;
419
420 return vhost_poll_start(poll, sock->file);
421}
422
Jason Wang03088132016-03-04 06:24:53 -0500423static int vhost_net_tx_get_vq_desc(struct vhost_net *net,
424 struct vhost_virtqueue *vq,
425 struct iovec iov[], unsigned int iov_size,
426 unsigned int *out_num, unsigned int *in_num)
427{
428 unsigned long uninitialized_var(endtime);
429 int r = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400430 out_num, in_num, NULL, NULL);
Jason Wang03088132016-03-04 06:24:53 -0500431
432 if (r == vq->num && vq->busyloop_timeout) {
433 preempt_disable();
434 endtime = busy_clock() + vq->busyloop_timeout;
435 while (vhost_can_busy_poll(vq->dev, endtime) &&
436 vhost_vq_avail_empty(vq->dev, vq))
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200437 cpu_relax();
Jason Wang03088132016-03-04 06:24:53 -0500438 preempt_enable();
439 r = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400440 out_num, in_num, NULL, NULL);
Jason Wang03088132016-03-04 06:24:53 -0500441 }
442
443 return r;
444}
445
Jason Wang0ed005c2017-01-18 15:02:02 +0800446static bool vhost_exceeds_maxpend(struct vhost_net *net)
447{
448 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
449 struct vhost_virtqueue *vq = &nvq->vq;
450
Willem de Bruijn1e6f7452017-10-06 13:22:31 -0400451 return (nvq->upend_idx + UIO_MAXIOV - nvq->done_idx) % UIO_MAXIOV >
452 min_t(unsigned int, VHOST_MAX_PEND, vq->num >> 2);
Jason Wang0ed005c2017-01-18 15:02:02 +0800453}
454
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000455/* Expects to be always run from workqueue - which acts as
456 * read-size critical section for our kind of RCU. */
457static void handle_tx(struct vhost_net *net)
458{
Asias He28394002013-04-27 15:07:46 +0800459 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300460 struct vhost_virtqueue *vq = &nvq->vq;
Al Viro98a527a2014-12-10 15:00:58 -0500461 unsigned out, in;
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300462 int head;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000463 struct msghdr msg = {
464 .msg_name = NULL,
465 .msg_namelen = 0,
466 .msg_control = NULL,
467 .msg_controllen = 0,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000468 .msg_flags = MSG_DONTWAIT,
469 };
470 size_t len, total_len = 0;
Jason Wang70181d512013-04-10 20:50:48 +0000471 int err;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000472 size_t hdr_size;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100473 struct socket *sock;
Asias Hefe729a52013-05-06 16:38:24 +0800474 struct vhost_net_ubuf_ref *uninitialized_var(ubufs);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200475 bool zcopy, zcopy_used;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100476
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000477 mutex_lock(&vq->mutex);
Asias He2e26af72013-05-07 14:54:33 +0800478 sock = vq->private_data;
479 if (!sock)
480 goto out;
481
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400482 if (!vq_iotlb_prefetch(vq))
483 goto out;
484
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300485 vhost_disable_notify(&net->dev, vq);
Jason Wangfeb88922017-11-13 11:45:34 +0800486 vhost_net_disable_vq(net, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000487
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300488 hdr_size = nvq->vhost_hlen;
Asias He28394002013-04-27 15:07:46 +0800489 zcopy = nvq->ubufs;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000490
491 for (;;) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000492 /* Release DMAs done buffers first */
493 if (zcopy)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000494 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000495
Jason Wangf7c6be42013-09-02 16:41:01 +0800496
Jason Wang03088132016-03-04 06:24:53 -0500497 head = vhost_net_tx_get_vq_desc(net, vq, vq->iov,
498 ARRAY_SIZE(vq->iov),
499 &out, &in);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300500 /* On error, stop handling until the next kick. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +0300501 if (unlikely(head < 0))
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300502 break;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000503 /* Nothing new? Wait for eventfd to tell us they refilled. */
504 if (head == vq->num) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300505 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
506 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000507 continue;
508 }
509 break;
510 }
511 if (in) {
512 vq_err(vq, "Unexpected descriptor format for TX: "
513 "out %d, int %d\n", out, in);
514 break;
515 }
516 /* Skip header. TODO: support TSO. */
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000517 len = iov_length(vq->iov, out);
Al Viroc0371da2014-11-24 10:42:55 -0500518 iov_iter_init(&msg.msg_iter, WRITE, vq->iov, out, len);
Al Viro98a527a2014-12-10 15:00:58 -0500519 iov_iter_advance(&msg.msg_iter, hdr_size);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000520 /* Sanity check */
Al Viro01e97e62014-12-15 21:39:31 -0500521 if (!msg_data_left(&msg)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000522 vq_err(vq, "Unexpected header len for TX: "
523 "%zd expected %zd\n",
Al Viro98a527a2014-12-10 15:00:58 -0500524 len, hdr_size);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000525 break;
526 }
Al Viro01e97e62014-12-15 21:39:31 -0500527 len = msg_data_left(&msg);
Jason Wangce21a022013-09-02 16:40:59 +0800528
529 zcopy_used = zcopy && len >= VHOST_GOODCOPY_LEN
Willem de Bruijn1e6f7452017-10-06 13:22:31 -0400530 && !vhost_exceeds_maxpend(net)
Jason Wangce21a022013-09-02 16:40:59 +0800531 && vhost_net_tx_select_zcopy(net);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200532
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000533 /* use msg_control to pass vhost zerocopy ubuf info to skb */
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200534 if (zcopy_used) {
Jason Wangce21a022013-09-02 16:40:59 +0800535 struct ubuf_info *ubuf;
536 ubuf = nvq->ubuf_info + nvq->upend_idx;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000537
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300538 vq->heads[nvq->upend_idx].id = cpu_to_vhost32(vq, head);
Jason Wangce21a022013-09-02 16:40:59 +0800539 vq->heads[nvq->upend_idx].len = VHOST_DMA_IN_PROGRESS;
540 ubuf->callback = vhost_zerocopy_callback;
541 ubuf->ctx = nvq->ubufs;
542 ubuf->desc = nvq->upend_idx;
Eric Dumazetc1d1b432017-08-31 16:48:22 -0700543 refcount_set(&ubuf->refcnt, 1);
Jason Wangce21a022013-09-02 16:40:59 +0800544 msg.msg_control = ubuf;
545 msg.msg_controllen = sizeof(ubuf);
546 ubufs = nvq->ubufs;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200547 atomic_inc(&ubufs->refcount);
Asias He28394002013-04-27 15:07:46 +0800548 nvq->upend_idx = (nvq->upend_idx + 1) % UIO_MAXIOV;
Jason Wangce21a022013-09-02 16:40:59 +0800549 } else {
Jason Wang4364d5f2013-06-05 15:40:46 +0800550 msg.msg_control = NULL;
Jason Wangce21a022013-09-02 16:40:59 +0800551 ubufs = NULL;
552 }
Jason Wang0ed005c2017-01-18 15:02:02 +0800553
554 total_len += len;
555 if (total_len < VHOST_NET_WEIGHT &&
556 !vhost_vq_avail_empty(&net->dev, vq) &&
557 likely(!vhost_exceeds_maxpend(net))) {
558 msg.msg_flags |= MSG_MORE;
559 } else {
560 msg.msg_flags &= ~MSG_MORE;
561 }
562
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000563 /* TODO: Check specific error and bomb out unless ENOBUFS? */
Ying Xue1b784142015-03-02 15:37:48 +0800564 err = sock->ops->sendmsg(sock, &msg, len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000565 if (unlikely(err < 0)) {
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200566 if (zcopy_used) {
Jason Wangce21a022013-09-02 16:40:59 +0800567 vhost_net_ubuf_put(ubufs);
Asias He28394002013-04-27 15:07:46 +0800568 nvq->upend_idx = ((unsigned)nvq->upend_idx - 1)
569 % UIO_MAXIOV;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000570 }
David Stevens8dd014a2010-07-27 18:52:21 +0300571 vhost_discard_vq_desc(vq, 1);
Jason Wangfeb88922017-11-13 11:45:34 +0800572 vhost_net_enable_vq(net, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000573 break;
574 }
575 if (err != len)
Michael S. Tsirkin95c0ec62010-06-24 17:10:25 +0300576 pr_debug("Truncated TX packet: "
577 " len %d != %zd\n", err, len);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200578 if (!zcopy_used)
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000579 vhost_add_used_and_signal(&net->dev, vq, head, 0);
Jason Wangc8fb2172012-05-02 11:42:41 +0800580 else
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000581 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000582 vhost_net_tx_packet(net);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000583 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
584 vhost_poll_queue(&vq->poll);
585 break;
586 }
587 }
Asias He2e26af72013-05-07 14:54:33 +0800588out:
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000589 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000590}
591
Jason Wangc67df112017-05-17 12:14:45 +0800592static int peek_head_len(struct vhost_net_virtqueue *rvq, struct sock *sk)
David Stevens8dd014a2010-07-27 18:52:21 +0300593{
594 struct sk_buff *head;
595 int len = 0;
Jason Wang783e3982011-01-17 16:11:17 +0800596 unsigned long flags;
David Stevens8dd014a2010-07-27 18:52:21 +0300597
Jason Wang5990a302018-01-04 11:14:27 +0800598 if (rvq->rx_ring)
Jason Wangc67df112017-05-17 12:14:45 +0800599 return vhost_net_buf_peek(rvq);
Jason Wang1576d982016-06-30 14:45:36 +0800600
Jason Wang783e3982011-01-17 16:11:17 +0800601 spin_lock_irqsave(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300602 head = skb_peek(&sk->sk_receive_queue);
Basil Gorc53cff5e2012-05-03 22:55:23 +0000603 if (likely(head)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300604 len = head->len;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100605 if (skb_vlan_tag_present(head))
Basil Gorc53cff5e2012-05-03 22:55:23 +0000606 len += VLAN_HLEN;
607 }
608
Jason Wang783e3982011-01-17 16:11:17 +0800609 spin_unlock_irqrestore(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300610 return len;
611}
612
Jason Wang1576d982016-06-30 14:45:36 +0800613static int sk_has_rx_data(struct sock *sk)
614{
615 struct socket *sock = sk->sk_socket;
616
617 if (sock->ops->peek_len)
618 return sock->ops->peek_len(sock);
619
620 return skb_queue_empty(&sk->sk_receive_queue);
621}
622
Jason Wang03088132016-03-04 06:24:53 -0500623static int vhost_net_rx_peek_head_len(struct vhost_net *net, struct sock *sk)
624{
Jason Wangc67df112017-05-17 12:14:45 +0800625 struct vhost_net_virtqueue *rvq = &net->vqs[VHOST_NET_VQ_RX];
Jason Wang03088132016-03-04 06:24:53 -0500626 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
627 struct vhost_virtqueue *vq = &nvq->vq;
628 unsigned long uninitialized_var(endtime);
Jason Wangc67df112017-05-17 12:14:45 +0800629 int len = peek_head_len(rvq, sk);
Jason Wang03088132016-03-04 06:24:53 -0500630
631 if (!len && vq->busyloop_timeout) {
632 /* Both tx vq and rx socket were polled here */
Jason Wangaaa31492018-03-26 16:10:23 +0800633 mutex_lock_nested(&vq->mutex, 1);
Jason Wang03088132016-03-04 06:24:53 -0500634 vhost_disable_notify(&net->dev, vq);
635
636 preempt_disable();
637 endtime = busy_clock() + vq->busyloop_timeout;
638
639 while (vhost_can_busy_poll(&net->dev, endtime) &&
Jason Wang1576d982016-06-30 14:45:36 +0800640 !sk_has_rx_data(sk) &&
Jason Wang03088132016-03-04 06:24:53 -0500641 vhost_vq_avail_empty(&net->dev, vq))
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200642 cpu_relax();
Jason Wang03088132016-03-04 06:24:53 -0500643
644 preempt_enable();
645
Jason Wang8b949be2017-09-05 09:22:05 +0800646 if (!vhost_vq_avail_empty(&net->dev, vq))
Jason Wang03088132016-03-04 06:24:53 -0500647 vhost_poll_queue(&vq->poll);
Jason Wang8b949be2017-09-05 09:22:05 +0800648 else if (unlikely(vhost_enable_notify(&net->dev, vq))) {
649 vhost_disable_notify(&net->dev, vq);
650 vhost_poll_queue(&vq->poll);
651 }
652
Jason Wang03088132016-03-04 06:24:53 -0500653 mutex_unlock(&vq->mutex);
654
Jason Wangc67df112017-05-17 12:14:45 +0800655 len = peek_head_len(rvq, sk);
Jason Wang03088132016-03-04 06:24:53 -0500656 }
657
658 return len;
659}
660
David Stevens8dd014a2010-07-27 18:52:21 +0300661/* This is a multi-buffer version of vhost_get_desc, that works if
662 * vq has read descriptors only.
663 * @vq - the relevant virtqueue
664 * @datalen - data length we'll be reading
665 * @iovcount - returned count of io vectors we fill
666 * @log - vhost log
667 * @log_num - log offset
Jason Wang94249362011-01-17 16:11:08 +0800668 * @quota - headcount quota, 1 for big buffer
David Stevens8dd014a2010-07-27 18:52:21 +0300669 * returns number of buffer heads allocated, negative on error
670 */
671static int get_rx_bufs(struct vhost_virtqueue *vq,
672 struct vring_used_elem *heads,
673 int datalen,
674 unsigned *iovcount,
675 struct vhost_log *log,
Jason Wang94249362011-01-17 16:11:08 +0800676 unsigned *log_num,
677 unsigned int quota)
David Stevens8dd014a2010-07-27 18:52:21 +0300678{
679 unsigned int out, in;
680 int seg = 0;
681 int headcount = 0;
682 unsigned d;
683 int r, nlogs = 0;
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300684 /* len is always initialized before use since we are always called with
685 * datalen > 0.
686 */
687 u32 uninitialized_var(len);
David Stevens8dd014a2010-07-27 18:52:21 +0300688
Jason Wang94249362011-01-17 16:11:08 +0800689 while (datalen > 0 && headcount < quota) {
Jason Wange0e9b402010-09-14 23:53:05 +0800690 if (unlikely(seg >= UIO_MAXIOV)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300691 r = -ENOBUFS;
692 goto err;
693 }
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300694 r = vhost_get_vq_desc(vq, vq->iov + seg,
David Stevens8dd014a2010-07-27 18:52:21 +0300695 ARRAY_SIZE(vq->iov) - seg, &out,
696 &in, log, log_num);
Michael S. Tsirkina39ee442014-03-27 12:53:37 +0200697 if (unlikely(r < 0))
698 goto err;
699
700 d = r;
David Stevens8dd014a2010-07-27 18:52:21 +0300701 if (d == vq->num) {
702 r = 0;
703 goto err;
704 }
705 if (unlikely(out || in <= 0)) {
706 vq_err(vq, "unexpected descriptor format for RX: "
707 "out %d, in %d\n", out, in);
708 r = -EINVAL;
709 goto err;
710 }
711 if (unlikely(log)) {
712 nlogs += *log_num;
713 log += *log_num;
714 }
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300715 heads[headcount].id = cpu_to_vhost32(vq, d);
716 len = iov_length(vq->iov + seg, in);
717 heads[headcount].len = cpu_to_vhost32(vq, len);
718 datalen -= len;
David Stevens8dd014a2010-07-27 18:52:21 +0300719 ++headcount;
720 seg += in;
721 }
Michael S. Tsirkin99975cc2015-01-07 10:51:00 +0200722 heads[headcount - 1].len = cpu_to_vhost32(vq, len + datalen);
David Stevens8dd014a2010-07-27 18:52:21 +0300723 *iovcount = seg;
724 if (unlikely(log))
725 *log_num = nlogs;
Michael S. Tsirkind8316f32014-03-27 12:00:26 +0200726
727 /* Detect overrun */
728 if (unlikely(datalen > 0)) {
729 r = UIO_MAXIOV + 1;
730 goto err;
731 }
David Stevens8dd014a2010-07-27 18:52:21 +0300732 return headcount;
733err:
734 vhost_discard_vq_desc(vq, headcount);
735 return r;
736}
737
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000738/* Expects to be always run from workqueue - which acts as
739 * read-size critical section for our kind of RCU. */
Jason Wang94249362011-01-17 16:11:08 +0800740static void handle_rx(struct vhost_net *net)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000741{
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300742 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_RX];
743 struct vhost_virtqueue *vq = &nvq->vq;
David Stevens8dd014a2010-07-27 18:52:21 +0300744 unsigned uninitialized_var(in), log;
745 struct vhost_log *vq_log;
746 struct msghdr msg = {
747 .msg_name = NULL,
748 .msg_namelen = 0,
749 .msg_control = NULL, /* FIXME: get and handle RX aux data. */
750 .msg_controllen = 0,
David Stevens8dd014a2010-07-27 18:52:21 +0300751 .msg_flags = MSG_DONTWAIT,
752 };
Jason Wang0960b642015-02-15 16:35:17 +0800753 struct virtio_net_hdr hdr = {
754 .flags = 0,
755 .gso_type = VIRTIO_NET_HDR_GSO_NONE
David Stevens8dd014a2010-07-27 18:52:21 +0300756 };
David Stevens8dd014a2010-07-27 18:52:21 +0300757 size_t total_len = 0;
Michael S. Tsirkin910a5782012-10-24 20:37:51 +0200758 int err, mergeable;
Jason Wange2b3b352018-01-09 18:27:45 +0800759 s16 headcount, nheads = 0;
David Stevens8dd014a2010-07-27 18:52:21 +0300760 size_t vhost_hlen, sock_hlen;
761 size_t vhost_len, sock_len;
Asias He2e26af72013-05-07 14:54:33 +0800762 struct socket *sock;
Al Viroba7438a2014-12-10 15:51:28 -0500763 struct iov_iter fixup;
Jason Wang0960b642015-02-15 16:35:17 +0800764 __virtio16 num_buffers;
David Stevens8dd014a2010-07-27 18:52:21 +0300765
Jason Wangaaa31492018-03-26 16:10:23 +0800766 mutex_lock_nested(&vq->mutex, 0);
Asias He2e26af72013-05-07 14:54:33 +0800767 sock = vq->private_data;
768 if (!sock)
769 goto out;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400770
771 if (!vq_iotlb_prefetch(vq))
772 goto out;
773
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300774 vhost_disable_notify(&net->dev, vq);
Jason Wang8241a1e2016-06-01 01:56:33 -0400775 vhost_net_disable_vq(net, vq);
Asias He2e26af72013-05-07 14:54:33 +0800776
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300777 vhost_hlen = nvq->vhost_hlen;
778 sock_hlen = nvq->sock_hlen;
David Stevens8dd014a2010-07-27 18:52:21 +0300779
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300780 vq_log = unlikely(vhost_has_feature(vq, VHOST_F_LOG_ALL)) ?
David Stevens8dd014a2010-07-27 18:52:21 +0300781 vq->log : NULL;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300782 mergeable = vhost_has_feature(vq, VIRTIO_NET_F_MRG_RXBUF);
David Stevens8dd014a2010-07-27 18:52:21 +0300783
Jason Wang03088132016-03-04 06:24:53 -0500784 while ((sock_len = vhost_net_rx_peek_head_len(net, sock->sk))) {
David Stevens8dd014a2010-07-27 18:52:21 +0300785 sock_len += sock_hlen;
786 vhost_len = sock_len + vhost_hlen;
Jason Wange2b3b352018-01-09 18:27:45 +0800787 headcount = get_rx_bufs(vq, vq->heads + nheads, vhost_len,
Jason Wang94249362011-01-17 16:11:08 +0800788 &in, vq_log, &log,
789 likely(mergeable) ? UIO_MAXIOV : 1);
David Stevens8dd014a2010-07-27 18:52:21 +0300790 /* On error, stop handling until the next kick. */
791 if (unlikely(headcount < 0))
Jason Wang8241a1e2016-06-01 01:56:33 -0400792 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +0300793 /* OK, now we need to know about added descriptors. */
794 if (!headcount) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300795 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
David Stevens8dd014a2010-07-27 18:52:21 +0300796 /* They have slipped one in as we were
797 * doing that: check again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300798 vhost_disable_notify(&net->dev, vq);
David Stevens8dd014a2010-07-27 18:52:21 +0300799 continue;
800 }
801 /* Nothing new? Wait for eventfd to tell us
802 * they refilled. */
Jason Wang8241a1e2016-06-01 01:56:33 -0400803 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +0300804 }
Jason Wang5990a302018-01-04 11:14:27 +0800805 if (nvq->rx_ring)
Wei Xu6e474082017-12-01 05:10:36 -0500806 msg.msg_control = vhost_net_buf_consume(&nvq->rxq);
807 /* On overrun, truncate and discard */
808 if (unlikely(headcount > UIO_MAXIOV)) {
809 iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1);
810 err = sock->ops->recvmsg(sock, &msg,
811 1, MSG_DONTWAIT | MSG_TRUNC);
812 pr_debug("Discarded rx packet: len %zd\n", sock_len);
813 continue;
814 }
David Stevens8dd014a2010-07-27 18:52:21 +0300815 /* We don't need to be notified again. */
Al Viroba7438a2014-12-10 15:51:28 -0500816 iov_iter_init(&msg.msg_iter, READ, vq->iov, in, vhost_len);
817 fixup = msg.msg_iter;
818 if (unlikely((vhost_hlen))) {
819 /* We will supply the header ourselves
820 * TODO: support TSO.
821 */
822 iov_iter_advance(&msg.msg_iter, vhost_hlen);
Al Viroba7438a2014-12-10 15:51:28 -0500823 }
Ying Xue1b784142015-03-02 15:37:48 +0800824 err = sock->ops->recvmsg(sock, &msg,
David Stevens8dd014a2010-07-27 18:52:21 +0300825 sock_len, MSG_DONTWAIT | MSG_TRUNC);
826 /* Userspace might have consumed the packet meanwhile:
827 * it's not supposed to do this usually, but might be hard
828 * to prevent. Discard data we got (if any) and keep going. */
829 if (unlikely(err != sock_len)) {
830 pr_debug("Discarded rx packet: "
831 " len %d, expected %zd\n", err, sock_len);
832 vhost_discard_vq_desc(vq, headcount);
833 continue;
834 }
Al Viroba7438a2014-12-10 15:51:28 -0500835 /* Supply virtio_net_hdr if VHOST_NET_F_VIRTIO_NET_HDR */
Michael S. Tsirkin4c5a8442015-02-25 15:19:28 +0100836 if (unlikely(vhost_hlen)) {
837 if (copy_to_iter(&hdr, sizeof(hdr),
838 &fixup) != sizeof(hdr)) {
839 vq_err(vq, "Unable to write vnet_hdr "
840 "at addr %p\n", vq->iov->iov_base);
Jason Wang8241a1e2016-06-01 01:56:33 -0400841 goto out;
Michael S. Tsirkin4c5a8442015-02-25 15:19:28 +0100842 }
843 } else {
844 /* Header came from socket; we'll need to patch
845 * ->num_buffers over if VIRTIO_NET_F_MRG_RXBUF
846 */
847 iov_iter_advance(&fixup, sizeof(hdr));
David Stevens8dd014a2010-07-27 18:52:21 +0300848 }
849 /* TODO: Should check and handle checksum. */
Michael S. Tsirkin5201aa42015-02-03 11:07:06 +0200850
Jason Wang0960b642015-02-15 16:35:17 +0800851 num_buffers = cpu_to_vhost16(vq, headcount);
Jason Wangcfbdab92011-01-17 16:10:59 +0800852 if (likely(mergeable) &&
Michael S. Tsirkin0d79a492015-02-25 15:20:01 +0100853 copy_to_iter(&num_buffers, sizeof num_buffers,
854 &fixup) != sizeof num_buffers) {
David Stevens8dd014a2010-07-27 18:52:21 +0300855 vq_err(vq, "Failed num_buffers write");
856 vhost_discard_vq_desc(vq, headcount);
Jason Wang8241a1e2016-06-01 01:56:33 -0400857 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +0300858 }
Jason Wange2b3b352018-01-09 18:27:45 +0800859 nheads += headcount;
860 if (nheads > VHOST_RX_BATCH) {
861 vhost_add_used_and_signal_n(&net->dev, vq, vq->heads,
862 nheads);
863 nheads = 0;
864 }
David Stevens8dd014a2010-07-27 18:52:21 +0300865 if (unlikely(vq_log))
866 vhost_log_write(vq, vq_log, log, vhost_len);
867 total_len += vhost_len;
868 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
869 vhost_poll_queue(&vq->poll);
Jason Wang8241a1e2016-06-01 01:56:33 -0400870 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +0300871 }
872 }
Jason Wang8241a1e2016-06-01 01:56:33 -0400873 vhost_net_enable_vq(net, vq);
Asias He2e26af72013-05-07 14:54:33 +0800874out:
Jason Wange2b3b352018-01-09 18:27:45 +0800875 if (nheads)
876 vhost_add_used_and_signal_n(&net->dev, vq, vq->heads,
877 nheads);
David Stevens8dd014a2010-07-27 18:52:21 +0300878 mutex_unlock(&vq->mutex);
David Stevens8dd014a2010-07-27 18:52:21 +0300879}
880
Tejun Heoc23f34452010-06-02 20:40:00 +0200881static void handle_tx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000882{
Tejun Heoc23f34452010-06-02 20:40:00 +0200883 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
884 poll.work);
885 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
886
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000887 handle_tx(net);
888}
889
Tejun Heoc23f34452010-06-02 20:40:00 +0200890static void handle_rx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000891{
Tejun Heoc23f34452010-06-02 20:40:00 +0200892 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
893 poll.work);
894 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
895
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000896 handle_rx(net);
897}
898
Tejun Heoc23f34452010-06-02 20:40:00 +0200899static void handle_tx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000900{
Tejun Heoc23f34452010-06-02 20:40:00 +0200901 struct vhost_net *net = container_of(work, struct vhost_net,
902 poll[VHOST_NET_VQ_TX].work);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000903 handle_tx(net);
904}
905
Tejun Heoc23f34452010-06-02 20:40:00 +0200906static void handle_rx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000907{
Tejun Heoc23f34452010-06-02 20:40:00 +0200908 struct vhost_net *net = container_of(work, struct vhost_net,
909 poll[VHOST_NET_VQ_RX].work);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000910 handle_rx(net);
911}
912
913static int vhost_net_open(struct inode *inode, struct file *f)
914{
Michael S. Tsirkin23cc5a92013-01-23 21:46:47 +0100915 struct vhost_net *n;
Tejun Heoc23f34452010-06-02 20:40:00 +0200916 struct vhost_dev *dev;
Asias He3ab2e422013-04-27 11:16:48 +0800917 struct vhost_virtqueue **vqs;
Jason Wang5990a302018-01-04 11:14:27 +0800918 void **queue;
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +0800919 int i;
Tejun Heoc23f34452010-06-02 20:40:00 +0200920
Michal Hockodcda9b02017-07-12 14:36:45 -0700921 n = kvmalloc(sizeof *n, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hocko6c5ab652017-05-08 15:57:15 -0700922 if (!n)
923 return -ENOMEM;
Asias He3ab2e422013-04-27 11:16:48 +0800924 vqs = kmalloc(VHOST_NET_VQ_MAX * sizeof(*vqs), GFP_KERNEL);
925 if (!vqs) {
Romain Francoised04257b2014-06-12 10:42:34 +0200926 kvfree(n);
Asias He3ab2e422013-04-27 11:16:48 +0800927 return -ENOMEM;
928 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200929
Jason Wang5990a302018-01-04 11:14:27 +0800930 queue = kmalloc_array(VHOST_RX_BATCH, sizeof(void *),
Jason Wangc67df112017-05-17 12:14:45 +0800931 GFP_KERNEL);
932 if (!queue) {
933 kfree(vqs);
934 kvfree(n);
935 return -ENOMEM;
936 }
937 n->vqs[VHOST_NET_VQ_RX].rxq.queue = queue;
938
Tejun Heoc23f34452010-06-02 20:40:00 +0200939 dev = &n->dev;
Asias He3ab2e422013-04-27 11:16:48 +0800940 vqs[VHOST_NET_VQ_TX] = &n->vqs[VHOST_NET_VQ_TX].vq;
941 vqs[VHOST_NET_VQ_RX] = &n->vqs[VHOST_NET_VQ_RX].vq;
942 n->vqs[VHOST_NET_VQ_TX].vq.handle_kick = handle_tx_kick;
943 n->vqs[VHOST_NET_VQ_RX].vq.handle_kick = handle_rx_kick;
Asias He28394002013-04-27 15:07:46 +0800944 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
945 n->vqs[i].ubufs = NULL;
946 n->vqs[i].ubuf_info = NULL;
947 n->vqs[i].upend_idx = 0;
948 n->vqs[i].done_idx = 0;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300949 n->vqs[i].vhost_hlen = 0;
950 n->vqs[i].sock_hlen = 0;
Alexander Potapenkoab7e34b2018-03-09 14:50:32 +0800951 n->vqs[i].rx_ring = NULL;
Jason Wangc67df112017-05-17 12:14:45 +0800952 vhost_net_buf_init(&n->vqs[i].rxq);
Asias He28394002013-04-27 15:07:46 +0800953 }
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +0800954 vhost_dev_init(dev, vqs, VHOST_NET_VQ_MAX);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000955
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800956 vhost_poll_init(n->poll + VHOST_NET_VQ_TX, handle_tx_net, EPOLLOUT, dev);
957 vhost_poll_init(n->poll + VHOST_NET_VQ_RX, handle_rx_net, EPOLLIN, dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000958
959 f->private_data = n;
960
961 return 0;
962}
963
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000964static struct socket *vhost_net_stop_vq(struct vhost_net *n,
965 struct vhost_virtqueue *vq)
966{
967 struct socket *sock;
Jason Wangc67df112017-05-17 12:14:45 +0800968 struct vhost_net_virtqueue *nvq =
969 container_of(vq, struct vhost_net_virtqueue, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000970
971 mutex_lock(&vq->mutex);
Asias He22fa90c2013-05-07 14:54:36 +0800972 sock = vq->private_data;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000973 vhost_net_disable_vq(n, vq);
Asias He22fa90c2013-05-07 14:54:36 +0800974 vq->private_data = NULL;
Jason Wangc67df112017-05-17 12:14:45 +0800975 vhost_net_buf_unproduce(nvq);
Jason Wang303fd71b2018-03-09 14:50:33 +0800976 nvq->rx_ring = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000977 mutex_unlock(&vq->mutex);
978 return sock;
979}
980
981static void vhost_net_stop(struct vhost_net *n, struct socket **tx_sock,
982 struct socket **rx_sock)
983{
Asias He3ab2e422013-04-27 11:16:48 +0800984 *tx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_TX].vq);
985 *rx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_RX].vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000986}
987
988static void vhost_net_flush_vq(struct vhost_net *n, int index)
989{
990 vhost_poll_flush(n->poll + index);
Asias He3ab2e422013-04-27 11:16:48 +0800991 vhost_poll_flush(&n->vqs[index].vq.poll);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000992}
993
994static void vhost_net_flush(struct vhost_net *n)
995{
996 vhost_net_flush_vq(n, VHOST_NET_VQ_TX);
997 vhost_net_flush_vq(n, VHOST_NET_VQ_RX);
Asias He28394002013-04-27 15:07:46 +0800998 if (n->vqs[VHOST_NET_VQ_TX].ubufs) {
Asias He3ab2e422013-04-27 11:16:48 +0800999 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001000 n->tx_flush = true;
Asias He3ab2e422013-04-27 11:16:48 +08001001 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001002 /* Wait for all lower device DMAs done. */
Asias Hefe729a52013-05-06 16:38:24 +08001003 vhost_net_ubuf_put_and_wait(n->vqs[VHOST_NET_VQ_TX].ubufs);
Asias He3ab2e422013-04-27 11:16:48 +08001004 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001005 n->tx_flush = false;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +02001006 atomic_set(&n->vqs[VHOST_NET_VQ_TX].ubufs->refcount, 1);
Asias He3ab2e422013-04-27 11:16:48 +08001007 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001008 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001009}
1010
1011static int vhost_net_release(struct inode *inode, struct file *f)
1012{
1013 struct vhost_net *n = f->private_data;
1014 struct socket *tx_sock;
1015 struct socket *rx_sock;
1016
1017 vhost_net_stop(n, &tx_sock, &rx_sock);
1018 vhost_net_flush(n);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +00001019 vhost_dev_stop(&n->dev);
夷则(Caspar)f6f93f72017-12-25 00:08:58 +08001020 vhost_dev_cleanup(&n->dev);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001021 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001022 if (tx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001023 sockfd_put(tx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001024 if (rx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001025 sockfd_put(rx_sock);
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +02001026 /* Make sure no callbacks are outstanding */
1027 synchronize_rcu_bh();
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001028 /* We do an extra flush before freeing memory,
1029 * since jobs can re-queue themselves. */
1030 vhost_net_flush(n);
Jason Wangc67df112017-05-17 12:14:45 +08001031 kfree(n->vqs[VHOST_NET_VQ_RX].rxq.queue);
Asias He3ab2e422013-04-27 11:16:48 +08001032 kfree(n->dev.vqs);
Romain Francoised04257b2014-06-12 10:42:34 +02001033 kvfree(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001034 return 0;
1035}
1036
1037static struct socket *get_raw_socket(int fd)
1038{
1039 struct {
1040 struct sockaddr_ll sa;
1041 char buf[MAX_ADDR_LEN];
1042 } uaddr;
1043 int uaddr_len = sizeof uaddr, r;
1044 struct socket *sock = sockfd_lookup(fd, &r);
Krishna Kumard47effe2011-03-01 17:06:37 +05301045
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001046 if (!sock)
1047 return ERR_PTR(-ENOTSOCK);
1048
1049 /* Parameter checking */
1050 if (sock->sk->sk_type != SOCK_RAW) {
1051 r = -ESOCKTNOSUPPORT;
1052 goto err;
1053 }
1054
1055 r = sock->ops->getname(sock, (struct sockaddr *)&uaddr.sa,
1056 &uaddr_len, 0);
1057 if (r)
1058 goto err;
1059
1060 if (uaddr.sa.sll_family != AF_PACKET) {
1061 r = -EPFNOSUPPORT;
1062 goto err;
1063 }
1064 return sock;
1065err:
Al Viro09aaacf2014-03-05 20:39:00 -05001066 sockfd_put(sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001067 return ERR_PTR(r);
1068}
1069
Jason Wang5990a302018-01-04 11:14:27 +08001070static struct ptr_ring *get_tap_ptr_ring(int fd)
Jason Wangc67df112017-05-17 12:14:45 +08001071{
Jason Wang5990a302018-01-04 11:14:27 +08001072 struct ptr_ring *ring;
Jason Wangc67df112017-05-17 12:14:45 +08001073 struct file *file = fget(fd);
1074
1075 if (!file)
1076 return NULL;
Jason Wang5990a302018-01-04 11:14:27 +08001077 ring = tun_get_tx_ring(file);
1078 if (!IS_ERR(ring))
Jason Wangc67df112017-05-17 12:14:45 +08001079 goto out;
Jason Wang5990a302018-01-04 11:14:27 +08001080 ring = tap_get_ptr_ring(file);
1081 if (!IS_ERR(ring))
Jason Wangc67df112017-05-17 12:14:45 +08001082 goto out;
Jason Wang5990a302018-01-04 11:14:27 +08001083 ring = NULL;
Jason Wangc67df112017-05-17 12:14:45 +08001084out:
1085 fput(file);
Jason Wang5990a302018-01-04 11:14:27 +08001086 return ring;
Jason Wangc67df112017-05-17 12:14:45 +08001087}
1088
Arnd Bergmann501c7742010-02-18 05:46:50 +00001089static struct socket *get_tap_socket(int fd)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001090{
1091 struct file *file = fget(fd);
1092 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +05301093
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001094 if (!file)
1095 return ERR_PTR(-EBADF);
1096 sock = tun_get_socket(file);
Arnd Bergmann501c7742010-02-18 05:46:50 +00001097 if (!IS_ERR(sock))
1098 return sock;
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001099 sock = tap_get_socket(file);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001100 if (IS_ERR(sock))
1101 fput(file);
1102 return sock;
1103}
1104
1105static struct socket *get_socket(int fd)
1106{
1107 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +05301108
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001109 /* special case to disable backend */
1110 if (fd == -1)
1111 return NULL;
1112 sock = get_raw_socket(fd);
1113 if (!IS_ERR(sock))
1114 return sock;
Arnd Bergmann501c7742010-02-18 05:46:50 +00001115 sock = get_tap_socket(fd);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001116 if (!IS_ERR(sock))
1117 return sock;
1118 return ERR_PTR(-ENOTSOCK);
1119}
1120
1121static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
1122{
1123 struct socket *sock, *oldsock;
1124 struct vhost_virtqueue *vq;
Asias He28394002013-04-27 15:07:46 +08001125 struct vhost_net_virtqueue *nvq;
Asias Hefe729a52013-05-06 16:38:24 +08001126 struct vhost_net_ubuf_ref *ubufs, *oldubufs = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001127 int r;
1128
1129 mutex_lock(&n->dev.mutex);
1130 r = vhost_dev_check_owner(&n->dev);
1131 if (r)
1132 goto err;
1133
1134 if (index >= VHOST_NET_VQ_MAX) {
1135 r = -ENOBUFS;
1136 goto err;
1137 }
Asias He3ab2e422013-04-27 11:16:48 +08001138 vq = &n->vqs[index].vq;
Asias He28394002013-04-27 15:07:46 +08001139 nvq = &n->vqs[index];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001140 mutex_lock(&vq->mutex);
1141
1142 /* Verify that ring has been setup correctly. */
1143 if (!vhost_vq_access_ok(vq)) {
1144 r = -EFAULT;
Jeff Dike1dace8c2010-03-04 16:10:14 -05001145 goto err_vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001146 }
1147 sock = get_socket(fd);
1148 if (IS_ERR(sock)) {
1149 r = PTR_ERR(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -05001150 goto err_vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001151 }
1152
1153 /* start polling new socket */
Asias He22fa90c2013-05-07 14:54:36 +08001154 oldsock = vq->private_data;
David S. Miller11fe8832010-07-20 18:25:24 -07001155 if (sock != oldsock) {
Asias Hefe729a52013-05-06 16:38:24 +08001156 ubufs = vhost_net_ubuf_alloc(vq,
1157 sock && vhost_sock_zcopy(sock));
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001158 if (IS_ERR(ubufs)) {
1159 r = PTR_ERR(ubufs);
1160 goto err_ubufs;
1161 }
Jason Wang692a9982013-01-28 01:05:17 +00001162
Krishna Kumard47effe2011-03-01 17:06:37 +05301163 vhost_net_disable_vq(n, vq);
Asias He22fa90c2013-05-07 14:54:36 +08001164 vq->private_data = sock;
Jason Wangc67df112017-05-17 12:14:45 +08001165 vhost_net_buf_unproduce(nvq);
Greg Kurz80f7d032016-02-16 15:59:44 +01001166 r = vhost_vq_init_access(vq);
Jason Wangf59281d2011-06-21 18:04:27 +08001167 if (r)
Jason Wang692a9982013-01-28 01:05:17 +00001168 goto err_used;
Jason Wang2b8b3282013-01-28 01:05:18 +00001169 r = vhost_net_enable_vq(n, vq);
1170 if (r)
1171 goto err_used;
Jason Wang303fd71b2018-03-09 14:50:33 +08001172 if (index == VHOST_NET_VQ_RX)
1173 nvq->rx_ring = get_tap_ptr_ring(fd);
Jason Wang692a9982013-01-28 01:05:17 +00001174
Asias He28394002013-04-27 15:07:46 +08001175 oldubufs = nvq->ubufs;
1176 nvq->ubufs = ubufs;
Michael S. Tsirkin64e9a9b2012-12-03 07:31:51 +00001177
1178 n->tx_packets = 0;
1179 n->tx_zcopy_err = 0;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001180 n->tx_flush = false;
Jeff Dikedd1f4072010-03-04 16:10:14 -05001181 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001182
Michael S. Tsirkin1680e902010-07-15 15:19:12 +03001183 mutex_unlock(&vq->mutex);
1184
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001185 if (oldubufs) {
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +03001186 vhost_net_ubuf_put_wait_and_free(oldubufs);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001187 mutex_lock(&vq->mutex);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +00001188 vhost_zerocopy_signal_used(n, vq);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001189 mutex_unlock(&vq->mutex);
1190 }
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001191
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001192 if (oldsock) {
1193 vhost_net_flush_vq(n, index);
Al Viro09aaacf2014-03-05 20:39:00 -05001194 sockfd_put(oldsock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001195 }
Jeff Dike1dace8c2010-03-04 16:10:14 -05001196
Michael S. Tsirkin1680e902010-07-15 15:19:12 +03001197 mutex_unlock(&n->dev.mutex);
1198 return 0;
1199
Jason Wang692a9982013-01-28 01:05:17 +00001200err_used:
Asias He22fa90c2013-05-07 14:54:36 +08001201 vq->private_data = oldsock;
Jason Wang692a9982013-01-28 01:05:17 +00001202 vhost_net_enable_vq(n, vq);
1203 if (ubufs)
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +03001204 vhost_net_ubuf_put_wait_and_free(ubufs);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001205err_ubufs:
Al Viro09aaacf2014-03-05 20:39:00 -05001206 sockfd_put(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -05001207err_vq:
1208 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001209err:
1210 mutex_unlock(&n->dev.mutex);
1211 return r;
1212}
1213
1214static long vhost_net_reset_owner(struct vhost_net *n)
1215{
1216 struct socket *tx_sock = NULL;
1217 struct socket *rx_sock = NULL;
1218 long err;
Jason Wanga9709d62016-06-23 02:04:31 -04001219 struct vhost_umem *umem;
Krishna Kumard47effe2011-03-01 17:06:37 +05301220
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001221 mutex_lock(&n->dev.mutex);
1222 err = vhost_dev_check_owner(&n->dev);
1223 if (err)
1224 goto done;
Jason Wanga9709d62016-06-23 02:04:31 -04001225 umem = vhost_dev_reset_owner_prepare();
1226 if (!umem) {
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +03001227 err = -ENOMEM;
1228 goto done;
1229 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001230 vhost_net_stop(n, &tx_sock, &rx_sock);
1231 vhost_net_flush(n);
Jason Wang4cd87952018-01-25 22:03:52 +08001232 vhost_dev_stop(&n->dev);
Jason Wanga9709d62016-06-23 02:04:31 -04001233 vhost_dev_reset_owner(&n->dev, umem);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001234 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001235done:
1236 mutex_unlock(&n->dev.mutex);
1237 if (tx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001238 sockfd_put(tx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001239 if (rx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001240 sockfd_put(rx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001241 return err;
1242}
1243
1244static int vhost_net_set_features(struct vhost_net *n, u64 features)
1245{
David Stevens8dd014a2010-07-27 18:52:21 +03001246 size_t vhost_hlen, sock_hlen, hdr_len;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001247 int i;
David Stevens8dd014a2010-07-27 18:52:21 +03001248
Michael S. Tsirkine4fca7d2014-10-24 14:23:52 +03001249 hdr_len = (features & ((1ULL << VIRTIO_NET_F_MRG_RXBUF) |
1250 (1ULL << VIRTIO_F_VERSION_1))) ?
David Stevens8dd014a2010-07-27 18:52:21 +03001251 sizeof(struct virtio_net_hdr_mrg_rxbuf) :
1252 sizeof(struct virtio_net_hdr);
1253 if (features & (1 << VHOST_NET_F_VIRTIO_NET_HDR)) {
1254 /* vhost provides vnet_hdr */
1255 vhost_hlen = hdr_len;
1256 sock_hlen = 0;
1257 } else {
1258 /* socket provides vnet_hdr */
1259 vhost_hlen = 0;
1260 sock_hlen = hdr_len;
1261 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001262 mutex_lock(&n->dev.mutex);
1263 if ((features & (1 << VHOST_F_LOG_ALL)) &&
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001264 !vhost_log_access_ok(&n->dev))
1265 goto out_unlock;
1266
1267 if ((features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))) {
1268 if (vhost_init_device_iotlb(&n->dev, true))
1269 goto out_unlock;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001270 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001271
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001272 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +08001273 mutex_lock(&n->vqs[i].vq.mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001274 n->vqs[i].vq.acked_features = features;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001275 n->vqs[i].vhost_hlen = vhost_hlen;
1276 n->vqs[i].sock_hlen = sock_hlen;
Asias He3ab2e422013-04-27 11:16:48 +08001277 mutex_unlock(&n->vqs[i].vq.mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001278 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001279 mutex_unlock(&n->dev.mutex);
1280 return 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001281
1282out_unlock:
1283 mutex_unlock(&n->dev.mutex);
1284 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001285}
1286
Asias Heb1ad8492013-05-06 11:16:00 +08001287static long vhost_net_set_owner(struct vhost_net *n)
1288{
1289 int r;
1290
1291 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin05c05352013-06-06 15:20:39 +03001292 if (vhost_dev_has_owner(&n->dev)) {
1293 r = -EBUSY;
1294 goto out;
1295 }
Asias Heb1ad8492013-05-06 11:16:00 +08001296 r = vhost_net_set_ubuf_info(n);
1297 if (r)
1298 goto out;
1299 r = vhost_dev_set_owner(&n->dev);
1300 if (r)
1301 vhost_net_clear_ubuf_info(n);
1302 vhost_net_flush(n);
1303out:
1304 mutex_unlock(&n->dev.mutex);
1305 return r;
1306}
1307
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001308static long vhost_net_ioctl(struct file *f, unsigned int ioctl,
1309 unsigned long arg)
1310{
1311 struct vhost_net *n = f->private_data;
1312 void __user *argp = (void __user *)arg;
1313 u64 __user *featurep = argp;
1314 struct vhost_vring_file backend;
1315 u64 features;
1316 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301317
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001318 switch (ioctl) {
1319 case VHOST_NET_SET_BACKEND:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001320 if (copy_from_user(&backend, argp, sizeof backend))
1321 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001322 return vhost_net_set_backend(n, backend.index, backend.fd);
1323 case VHOST_GET_FEATURES:
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001324 features = VHOST_NET_FEATURES;
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001325 if (copy_to_user(featurep, &features, sizeof features))
1326 return -EFAULT;
1327 return 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001328 case VHOST_SET_FEATURES:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001329 if (copy_from_user(&features, featurep, sizeof features))
1330 return -EFAULT;
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001331 if (features & ~VHOST_NET_FEATURES)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001332 return -EOPNOTSUPP;
1333 return vhost_net_set_features(n, features);
1334 case VHOST_RESET_OWNER:
1335 return vhost_net_reset_owner(n);
Asias Heb1ad8492013-05-06 11:16:00 +08001336 case VHOST_SET_OWNER:
1337 return vhost_net_set_owner(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001338 default:
1339 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001340 r = vhost_dev_ioctl(&n->dev, ioctl, argp);
1341 if (r == -ENOIOCTLCMD)
1342 r = vhost_vring_ioctl(&n->dev, ioctl, argp);
1343 else
1344 vhost_net_flush(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001345 mutex_unlock(&n->dev.mutex);
1346 return r;
1347 }
1348}
1349
1350#ifdef CONFIG_COMPAT
1351static long vhost_net_compat_ioctl(struct file *f, unsigned int ioctl,
1352 unsigned long arg)
1353{
1354 return vhost_net_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1355}
1356#endif
1357
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001358static ssize_t vhost_net_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
1359{
1360 struct file *file = iocb->ki_filp;
1361 struct vhost_net *n = file->private_data;
1362 struct vhost_dev *dev = &n->dev;
1363 int noblock = file->f_flags & O_NONBLOCK;
1364
1365 return vhost_chr_read_iter(dev, to, noblock);
1366}
1367
1368static ssize_t vhost_net_chr_write_iter(struct kiocb *iocb,
1369 struct iov_iter *from)
1370{
1371 struct file *file = iocb->ki_filp;
1372 struct vhost_net *n = file->private_data;
1373 struct vhost_dev *dev = &n->dev;
1374
1375 return vhost_chr_write_iter(dev, from);
1376}
1377
Al Viroafc9a422017-07-03 06:39:46 -04001378static __poll_t vhost_net_chr_poll(struct file *file, poll_table *wait)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001379{
1380 struct vhost_net *n = file->private_data;
1381 struct vhost_dev *dev = &n->dev;
1382
1383 return vhost_chr_poll(file, dev, wait);
1384}
1385
Tobias Klauser373a83a2010-05-17 15:12:49 +02001386static const struct file_operations vhost_net_fops = {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001387 .owner = THIS_MODULE,
1388 .release = vhost_net_release,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001389 .read_iter = vhost_net_chr_read_iter,
1390 .write_iter = vhost_net_chr_write_iter,
1391 .poll = vhost_net_chr_poll,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001392 .unlocked_ioctl = vhost_net_ioctl,
1393#ifdef CONFIG_COMPAT
1394 .compat_ioctl = vhost_net_compat_ioctl,
1395#endif
1396 .open = vhost_net_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001397 .llseek = noop_llseek,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001398};
1399
1400static struct miscdevice vhost_net_misc = {
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001401 .minor = VHOST_NET_MINOR,
1402 .name = "vhost-net",
1403 .fops = &vhost_net_fops,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001404};
1405
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001406static int vhost_net_init(void)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001407{
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001408 if (experimental_zcopytx)
Asias Hefe729a52013-05-06 16:38:24 +08001409 vhost_net_enable_zcopy(VHOST_NET_VQ_TX);
Tejun Heoc23f34452010-06-02 20:40:00 +02001410 return misc_register(&vhost_net_misc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001411}
1412module_init(vhost_net_init);
1413
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001414static void vhost_net_exit(void)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001415{
1416 misc_deregister(&vhost_net_misc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001417}
1418module_exit(vhost_net_exit);
1419
1420MODULE_VERSION("0.0.1");
1421MODULE_LICENSE("GPL v2");
1422MODULE_AUTHOR("Michael S. Tsirkin");
1423MODULE_DESCRIPTION("Host kernel accelerator for virtio net");
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001424MODULE_ALIAS_MISCDEV(VHOST_NET_MINOR);
1425MODULE_ALIAS("devname:vhost-net");