blob: 58585ec8699e8d46100ff5f5e175ab39a7842154 [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 {
92 struct sk_buff **queue;
93 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 Wangc67df112017-05-17 12:14:45 +0800111 struct skb_array *rx_array;
112 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;
161 rxq->tail = skb_array_consume_batched(nvq->rx_array, rxq->queue,
162 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
170 if (nvq->rx_array && !vhost_net_buf_is_empty(rxq)) {
171 skb_array_unconsume(nvq->rx_array, rxq->queue + rxq->head,
172 vhost_net_buf_get_size(rxq));
173 rxq->head = rxq->tail = 0;
174 }
175}
176
177static int vhost_net_buf_peek(struct vhost_net_virtqueue *nvq)
178{
179 struct vhost_net_buf *rxq = &nvq->rxq;
180
181 if (!vhost_net_buf_is_empty(rxq))
182 goto out;
183
184 if (!vhost_net_buf_produce(nvq))
185 return 0;
186
187out:
188 return __skb_array_len_with_tag(vhost_net_buf_get_ptr(rxq));
189}
190
191static void vhost_net_buf_init(struct vhost_net_buf *rxq)
192{
193 rxq->head = rxq->tail = 0;
194}
195
Asias Hefe729a52013-05-06 16:38:24 +0800196static void vhost_net_enable_zcopy(int vq)
Asias He28394002013-04-27 15:07:46 +0800197{
Asias Hefe729a52013-05-06 16:38:24 +0800198 vhost_net_zcopy_mask |= 0x1 << vq;
Asias He28394002013-04-27 15:07:46 +0800199}
200
Asias Hefe729a52013-05-06 16:38:24 +0800201static struct vhost_net_ubuf_ref *
202vhost_net_ubuf_alloc(struct vhost_virtqueue *vq, bool zcopy)
Asias He28394002013-04-27 15:07:46 +0800203{
Asias Hefe729a52013-05-06 16:38:24 +0800204 struct vhost_net_ubuf_ref *ubufs;
Asias He28394002013-04-27 15:07:46 +0800205 /* No zero copy backend? Nothing to count. */
206 if (!zcopy)
207 return NULL;
208 ubufs = kmalloc(sizeof(*ubufs), GFP_KERNEL);
209 if (!ubufs)
210 return ERR_PTR(-ENOMEM);
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200211 atomic_set(&ubufs->refcount, 1);
Asias He28394002013-04-27 15:07:46 +0800212 init_waitqueue_head(&ubufs->wait);
213 ubufs->vq = vq;
214 return ubufs;
215}
216
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200217static int vhost_net_ubuf_put(struct vhost_net_ubuf_ref *ubufs)
Asias He28394002013-04-27 15:07:46 +0800218{
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200219 int r = atomic_sub_return(1, &ubufs->refcount);
220 if (unlikely(!r))
221 wake_up(&ubufs->wait);
222 return r;
Asias He28394002013-04-27 15:07:46 +0800223}
224
Asias Hefe729a52013-05-06 16:38:24 +0800225static void vhost_net_ubuf_put_and_wait(struct vhost_net_ubuf_ref *ubufs)
Asias He28394002013-04-27 15:07:46 +0800226{
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200227 vhost_net_ubuf_put(ubufs);
228 wait_event(ubufs->wait, !atomic_read(&ubufs->refcount));
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +0300229}
230
231static void vhost_net_ubuf_put_wait_and_free(struct vhost_net_ubuf_ref *ubufs)
232{
233 vhost_net_ubuf_put_and_wait(ubufs);
Asias He28394002013-04-27 15:07:46 +0800234 kfree(ubufs);
235}
236
Asias Heb1ad8492013-05-06 11:16:00 +0800237static void vhost_net_clear_ubuf_info(struct vhost_net *n)
238{
Asias Heb1ad8492013-05-06 11:16:00 +0800239 int i;
240
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300241 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
242 kfree(n->vqs[i].ubuf_info);
243 n->vqs[i].ubuf_info = NULL;
Asias Heb1ad8492013-05-06 11:16:00 +0800244 }
245}
246
Asias He0a1febf2013-06-05 21:17:38 +0800247static int vhost_net_set_ubuf_info(struct vhost_net *n)
Asias He28394002013-04-27 15:07:46 +0800248{
249 bool zcopy;
250 int i;
251
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300252 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
Asias Hefe729a52013-05-06 16:38:24 +0800253 zcopy = vhost_net_zcopy_mask & (0x1 << i);
Asias He28394002013-04-27 15:07:46 +0800254 if (!zcopy)
255 continue;
256 n->vqs[i].ubuf_info = kmalloc(sizeof(*n->vqs[i].ubuf_info) *
257 UIO_MAXIOV, GFP_KERNEL);
258 if (!n->vqs[i].ubuf_info)
259 goto err;
260 }
261 return 0;
262
263err:
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300264 vhost_net_clear_ubuf_info(n);
Asias He28394002013-04-27 15:07:46 +0800265 return -ENOMEM;
266}
267
Asias He0a1febf2013-06-05 21:17:38 +0800268static void vhost_net_vq_reset(struct vhost_net *n)
Asias He28394002013-04-27 15:07:46 +0800269{
270 int i;
271
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300272 vhost_net_clear_ubuf_info(n);
273
Asias He28394002013-04-27 15:07:46 +0800274 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
275 n->vqs[i].done_idx = 0;
276 n->vqs[i].upend_idx = 0;
277 n->vqs[i].ubufs = NULL;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300278 n->vqs[i].vhost_hlen = 0;
279 n->vqs[i].sock_hlen = 0;
Jason Wangc67df112017-05-17 12:14:45 +0800280 vhost_net_buf_init(&n->vqs[i].rxq);
Asias He28394002013-04-27 15:07:46 +0800281 }
282
283}
284
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000285static void vhost_net_tx_packet(struct vhost_net *net)
286{
287 ++net->tx_packets;
288 if (net->tx_packets < 1024)
289 return;
290 net->tx_packets = 0;
291 net->tx_zcopy_err = 0;
292}
293
294static void vhost_net_tx_err(struct vhost_net *net)
295{
296 ++net->tx_zcopy_err;
297}
298
299static bool vhost_net_tx_select_zcopy(struct vhost_net *net)
300{
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200301 /* TX flush waits for outstanding DMAs to be done.
302 * Don't start new DMAs.
303 */
304 return !net->tx_flush &&
305 net->tx_packets / 64 >= net->tx_zcopy_err;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000306}
307
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000308static bool vhost_sock_zcopy(struct socket *sock)
309{
310 return unlikely(experimental_zcopytx) &&
311 sock_flag(sock->sk, SOCK_ZEROCOPY);
312}
313
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000314/* In case of DMA done not in order in lower device driver for some reason.
315 * upend_idx is used to track end of used idx, done_idx is used to track head
316 * of used idx. Once lower device DMA done contiguously, we will signal KVM
317 * guest used idx.
318 */
Jason Wang094afe72013-09-02 16:40:56 +0800319static void vhost_zerocopy_signal_used(struct vhost_net *net,
320 struct vhost_virtqueue *vq)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000321{
Asias He28394002013-04-27 15:07:46 +0800322 struct vhost_net_virtqueue *nvq =
323 container_of(vq, struct vhost_net_virtqueue, vq);
Jason Wangc92112a2013-09-02 16:40:57 +0800324 int i, add;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000325 int j = 0;
326
Asias He28394002013-04-27 15:07:46 +0800327 for (i = nvq->done_idx; i != nvq->upend_idx; i = (i + 1) % UIO_MAXIOV) {
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000328 if (vq->heads[i].len == VHOST_DMA_FAILED_LEN)
329 vhost_net_tx_err(net);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000330 if (VHOST_DMA_IS_DONE(vq->heads[i].len)) {
331 vq->heads[i].len = VHOST_DMA_CLEAR_LEN;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000332 ++j;
333 } else
334 break;
335 }
Jason Wangc92112a2013-09-02 16:40:57 +0800336 while (j) {
337 add = min(UIO_MAXIOV - nvq->done_idx, j);
338 vhost_add_used_and_signal_n(vq->dev, vq,
339 &vq->heads[nvq->done_idx], add);
340 nvq->done_idx = (nvq->done_idx + add) % UIO_MAXIOV;
341 j -= add;
342 }
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000343}
344
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000345static void vhost_zerocopy_callback(struct ubuf_info *ubuf, bool success)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000346{
Asias Hefe729a52013-05-06 16:38:24 +0800347 struct vhost_net_ubuf_ref *ubufs = ubuf->ctx;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000348 struct vhost_virtqueue *vq = ubufs->vq;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200349 int cnt;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000350
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +0200351 rcu_read_lock_bh();
352
Jason Wang19c73b32013-09-02 16:41:00 +0800353 /* set len to mark this desc buffers done DMA */
354 vq->heads[ubuf->desc].len = success ?
355 VHOST_DMA_DONE_LEN : VHOST_DMA_FAILED_LEN;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200356 cnt = vhost_net_ubuf_put(ubufs);
Jason Wang19c73b32013-09-02 16:41:00 +0800357
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000358 /*
359 * Trigger polling thread if guest stopped submitting new buffers:
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200360 * in this case, the refcount after decrement will eventually reach 1.
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000361 * We also trigger polling periodically after each 16 packets
362 * (the value 16 here is more or less arbitrary, it's tuned to trigger
363 * less than 10% of times).
364 */
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200365 if (cnt <= 1 || !(cnt % 16))
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000366 vhost_poll_queue(&vq->poll);
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +0200367
368 rcu_read_unlock_bh();
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000369}
370
Jason Wang03088132016-03-04 06:24:53 -0500371static inline unsigned long busy_clock(void)
372{
373 return local_clock() >> 10;
374}
375
376static bool vhost_can_busy_poll(struct vhost_dev *dev,
377 unsigned long endtime)
378{
379 return likely(!need_resched()) &&
380 likely(!time_after(busy_clock(), endtime)) &&
381 likely(!signal_pending(current)) &&
382 !vhost_has_work(dev);
383}
384
Jason Wang8241a1e2016-06-01 01:56:33 -0400385static void vhost_net_disable_vq(struct vhost_net *n,
386 struct vhost_virtqueue *vq)
387{
388 struct vhost_net_virtqueue *nvq =
389 container_of(vq, struct vhost_net_virtqueue, vq);
390 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
391 if (!vq->private_data)
392 return;
393 vhost_poll_stop(poll);
394}
395
396static int vhost_net_enable_vq(struct vhost_net *n,
397 struct vhost_virtqueue *vq)
398{
399 struct vhost_net_virtqueue *nvq =
400 container_of(vq, struct vhost_net_virtqueue, vq);
401 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
402 struct socket *sock;
403
404 sock = vq->private_data;
405 if (!sock)
406 return 0;
407
408 return vhost_poll_start(poll, sock->file);
409}
410
Jason Wang03088132016-03-04 06:24:53 -0500411static int vhost_net_tx_get_vq_desc(struct vhost_net *net,
412 struct vhost_virtqueue *vq,
413 struct iovec iov[], unsigned int iov_size,
414 unsigned int *out_num, unsigned int *in_num)
415{
416 unsigned long uninitialized_var(endtime);
417 int r = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400418 out_num, in_num, NULL, NULL);
Jason Wang03088132016-03-04 06:24:53 -0500419
420 if (r == vq->num && vq->busyloop_timeout) {
421 preempt_disable();
422 endtime = busy_clock() + vq->busyloop_timeout;
423 while (vhost_can_busy_poll(vq->dev, endtime) &&
424 vhost_vq_avail_empty(vq->dev, vq))
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200425 cpu_relax();
Jason Wang03088132016-03-04 06:24:53 -0500426 preempt_enable();
427 r = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400428 out_num, in_num, NULL, NULL);
Jason Wang03088132016-03-04 06:24:53 -0500429 }
430
431 return r;
432}
433
Jason Wang0ed005c2017-01-18 15:02:02 +0800434static bool vhost_exceeds_maxpend(struct vhost_net *net)
435{
436 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
437 struct vhost_virtqueue *vq = &nvq->vq;
438
439 return (nvq->upend_idx + vq->num - VHOST_MAX_PEND) % UIO_MAXIOV
440 == nvq->done_idx;
441}
442
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000443/* Expects to be always run from workqueue - which acts as
444 * read-size critical section for our kind of RCU. */
445static void handle_tx(struct vhost_net *net)
446{
Asias He28394002013-04-27 15:07:46 +0800447 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300448 struct vhost_virtqueue *vq = &nvq->vq;
Al Viro98a527a2014-12-10 15:00:58 -0500449 unsigned out, in;
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300450 int head;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000451 struct msghdr msg = {
452 .msg_name = NULL,
453 .msg_namelen = 0,
454 .msg_control = NULL,
455 .msg_controllen = 0,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000456 .msg_flags = MSG_DONTWAIT,
457 };
458 size_t len, total_len = 0;
Jason Wang70181d512013-04-10 20:50:48 +0000459 int err;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000460 size_t hdr_size;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100461 struct socket *sock;
Asias Hefe729a52013-05-06 16:38:24 +0800462 struct vhost_net_ubuf_ref *uninitialized_var(ubufs);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200463 bool zcopy, zcopy_used;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100464
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000465 mutex_lock(&vq->mutex);
Asias He2e26af72013-05-07 14:54:33 +0800466 sock = vq->private_data;
467 if (!sock)
468 goto out;
469
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400470 if (!vq_iotlb_prefetch(vq))
471 goto out;
472
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300473 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000474
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300475 hdr_size = nvq->vhost_hlen;
Asias He28394002013-04-27 15:07:46 +0800476 zcopy = nvq->ubufs;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000477
478 for (;;) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000479 /* Release DMAs done buffers first */
480 if (zcopy)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000481 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000482
Jason Wangf7c6be42013-09-02 16:41:01 +0800483 /* If more outstanding DMAs, queue the work.
484 * Handle upend_idx wrap around
485 */
Jason Wang0ed005c2017-01-18 15:02:02 +0800486 if (unlikely(vhost_exceeds_maxpend(net)))
Jason Wangf7c6be42013-09-02 16:41:01 +0800487 break;
488
Jason Wang03088132016-03-04 06:24:53 -0500489 head = vhost_net_tx_get_vq_desc(net, vq, vq->iov,
490 ARRAY_SIZE(vq->iov),
491 &out, &in);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300492 /* On error, stop handling until the next kick. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +0300493 if (unlikely(head < 0))
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300494 break;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000495 /* Nothing new? Wait for eventfd to tell us they refilled. */
496 if (head == vq->num) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300497 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
498 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000499 continue;
500 }
501 break;
502 }
503 if (in) {
504 vq_err(vq, "Unexpected descriptor format for TX: "
505 "out %d, int %d\n", out, in);
506 break;
507 }
508 /* Skip header. TODO: support TSO. */
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000509 len = iov_length(vq->iov, out);
Al Viroc0371da2014-11-24 10:42:55 -0500510 iov_iter_init(&msg.msg_iter, WRITE, vq->iov, out, len);
Al Viro98a527a2014-12-10 15:00:58 -0500511 iov_iter_advance(&msg.msg_iter, hdr_size);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000512 /* Sanity check */
Al Viro01e97e62014-12-15 21:39:31 -0500513 if (!msg_data_left(&msg)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000514 vq_err(vq, "Unexpected header len for TX: "
515 "%zd expected %zd\n",
Al Viro98a527a2014-12-10 15:00:58 -0500516 len, hdr_size);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000517 break;
518 }
Al Viro01e97e62014-12-15 21:39:31 -0500519 len = msg_data_left(&msg);
Jason Wangce21a022013-09-02 16:40:59 +0800520
521 zcopy_used = zcopy && len >= VHOST_GOODCOPY_LEN
522 && (nvq->upend_idx + 1) % UIO_MAXIOV !=
523 nvq->done_idx
524 && vhost_net_tx_select_zcopy(net);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200525
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000526 /* use msg_control to pass vhost zerocopy ubuf info to skb */
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200527 if (zcopy_used) {
Jason Wangce21a022013-09-02 16:40:59 +0800528 struct ubuf_info *ubuf;
529 ubuf = nvq->ubuf_info + nvq->upend_idx;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000530
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300531 vq->heads[nvq->upend_idx].id = cpu_to_vhost32(vq, head);
Jason Wangce21a022013-09-02 16:40:59 +0800532 vq->heads[nvq->upend_idx].len = VHOST_DMA_IN_PROGRESS;
533 ubuf->callback = vhost_zerocopy_callback;
534 ubuf->ctx = nvq->ubufs;
535 ubuf->desc = nvq->upend_idx;
Eric Dumazetc1d1b432017-08-31 16:48:22 -0700536 refcount_set(&ubuf->refcnt, 1);
Jason Wangce21a022013-09-02 16:40:59 +0800537 msg.msg_control = ubuf;
538 msg.msg_controllen = sizeof(ubuf);
539 ubufs = nvq->ubufs;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200540 atomic_inc(&ubufs->refcount);
Asias He28394002013-04-27 15:07:46 +0800541 nvq->upend_idx = (nvq->upend_idx + 1) % UIO_MAXIOV;
Jason Wangce21a022013-09-02 16:40:59 +0800542 } else {
Jason Wang4364d5f2013-06-05 15:40:46 +0800543 msg.msg_control = NULL;
Jason Wangce21a022013-09-02 16:40:59 +0800544 ubufs = NULL;
545 }
Jason Wang0ed005c2017-01-18 15:02:02 +0800546
547 total_len += len;
548 if (total_len < VHOST_NET_WEIGHT &&
549 !vhost_vq_avail_empty(&net->dev, vq) &&
550 likely(!vhost_exceeds_maxpend(net))) {
551 msg.msg_flags |= MSG_MORE;
552 } else {
553 msg.msg_flags &= ~MSG_MORE;
554 }
555
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000556 /* TODO: Check specific error and bomb out unless ENOBUFS? */
Ying Xue1b784142015-03-02 15:37:48 +0800557 err = sock->ops->sendmsg(sock, &msg, len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000558 if (unlikely(err < 0)) {
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200559 if (zcopy_used) {
Jason Wangce21a022013-09-02 16:40:59 +0800560 vhost_net_ubuf_put(ubufs);
Asias He28394002013-04-27 15:07:46 +0800561 nvq->upend_idx = ((unsigned)nvq->upend_idx - 1)
562 % UIO_MAXIOV;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000563 }
David Stevens8dd014a2010-07-27 18:52:21 +0300564 vhost_discard_vq_desc(vq, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000565 break;
566 }
567 if (err != len)
Michael S. Tsirkin95c0ec62010-06-24 17:10:25 +0300568 pr_debug("Truncated TX packet: "
569 " len %d != %zd\n", err, len);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200570 if (!zcopy_used)
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000571 vhost_add_used_and_signal(&net->dev, vq, head, 0);
Jason Wangc8fb2172012-05-02 11:42:41 +0800572 else
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000573 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000574 vhost_net_tx_packet(net);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000575 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
576 vhost_poll_queue(&vq->poll);
577 break;
578 }
579 }
Asias He2e26af72013-05-07 14:54:33 +0800580out:
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000581 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000582}
583
Jason Wangc67df112017-05-17 12:14:45 +0800584static int peek_head_len(struct vhost_net_virtqueue *rvq, struct sock *sk)
David Stevens8dd014a2010-07-27 18:52:21 +0300585{
586 struct sk_buff *head;
587 int len = 0;
Jason Wang783e3982011-01-17 16:11:17 +0800588 unsigned long flags;
David Stevens8dd014a2010-07-27 18:52:21 +0300589
Jason Wangc67df112017-05-17 12:14:45 +0800590 if (rvq->rx_array)
591 return vhost_net_buf_peek(rvq);
Jason Wang1576d982016-06-30 14:45:36 +0800592
Jason Wang783e3982011-01-17 16:11:17 +0800593 spin_lock_irqsave(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300594 head = skb_peek(&sk->sk_receive_queue);
Basil Gorc53cff5e2012-05-03 22:55:23 +0000595 if (likely(head)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300596 len = head->len;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100597 if (skb_vlan_tag_present(head))
Basil Gorc53cff5e2012-05-03 22:55:23 +0000598 len += VLAN_HLEN;
599 }
600
Jason Wang783e3982011-01-17 16:11:17 +0800601 spin_unlock_irqrestore(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300602 return len;
603}
604
Jason Wang1576d982016-06-30 14:45:36 +0800605static int sk_has_rx_data(struct sock *sk)
606{
607 struct socket *sock = sk->sk_socket;
608
609 if (sock->ops->peek_len)
610 return sock->ops->peek_len(sock);
611
612 return skb_queue_empty(&sk->sk_receive_queue);
613}
614
Jason Wang03088132016-03-04 06:24:53 -0500615static int vhost_net_rx_peek_head_len(struct vhost_net *net, struct sock *sk)
616{
Jason Wangc67df112017-05-17 12:14:45 +0800617 struct vhost_net_virtqueue *rvq = &net->vqs[VHOST_NET_VQ_RX];
Jason Wang03088132016-03-04 06:24:53 -0500618 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
619 struct vhost_virtqueue *vq = &nvq->vq;
620 unsigned long uninitialized_var(endtime);
Jason Wangc67df112017-05-17 12:14:45 +0800621 int len = peek_head_len(rvq, sk);
Jason Wang03088132016-03-04 06:24:53 -0500622
623 if (!len && vq->busyloop_timeout) {
624 /* Both tx vq and rx socket were polled here */
625 mutex_lock(&vq->mutex);
626 vhost_disable_notify(&net->dev, vq);
627
628 preempt_disable();
629 endtime = busy_clock() + vq->busyloop_timeout;
630
631 while (vhost_can_busy_poll(&net->dev, endtime) &&
Jason Wang1576d982016-06-30 14:45:36 +0800632 !sk_has_rx_data(sk) &&
Jason Wang03088132016-03-04 06:24:53 -0500633 vhost_vq_avail_empty(&net->dev, vq))
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200634 cpu_relax();
Jason Wang03088132016-03-04 06:24:53 -0500635
636 preempt_enable();
637
Jason Wang8b949be2017-09-05 09:22:05 +0800638 if (!vhost_vq_avail_empty(&net->dev, vq))
Jason Wang03088132016-03-04 06:24:53 -0500639 vhost_poll_queue(&vq->poll);
Jason Wang8b949be2017-09-05 09:22:05 +0800640 else if (unlikely(vhost_enable_notify(&net->dev, vq))) {
641 vhost_disable_notify(&net->dev, vq);
642 vhost_poll_queue(&vq->poll);
643 }
644
Jason Wang03088132016-03-04 06:24:53 -0500645 mutex_unlock(&vq->mutex);
646
Jason Wangc67df112017-05-17 12:14:45 +0800647 len = peek_head_len(rvq, sk);
Jason Wang03088132016-03-04 06:24:53 -0500648 }
649
650 return len;
651}
652
David Stevens8dd014a2010-07-27 18:52:21 +0300653/* This is a multi-buffer version of vhost_get_desc, that works if
654 * vq has read descriptors only.
655 * @vq - the relevant virtqueue
656 * @datalen - data length we'll be reading
657 * @iovcount - returned count of io vectors we fill
658 * @log - vhost log
659 * @log_num - log offset
Jason Wang94249362011-01-17 16:11:08 +0800660 * @quota - headcount quota, 1 for big buffer
David Stevens8dd014a2010-07-27 18:52:21 +0300661 * returns number of buffer heads allocated, negative on error
662 */
663static int get_rx_bufs(struct vhost_virtqueue *vq,
664 struct vring_used_elem *heads,
665 int datalen,
666 unsigned *iovcount,
667 struct vhost_log *log,
Jason Wang94249362011-01-17 16:11:08 +0800668 unsigned *log_num,
669 unsigned int quota)
David Stevens8dd014a2010-07-27 18:52:21 +0300670{
671 unsigned int out, in;
672 int seg = 0;
673 int headcount = 0;
674 unsigned d;
675 int r, nlogs = 0;
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300676 /* len is always initialized before use since we are always called with
677 * datalen > 0.
678 */
679 u32 uninitialized_var(len);
David Stevens8dd014a2010-07-27 18:52:21 +0300680
Jason Wang94249362011-01-17 16:11:08 +0800681 while (datalen > 0 && headcount < quota) {
Jason Wange0e9b402010-09-14 23:53:05 +0800682 if (unlikely(seg >= UIO_MAXIOV)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300683 r = -ENOBUFS;
684 goto err;
685 }
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300686 r = vhost_get_vq_desc(vq, vq->iov + seg,
David Stevens8dd014a2010-07-27 18:52:21 +0300687 ARRAY_SIZE(vq->iov) - seg, &out,
688 &in, log, log_num);
Michael S. Tsirkina39ee442014-03-27 12:53:37 +0200689 if (unlikely(r < 0))
690 goto err;
691
692 d = r;
David Stevens8dd014a2010-07-27 18:52:21 +0300693 if (d == vq->num) {
694 r = 0;
695 goto err;
696 }
697 if (unlikely(out || in <= 0)) {
698 vq_err(vq, "unexpected descriptor format for RX: "
699 "out %d, in %d\n", out, in);
700 r = -EINVAL;
701 goto err;
702 }
703 if (unlikely(log)) {
704 nlogs += *log_num;
705 log += *log_num;
706 }
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300707 heads[headcount].id = cpu_to_vhost32(vq, d);
708 len = iov_length(vq->iov + seg, in);
709 heads[headcount].len = cpu_to_vhost32(vq, len);
710 datalen -= len;
David Stevens8dd014a2010-07-27 18:52:21 +0300711 ++headcount;
712 seg += in;
713 }
Michael S. Tsirkin99975cc2015-01-07 10:51:00 +0200714 heads[headcount - 1].len = cpu_to_vhost32(vq, len + datalen);
David Stevens8dd014a2010-07-27 18:52:21 +0300715 *iovcount = seg;
716 if (unlikely(log))
717 *log_num = nlogs;
Michael S. Tsirkind8316f32014-03-27 12:00:26 +0200718
719 /* Detect overrun */
720 if (unlikely(datalen > 0)) {
721 r = UIO_MAXIOV + 1;
722 goto err;
723 }
David Stevens8dd014a2010-07-27 18:52:21 +0300724 return headcount;
725err:
726 vhost_discard_vq_desc(vq, headcount);
727 return r;
728}
729
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000730/* Expects to be always run from workqueue - which acts as
731 * read-size critical section for our kind of RCU. */
Jason Wang94249362011-01-17 16:11:08 +0800732static void handle_rx(struct vhost_net *net)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000733{
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300734 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_RX];
735 struct vhost_virtqueue *vq = &nvq->vq;
David Stevens8dd014a2010-07-27 18:52:21 +0300736 unsigned uninitialized_var(in), log;
737 struct vhost_log *vq_log;
738 struct msghdr msg = {
739 .msg_name = NULL,
740 .msg_namelen = 0,
741 .msg_control = NULL, /* FIXME: get and handle RX aux data. */
742 .msg_controllen = 0,
David Stevens8dd014a2010-07-27 18:52:21 +0300743 .msg_flags = MSG_DONTWAIT,
744 };
Jason Wang0960b642015-02-15 16:35:17 +0800745 struct virtio_net_hdr hdr = {
746 .flags = 0,
747 .gso_type = VIRTIO_NET_HDR_GSO_NONE
David Stevens8dd014a2010-07-27 18:52:21 +0300748 };
David Stevens8dd014a2010-07-27 18:52:21 +0300749 size_t total_len = 0;
Michael S. Tsirkin910a5782012-10-24 20:37:51 +0200750 int err, mergeable;
751 s16 headcount;
David Stevens8dd014a2010-07-27 18:52:21 +0300752 size_t vhost_hlen, sock_hlen;
753 size_t vhost_len, sock_len;
Asias He2e26af72013-05-07 14:54:33 +0800754 struct socket *sock;
Al Viroba7438a2014-12-10 15:51:28 -0500755 struct iov_iter fixup;
Jason Wang0960b642015-02-15 16:35:17 +0800756 __virtio16 num_buffers;
David Stevens8dd014a2010-07-27 18:52:21 +0300757
David Stevens8dd014a2010-07-27 18:52:21 +0300758 mutex_lock(&vq->mutex);
Asias He2e26af72013-05-07 14:54:33 +0800759 sock = vq->private_data;
760 if (!sock)
761 goto out;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400762
763 if (!vq_iotlb_prefetch(vq))
764 goto out;
765
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300766 vhost_disable_notify(&net->dev, vq);
Jason Wang8241a1e2016-06-01 01:56:33 -0400767 vhost_net_disable_vq(net, vq);
Asias He2e26af72013-05-07 14:54:33 +0800768
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300769 vhost_hlen = nvq->vhost_hlen;
770 sock_hlen = nvq->sock_hlen;
David Stevens8dd014a2010-07-27 18:52:21 +0300771
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300772 vq_log = unlikely(vhost_has_feature(vq, VHOST_F_LOG_ALL)) ?
David Stevens8dd014a2010-07-27 18:52:21 +0300773 vq->log : NULL;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300774 mergeable = vhost_has_feature(vq, VIRTIO_NET_F_MRG_RXBUF);
David Stevens8dd014a2010-07-27 18:52:21 +0300775
Jason Wang03088132016-03-04 06:24:53 -0500776 while ((sock_len = vhost_net_rx_peek_head_len(net, sock->sk))) {
David Stevens8dd014a2010-07-27 18:52:21 +0300777 sock_len += sock_hlen;
778 vhost_len = sock_len + vhost_hlen;
779 headcount = get_rx_bufs(vq, vq->heads, vhost_len,
Jason Wang94249362011-01-17 16:11:08 +0800780 &in, vq_log, &log,
781 likely(mergeable) ? UIO_MAXIOV : 1);
David Stevens8dd014a2010-07-27 18:52:21 +0300782 /* On error, stop handling until the next kick. */
783 if (unlikely(headcount < 0))
Jason Wang8241a1e2016-06-01 01:56:33 -0400784 goto out;
Jason Wangc67df112017-05-17 12:14:45 +0800785 if (nvq->rx_array)
786 msg.msg_control = vhost_net_buf_consume(&nvq->rxq);
Michael S. Tsirkind8316f32014-03-27 12:00:26 +0200787 /* On overrun, truncate and discard */
788 if (unlikely(headcount > UIO_MAXIOV)) {
Al Viroc0371da2014-11-24 10:42:55 -0500789 iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1);
Ying Xue1b784142015-03-02 15:37:48 +0800790 err = sock->ops->recvmsg(sock, &msg,
Michael S. Tsirkind8316f32014-03-27 12:00:26 +0200791 1, MSG_DONTWAIT | MSG_TRUNC);
792 pr_debug("Discarded rx packet: len %zd\n", sock_len);
793 continue;
794 }
David Stevens8dd014a2010-07-27 18:52:21 +0300795 /* OK, now we need to know about added descriptors. */
796 if (!headcount) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300797 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
David Stevens8dd014a2010-07-27 18:52:21 +0300798 /* They have slipped one in as we were
799 * doing that: check again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300800 vhost_disable_notify(&net->dev, vq);
David Stevens8dd014a2010-07-27 18:52:21 +0300801 continue;
802 }
803 /* Nothing new? Wait for eventfd to tell us
804 * they refilled. */
Jason Wang8241a1e2016-06-01 01:56:33 -0400805 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +0300806 }
807 /* We don't need to be notified again. */
Al Viroba7438a2014-12-10 15:51:28 -0500808 iov_iter_init(&msg.msg_iter, READ, vq->iov, in, vhost_len);
809 fixup = msg.msg_iter;
810 if (unlikely((vhost_hlen))) {
811 /* We will supply the header ourselves
812 * TODO: support TSO.
813 */
814 iov_iter_advance(&msg.msg_iter, vhost_hlen);
Al Viroba7438a2014-12-10 15:51:28 -0500815 }
Ying Xue1b784142015-03-02 15:37:48 +0800816 err = sock->ops->recvmsg(sock, &msg,
David Stevens8dd014a2010-07-27 18:52:21 +0300817 sock_len, MSG_DONTWAIT | MSG_TRUNC);
818 /* Userspace might have consumed the packet meanwhile:
819 * it's not supposed to do this usually, but might be hard
820 * to prevent. Discard data we got (if any) and keep going. */
821 if (unlikely(err != sock_len)) {
822 pr_debug("Discarded rx packet: "
823 " len %d, expected %zd\n", err, sock_len);
824 vhost_discard_vq_desc(vq, headcount);
825 continue;
826 }
Al Viroba7438a2014-12-10 15:51:28 -0500827 /* Supply virtio_net_hdr if VHOST_NET_F_VIRTIO_NET_HDR */
Michael S. Tsirkin4c5a8442015-02-25 15:19:28 +0100828 if (unlikely(vhost_hlen)) {
829 if (copy_to_iter(&hdr, sizeof(hdr),
830 &fixup) != sizeof(hdr)) {
831 vq_err(vq, "Unable to write vnet_hdr "
832 "at addr %p\n", vq->iov->iov_base);
Jason Wang8241a1e2016-06-01 01:56:33 -0400833 goto out;
Michael S. Tsirkin4c5a8442015-02-25 15:19:28 +0100834 }
835 } else {
836 /* Header came from socket; we'll need to patch
837 * ->num_buffers over if VIRTIO_NET_F_MRG_RXBUF
838 */
839 iov_iter_advance(&fixup, sizeof(hdr));
David Stevens8dd014a2010-07-27 18:52:21 +0300840 }
841 /* TODO: Should check and handle checksum. */
Michael S. Tsirkin5201aa42015-02-03 11:07:06 +0200842
Jason Wang0960b642015-02-15 16:35:17 +0800843 num_buffers = cpu_to_vhost16(vq, headcount);
Jason Wangcfbdab92011-01-17 16:10:59 +0800844 if (likely(mergeable) &&
Michael S. Tsirkin0d79a492015-02-25 15:20:01 +0100845 copy_to_iter(&num_buffers, sizeof num_buffers,
846 &fixup) != sizeof num_buffers) {
David Stevens8dd014a2010-07-27 18:52:21 +0300847 vq_err(vq, "Failed num_buffers write");
848 vhost_discard_vq_desc(vq, headcount);
Jason Wang8241a1e2016-06-01 01:56:33 -0400849 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +0300850 }
851 vhost_add_used_and_signal_n(&net->dev, vq, vq->heads,
852 headcount);
853 if (unlikely(vq_log))
854 vhost_log_write(vq, vq_log, log, vhost_len);
855 total_len += vhost_len;
856 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
857 vhost_poll_queue(&vq->poll);
Jason Wang8241a1e2016-06-01 01:56:33 -0400858 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +0300859 }
860 }
Jason Wang8241a1e2016-06-01 01:56:33 -0400861 vhost_net_enable_vq(net, vq);
Asias He2e26af72013-05-07 14:54:33 +0800862out:
David Stevens8dd014a2010-07-27 18:52:21 +0300863 mutex_unlock(&vq->mutex);
David Stevens8dd014a2010-07-27 18:52:21 +0300864}
865
Tejun Heoc23f34452010-06-02 20:40:00 +0200866static void handle_tx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000867{
Tejun Heoc23f34452010-06-02 20:40:00 +0200868 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
869 poll.work);
870 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
871
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000872 handle_tx(net);
873}
874
Tejun Heoc23f34452010-06-02 20:40:00 +0200875static void handle_rx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000876{
Tejun Heoc23f34452010-06-02 20:40:00 +0200877 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
878 poll.work);
879 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
880
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000881 handle_rx(net);
882}
883
Tejun Heoc23f34452010-06-02 20:40:00 +0200884static void handle_tx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000885{
Tejun Heoc23f34452010-06-02 20:40:00 +0200886 struct vhost_net *net = container_of(work, struct vhost_net,
887 poll[VHOST_NET_VQ_TX].work);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000888 handle_tx(net);
889}
890
Tejun Heoc23f34452010-06-02 20:40:00 +0200891static void handle_rx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000892{
Tejun Heoc23f34452010-06-02 20:40:00 +0200893 struct vhost_net *net = container_of(work, struct vhost_net,
894 poll[VHOST_NET_VQ_RX].work);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000895 handle_rx(net);
896}
897
898static int vhost_net_open(struct inode *inode, struct file *f)
899{
Michael S. Tsirkin23cc5a92013-01-23 21:46:47 +0100900 struct vhost_net *n;
Tejun Heoc23f34452010-06-02 20:40:00 +0200901 struct vhost_dev *dev;
Asias He3ab2e422013-04-27 11:16:48 +0800902 struct vhost_virtqueue **vqs;
Jason Wangc67df112017-05-17 12:14:45 +0800903 struct sk_buff **queue;
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +0800904 int i;
Tejun Heoc23f34452010-06-02 20:40:00 +0200905
Michal Hockodcda9b02017-07-12 14:36:45 -0700906 n = kvmalloc(sizeof *n, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hocko6c5ab652017-05-08 15:57:15 -0700907 if (!n)
908 return -ENOMEM;
Asias He3ab2e422013-04-27 11:16:48 +0800909 vqs = kmalloc(VHOST_NET_VQ_MAX * sizeof(*vqs), GFP_KERNEL);
910 if (!vqs) {
Romain Francoised04257b2014-06-12 10:42:34 +0200911 kvfree(n);
Asias He3ab2e422013-04-27 11:16:48 +0800912 return -ENOMEM;
913 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200914
Jason Wangc67df112017-05-17 12:14:45 +0800915 queue = kmalloc_array(VHOST_RX_BATCH, sizeof(struct sk_buff *),
916 GFP_KERNEL);
917 if (!queue) {
918 kfree(vqs);
919 kvfree(n);
920 return -ENOMEM;
921 }
922 n->vqs[VHOST_NET_VQ_RX].rxq.queue = queue;
923
Tejun Heoc23f34452010-06-02 20:40:00 +0200924 dev = &n->dev;
Asias He3ab2e422013-04-27 11:16:48 +0800925 vqs[VHOST_NET_VQ_TX] = &n->vqs[VHOST_NET_VQ_TX].vq;
926 vqs[VHOST_NET_VQ_RX] = &n->vqs[VHOST_NET_VQ_RX].vq;
927 n->vqs[VHOST_NET_VQ_TX].vq.handle_kick = handle_tx_kick;
928 n->vqs[VHOST_NET_VQ_RX].vq.handle_kick = handle_rx_kick;
Asias He28394002013-04-27 15:07:46 +0800929 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
930 n->vqs[i].ubufs = NULL;
931 n->vqs[i].ubuf_info = NULL;
932 n->vqs[i].upend_idx = 0;
933 n->vqs[i].done_idx = 0;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300934 n->vqs[i].vhost_hlen = 0;
935 n->vqs[i].sock_hlen = 0;
Jason Wangc67df112017-05-17 12:14:45 +0800936 vhost_net_buf_init(&n->vqs[i].rxq);
Asias He28394002013-04-27 15:07:46 +0800937 }
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +0800938 vhost_dev_init(dev, vqs, VHOST_NET_VQ_MAX);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000939
Tejun Heoc23f34452010-06-02 20:40:00 +0200940 vhost_poll_init(n->poll + VHOST_NET_VQ_TX, handle_tx_net, POLLOUT, dev);
941 vhost_poll_init(n->poll + VHOST_NET_VQ_RX, handle_rx_net, POLLIN, dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000942
943 f->private_data = n;
944
945 return 0;
946}
947
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000948static struct socket *vhost_net_stop_vq(struct vhost_net *n,
949 struct vhost_virtqueue *vq)
950{
951 struct socket *sock;
Jason Wangc67df112017-05-17 12:14:45 +0800952 struct vhost_net_virtqueue *nvq =
953 container_of(vq, struct vhost_net_virtqueue, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000954
955 mutex_lock(&vq->mutex);
Asias He22fa90c2013-05-07 14:54:36 +0800956 sock = vq->private_data;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000957 vhost_net_disable_vq(n, vq);
Asias He22fa90c2013-05-07 14:54:36 +0800958 vq->private_data = NULL;
Jason Wangc67df112017-05-17 12:14:45 +0800959 vhost_net_buf_unproduce(nvq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000960 mutex_unlock(&vq->mutex);
961 return sock;
962}
963
964static void vhost_net_stop(struct vhost_net *n, struct socket **tx_sock,
965 struct socket **rx_sock)
966{
Asias He3ab2e422013-04-27 11:16:48 +0800967 *tx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_TX].vq);
968 *rx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_RX].vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000969}
970
971static void vhost_net_flush_vq(struct vhost_net *n, int index)
972{
973 vhost_poll_flush(n->poll + index);
Asias He3ab2e422013-04-27 11:16:48 +0800974 vhost_poll_flush(&n->vqs[index].vq.poll);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000975}
976
977static void vhost_net_flush(struct vhost_net *n)
978{
979 vhost_net_flush_vq(n, VHOST_NET_VQ_TX);
980 vhost_net_flush_vq(n, VHOST_NET_VQ_RX);
Asias He28394002013-04-27 15:07:46 +0800981 if (n->vqs[VHOST_NET_VQ_TX].ubufs) {
Asias He3ab2e422013-04-27 11:16:48 +0800982 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200983 n->tx_flush = true;
Asias He3ab2e422013-04-27 11:16:48 +0800984 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200985 /* Wait for all lower device DMAs done. */
Asias Hefe729a52013-05-06 16:38:24 +0800986 vhost_net_ubuf_put_and_wait(n->vqs[VHOST_NET_VQ_TX].ubufs);
Asias He3ab2e422013-04-27 11:16:48 +0800987 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200988 n->tx_flush = false;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200989 atomic_set(&n->vqs[VHOST_NET_VQ_TX].ubufs->refcount, 1);
Asias He3ab2e422013-04-27 11:16:48 +0800990 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200991 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000992}
993
994static int vhost_net_release(struct inode *inode, struct file *f)
995{
996 struct vhost_net *n = f->private_data;
997 struct socket *tx_sock;
998 struct socket *rx_sock;
999
1000 vhost_net_stop(n, &tx_sock, &rx_sock);
1001 vhost_net_flush(n);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +00001002 vhost_dev_stop(&n->dev);
Michael S. Tsirkinea5d4042011-11-27 19:05:58 +02001003 vhost_dev_cleanup(&n->dev, false);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001004 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001005 if (tx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001006 sockfd_put(tx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001007 if (rx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001008 sockfd_put(rx_sock);
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +02001009 /* Make sure no callbacks are outstanding */
1010 synchronize_rcu_bh();
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001011 /* We do an extra flush before freeing memory,
1012 * since jobs can re-queue themselves. */
1013 vhost_net_flush(n);
Jason Wangc67df112017-05-17 12:14:45 +08001014 kfree(n->vqs[VHOST_NET_VQ_RX].rxq.queue);
Asias He3ab2e422013-04-27 11:16:48 +08001015 kfree(n->dev.vqs);
Romain Francoised04257b2014-06-12 10:42:34 +02001016 kvfree(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001017 return 0;
1018}
1019
1020static struct socket *get_raw_socket(int fd)
1021{
1022 struct {
1023 struct sockaddr_ll sa;
1024 char buf[MAX_ADDR_LEN];
1025 } uaddr;
1026 int uaddr_len = sizeof uaddr, r;
1027 struct socket *sock = sockfd_lookup(fd, &r);
Krishna Kumard47effe2011-03-01 17:06:37 +05301028
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001029 if (!sock)
1030 return ERR_PTR(-ENOTSOCK);
1031
1032 /* Parameter checking */
1033 if (sock->sk->sk_type != SOCK_RAW) {
1034 r = -ESOCKTNOSUPPORT;
1035 goto err;
1036 }
1037
1038 r = sock->ops->getname(sock, (struct sockaddr *)&uaddr.sa,
1039 &uaddr_len, 0);
1040 if (r)
1041 goto err;
1042
1043 if (uaddr.sa.sll_family != AF_PACKET) {
1044 r = -EPFNOSUPPORT;
1045 goto err;
1046 }
1047 return sock;
1048err:
Al Viro09aaacf2014-03-05 20:39:00 -05001049 sockfd_put(sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001050 return ERR_PTR(r);
1051}
1052
Jason Wangc67df112017-05-17 12:14:45 +08001053static struct skb_array *get_tap_skb_array(int fd)
1054{
1055 struct skb_array *array;
1056 struct file *file = fget(fd);
1057
1058 if (!file)
1059 return NULL;
1060 array = tun_get_skb_array(file);
1061 if (!IS_ERR(array))
1062 goto out;
1063 array = tap_get_skb_array(file);
1064 if (!IS_ERR(array))
1065 goto out;
1066 array = NULL;
1067out:
1068 fput(file);
1069 return array;
1070}
1071
Arnd Bergmann501c7742010-02-18 05:46:50 +00001072static struct socket *get_tap_socket(int fd)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001073{
1074 struct file *file = fget(fd);
1075 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +05301076
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001077 if (!file)
1078 return ERR_PTR(-EBADF);
1079 sock = tun_get_socket(file);
Arnd Bergmann501c7742010-02-18 05:46:50 +00001080 if (!IS_ERR(sock))
1081 return sock;
Sainath Grandhi635b8c82017-02-10 16:03:47 -08001082 sock = tap_get_socket(file);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001083 if (IS_ERR(sock))
1084 fput(file);
1085 return sock;
1086}
1087
1088static struct socket *get_socket(int fd)
1089{
1090 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +05301091
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001092 /* special case to disable backend */
1093 if (fd == -1)
1094 return NULL;
1095 sock = get_raw_socket(fd);
1096 if (!IS_ERR(sock))
1097 return sock;
Arnd Bergmann501c7742010-02-18 05:46:50 +00001098 sock = get_tap_socket(fd);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001099 if (!IS_ERR(sock))
1100 return sock;
1101 return ERR_PTR(-ENOTSOCK);
1102}
1103
1104static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
1105{
1106 struct socket *sock, *oldsock;
1107 struct vhost_virtqueue *vq;
Asias He28394002013-04-27 15:07:46 +08001108 struct vhost_net_virtqueue *nvq;
Asias Hefe729a52013-05-06 16:38:24 +08001109 struct vhost_net_ubuf_ref *ubufs, *oldubufs = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001110 int r;
1111
1112 mutex_lock(&n->dev.mutex);
1113 r = vhost_dev_check_owner(&n->dev);
1114 if (r)
1115 goto err;
1116
1117 if (index >= VHOST_NET_VQ_MAX) {
1118 r = -ENOBUFS;
1119 goto err;
1120 }
Asias He3ab2e422013-04-27 11:16:48 +08001121 vq = &n->vqs[index].vq;
Asias He28394002013-04-27 15:07:46 +08001122 nvq = &n->vqs[index];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001123 mutex_lock(&vq->mutex);
1124
1125 /* Verify that ring has been setup correctly. */
1126 if (!vhost_vq_access_ok(vq)) {
1127 r = -EFAULT;
Jeff Dike1dace8c2010-03-04 16:10:14 -05001128 goto err_vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001129 }
1130 sock = get_socket(fd);
1131 if (IS_ERR(sock)) {
1132 r = PTR_ERR(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -05001133 goto err_vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001134 }
1135
1136 /* start polling new socket */
Asias He22fa90c2013-05-07 14:54:36 +08001137 oldsock = vq->private_data;
David S. Miller11fe8832010-07-20 18:25:24 -07001138 if (sock != oldsock) {
Asias Hefe729a52013-05-06 16:38:24 +08001139 ubufs = vhost_net_ubuf_alloc(vq,
1140 sock && vhost_sock_zcopy(sock));
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001141 if (IS_ERR(ubufs)) {
1142 r = PTR_ERR(ubufs);
1143 goto err_ubufs;
1144 }
Jason Wang692a9982013-01-28 01:05:17 +00001145
Krishna Kumard47effe2011-03-01 17:06:37 +05301146 vhost_net_disable_vq(n, vq);
Asias He22fa90c2013-05-07 14:54:36 +08001147 vq->private_data = sock;
Jason Wangc67df112017-05-17 12:14:45 +08001148 vhost_net_buf_unproduce(nvq);
1149 if (index == VHOST_NET_VQ_RX)
1150 nvq->rx_array = get_tap_skb_array(fd);
Greg Kurz80f7d032016-02-16 15:59:44 +01001151 r = vhost_vq_init_access(vq);
Jason Wangf59281d2011-06-21 18:04:27 +08001152 if (r)
Jason Wang692a9982013-01-28 01:05:17 +00001153 goto err_used;
Jason Wang2b8b3282013-01-28 01:05:18 +00001154 r = vhost_net_enable_vq(n, vq);
1155 if (r)
1156 goto err_used;
Jason Wang692a9982013-01-28 01:05:17 +00001157
Asias He28394002013-04-27 15:07:46 +08001158 oldubufs = nvq->ubufs;
1159 nvq->ubufs = ubufs;
Michael S. Tsirkin64e9a9b2012-12-03 07:31:51 +00001160
1161 n->tx_packets = 0;
1162 n->tx_zcopy_err = 0;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001163 n->tx_flush = false;
Jeff Dikedd1f4072010-03-04 16:10:14 -05001164 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001165
Michael S. Tsirkin1680e902010-07-15 15:19:12 +03001166 mutex_unlock(&vq->mutex);
1167
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001168 if (oldubufs) {
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +03001169 vhost_net_ubuf_put_wait_and_free(oldubufs);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001170 mutex_lock(&vq->mutex);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +00001171 vhost_zerocopy_signal_used(n, vq);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001172 mutex_unlock(&vq->mutex);
1173 }
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001174
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001175 if (oldsock) {
1176 vhost_net_flush_vq(n, index);
Al Viro09aaacf2014-03-05 20:39:00 -05001177 sockfd_put(oldsock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001178 }
Jeff Dike1dace8c2010-03-04 16:10:14 -05001179
Michael S. Tsirkin1680e902010-07-15 15:19:12 +03001180 mutex_unlock(&n->dev.mutex);
1181 return 0;
1182
Jason Wang692a9982013-01-28 01:05:17 +00001183err_used:
Asias He22fa90c2013-05-07 14:54:36 +08001184 vq->private_data = oldsock;
Jason Wang692a9982013-01-28 01:05:17 +00001185 vhost_net_enable_vq(n, vq);
1186 if (ubufs)
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +03001187 vhost_net_ubuf_put_wait_and_free(ubufs);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001188err_ubufs:
Al Viro09aaacf2014-03-05 20:39:00 -05001189 sockfd_put(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -05001190err_vq:
1191 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001192err:
1193 mutex_unlock(&n->dev.mutex);
1194 return r;
1195}
1196
1197static long vhost_net_reset_owner(struct vhost_net *n)
1198{
1199 struct socket *tx_sock = NULL;
1200 struct socket *rx_sock = NULL;
1201 long err;
Jason Wanga9709d62016-06-23 02:04:31 -04001202 struct vhost_umem *umem;
Krishna Kumard47effe2011-03-01 17:06:37 +05301203
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001204 mutex_lock(&n->dev.mutex);
1205 err = vhost_dev_check_owner(&n->dev);
1206 if (err)
1207 goto done;
Jason Wanga9709d62016-06-23 02:04:31 -04001208 umem = vhost_dev_reset_owner_prepare();
1209 if (!umem) {
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +03001210 err = -ENOMEM;
1211 goto done;
1212 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001213 vhost_net_stop(n, &tx_sock, &rx_sock);
1214 vhost_net_flush(n);
Jason Wanga9709d62016-06-23 02:04:31 -04001215 vhost_dev_reset_owner(&n->dev, umem);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001216 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001217done:
1218 mutex_unlock(&n->dev.mutex);
1219 if (tx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001220 sockfd_put(tx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001221 if (rx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001222 sockfd_put(rx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001223 return err;
1224}
1225
1226static int vhost_net_set_features(struct vhost_net *n, u64 features)
1227{
David Stevens8dd014a2010-07-27 18:52:21 +03001228 size_t vhost_hlen, sock_hlen, hdr_len;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001229 int i;
David Stevens8dd014a2010-07-27 18:52:21 +03001230
Michael S. Tsirkine4fca7d2014-10-24 14:23:52 +03001231 hdr_len = (features & ((1ULL << VIRTIO_NET_F_MRG_RXBUF) |
1232 (1ULL << VIRTIO_F_VERSION_1))) ?
David Stevens8dd014a2010-07-27 18:52:21 +03001233 sizeof(struct virtio_net_hdr_mrg_rxbuf) :
1234 sizeof(struct virtio_net_hdr);
1235 if (features & (1 << VHOST_NET_F_VIRTIO_NET_HDR)) {
1236 /* vhost provides vnet_hdr */
1237 vhost_hlen = hdr_len;
1238 sock_hlen = 0;
1239 } else {
1240 /* socket provides vnet_hdr */
1241 vhost_hlen = 0;
1242 sock_hlen = hdr_len;
1243 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001244 mutex_lock(&n->dev.mutex);
1245 if ((features & (1 << VHOST_F_LOG_ALL)) &&
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001246 !vhost_log_access_ok(&n->dev))
1247 goto out_unlock;
1248
1249 if ((features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))) {
1250 if (vhost_init_device_iotlb(&n->dev, true))
1251 goto out_unlock;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001252 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001253
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001254 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +08001255 mutex_lock(&n->vqs[i].vq.mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001256 n->vqs[i].vq.acked_features = features;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001257 n->vqs[i].vhost_hlen = vhost_hlen;
1258 n->vqs[i].sock_hlen = sock_hlen;
Asias He3ab2e422013-04-27 11:16:48 +08001259 mutex_unlock(&n->vqs[i].vq.mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001260 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001261 mutex_unlock(&n->dev.mutex);
1262 return 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001263
1264out_unlock:
1265 mutex_unlock(&n->dev.mutex);
1266 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001267}
1268
Asias Heb1ad8492013-05-06 11:16:00 +08001269static long vhost_net_set_owner(struct vhost_net *n)
1270{
1271 int r;
1272
1273 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin05c05352013-06-06 15:20:39 +03001274 if (vhost_dev_has_owner(&n->dev)) {
1275 r = -EBUSY;
1276 goto out;
1277 }
Asias Heb1ad8492013-05-06 11:16:00 +08001278 r = vhost_net_set_ubuf_info(n);
1279 if (r)
1280 goto out;
1281 r = vhost_dev_set_owner(&n->dev);
1282 if (r)
1283 vhost_net_clear_ubuf_info(n);
1284 vhost_net_flush(n);
1285out:
1286 mutex_unlock(&n->dev.mutex);
1287 return r;
1288}
1289
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001290static long vhost_net_ioctl(struct file *f, unsigned int ioctl,
1291 unsigned long arg)
1292{
1293 struct vhost_net *n = f->private_data;
1294 void __user *argp = (void __user *)arg;
1295 u64 __user *featurep = argp;
1296 struct vhost_vring_file backend;
1297 u64 features;
1298 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301299
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001300 switch (ioctl) {
1301 case VHOST_NET_SET_BACKEND:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001302 if (copy_from_user(&backend, argp, sizeof backend))
1303 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001304 return vhost_net_set_backend(n, backend.index, backend.fd);
1305 case VHOST_GET_FEATURES:
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001306 features = VHOST_NET_FEATURES;
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001307 if (copy_to_user(featurep, &features, sizeof features))
1308 return -EFAULT;
1309 return 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001310 case VHOST_SET_FEATURES:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001311 if (copy_from_user(&features, featurep, sizeof features))
1312 return -EFAULT;
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001313 if (features & ~VHOST_NET_FEATURES)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001314 return -EOPNOTSUPP;
1315 return vhost_net_set_features(n, features);
1316 case VHOST_RESET_OWNER:
1317 return vhost_net_reset_owner(n);
Asias Heb1ad8492013-05-06 11:16:00 +08001318 case VHOST_SET_OWNER:
1319 return vhost_net_set_owner(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001320 default:
1321 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001322 r = vhost_dev_ioctl(&n->dev, ioctl, argp);
1323 if (r == -ENOIOCTLCMD)
1324 r = vhost_vring_ioctl(&n->dev, ioctl, argp);
1325 else
1326 vhost_net_flush(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001327 mutex_unlock(&n->dev.mutex);
1328 return r;
1329 }
1330}
1331
1332#ifdef CONFIG_COMPAT
1333static long vhost_net_compat_ioctl(struct file *f, unsigned int ioctl,
1334 unsigned long arg)
1335{
1336 return vhost_net_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1337}
1338#endif
1339
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001340static ssize_t vhost_net_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
1341{
1342 struct file *file = iocb->ki_filp;
1343 struct vhost_net *n = file->private_data;
1344 struct vhost_dev *dev = &n->dev;
1345 int noblock = file->f_flags & O_NONBLOCK;
1346
1347 return vhost_chr_read_iter(dev, to, noblock);
1348}
1349
1350static ssize_t vhost_net_chr_write_iter(struct kiocb *iocb,
1351 struct iov_iter *from)
1352{
1353 struct file *file = iocb->ki_filp;
1354 struct vhost_net *n = file->private_data;
1355 struct vhost_dev *dev = &n->dev;
1356
1357 return vhost_chr_write_iter(dev, from);
1358}
1359
1360static unsigned int vhost_net_chr_poll(struct file *file, poll_table *wait)
1361{
1362 struct vhost_net *n = file->private_data;
1363 struct vhost_dev *dev = &n->dev;
1364
1365 return vhost_chr_poll(file, dev, wait);
1366}
1367
Tobias Klauser373a83a2010-05-17 15:12:49 +02001368static const struct file_operations vhost_net_fops = {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001369 .owner = THIS_MODULE,
1370 .release = vhost_net_release,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001371 .read_iter = vhost_net_chr_read_iter,
1372 .write_iter = vhost_net_chr_write_iter,
1373 .poll = vhost_net_chr_poll,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001374 .unlocked_ioctl = vhost_net_ioctl,
1375#ifdef CONFIG_COMPAT
1376 .compat_ioctl = vhost_net_compat_ioctl,
1377#endif
1378 .open = vhost_net_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001379 .llseek = noop_llseek,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001380};
1381
1382static struct miscdevice vhost_net_misc = {
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001383 .minor = VHOST_NET_MINOR,
1384 .name = "vhost-net",
1385 .fops = &vhost_net_fops,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001386};
1387
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001388static int vhost_net_init(void)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001389{
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001390 if (experimental_zcopytx)
Asias Hefe729a52013-05-06 16:38:24 +08001391 vhost_net_enable_zcopy(VHOST_NET_VQ_TX);
Tejun Heoc23f34452010-06-02 20:40:00 +02001392 return misc_register(&vhost_net_misc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001393}
1394module_init(vhost_net_init);
1395
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001396static void vhost_net_exit(void)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001397{
1398 misc_deregister(&vhost_net_misc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001399}
1400module_exit(vhost_net_exit);
1401
1402MODULE_VERSION("0.0.1");
1403MODULE_LICENSE("GPL v2");
1404MODULE_AUTHOR("Michael S. Tsirkin");
1405MODULE_DESCRIPTION("Host kernel accelerator for virtio net");
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001406MODULE_ALIAS_MISCDEV(VHOST_NET_MINOR);
1407MODULE_ALIAS("devname:vhost-net");