blob: c42e9c30513417815ccc72a47ed298b11c0d5211 [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>
Michael S. Tsirkin23cc5a92013-01-23 21:46:47 +010020#include <linux/vmalloc.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000021
22#include <linux/net.h>
23#include <linux/if_packet.h>
24#include <linux/if_arp.h>
25#include <linux/if_tun.h>
Arnd Bergmann501c7742010-02-18 05:46:50 +000026#include <linux/if_macvlan.h>
Basil Gorc53cff5e2012-05-03 22:55:23 +000027#include <linux/if_vlan.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000028
29#include <net/sock.h>
30
31#include "vhost.h"
32
Michael S. Tsirkinf9611c42012-12-06 14:56:00 +020033static int experimental_zcopytx = 1;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000034module_param(experimental_zcopytx, int, 0444);
Michael S. Tsirkinf9611c42012-12-06 14:56:00 +020035MODULE_PARM_DESC(experimental_zcopytx, "Enable Zero Copy TX;"
36 " 1 -Enable; 0 - Disable");
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000037
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000038/* Max number of bytes transferred before requeueing the job.
39 * Using this limit prevents one virtqueue from starving others. */
40#define VHOST_NET_WEIGHT 0x80000
41
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000042/* MAX number of TX used buffers for outstanding zerocopy */
43#define VHOST_MAX_PEND 128
44#define VHOST_GOODCOPY_LEN 256
45
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000046/*
47 * For transmit, used buffer len is unused; we override it to track buffer
48 * status internally; used for zerocopy tx only.
49 */
50/* Lower device DMA failed */
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030051#define VHOST_DMA_FAILED_LEN ((__force __virtio32)3)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000052/* Lower device DMA done */
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030053#define VHOST_DMA_DONE_LEN ((__force __virtio32)2)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000054/* Lower device DMA in progress */
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030055#define VHOST_DMA_IN_PROGRESS ((__force __virtio32)1)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000056/* Buffer unused */
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030057#define VHOST_DMA_CLEAR_LEN ((__force __virtio32)0)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000058
Michael S. Tsirkinbf995732014-10-24 11:49:27 +030059#define VHOST_DMA_IS_DONE(len) ((__force u32)(len) >= (__force u32)VHOST_DMA_DONE_LEN)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000060
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000061enum {
Asias He8570a6e2013-05-06 16:38:20 +080062 VHOST_NET_FEATURES = VHOST_FEATURES |
63 (1ULL << VHOST_NET_F_VIRTIO_NET_HDR) |
Jason Wang6b1e6cc2016-06-23 02:04:32 -040064 (1ULL << VIRTIO_NET_F_MRG_RXBUF) |
65 (1ULL << VIRTIO_F_IOMMU_PLATFORM)
Asias He8570a6e2013-05-06 16:38:20 +080066};
67
68enum {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000069 VHOST_NET_VQ_RX = 0,
70 VHOST_NET_VQ_TX = 1,
71 VHOST_NET_VQ_MAX = 2,
72};
73
Asias Hefe729a52013-05-06 16:38:24 +080074struct vhost_net_ubuf_ref {
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +020075 /* refcount follows semantics similar to kref:
76 * 0: object is released
77 * 1: no outstanding ubufs
78 * >1: outstanding ubufs
79 */
80 atomic_t refcount;
Asias He28394002013-04-27 15:07:46 +080081 wait_queue_head_t wait;
82 struct vhost_virtqueue *vq;
83};
84
Asias He3ab2e422013-04-27 11:16:48 +080085struct vhost_net_virtqueue {
86 struct vhost_virtqueue vq;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +030087 size_t vhost_hlen;
88 size_t sock_hlen;
Asias He28394002013-04-27 15:07:46 +080089 /* vhost zerocopy support fields below: */
90 /* last used idx for outstanding DMA zerocopy buffers */
91 int upend_idx;
92 /* first used idx for DMA done zerocopy buffers */
93 int done_idx;
94 /* an array of userspace buffers info */
95 struct ubuf_info *ubuf_info;
96 /* Reference counting for outstanding ubufs.
97 * Protected by vq mutex. Writers must also take device mutex. */
Asias Hefe729a52013-05-06 16:38:24 +080098 struct vhost_net_ubuf_ref *ubufs;
Asias He3ab2e422013-04-27 11:16:48 +080099};
100
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000101struct vhost_net {
102 struct vhost_dev dev;
Asias He3ab2e422013-04-27 11:16:48 +0800103 struct vhost_net_virtqueue vqs[VHOST_NET_VQ_MAX];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000104 struct vhost_poll poll[VHOST_NET_VQ_MAX];
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000105 /* Number of TX recently submitted.
106 * Protected by tx vq lock. */
107 unsigned tx_packets;
108 /* Number of times zerocopy TX recently failed.
109 * Protected by tx vq lock. */
110 unsigned tx_zcopy_err;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200111 /* Flush in progress. Protected by tx vq lock. */
112 bool tx_flush;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000113};
114
Asias Hefe729a52013-05-06 16:38:24 +0800115static unsigned vhost_net_zcopy_mask __read_mostly;
Asias He28394002013-04-27 15:07:46 +0800116
Asias Hefe729a52013-05-06 16:38:24 +0800117static void vhost_net_enable_zcopy(int vq)
Asias He28394002013-04-27 15:07:46 +0800118{
Asias Hefe729a52013-05-06 16:38:24 +0800119 vhost_net_zcopy_mask |= 0x1 << vq;
Asias He28394002013-04-27 15:07:46 +0800120}
121
Asias Hefe729a52013-05-06 16:38:24 +0800122static struct vhost_net_ubuf_ref *
123vhost_net_ubuf_alloc(struct vhost_virtqueue *vq, bool zcopy)
Asias He28394002013-04-27 15:07:46 +0800124{
Asias Hefe729a52013-05-06 16:38:24 +0800125 struct vhost_net_ubuf_ref *ubufs;
Asias He28394002013-04-27 15:07:46 +0800126 /* No zero copy backend? Nothing to count. */
127 if (!zcopy)
128 return NULL;
129 ubufs = kmalloc(sizeof(*ubufs), GFP_KERNEL);
130 if (!ubufs)
131 return ERR_PTR(-ENOMEM);
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200132 atomic_set(&ubufs->refcount, 1);
Asias He28394002013-04-27 15:07:46 +0800133 init_waitqueue_head(&ubufs->wait);
134 ubufs->vq = vq;
135 return ubufs;
136}
137
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200138static int vhost_net_ubuf_put(struct vhost_net_ubuf_ref *ubufs)
Asias He28394002013-04-27 15:07:46 +0800139{
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200140 int r = atomic_sub_return(1, &ubufs->refcount);
141 if (unlikely(!r))
142 wake_up(&ubufs->wait);
143 return r;
Asias He28394002013-04-27 15:07:46 +0800144}
145
Asias Hefe729a52013-05-06 16:38:24 +0800146static void vhost_net_ubuf_put_and_wait(struct vhost_net_ubuf_ref *ubufs)
Asias He28394002013-04-27 15:07:46 +0800147{
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200148 vhost_net_ubuf_put(ubufs);
149 wait_event(ubufs->wait, !atomic_read(&ubufs->refcount));
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +0300150}
151
152static void vhost_net_ubuf_put_wait_and_free(struct vhost_net_ubuf_ref *ubufs)
153{
154 vhost_net_ubuf_put_and_wait(ubufs);
Asias He28394002013-04-27 15:07:46 +0800155 kfree(ubufs);
156}
157
Asias Heb1ad8492013-05-06 11:16:00 +0800158static void vhost_net_clear_ubuf_info(struct vhost_net *n)
159{
Asias Heb1ad8492013-05-06 11:16:00 +0800160 int i;
161
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300162 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
163 kfree(n->vqs[i].ubuf_info);
164 n->vqs[i].ubuf_info = NULL;
Asias Heb1ad8492013-05-06 11:16:00 +0800165 }
166}
167
Asias He0a1febf2013-06-05 21:17:38 +0800168static int vhost_net_set_ubuf_info(struct vhost_net *n)
Asias He28394002013-04-27 15:07:46 +0800169{
170 bool zcopy;
171 int i;
172
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300173 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
Asias Hefe729a52013-05-06 16:38:24 +0800174 zcopy = vhost_net_zcopy_mask & (0x1 << i);
Asias He28394002013-04-27 15:07:46 +0800175 if (!zcopy)
176 continue;
177 n->vqs[i].ubuf_info = kmalloc(sizeof(*n->vqs[i].ubuf_info) *
178 UIO_MAXIOV, GFP_KERNEL);
179 if (!n->vqs[i].ubuf_info)
180 goto err;
181 }
182 return 0;
183
184err:
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300185 vhost_net_clear_ubuf_info(n);
Asias He28394002013-04-27 15:07:46 +0800186 return -ENOMEM;
187}
188
Asias He0a1febf2013-06-05 21:17:38 +0800189static void vhost_net_vq_reset(struct vhost_net *n)
Asias He28394002013-04-27 15:07:46 +0800190{
191 int i;
192
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300193 vhost_net_clear_ubuf_info(n);
194
Asias He28394002013-04-27 15:07:46 +0800195 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
196 n->vqs[i].done_idx = 0;
197 n->vqs[i].upend_idx = 0;
198 n->vqs[i].ubufs = NULL;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300199 n->vqs[i].vhost_hlen = 0;
200 n->vqs[i].sock_hlen = 0;
Asias He28394002013-04-27 15:07:46 +0800201 }
202
203}
204
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000205static void vhost_net_tx_packet(struct vhost_net *net)
206{
207 ++net->tx_packets;
208 if (net->tx_packets < 1024)
209 return;
210 net->tx_packets = 0;
211 net->tx_zcopy_err = 0;
212}
213
214static void vhost_net_tx_err(struct vhost_net *net)
215{
216 ++net->tx_zcopy_err;
217}
218
219static bool vhost_net_tx_select_zcopy(struct vhost_net *net)
220{
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200221 /* TX flush waits for outstanding DMAs to be done.
222 * Don't start new DMAs.
223 */
224 return !net->tx_flush &&
225 net->tx_packets / 64 >= net->tx_zcopy_err;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000226}
227
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000228static bool vhost_sock_zcopy(struct socket *sock)
229{
230 return unlikely(experimental_zcopytx) &&
231 sock_flag(sock->sk, SOCK_ZEROCOPY);
232}
233
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000234/* In case of DMA done not in order in lower device driver for some reason.
235 * upend_idx is used to track end of used idx, done_idx is used to track head
236 * of used idx. Once lower device DMA done contiguously, we will signal KVM
237 * guest used idx.
238 */
Jason Wang094afe72013-09-02 16:40:56 +0800239static void vhost_zerocopy_signal_used(struct vhost_net *net,
240 struct vhost_virtqueue *vq)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000241{
Asias He28394002013-04-27 15:07:46 +0800242 struct vhost_net_virtqueue *nvq =
243 container_of(vq, struct vhost_net_virtqueue, vq);
Jason Wangc92112a2013-09-02 16:40:57 +0800244 int i, add;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000245 int j = 0;
246
Asias He28394002013-04-27 15:07:46 +0800247 for (i = nvq->done_idx; i != nvq->upend_idx; i = (i + 1) % UIO_MAXIOV) {
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000248 if (vq->heads[i].len == VHOST_DMA_FAILED_LEN)
249 vhost_net_tx_err(net);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000250 if (VHOST_DMA_IS_DONE(vq->heads[i].len)) {
251 vq->heads[i].len = VHOST_DMA_CLEAR_LEN;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000252 ++j;
253 } else
254 break;
255 }
Jason Wangc92112a2013-09-02 16:40:57 +0800256 while (j) {
257 add = min(UIO_MAXIOV - nvq->done_idx, j);
258 vhost_add_used_and_signal_n(vq->dev, vq,
259 &vq->heads[nvq->done_idx], add);
260 nvq->done_idx = (nvq->done_idx + add) % UIO_MAXIOV;
261 j -= add;
262 }
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000263}
264
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000265static void vhost_zerocopy_callback(struct ubuf_info *ubuf, bool success)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000266{
Asias Hefe729a52013-05-06 16:38:24 +0800267 struct vhost_net_ubuf_ref *ubufs = ubuf->ctx;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000268 struct vhost_virtqueue *vq = ubufs->vq;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200269 int cnt;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000270
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +0200271 rcu_read_lock_bh();
272
Jason Wang19c73b32013-09-02 16:41:00 +0800273 /* set len to mark this desc buffers done DMA */
274 vq->heads[ubuf->desc].len = success ?
275 VHOST_DMA_DONE_LEN : VHOST_DMA_FAILED_LEN;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200276 cnt = vhost_net_ubuf_put(ubufs);
Jason Wang19c73b32013-09-02 16:41:00 +0800277
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000278 /*
279 * Trigger polling thread if guest stopped submitting new buffers:
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200280 * in this case, the refcount after decrement will eventually reach 1.
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000281 * We also trigger polling periodically after each 16 packets
282 * (the value 16 here is more or less arbitrary, it's tuned to trigger
283 * less than 10% of times).
284 */
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200285 if (cnt <= 1 || !(cnt % 16))
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000286 vhost_poll_queue(&vq->poll);
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +0200287
288 rcu_read_unlock_bh();
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000289}
290
Jason Wang03088132016-03-04 06:24:53 -0500291static inline unsigned long busy_clock(void)
292{
293 return local_clock() >> 10;
294}
295
296static bool vhost_can_busy_poll(struct vhost_dev *dev,
297 unsigned long endtime)
298{
299 return likely(!need_resched()) &&
300 likely(!time_after(busy_clock(), endtime)) &&
301 likely(!signal_pending(current)) &&
302 !vhost_has_work(dev);
303}
304
Jason Wang8241a1e2016-06-01 01:56:33 -0400305static void vhost_net_disable_vq(struct vhost_net *n,
306 struct vhost_virtqueue *vq)
307{
308 struct vhost_net_virtqueue *nvq =
309 container_of(vq, struct vhost_net_virtqueue, vq);
310 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
311 if (!vq->private_data)
312 return;
313 vhost_poll_stop(poll);
314}
315
316static int vhost_net_enable_vq(struct vhost_net *n,
317 struct vhost_virtqueue *vq)
318{
319 struct vhost_net_virtqueue *nvq =
320 container_of(vq, struct vhost_net_virtqueue, vq);
321 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
322 struct socket *sock;
323
324 sock = vq->private_data;
325 if (!sock)
326 return 0;
327
328 return vhost_poll_start(poll, sock->file);
329}
330
Jason Wang03088132016-03-04 06:24:53 -0500331static int vhost_net_tx_get_vq_desc(struct vhost_net *net,
332 struct vhost_virtqueue *vq,
333 struct iovec iov[], unsigned int iov_size,
334 unsigned int *out_num, unsigned int *in_num)
335{
336 unsigned long uninitialized_var(endtime);
337 int r = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400338 out_num, in_num, NULL, NULL);
Jason Wang03088132016-03-04 06:24:53 -0500339
340 if (r == vq->num && vq->busyloop_timeout) {
341 preempt_disable();
342 endtime = busy_clock() + vq->busyloop_timeout;
343 while (vhost_can_busy_poll(vq->dev, endtime) &&
344 vhost_vq_avail_empty(vq->dev, vq))
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200345 cpu_relax();
Jason Wang03088132016-03-04 06:24:53 -0500346 preempt_enable();
347 r = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400348 out_num, in_num, NULL, NULL);
Jason Wang03088132016-03-04 06:24:53 -0500349 }
350
351 return r;
352}
353
Jason Wang0ed005c2017-01-18 15:02:02 +0800354static bool vhost_exceeds_maxpend(struct vhost_net *net)
355{
356 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
357 struct vhost_virtqueue *vq = &nvq->vq;
358
359 return (nvq->upend_idx + vq->num - VHOST_MAX_PEND) % UIO_MAXIOV
360 == nvq->done_idx;
361}
362
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000363/* Expects to be always run from workqueue - which acts as
364 * read-size critical section for our kind of RCU. */
365static void handle_tx(struct vhost_net *net)
366{
Asias He28394002013-04-27 15:07:46 +0800367 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300368 struct vhost_virtqueue *vq = &nvq->vq;
Al Viro98a527a2014-12-10 15:00:58 -0500369 unsigned out, in;
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300370 int head;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000371 struct msghdr msg = {
372 .msg_name = NULL,
373 .msg_namelen = 0,
374 .msg_control = NULL,
375 .msg_controllen = 0,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000376 .msg_flags = MSG_DONTWAIT,
377 };
378 size_t len, total_len = 0;
Jason Wang70181d512013-04-10 20:50:48 +0000379 int err;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000380 size_t hdr_size;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100381 struct socket *sock;
Asias Hefe729a52013-05-06 16:38:24 +0800382 struct vhost_net_ubuf_ref *uninitialized_var(ubufs);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200383 bool zcopy, zcopy_used;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100384
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000385 mutex_lock(&vq->mutex);
Asias He2e26af72013-05-07 14:54:33 +0800386 sock = vq->private_data;
387 if (!sock)
388 goto out;
389
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400390 if (!vq_iotlb_prefetch(vq))
391 goto out;
392
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300393 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000394
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300395 hdr_size = nvq->vhost_hlen;
Asias He28394002013-04-27 15:07:46 +0800396 zcopy = nvq->ubufs;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000397
398 for (;;) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000399 /* Release DMAs done buffers first */
400 if (zcopy)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000401 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000402
Jason Wangf7c6be42013-09-02 16:41:01 +0800403 /* If more outstanding DMAs, queue the work.
404 * Handle upend_idx wrap around
405 */
Jason Wang0ed005c2017-01-18 15:02:02 +0800406 if (unlikely(vhost_exceeds_maxpend(net)))
Jason Wangf7c6be42013-09-02 16:41:01 +0800407 break;
408
Jason Wang03088132016-03-04 06:24:53 -0500409 head = vhost_net_tx_get_vq_desc(net, vq, vq->iov,
410 ARRAY_SIZE(vq->iov),
411 &out, &in);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300412 /* On error, stop handling until the next kick. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +0300413 if (unlikely(head < 0))
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300414 break;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000415 /* Nothing new? Wait for eventfd to tell us they refilled. */
416 if (head == vq->num) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300417 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
418 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000419 continue;
420 }
421 break;
422 }
423 if (in) {
424 vq_err(vq, "Unexpected descriptor format for TX: "
425 "out %d, int %d\n", out, in);
426 break;
427 }
428 /* Skip header. TODO: support TSO. */
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000429 len = iov_length(vq->iov, out);
Al Viroc0371da2014-11-24 10:42:55 -0500430 iov_iter_init(&msg.msg_iter, WRITE, vq->iov, out, len);
Al Viro98a527a2014-12-10 15:00:58 -0500431 iov_iter_advance(&msg.msg_iter, hdr_size);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000432 /* Sanity check */
Al Viro01e97e62014-12-15 21:39:31 -0500433 if (!msg_data_left(&msg)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000434 vq_err(vq, "Unexpected header len for TX: "
435 "%zd expected %zd\n",
Al Viro98a527a2014-12-10 15:00:58 -0500436 len, hdr_size);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000437 break;
438 }
Al Viro01e97e62014-12-15 21:39:31 -0500439 len = msg_data_left(&msg);
Jason Wangce21a022013-09-02 16:40:59 +0800440
441 zcopy_used = zcopy && len >= VHOST_GOODCOPY_LEN
442 && (nvq->upend_idx + 1) % UIO_MAXIOV !=
443 nvq->done_idx
444 && vhost_net_tx_select_zcopy(net);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200445
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000446 /* use msg_control to pass vhost zerocopy ubuf info to skb */
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200447 if (zcopy_used) {
Jason Wangce21a022013-09-02 16:40:59 +0800448 struct ubuf_info *ubuf;
449 ubuf = nvq->ubuf_info + nvq->upend_idx;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000450
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300451 vq->heads[nvq->upend_idx].id = cpu_to_vhost32(vq, head);
Jason Wangce21a022013-09-02 16:40:59 +0800452 vq->heads[nvq->upend_idx].len = VHOST_DMA_IN_PROGRESS;
453 ubuf->callback = vhost_zerocopy_callback;
454 ubuf->ctx = nvq->ubufs;
455 ubuf->desc = nvq->upend_idx;
456 msg.msg_control = ubuf;
457 msg.msg_controllen = sizeof(ubuf);
458 ubufs = nvq->ubufs;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200459 atomic_inc(&ubufs->refcount);
Asias He28394002013-04-27 15:07:46 +0800460 nvq->upend_idx = (nvq->upend_idx + 1) % UIO_MAXIOV;
Jason Wangce21a022013-09-02 16:40:59 +0800461 } else {
Jason Wang4364d5f2013-06-05 15:40:46 +0800462 msg.msg_control = NULL;
Jason Wangce21a022013-09-02 16:40:59 +0800463 ubufs = NULL;
464 }
Jason Wang0ed005c2017-01-18 15:02:02 +0800465
466 total_len += len;
467 if (total_len < VHOST_NET_WEIGHT &&
468 !vhost_vq_avail_empty(&net->dev, vq) &&
469 likely(!vhost_exceeds_maxpend(net))) {
470 msg.msg_flags |= MSG_MORE;
471 } else {
472 msg.msg_flags &= ~MSG_MORE;
473 }
474
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000475 /* TODO: Check specific error and bomb out unless ENOBUFS? */
Ying Xue1b784142015-03-02 15:37:48 +0800476 err = sock->ops->sendmsg(sock, &msg, len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000477 if (unlikely(err < 0)) {
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200478 if (zcopy_used) {
Jason Wangce21a022013-09-02 16:40:59 +0800479 vhost_net_ubuf_put(ubufs);
Asias He28394002013-04-27 15:07:46 +0800480 nvq->upend_idx = ((unsigned)nvq->upend_idx - 1)
481 % UIO_MAXIOV;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000482 }
David Stevens8dd014a2010-07-27 18:52:21 +0300483 vhost_discard_vq_desc(vq, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000484 break;
485 }
486 if (err != len)
Michael S. Tsirkin95c0ec62010-06-24 17:10:25 +0300487 pr_debug("Truncated TX packet: "
488 " len %d != %zd\n", err, len);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200489 if (!zcopy_used)
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000490 vhost_add_used_and_signal(&net->dev, vq, head, 0);
Jason Wangc8fb2172012-05-02 11:42:41 +0800491 else
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000492 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000493 vhost_net_tx_packet(net);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000494 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
495 vhost_poll_queue(&vq->poll);
496 break;
497 }
498 }
Asias He2e26af72013-05-07 14:54:33 +0800499out:
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000500 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000501}
502
David Stevens8dd014a2010-07-27 18:52:21 +0300503static int peek_head_len(struct sock *sk)
504{
Jason Wang1576d982016-06-30 14:45:36 +0800505 struct socket *sock = sk->sk_socket;
David Stevens8dd014a2010-07-27 18:52:21 +0300506 struct sk_buff *head;
507 int len = 0;
Jason Wang783e3982011-01-17 16:11:17 +0800508 unsigned long flags;
David Stevens8dd014a2010-07-27 18:52:21 +0300509
Jason Wang1576d982016-06-30 14:45:36 +0800510 if (sock->ops->peek_len)
511 return sock->ops->peek_len(sock);
512
Jason Wang783e3982011-01-17 16:11:17 +0800513 spin_lock_irqsave(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300514 head = skb_peek(&sk->sk_receive_queue);
Basil Gorc53cff5e2012-05-03 22:55:23 +0000515 if (likely(head)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300516 len = head->len;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100517 if (skb_vlan_tag_present(head))
Basil Gorc53cff5e2012-05-03 22:55:23 +0000518 len += VLAN_HLEN;
519 }
520
Jason Wang783e3982011-01-17 16:11:17 +0800521 spin_unlock_irqrestore(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300522 return len;
523}
524
Jason Wang1576d982016-06-30 14:45:36 +0800525static int sk_has_rx_data(struct sock *sk)
526{
527 struct socket *sock = sk->sk_socket;
528
529 if (sock->ops->peek_len)
530 return sock->ops->peek_len(sock);
531
532 return skb_queue_empty(&sk->sk_receive_queue);
533}
534
Jason Wang03088132016-03-04 06:24:53 -0500535static int vhost_net_rx_peek_head_len(struct vhost_net *net, struct sock *sk)
536{
537 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
538 struct vhost_virtqueue *vq = &nvq->vq;
539 unsigned long uninitialized_var(endtime);
540 int len = peek_head_len(sk);
541
542 if (!len && vq->busyloop_timeout) {
543 /* Both tx vq and rx socket were polled here */
544 mutex_lock(&vq->mutex);
545 vhost_disable_notify(&net->dev, vq);
546
547 preempt_disable();
548 endtime = busy_clock() + vq->busyloop_timeout;
549
550 while (vhost_can_busy_poll(&net->dev, endtime) &&
Jason Wang1576d982016-06-30 14:45:36 +0800551 !sk_has_rx_data(sk) &&
Jason Wang03088132016-03-04 06:24:53 -0500552 vhost_vq_avail_empty(&net->dev, vq))
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200553 cpu_relax();
Jason Wang03088132016-03-04 06:24:53 -0500554
555 preempt_enable();
556
557 if (vhost_enable_notify(&net->dev, vq))
558 vhost_poll_queue(&vq->poll);
559 mutex_unlock(&vq->mutex);
560
561 len = peek_head_len(sk);
562 }
563
564 return len;
565}
566
David Stevens8dd014a2010-07-27 18:52:21 +0300567/* This is a multi-buffer version of vhost_get_desc, that works if
568 * vq has read descriptors only.
569 * @vq - the relevant virtqueue
570 * @datalen - data length we'll be reading
571 * @iovcount - returned count of io vectors we fill
572 * @log - vhost log
573 * @log_num - log offset
Jason Wang94249362011-01-17 16:11:08 +0800574 * @quota - headcount quota, 1 for big buffer
David Stevens8dd014a2010-07-27 18:52:21 +0300575 * returns number of buffer heads allocated, negative on error
576 */
577static int get_rx_bufs(struct vhost_virtqueue *vq,
578 struct vring_used_elem *heads,
579 int datalen,
580 unsigned *iovcount,
581 struct vhost_log *log,
Jason Wang94249362011-01-17 16:11:08 +0800582 unsigned *log_num,
583 unsigned int quota)
David Stevens8dd014a2010-07-27 18:52:21 +0300584{
585 unsigned int out, in;
586 int seg = 0;
587 int headcount = 0;
588 unsigned d;
589 int r, nlogs = 0;
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300590 /* len is always initialized before use since we are always called with
591 * datalen > 0.
592 */
593 u32 uninitialized_var(len);
David Stevens8dd014a2010-07-27 18:52:21 +0300594
Jason Wang94249362011-01-17 16:11:08 +0800595 while (datalen > 0 && headcount < quota) {
Jason Wange0e9b402010-09-14 23:53:05 +0800596 if (unlikely(seg >= UIO_MAXIOV)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300597 r = -ENOBUFS;
598 goto err;
599 }
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300600 r = vhost_get_vq_desc(vq, vq->iov + seg,
David Stevens8dd014a2010-07-27 18:52:21 +0300601 ARRAY_SIZE(vq->iov) - seg, &out,
602 &in, log, log_num);
Michael S. Tsirkina39ee442014-03-27 12:53:37 +0200603 if (unlikely(r < 0))
604 goto err;
605
606 d = r;
David Stevens8dd014a2010-07-27 18:52:21 +0300607 if (d == vq->num) {
608 r = 0;
609 goto err;
610 }
611 if (unlikely(out || in <= 0)) {
612 vq_err(vq, "unexpected descriptor format for RX: "
613 "out %d, in %d\n", out, in);
614 r = -EINVAL;
615 goto err;
616 }
617 if (unlikely(log)) {
618 nlogs += *log_num;
619 log += *log_num;
620 }
Michael S. Tsirkin8b386942014-10-24 14:19:48 +0300621 heads[headcount].id = cpu_to_vhost32(vq, d);
622 len = iov_length(vq->iov + seg, in);
623 heads[headcount].len = cpu_to_vhost32(vq, len);
624 datalen -= len;
David Stevens8dd014a2010-07-27 18:52:21 +0300625 ++headcount;
626 seg += in;
627 }
Michael S. Tsirkin99975cc2015-01-07 10:51:00 +0200628 heads[headcount - 1].len = cpu_to_vhost32(vq, len + datalen);
David Stevens8dd014a2010-07-27 18:52:21 +0300629 *iovcount = seg;
630 if (unlikely(log))
631 *log_num = nlogs;
Michael S. Tsirkind8316f32014-03-27 12:00:26 +0200632
633 /* Detect overrun */
634 if (unlikely(datalen > 0)) {
635 r = UIO_MAXIOV + 1;
636 goto err;
637 }
David Stevens8dd014a2010-07-27 18:52:21 +0300638 return headcount;
639err:
640 vhost_discard_vq_desc(vq, headcount);
641 return r;
642}
643
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000644/* Expects to be always run from workqueue - which acts as
645 * read-size critical section for our kind of RCU. */
Jason Wang94249362011-01-17 16:11:08 +0800646static void handle_rx(struct vhost_net *net)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000647{
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300648 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_RX];
649 struct vhost_virtqueue *vq = &nvq->vq;
David Stevens8dd014a2010-07-27 18:52:21 +0300650 unsigned uninitialized_var(in), log;
651 struct vhost_log *vq_log;
652 struct msghdr msg = {
653 .msg_name = NULL,
654 .msg_namelen = 0,
655 .msg_control = NULL, /* FIXME: get and handle RX aux data. */
656 .msg_controllen = 0,
David Stevens8dd014a2010-07-27 18:52:21 +0300657 .msg_flags = MSG_DONTWAIT,
658 };
Jason Wang0960b642015-02-15 16:35:17 +0800659 struct virtio_net_hdr hdr = {
660 .flags = 0,
661 .gso_type = VIRTIO_NET_HDR_GSO_NONE
David Stevens8dd014a2010-07-27 18:52:21 +0300662 };
David Stevens8dd014a2010-07-27 18:52:21 +0300663 size_t total_len = 0;
Michael S. Tsirkin910a5782012-10-24 20:37:51 +0200664 int err, mergeable;
665 s16 headcount;
David Stevens8dd014a2010-07-27 18:52:21 +0300666 size_t vhost_hlen, sock_hlen;
667 size_t vhost_len, sock_len;
Asias He2e26af72013-05-07 14:54:33 +0800668 struct socket *sock;
Al Viroba7438a2014-12-10 15:51:28 -0500669 struct iov_iter fixup;
Jason Wang0960b642015-02-15 16:35:17 +0800670 __virtio16 num_buffers;
David Stevens8dd014a2010-07-27 18:52:21 +0300671
David Stevens8dd014a2010-07-27 18:52:21 +0300672 mutex_lock(&vq->mutex);
Asias He2e26af72013-05-07 14:54:33 +0800673 sock = vq->private_data;
674 if (!sock)
675 goto out;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400676
677 if (!vq_iotlb_prefetch(vq))
678 goto out;
679
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300680 vhost_disable_notify(&net->dev, vq);
Jason Wang8241a1e2016-06-01 01:56:33 -0400681 vhost_net_disable_vq(net, vq);
Asias He2e26af72013-05-07 14:54:33 +0800682
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300683 vhost_hlen = nvq->vhost_hlen;
684 sock_hlen = nvq->sock_hlen;
David Stevens8dd014a2010-07-27 18:52:21 +0300685
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300686 vq_log = unlikely(vhost_has_feature(vq, VHOST_F_LOG_ALL)) ?
David Stevens8dd014a2010-07-27 18:52:21 +0300687 vq->log : NULL;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300688 mergeable = vhost_has_feature(vq, VIRTIO_NET_F_MRG_RXBUF);
David Stevens8dd014a2010-07-27 18:52:21 +0300689
Jason Wang03088132016-03-04 06:24:53 -0500690 while ((sock_len = vhost_net_rx_peek_head_len(net, sock->sk))) {
David Stevens8dd014a2010-07-27 18:52:21 +0300691 sock_len += sock_hlen;
692 vhost_len = sock_len + vhost_hlen;
693 headcount = get_rx_bufs(vq, vq->heads, vhost_len,
Jason Wang94249362011-01-17 16:11:08 +0800694 &in, vq_log, &log,
695 likely(mergeable) ? UIO_MAXIOV : 1);
David Stevens8dd014a2010-07-27 18:52:21 +0300696 /* On error, stop handling until the next kick. */
697 if (unlikely(headcount < 0))
Jason Wang8241a1e2016-06-01 01:56:33 -0400698 goto out;
Michael S. Tsirkind8316f32014-03-27 12:00:26 +0200699 /* On overrun, truncate and discard */
700 if (unlikely(headcount > UIO_MAXIOV)) {
Al Viroc0371da2014-11-24 10:42:55 -0500701 iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1);
Ying Xue1b784142015-03-02 15:37:48 +0800702 err = sock->ops->recvmsg(sock, &msg,
Michael S. Tsirkind8316f32014-03-27 12:00:26 +0200703 1, MSG_DONTWAIT | MSG_TRUNC);
704 pr_debug("Discarded rx packet: len %zd\n", sock_len);
705 continue;
706 }
David Stevens8dd014a2010-07-27 18:52:21 +0300707 /* OK, now we need to know about added descriptors. */
708 if (!headcount) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300709 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
David Stevens8dd014a2010-07-27 18:52:21 +0300710 /* They have slipped one in as we were
711 * doing that: check again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300712 vhost_disable_notify(&net->dev, vq);
David Stevens8dd014a2010-07-27 18:52:21 +0300713 continue;
714 }
715 /* Nothing new? Wait for eventfd to tell us
716 * they refilled. */
Jason Wang8241a1e2016-06-01 01:56:33 -0400717 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +0300718 }
719 /* We don't need to be notified again. */
Al Viroba7438a2014-12-10 15:51:28 -0500720 iov_iter_init(&msg.msg_iter, READ, vq->iov, in, vhost_len);
721 fixup = msg.msg_iter;
722 if (unlikely((vhost_hlen))) {
723 /* We will supply the header ourselves
724 * TODO: support TSO.
725 */
726 iov_iter_advance(&msg.msg_iter, vhost_hlen);
Al Viroba7438a2014-12-10 15:51:28 -0500727 }
Ying Xue1b784142015-03-02 15:37:48 +0800728 err = sock->ops->recvmsg(sock, &msg,
David Stevens8dd014a2010-07-27 18:52:21 +0300729 sock_len, MSG_DONTWAIT | MSG_TRUNC);
730 /* Userspace might have consumed the packet meanwhile:
731 * it's not supposed to do this usually, but might be hard
732 * to prevent. Discard data we got (if any) and keep going. */
733 if (unlikely(err != sock_len)) {
734 pr_debug("Discarded rx packet: "
735 " len %d, expected %zd\n", err, sock_len);
736 vhost_discard_vq_desc(vq, headcount);
737 continue;
738 }
Al Viroba7438a2014-12-10 15:51:28 -0500739 /* Supply virtio_net_hdr if VHOST_NET_F_VIRTIO_NET_HDR */
Michael S. Tsirkin4c5a8442015-02-25 15:19:28 +0100740 if (unlikely(vhost_hlen)) {
741 if (copy_to_iter(&hdr, sizeof(hdr),
742 &fixup) != sizeof(hdr)) {
743 vq_err(vq, "Unable to write vnet_hdr "
744 "at addr %p\n", vq->iov->iov_base);
Jason Wang8241a1e2016-06-01 01:56:33 -0400745 goto out;
Michael S. Tsirkin4c5a8442015-02-25 15:19:28 +0100746 }
747 } else {
748 /* Header came from socket; we'll need to patch
749 * ->num_buffers over if VIRTIO_NET_F_MRG_RXBUF
750 */
751 iov_iter_advance(&fixup, sizeof(hdr));
David Stevens8dd014a2010-07-27 18:52:21 +0300752 }
753 /* TODO: Should check and handle checksum. */
Michael S. Tsirkin5201aa42015-02-03 11:07:06 +0200754
Jason Wang0960b642015-02-15 16:35:17 +0800755 num_buffers = cpu_to_vhost16(vq, headcount);
Jason Wangcfbdab92011-01-17 16:10:59 +0800756 if (likely(mergeable) &&
Michael S. Tsirkin0d79a492015-02-25 15:20:01 +0100757 copy_to_iter(&num_buffers, sizeof num_buffers,
758 &fixup) != sizeof num_buffers) {
David Stevens8dd014a2010-07-27 18:52:21 +0300759 vq_err(vq, "Failed num_buffers write");
760 vhost_discard_vq_desc(vq, headcount);
Jason Wang8241a1e2016-06-01 01:56:33 -0400761 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +0300762 }
763 vhost_add_used_and_signal_n(&net->dev, vq, vq->heads,
764 headcount);
765 if (unlikely(vq_log))
766 vhost_log_write(vq, vq_log, log, vhost_len);
767 total_len += vhost_len;
768 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
769 vhost_poll_queue(&vq->poll);
Jason Wang8241a1e2016-06-01 01:56:33 -0400770 goto out;
David Stevens8dd014a2010-07-27 18:52:21 +0300771 }
772 }
Jason Wang8241a1e2016-06-01 01:56:33 -0400773 vhost_net_enable_vq(net, vq);
Asias He2e26af72013-05-07 14:54:33 +0800774out:
David Stevens8dd014a2010-07-27 18:52:21 +0300775 mutex_unlock(&vq->mutex);
David Stevens8dd014a2010-07-27 18:52:21 +0300776}
777
Tejun Heoc23f34452010-06-02 20:40:00 +0200778static void handle_tx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000779{
Tejun Heoc23f34452010-06-02 20:40:00 +0200780 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
781 poll.work);
782 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
783
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000784 handle_tx(net);
785}
786
Tejun Heoc23f34452010-06-02 20:40:00 +0200787static void handle_rx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000788{
Tejun Heoc23f34452010-06-02 20:40:00 +0200789 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
790 poll.work);
791 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
792
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000793 handle_rx(net);
794}
795
Tejun Heoc23f34452010-06-02 20:40:00 +0200796static void handle_tx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000797{
Tejun Heoc23f34452010-06-02 20:40:00 +0200798 struct vhost_net *net = container_of(work, struct vhost_net,
799 poll[VHOST_NET_VQ_TX].work);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000800 handle_tx(net);
801}
802
Tejun Heoc23f34452010-06-02 20:40:00 +0200803static void handle_rx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000804{
Tejun Heoc23f34452010-06-02 20:40:00 +0200805 struct vhost_net *net = container_of(work, struct vhost_net,
806 poll[VHOST_NET_VQ_RX].work);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000807 handle_rx(net);
808}
809
810static int vhost_net_open(struct inode *inode, struct file *f)
811{
Michael S. Tsirkin23cc5a92013-01-23 21:46:47 +0100812 struct vhost_net *n;
Tejun Heoc23f34452010-06-02 20:40:00 +0200813 struct vhost_dev *dev;
Asias He3ab2e422013-04-27 11:16:48 +0800814 struct vhost_virtqueue **vqs;
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +0800815 int i;
Tejun Heoc23f34452010-06-02 20:40:00 +0200816
Michael S. Tsirkin23cc5a92013-01-23 21:46:47 +0100817 n = kmalloc(sizeof *n, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
818 if (!n) {
819 n = vmalloc(sizeof *n);
820 if (!n)
821 return -ENOMEM;
822 }
Asias He3ab2e422013-04-27 11:16:48 +0800823 vqs = kmalloc(VHOST_NET_VQ_MAX * sizeof(*vqs), GFP_KERNEL);
824 if (!vqs) {
Romain Francoised04257b2014-06-12 10:42:34 +0200825 kvfree(n);
Asias He3ab2e422013-04-27 11:16:48 +0800826 return -ENOMEM;
827 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200828
829 dev = &n->dev;
Asias He3ab2e422013-04-27 11:16:48 +0800830 vqs[VHOST_NET_VQ_TX] = &n->vqs[VHOST_NET_VQ_TX].vq;
831 vqs[VHOST_NET_VQ_RX] = &n->vqs[VHOST_NET_VQ_RX].vq;
832 n->vqs[VHOST_NET_VQ_TX].vq.handle_kick = handle_tx_kick;
833 n->vqs[VHOST_NET_VQ_RX].vq.handle_kick = handle_rx_kick;
Asias He28394002013-04-27 15:07:46 +0800834 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
835 n->vqs[i].ubufs = NULL;
836 n->vqs[i].ubuf_info = NULL;
837 n->vqs[i].upend_idx = 0;
838 n->vqs[i].done_idx = 0;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300839 n->vqs[i].vhost_hlen = 0;
840 n->vqs[i].sock_hlen = 0;
Asias He28394002013-04-27 15:07:46 +0800841 }
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +0800842 vhost_dev_init(dev, vqs, VHOST_NET_VQ_MAX);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000843
Tejun Heoc23f34452010-06-02 20:40:00 +0200844 vhost_poll_init(n->poll + VHOST_NET_VQ_TX, handle_tx_net, POLLOUT, dev);
845 vhost_poll_init(n->poll + VHOST_NET_VQ_RX, handle_rx_net, POLLIN, dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000846
847 f->private_data = n;
848
849 return 0;
850}
851
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000852static struct socket *vhost_net_stop_vq(struct vhost_net *n,
853 struct vhost_virtqueue *vq)
854{
855 struct socket *sock;
856
857 mutex_lock(&vq->mutex);
Asias He22fa90c2013-05-07 14:54:36 +0800858 sock = vq->private_data;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000859 vhost_net_disable_vq(n, vq);
Asias He22fa90c2013-05-07 14:54:36 +0800860 vq->private_data = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000861 mutex_unlock(&vq->mutex);
862 return sock;
863}
864
865static void vhost_net_stop(struct vhost_net *n, struct socket **tx_sock,
866 struct socket **rx_sock)
867{
Asias He3ab2e422013-04-27 11:16:48 +0800868 *tx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_TX].vq);
869 *rx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_RX].vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000870}
871
872static void vhost_net_flush_vq(struct vhost_net *n, int index)
873{
874 vhost_poll_flush(n->poll + index);
Asias He3ab2e422013-04-27 11:16:48 +0800875 vhost_poll_flush(&n->vqs[index].vq.poll);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000876}
877
878static void vhost_net_flush(struct vhost_net *n)
879{
880 vhost_net_flush_vq(n, VHOST_NET_VQ_TX);
881 vhost_net_flush_vq(n, VHOST_NET_VQ_RX);
Asias He28394002013-04-27 15:07:46 +0800882 if (n->vqs[VHOST_NET_VQ_TX].ubufs) {
Asias He3ab2e422013-04-27 11:16:48 +0800883 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200884 n->tx_flush = true;
Asias He3ab2e422013-04-27 11:16:48 +0800885 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200886 /* Wait for all lower device DMAs done. */
Asias Hefe729a52013-05-06 16:38:24 +0800887 vhost_net_ubuf_put_and_wait(n->vqs[VHOST_NET_VQ_TX].ubufs);
Asias He3ab2e422013-04-27 11:16:48 +0800888 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200889 n->tx_flush = false;
Michael S. Tsirkin0ad8b482014-02-13 11:42:05 +0200890 atomic_set(&n->vqs[VHOST_NET_VQ_TX].ubufs->refcount, 1);
Asias He3ab2e422013-04-27 11:16:48 +0800891 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200892 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000893}
894
895static int vhost_net_release(struct inode *inode, struct file *f)
896{
897 struct vhost_net *n = f->private_data;
898 struct socket *tx_sock;
899 struct socket *rx_sock;
900
901 vhost_net_stop(n, &tx_sock, &rx_sock);
902 vhost_net_flush(n);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000903 vhost_dev_stop(&n->dev);
Michael S. Tsirkinea5d4042011-11-27 19:05:58 +0200904 vhost_dev_cleanup(&n->dev, false);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300905 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000906 if (tx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -0500907 sockfd_put(tx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000908 if (rx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -0500909 sockfd_put(rx_sock);
Michael S. Tsirkinb0c057c2014-02-13 11:45:11 +0200910 /* Make sure no callbacks are outstanding */
911 synchronize_rcu_bh();
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000912 /* We do an extra flush before freeing memory,
913 * since jobs can re-queue themselves. */
914 vhost_net_flush(n);
Asias He3ab2e422013-04-27 11:16:48 +0800915 kfree(n->dev.vqs);
Romain Francoised04257b2014-06-12 10:42:34 +0200916 kvfree(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000917 return 0;
918}
919
920static struct socket *get_raw_socket(int fd)
921{
922 struct {
923 struct sockaddr_ll sa;
924 char buf[MAX_ADDR_LEN];
925 } uaddr;
926 int uaddr_len = sizeof uaddr, r;
927 struct socket *sock = sockfd_lookup(fd, &r);
Krishna Kumard47effe2011-03-01 17:06:37 +0530928
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000929 if (!sock)
930 return ERR_PTR(-ENOTSOCK);
931
932 /* Parameter checking */
933 if (sock->sk->sk_type != SOCK_RAW) {
934 r = -ESOCKTNOSUPPORT;
935 goto err;
936 }
937
938 r = sock->ops->getname(sock, (struct sockaddr *)&uaddr.sa,
939 &uaddr_len, 0);
940 if (r)
941 goto err;
942
943 if (uaddr.sa.sll_family != AF_PACKET) {
944 r = -EPFNOSUPPORT;
945 goto err;
946 }
947 return sock;
948err:
Al Viro09aaacf2014-03-05 20:39:00 -0500949 sockfd_put(sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000950 return ERR_PTR(r);
951}
952
Arnd Bergmann501c7742010-02-18 05:46:50 +0000953static struct socket *get_tap_socket(int fd)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000954{
955 struct file *file = fget(fd);
956 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +0530957
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000958 if (!file)
959 return ERR_PTR(-EBADF);
960 sock = tun_get_socket(file);
Arnd Bergmann501c7742010-02-18 05:46:50 +0000961 if (!IS_ERR(sock))
962 return sock;
963 sock = macvtap_get_socket(file);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000964 if (IS_ERR(sock))
965 fput(file);
966 return sock;
967}
968
969static struct socket *get_socket(int fd)
970{
971 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +0530972
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000973 /* special case to disable backend */
974 if (fd == -1)
975 return NULL;
976 sock = get_raw_socket(fd);
977 if (!IS_ERR(sock))
978 return sock;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000979 sock = get_tap_socket(fd);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000980 if (!IS_ERR(sock))
981 return sock;
982 return ERR_PTR(-ENOTSOCK);
983}
984
985static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
986{
987 struct socket *sock, *oldsock;
988 struct vhost_virtqueue *vq;
Asias He28394002013-04-27 15:07:46 +0800989 struct vhost_net_virtqueue *nvq;
Asias Hefe729a52013-05-06 16:38:24 +0800990 struct vhost_net_ubuf_ref *ubufs, *oldubufs = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000991 int r;
992
993 mutex_lock(&n->dev.mutex);
994 r = vhost_dev_check_owner(&n->dev);
995 if (r)
996 goto err;
997
998 if (index >= VHOST_NET_VQ_MAX) {
999 r = -ENOBUFS;
1000 goto err;
1001 }
Asias He3ab2e422013-04-27 11:16:48 +08001002 vq = &n->vqs[index].vq;
Asias He28394002013-04-27 15:07:46 +08001003 nvq = &n->vqs[index];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001004 mutex_lock(&vq->mutex);
1005
1006 /* Verify that ring has been setup correctly. */
1007 if (!vhost_vq_access_ok(vq)) {
1008 r = -EFAULT;
Jeff Dike1dace8c2010-03-04 16:10:14 -05001009 goto err_vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001010 }
1011 sock = get_socket(fd);
1012 if (IS_ERR(sock)) {
1013 r = PTR_ERR(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -05001014 goto err_vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001015 }
1016
1017 /* start polling new socket */
Asias He22fa90c2013-05-07 14:54:36 +08001018 oldsock = vq->private_data;
David S. Miller11fe8832010-07-20 18:25:24 -07001019 if (sock != oldsock) {
Asias Hefe729a52013-05-06 16:38:24 +08001020 ubufs = vhost_net_ubuf_alloc(vq,
1021 sock && vhost_sock_zcopy(sock));
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001022 if (IS_ERR(ubufs)) {
1023 r = PTR_ERR(ubufs);
1024 goto err_ubufs;
1025 }
Jason Wang692a9982013-01-28 01:05:17 +00001026
Krishna Kumard47effe2011-03-01 17:06:37 +05301027 vhost_net_disable_vq(n, vq);
Asias He22fa90c2013-05-07 14:54:36 +08001028 vq->private_data = sock;
Greg Kurz80f7d032016-02-16 15:59:44 +01001029 r = vhost_vq_init_access(vq);
Jason Wangf59281d2011-06-21 18:04:27 +08001030 if (r)
Jason Wang692a9982013-01-28 01:05:17 +00001031 goto err_used;
Jason Wang2b8b3282013-01-28 01:05:18 +00001032 r = vhost_net_enable_vq(n, vq);
1033 if (r)
1034 goto err_used;
Jason Wang692a9982013-01-28 01:05:17 +00001035
Asias He28394002013-04-27 15:07:46 +08001036 oldubufs = nvq->ubufs;
1037 nvq->ubufs = ubufs;
Michael S. Tsirkin64e9a9b2012-12-03 07:31:51 +00001038
1039 n->tx_packets = 0;
1040 n->tx_zcopy_err = 0;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +02001041 n->tx_flush = false;
Jeff Dikedd1f4072010-03-04 16:10:14 -05001042 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001043
Michael S. Tsirkin1680e902010-07-15 15:19:12 +03001044 mutex_unlock(&vq->mutex);
1045
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001046 if (oldubufs) {
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +03001047 vhost_net_ubuf_put_wait_and_free(oldubufs);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001048 mutex_lock(&vq->mutex);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +00001049 vhost_zerocopy_signal_used(n, vq);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +03001050 mutex_unlock(&vq->mutex);
1051 }
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001052
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001053 if (oldsock) {
1054 vhost_net_flush_vq(n, index);
Al Viro09aaacf2014-03-05 20:39:00 -05001055 sockfd_put(oldsock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001056 }
Jeff Dike1dace8c2010-03-04 16:10:14 -05001057
Michael S. Tsirkin1680e902010-07-15 15:19:12 +03001058 mutex_unlock(&n->dev.mutex);
1059 return 0;
1060
Jason Wang692a9982013-01-28 01:05:17 +00001061err_used:
Asias He22fa90c2013-05-07 14:54:36 +08001062 vq->private_data = oldsock;
Jason Wang692a9982013-01-28 01:05:17 +00001063 vhost_net_enable_vq(n, vq);
1064 if (ubufs)
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +03001065 vhost_net_ubuf_put_wait_and_free(ubufs);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001066err_ubufs:
Al Viro09aaacf2014-03-05 20:39:00 -05001067 sockfd_put(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -05001068err_vq:
1069 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001070err:
1071 mutex_unlock(&n->dev.mutex);
1072 return r;
1073}
1074
1075static long vhost_net_reset_owner(struct vhost_net *n)
1076{
1077 struct socket *tx_sock = NULL;
1078 struct socket *rx_sock = NULL;
1079 long err;
Jason Wanga9709d62016-06-23 02:04:31 -04001080 struct vhost_umem *umem;
Krishna Kumard47effe2011-03-01 17:06:37 +05301081
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001082 mutex_lock(&n->dev.mutex);
1083 err = vhost_dev_check_owner(&n->dev);
1084 if (err)
1085 goto done;
Jason Wanga9709d62016-06-23 02:04:31 -04001086 umem = vhost_dev_reset_owner_prepare();
1087 if (!umem) {
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +03001088 err = -ENOMEM;
1089 goto done;
1090 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001091 vhost_net_stop(n, &tx_sock, &rx_sock);
1092 vhost_net_flush(n);
Jason Wanga9709d62016-06-23 02:04:31 -04001093 vhost_dev_reset_owner(&n->dev, umem);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001094 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001095done:
1096 mutex_unlock(&n->dev.mutex);
1097 if (tx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001098 sockfd_put(tx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001099 if (rx_sock)
Al Viro09aaacf2014-03-05 20:39:00 -05001100 sockfd_put(rx_sock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001101 return err;
1102}
1103
1104static int vhost_net_set_features(struct vhost_net *n, u64 features)
1105{
David Stevens8dd014a2010-07-27 18:52:21 +03001106 size_t vhost_hlen, sock_hlen, hdr_len;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001107 int i;
David Stevens8dd014a2010-07-27 18:52:21 +03001108
Michael S. Tsirkine4fca7d2014-10-24 14:23:52 +03001109 hdr_len = (features & ((1ULL << VIRTIO_NET_F_MRG_RXBUF) |
1110 (1ULL << VIRTIO_F_VERSION_1))) ?
David Stevens8dd014a2010-07-27 18:52:21 +03001111 sizeof(struct virtio_net_hdr_mrg_rxbuf) :
1112 sizeof(struct virtio_net_hdr);
1113 if (features & (1 << VHOST_NET_F_VIRTIO_NET_HDR)) {
1114 /* vhost provides vnet_hdr */
1115 vhost_hlen = hdr_len;
1116 sock_hlen = 0;
1117 } else {
1118 /* socket provides vnet_hdr */
1119 vhost_hlen = 0;
1120 sock_hlen = hdr_len;
1121 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001122 mutex_lock(&n->dev.mutex);
1123 if ((features & (1 << VHOST_F_LOG_ALL)) &&
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001124 !vhost_log_access_ok(&n->dev))
1125 goto out_unlock;
1126
1127 if ((features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))) {
1128 if (vhost_init_device_iotlb(&n->dev, true))
1129 goto out_unlock;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001130 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001131
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001132 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +08001133 mutex_lock(&n->vqs[i].vq.mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001134 n->vqs[i].vq.acked_features = features;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001135 n->vqs[i].vhost_hlen = vhost_hlen;
1136 n->vqs[i].sock_hlen = sock_hlen;
Asias He3ab2e422013-04-27 11:16:48 +08001137 mutex_unlock(&n->vqs[i].vq.mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001138 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001139 mutex_unlock(&n->dev.mutex);
1140 return 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001141
1142out_unlock:
1143 mutex_unlock(&n->dev.mutex);
1144 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001145}
1146
Asias Heb1ad8492013-05-06 11:16:00 +08001147static long vhost_net_set_owner(struct vhost_net *n)
1148{
1149 int r;
1150
1151 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin05c05352013-06-06 15:20:39 +03001152 if (vhost_dev_has_owner(&n->dev)) {
1153 r = -EBUSY;
1154 goto out;
1155 }
Asias Heb1ad8492013-05-06 11:16:00 +08001156 r = vhost_net_set_ubuf_info(n);
1157 if (r)
1158 goto out;
1159 r = vhost_dev_set_owner(&n->dev);
1160 if (r)
1161 vhost_net_clear_ubuf_info(n);
1162 vhost_net_flush(n);
1163out:
1164 mutex_unlock(&n->dev.mutex);
1165 return r;
1166}
1167
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001168static long vhost_net_ioctl(struct file *f, unsigned int ioctl,
1169 unsigned long arg)
1170{
1171 struct vhost_net *n = f->private_data;
1172 void __user *argp = (void __user *)arg;
1173 u64 __user *featurep = argp;
1174 struct vhost_vring_file backend;
1175 u64 features;
1176 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301177
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001178 switch (ioctl) {
1179 case VHOST_NET_SET_BACKEND:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001180 if (copy_from_user(&backend, argp, sizeof backend))
1181 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001182 return vhost_net_set_backend(n, backend.index, backend.fd);
1183 case VHOST_GET_FEATURES:
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001184 features = VHOST_NET_FEATURES;
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001185 if (copy_to_user(featurep, &features, sizeof features))
1186 return -EFAULT;
1187 return 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001188 case VHOST_SET_FEATURES:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001189 if (copy_from_user(&features, featurep, sizeof features))
1190 return -EFAULT;
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001191 if (features & ~VHOST_NET_FEATURES)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001192 return -EOPNOTSUPP;
1193 return vhost_net_set_features(n, features);
1194 case VHOST_RESET_OWNER:
1195 return vhost_net_reset_owner(n);
Asias Heb1ad8492013-05-06 11:16:00 +08001196 case VHOST_SET_OWNER:
1197 return vhost_net_set_owner(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001198 default:
1199 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001200 r = vhost_dev_ioctl(&n->dev, ioctl, argp);
1201 if (r == -ENOIOCTLCMD)
1202 r = vhost_vring_ioctl(&n->dev, ioctl, argp);
1203 else
1204 vhost_net_flush(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001205 mutex_unlock(&n->dev.mutex);
1206 return r;
1207 }
1208}
1209
1210#ifdef CONFIG_COMPAT
1211static long vhost_net_compat_ioctl(struct file *f, unsigned int ioctl,
1212 unsigned long arg)
1213{
1214 return vhost_net_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1215}
1216#endif
1217
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001218static ssize_t vhost_net_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
1219{
1220 struct file *file = iocb->ki_filp;
1221 struct vhost_net *n = file->private_data;
1222 struct vhost_dev *dev = &n->dev;
1223 int noblock = file->f_flags & O_NONBLOCK;
1224
1225 return vhost_chr_read_iter(dev, to, noblock);
1226}
1227
1228static ssize_t vhost_net_chr_write_iter(struct kiocb *iocb,
1229 struct iov_iter *from)
1230{
1231 struct file *file = iocb->ki_filp;
1232 struct vhost_net *n = file->private_data;
1233 struct vhost_dev *dev = &n->dev;
1234
1235 return vhost_chr_write_iter(dev, from);
1236}
1237
1238static unsigned int vhost_net_chr_poll(struct file *file, poll_table *wait)
1239{
1240 struct vhost_net *n = file->private_data;
1241 struct vhost_dev *dev = &n->dev;
1242
1243 return vhost_chr_poll(file, dev, wait);
1244}
1245
Tobias Klauser373a83a2010-05-17 15:12:49 +02001246static const struct file_operations vhost_net_fops = {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001247 .owner = THIS_MODULE,
1248 .release = vhost_net_release,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001249 .read_iter = vhost_net_chr_read_iter,
1250 .write_iter = vhost_net_chr_write_iter,
1251 .poll = vhost_net_chr_poll,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001252 .unlocked_ioctl = vhost_net_ioctl,
1253#ifdef CONFIG_COMPAT
1254 .compat_ioctl = vhost_net_compat_ioctl,
1255#endif
1256 .open = vhost_net_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001257 .llseek = noop_llseek,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001258};
1259
1260static struct miscdevice vhost_net_misc = {
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001261 .minor = VHOST_NET_MINOR,
1262 .name = "vhost-net",
1263 .fops = &vhost_net_fops,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001264};
1265
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001266static int vhost_net_init(void)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001267{
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001268 if (experimental_zcopytx)
Asias Hefe729a52013-05-06 16:38:24 +08001269 vhost_net_enable_zcopy(VHOST_NET_VQ_TX);
Tejun Heoc23f34452010-06-02 20:40:00 +02001270 return misc_register(&vhost_net_misc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001271}
1272module_init(vhost_net_init);
1273
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001274static void vhost_net_exit(void)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001275{
1276 misc_deregister(&vhost_net_misc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001277}
1278module_exit(vhost_net_exit);
1279
1280MODULE_VERSION("0.0.1");
1281MODULE_LICENSE("GPL v2");
1282MODULE_AUTHOR("Michael S. Tsirkin");
1283MODULE_DESCRIPTION("Host kernel accelerator for virtio net");
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001284MODULE_ALIAS_MISCDEV(VHOST_NET_MINOR);
1285MODULE_ALIAS("devname:vhost-net");