]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/vhost/net.c
vhost_net: disable zerocopy by default
[mirror_ubuntu-bionic-kernel.git] / drivers / vhost / net.c
1 /* 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>
13 #include <linux/miscdevice.h>
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/mutex.h>
17 #include <linux/workqueue.h>
18 #include <linux/file.h>
19 #include <linux/slab.h>
20 #include <linux/sched/clock.h>
21 #include <linux/sched/signal.h>
22 #include <linux/vmalloc.h>
23
24 #include <linux/net.h>
25 #include <linux/if_packet.h>
26 #include <linux/if_arp.h>
27 #include <linux/if_tun.h>
28 #include <linux/if_macvlan.h>
29 #include <linux/if_tap.h>
30 #include <linux/if_vlan.h>
31 #include <linux/skb_array.h>
32 #include <linux/skbuff.h>
33
34 #include <net/sock.h>
35
36 #include "vhost.h"
37
38 static int experimental_zcopytx = 0;
39 module_param(experimental_zcopytx, int, 0444);
40 MODULE_PARM_DESC(experimental_zcopytx, "Enable Zero Copy TX;"
41 " 1 -Enable; 0 - Disable");
42
43 /* Max number of bytes transferred before requeueing the job.
44 * Using this limit prevents one virtqueue from starving others. */
45 #define VHOST_NET_WEIGHT 0x80000
46
47 /* Max number of packets transferred before requeueing the job.
48 * Using this limit prevents one virtqueue from starving others with small
49 * pkts.
50 */
51 #define VHOST_NET_PKT_WEIGHT 256
52
53 /* MAX number of TX used buffers for outstanding zerocopy */
54 #define VHOST_MAX_PEND 128
55 #define VHOST_GOODCOPY_LEN 256
56
57 /*
58 * For transmit, used buffer len is unused; we override it to track buffer
59 * status internally; used for zerocopy tx only.
60 */
61 /* Lower device DMA failed */
62 #define VHOST_DMA_FAILED_LEN ((__force __virtio32)3)
63 /* Lower device DMA done */
64 #define VHOST_DMA_DONE_LEN ((__force __virtio32)2)
65 /* Lower device DMA in progress */
66 #define VHOST_DMA_IN_PROGRESS ((__force __virtio32)1)
67 /* Buffer unused */
68 #define VHOST_DMA_CLEAR_LEN ((__force __virtio32)0)
69
70 #define VHOST_DMA_IS_DONE(len) ((__force u32)(len) >= (__force u32)VHOST_DMA_DONE_LEN)
71
72 enum {
73 VHOST_NET_FEATURES = VHOST_FEATURES |
74 (1ULL << VHOST_NET_F_VIRTIO_NET_HDR) |
75 (1ULL << VIRTIO_NET_F_MRG_RXBUF) |
76 (1ULL << VIRTIO_F_IOMMU_PLATFORM)
77 };
78
79 enum {
80 VHOST_NET_VQ_RX = 0,
81 VHOST_NET_VQ_TX = 1,
82 VHOST_NET_VQ_MAX = 2,
83 };
84
85 struct vhost_net_ubuf_ref {
86 /* refcount follows semantics similar to kref:
87 * 0: object is released
88 * 1: no outstanding ubufs
89 * >1: outstanding ubufs
90 */
91 atomic_t refcount;
92 wait_queue_head_t wait;
93 struct vhost_virtqueue *vq;
94 };
95
96 #define VHOST_RX_BATCH 64
97 struct vhost_net_buf {
98 struct sk_buff **queue;
99 int tail;
100 int head;
101 };
102
103 struct vhost_net_virtqueue {
104 struct vhost_virtqueue vq;
105 size_t vhost_hlen;
106 size_t sock_hlen;
107 /* vhost zerocopy support fields below: */
108 /* last used idx for outstanding DMA zerocopy buffers */
109 int upend_idx;
110 /* first used idx for DMA done zerocopy buffers */
111 int done_idx;
112 /* an array of userspace buffers info */
113 struct ubuf_info *ubuf_info;
114 /* Reference counting for outstanding ubufs.
115 * Protected by vq mutex. Writers must also take device mutex. */
116 struct vhost_net_ubuf_ref *ubufs;
117 struct skb_array *rx_array;
118 struct vhost_net_buf rxq;
119 };
120
121 struct vhost_net {
122 struct vhost_dev dev;
123 struct vhost_net_virtqueue vqs[VHOST_NET_VQ_MAX];
124 struct vhost_poll poll[VHOST_NET_VQ_MAX];
125 /* Number of TX recently submitted.
126 * Protected by tx vq lock. */
127 unsigned tx_packets;
128 /* Number of times zerocopy TX recently failed.
129 * Protected by tx vq lock. */
130 unsigned tx_zcopy_err;
131 /* Flush in progress. Protected by tx vq lock. */
132 bool tx_flush;
133 };
134
135 static unsigned vhost_net_zcopy_mask __read_mostly;
136
137 static void *vhost_net_buf_get_ptr(struct vhost_net_buf *rxq)
138 {
139 if (rxq->tail != rxq->head)
140 return rxq->queue[rxq->head];
141 else
142 return NULL;
143 }
144
145 static int vhost_net_buf_get_size(struct vhost_net_buf *rxq)
146 {
147 return rxq->tail - rxq->head;
148 }
149
150 static int vhost_net_buf_is_empty(struct vhost_net_buf *rxq)
151 {
152 return rxq->tail == rxq->head;
153 }
154
155 static void *vhost_net_buf_consume(struct vhost_net_buf *rxq)
156 {
157 void *ret = vhost_net_buf_get_ptr(rxq);
158 ++rxq->head;
159 return ret;
160 }
161
162 static int vhost_net_buf_produce(struct vhost_net_virtqueue *nvq)
163 {
164 struct vhost_net_buf *rxq = &nvq->rxq;
165
166 rxq->head = 0;
167 rxq->tail = skb_array_consume_batched(nvq->rx_array, rxq->queue,
168 VHOST_RX_BATCH);
169 return rxq->tail;
170 }
171
172 static void vhost_net_buf_unproduce(struct vhost_net_virtqueue *nvq)
173 {
174 struct vhost_net_buf *rxq = &nvq->rxq;
175
176 if (nvq->rx_array && !vhost_net_buf_is_empty(rxq)) {
177 skb_array_unconsume(nvq->rx_array, rxq->queue + rxq->head,
178 vhost_net_buf_get_size(rxq));
179 rxq->head = rxq->tail = 0;
180 }
181 }
182
183 static int vhost_net_buf_peek(struct vhost_net_virtqueue *nvq)
184 {
185 struct vhost_net_buf *rxq = &nvq->rxq;
186
187 if (!vhost_net_buf_is_empty(rxq))
188 goto out;
189
190 if (!vhost_net_buf_produce(nvq))
191 return 0;
192
193 out:
194 return __skb_array_len_with_tag(vhost_net_buf_get_ptr(rxq));
195 }
196
197 static void vhost_net_buf_init(struct vhost_net_buf *rxq)
198 {
199 rxq->head = rxq->tail = 0;
200 }
201
202 static void vhost_net_enable_zcopy(int vq)
203 {
204 vhost_net_zcopy_mask |= 0x1 << vq;
205 }
206
207 static struct vhost_net_ubuf_ref *
208 vhost_net_ubuf_alloc(struct vhost_virtqueue *vq, bool zcopy)
209 {
210 struct vhost_net_ubuf_ref *ubufs;
211 /* No zero copy backend? Nothing to count. */
212 if (!zcopy)
213 return NULL;
214 ubufs = kmalloc(sizeof(*ubufs), GFP_KERNEL);
215 if (!ubufs)
216 return ERR_PTR(-ENOMEM);
217 atomic_set(&ubufs->refcount, 1);
218 init_waitqueue_head(&ubufs->wait);
219 ubufs->vq = vq;
220 return ubufs;
221 }
222
223 static int vhost_net_ubuf_put(struct vhost_net_ubuf_ref *ubufs)
224 {
225 int r = atomic_sub_return(1, &ubufs->refcount);
226 if (unlikely(!r))
227 wake_up(&ubufs->wait);
228 return r;
229 }
230
231 static void vhost_net_ubuf_put_and_wait(struct vhost_net_ubuf_ref *ubufs)
232 {
233 vhost_net_ubuf_put(ubufs);
234 wait_event(ubufs->wait, !atomic_read(&ubufs->refcount));
235 }
236
237 static void vhost_net_ubuf_put_wait_and_free(struct vhost_net_ubuf_ref *ubufs)
238 {
239 vhost_net_ubuf_put_and_wait(ubufs);
240 kfree(ubufs);
241 }
242
243 static void vhost_net_clear_ubuf_info(struct vhost_net *n)
244 {
245 int i;
246
247 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
248 kfree(n->vqs[i].ubuf_info);
249 n->vqs[i].ubuf_info = NULL;
250 }
251 }
252
253 static int vhost_net_set_ubuf_info(struct vhost_net *n)
254 {
255 bool zcopy;
256 int i;
257
258 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
259 zcopy = vhost_net_zcopy_mask & (0x1 << i);
260 if (!zcopy)
261 continue;
262 n->vqs[i].ubuf_info = kmalloc(sizeof(*n->vqs[i].ubuf_info) *
263 UIO_MAXIOV, GFP_KERNEL);
264 if (!n->vqs[i].ubuf_info)
265 goto err;
266 }
267 return 0;
268
269 err:
270 vhost_net_clear_ubuf_info(n);
271 return -ENOMEM;
272 }
273
274 static void vhost_net_vq_reset(struct vhost_net *n)
275 {
276 int i;
277
278 vhost_net_clear_ubuf_info(n);
279
280 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
281 n->vqs[i].done_idx = 0;
282 n->vqs[i].upend_idx = 0;
283 n->vqs[i].ubufs = NULL;
284 n->vqs[i].vhost_hlen = 0;
285 n->vqs[i].sock_hlen = 0;
286 vhost_net_buf_init(&n->vqs[i].rxq);
287 }
288
289 }
290
291 static void vhost_net_tx_packet(struct vhost_net *net)
292 {
293 ++net->tx_packets;
294 if (net->tx_packets < 1024)
295 return;
296 net->tx_packets = 0;
297 net->tx_zcopy_err = 0;
298 }
299
300 static void vhost_net_tx_err(struct vhost_net *net)
301 {
302 ++net->tx_zcopy_err;
303 }
304
305 static bool vhost_net_tx_select_zcopy(struct vhost_net *net)
306 {
307 /* TX flush waits for outstanding DMAs to be done.
308 * Don't start new DMAs.
309 */
310 return !net->tx_flush &&
311 net->tx_packets / 64 >= net->tx_zcopy_err;
312 }
313
314 static bool vhost_sock_zcopy(struct socket *sock)
315 {
316 return unlikely(experimental_zcopytx) &&
317 sock_flag(sock->sk, SOCK_ZEROCOPY);
318 }
319
320 /* In case of DMA done not in order in lower device driver for some reason.
321 * upend_idx is used to track end of used idx, done_idx is used to track head
322 * of used idx. Once lower device DMA done contiguously, we will signal KVM
323 * guest used idx.
324 */
325 static void vhost_zerocopy_signal_used(struct vhost_net *net,
326 struct vhost_virtqueue *vq)
327 {
328 struct vhost_net_virtqueue *nvq =
329 container_of(vq, struct vhost_net_virtqueue, vq);
330 int i, add;
331 int j = 0;
332
333 for (i = nvq->done_idx; i != nvq->upend_idx; i = (i + 1) % UIO_MAXIOV) {
334 if (vq->heads[i].len == VHOST_DMA_FAILED_LEN)
335 vhost_net_tx_err(net);
336 if (VHOST_DMA_IS_DONE(vq->heads[i].len)) {
337 vq->heads[i].len = VHOST_DMA_CLEAR_LEN;
338 ++j;
339 } else
340 break;
341 }
342 while (j) {
343 add = min(UIO_MAXIOV - nvq->done_idx, j);
344 vhost_add_used_and_signal_n(vq->dev, vq,
345 &vq->heads[nvq->done_idx], add);
346 nvq->done_idx = (nvq->done_idx + add) % UIO_MAXIOV;
347 j -= add;
348 }
349 }
350
351 static void vhost_zerocopy_callback(struct ubuf_info *ubuf, bool success)
352 {
353 struct vhost_net_ubuf_ref *ubufs = ubuf->ctx;
354 struct vhost_virtqueue *vq = ubufs->vq;
355 int cnt;
356
357 rcu_read_lock_bh();
358
359 /* set len to mark this desc buffers done DMA */
360 vq->heads[ubuf->desc].len = success ?
361 VHOST_DMA_DONE_LEN : VHOST_DMA_FAILED_LEN;
362 cnt = vhost_net_ubuf_put(ubufs);
363
364 /*
365 * Trigger polling thread if guest stopped submitting new buffers:
366 * in this case, the refcount after decrement will eventually reach 1.
367 * We also trigger polling periodically after each 16 packets
368 * (the value 16 here is more or less arbitrary, it's tuned to trigger
369 * less than 10% of times).
370 */
371 if (cnt <= 1 || !(cnt % 16))
372 vhost_poll_queue(&vq->poll);
373
374 rcu_read_unlock_bh();
375 }
376
377 static inline unsigned long busy_clock(void)
378 {
379 return local_clock() >> 10;
380 }
381
382 static bool vhost_can_busy_poll(unsigned long endtime)
383 {
384 return likely(!need_resched() && !time_after(busy_clock(), endtime) &&
385 !signal_pending(current));
386 }
387
388 static void vhost_net_disable_vq(struct vhost_net *n,
389 struct vhost_virtqueue *vq)
390 {
391 struct vhost_net_virtqueue *nvq =
392 container_of(vq, struct vhost_net_virtqueue, vq);
393 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
394 if (!vq->private_data)
395 return;
396 vhost_poll_stop(poll);
397 }
398
399 static int vhost_net_enable_vq(struct vhost_net *n,
400 struct vhost_virtqueue *vq)
401 {
402 struct vhost_net_virtqueue *nvq =
403 container_of(vq, struct vhost_net_virtqueue, vq);
404 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
405 struct socket *sock;
406
407 sock = vq->private_data;
408 if (!sock)
409 return 0;
410
411 return vhost_poll_start(poll, sock->file);
412 }
413
414 static int vhost_net_tx_get_vq_desc(struct vhost_net *net,
415 struct vhost_virtqueue *vq,
416 struct iovec iov[], unsigned int iov_size,
417 unsigned int *out_num, unsigned int *in_num,
418 bool *busyloop_intr)
419 {
420 unsigned long uninitialized_var(endtime);
421 int r = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
422 out_num, in_num, NULL, NULL);
423
424 if (r == vq->num && vq->busyloop_timeout) {
425 preempt_disable();
426 endtime = busy_clock() + vq->busyloop_timeout;
427 while (vhost_can_busy_poll(endtime)) {
428 if (vhost_has_work(vq->dev)) {
429 *busyloop_intr = true;
430 break;
431 }
432 if (!vhost_vq_avail_empty(vq->dev, vq))
433 break;
434 cpu_relax();
435 }
436 preempt_enable();
437 r = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
438 out_num, in_num, NULL, NULL);
439 }
440
441 return r;
442 }
443
444 static bool vhost_exceeds_maxpend(struct vhost_net *net)
445 {
446 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
447 struct vhost_virtqueue *vq = &nvq->vq;
448
449 return (nvq->upend_idx + UIO_MAXIOV - nvq->done_idx) % UIO_MAXIOV >
450 min_t(unsigned int, VHOST_MAX_PEND, vq->num >> 2);
451 }
452
453 /* Expects to be always run from workqueue - which acts as
454 * read-size critical section for our kind of RCU. */
455 static void handle_tx(struct vhost_net *net)
456 {
457 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
458 struct vhost_virtqueue *vq = &nvq->vq;
459 unsigned out, in;
460 int head;
461 struct msghdr msg = {
462 .msg_name = NULL,
463 .msg_namelen = 0,
464 .msg_control = NULL,
465 .msg_controllen = 0,
466 .msg_flags = MSG_DONTWAIT,
467 };
468 size_t len, total_len = 0;
469 int err;
470 size_t hdr_size;
471 struct socket *sock;
472 struct vhost_net_ubuf_ref *uninitialized_var(ubufs);
473 bool zcopy, zcopy_used;
474 int sent_pkts = 0;
475
476 mutex_lock(&vq->mutex);
477 sock = vq->private_data;
478 if (!sock)
479 goto out;
480
481 if (!vq_iotlb_prefetch(vq))
482 goto out;
483
484 vhost_disable_notify(&net->dev, vq);
485 vhost_net_disable_vq(net, vq);
486
487 hdr_size = nvq->vhost_hlen;
488 zcopy = nvq->ubufs;
489
490 do {
491 bool busyloop_intr;
492
493 /* Release DMAs done buffers first */
494 if (zcopy)
495 vhost_zerocopy_signal_used(net, vq);
496
497 busyloop_intr = false;
498 head = vhost_net_tx_get_vq_desc(net, vq, vq->iov,
499 ARRAY_SIZE(vq->iov),
500 &out, &in, &busyloop_intr);
501 /* On error, stop handling until the next kick. */
502 if (unlikely(head < 0))
503 break;
504 /* Nothing new? Wait for eventfd to tell us they refilled. */
505 if (head == vq->num) {
506 if (unlikely(busyloop_intr)) {
507 vhost_poll_queue(&vq->poll);
508 } else if (unlikely(vhost_enable_notify(&net->dev, vq))) {
509 vhost_disable_notify(&net->dev, vq);
510 continue;
511 }
512 break;
513 }
514 if (in) {
515 vq_err(vq, "Unexpected descriptor format for TX: "
516 "out %d, int %d\n", out, in);
517 break;
518 }
519 /* Skip header. TODO: support TSO. */
520 len = iov_length(vq->iov, out);
521 iov_iter_init(&msg.msg_iter, WRITE, vq->iov, out, len);
522 iov_iter_advance(&msg.msg_iter, hdr_size);
523 /* Sanity check */
524 if (!msg_data_left(&msg)) {
525 vq_err(vq, "Unexpected header len for TX: "
526 "%zd expected %zd\n",
527 len, hdr_size);
528 break;
529 }
530 len = msg_data_left(&msg);
531
532 zcopy_used = zcopy && len >= VHOST_GOODCOPY_LEN
533 && !vhost_exceeds_maxpend(net)
534 && vhost_net_tx_select_zcopy(net);
535
536 /* use msg_control to pass vhost zerocopy ubuf info to skb */
537 if (zcopy_used) {
538 struct ubuf_info *ubuf;
539 ubuf = nvq->ubuf_info + nvq->upend_idx;
540
541 vq->heads[nvq->upend_idx].id = cpu_to_vhost32(vq, head);
542 vq->heads[nvq->upend_idx].len = VHOST_DMA_IN_PROGRESS;
543 ubuf->callback = vhost_zerocopy_callback;
544 ubuf->ctx = nvq->ubufs;
545 ubuf->desc = nvq->upend_idx;
546 refcount_set(&ubuf->refcnt, 1);
547 msg.msg_control = ubuf;
548 msg.msg_controllen = sizeof(ubuf);
549 ubufs = nvq->ubufs;
550 atomic_inc(&ubufs->refcount);
551 nvq->upend_idx = (nvq->upend_idx + 1) % UIO_MAXIOV;
552 } else {
553 msg.msg_control = NULL;
554 ubufs = NULL;
555 }
556 total_len += len;
557 if (total_len < VHOST_NET_WEIGHT &&
558 !vhost_vq_avail_empty(&net->dev, vq) &&
559 likely(!vhost_exceeds_maxpend(net))) {
560 msg.msg_flags |= MSG_MORE;
561 } else {
562 msg.msg_flags &= ~MSG_MORE;
563 }
564
565 /* TODO: Check specific error and bomb out unless ENOBUFS? */
566 err = sock->ops->sendmsg(sock, &msg, len);
567 if (unlikely(err < 0)) {
568 if (zcopy_used) {
569 vhost_net_ubuf_put(ubufs);
570 nvq->upend_idx = ((unsigned)nvq->upend_idx - 1)
571 % UIO_MAXIOV;
572 }
573 vhost_discard_vq_desc(vq, 1);
574 vhost_net_enable_vq(net, vq);
575 break;
576 }
577 if (err != len)
578 pr_debug("Truncated TX packet: "
579 " len %d != %zd\n", err, len);
580 if (!zcopy_used)
581 vhost_add_used_and_signal(&net->dev, vq, head, 0);
582 else
583 vhost_zerocopy_signal_used(net, vq);
584 vhost_net_tx_packet(net);
585 } while (likely(!vhost_exceeds_weight(vq, ++sent_pkts, total_len)));
586 out:
587 mutex_unlock(&vq->mutex);
588 }
589
590 static int peek_head_len(struct vhost_net_virtqueue *rvq, struct sock *sk)
591 {
592 struct sk_buff *head;
593 int len = 0;
594 unsigned long flags;
595
596 if (rvq->rx_array)
597 return vhost_net_buf_peek(rvq);
598
599 spin_lock_irqsave(&sk->sk_receive_queue.lock, flags);
600 head = skb_peek(&sk->sk_receive_queue);
601 if (likely(head)) {
602 len = head->len;
603 if (skb_vlan_tag_present(head))
604 len += VLAN_HLEN;
605 }
606
607 spin_unlock_irqrestore(&sk->sk_receive_queue.lock, flags);
608 return len;
609 }
610
611 static int sk_has_rx_data(struct sock *sk)
612 {
613 struct socket *sock = sk->sk_socket;
614
615 if (sock->ops->peek_len)
616 return sock->ops->peek_len(sock);
617
618 return skb_queue_empty(&sk->sk_receive_queue);
619 }
620
621 static int vhost_net_rx_peek_head_len(struct vhost_net *net, struct sock *sk)
622 {
623 struct vhost_net_virtqueue *rvq = &net->vqs[VHOST_NET_VQ_RX];
624 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
625 struct vhost_virtqueue *vq = &nvq->vq;
626 unsigned long uninitialized_var(endtime);
627 int len = peek_head_len(rvq, sk);
628
629 if (!len && vq->busyloop_timeout) {
630 /* Both tx vq and rx socket were polled here */
631 mutex_lock_nested(&vq->mutex, 1);
632 vhost_disable_notify(&net->dev, vq);
633
634 preempt_disable();
635 endtime = busy_clock() + vq->busyloop_timeout;
636
637 while (vhost_can_busy_poll(endtime) &&
638 !vhost_has_work(&net->dev) &&
639 !sk_has_rx_data(sk) &&
640 vhost_vq_avail_empty(&net->dev, vq))
641 cpu_relax();
642
643 preempt_enable();
644
645 if (!vhost_vq_avail_empty(&net->dev, vq))
646 vhost_poll_queue(&vq->poll);
647 else if (unlikely(vhost_enable_notify(&net->dev, vq))) {
648 vhost_disable_notify(&net->dev, vq);
649 vhost_poll_queue(&vq->poll);
650 }
651
652 mutex_unlock(&vq->mutex);
653
654 len = peek_head_len(rvq, sk);
655 }
656
657 return len;
658 }
659
660 /* This is a multi-buffer version of vhost_get_desc, that works if
661 * vq has read descriptors only.
662 * @vq - the relevant virtqueue
663 * @datalen - data length we'll be reading
664 * @iovcount - returned count of io vectors we fill
665 * @log - vhost log
666 * @log_num - log offset
667 * @quota - headcount quota, 1 for big buffer
668 * returns number of buffer heads allocated, negative on error
669 */
670 static int get_rx_bufs(struct vhost_virtqueue *vq,
671 struct vring_used_elem *heads,
672 int datalen,
673 unsigned *iovcount,
674 struct vhost_log *log,
675 unsigned *log_num,
676 unsigned int quota)
677 {
678 unsigned int out, in;
679 int seg = 0;
680 int headcount = 0;
681 unsigned d;
682 int r, nlogs = 0;
683 /* len is always initialized before use since we are always called with
684 * datalen > 0.
685 */
686 u32 uninitialized_var(len);
687
688 while (datalen > 0 && headcount < quota) {
689 if (unlikely(seg >= UIO_MAXIOV)) {
690 r = -ENOBUFS;
691 goto err;
692 }
693 r = vhost_get_vq_desc(vq, vq->iov + seg,
694 ARRAY_SIZE(vq->iov) - seg, &out,
695 &in, log, log_num);
696 if (unlikely(r < 0))
697 goto err;
698
699 d = r;
700 if (d == vq->num) {
701 r = 0;
702 goto err;
703 }
704 if (unlikely(out || in <= 0)) {
705 vq_err(vq, "unexpected descriptor format for RX: "
706 "out %d, in %d\n", out, in);
707 r = -EINVAL;
708 goto err;
709 }
710 if (unlikely(log)) {
711 nlogs += *log_num;
712 log += *log_num;
713 }
714 heads[headcount].id = cpu_to_vhost32(vq, d);
715 len = iov_length(vq->iov + seg, in);
716 heads[headcount].len = cpu_to_vhost32(vq, len);
717 datalen -= len;
718 ++headcount;
719 seg += in;
720 }
721 heads[headcount - 1].len = cpu_to_vhost32(vq, len + datalen);
722 *iovcount = seg;
723 if (unlikely(log))
724 *log_num = nlogs;
725
726 /* Detect overrun */
727 if (unlikely(datalen > 0)) {
728 r = UIO_MAXIOV + 1;
729 goto err;
730 }
731 return headcount;
732 err:
733 vhost_discard_vq_desc(vq, headcount);
734 return r;
735 }
736
737 /* Expects to be always run from workqueue - which acts as
738 * read-size critical section for our kind of RCU. */
739 static void handle_rx(struct vhost_net *net)
740 {
741 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_RX];
742 struct vhost_virtqueue *vq = &nvq->vq;
743 unsigned uninitialized_var(in), log;
744 struct vhost_log *vq_log;
745 struct msghdr msg = {
746 .msg_name = NULL,
747 .msg_namelen = 0,
748 .msg_control = NULL, /* FIXME: get and handle RX aux data. */
749 .msg_controllen = 0,
750 .msg_flags = MSG_DONTWAIT,
751 };
752 struct virtio_net_hdr hdr = {
753 .flags = 0,
754 .gso_type = VIRTIO_NET_HDR_GSO_NONE
755 };
756 size_t total_len = 0;
757 int err, mergeable;
758 s16 headcount;
759 size_t vhost_hlen, sock_hlen;
760 size_t vhost_len, sock_len;
761 struct socket *sock;
762 struct iov_iter fixup;
763 __virtio16 num_buffers;
764 int recv_pkts = 0;
765
766 mutex_lock_nested(&vq->mutex, 0);
767 sock = vq->private_data;
768 if (!sock)
769 goto out;
770
771 if (!vq_iotlb_prefetch(vq))
772 goto out;
773
774 vhost_disable_notify(&net->dev, vq);
775 vhost_net_disable_vq(net, vq);
776
777 vhost_hlen = nvq->vhost_hlen;
778 sock_hlen = nvq->sock_hlen;
779
780 vq_log = unlikely(vhost_has_feature(vq, VHOST_F_LOG_ALL)) ?
781 vq->log : NULL;
782 mergeable = vhost_has_feature(vq, VIRTIO_NET_F_MRG_RXBUF);
783
784 do {
785 sock_len = vhost_net_rx_peek_head_len(net, sock->sk);
786
787 if (!sock_len)
788 break;
789 sock_len += sock_hlen;
790 vhost_len = sock_len + vhost_hlen;
791 headcount = get_rx_bufs(vq, vq->heads, vhost_len,
792 &in, vq_log, &log,
793 likely(mergeable) ? UIO_MAXIOV : 1);
794 /* On error, stop handling until the next kick. */
795 if (unlikely(headcount < 0))
796 goto out;
797 /* OK, now we need to know about added descriptors. */
798 if (!headcount) {
799 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
800 /* They have slipped one in as we were
801 * doing that: check again. */
802 vhost_disable_notify(&net->dev, vq);
803 continue;
804 }
805 /* Nothing new? Wait for eventfd to tell us
806 * they refilled. */
807 goto out;
808 }
809 if (nvq->rx_array)
810 msg.msg_control = vhost_net_buf_consume(&nvq->rxq);
811 /* On overrun, truncate and discard */
812 if (unlikely(headcount > UIO_MAXIOV)) {
813 iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1);
814 err = sock->ops->recvmsg(sock, &msg,
815 1, MSG_DONTWAIT | MSG_TRUNC);
816 pr_debug("Discarded rx packet: len %zd\n", sock_len);
817 continue;
818 }
819 /* We don't need to be notified again. */
820 iov_iter_init(&msg.msg_iter, READ, vq->iov, in, vhost_len);
821 fixup = msg.msg_iter;
822 if (unlikely((vhost_hlen))) {
823 /* We will supply the header ourselves
824 * TODO: support TSO.
825 */
826 iov_iter_advance(&msg.msg_iter, vhost_hlen);
827 }
828 err = sock->ops->recvmsg(sock, &msg,
829 sock_len, MSG_DONTWAIT | MSG_TRUNC);
830 /* Userspace might have consumed the packet meanwhile:
831 * it's not supposed to do this usually, but might be hard
832 * to prevent. Discard data we got (if any) and keep going. */
833 if (unlikely(err != sock_len)) {
834 pr_debug("Discarded rx packet: "
835 " len %d, expected %zd\n", err, sock_len);
836 vhost_discard_vq_desc(vq, headcount);
837 continue;
838 }
839 /* Supply virtio_net_hdr if VHOST_NET_F_VIRTIO_NET_HDR */
840 if (unlikely(vhost_hlen)) {
841 if (copy_to_iter(&hdr, sizeof(hdr),
842 &fixup) != sizeof(hdr)) {
843 vq_err(vq, "Unable to write vnet_hdr "
844 "at addr %p\n", vq->iov->iov_base);
845 goto out;
846 }
847 } else {
848 /* Header came from socket; we'll need to patch
849 * ->num_buffers over if VIRTIO_NET_F_MRG_RXBUF
850 */
851 iov_iter_advance(&fixup, sizeof(hdr));
852 }
853 /* TODO: Should check and handle checksum. */
854
855 num_buffers = cpu_to_vhost16(vq, headcount);
856 if (likely(mergeable) &&
857 copy_to_iter(&num_buffers, sizeof num_buffers,
858 &fixup) != sizeof num_buffers) {
859 vq_err(vq, "Failed num_buffers write");
860 vhost_discard_vq_desc(vq, headcount);
861 goto out;
862 }
863 vhost_add_used_and_signal_n(&net->dev, vq, vq->heads,
864 headcount);
865 if (unlikely(vq_log))
866 vhost_log_write(vq, vq_log, log, vhost_len,
867 vq->iov, in);
868 total_len += vhost_len;
869 } while (likely(!vhost_exceeds_weight(vq, ++recv_pkts, total_len)));
870
871 vhost_net_enable_vq(net, vq);
872 out:
873 mutex_unlock(&vq->mutex);
874 }
875
876 static void handle_tx_kick(struct vhost_work *work)
877 {
878 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
879 poll.work);
880 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
881
882 handle_tx(net);
883 }
884
885 static void handle_rx_kick(struct vhost_work *work)
886 {
887 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
888 poll.work);
889 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
890
891 handle_rx(net);
892 }
893
894 static void handle_tx_net(struct vhost_work *work)
895 {
896 struct vhost_net *net = container_of(work, struct vhost_net,
897 poll[VHOST_NET_VQ_TX].work);
898 handle_tx(net);
899 }
900
901 static void handle_rx_net(struct vhost_work *work)
902 {
903 struct vhost_net *net = container_of(work, struct vhost_net,
904 poll[VHOST_NET_VQ_RX].work);
905 handle_rx(net);
906 }
907
908 static int vhost_net_open(struct inode *inode, struct file *f)
909 {
910 struct vhost_net *n;
911 struct vhost_dev *dev;
912 struct vhost_virtqueue **vqs;
913 struct sk_buff **queue;
914 int i;
915
916 n = kvmalloc(sizeof *n, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
917 if (!n)
918 return -ENOMEM;
919 vqs = kmalloc(VHOST_NET_VQ_MAX * sizeof(*vqs), GFP_KERNEL);
920 if (!vqs) {
921 kvfree(n);
922 return -ENOMEM;
923 }
924
925 queue = kmalloc_array(VHOST_RX_BATCH, sizeof(struct sk_buff *),
926 GFP_KERNEL);
927 if (!queue) {
928 kfree(vqs);
929 kvfree(n);
930 return -ENOMEM;
931 }
932 n->vqs[VHOST_NET_VQ_RX].rxq.queue = queue;
933
934 dev = &n->dev;
935 vqs[VHOST_NET_VQ_TX] = &n->vqs[VHOST_NET_VQ_TX].vq;
936 vqs[VHOST_NET_VQ_RX] = &n->vqs[VHOST_NET_VQ_RX].vq;
937 n->vqs[VHOST_NET_VQ_TX].vq.handle_kick = handle_tx_kick;
938 n->vqs[VHOST_NET_VQ_RX].vq.handle_kick = handle_rx_kick;
939 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
940 n->vqs[i].ubufs = NULL;
941 n->vqs[i].ubuf_info = NULL;
942 n->vqs[i].upend_idx = 0;
943 n->vqs[i].done_idx = 0;
944 n->vqs[i].vhost_hlen = 0;
945 n->vqs[i].sock_hlen = 0;
946 vhost_net_buf_init(&n->vqs[i].rxq);
947 }
948 vhost_dev_init(dev, vqs, VHOST_NET_VQ_MAX,
949 VHOST_NET_PKT_WEIGHT, VHOST_NET_WEIGHT);
950
951 vhost_poll_init(n->poll + VHOST_NET_VQ_TX, handle_tx_net, POLLOUT, dev);
952 vhost_poll_init(n->poll + VHOST_NET_VQ_RX, handle_rx_net, POLLIN, dev);
953
954 f->private_data = n;
955
956 return 0;
957 }
958
959 static struct socket *vhost_net_stop_vq(struct vhost_net *n,
960 struct vhost_virtqueue *vq)
961 {
962 struct socket *sock;
963 struct vhost_net_virtqueue *nvq =
964 container_of(vq, struct vhost_net_virtqueue, vq);
965
966 mutex_lock(&vq->mutex);
967 sock = vq->private_data;
968 vhost_net_disable_vq(n, vq);
969 vq->private_data = NULL;
970 vhost_net_buf_unproduce(nvq);
971 mutex_unlock(&vq->mutex);
972 return sock;
973 }
974
975 static void vhost_net_stop(struct vhost_net *n, struct socket **tx_sock,
976 struct socket **rx_sock)
977 {
978 *tx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_TX].vq);
979 *rx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_RX].vq);
980 }
981
982 static void vhost_net_flush_vq(struct vhost_net *n, int index)
983 {
984 vhost_poll_flush(n->poll + index);
985 vhost_poll_flush(&n->vqs[index].vq.poll);
986 }
987
988 static void vhost_net_flush(struct vhost_net *n)
989 {
990 vhost_net_flush_vq(n, VHOST_NET_VQ_TX);
991 vhost_net_flush_vq(n, VHOST_NET_VQ_RX);
992 if (n->vqs[VHOST_NET_VQ_TX].ubufs) {
993 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
994 n->tx_flush = true;
995 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
996 /* Wait for all lower device DMAs done. */
997 vhost_net_ubuf_put_and_wait(n->vqs[VHOST_NET_VQ_TX].ubufs);
998 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
999 n->tx_flush = false;
1000 atomic_set(&n->vqs[VHOST_NET_VQ_TX].ubufs->refcount, 1);
1001 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
1002 }
1003 }
1004
1005 static int vhost_net_release(struct inode *inode, struct file *f)
1006 {
1007 struct vhost_net *n = f->private_data;
1008 struct socket *tx_sock;
1009 struct socket *rx_sock;
1010
1011 vhost_net_stop(n, &tx_sock, &rx_sock);
1012 vhost_net_flush(n);
1013 vhost_dev_stop(&n->dev);
1014 vhost_dev_cleanup(&n->dev, false);
1015 vhost_net_vq_reset(n);
1016 if (tx_sock)
1017 sockfd_put(tx_sock);
1018 if (rx_sock)
1019 sockfd_put(rx_sock);
1020 /* Make sure no callbacks are outstanding */
1021 synchronize_rcu_bh();
1022 /* We do an extra flush before freeing memory,
1023 * since jobs can re-queue themselves. */
1024 vhost_net_flush(n);
1025 kfree(n->vqs[VHOST_NET_VQ_RX].rxq.queue);
1026 kfree(n->dev.vqs);
1027 kvfree(n);
1028 return 0;
1029 }
1030
1031 static struct socket *get_raw_socket(int fd)
1032 {
1033 struct {
1034 struct sockaddr_ll sa;
1035 char buf[MAX_ADDR_LEN];
1036 } uaddr;
1037 int uaddr_len = sizeof uaddr, r;
1038 struct socket *sock = sockfd_lookup(fd, &r);
1039
1040 if (!sock)
1041 return ERR_PTR(-ENOTSOCK);
1042
1043 /* Parameter checking */
1044 if (sock->sk->sk_type != SOCK_RAW) {
1045 r = -ESOCKTNOSUPPORT;
1046 goto err;
1047 }
1048
1049 r = sock->ops->getname(sock, (struct sockaddr *)&uaddr.sa,
1050 &uaddr_len, 0);
1051 if (r)
1052 goto err;
1053
1054 if (uaddr.sa.sll_family != AF_PACKET) {
1055 r = -EPFNOSUPPORT;
1056 goto err;
1057 }
1058 return sock;
1059 err:
1060 sockfd_put(sock);
1061 return ERR_PTR(r);
1062 }
1063
1064 static struct skb_array *get_tap_skb_array(int fd)
1065 {
1066 struct skb_array *array;
1067 struct file *file = fget(fd);
1068
1069 if (!file)
1070 return NULL;
1071 array = tun_get_skb_array(file);
1072 if (!IS_ERR(array))
1073 goto out;
1074 array = tap_get_skb_array(file);
1075 if (!IS_ERR(array))
1076 goto out;
1077 array = NULL;
1078 out:
1079 fput(file);
1080 return array;
1081 }
1082
1083 static struct socket *get_tap_socket(int fd)
1084 {
1085 struct file *file = fget(fd);
1086 struct socket *sock;
1087
1088 if (!file)
1089 return ERR_PTR(-EBADF);
1090 sock = tun_get_socket(file);
1091 if (!IS_ERR(sock))
1092 return sock;
1093 sock = tap_get_socket(file);
1094 if (IS_ERR(sock))
1095 fput(file);
1096 return sock;
1097 }
1098
1099 static struct socket *get_socket(int fd)
1100 {
1101 struct socket *sock;
1102
1103 /* special case to disable backend */
1104 if (fd == -1)
1105 return NULL;
1106 sock = get_raw_socket(fd);
1107 if (!IS_ERR(sock))
1108 return sock;
1109 sock = get_tap_socket(fd);
1110 if (!IS_ERR(sock))
1111 return sock;
1112 return ERR_PTR(-ENOTSOCK);
1113 }
1114
1115 static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
1116 {
1117 struct socket *sock, *oldsock;
1118 struct vhost_virtqueue *vq;
1119 struct vhost_net_virtqueue *nvq;
1120 struct vhost_net_ubuf_ref *ubufs, *oldubufs = NULL;
1121 int r;
1122
1123 mutex_lock(&n->dev.mutex);
1124 r = vhost_dev_check_owner(&n->dev);
1125 if (r)
1126 goto err;
1127
1128 if (index >= VHOST_NET_VQ_MAX) {
1129 r = -ENOBUFS;
1130 goto err;
1131 }
1132 vq = &n->vqs[index].vq;
1133 nvq = &n->vqs[index];
1134 mutex_lock(&vq->mutex);
1135
1136 /* Verify that ring has been setup correctly. */
1137 if (!vhost_vq_access_ok(vq)) {
1138 r = -EFAULT;
1139 goto err_vq;
1140 }
1141 sock = get_socket(fd);
1142 if (IS_ERR(sock)) {
1143 r = PTR_ERR(sock);
1144 goto err_vq;
1145 }
1146
1147 /* start polling new socket */
1148 oldsock = vq->private_data;
1149 if (sock != oldsock) {
1150 ubufs = vhost_net_ubuf_alloc(vq,
1151 sock && vhost_sock_zcopy(sock));
1152 if (IS_ERR(ubufs)) {
1153 r = PTR_ERR(ubufs);
1154 goto err_ubufs;
1155 }
1156
1157 vhost_net_disable_vq(n, vq);
1158 vq->private_data = sock;
1159 vhost_net_buf_unproduce(nvq);
1160 if (index == VHOST_NET_VQ_RX)
1161 nvq->rx_array = get_tap_skb_array(fd);
1162 r = vhost_vq_init_access(vq);
1163 if (r)
1164 goto err_used;
1165 r = vhost_net_enable_vq(n, vq);
1166 if (r)
1167 goto err_used;
1168
1169 oldubufs = nvq->ubufs;
1170 nvq->ubufs = ubufs;
1171
1172 n->tx_packets = 0;
1173 n->tx_zcopy_err = 0;
1174 n->tx_flush = false;
1175 }
1176
1177 mutex_unlock(&vq->mutex);
1178
1179 if (oldubufs) {
1180 vhost_net_ubuf_put_wait_and_free(oldubufs);
1181 mutex_lock(&vq->mutex);
1182 vhost_zerocopy_signal_used(n, vq);
1183 mutex_unlock(&vq->mutex);
1184 }
1185
1186 if (oldsock) {
1187 vhost_net_flush_vq(n, index);
1188 sockfd_put(oldsock);
1189 }
1190
1191 mutex_unlock(&n->dev.mutex);
1192 return 0;
1193
1194 err_used:
1195 vq->private_data = oldsock;
1196 vhost_net_enable_vq(n, vq);
1197 if (ubufs)
1198 vhost_net_ubuf_put_wait_and_free(ubufs);
1199 err_ubufs:
1200 if (sock)
1201 sockfd_put(sock);
1202 err_vq:
1203 mutex_unlock(&vq->mutex);
1204 err:
1205 mutex_unlock(&n->dev.mutex);
1206 return r;
1207 }
1208
1209 static long vhost_net_reset_owner(struct vhost_net *n)
1210 {
1211 struct socket *tx_sock = NULL;
1212 struct socket *rx_sock = NULL;
1213 long err;
1214 struct vhost_umem *umem;
1215
1216 mutex_lock(&n->dev.mutex);
1217 err = vhost_dev_check_owner(&n->dev);
1218 if (err)
1219 goto done;
1220 umem = vhost_dev_reset_owner_prepare();
1221 if (!umem) {
1222 err = -ENOMEM;
1223 goto done;
1224 }
1225 vhost_net_stop(n, &tx_sock, &rx_sock);
1226 vhost_net_flush(n);
1227 vhost_dev_stop(&n->dev);
1228 vhost_dev_reset_owner(&n->dev, umem);
1229 vhost_net_vq_reset(n);
1230 done:
1231 mutex_unlock(&n->dev.mutex);
1232 if (tx_sock)
1233 sockfd_put(tx_sock);
1234 if (rx_sock)
1235 sockfd_put(rx_sock);
1236 return err;
1237 }
1238
1239 static int vhost_net_set_features(struct vhost_net *n, u64 features)
1240 {
1241 size_t vhost_hlen, sock_hlen, hdr_len;
1242 int i;
1243
1244 hdr_len = (features & ((1ULL << VIRTIO_NET_F_MRG_RXBUF) |
1245 (1ULL << VIRTIO_F_VERSION_1))) ?
1246 sizeof(struct virtio_net_hdr_mrg_rxbuf) :
1247 sizeof(struct virtio_net_hdr);
1248 if (features & (1 << VHOST_NET_F_VIRTIO_NET_HDR)) {
1249 /* vhost provides vnet_hdr */
1250 vhost_hlen = hdr_len;
1251 sock_hlen = 0;
1252 } else {
1253 /* socket provides vnet_hdr */
1254 vhost_hlen = 0;
1255 sock_hlen = hdr_len;
1256 }
1257 mutex_lock(&n->dev.mutex);
1258 if ((features & (1 << VHOST_F_LOG_ALL)) &&
1259 !vhost_log_access_ok(&n->dev))
1260 goto out_unlock;
1261
1262 if ((features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))) {
1263 if (vhost_init_device_iotlb(&n->dev, true))
1264 goto out_unlock;
1265 }
1266
1267 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
1268 mutex_lock(&n->vqs[i].vq.mutex);
1269 n->vqs[i].vq.acked_features = features;
1270 n->vqs[i].vhost_hlen = vhost_hlen;
1271 n->vqs[i].sock_hlen = sock_hlen;
1272 mutex_unlock(&n->vqs[i].vq.mutex);
1273 }
1274 mutex_unlock(&n->dev.mutex);
1275 return 0;
1276
1277 out_unlock:
1278 mutex_unlock(&n->dev.mutex);
1279 return -EFAULT;
1280 }
1281
1282 static long vhost_net_set_owner(struct vhost_net *n)
1283 {
1284 int r;
1285
1286 mutex_lock(&n->dev.mutex);
1287 if (vhost_dev_has_owner(&n->dev)) {
1288 r = -EBUSY;
1289 goto out;
1290 }
1291 r = vhost_net_set_ubuf_info(n);
1292 if (r)
1293 goto out;
1294 r = vhost_dev_set_owner(&n->dev);
1295 if (r)
1296 vhost_net_clear_ubuf_info(n);
1297 vhost_net_flush(n);
1298 out:
1299 mutex_unlock(&n->dev.mutex);
1300 return r;
1301 }
1302
1303 static long vhost_net_ioctl(struct file *f, unsigned int ioctl,
1304 unsigned long arg)
1305 {
1306 struct vhost_net *n = f->private_data;
1307 void __user *argp = (void __user *)arg;
1308 u64 __user *featurep = argp;
1309 struct vhost_vring_file backend;
1310 u64 features;
1311 int r;
1312
1313 switch (ioctl) {
1314 case VHOST_NET_SET_BACKEND:
1315 if (copy_from_user(&backend, argp, sizeof backend))
1316 return -EFAULT;
1317 return vhost_net_set_backend(n, backend.index, backend.fd);
1318 case VHOST_GET_FEATURES:
1319 features = VHOST_NET_FEATURES;
1320 if (copy_to_user(featurep, &features, sizeof features))
1321 return -EFAULT;
1322 return 0;
1323 case VHOST_SET_FEATURES:
1324 if (copy_from_user(&features, featurep, sizeof features))
1325 return -EFAULT;
1326 if (features & ~VHOST_NET_FEATURES)
1327 return -EOPNOTSUPP;
1328 return vhost_net_set_features(n, features);
1329 case VHOST_RESET_OWNER:
1330 return vhost_net_reset_owner(n);
1331 case VHOST_SET_OWNER:
1332 return vhost_net_set_owner(n);
1333 default:
1334 mutex_lock(&n->dev.mutex);
1335 r = vhost_dev_ioctl(&n->dev, ioctl, argp);
1336 if (r == -ENOIOCTLCMD)
1337 r = vhost_vring_ioctl(&n->dev, ioctl, argp);
1338 else
1339 vhost_net_flush(n);
1340 mutex_unlock(&n->dev.mutex);
1341 return r;
1342 }
1343 }
1344
1345 #ifdef CONFIG_COMPAT
1346 static long vhost_net_compat_ioctl(struct file *f, unsigned int ioctl,
1347 unsigned long arg)
1348 {
1349 return vhost_net_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1350 }
1351 #endif
1352
1353 static ssize_t vhost_net_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
1354 {
1355 struct file *file = iocb->ki_filp;
1356 struct vhost_net *n = file->private_data;
1357 struct vhost_dev *dev = &n->dev;
1358 int noblock = file->f_flags & O_NONBLOCK;
1359
1360 return vhost_chr_read_iter(dev, to, noblock);
1361 }
1362
1363 static ssize_t vhost_net_chr_write_iter(struct kiocb *iocb,
1364 struct iov_iter *from)
1365 {
1366 struct file *file = iocb->ki_filp;
1367 struct vhost_net *n = file->private_data;
1368 struct vhost_dev *dev = &n->dev;
1369
1370 return vhost_chr_write_iter(dev, from);
1371 }
1372
1373 static unsigned int vhost_net_chr_poll(struct file *file, poll_table *wait)
1374 {
1375 struct vhost_net *n = file->private_data;
1376 struct vhost_dev *dev = &n->dev;
1377
1378 return vhost_chr_poll(file, dev, wait);
1379 }
1380
1381 static const struct file_operations vhost_net_fops = {
1382 .owner = THIS_MODULE,
1383 .release = vhost_net_release,
1384 .read_iter = vhost_net_chr_read_iter,
1385 .write_iter = vhost_net_chr_write_iter,
1386 .poll = vhost_net_chr_poll,
1387 .unlocked_ioctl = vhost_net_ioctl,
1388 #ifdef CONFIG_COMPAT
1389 .compat_ioctl = vhost_net_compat_ioctl,
1390 #endif
1391 .open = vhost_net_open,
1392 .llseek = noop_llseek,
1393 };
1394
1395 static struct miscdevice vhost_net_misc = {
1396 .minor = VHOST_NET_MINOR,
1397 .name = "vhost-net",
1398 .fops = &vhost_net_fops,
1399 };
1400
1401 static int vhost_net_init(void)
1402 {
1403 if (experimental_zcopytx)
1404 vhost_net_enable_zcopy(VHOST_NET_VQ_TX);
1405 return misc_register(&vhost_net_misc);
1406 }
1407 module_init(vhost_net_init);
1408
1409 static void vhost_net_exit(void)
1410 {
1411 misc_deregister(&vhost_net_misc);
1412 }
1413 module_exit(vhost_net_exit);
1414
1415 MODULE_VERSION("0.0.1");
1416 MODULE_LICENSE("GPL v2");
1417 MODULE_AUTHOR("Michael S. Tsirkin");
1418 MODULE_DESCRIPTION("Host kernel accelerator for virtio net");
1419 MODULE_ALIAS_MISCDEV(VHOST_NET_MINOR);
1420 MODULE_ALIAS("devname:vhost-net");