1 // SPDX-License-Identifier: GPL-2.0-only
3 * virtio transport for vsock
5 * Copyright (C) 2013-2015 Red Hat, Inc.
6 * Author: Asias He <asias@redhat.com>
7 * Stefan Hajnoczi <stefanha@redhat.com>
9 * Some of the code is take from Gerd Hoffmann <kraxel@redhat.com>'s
10 * early virtio-vsock proof-of-concept bits.
12 #include <linux/spinlock.h>
13 #include <linux/module.h>
14 #include <linux/list.h>
15 #include <linux/atomic.h>
16 #include <linux/virtio.h>
17 #include <linux/virtio_ids.h>
18 #include <linux/virtio_config.h>
19 #include <linux/virtio_vsock.h>
21 #include <linux/mutex.h>
22 #include <net/af_vsock.h>
24 static struct workqueue_struct *virtio_vsock_workqueue;
25 static struct virtio_vsock __rcu *the_virtio_vsock;
26 static DEFINE_MUTEX(the_virtio_vsock_mutex); /* protects the_virtio_vsock */
29 struct virtio_device *vdev;
30 struct virtqueue *vqs[VSOCK_VQ_MAX];
32 /* Virtqueue processing is deferred to a workqueue */
33 struct work_struct tx_work;
34 struct work_struct rx_work;
35 struct work_struct event_work;
37 /* The following fields are protected by tx_lock. vqs[VSOCK_VQ_TX]
38 * must be accessed with tx_lock held.
43 struct work_struct send_pkt_work;
44 spinlock_t send_pkt_list_lock;
45 struct list_head send_pkt_list;
47 atomic_t queued_replies;
49 /* The following fields are protected by rx_lock. vqs[VSOCK_VQ_RX]
50 * must be accessed with rx_lock held.
57 /* The following fields are protected by event_lock.
58 * vqs[VSOCK_VQ_EVENT] must be accessed with event_lock held.
60 struct mutex event_lock;
62 struct virtio_vsock_event event_list[8];
68 static u32 virtio_transport_get_local_cid(void)
70 struct virtio_vsock *vsock;
74 vsock = rcu_dereference(the_virtio_vsock);
80 ret = vsock->guest_cid;
87 virtio_transport_send_pkt_work(struct work_struct *work)
89 struct virtio_vsock *vsock =
90 container_of(work, struct virtio_vsock, send_pkt_work);
93 bool restart_rx = false;
95 mutex_lock(&vsock->tx_lock);
100 vq = vsock->vqs[VSOCK_VQ_TX];
103 struct virtio_vsock_pkt *pkt;
104 struct scatterlist hdr, buf, *sgs[2];
105 int ret, in_sg = 0, out_sg = 0;
108 spin_lock_bh(&vsock->send_pkt_list_lock);
109 if (list_empty(&vsock->send_pkt_list)) {
110 spin_unlock_bh(&vsock->send_pkt_list_lock);
114 pkt = list_first_entry(&vsock->send_pkt_list,
115 struct virtio_vsock_pkt, list);
116 list_del_init(&pkt->list);
117 spin_unlock_bh(&vsock->send_pkt_list_lock);
119 virtio_transport_deliver_tap_pkt(pkt);
123 sg_init_one(&hdr, &pkt->hdr, sizeof(pkt->hdr));
124 sgs[out_sg++] = &hdr;
126 sg_init_one(&buf, pkt->buf, pkt->len);
127 sgs[out_sg++] = &buf;
130 ret = virtqueue_add_sgs(vq, sgs, out_sg, in_sg, pkt, GFP_KERNEL);
131 /* Usually this means that there is no more space available in
135 spin_lock_bh(&vsock->send_pkt_list_lock);
136 list_add(&pkt->list, &vsock->send_pkt_list);
137 spin_unlock_bh(&vsock->send_pkt_list_lock);
142 struct virtqueue *rx_vq = vsock->vqs[VSOCK_VQ_RX];
145 val = atomic_dec_return(&vsock->queued_replies);
147 /* Do we now have resources to resume rx processing? */
148 if (val + 1 == virtqueue_get_vring_size(rx_vq))
159 mutex_unlock(&vsock->tx_lock);
162 queue_work(virtio_vsock_workqueue, &vsock->rx_work);
166 virtio_transport_send_pkt(struct virtio_vsock_pkt *pkt)
168 struct virtio_vsock *vsock;
172 vsock = rcu_dereference(the_virtio_vsock);
174 virtio_transport_free_pkt(pkt);
179 if (le64_to_cpu(pkt->hdr.dst_cid) == vsock->guest_cid) {
180 virtio_transport_free_pkt(pkt);
186 atomic_inc(&vsock->queued_replies);
188 spin_lock_bh(&vsock->send_pkt_list_lock);
189 list_add_tail(&pkt->list, &vsock->send_pkt_list);
190 spin_unlock_bh(&vsock->send_pkt_list_lock);
192 queue_work(virtio_vsock_workqueue, &vsock->send_pkt_work);
200 virtio_transport_cancel_pkt(struct vsock_sock *vsk)
202 struct virtio_vsock *vsock;
203 struct virtio_vsock_pkt *pkt, *n;
208 vsock = rcu_dereference(the_virtio_vsock);
214 spin_lock_bh(&vsock->send_pkt_list_lock);
215 list_for_each_entry_safe(pkt, n, &vsock->send_pkt_list, list) {
218 list_move(&pkt->list, &freeme);
220 spin_unlock_bh(&vsock->send_pkt_list_lock);
222 list_for_each_entry_safe(pkt, n, &freeme, list) {
225 list_del(&pkt->list);
226 virtio_transport_free_pkt(pkt);
230 struct virtqueue *rx_vq = vsock->vqs[VSOCK_VQ_RX];
233 new_cnt = atomic_sub_return(cnt, &vsock->queued_replies);
234 if (new_cnt + cnt >= virtqueue_get_vring_size(rx_vq) &&
235 new_cnt < virtqueue_get_vring_size(rx_vq))
236 queue_work(virtio_vsock_workqueue, &vsock->rx_work);
246 static void virtio_vsock_rx_fill(struct virtio_vsock *vsock)
248 int buf_len = VIRTIO_VSOCK_DEFAULT_RX_BUF_SIZE;
249 struct virtio_vsock_pkt *pkt;
250 struct scatterlist hdr, buf, *sgs[2];
251 struct virtqueue *vq;
254 vq = vsock->vqs[VSOCK_VQ_RX];
257 pkt = kzalloc(sizeof(*pkt), GFP_KERNEL);
261 pkt->buf = kmalloc(buf_len, GFP_KERNEL);
263 virtio_transport_free_pkt(pkt);
267 pkt->buf_len = buf_len;
270 sg_init_one(&hdr, &pkt->hdr, sizeof(pkt->hdr));
273 sg_init_one(&buf, pkt->buf, buf_len);
275 ret = virtqueue_add_sgs(vq, sgs, 0, 2, pkt, GFP_KERNEL);
277 virtio_transport_free_pkt(pkt);
281 } while (vq->num_free);
282 if (vsock->rx_buf_nr > vsock->rx_buf_max_nr)
283 vsock->rx_buf_max_nr = vsock->rx_buf_nr;
287 static void virtio_transport_tx_work(struct work_struct *work)
289 struct virtio_vsock *vsock =
290 container_of(work, struct virtio_vsock, tx_work);
291 struct virtqueue *vq;
294 vq = vsock->vqs[VSOCK_VQ_TX];
295 mutex_lock(&vsock->tx_lock);
301 struct virtio_vsock_pkt *pkt;
304 virtqueue_disable_cb(vq);
305 while ((pkt = virtqueue_get_buf(vq, &len)) != NULL) {
306 virtio_transport_free_pkt(pkt);
309 } while (!virtqueue_enable_cb(vq));
312 mutex_unlock(&vsock->tx_lock);
315 queue_work(virtio_vsock_workqueue, &vsock->send_pkt_work);
318 /* Is there space left for replies to rx packets? */
319 static bool virtio_transport_more_replies(struct virtio_vsock *vsock)
321 struct virtqueue *vq = vsock->vqs[VSOCK_VQ_RX];
324 smp_rmb(); /* paired with atomic_inc() and atomic_dec_return() */
325 val = atomic_read(&vsock->queued_replies);
327 return val < virtqueue_get_vring_size(vq);
330 /* event_lock must be held */
331 static int virtio_vsock_event_fill_one(struct virtio_vsock *vsock,
332 struct virtio_vsock_event *event)
334 struct scatterlist sg;
335 struct virtqueue *vq;
337 vq = vsock->vqs[VSOCK_VQ_EVENT];
339 sg_init_one(&sg, event, sizeof(*event));
341 return virtqueue_add_inbuf(vq, &sg, 1, event, GFP_KERNEL);
344 /* event_lock must be held */
345 static void virtio_vsock_event_fill(struct virtio_vsock *vsock)
349 for (i = 0; i < ARRAY_SIZE(vsock->event_list); i++) {
350 struct virtio_vsock_event *event = &vsock->event_list[i];
352 virtio_vsock_event_fill_one(vsock, event);
355 virtqueue_kick(vsock->vqs[VSOCK_VQ_EVENT]);
358 static void virtio_vsock_reset_sock(struct sock *sk)
360 /* vmci_transport.c doesn't take sk_lock here either. At least we're
361 * under vsock_table_lock so the sock cannot disappear while we're
365 sk->sk_state = TCP_CLOSE;
366 sk->sk_err = ECONNRESET;
370 static void virtio_vsock_update_guest_cid(struct virtio_vsock *vsock)
372 struct virtio_device *vdev = vsock->vdev;
375 vdev->config->get(vdev, offsetof(struct virtio_vsock_config, guest_cid),
376 &guest_cid, sizeof(guest_cid));
377 vsock->guest_cid = le64_to_cpu(guest_cid);
380 /* event_lock must be held */
381 static void virtio_vsock_event_handle(struct virtio_vsock *vsock,
382 struct virtio_vsock_event *event)
384 switch (le32_to_cpu(event->id)) {
385 case VIRTIO_VSOCK_EVENT_TRANSPORT_RESET:
386 virtio_vsock_update_guest_cid(vsock);
387 vsock_for_each_connected_socket(virtio_vsock_reset_sock);
392 static void virtio_transport_event_work(struct work_struct *work)
394 struct virtio_vsock *vsock =
395 container_of(work, struct virtio_vsock, event_work);
396 struct virtqueue *vq;
398 vq = vsock->vqs[VSOCK_VQ_EVENT];
400 mutex_lock(&vsock->event_lock);
402 if (!vsock->event_run)
406 struct virtio_vsock_event *event;
409 virtqueue_disable_cb(vq);
410 while ((event = virtqueue_get_buf(vq, &len)) != NULL) {
411 if (len == sizeof(*event))
412 virtio_vsock_event_handle(vsock, event);
414 virtio_vsock_event_fill_one(vsock, event);
416 } while (!virtqueue_enable_cb(vq));
418 virtqueue_kick(vsock->vqs[VSOCK_VQ_EVENT]);
420 mutex_unlock(&vsock->event_lock);
423 static void virtio_vsock_event_done(struct virtqueue *vq)
425 struct virtio_vsock *vsock = vq->vdev->priv;
429 queue_work(virtio_vsock_workqueue, &vsock->event_work);
432 static void virtio_vsock_tx_done(struct virtqueue *vq)
434 struct virtio_vsock *vsock = vq->vdev->priv;
438 queue_work(virtio_vsock_workqueue, &vsock->tx_work);
441 static void virtio_vsock_rx_done(struct virtqueue *vq)
443 struct virtio_vsock *vsock = vq->vdev->priv;
447 queue_work(virtio_vsock_workqueue, &vsock->rx_work);
450 static bool virtio_transport_seqpacket_allow(u32 remote_cid);
452 static struct virtio_transport virtio_transport = {
454 .module = THIS_MODULE,
456 .get_local_cid = virtio_transport_get_local_cid,
458 .init = virtio_transport_do_socket_init,
459 .destruct = virtio_transport_destruct,
460 .release = virtio_transport_release,
461 .connect = virtio_transport_connect,
462 .shutdown = virtio_transport_shutdown,
463 .cancel_pkt = virtio_transport_cancel_pkt,
465 .dgram_bind = virtio_transport_dgram_bind,
466 .dgram_dequeue = virtio_transport_dgram_dequeue,
467 .dgram_enqueue = virtio_transport_dgram_enqueue,
468 .dgram_allow = virtio_transport_dgram_allow,
470 .stream_dequeue = virtio_transport_stream_dequeue,
471 .stream_enqueue = virtio_transport_stream_enqueue,
472 .stream_has_data = virtio_transport_stream_has_data,
473 .stream_has_space = virtio_transport_stream_has_space,
474 .stream_rcvhiwat = virtio_transport_stream_rcvhiwat,
475 .stream_is_active = virtio_transport_stream_is_active,
476 .stream_allow = virtio_transport_stream_allow,
478 .seqpacket_dequeue = virtio_transport_seqpacket_dequeue,
479 .seqpacket_enqueue = virtio_transport_seqpacket_enqueue,
480 .seqpacket_allow = virtio_transport_seqpacket_allow,
481 .seqpacket_has_data = virtio_transport_seqpacket_has_data,
483 .notify_poll_in = virtio_transport_notify_poll_in,
484 .notify_poll_out = virtio_transport_notify_poll_out,
485 .notify_recv_init = virtio_transport_notify_recv_init,
486 .notify_recv_pre_block = virtio_transport_notify_recv_pre_block,
487 .notify_recv_pre_dequeue = virtio_transport_notify_recv_pre_dequeue,
488 .notify_recv_post_dequeue = virtio_transport_notify_recv_post_dequeue,
489 .notify_send_init = virtio_transport_notify_send_init,
490 .notify_send_pre_block = virtio_transport_notify_send_pre_block,
491 .notify_send_pre_enqueue = virtio_transport_notify_send_pre_enqueue,
492 .notify_send_post_enqueue = virtio_transport_notify_send_post_enqueue,
493 .notify_buffer_size = virtio_transport_notify_buffer_size,
496 .send_pkt = virtio_transport_send_pkt,
499 static bool virtio_transport_seqpacket_allow(u32 remote_cid)
501 struct virtio_vsock *vsock;
502 bool seqpacket_allow;
504 seqpacket_allow = false;
506 vsock = rcu_dereference(the_virtio_vsock);
508 seqpacket_allow = vsock->seqpacket_allow;
511 return seqpacket_allow;
514 static void virtio_transport_rx_work(struct work_struct *work)
516 struct virtio_vsock *vsock =
517 container_of(work, struct virtio_vsock, rx_work);
518 struct virtqueue *vq;
520 vq = vsock->vqs[VSOCK_VQ_RX];
522 mutex_lock(&vsock->rx_lock);
528 virtqueue_disable_cb(vq);
530 struct virtio_vsock_pkt *pkt;
533 if (!virtio_transport_more_replies(vsock)) {
534 /* Stop rx until the device processes already
535 * pending replies. Leave rx virtqueue
536 * callbacks disabled.
541 pkt = virtqueue_get_buf(vq, &len);
548 /* Drop short/long packets */
549 if (unlikely(len < sizeof(pkt->hdr) ||
550 len > sizeof(pkt->hdr) + pkt->len)) {
551 virtio_transport_free_pkt(pkt);
555 pkt->len = len - sizeof(pkt->hdr);
556 virtio_transport_deliver_tap_pkt(pkt);
557 virtio_transport_recv_pkt(&virtio_transport, pkt);
559 } while (!virtqueue_enable_cb(vq));
562 if (vsock->rx_buf_nr < vsock->rx_buf_max_nr / 2)
563 virtio_vsock_rx_fill(vsock);
564 mutex_unlock(&vsock->rx_lock);
567 static int virtio_vsock_probe(struct virtio_device *vdev)
569 vq_callback_t *callbacks[] = {
570 virtio_vsock_rx_done,
571 virtio_vsock_tx_done,
572 virtio_vsock_event_done,
574 static const char * const names[] = {
579 struct virtio_vsock *vsock = NULL;
582 ret = mutex_lock_interruptible(&the_virtio_vsock_mutex);
586 /* Only one virtio-vsock device per guest is supported */
587 if (rcu_dereference_protected(the_virtio_vsock,
588 lockdep_is_held(&the_virtio_vsock_mutex))) {
593 vsock = kzalloc(sizeof(*vsock), GFP_KERNEL);
601 ret = virtio_find_vqs(vsock->vdev, VSOCK_VQ_MAX,
602 vsock->vqs, callbacks, names,
607 virtio_vsock_update_guest_cid(vsock);
609 vsock->rx_buf_nr = 0;
610 vsock->rx_buf_max_nr = 0;
611 atomic_set(&vsock->queued_replies, 0);
613 mutex_init(&vsock->tx_lock);
614 mutex_init(&vsock->rx_lock);
615 mutex_init(&vsock->event_lock);
616 spin_lock_init(&vsock->send_pkt_list_lock);
617 INIT_LIST_HEAD(&vsock->send_pkt_list);
618 INIT_WORK(&vsock->rx_work, virtio_transport_rx_work);
619 INIT_WORK(&vsock->tx_work, virtio_transport_tx_work);
620 INIT_WORK(&vsock->event_work, virtio_transport_event_work);
621 INIT_WORK(&vsock->send_pkt_work, virtio_transport_send_pkt_work);
623 mutex_lock(&vsock->tx_lock);
624 vsock->tx_run = true;
625 mutex_unlock(&vsock->tx_lock);
627 mutex_lock(&vsock->rx_lock);
628 virtio_vsock_rx_fill(vsock);
629 vsock->rx_run = true;
630 mutex_unlock(&vsock->rx_lock);
632 mutex_lock(&vsock->event_lock);
633 virtio_vsock_event_fill(vsock);
634 vsock->event_run = true;
635 mutex_unlock(&vsock->event_lock);
637 if (virtio_has_feature(vdev, VIRTIO_VSOCK_F_SEQPACKET))
638 vsock->seqpacket_allow = true;
641 rcu_assign_pointer(the_virtio_vsock, vsock);
643 mutex_unlock(&the_virtio_vsock_mutex);
649 mutex_unlock(&the_virtio_vsock_mutex);
653 static void virtio_vsock_remove(struct virtio_device *vdev)
655 struct virtio_vsock *vsock = vdev->priv;
656 struct virtio_vsock_pkt *pkt;
658 mutex_lock(&the_virtio_vsock_mutex);
661 rcu_assign_pointer(the_virtio_vsock, NULL);
664 /* Reset all connected sockets when the device disappear */
665 vsock_for_each_connected_socket(virtio_vsock_reset_sock);
667 /* Stop all work handlers to make sure no one is accessing the device,
668 * so we can safely call vdev->config->reset().
670 mutex_lock(&vsock->rx_lock);
671 vsock->rx_run = false;
672 mutex_unlock(&vsock->rx_lock);
674 mutex_lock(&vsock->tx_lock);
675 vsock->tx_run = false;
676 mutex_unlock(&vsock->tx_lock);
678 mutex_lock(&vsock->event_lock);
679 vsock->event_run = false;
680 mutex_unlock(&vsock->event_lock);
682 /* Flush all device writes and interrupts, device will not use any
685 vdev->config->reset(vdev);
687 mutex_lock(&vsock->rx_lock);
688 while ((pkt = virtqueue_detach_unused_buf(vsock->vqs[VSOCK_VQ_RX])))
689 virtio_transport_free_pkt(pkt);
690 mutex_unlock(&vsock->rx_lock);
692 mutex_lock(&vsock->tx_lock);
693 while ((pkt = virtqueue_detach_unused_buf(vsock->vqs[VSOCK_VQ_TX])))
694 virtio_transport_free_pkt(pkt);
695 mutex_unlock(&vsock->tx_lock);
697 spin_lock_bh(&vsock->send_pkt_list_lock);
698 while (!list_empty(&vsock->send_pkt_list)) {
699 pkt = list_first_entry(&vsock->send_pkt_list,
700 struct virtio_vsock_pkt, list);
701 list_del(&pkt->list);
702 virtio_transport_free_pkt(pkt);
704 spin_unlock_bh(&vsock->send_pkt_list_lock);
706 /* Delete virtqueues and flush outstanding callbacks if any */
707 vdev->config->del_vqs(vdev);
709 /* Other works can be queued before 'config->del_vqs()', so we flush
710 * all works before to free the vsock object to avoid use after free.
712 flush_work(&vsock->rx_work);
713 flush_work(&vsock->tx_work);
714 flush_work(&vsock->event_work);
715 flush_work(&vsock->send_pkt_work);
717 mutex_unlock(&the_virtio_vsock_mutex);
722 static struct virtio_device_id id_table[] = {
723 { VIRTIO_ID_VSOCK, VIRTIO_DEV_ANY_ID },
727 static unsigned int features[] = {
728 VIRTIO_VSOCK_F_SEQPACKET
731 static struct virtio_driver virtio_vsock_driver = {
732 .feature_table = features,
733 .feature_table_size = ARRAY_SIZE(features),
734 .driver.name = KBUILD_MODNAME,
735 .driver.owner = THIS_MODULE,
736 .id_table = id_table,
737 .probe = virtio_vsock_probe,
738 .remove = virtio_vsock_remove,
741 static int __init virtio_vsock_init(void)
745 virtio_vsock_workqueue = alloc_workqueue("virtio_vsock", 0, 0);
746 if (!virtio_vsock_workqueue)
749 ret = vsock_core_register(&virtio_transport.transport,
750 VSOCK_TRANSPORT_F_G2H);
754 ret = register_virtio_driver(&virtio_vsock_driver);
761 vsock_core_unregister(&virtio_transport.transport);
763 destroy_workqueue(virtio_vsock_workqueue);
767 static void __exit virtio_vsock_exit(void)
769 unregister_virtio_driver(&virtio_vsock_driver);
770 vsock_core_unregister(&virtio_transport.transport);
771 destroy_workqueue(virtio_vsock_workqueue);
774 module_init(virtio_vsock_init);
775 module_exit(virtio_vsock_exit);
776 MODULE_LICENSE("GPL v2");
777 MODULE_AUTHOR("Asias He");
778 MODULE_DESCRIPTION("virtio transport for vsock");
779 MODULE_DEVICE_TABLE(virtio, id_table);