blob: 9b519897cc17b8f31236bd51bfa283fbf5ada319 [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>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000031
32#include <net/sock.h>
33
34#include "vhost.h"
35
Michael S. Tsirkinf9611c42012-12-06 14:56:00 +020036static int experimental_zcopytx = 1;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000037module_param(experimental_zcopytx, int, 0444);
Michael S. Tsirkinf9611c42012-12-06 14:56:00 +020038MODULE_PARM_DESC(experimental_zcopytx, "Enable Zero Copy TX;"
39 " 1 -Enable; 0 - Disable");
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000040
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000041/* Max number of bytes transferred before requeueing the job.
42 * Using this limit prevents one virtqueue from starving others. */
43#define VHOST_NET_WEIGHT 0x80000
44
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000045/* MAX number of TX used buffers for outstanding zerocopy */
46#define VHOST_MAX_PEND 128
47#define VHOST_GOODCOPY_LEN 256
48
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000049/*
50 * For transmit, used buffer len is unused; we override it to track buffer
51 * status internally; used for zerocopy tx only.
52 */
53/* Lower device DMA failed */
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030054#define VHOST_DMA_FAILED_LEN ((__force __virtio32)3)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000055/* Lower device DMA done */
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030056#define VHOST_DMA_DONE_LEN ((__force __virtio32)2)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000057/* Lower device DMA in progress */
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030058#define VHOST_DMA_IN_PROGRESS ((__force __virtio32)1)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000059/* Buffer unused */
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030060#define VHOST_DMA_CLEAR_LEN ((__force __virtio32)0)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000061
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030062#define VHOST_DMA_IS_DONE(len) ((__force u32)(len) >= (__force u32)VHOST_DMA_DONE_LEN)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000063
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000064enum {
Asias He8570a6e2013-05-06 16:38:20 +080065 VHOST_NET_FEATURES = VHOST_FEATURES |
66 (1ULL << VHOST_NET_F_VIRTIO_NET_HDR) |
Jason Wang6b1e6cc2016-06-23 02:04:32 -040067 (1ULL << VIRTIO_NET_F_MRG_RXBUF) |
68 (1ULL << VIRTIO_F_IOMMU_PLATFORM)
Asias He8570a6e2013-05-06 16:38:20 +080069};
70
71enum {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000072 VHOST_NET_VQ_RX = 0,
73 VHOST_NET_VQ_TX = 1,
74 VHOST_NET_VQ_MAX = 2,
75};
76
Asias Hefe729a52013-05-06 16:38:24 +080077struct vhost_net_ubuf_ref {
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +020078 /* refcount follows semantics similar to kref:
79 * 0: object is released
80 * 1: no outstanding ubufs
81 * >1: outstanding ubufs
82 */
83 atomic_t refcount;
Asias He28394002013-04-27 15:07:46 +080084 wait_queue_head_t wait;
85 struct vhost_virtqueue *vq;
86};
87
Asias He3ab2e422013-04-27 11:16:48 +080088struct vhost_net_virtqueue {
89 struct vhost_virtqueue vq;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +030090 size_t vhost_hlen;
91 size_t sock_hlen;
Asias He28394002013-04-27 15:07:46 +080092 /* vhost zerocopy support fields below: */
93 /* last used idx for outstanding DMA zerocopy buffers */
94 int upend_idx;
95 /* first used idx for DMA done zerocopy buffers */
96 int done_idx;
97 /* an array of userspace buffers info */
98 struct ubuf_info *ubuf_info;
99 /* Reference counting for outstanding ubufs.
100 * Protected by vq mutex. Writers must also take device mutex. */
Asias Hefe729a52013-05-06 16:38:24 +0800101 struct vhost_net_ubuf_ref *ubufs;
Asias He3ab2e422013-04-27 11:16:48 +0800102};
103
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000104struct vhost_net {
105 struct vhost_dev dev;
Asias He3ab2e422013-04-27 11:16:48 +0800106 struct vhost_net_virtqueue vqs[VHOST_NET_VQ_MAX];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000107 struct vhost_poll poll[VHOST_NET_VQ_MAX];
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000108 /* Number of TX recently submitted.
109 * Protected by tx vq lock. */
110 unsigned tx_packets;
111 /* Number of times zerocopy TX recently failed.
112 * Protected by tx vq lock. */
113 unsigned tx_zcopy_err;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200114 /* Flush in progress. Protected by tx vq lock. */
115 bool tx_flush;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000116};
117
Asias Hefe729a52013-05-06 16:38:24 +0800118static unsigned vhost_net_zcopy_mask __read_mostly;
Asias He28394002013-04-27 15:07:46 +0800119
Asias Hefe729a52013-05-06 16:38:24 +0800120static void vhost_net_enable_zcopy(int vq)
Asias He28394002013-04-27 15:07:46 +0800121{
Asias Hefe729a52013-05-06 16:38:24 +0800122 vhost_net_zcopy_mask |= 0x1 << vq;
Asias He28394002013-04-27 15:07:46 +0800123}
124
Asias Hefe729a52013-05-06 16:38:24 +0800125static struct vhost_net_ubuf_ref *
126vhost_net_ubuf_alloc(struct vhost_virtqueue *vq, bool zcopy)
Asias He28394002013-04-27 15:07:46 +0800127{
Asias Hefe729a52013-05-06 16:38:24 +0800128 struct vhost_net_ubuf_ref *ubufs;
Asias He28394002013-04-27 15:07:46 +0800129 /* No zero copy backend? Nothing to count. */
130 if (!zcopy)
131 return NULL;
132 ubufs = kmalloc(sizeof(*ubufs), GFP_KERNEL);
133 if (!ubufs)
134 return ERR_PTR(-ENOMEM);
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200135 atomic_set(&ubufs->refcount, 1);
Asias He28394002013-04-27 15:07:46 +0800136 init_waitqueue_head(&ubufs->wait);
137 ubufs->vq = vq;
138 return ubufs;
139}
140
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200141static int vhost_net_ubuf_put(struct vhost_net_ubuf_ref *ubufs)
Asias He28394002013-04-27 15:07:46 +0800142{
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200143 int r = atomic_sub_return(1, &ubufs->refcount);
144 if (unlikely(!r))
145 wake_up(&ubufs->wait);
146 return r;
Asias He28394002013-04-27 15:07:46 +0800147}
148
Asias Hefe729a52013-05-06 16:38:24 +0800149static void vhost_net_ubuf_put_and_wait(struct vhost_net_ubuf_ref *ubufs)
Asias He28394002013-04-27 15:07:46 +0800150{
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200151 vhost_net_ubuf_put(ubufs);
152 wait_event(ubufs->wait, !atomic_read(&ubufs->refcount));
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +0300153}
154
155static void vhost_net_ubuf_put_wait_and_free(struct vhost_net_ubuf_ref *ubufs)
156{
157 vhost_net_ubuf_put_and_wait(ubufs);
Asias He28394002013-04-27 15:07:46 +0800158 kfree(ubufs);
159}
160
Asias Heb1ad8492013-05-06 11:16:00 +0800161static void vhost_net_clear_ubuf_info(struct vhost_net *n)
162{
Asias Heb1ad8492013-05-06 11:16:00 +0800163 int i;
164
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300165 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
166 kfree(n->vqs[i].ubuf_info);
167 n->vqs[i].ubuf_info = NULL;
Asias Heb1ad8492013-05-06 11:16:00 +0800168 }
169}
170
Asias He0a1febf2013-06-05 21:17:38 +0800171static int vhost_net_set_ubuf_info(struct vhost_net *n)
Asias He28394002013-04-27 15:07:46 +0800172{
173 bool zcopy;
174 int i;
175
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300176 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
Asias Hefe729a52013-05-06 16:38:24 +0800177 zcopy = vhost_net_zcopy_mask & (0x1 << i);
Asias He28394002013-04-27 15:07:46 +0800178 if (!zcopy)
179 continue;
180 n->vqs[i].ubuf_info = kmalloc(sizeof(*n->vqs[i].ubuf_info) *
181 UIO_MAXIOV, GFP_KERNEL);
182 if (!n->vqs[i].ubuf_info)
183 goto err;
184 }
185 return 0;
186
187err:
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300188 vhost_net_clear_ubuf_info(n);
Asias He28394002013-04-27 15:07:46 +0800189 return -ENOMEM;
190}
191
Asias He0a1febf2013-06-05 21:17:38 +0800192static void vhost_net_vq_reset(struct vhost_net *n)
Asias He28394002013-04-27 15:07:46 +0800193{
194 int i;
195
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300196 vhost_net_clear_ubuf_info(n);
197
Asias He28394002013-04-27 15:07:46 +0800198 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
199 n->vqs[i].done_idx = 0;
200 n->vqs[i].upend_idx = 0;
201 n->vqs[i].ubufs = NULL;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300202 n->vqs[i].vhost_hlen = 0;
203 n->vqs[i].sock_hlen = 0;
Asias He28394002013-04-27 15:07:46 +0800204 }
205
206}
207
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000208static void vhost_net_tx_packet(struct vhost_net *net)
209{
210 ++net->tx_packets;
211 if (net->tx_packets < 1024)
212 return;
213 net->tx_packets = 0;
214 net->tx_zcopy_err = 0;
215}
216
217static void vhost_net_tx_err(struct vhost_net *net)
218{
219 ++net->tx_zcopy_err;
220}
221
222static bool vhost_net_tx_select_zcopy(struct vhost_net *net)
223{
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200224 /* TX flush waits for outstanding DMAs to be done.
225 * Don't start new DMAs.
226 */
227 return !net->tx_flush &&
228 net->tx_packets / 64 >= net->tx_zcopy_err;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000229}
230
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000231static bool vhost_sock_zcopy(struct socket *sock)
232{
233 return unlikely(experimental_zcopytx) &&
234 sock_flag(sock->sk, SOCK_ZEROCOPY);
235}
236
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000237/* In case of DMA done not in order in lower device driver for some reason.
238 * upend_idx is used to track end of used idx, done_idx is used to track head
239 * of used idx. Once lower device DMA done contiguously, we will signal KVM
240 * guest used idx.
241 */
Jason Wang094afe72013-09-02 16:40:56 +0800242static void vhost_zerocopy_signal_used(struct vhost_net *net,
243 struct vhost_virtqueue *vq)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000244{
Asias He28394002013-04-27 15:07:46 +0800245 struct vhost_net_virtqueue *nvq =
246 container_of(vq, struct vhost_net_virtqueue, vq);
Jason Wangc92112a2013-09-02 16:40:57 +0800247 int i, add;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000248 int j = 0;
249
Asias He28394002013-04-27 15:07:46 +0800250 for (i = nvq->done_idx; i != nvq->upend_idx; i = (i + 1) % UIO_MAXIOV) {
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000251 if (vq->heads[i].len == VHOST_DMA_FAILED_LEN)
252 vhost_net_tx_err(net);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000253 if (VHOST_DMA_IS_DONE(vq->heads[i].len)) {
254 vq->heads[i].len = VHOST_DMA_CLEAR_LEN;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000255 ++j;
256 } else
257 break;
258 }
Jason Wangc92112a2013-09-02 16:40:57 +0800259 while (j) {
260 add = min(UIO_MAXIOV - nvq->done_idx, j);
261 vhost_add_used_and_signal_n(vq->dev, vq,
262 &vq->heads[nvq->done_idx], add);
263 nvq->done_idx = (nvq->done_idx + add) % UIO_MAXIOV;
264 j -= add;
265 }
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000266}
267
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000268static void vhost_zerocopy_callback(struct ubuf_info *ubuf, bool success)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000269{
Asias Hefe729a52013-05-06 16:38:24 +0800270 struct vhost_net_ubuf_ref *ubufs = ubuf->ctx;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000271 struct vhost_virtqueue *vq = ubufs->vq;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200272 int cnt;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000273
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +0200274 rcu_read_lock_bh();
275
Jason Wang19c73b32013-09-02 16:41:00 +0800276 /* set len to mark this desc buffers done DMA */
277 vq->heads[ubuf->desc].len = success ?
278 VHOST_DMA_DONE_LEN : VHOST_DMA_FAILED_LEN;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200279 cnt = vhost_net_ubuf_put(ubufs);
Jason Wang19c73b32013-09-02 16:41:00 +0800280
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000281 /*
282 * Trigger polling thread if guest stopped submitting new buffers:
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200283 * in this case, the refcount after decrement will eventually reach 1.
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000284 * We also trigger polling periodically after each 16 packets
285 * (the value 16 here is more or less arbitrary, it's tuned to trigger
286 * less than 10% of times).
287 */
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200288 if (cnt <= 1 || !(cnt % 16))
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000289 vhost_poll_queue(&vq->poll);
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +0200290
291 rcu_read_unlock_bh();
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000292}
293
Jason Wang03088132016-03-04 06:24:53 -0500294static inline unsigned long busy_clock(void)
295{
296 return local_clock() >> 10;
297}
298
299static bool vhost_can_busy_poll(struct vhost_dev *dev,
300 unsigned long endtime)
301{
302 return likely(!need_resched()) &&
303 likely(!time_after(busy_clock(), endtime)) &&
304 likely(!signal_pending(current)) &&
305 !vhost_has_work(dev);
306}
307
Jason Wang8241a1e2016-06-01 01:56:33 -0400308static void vhost_net_disable_vq(struct vhost_net *n,
309 struct vhost_virtqueue *vq)
310{
311 struct vhost_net_virtqueue *nvq =
312 container_of(vq, struct vhost_net_virtqueue, vq);
313 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
314 if (!vq->private_data)
315 return;
316 vhost_poll_stop(poll);
317}
318
319static int vhost_net_enable_vq(struct vhost_net *n,
320 struct vhost_virtqueue *vq)
321{
322 struct vhost_net_virtqueue *nvq =
323 container_of(vq, struct vhost_net_virtqueue, vq);
324 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
325 struct socket *sock;
326
327 sock = vq->private_data;
328 if (!sock)
329 return 0;
330
331 return vhost_poll_start(poll, sock->file);
332}
333
Jason Wang03088132016-03-04 06:24:53 -0500334static int vhost_net_tx_get_vq_desc(struct vhost_net *net,
335 struct vhost_virtqueue *vq,
336 struct iovec iov[], unsigned int iov_size,
337 unsigned int *out_num, unsigned int *in_num)
338{
339 unsigned long uninitialized_var(endtime);
340 int r = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400341 out_num, in_num, NULL, NULL);
Jason Wang03088132016-03-04 06:24:53 -0500342
343 if (r == vq->num && vq->busyloop_timeout) {
344 preempt_disable();
345 endtime = busy_clock() + vq->busyloop_timeout;
346 while (vhost_can_busy_poll(vq->dev, endtime) &&
347 vhost_vq_avail_empty(vq->dev, vq))
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200348 cpu_relax();
Jason Wang03088132016-03-04 06:24:53 -0500349 preempt_enable();
350 r = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400351 out_num, in_num, NULL, NULL);
Jason Wang03088132016-03-04 06:24:53 -0500352 }
353
354 return r;
355}
356
Jason Wang0ed005c2017-01-18 15:02:02 +0800357static bool vhost_exceeds_maxpend(struct vhost_net *net)
358{
359 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
360 struct vhost_virtqueue *vq = &nvq->vq;
361
362 return (nvq->upend_idx + vq->num - VHOST_MAX_PEND) % UIO_MAXIOV
363 == nvq->done_idx;
364}
365
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000366/* Expects to be always run from workqueue - which acts as
367 * read-size critical section for our kind of RCU. */
368static void handle_tx(struct vhost_net *net)
369{
Asias He28394002013-04-27 15:07:46 +0800370 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300371 struct vhost_virtqueue *vq = &nvq->vq;
Al Viro98a527a2014-12-10 15:00:58 -0500372 unsigned out, in;
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300373 int head;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000374 struct msghdr msg = {
375 .msg_name = NULL,
376 .msg_namelen = 0,
377 .msg_control = NULL,
378 .msg_controllen = 0,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000379 .msg_flags = MSG_DONTWAIT,
380 };
381 size_t len, total_len = 0;
Jason Wang70181d512013-04-10 20:50:48 +0000382 int err;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000383 size_t hdr_size;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100384 struct socket *sock;
Asias Hefe729a52013-05-06 16:38:24 +0800385 struct vhost_net_ubuf_ref *uninitialized_var(ubufs);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200386 bool zcopy, zcopy_used;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100387
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000388 mutex_lock(&vq->mutex);
Asias He2e26af72013-05-07 14:54:33 +0800389 sock = vq->private_data;
390 if (!sock)
391 goto out;
392
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400393 if (!vq_iotlb_prefetch(vq))
394 goto out;
395
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300396 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000397
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300398 hdr_size = nvq->vhost_hlen;
Asias He28394002013-04-27 15:07:46 +0800399 zcopy = nvq->ubufs;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000400
401 for (;;) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000402 /* Release DMAs done buffers first */
403 if (zcopy)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000404 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000405
Jason Wangf7c6be42013-09-02 16:41:01 +0800406 /* If more outstanding DMAs, queue the work.
407 * Handle upend_idx wrap around
408 */
Jason Wang0ed005c2017-01-18 15:02:02 +0800409 if (unlikely(vhost_exceeds_maxpend(net)))
Jason Wangf7c6be42013-09-02 16:41:01 +0800410 break;
411
Jason Wang03088132016-03-04 06:24:53 -0500412 head = vhost_net_tx_get_vq_desc(net, vq, vq->iov,
413 ARRAY_SIZE(vq->iov),
414 &out, &in);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300415 /* On error, stop handling until the next kick. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +0300416 if (unlikely(head < 0))
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300417 break;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000418 /* Nothing new? Wait for eventfd to tell us they refilled. */
419 if (head == vq->num) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300420 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
421 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000422 continue;
423 }
424 break;
425 }
426 if (in) {
427 vq_err(vq, "Unexpected descriptor format for TX: "
428 "out %d, int %d\n", out, in);
429 break;
430 }
431 /* Skip header. TODO: support TSO. */
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000432 len = iov_length(vq->iov, out);
Al Viroc0371da2014-11-24 10:42:55 -0500433 iov_iter_init(&msg.msg_iter, WRITE, vq->iov, out, len);
Al Viro98a527a2014-12-10 15:00:58 -0500434 iov_iter_advance(&msg.msg_iter, hdr_size);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000435 /* Sanity check */
Al Viro01e97e62014-12-15 21:39:31 -0500436 if (!msg_data_left(&msg)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000437 vq_err(vq, "Unexpected header len for TX: "
438 "%zd expected %zd\n",
Al Viro98a527a2014-12-10 15:00:58 -0500439 len, hdr_size);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000440 break;
441 }
Al Viro01e97e62014-12-15 21:39:31 -0500442 len = msg_data_left(&msg);
Jason Wangce21a022013-09-02 16:40:59 +0800443
444 zcopy_used = zcopy && len >= VHOST_GOODCOPY_LEN
445 && (nvq->upend_idx + 1) % UIO_MAXIOV !=
446 nvq->done_idx
447 && vhost_net_tx_select_zcopy(net);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200448
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000449 /* use msg_control to pass vhost zerocopy ubuf info to skb */
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200450 if (zcopy_used) {
Jason Wangce21a022013-09-02 16:40:59 +0800451 struct ubuf_info *ubuf;
452 ubuf = nvq->ubuf_info + nvq->upend_idx;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000453
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300454 vq->heads[nvq->upend_idx].id = cpu_to_vhost32(vq, head);
Jason Wangce21a022013-09-02 16:40:59 +0800455 vq->heads[nvq->upend_idx].len = VHOST_DMA_IN_PROGRESS;
456 ubuf->callback = vhost_zerocopy_callback;
457 ubuf->ctx = nvq->ubufs;
458 ubuf->desc = nvq->upend_idx;
459 msg.msg_control = ubuf;
460 msg.msg_controllen = sizeof(ubuf);
461 ubufs = nvq->ubufs;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200462 atomic_inc(&ubufs->refcount);
Asias He28394002013-04-27 15:07:46 +0800463 nvq->upend_idx = (nvq->upend_idx + 1) % UIO_MAXIOV;
Jason Wangce21a022013-09-02 16:40:59 +0800464 } else {
Jason Wang4364d5f2013-06-05 15:40:46 +0800465 msg.msg_control = NULL;
Jason Wangce21a022013-09-02 16:40:59 +0800466 ubufs = NULL;
467 }
Jason Wang0ed005c2017-01-18 15:02:02 +0800468
469 total_len += len;
470 if (total_len < VHOST_NET_WEIGHT &&
471 !vhost_vq_avail_empty(&net->dev, vq) &&
472 likely(!vhost_exceeds_maxpend(net))) {
473 msg.msg_flags |= MSG_MORE;
474 } else {
475 msg.msg_flags &= ~MSG_MORE;
476 }
477
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000478 /* TODO: Check specific error and bomb out unless ENOBUFS? */
Ying Xue1b784142015-03-02 15:37:48 +0800479 err = sock->ops->sendmsg(sock, &msg, len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000480 if (unlikely(err < 0)) {
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200481 if (zcopy_used) {
Jason Wangce21a022013-09-02 16:40:59 +0800482 vhost_net_ubuf_put(ubufs);
Asias He28394002013-04-27 15:07:46 +0800483 nvq->upend_idx = ((unsigned)nvq->upend_idx - 1)
484 % UIO_MAXIOV;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000485 }
David Stevens8dd014a2010-07-27 18:52:21 +0300486 vhost_discard_vq_desc(vq, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000487 break;
488 }
489 if (err != len)
Michael S. Tsirkin95c0ec62010-06-24 17:10:25 +0300490 pr_debug("Truncated TX packet: "
491 " len %d != %zd\n", err, len);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200492 if (!zcopy_used)
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000493 vhost_add_used_and_signal(&net->dev, vq, head, 0);
Jason Wangc8fb2172012-05-02 11:42:41 +0800494 else
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000495 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000496 vhost_net_tx_packet(net);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000497 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
498 vhost_poll_queue(&vq->poll);
499 break;
500 }
501 }
Asias He2e26af72013-05-07 14:54:33 +0800502out:
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000503 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000504}
505
David Stevens8dd014a2010-07-27 18:52:21 +0300506static int peek_head_len(struct sock *sk)
507{
Jason Wang1576d982016-06-30 14:45:36 +0800508 struct socket *sock = sk->sk_socket;
David Stevens8dd014a2010-07-27 18:52:21 +0300509 struct sk_buff *head;
510 int len = 0;
Jason Wang783e3982011-01-17 16:11:17 +0800511 unsigned long flags;
David Stevens8dd014a2010-07-27 18:52:21 +0300512
Jason Wang1576d982016-06-30 14:45:36 +0800513 if (sock->ops->peek_len)
514 return sock->ops->peek_len(sock);
515
Jason Wang783e3982011-01-17 16:11:17 +0800516 spin_lock_irqsave(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300517 head = skb_peek(&sk->sk_receive_queue);
Basil Gorc53cff5e2012-05-03 22:55:23 +0000518 if (likely(head)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300519 len = head->len;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100520 if (skb_vlan_tag_present(head))
Basil Gorc53cff5e2012-05-03 22:55:23 +0000521 len += VLAN_HLEN;
522 }
523
Jason Wang783e3982011-01-17 16:11:17 +0800524 spin_unlock_irqrestore(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300525 return len;
526}
527
Jason Wang1576d982016-06-30 14:45:36 +0800528static int sk_has_rx_data(struct sock *sk)
529{
530 struct socket *sock = sk->sk_socket;
531
532 if (sock->ops->peek_len)
533 return sock->ops->peek_len(sock);
534
535 return skb_queue_empty(&sk->sk_receive_queue);
536}
537
Jason Wang03088132016-03-04 06:24:53 -0500538static int vhost_net_rx_peek_head_len(struct vhost_net *net, struct sock *sk)
539{
540 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
541 struct vhost_virtqueue *vq = &nvq->vq;
542 unsigned long uninitialized_var(endtime);
543 int len = peek_head_len(sk);
544
545 if (!len && vq->busyloop_timeout) {
546 /* Both tx vq and rx socket were polled here */
547 mutex_lock(&vq->mutex);
548 vhost_disable_notify(&net->dev, vq);
549
550 preempt_disable();
551 endtime = busy_clock() + vq->busyloop_timeout;
552
553 while (vhost_can_busy_poll(&net->dev, endtime) &&
Jason Wang1576d982016-06-30 14:45:36 +0800554 !sk_has_rx_data(sk) &&
Jason Wang03088132016-03-04 06:24:53 -0500555 vhost_vq_avail_empty(&net->dev, vq))
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200556 cpu_relax();
Jason Wang03088132016-03-04 06:24:53 -0500557
558 preempt_enable();
559
560 if (vhost_enable_notify(&net->dev, vq))
561 vhost_poll_queue(&vq->poll);
562 mutex_unlock(&vq->mutex);
563
564 len = peek_head_len(sk);
565 }
566
567 return len;
568}
569
David Stevens8dd014a2010-07-27 18:52:21 +0300570/* This is a multi-buffer version of vhost_get_desc, that works if
571 * vq has read descriptors only.
572 * @vq - the relevant virtqueue
573 * @datalen - data length we'll be reading
574 * @iovcount - returned count of io vectors we fill
575 * @log - vhost log
576 * @log_num - log offset
Jason Wang94249362011-01-17 16:11:08 +0800577 * @quota - headcount quota, 1 for big buffer
David Stevens8dd014a2010-07-27 18:52:21 +0300578 * returns number of buffer heads allocated, negative on error
579 */
580static int get_rx_bufs(struct vhost_virtqueue *vq,
581 struct vring_used_elem *heads,
582 int datalen,
583 unsigned *iovcount,
584 struct vhost_log *log,
Jason Wang94249362011-01-17 16:11:08 +0800585 unsigned *log_num,
586 unsigned int quota)
David Stevens8dd014a2010-07-27 18:52:21 +0300587{
588 unsigned int out, in;
589 int seg = 0;
590 int headcount = 0;
591 unsigned d;
592 int r, nlogs = 0;
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300593 /* len is always initialized before use since we are always called with
594 * datalen > 0.
595 */
596 u32 uninitialized_var(len);
David Stevens8dd014a2010-07-27 18:52:21 +0300597
Jason Wang94249362011-01-17 16:11:08 +0800598 while (datalen > 0 && headcount < quota) {
Jason Wange0e9b402010-09-14 23:53:05 +0800599 if (unlikely(seg >= UIO_MAXIOV)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300600 r = -ENOBUFS;
601 goto err;
602 }
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300603 r = vhost_get_vq_desc(vq, vq->iov + seg,
David Stevens8dd014a2010-07-27 18:52:21 +0300604 ARRAY_SIZE(vq->iov) - seg, &out,
605 &in, log, log_num);
Michael S. Tsirkina39ee442014-03-27 12:53:37 +0200606 if (unlikely(r < 0))
607 goto err;
608
609 d = r;
David Stevens8dd014a2010-07-27 18:52:21 +0300610 if (d == vq->num) {
611 r = 0;
612 goto err;
613 }
614 if (unlikely(out || in <= 0)) {
615 vq_err(vq, "unexpected descriptor format for RX: "
616 "out %d, in %d\n", out, in);
617 r = -EINVAL;
618 goto err;
619 }
620 if (unlikely(log)) {
621 nlogs += *log_num;
622 log += *log_num;
623 }
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300624 heads[headcount].id = cpu_to_vhost32(vq, d);
625 len = iov_length(vq->iov + seg, in);
626 heads[headcount].len = cpu_to_vhost32(vq, len);
627 datalen -= len;
David Stevens8dd014a2010-07-27 18:52:21 +0300628 ++headcount;
629 seg += in;
630 }
Michael S. Tsirkin99975cc2015-01-07 10:51:00 +0200631 heads[headcount - 1].len = cpu_to_vhost32(vq, len + datalen);
David Stevens8dd014a2010-07-27 18:52:21 +0300632 *iovcount = seg;
633 if (unlikely(log))
634 *log_num = nlogs;
Michael S. Tsirkind8316f32014-03-27 12:00:26 +0200635
636 /* Detect overrun */
637 if (unlikely(datalen > 0)) {
638 r = UIO_MAXIOV + 1;
639 goto err;
640 }
David Stevens8dd014a2010-07-27 18:52:21 +0300641 return headcount;
642err:
643 vhost_discard_vq_desc(vq, headcount);
644 return r;
645}
646
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000647/* Expects to be always run from workqueue - which acts as
648 * read-size critical section for our kind of RCU. */
Jason Wang94249362011-01-17 16:11:08 +0800649static void handle_rx(struct vhost_net *net)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000650{
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300651 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_RX];
652 struct vhost_virtqueue *vq = &nvq->vq;
David Stevens8dd014a2010-07-27 18:52:21 +0300653 unsigned uninitialized_var(in), log;
654 struct vhost_log *vq_log;
655 struct msghdr msg = {
656 .msg_name = NULL,
657 .msg_namelen = 0,
658 .msg_control = NULL, /* FIXME: get and handle RX aux data. */
659 .msg_controllen = 0,
David Stevens8dd014a2010-07-27 18:52:21 +0300660 .msg_flags = MSG_DONTWAIT,
661 };
Jason Wang0960b642015-02-15 16:35:17 +0800662 struct virtio_net_hdr hdr = {
663 .flags = 0,
664 .gso_type = VIRTIO_NET_HDR_GSO_NONE
David Stevens8dd014a2010-07-27 18:52:21 +0300665 };
David Stevens8dd014a2010-07-27 18:52:21 +0300666 size_t total_len = 0;
Michael S. Tsirkin910a5782012-10-24 20:37:51 +0200667 int err, mergeable;
668 s16 headcount;
David Stevens8dd014a2010-07-27 18:52:21 +0300669 size_t vhost_hlen, sock_hlen;
670 size_t vhost_len, sock_len;
Asias He2e26af72013-05-07 14:54:33 +0800671 struct socket *sock;
Al Viroba7438a2014-12-10 15:51:28 -0500672 struct iov_iter fixup;
Jason Wang0960b642015-02-15 16:35:17 +0800673 __virtio16 num_buffers;
David Stevens8dd014a2010-07-27 18:52:21 +0300674
David Stevens8dd014a2010-07-27 18:52:21 +0300675 mutex_lock(&vq->mutex);
Asias He2e26af72013-05-07 14:54:33 +0800676 sock = vq->private_data;
677 if (!sock)
678 goto out;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400679
680 if (!vq_iotlb_prefetch(vq))
681 goto out;
682
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300683 vhost_disable_notify(&net->dev, vq);
Jason Wang8241a1e2016-06-01 01:56:33 -0400684 vhost_net_disable_vq(net, vq);
Asias He2e26af72013-05-07 14:54:33 +0800685
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300686 vhost_hlen = nvq->vhost_hlen;
687 sock_hlen = nvq->sock_hlen;
David Stevens8dd014a2010-07-27 18:52:21 +0300688
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300689 vq_log = unlikely(vhost_has_feature(vq, VHOST_F_LOG_ALL)) ?
David Stevens8dd014a2010-07-27 18:52:21 +0300690 vq->log : NULL;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300691 mergeable = vhost_has_feature(vq, VIRTIO_NET_F_MRG_RXBUF);
David Stevens8dd014a2010-07-27 18:52:21 +0300692
Jason Wang03088132016-03-04 06:24:53 -0500693 while ((sock_len = vhost_net_rx_peek_head_len(net, sock->sk))) {
David Stevens8dd014a2010-07-27 18:52:21 +0300694 sock_len += sock_hlen;
695 vhost_len = sock_len + vhost_hlen;
696 headcount = get_rx_bufs(vq, vq->heads, vhost_len,
Jason Wang94249362011-01-17 16:11:08 +0800697 &in, vq_log, &log,
698 likely(mergeable) ? UIO_MAXIOV : 1);
David Stevens8dd014a2010-07-27 18:52:21 +0300699 /* On error, stop handling until the next kick. */
700 if (unlikely(headcount < 0))
Jason Wang8241a1e2016-06-01 01:56:33 -0400701 goto out;
Michael S. Tsirkind8316f32014-03-27 12:00:26 +0200702 /* On overrun, truncate and discard */
703 if (unlikely(headcount > UIO_MAXIOV)) {
Al Viroc0371da2014-11-24 10:42:55 -0500704 iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1);
Ying Xue1b784142015-03-02 15:37:48 +0800705 err = sock->ops->recvmsg(sock, &msg,
Michael S. Tsirkind8316f32014-03-27 12:00:26 +0200706 1, MSG_DONTWAIT | MSG_TRUNC);
707 pr_debug("Discarded rx packet: len %zd\n", sock_len);
708 continue;
709 }
David Stevens8dd014a2010-07-27 18:52:21 +0300710 /* OK, now we need to know about added descriptors. */
711 if (!headcount) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300712 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
David Stevens8dd014a2010-07-27 18:52:21 +0300713 /* They have slipped one in as we were
714 * doing that: check again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300715 vhost_disable_notify(&net->dev, vq);
David Stevens8dd014a2010-07-27 18:52:21 +0300716 continue;
717 }
718 /* Nothing new? Wait for eventfd to tell us
719 * they refilled. */
Jason Wang8241a1e2016-06-01 01:56:33 -0400720 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +0300721 }
722 /* We don't need to be notified again. */
Al Viroba7438a2014-12-10 15:51:28 -0500723 iov_iter_init(&msg.msg_iter, READ, vq->iov, in, vhost_len);
724 fixup = msg.msg_iter;
725 if (unlikely((vhost_hlen))) {
726 /* We will supply the header ourselves
727 * TODO: support TSO.
728 */
729 iov_iter_advance(&msg.msg_iter, vhost_hlen);
Al Viroba7438a2014-12-10 15:51:28 -0500730 }
Ying Xue1b784142015-03-02 15:37:48 +0800731 err = sock->ops->recvmsg(sock, &msg,
David Stevens8dd014a2010-07-27 18:52:21 +0300732 sock_len, MSG_DONTWAIT | MSG_TRUNC);
733 /* Userspace might have consumed the packet meanwhile:
734 * it's not supposed to do this usually, but might be hard
735 * to prevent. Discard data we got (if any) and keep going. */
736 if (unlikely(err != sock_len)) {
737 pr_debug("Discarded rx packet: "
738 " len %d, expected %zd\n", err, sock_len);
739 vhost_discard_vq_desc(vq, headcount);
740 continue;
741 }
Al Viroba7438a2014-12-10 15:51:28 -0500742 /* Supply virtio_net_hdr if VHOST_NET_F_VIRTIO_NET_HDR */
Michael S. Tsirkin4c5a8442015-02-25 15:19:28 +0100743 if (unlikely(vhost_hlen)) {
744 if (copy_to_iter(&hdr, sizeof(hdr),
745 &fixup) != sizeof(hdr)) {
746 vq_err(vq, "Unable to write vnet_hdr "
747 "at addr %p\n", vq->iov->iov_base);
Jason Wang8241a1e2016-06-01 01:56:33 -0400748 goto out;
Michael S. Tsirkin4c5a8442015-02-25 15:19:28 +0100749 }
750 } else {
751 /* Header came from socket; we'll need to patch
752 * ->num_buffers over if VIRTIO_NET_F_MRG_RXBUF
753 */
754 iov_iter_advance(&fixup, sizeof(hdr));
David Stevens8dd014a2010-07-27 18:52:21 +0300755 }
756 /* TODO: Should check and handle checksum. */
Michael S. Tsirkin5201aa42015-02-03 11:07:06 +0200757
Jason Wang0960b642015-02-15 16:35:17 +0800758 num_buffers = cpu_to_vhost16(vq, headcount);
Jason Wangcfbdab92011-01-17 16:10:59 +0800759 if (likely(mergeable) &&
Michael S. Tsirkin0d79a492015-02-25 15:20:01 +0100760 copy_to_iter(&num_buffers, sizeof num_buffers,
761 &fixup) != sizeof num_buffers) {
David Stevens8dd014a2010-07-27 18:52:21 +0300762 vq_err(vq, "Failed num_buffers write");
763 vhost_discard_vq_desc(vq, headcount);
Jason Wang8241a1e2016-06-01 01:56:33 -0400764 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +0300765 }
766 vhost_add_used_and_signal_n(&net->dev, vq, vq->heads,
767 headcount);
768 if (unlikely(vq_log))
769 vhost_log_write(vq, vq_log, log, vhost_len);
770 total_len += vhost_len;
771 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
772 vhost_poll_queue(&vq->poll);
Jason Wang8241a1e2016-06-01 01:56:33 -0400773 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +0300774 }
775 }
Jason Wang8241a1e2016-06-01 01:56:33 -0400776 vhost_net_enable_vq(net, vq);
Asias He2e26af72013-05-07 14:54:33 +0800777out:
David Stevens8dd014a2010-07-27 18:52:21 +0300778 mutex_unlock(&vq->mutex);
David Stevens8dd014a2010-07-27 18:52:21 +0300779}
780
Tejun Heoc23f34452010-06-02 20:40:00 +0200781static void handle_tx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000782{
Tejun Heoc23f34452010-06-02 20:40:00 +0200783 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
784 poll.work);
785 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
786
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000787 handle_tx(net);
788}
789
Tejun Heoc23f34452010-06-02 20:40:00 +0200790static void handle_rx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000791{
Tejun Heoc23f34452010-06-02 20:40:00 +0200792 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
793 poll.work);
794 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
795
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000796 handle_rx(net);
797}
798
Tejun Heoc23f34452010-06-02 20:40:00 +0200799static void handle_tx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000800{
Tejun Heoc23f34452010-06-02 20:40:00 +0200801 struct vhost_net *net = container_of(work, struct vhost_net,
802 poll[VHOST_NET_VQ_TX].work);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000803 handle_tx(net);
804}
805
Tejun Heoc23f34452010-06-02 20:40:00 +0200806static void handle_rx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000807{
Tejun Heoc23f34452010-06-02 20:40:00 +0200808 struct vhost_net *net = container_of(work, struct vhost_net,
809 poll[VHOST_NET_VQ_RX].work);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000810 handle_rx(net);
811}
812
813static int vhost_net_open(struct inode *inode, struct file *f)
814{
Michael S. Tsirkin23cc5a92013-01-23 21:46:47 +0100815 struct vhost_net *n;
Tejun Heoc23f34452010-06-02 20:40:00 +0200816 struct vhost_dev *dev;
Asias He3ab2e422013-04-27 11:16:48 +0800817 struct vhost_virtqueue **vqs;
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +0800818 int i;
Tejun Heoc23f34452010-06-02 20:40:00 +0200819
Michael S. Tsirkin23cc5a92013-01-23 21:46:47 +0100820 n = kmalloc(sizeof *n, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
821 if (!n) {
822 n = vmalloc(sizeof *n);
823 if (!n)
824 return -ENOMEM;
825 }
Asias He3ab2e422013-04-27 11:16:48 +0800826 vqs = kmalloc(VHOST_NET_VQ_MAX * sizeof(*vqs), GFP_KERNEL);
827 if (!vqs) {
Romain Francoised04257b2014-06-12 10:42:34 +0200828 kvfree(n);
Asias He3ab2e422013-04-27 11:16:48 +0800829 return -ENOMEM;
830 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200831
832 dev = &n->dev;
Asias He3ab2e422013-04-27 11:16:48 +0800833 vqs[VHOST_NET_VQ_TX] = &n->vqs[VHOST_NET_VQ_TX].vq;
834 vqs[VHOST_NET_VQ_RX] = &n->vqs[VHOST_NET_VQ_RX].vq;
835 n->vqs[VHOST_NET_VQ_TX].vq.handle_kick = handle_tx_kick;
836 n->vqs[VHOST_NET_VQ_RX].vq.handle_kick = handle_rx_kick;
Asias He28394002013-04-27 15:07:46 +0800837 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
838 n->vqs[i].ubufs = NULL;
839 n->vqs[i].ubuf_info = NULL;
840 n->vqs[i].upend_idx = 0;
841 n->vqs[i].done_idx = 0;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300842 n->vqs[i].vhost_hlen = 0;
843 n->vqs[i].sock_hlen = 0;
Asias He28394002013-04-27 15:07:46 +0800844 }
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +0800845 vhost_dev_init(dev, vqs, VHOST_NET_VQ_MAX);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000846
Tejun Heoc23f34452010-06-02 20:40:00 +0200847 vhost_poll_init(n->poll + VHOST_NET_VQ_TX, handle_tx_net, POLLOUT, dev);
848 vhost_poll_init(n->poll + VHOST_NET_VQ_RX, handle_rx_net, POLLIN, dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000849
850 f->private_data = n;
851
852 return 0;
853}
854
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000855static struct socket *vhost_net_stop_vq(struct vhost_net *n,
856 struct vhost_virtqueue *vq)
857{
858 struct socket *sock;
859
860 mutex_lock(&vq->mutex);
Asias He22fa90c2013-05-07 14:54:36 +0800861 sock = vq->private_data;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000862 vhost_net_disable_vq(n, vq);
Asias He22fa90c2013-05-07 14:54:36 +0800863 vq->private_data = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000864 mutex_unlock(&vq->mutex);
865 return sock;
866}
867
868static void vhost_net_stop(struct vhost_net *n, struct socket **tx_sock,
869 struct socket **rx_sock)
870{
Asias He3ab2e422013-04-27 11:16:48 +0800871 *tx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_TX].vq);
872 *rx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_RX].vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000873}
874
875static void vhost_net_flush_vq(struct vhost_net *n, int index)
876{
877 vhost_poll_flush(n->poll + index);
Asias He3ab2e422013-04-27 11:16:48 +0800878 vhost_poll_flush(&n->vqs[index].vq.poll);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000879}
880
881static void vhost_net_flush(struct vhost_net *n)
882{
883 vhost_net_flush_vq(n, VHOST_NET_VQ_TX);
884 vhost_net_flush_vq(n, VHOST_NET_VQ_RX);
Asias He28394002013-04-27 15:07:46 +0800885 if (n->vqs[VHOST_NET_VQ_TX].ubufs) {
Asias He3ab2e422013-04-27 11:16:48 +0800886 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200887 n->tx_flush = true;
Asias He3ab2e422013-04-27 11:16:48 +0800888 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200889 /* Wait for all lower device DMAs done. */
Asias Hefe729a52013-05-06 16:38:24 +0800890 vhost_net_ubuf_put_and_wait(n->vqs[VHOST_NET_VQ_TX].ubufs);
Asias He3ab2e422013-04-27 11:16:48 +0800891 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200892 n->tx_flush = false;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200893 atomic_set(&n->vqs[VHOST_NET_VQ_TX].ubufs->refcount, 1);
Asias He3ab2e422013-04-27 11:16:48 +0800894 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200895 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000896}
897
898static int vhost_net_release(struct inode *inode, struct file *f)
899{
900 struct vhost_net *n = f->private_data;
901 struct socket *tx_sock;
902 struct socket *rx_sock;
903
904 vhost_net_stop(n, &tx_sock, &rx_sock);
905 vhost_net_flush(n);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000906 vhost_dev_stop(&n->dev);
Michael S. Tsirkinea5d4042011-11-27 19:05:58 +0200907 vhost_dev_cleanup(&n->dev, false);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300908 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000909 if (tx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -0500910 sockfd_put(tx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000911 if (rx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -0500912 sockfd_put(rx_sock);
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +0200913 /* Make sure no callbacks are outstanding */
914 synchronize_rcu_bh();
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000915 /* We do an extra flush before freeing memory,
916 * since jobs can re-queue themselves. */
917 vhost_net_flush(n);
Asias He3ab2e422013-04-27 11:16:48 +0800918 kfree(n->dev.vqs);
Romain Francoised04257b2014-06-12 10:42:34 +0200919 kvfree(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000920 return 0;
921}
922
923static struct socket *get_raw_socket(int fd)
924{
925 struct {
926 struct sockaddr_ll sa;
927 char buf[MAX_ADDR_LEN];
928 } uaddr;
929 int uaddr_len = sizeof uaddr, r;
930 struct socket *sock = sockfd_lookup(fd, &r);
Krishna Kumard47effe2011-03-01 17:06:37 +0530931
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000932 if (!sock)
933 return ERR_PTR(-ENOTSOCK);
934
935 /* Parameter checking */
936 if (sock->sk->sk_type != SOCK_RAW) {
937 r = -ESOCKTNOSUPPORT;
938 goto err;
939 }
940
941 r = sock->ops->getname(sock, (struct sockaddr *)&uaddr.sa,
942 &uaddr_len, 0);
943 if (r)
944 goto err;
945
946 if (uaddr.sa.sll_family != AF_PACKET) {
947 r = -EPFNOSUPPORT;
948 goto err;
949 }
950 return sock;
951err:
Al Viro09aaacf2014-03-05 20:39:00 -0500952 sockfd_put(sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000953 return ERR_PTR(r);
954}
955
Arnd Bergmann501c7742010-02-18 05:46:50 +0000956static struct socket *get_tap_socket(int fd)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000957{
958 struct file *file = fget(fd);
959 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +0530960
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000961 if (!file)
962 return ERR_PTR(-EBADF);
963 sock = tun_get_socket(file);
Arnd Bergmann501c7742010-02-18 05:46:50 +0000964 if (!IS_ERR(sock))
965 return sock;
Sainath Grandhi635b8c82017-02-10 16:03:47 -0800966 sock = tap_get_socket(file);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000967 if (IS_ERR(sock))
968 fput(file);
969 return sock;
970}
971
972static struct socket *get_socket(int fd)
973{
974 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +0530975
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000976 /* special case to disable backend */
977 if (fd == -1)
978 return NULL;
979 sock = get_raw_socket(fd);
980 if (!IS_ERR(sock))
981 return sock;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000982 sock = get_tap_socket(fd);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000983 if (!IS_ERR(sock))
984 return sock;
985 return ERR_PTR(-ENOTSOCK);
986}
987
988static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
989{
990 struct socket *sock, *oldsock;
991 struct vhost_virtqueue *vq;
Asias He28394002013-04-27 15:07:46 +0800992 struct vhost_net_virtqueue *nvq;
Asias Hefe729a52013-05-06 16:38:24 +0800993 struct vhost_net_ubuf_ref *ubufs, *oldubufs = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000994 int r;
995
996 mutex_lock(&n->dev.mutex);
997 r = vhost_dev_check_owner(&n->dev);
998 if (r)
999 goto err;
1000
1001 if (index >= VHOST_NET_VQ_MAX) {
1002 r = -ENOBUFS;
1003 goto err;
1004 }
Asias He3ab2e422013-04-27 11:16:48 +08001005 vq = &n->vqs[index].vq;
Asias He28394002013-04-27 15:07:46 +08001006 nvq = &n->vqs[index];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001007 mutex_lock(&vq->mutex);
1008
1009 /* Verify that ring has been setup correctly. */
1010 if (!vhost_vq_access_ok(vq)) {
1011 r = -EFAULT;
Jeff Dike1dace8c2010-03-04 16:10:14 -05001012 goto err_vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001013 }
1014 sock = get_socket(fd);
1015 if (IS_ERR(sock)) {
1016 r = PTR_ERR(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -05001017 goto err_vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001018 }
1019
1020 /* start polling new socket */
Asias He22fa90c2013-05-07 14:54:36 +08001021 oldsock = vq->private_data;
David S. Miller11fe8832010-07-20 18:25:24 -07001022 if (sock != oldsock) {
Asias Hefe729a52013-05-06 16:38:24 +08001023 ubufs = vhost_net_ubuf_alloc(vq,
1024 sock && vhost_sock_zcopy(sock));
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001025 if (IS_ERR(ubufs)) {
1026 r = PTR_ERR(ubufs);
1027 goto err_ubufs;
1028 }
Jason Wang692a9982013-01-28 01:05:17 +00001029
Krishna Kumard47effe2011-03-01 17:06:37 +05301030 vhost_net_disable_vq(n, vq);
Asias He22fa90c2013-05-07 14:54:36 +08001031 vq->private_data = sock;
Greg Kurz80f7d032016-02-16 15:59:44 +01001032 r = vhost_vq_init_access(vq);
Jason Wangf59281d2011-06-21 18:04:27 +08001033 if (r)
Jason Wang692a9982013-01-28 01:05:17 +00001034 goto err_used;
Jason Wang2b8b3282013-01-28 01:05:18 +00001035 r = vhost_net_enable_vq(n, vq);
1036 if (r)
1037 goto err_used;
Jason Wang692a9982013-01-28 01:05:17 +00001038
Asias He28394002013-04-27 15:07:46 +08001039 oldubufs = nvq->ubufs;
1040 nvq->ubufs = ubufs;
Michael S. Tsirkin64e9a9b2012-12-03 07:31:51 +00001041
1042 n->tx_packets = 0;
1043 n->tx_zcopy_err = 0;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001044 n->tx_flush = false;
Jeff Dikedd1f4072010-03-04 16:10:14 -05001045 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001046
Michael S. Tsirkin1680e902010-07-15 15:19:12 +03001047 mutex_unlock(&vq->mutex);
1048
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001049 if (oldubufs) {
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +03001050 vhost_net_ubuf_put_wait_and_free(oldubufs);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001051 mutex_lock(&vq->mutex);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +00001052 vhost_zerocopy_signal_used(n, vq);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001053 mutex_unlock(&vq->mutex);
1054 }
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001055
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001056 if (oldsock) {
1057 vhost_net_flush_vq(n, index);
Al Viro09aaacf2014-03-05 20:39:00 -05001058 sockfd_put(oldsock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001059 }
Jeff Dike1dace8c2010-03-04 16:10:14 -05001060
Michael S. Tsirkin1680e902010-07-15 15:19:12 +03001061 mutex_unlock(&n->dev.mutex);
1062 return 0;
1063
Jason Wang692a9982013-01-28 01:05:17 +00001064err_used:
Asias He22fa90c2013-05-07 14:54:36 +08001065 vq->private_data = oldsock;
Jason Wang692a9982013-01-28 01:05:17 +00001066 vhost_net_enable_vq(n, vq);
1067 if (ubufs)
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +03001068 vhost_net_ubuf_put_wait_and_free(ubufs);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001069err_ubufs:
Al Viro09aaacf2014-03-05 20:39:00 -05001070 sockfd_put(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -05001071err_vq:
1072 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001073err:
1074 mutex_unlock(&n->dev.mutex);
1075 return r;
1076}
1077
1078static long vhost_net_reset_owner(struct vhost_net *n)
1079{
1080 struct socket *tx_sock = NULL;
1081 struct socket *rx_sock = NULL;
1082 long err;
Jason Wanga9709d62016-06-23 02:04:31 -04001083 struct vhost_umem *umem;
Krishna Kumard47effe2011-03-01 17:06:37 +05301084
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001085 mutex_lock(&n->dev.mutex);
1086 err = vhost_dev_check_owner(&n->dev);
1087 if (err)
1088 goto done;
Jason Wanga9709d62016-06-23 02:04:31 -04001089 umem = vhost_dev_reset_owner_prepare();
1090 if (!umem) {
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +03001091 err = -ENOMEM;
1092 goto done;
1093 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001094 vhost_net_stop(n, &tx_sock, &rx_sock);
1095 vhost_net_flush(n);
Jason Wanga9709d62016-06-23 02:04:31 -04001096 vhost_dev_reset_owner(&n->dev, umem);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001097 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001098done:
1099 mutex_unlock(&n->dev.mutex);
1100 if (tx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001101 sockfd_put(tx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001102 if (rx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001103 sockfd_put(rx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001104 return err;
1105}
1106
1107static int vhost_net_set_features(struct vhost_net *n, u64 features)
1108{
David Stevens8dd014a2010-07-27 18:52:21 +03001109 size_t vhost_hlen, sock_hlen, hdr_len;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001110 int i;
David Stevens8dd014a2010-07-27 18:52:21 +03001111
Michael S. Tsirkine4fca7d2014-10-24 14:23:52 +03001112 hdr_len = (features & ((1ULL << VIRTIO_NET_F_MRG_RXBUF) |
1113 (1ULL << VIRTIO_F_VERSION_1))) ?
David Stevens8dd014a2010-07-27 18:52:21 +03001114 sizeof(struct virtio_net_hdr_mrg_rxbuf) :
1115 sizeof(struct virtio_net_hdr);
1116 if (features & (1 << VHOST_NET_F_VIRTIO_NET_HDR)) {
1117 /* vhost provides vnet_hdr */
1118 vhost_hlen = hdr_len;
1119 sock_hlen = 0;
1120 } else {
1121 /* socket provides vnet_hdr */
1122 vhost_hlen = 0;
1123 sock_hlen = hdr_len;
1124 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001125 mutex_lock(&n->dev.mutex);
1126 if ((features & (1 << VHOST_F_LOG_ALL)) &&
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001127 !vhost_log_access_ok(&n->dev))
1128 goto out_unlock;
1129
1130 if ((features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))) {
1131 if (vhost_init_device_iotlb(&n->dev, true))
1132 goto out_unlock;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001133 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001134
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001135 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +08001136 mutex_lock(&n->vqs[i].vq.mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001137 n->vqs[i].vq.acked_features = features;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001138 n->vqs[i].vhost_hlen = vhost_hlen;
1139 n->vqs[i].sock_hlen = sock_hlen;
Asias He3ab2e422013-04-27 11:16:48 +08001140 mutex_unlock(&n->vqs[i].vq.mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001141 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001142 mutex_unlock(&n->dev.mutex);
1143 return 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001144
1145out_unlock:
1146 mutex_unlock(&n->dev.mutex);
1147 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001148}
1149
Asias Heb1ad8492013-05-06 11:16:00 +08001150static long vhost_net_set_owner(struct vhost_net *n)
1151{
1152 int r;
1153
1154 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin05c05352013-06-06 15:20:39 +03001155 if (vhost_dev_has_owner(&n->dev)) {
1156 r = -EBUSY;
1157 goto out;
1158 }
Asias Heb1ad8492013-05-06 11:16:00 +08001159 r = vhost_net_set_ubuf_info(n);
1160 if (r)
1161 goto out;
1162 r = vhost_dev_set_owner(&n->dev);
1163 if (r)
1164 vhost_net_clear_ubuf_info(n);
1165 vhost_net_flush(n);
1166out:
1167 mutex_unlock(&n->dev.mutex);
1168 return r;
1169}
1170
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001171static long vhost_net_ioctl(struct file *f, unsigned int ioctl,
1172 unsigned long arg)
1173{
1174 struct vhost_net *n = f->private_data;
1175 void __user *argp = (void __user *)arg;
1176 u64 __user *featurep = argp;
1177 struct vhost_vring_file backend;
1178 u64 features;
1179 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301180
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001181 switch (ioctl) {
1182 case VHOST_NET_SET_BACKEND:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001183 if (copy_from_user(&backend, argp, sizeof backend))
1184 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001185 return vhost_net_set_backend(n, backend.index, backend.fd);
1186 case VHOST_GET_FEATURES:
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001187 features = VHOST_NET_FEATURES;
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001188 if (copy_to_user(featurep, &features, sizeof features))
1189 return -EFAULT;
1190 return 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001191 case VHOST_SET_FEATURES:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001192 if (copy_from_user(&features, featurep, sizeof features))
1193 return -EFAULT;
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001194 if (features & ~VHOST_NET_FEATURES)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001195 return -EOPNOTSUPP;
1196 return vhost_net_set_features(n, features);
1197 case VHOST_RESET_OWNER:
1198 return vhost_net_reset_owner(n);
Asias Heb1ad8492013-05-06 11:16:00 +08001199 case VHOST_SET_OWNER:
1200 return vhost_net_set_owner(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001201 default:
1202 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001203 r = vhost_dev_ioctl(&n->dev, ioctl, argp);
1204 if (r == -ENOIOCTLCMD)
1205 r = vhost_vring_ioctl(&n->dev, ioctl, argp);
1206 else
1207 vhost_net_flush(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001208 mutex_unlock(&n->dev.mutex);
1209 return r;
1210 }
1211}
1212
1213#ifdef CONFIG_COMPAT
1214static long vhost_net_compat_ioctl(struct file *f, unsigned int ioctl,
1215 unsigned long arg)
1216{
1217 return vhost_net_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1218}
1219#endif
1220
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001221static ssize_t vhost_net_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
1222{
1223 struct file *file = iocb->ki_filp;
1224 struct vhost_net *n = file->private_data;
1225 struct vhost_dev *dev = &n->dev;
1226 int noblock = file->f_flags & O_NONBLOCK;
1227
1228 return vhost_chr_read_iter(dev, to, noblock);
1229}
1230
1231static ssize_t vhost_net_chr_write_iter(struct kiocb *iocb,
1232 struct iov_iter *from)
1233{
1234 struct file *file = iocb->ki_filp;
1235 struct vhost_net *n = file->private_data;
1236 struct vhost_dev *dev = &n->dev;
1237
1238 return vhost_chr_write_iter(dev, from);
1239}
1240
1241static unsigned int vhost_net_chr_poll(struct file *file, poll_table *wait)
1242{
1243 struct vhost_net *n = file->private_data;
1244 struct vhost_dev *dev = &n->dev;
1245
1246 return vhost_chr_poll(file, dev, wait);
1247}
1248
Tobias Klauser373a83a2010-05-17 15:12:49 +02001249static const struct file_operations vhost_net_fops = {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001250 .owner = THIS_MODULE,
1251 .release = vhost_net_release,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001252 .read_iter = vhost_net_chr_read_iter,
1253 .write_iter = vhost_net_chr_write_iter,
1254 .poll = vhost_net_chr_poll,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001255 .unlocked_ioctl = vhost_net_ioctl,
1256#ifdef CONFIG_COMPAT
1257 .compat_ioctl = vhost_net_compat_ioctl,
1258#endif
1259 .open = vhost_net_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001260 .llseek = noop_llseek,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001261};
1262
1263static struct miscdevice vhost_net_misc = {
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001264 .minor = VHOST_NET_MINOR,
1265 .name = "vhost-net",
1266 .fops = &vhost_net_fops,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001267};
1268
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001269static int vhost_net_init(void)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001270{
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001271 if (experimental_zcopytx)
Asias Hefe729a52013-05-06 16:38:24 +08001272 vhost_net_enable_zcopy(VHOST_NET_VQ_TX);
Tejun Heoc23f34452010-06-02 20:40:00 +02001273 return misc_register(&vhost_net_misc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001274}
1275module_init(vhost_net_init);
1276
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001277static void vhost_net_exit(void)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001278{
1279 misc_deregister(&vhost_net_misc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001280}
1281module_exit(vhost_net_exit);
1282
1283MODULE_VERSION("0.0.1");
1284MODULE_LICENSE("GPL v2");
1285MODULE_AUTHOR("Michael S. Tsirkin");
1286MODULE_DESCRIPTION("Host kernel accelerator for virtio net");
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001287MODULE_ALIAS_MISCDEV(VHOST_NET_MINOR);
1288MODULE_ALIAS("devname:vhost-net");