1 /* Copyright (C) 2009 Red Hat, Inc.
2 * Author: Michael S. Tsirkin <mst@redhat.com>
4 * This work is licensed under the terms of the GNU GPL, version 2.
6 * virtio-net server in host kernel.
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>
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>
38 static int experimental_zcopytx
= 1;
39 module_param(experimental_zcopytx
, int, 0444);
40 MODULE_PARM_DESC(experimental_zcopytx
, "Enable Zero Copy TX;"
41 " 1 -Enable; 0 - Disable");
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
47 /* MAX number of TX used buffers for outstanding zerocopy */
48 #define VHOST_MAX_PEND 128
49 #define VHOST_GOODCOPY_LEN 256
52 * For transmit, used buffer len is unused; we override it to track buffer
53 * status internally; used for zerocopy tx only.
55 /* Lower device DMA failed */
56 #define VHOST_DMA_FAILED_LEN ((__force __virtio32)3)
57 /* Lower device DMA done */
58 #define VHOST_DMA_DONE_LEN ((__force __virtio32)2)
59 /* Lower device DMA in progress */
60 #define VHOST_DMA_IN_PROGRESS ((__force __virtio32)1)
62 #define VHOST_DMA_CLEAR_LEN ((__force __virtio32)0)
64 #define VHOST_DMA_IS_DONE(len) ((__force u32)(len) >= (__force u32)VHOST_DMA_DONE_LEN)
67 VHOST_NET_FEATURES
= VHOST_FEATURES
|
68 (1ULL << VHOST_NET_F_VIRTIO_NET_HDR
) |
69 (1ULL << VIRTIO_NET_F_MRG_RXBUF
) |
70 (1ULL << VIRTIO_F_IOMMU_PLATFORM
)
79 struct vhost_net_ubuf_ref
{
80 /* refcount follows semantics similar to kref:
81 * 0: object is released
82 * 1: no outstanding ubufs
83 * >1: outstanding ubufs
86 wait_queue_head_t wait
;
87 struct vhost_virtqueue
*vq
;
90 #define VHOST_RX_BATCH 64
91 struct vhost_net_buf
{
92 struct sk_buff
**queue
;
97 struct vhost_net_virtqueue
{
98 struct vhost_virtqueue vq
;
101 /* vhost zerocopy support fields below: */
102 /* last used idx for outstanding DMA zerocopy buffers */
104 /* first used idx for DMA done zerocopy buffers */
106 /* an array of userspace buffers info */
107 struct ubuf_info
*ubuf_info
;
108 /* Reference counting for outstanding ubufs.
109 * Protected by vq mutex. Writers must also take device mutex. */
110 struct vhost_net_ubuf_ref
*ubufs
;
111 struct skb_array
*rx_array
;
112 struct vhost_net_buf rxq
;
116 struct vhost_dev dev
;
117 struct vhost_net_virtqueue vqs
[VHOST_NET_VQ_MAX
];
118 struct vhost_poll poll
[VHOST_NET_VQ_MAX
];
119 /* Number of TX recently submitted.
120 * Protected by tx vq lock. */
122 /* Number of times zerocopy TX recently failed.
123 * Protected by tx vq lock. */
124 unsigned tx_zcopy_err
;
125 /* Flush in progress. Protected by tx vq lock. */
129 static unsigned vhost_net_zcopy_mask __read_mostly
;
131 static void *vhost_net_buf_get_ptr(struct vhost_net_buf
*rxq
)
133 if (rxq
->tail
!= rxq
->head
)
134 return rxq
->queue
[rxq
->head
];
139 static int vhost_net_buf_get_size(struct vhost_net_buf
*rxq
)
141 return rxq
->tail
- rxq
->head
;
144 static int vhost_net_buf_is_empty(struct vhost_net_buf
*rxq
)
146 return rxq
->tail
== rxq
->head
;
149 static void *vhost_net_buf_consume(struct vhost_net_buf
*rxq
)
151 void *ret
= vhost_net_buf_get_ptr(rxq
);
156 static int vhost_net_buf_produce(struct vhost_net_virtqueue
*nvq
)
158 struct vhost_net_buf
*rxq
= &nvq
->rxq
;
161 rxq
->tail
= skb_array_consume_batched(nvq
->rx_array
, rxq
->queue
,
166 static void vhost_net_buf_unproduce(struct vhost_net_virtqueue
*nvq
)
168 struct vhost_net_buf
*rxq
= &nvq
->rxq
;
170 if (nvq
->rx_array
&& !vhost_net_buf_is_empty(rxq
)) {
171 skb_array_unconsume(nvq
->rx_array
, rxq
->queue
+ rxq
->head
,
172 vhost_net_buf_get_size(rxq
));
173 rxq
->head
= rxq
->tail
= 0;
177 static int vhost_net_buf_peek(struct vhost_net_virtqueue
*nvq
)
179 struct vhost_net_buf
*rxq
= &nvq
->rxq
;
181 if (!vhost_net_buf_is_empty(rxq
))
184 if (!vhost_net_buf_produce(nvq
))
188 return __skb_array_len_with_tag(vhost_net_buf_get_ptr(rxq
));
191 static void vhost_net_buf_init(struct vhost_net_buf
*rxq
)
193 rxq
->head
= rxq
->tail
= 0;
196 static void vhost_net_enable_zcopy(int vq
)
198 vhost_net_zcopy_mask
|= 0x1 << vq
;
201 static struct vhost_net_ubuf_ref
*
202 vhost_net_ubuf_alloc(struct vhost_virtqueue
*vq
, bool zcopy
)
204 struct vhost_net_ubuf_ref
*ubufs
;
205 /* No zero copy backend? Nothing to count. */
208 ubufs
= kmalloc(sizeof(*ubufs
), GFP_KERNEL
);
210 return ERR_PTR(-ENOMEM
);
211 atomic_set(&ubufs
->refcount
, 1);
212 init_waitqueue_head(&ubufs
->wait
);
217 static int vhost_net_ubuf_put(struct vhost_net_ubuf_ref
*ubufs
)
219 int r
= atomic_sub_return(1, &ubufs
->refcount
);
221 wake_up(&ubufs
->wait
);
225 static void vhost_net_ubuf_put_and_wait(struct vhost_net_ubuf_ref
*ubufs
)
227 vhost_net_ubuf_put(ubufs
);
228 wait_event(ubufs
->wait
, !atomic_read(&ubufs
->refcount
));
231 static void vhost_net_ubuf_put_wait_and_free(struct vhost_net_ubuf_ref
*ubufs
)
233 vhost_net_ubuf_put_and_wait(ubufs
);
237 static void vhost_net_clear_ubuf_info(struct vhost_net
*n
)
241 for (i
= 0; i
< VHOST_NET_VQ_MAX
; ++i
) {
242 kfree(n
->vqs
[i
].ubuf_info
);
243 n
->vqs
[i
].ubuf_info
= NULL
;
247 static int vhost_net_set_ubuf_info(struct vhost_net
*n
)
252 for (i
= 0; i
< VHOST_NET_VQ_MAX
; ++i
) {
253 zcopy
= vhost_net_zcopy_mask
& (0x1 << i
);
256 n
->vqs
[i
].ubuf_info
= kmalloc(sizeof(*n
->vqs
[i
].ubuf_info
) *
257 UIO_MAXIOV
, GFP_KERNEL
);
258 if (!n
->vqs
[i
].ubuf_info
)
264 vhost_net_clear_ubuf_info(n
);
268 static void vhost_net_vq_reset(struct vhost_net
*n
)
272 vhost_net_clear_ubuf_info(n
);
274 for (i
= 0; i
< VHOST_NET_VQ_MAX
; i
++) {
275 n
->vqs
[i
].done_idx
= 0;
276 n
->vqs
[i
].upend_idx
= 0;
277 n
->vqs
[i
].ubufs
= NULL
;
278 n
->vqs
[i
].vhost_hlen
= 0;
279 n
->vqs
[i
].sock_hlen
= 0;
280 vhost_net_buf_init(&n
->vqs
[i
].rxq
);
285 static void vhost_net_tx_packet(struct vhost_net
*net
)
288 if (net
->tx_packets
< 1024)
291 net
->tx_zcopy_err
= 0;
294 static void vhost_net_tx_err(struct vhost_net
*net
)
299 static bool vhost_net_tx_select_zcopy(struct vhost_net
*net
)
301 /* TX flush waits for outstanding DMAs to be done.
302 * Don't start new DMAs.
304 return !net
->tx_flush
&&
305 net
->tx_packets
/ 64 >= net
->tx_zcopy_err
;
308 static bool vhost_sock_zcopy(struct socket
*sock
)
310 return unlikely(experimental_zcopytx
) &&
311 sock_flag(sock
->sk
, SOCK_ZEROCOPY
);
314 /* In case of DMA done not in order in lower device driver for some reason.
315 * upend_idx is used to track end of used idx, done_idx is used to track head
316 * of used idx. Once lower device DMA done contiguously, we will signal KVM
319 static void vhost_zerocopy_signal_used(struct vhost_net
*net
,
320 struct vhost_virtqueue
*vq
)
322 struct vhost_net_virtqueue
*nvq
=
323 container_of(vq
, struct vhost_net_virtqueue
, vq
);
327 for (i
= nvq
->done_idx
; i
!= nvq
->upend_idx
; i
= (i
+ 1) % UIO_MAXIOV
) {
328 if (vq
->heads
[i
].len
== VHOST_DMA_FAILED_LEN
)
329 vhost_net_tx_err(net
);
330 if (VHOST_DMA_IS_DONE(vq
->heads
[i
].len
)) {
331 vq
->heads
[i
].len
= VHOST_DMA_CLEAR_LEN
;
337 add
= min(UIO_MAXIOV
- nvq
->done_idx
, j
);
338 vhost_add_used_and_signal_n(vq
->dev
, vq
,
339 &vq
->heads
[nvq
->done_idx
], add
);
340 nvq
->done_idx
= (nvq
->done_idx
+ add
) % UIO_MAXIOV
;
345 static void vhost_zerocopy_callback(struct ubuf_info
*ubuf
, bool success
)
347 struct vhost_net_ubuf_ref
*ubufs
= ubuf
->ctx
;
348 struct vhost_virtqueue
*vq
= ubufs
->vq
;
353 /* set len to mark this desc buffers done DMA */
354 vq
->heads
[ubuf
->desc
].len
= success
?
355 VHOST_DMA_DONE_LEN
: VHOST_DMA_FAILED_LEN
;
356 cnt
= vhost_net_ubuf_put(ubufs
);
359 * Trigger polling thread if guest stopped submitting new buffers:
360 * in this case, the refcount after decrement will eventually reach 1.
361 * We also trigger polling periodically after each 16 packets
362 * (the value 16 here is more or less arbitrary, it's tuned to trigger
363 * less than 10% of times).
365 if (cnt
<= 1 || !(cnt
% 16))
366 vhost_poll_queue(&vq
->poll
);
368 rcu_read_unlock_bh();
371 static inline unsigned long busy_clock(void)
373 return local_clock() >> 10;
376 static bool vhost_can_busy_poll(struct vhost_dev
*dev
,
377 unsigned long endtime
)
379 return likely(!need_resched()) &&
380 likely(!time_after(busy_clock(), endtime
)) &&
381 likely(!signal_pending(current
)) &&
382 !vhost_has_work(dev
);
385 static void vhost_net_disable_vq(struct vhost_net
*n
,
386 struct vhost_virtqueue
*vq
)
388 struct vhost_net_virtqueue
*nvq
=
389 container_of(vq
, struct vhost_net_virtqueue
, vq
);
390 struct vhost_poll
*poll
= n
->poll
+ (nvq
- n
->vqs
);
391 if (!vq
->private_data
)
393 vhost_poll_stop(poll
);
396 static int vhost_net_enable_vq(struct vhost_net
*n
,
397 struct vhost_virtqueue
*vq
)
399 struct vhost_net_virtqueue
*nvq
=
400 container_of(vq
, struct vhost_net_virtqueue
, vq
);
401 struct vhost_poll
*poll
= n
->poll
+ (nvq
- n
->vqs
);
404 sock
= vq
->private_data
;
408 return vhost_poll_start(poll
, sock
->file
);
411 static int vhost_net_tx_get_vq_desc(struct vhost_net
*net
,
412 struct vhost_virtqueue
*vq
,
413 struct iovec iov
[], unsigned int iov_size
,
414 unsigned int *out_num
, unsigned int *in_num
)
416 unsigned long uninitialized_var(endtime
);
417 int r
= vhost_get_vq_desc(vq
, vq
->iov
, ARRAY_SIZE(vq
->iov
),
418 out_num
, in_num
, NULL
, NULL
);
420 if (r
== vq
->num
&& vq
->busyloop_timeout
) {
422 endtime
= busy_clock() + vq
->busyloop_timeout
;
423 while (vhost_can_busy_poll(vq
->dev
, endtime
) &&
424 vhost_vq_avail_empty(vq
->dev
, vq
))
427 r
= vhost_get_vq_desc(vq
, vq
->iov
, ARRAY_SIZE(vq
->iov
),
428 out_num
, in_num
, NULL
, NULL
);
434 static bool vhost_exceeds_maxpend(struct vhost_net
*net
)
436 struct vhost_net_virtqueue
*nvq
= &net
->vqs
[VHOST_NET_VQ_TX
];
437 struct vhost_virtqueue
*vq
= &nvq
->vq
;
439 return (nvq
->upend_idx
+ vq
->num
- VHOST_MAX_PEND
) % UIO_MAXIOV
443 /* Expects to be always run from workqueue - which acts as
444 * read-size critical section for our kind of RCU. */
445 static void handle_tx(struct vhost_net
*net
)
447 struct vhost_net_virtqueue
*nvq
= &net
->vqs
[VHOST_NET_VQ_TX
];
448 struct vhost_virtqueue
*vq
= &nvq
->vq
;
451 struct msghdr msg
= {
456 .msg_flags
= MSG_DONTWAIT
,
458 size_t len
, total_len
= 0;
462 struct vhost_net_ubuf_ref
*uninitialized_var(ubufs
);
463 bool zcopy
, zcopy_used
;
465 mutex_lock(&vq
->mutex
);
466 sock
= vq
->private_data
;
470 if (!vq_iotlb_prefetch(vq
))
473 vhost_disable_notify(&net
->dev
, vq
);
475 hdr_size
= nvq
->vhost_hlen
;
479 /* Release DMAs done buffers first */
481 vhost_zerocopy_signal_used(net
, vq
);
483 /* If more outstanding DMAs, queue the work.
484 * Handle upend_idx wrap around
486 if (unlikely(vhost_exceeds_maxpend(net
)))
489 head
= vhost_net_tx_get_vq_desc(net
, vq
, vq
->iov
,
492 /* On error, stop handling until the next kick. */
493 if (unlikely(head
< 0))
495 /* Nothing new? Wait for eventfd to tell us they refilled. */
496 if (head
== vq
->num
) {
497 if (unlikely(vhost_enable_notify(&net
->dev
, vq
))) {
498 vhost_disable_notify(&net
->dev
, vq
);
504 vq_err(vq
, "Unexpected descriptor format for TX: "
505 "out %d, int %d\n", out
, in
);
508 /* Skip header. TODO: support TSO. */
509 len
= iov_length(vq
->iov
, out
);
510 iov_iter_init(&msg
.msg_iter
, WRITE
, vq
->iov
, out
, len
);
511 iov_iter_advance(&msg
.msg_iter
, hdr_size
);
513 if (!msg_data_left(&msg
)) {
514 vq_err(vq
, "Unexpected header len for TX: "
515 "%zd expected %zd\n",
519 len
= msg_data_left(&msg
);
521 zcopy_used
= zcopy
&& len
>= VHOST_GOODCOPY_LEN
522 && (nvq
->upend_idx
+ 1) % UIO_MAXIOV
!=
524 && vhost_net_tx_select_zcopy(net
);
526 /* use msg_control to pass vhost zerocopy ubuf info to skb */
528 struct ubuf_info
*ubuf
;
529 ubuf
= nvq
->ubuf_info
+ nvq
->upend_idx
;
531 vq
->heads
[nvq
->upend_idx
].id
= cpu_to_vhost32(vq
, head
);
532 vq
->heads
[nvq
->upend_idx
].len
= VHOST_DMA_IN_PROGRESS
;
533 ubuf
->callback
= vhost_zerocopy_callback
;
534 ubuf
->ctx
= nvq
->ubufs
;
535 ubuf
->desc
= nvq
->upend_idx
;
536 refcount_set(&ubuf
->refcnt
, 1);
537 msg
.msg_control
= ubuf
;
538 msg
.msg_controllen
= sizeof(ubuf
);
540 atomic_inc(&ubufs
->refcount
);
541 nvq
->upend_idx
= (nvq
->upend_idx
+ 1) % UIO_MAXIOV
;
543 msg
.msg_control
= NULL
;
548 if (total_len
< VHOST_NET_WEIGHT
&&
549 !vhost_vq_avail_empty(&net
->dev
, vq
) &&
550 likely(!vhost_exceeds_maxpend(net
))) {
551 msg
.msg_flags
|= MSG_MORE
;
553 msg
.msg_flags
&= ~MSG_MORE
;
556 /* TODO: Check specific error and bomb out unless ENOBUFS? */
557 err
= sock
->ops
->sendmsg(sock
, &msg
, len
);
558 if (unlikely(err
< 0)) {
560 vhost_net_ubuf_put(ubufs
);
561 nvq
->upend_idx
= ((unsigned)nvq
->upend_idx
- 1)
564 vhost_discard_vq_desc(vq
, 1);
568 pr_debug("Truncated TX packet: "
569 " len %d != %zd\n", err
, len
);
571 vhost_add_used_and_signal(&net
->dev
, vq
, head
, 0);
573 vhost_zerocopy_signal_used(net
, vq
);
574 vhost_net_tx_packet(net
);
575 if (unlikely(total_len
>= VHOST_NET_WEIGHT
)) {
576 vhost_poll_queue(&vq
->poll
);
581 mutex_unlock(&vq
->mutex
);
584 static int peek_head_len(struct vhost_net_virtqueue
*rvq
, struct sock
*sk
)
586 struct sk_buff
*head
;
591 return vhost_net_buf_peek(rvq
);
593 spin_lock_irqsave(&sk
->sk_receive_queue
.lock
, flags
);
594 head
= skb_peek(&sk
->sk_receive_queue
);
597 if (skb_vlan_tag_present(head
))
601 spin_unlock_irqrestore(&sk
->sk_receive_queue
.lock
, flags
);
605 static int sk_has_rx_data(struct sock
*sk
)
607 struct socket
*sock
= sk
->sk_socket
;
609 if (sock
->ops
->peek_len
)
610 return sock
->ops
->peek_len(sock
);
612 return skb_queue_empty(&sk
->sk_receive_queue
);
615 static int vhost_net_rx_peek_head_len(struct vhost_net
*net
, struct sock
*sk
)
617 struct vhost_net_virtqueue
*rvq
= &net
->vqs
[VHOST_NET_VQ_RX
];
618 struct vhost_net_virtqueue
*nvq
= &net
->vqs
[VHOST_NET_VQ_TX
];
619 struct vhost_virtqueue
*vq
= &nvq
->vq
;
620 unsigned long uninitialized_var(endtime
);
621 int len
= peek_head_len(rvq
, sk
);
623 if (!len
&& vq
->busyloop_timeout
) {
624 /* Both tx vq and rx socket were polled here */
625 mutex_lock_nested(&vq
->mutex
, 1);
626 vhost_disable_notify(&net
->dev
, vq
);
629 endtime
= busy_clock() + vq
->busyloop_timeout
;
631 while (vhost_can_busy_poll(&net
->dev
, endtime
) &&
632 !sk_has_rx_data(sk
) &&
633 vhost_vq_avail_empty(&net
->dev
, vq
))
638 if (!vhost_vq_avail_empty(&net
->dev
, vq
))
639 vhost_poll_queue(&vq
->poll
);
640 else if (unlikely(vhost_enable_notify(&net
->dev
, vq
))) {
641 vhost_disable_notify(&net
->dev
, vq
);
642 vhost_poll_queue(&vq
->poll
);
645 mutex_unlock(&vq
->mutex
);
647 len
= peek_head_len(rvq
, sk
);
653 /* This is a multi-buffer version of vhost_get_desc, that works if
654 * vq has read descriptors only.
655 * @vq - the relevant virtqueue
656 * @datalen - data length we'll be reading
657 * @iovcount - returned count of io vectors we fill
659 * @log_num - log offset
660 * @quota - headcount quota, 1 for big buffer
661 * returns number of buffer heads allocated, negative on error
663 static int get_rx_bufs(struct vhost_virtqueue
*vq
,
664 struct vring_used_elem
*heads
,
667 struct vhost_log
*log
,
671 unsigned int out
, in
;
676 /* len is always initialized before use since we are always called with
679 u32
uninitialized_var(len
);
681 while (datalen
> 0 && headcount
< quota
) {
682 if (unlikely(seg
>= UIO_MAXIOV
)) {
686 r
= vhost_get_vq_desc(vq
, vq
->iov
+ seg
,
687 ARRAY_SIZE(vq
->iov
) - seg
, &out
,
697 if (unlikely(out
|| in
<= 0)) {
698 vq_err(vq
, "unexpected descriptor format for RX: "
699 "out %d, in %d\n", out
, in
);
707 heads
[headcount
].id
= cpu_to_vhost32(vq
, d
);
708 len
= iov_length(vq
->iov
+ seg
, in
);
709 heads
[headcount
].len
= cpu_to_vhost32(vq
, len
);
714 heads
[headcount
- 1].len
= cpu_to_vhost32(vq
, len
+ datalen
);
720 if (unlikely(datalen
> 0)) {
726 vhost_discard_vq_desc(vq
, headcount
);
730 /* Expects to be always run from workqueue - which acts as
731 * read-size critical section for our kind of RCU. */
732 static void handle_rx(struct vhost_net
*net
)
734 struct vhost_net_virtqueue
*nvq
= &net
->vqs
[VHOST_NET_VQ_RX
];
735 struct vhost_virtqueue
*vq
= &nvq
->vq
;
736 unsigned uninitialized_var(in
), log
;
737 struct vhost_log
*vq_log
;
738 struct msghdr msg
= {
741 .msg_control
= NULL
, /* FIXME: get and handle RX aux data. */
743 .msg_flags
= MSG_DONTWAIT
,
745 struct virtio_net_hdr hdr
= {
747 .gso_type
= VIRTIO_NET_HDR_GSO_NONE
749 size_t total_len
= 0;
752 size_t vhost_hlen
, sock_hlen
;
753 size_t vhost_len
, sock_len
;
755 struct iov_iter fixup
;
756 __virtio16 num_buffers
;
758 mutex_lock_nested(&vq
->mutex
, 0);
759 sock
= vq
->private_data
;
763 if (!vq_iotlb_prefetch(vq
))
766 vhost_disable_notify(&net
->dev
, vq
);
767 vhost_net_disable_vq(net
, vq
);
769 vhost_hlen
= nvq
->vhost_hlen
;
770 sock_hlen
= nvq
->sock_hlen
;
772 vq_log
= unlikely(vhost_has_feature(vq
, VHOST_F_LOG_ALL
)) ?
774 mergeable
= vhost_has_feature(vq
, VIRTIO_NET_F_MRG_RXBUF
);
776 while ((sock_len
= vhost_net_rx_peek_head_len(net
, sock
->sk
))) {
777 sock_len
+= sock_hlen
;
778 vhost_len
= sock_len
+ vhost_hlen
;
779 headcount
= get_rx_bufs(vq
, vq
->heads
, vhost_len
,
781 likely(mergeable
) ? UIO_MAXIOV
: 1);
782 /* On error, stop handling until the next kick. */
783 if (unlikely(headcount
< 0))
785 /* OK, now we need to know about added descriptors. */
787 if (unlikely(vhost_enable_notify(&net
->dev
, vq
))) {
788 /* They have slipped one in as we were
789 * doing that: check again. */
790 vhost_disable_notify(&net
->dev
, vq
);
793 /* Nothing new? Wait for eventfd to tell us
798 msg
.msg_control
= vhost_net_buf_consume(&nvq
->rxq
);
799 /* On overrun, truncate and discard */
800 if (unlikely(headcount
> UIO_MAXIOV
)) {
801 iov_iter_init(&msg
.msg_iter
, READ
, vq
->iov
, 1, 1);
802 err
= sock
->ops
->recvmsg(sock
, &msg
,
803 1, MSG_DONTWAIT
| MSG_TRUNC
);
804 pr_debug("Discarded rx packet: len %zd\n", sock_len
);
807 /* We don't need to be notified again. */
808 iov_iter_init(&msg
.msg_iter
, READ
, vq
->iov
, in
, vhost_len
);
809 fixup
= msg
.msg_iter
;
810 if (unlikely((vhost_hlen
))) {
811 /* We will supply the header ourselves
814 iov_iter_advance(&msg
.msg_iter
, vhost_hlen
);
816 err
= sock
->ops
->recvmsg(sock
, &msg
,
817 sock_len
, MSG_DONTWAIT
| MSG_TRUNC
);
818 /* Userspace might have consumed the packet meanwhile:
819 * it's not supposed to do this usually, but might be hard
820 * to prevent. Discard data we got (if any) and keep going. */
821 if (unlikely(err
!= sock_len
)) {
822 pr_debug("Discarded rx packet: "
823 " len %d, expected %zd\n", err
, sock_len
);
824 vhost_discard_vq_desc(vq
, headcount
);
827 /* Supply virtio_net_hdr if VHOST_NET_F_VIRTIO_NET_HDR */
828 if (unlikely(vhost_hlen
)) {
829 if (copy_to_iter(&hdr
, sizeof(hdr
),
830 &fixup
) != sizeof(hdr
)) {
831 vq_err(vq
, "Unable to write vnet_hdr "
832 "at addr %p\n", vq
->iov
->iov_base
);
836 /* Header came from socket; we'll need to patch
837 * ->num_buffers over if VIRTIO_NET_F_MRG_RXBUF
839 iov_iter_advance(&fixup
, sizeof(hdr
));
841 /* TODO: Should check and handle checksum. */
843 num_buffers
= cpu_to_vhost16(vq
, headcount
);
844 if (likely(mergeable
) &&
845 copy_to_iter(&num_buffers
, sizeof num_buffers
,
846 &fixup
) != sizeof num_buffers
) {
847 vq_err(vq
, "Failed num_buffers write");
848 vhost_discard_vq_desc(vq
, headcount
);
851 vhost_add_used_and_signal_n(&net
->dev
, vq
, vq
->heads
,
853 if (unlikely(vq_log
))
854 vhost_log_write(vq
, vq_log
, log
, vhost_len
);
855 total_len
+= vhost_len
;
856 if (unlikely(total_len
>= VHOST_NET_WEIGHT
)) {
857 vhost_poll_queue(&vq
->poll
);
861 vhost_net_enable_vq(net
, vq
);
863 mutex_unlock(&vq
->mutex
);
866 static void handle_tx_kick(struct vhost_work
*work
)
868 struct vhost_virtqueue
*vq
= container_of(work
, struct vhost_virtqueue
,
870 struct vhost_net
*net
= container_of(vq
->dev
, struct vhost_net
, dev
);
875 static void handle_rx_kick(struct vhost_work
*work
)
877 struct vhost_virtqueue
*vq
= container_of(work
, struct vhost_virtqueue
,
879 struct vhost_net
*net
= container_of(vq
->dev
, struct vhost_net
, dev
);
884 static void handle_tx_net(struct vhost_work
*work
)
886 struct vhost_net
*net
= container_of(work
, struct vhost_net
,
887 poll
[VHOST_NET_VQ_TX
].work
);
891 static void handle_rx_net(struct vhost_work
*work
)
893 struct vhost_net
*net
= container_of(work
, struct vhost_net
,
894 poll
[VHOST_NET_VQ_RX
].work
);
898 static int vhost_net_open(struct inode
*inode
, struct file
*f
)
901 struct vhost_dev
*dev
;
902 struct vhost_virtqueue
**vqs
;
903 struct sk_buff
**queue
;
906 n
= kvmalloc(sizeof *n
, GFP_KERNEL
| __GFP_RETRY_MAYFAIL
);
909 vqs
= kmalloc(VHOST_NET_VQ_MAX
* sizeof(*vqs
), GFP_KERNEL
);
915 queue
= kmalloc_array(VHOST_RX_BATCH
, sizeof(struct sk_buff
*),
922 n
->vqs
[VHOST_NET_VQ_RX
].rxq
.queue
= queue
;
925 vqs
[VHOST_NET_VQ_TX
] = &n
->vqs
[VHOST_NET_VQ_TX
].vq
;
926 vqs
[VHOST_NET_VQ_RX
] = &n
->vqs
[VHOST_NET_VQ_RX
].vq
;
927 n
->vqs
[VHOST_NET_VQ_TX
].vq
.handle_kick
= handle_tx_kick
;
928 n
->vqs
[VHOST_NET_VQ_RX
].vq
.handle_kick
= handle_rx_kick
;
929 for (i
= 0; i
< VHOST_NET_VQ_MAX
; i
++) {
930 n
->vqs
[i
].ubufs
= NULL
;
931 n
->vqs
[i
].ubuf_info
= NULL
;
932 n
->vqs
[i
].upend_idx
= 0;
933 n
->vqs
[i
].done_idx
= 0;
934 n
->vqs
[i
].vhost_hlen
= 0;
935 n
->vqs
[i
].sock_hlen
= 0;
936 vhost_net_buf_init(&n
->vqs
[i
].rxq
);
938 vhost_dev_init(dev
, vqs
, VHOST_NET_VQ_MAX
);
940 vhost_poll_init(n
->poll
+ VHOST_NET_VQ_TX
, handle_tx_net
, POLLOUT
, dev
);
941 vhost_poll_init(n
->poll
+ VHOST_NET_VQ_RX
, handle_rx_net
, POLLIN
, dev
);
948 static struct socket
*vhost_net_stop_vq(struct vhost_net
*n
,
949 struct vhost_virtqueue
*vq
)
952 struct vhost_net_virtqueue
*nvq
=
953 container_of(vq
, struct vhost_net_virtqueue
, vq
);
955 mutex_lock(&vq
->mutex
);
956 sock
= vq
->private_data
;
957 vhost_net_disable_vq(n
, vq
);
958 vq
->private_data
= NULL
;
959 vhost_net_buf_unproduce(nvq
);
960 mutex_unlock(&vq
->mutex
);
964 static void vhost_net_stop(struct vhost_net
*n
, struct socket
**tx_sock
,
965 struct socket
**rx_sock
)
967 *tx_sock
= vhost_net_stop_vq(n
, &n
->vqs
[VHOST_NET_VQ_TX
].vq
);
968 *rx_sock
= vhost_net_stop_vq(n
, &n
->vqs
[VHOST_NET_VQ_RX
].vq
);
971 static void vhost_net_flush_vq(struct vhost_net
*n
, int index
)
973 vhost_poll_flush(n
->poll
+ index
);
974 vhost_poll_flush(&n
->vqs
[index
].vq
.poll
);
977 static void vhost_net_flush(struct vhost_net
*n
)
979 vhost_net_flush_vq(n
, VHOST_NET_VQ_TX
);
980 vhost_net_flush_vq(n
, VHOST_NET_VQ_RX
);
981 if (n
->vqs
[VHOST_NET_VQ_TX
].ubufs
) {
982 mutex_lock(&n
->vqs
[VHOST_NET_VQ_TX
].vq
.mutex
);
984 mutex_unlock(&n
->vqs
[VHOST_NET_VQ_TX
].vq
.mutex
);
985 /* Wait for all lower device DMAs done. */
986 vhost_net_ubuf_put_and_wait(n
->vqs
[VHOST_NET_VQ_TX
].ubufs
);
987 mutex_lock(&n
->vqs
[VHOST_NET_VQ_TX
].vq
.mutex
);
989 atomic_set(&n
->vqs
[VHOST_NET_VQ_TX
].ubufs
->refcount
, 1);
990 mutex_unlock(&n
->vqs
[VHOST_NET_VQ_TX
].vq
.mutex
);
994 static int vhost_net_release(struct inode
*inode
, struct file
*f
)
996 struct vhost_net
*n
= f
->private_data
;
997 struct socket
*tx_sock
;
998 struct socket
*rx_sock
;
1000 vhost_net_stop(n
, &tx_sock
, &rx_sock
);
1002 vhost_dev_stop(&n
->dev
);
1003 vhost_dev_cleanup(&n
->dev
, false);
1004 vhost_net_vq_reset(n
);
1006 sockfd_put(tx_sock
);
1008 sockfd_put(rx_sock
);
1009 /* Make sure no callbacks are outstanding */
1010 synchronize_rcu_bh();
1011 /* We do an extra flush before freeing memory,
1012 * since jobs can re-queue themselves. */
1014 kfree(n
->vqs
[VHOST_NET_VQ_RX
].rxq
.queue
);
1020 static struct socket
*get_raw_socket(int fd
)
1023 struct sockaddr_ll sa
;
1024 char buf
[MAX_ADDR_LEN
];
1026 int uaddr_len
= sizeof uaddr
, r
;
1027 struct socket
*sock
= sockfd_lookup(fd
, &r
);
1030 return ERR_PTR(-ENOTSOCK
);
1032 /* Parameter checking */
1033 if (sock
->sk
->sk_type
!= SOCK_RAW
) {
1034 r
= -ESOCKTNOSUPPORT
;
1038 r
= sock
->ops
->getname(sock
, (struct sockaddr
*)&uaddr
.sa
,
1043 if (uaddr
.sa
.sll_family
!= AF_PACKET
) {
1053 static struct skb_array
*get_tap_skb_array(int fd
)
1055 struct skb_array
*array
;
1056 struct file
*file
= fget(fd
);
1060 array
= tun_get_skb_array(file
);
1063 array
= tap_get_skb_array(file
);
1072 static struct socket
*get_tap_socket(int fd
)
1074 struct file
*file
= fget(fd
);
1075 struct socket
*sock
;
1078 return ERR_PTR(-EBADF
);
1079 sock
= tun_get_socket(file
);
1082 sock
= tap_get_socket(file
);
1088 static struct socket
*get_socket(int fd
)
1090 struct socket
*sock
;
1092 /* special case to disable backend */
1095 sock
= get_raw_socket(fd
);
1098 sock
= get_tap_socket(fd
);
1101 return ERR_PTR(-ENOTSOCK
);
1104 static long vhost_net_set_backend(struct vhost_net
*n
, unsigned index
, int fd
)
1106 struct socket
*sock
, *oldsock
;
1107 struct vhost_virtqueue
*vq
;
1108 struct vhost_net_virtqueue
*nvq
;
1109 struct vhost_net_ubuf_ref
*ubufs
, *oldubufs
= NULL
;
1112 mutex_lock(&n
->dev
.mutex
);
1113 r
= vhost_dev_check_owner(&n
->dev
);
1117 if (index
>= VHOST_NET_VQ_MAX
) {
1121 vq
= &n
->vqs
[index
].vq
;
1122 nvq
= &n
->vqs
[index
];
1123 mutex_lock(&vq
->mutex
);
1125 /* Verify that ring has been setup correctly. */
1126 if (!vhost_vq_access_ok(vq
)) {
1130 sock
= get_socket(fd
);
1136 /* start polling new socket */
1137 oldsock
= vq
->private_data
;
1138 if (sock
!= oldsock
) {
1139 ubufs
= vhost_net_ubuf_alloc(vq
,
1140 sock
&& vhost_sock_zcopy(sock
));
1141 if (IS_ERR(ubufs
)) {
1146 vhost_net_disable_vq(n
, vq
);
1147 vq
->private_data
= sock
;
1148 vhost_net_buf_unproduce(nvq
);
1149 if (index
== VHOST_NET_VQ_RX
)
1150 nvq
->rx_array
= get_tap_skb_array(fd
);
1151 r
= vhost_vq_init_access(vq
);
1154 r
= vhost_net_enable_vq(n
, vq
);
1158 oldubufs
= nvq
->ubufs
;
1162 n
->tx_zcopy_err
= 0;
1163 n
->tx_flush
= false;
1166 mutex_unlock(&vq
->mutex
);
1169 vhost_net_ubuf_put_wait_and_free(oldubufs
);
1170 mutex_lock(&vq
->mutex
);
1171 vhost_zerocopy_signal_used(n
, vq
);
1172 mutex_unlock(&vq
->mutex
);
1176 vhost_net_flush_vq(n
, index
);
1177 sockfd_put(oldsock
);
1180 mutex_unlock(&n
->dev
.mutex
);
1184 vq
->private_data
= oldsock
;
1185 vhost_net_enable_vq(n
, vq
);
1187 vhost_net_ubuf_put_wait_and_free(ubufs
);
1191 mutex_unlock(&vq
->mutex
);
1193 mutex_unlock(&n
->dev
.mutex
);
1197 static long vhost_net_reset_owner(struct vhost_net
*n
)
1199 struct socket
*tx_sock
= NULL
;
1200 struct socket
*rx_sock
= NULL
;
1202 struct vhost_umem
*umem
;
1204 mutex_lock(&n
->dev
.mutex
);
1205 err
= vhost_dev_check_owner(&n
->dev
);
1208 umem
= vhost_dev_reset_owner_prepare();
1213 vhost_net_stop(n
, &tx_sock
, &rx_sock
);
1215 vhost_dev_stop(&n
->dev
);
1216 vhost_dev_reset_owner(&n
->dev
, umem
);
1217 vhost_net_vq_reset(n
);
1219 mutex_unlock(&n
->dev
.mutex
);
1221 sockfd_put(tx_sock
);
1223 sockfd_put(rx_sock
);
1227 static int vhost_net_set_features(struct vhost_net
*n
, u64 features
)
1229 size_t vhost_hlen
, sock_hlen
, hdr_len
;
1232 hdr_len
= (features
& ((1ULL << VIRTIO_NET_F_MRG_RXBUF
) |
1233 (1ULL << VIRTIO_F_VERSION_1
))) ?
1234 sizeof(struct virtio_net_hdr_mrg_rxbuf
) :
1235 sizeof(struct virtio_net_hdr
);
1236 if (features
& (1 << VHOST_NET_F_VIRTIO_NET_HDR
)) {
1237 /* vhost provides vnet_hdr */
1238 vhost_hlen
= hdr_len
;
1241 /* socket provides vnet_hdr */
1243 sock_hlen
= hdr_len
;
1245 mutex_lock(&n
->dev
.mutex
);
1246 if ((features
& (1 << VHOST_F_LOG_ALL
)) &&
1247 !vhost_log_access_ok(&n
->dev
))
1250 if ((features
& (1ULL << VIRTIO_F_IOMMU_PLATFORM
))) {
1251 if (vhost_init_device_iotlb(&n
->dev
, true))
1255 for (i
= 0; i
< VHOST_NET_VQ_MAX
; ++i
) {
1256 mutex_lock(&n
->vqs
[i
].vq
.mutex
);
1257 n
->vqs
[i
].vq
.acked_features
= features
;
1258 n
->vqs
[i
].vhost_hlen
= vhost_hlen
;
1259 n
->vqs
[i
].sock_hlen
= sock_hlen
;
1260 mutex_unlock(&n
->vqs
[i
].vq
.mutex
);
1262 mutex_unlock(&n
->dev
.mutex
);
1266 mutex_unlock(&n
->dev
.mutex
);
1270 static long vhost_net_set_owner(struct vhost_net
*n
)
1274 mutex_lock(&n
->dev
.mutex
);
1275 if (vhost_dev_has_owner(&n
->dev
)) {
1279 r
= vhost_net_set_ubuf_info(n
);
1282 r
= vhost_dev_set_owner(&n
->dev
);
1284 vhost_net_clear_ubuf_info(n
);
1287 mutex_unlock(&n
->dev
.mutex
);
1291 static long vhost_net_ioctl(struct file
*f
, unsigned int ioctl
,
1294 struct vhost_net
*n
= f
->private_data
;
1295 void __user
*argp
= (void __user
*)arg
;
1296 u64 __user
*featurep
= argp
;
1297 struct vhost_vring_file backend
;
1302 case VHOST_NET_SET_BACKEND
:
1303 if (copy_from_user(&backend
, argp
, sizeof backend
))
1305 return vhost_net_set_backend(n
, backend
.index
, backend
.fd
);
1306 case VHOST_GET_FEATURES
:
1307 features
= VHOST_NET_FEATURES
;
1308 if (copy_to_user(featurep
, &features
, sizeof features
))
1311 case VHOST_SET_FEATURES
:
1312 if (copy_from_user(&features
, featurep
, sizeof features
))
1314 if (features
& ~VHOST_NET_FEATURES
)
1316 return vhost_net_set_features(n
, features
);
1317 case VHOST_RESET_OWNER
:
1318 return vhost_net_reset_owner(n
);
1319 case VHOST_SET_OWNER
:
1320 return vhost_net_set_owner(n
);
1322 mutex_lock(&n
->dev
.mutex
);
1323 r
= vhost_dev_ioctl(&n
->dev
, ioctl
, argp
);
1324 if (r
== -ENOIOCTLCMD
)
1325 r
= vhost_vring_ioctl(&n
->dev
, ioctl
, argp
);
1328 mutex_unlock(&n
->dev
.mutex
);
1333 #ifdef CONFIG_COMPAT
1334 static long vhost_net_compat_ioctl(struct file
*f
, unsigned int ioctl
,
1337 return vhost_net_ioctl(f
, ioctl
, (unsigned long)compat_ptr(arg
));
1341 static ssize_t
vhost_net_chr_read_iter(struct kiocb
*iocb
, struct iov_iter
*to
)
1343 struct file
*file
= iocb
->ki_filp
;
1344 struct vhost_net
*n
= file
->private_data
;
1345 struct vhost_dev
*dev
= &n
->dev
;
1346 int noblock
= file
->f_flags
& O_NONBLOCK
;
1348 return vhost_chr_read_iter(dev
, to
, noblock
);
1351 static ssize_t
vhost_net_chr_write_iter(struct kiocb
*iocb
,
1352 struct iov_iter
*from
)
1354 struct file
*file
= iocb
->ki_filp
;
1355 struct vhost_net
*n
= file
->private_data
;
1356 struct vhost_dev
*dev
= &n
->dev
;
1358 return vhost_chr_write_iter(dev
, from
);
1361 static unsigned int vhost_net_chr_poll(struct file
*file
, poll_table
*wait
)
1363 struct vhost_net
*n
= file
->private_data
;
1364 struct vhost_dev
*dev
= &n
->dev
;
1366 return vhost_chr_poll(file
, dev
, wait
);
1369 static const struct file_operations vhost_net_fops
= {
1370 .owner
= THIS_MODULE
,
1371 .release
= vhost_net_release
,
1372 .read_iter
= vhost_net_chr_read_iter
,
1373 .write_iter
= vhost_net_chr_write_iter
,
1374 .poll
= vhost_net_chr_poll
,
1375 .unlocked_ioctl
= vhost_net_ioctl
,
1376 #ifdef CONFIG_COMPAT
1377 .compat_ioctl
= vhost_net_compat_ioctl
,
1379 .open
= vhost_net_open
,
1380 .llseek
= noop_llseek
,
1383 static struct miscdevice vhost_net_misc
= {
1384 .minor
= VHOST_NET_MINOR
,
1385 .name
= "vhost-net",
1386 .fops
= &vhost_net_fops
,
1389 static int vhost_net_init(void)
1391 if (experimental_zcopytx
)
1392 vhost_net_enable_zcopy(VHOST_NET_VQ_TX
);
1393 return misc_register(&vhost_net_misc
);
1395 module_init(vhost_net_init
);
1397 static void vhost_net_exit(void)
1399 misc_deregister(&vhost_net_misc
);
1401 module_exit(vhost_net_exit
);
1403 MODULE_VERSION("0.0.1");
1404 MODULE_LICENSE("GPL v2");
1405 MODULE_AUTHOR("Michael S. Tsirkin");
1406 MODULE_DESCRIPTION("Host kernel accelerator for virtio net");
1407 MODULE_ALIAS_MISCDEV(VHOST_NET_MINOR
);
1408 MODULE_ALIAS("devname:vhost-net");