1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * virtio transport for vsock 4 * 5 * Copyright (C) 2013-2015 Red Hat, Inc. 6 * Author: Asias He <asias@redhat.com> 7 * Stefan Hajnoczi <stefanha@redhat.com> 8 * 9 * Some of the code is take from Gerd Hoffmann <kraxel@redhat.com>'s 10 * early virtio-vsock proof-of-concept bits. 11 */ 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> 20 #include <net/sock.h> 21 #include <linux/mutex.h> 22 #include <net/af_vsock.h> 23 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 */ 27 static struct virtio_transport virtio_transport; /* forward declaration */ 28 29 struct virtio_vsock { 30 struct virtio_device *vdev; 31 struct virtqueue *vqs[VSOCK_VQ_MAX]; 32 33 /* Virtqueue processing is deferred to a workqueue */ 34 struct work_struct tx_work; 35 struct work_struct rx_work; 36 struct work_struct event_work; 37 38 /* The following fields are protected by tx_lock. vqs[VSOCK_VQ_TX] 39 * must be accessed with tx_lock held. 40 */ 41 struct mutex tx_lock; 42 bool tx_run; 43 44 struct work_struct send_pkt_work; 45 struct sk_buff_head send_pkt_queue; 46 47 atomic_t queued_replies; 48 49 /* The following fields are protected by rx_lock. vqs[VSOCK_VQ_RX] 50 * must be accessed with rx_lock held. 51 */ 52 struct mutex rx_lock; 53 bool rx_run; 54 int rx_buf_nr; 55 int rx_buf_max_nr; 56 57 /* The following fields are protected by event_lock. 58 * vqs[VSOCK_VQ_EVENT] must be accessed with event_lock held. 59 */ 60 struct mutex event_lock; 61 bool event_run; 62 struct virtio_vsock_event event_list[8]; 63 64 u32 guest_cid; 65 bool seqpacket_allow; 66 }; 67 68 static u32 virtio_transport_get_local_cid(void) 69 { 70 struct virtio_vsock *vsock; 71 u32 ret; 72 73 rcu_read_lock(); 74 vsock = rcu_dereference(the_virtio_vsock); 75 if (!vsock) { 76 ret = VMADDR_CID_ANY; 77 goto out_rcu; 78 } 79 80 ret = vsock->guest_cid; 81 out_rcu: 82 rcu_read_unlock(); 83 return ret; 84 } 85 86 static void 87 virtio_transport_send_pkt_work(struct work_struct *work) 88 { 89 struct virtio_vsock *vsock = 90 container_of(work, struct virtio_vsock, send_pkt_work); 91 struct virtqueue *vq; 92 bool added = false; 93 bool restart_rx = false; 94 95 mutex_lock(&vsock->tx_lock); 96 97 if (!vsock->tx_run) 98 goto out; 99 100 vq = vsock->vqs[VSOCK_VQ_TX]; 101 102 for (;;) { 103 struct scatterlist hdr, buf, *sgs[2]; 104 int ret, in_sg = 0, out_sg = 0; 105 struct sk_buff *skb; 106 bool reply; 107 108 skb = virtio_vsock_skb_dequeue(&vsock->send_pkt_queue); 109 if (!skb) 110 break; 111 112 virtio_transport_deliver_tap_pkt(skb); 113 reply = virtio_vsock_skb_reply(skb); 114 115 sg_init_one(&hdr, virtio_vsock_hdr(skb), sizeof(*virtio_vsock_hdr(skb))); 116 sgs[out_sg++] = &hdr; 117 if (skb->len > 0) { 118 sg_init_one(&buf, skb->data, skb->len); 119 sgs[out_sg++] = &buf; 120 } 121 122 ret = virtqueue_add_sgs(vq, sgs, out_sg, in_sg, skb, GFP_KERNEL); 123 /* Usually this means that there is no more space available in 124 * the vq 125 */ 126 if (ret < 0) { 127 virtio_vsock_skb_queue_head(&vsock->send_pkt_queue, skb); 128 break; 129 } 130 131 if (reply) { 132 struct virtqueue *rx_vq = vsock->vqs[VSOCK_VQ_RX]; 133 int val; 134 135 val = atomic_dec_return(&vsock->queued_replies); 136 137 /* Do we now have resources to resume rx processing? */ 138 if (val + 1 == virtqueue_get_vring_size(rx_vq)) 139 restart_rx = true; 140 } 141 142 added = true; 143 } 144 145 if (added) 146 virtqueue_kick(vq); 147 148 out: 149 mutex_unlock(&vsock->tx_lock); 150 151 if (restart_rx) 152 queue_work(virtio_vsock_workqueue, &vsock->rx_work); 153 } 154 155 static int 156 virtio_transport_send_pkt(struct sk_buff *skb) 157 { 158 struct virtio_vsock_hdr *hdr; 159 struct virtio_vsock *vsock; 160 int len = skb->len; 161 162 hdr = virtio_vsock_hdr(skb); 163 164 rcu_read_lock(); 165 vsock = rcu_dereference(the_virtio_vsock); 166 if (!vsock) { 167 kfree_skb(skb); 168 len = -ENODEV; 169 goto out_rcu; 170 } 171 172 if (le64_to_cpu(hdr->dst_cid) == vsock->guest_cid) { 173 kfree_skb(skb); 174 len = -ENODEV; 175 goto out_rcu; 176 } 177 178 if (virtio_vsock_skb_reply(skb)) 179 atomic_inc(&vsock->queued_replies); 180 181 virtio_vsock_skb_queue_tail(&vsock->send_pkt_queue, skb); 182 queue_work(virtio_vsock_workqueue, &vsock->send_pkt_work); 183 184 out_rcu: 185 rcu_read_unlock(); 186 return len; 187 } 188 189 static int 190 virtio_transport_cancel_pkt(struct vsock_sock *vsk) 191 { 192 struct virtio_vsock *vsock; 193 int cnt = 0, ret; 194 195 rcu_read_lock(); 196 vsock = rcu_dereference(the_virtio_vsock); 197 if (!vsock) { 198 ret = -ENODEV; 199 goto out_rcu; 200 } 201 202 cnt = virtio_transport_purge_skbs(vsk, &vsock->send_pkt_queue); 203 204 if (cnt) { 205 struct virtqueue *rx_vq = vsock->vqs[VSOCK_VQ_RX]; 206 int new_cnt; 207 208 new_cnt = atomic_sub_return(cnt, &vsock->queued_replies); 209 if (new_cnt + cnt >= virtqueue_get_vring_size(rx_vq) && 210 new_cnt < virtqueue_get_vring_size(rx_vq)) 211 queue_work(virtio_vsock_workqueue, &vsock->rx_work); 212 } 213 214 ret = 0; 215 216 out_rcu: 217 rcu_read_unlock(); 218 return ret; 219 } 220 221 static void virtio_vsock_rx_fill(struct virtio_vsock *vsock) 222 { 223 int total_len = VIRTIO_VSOCK_DEFAULT_RX_BUF_SIZE + VIRTIO_VSOCK_SKB_HEADROOM; 224 struct scatterlist pkt, *p; 225 struct virtqueue *vq; 226 struct sk_buff *skb; 227 int ret; 228 229 vq = vsock->vqs[VSOCK_VQ_RX]; 230 231 do { 232 skb = virtio_vsock_alloc_skb(total_len, GFP_KERNEL); 233 if (!skb) 234 break; 235 236 memset(skb->head, 0, VIRTIO_VSOCK_SKB_HEADROOM); 237 sg_init_one(&pkt, virtio_vsock_hdr(skb), total_len); 238 p = &pkt; 239 ret = virtqueue_add_sgs(vq, &p, 0, 1, skb, GFP_KERNEL); 240 if (ret < 0) { 241 kfree_skb(skb); 242 break; 243 } 244 245 vsock->rx_buf_nr++; 246 } while (vq->num_free); 247 if (vsock->rx_buf_nr > vsock->rx_buf_max_nr) 248 vsock->rx_buf_max_nr = vsock->rx_buf_nr; 249 virtqueue_kick(vq); 250 } 251 252 static void virtio_transport_tx_work(struct work_struct *work) 253 { 254 struct virtio_vsock *vsock = 255 container_of(work, struct virtio_vsock, tx_work); 256 struct virtqueue *vq; 257 bool added = false; 258 259 vq = vsock->vqs[VSOCK_VQ_TX]; 260 mutex_lock(&vsock->tx_lock); 261 262 if (!vsock->tx_run) 263 goto out; 264 265 do { 266 struct sk_buff *skb; 267 unsigned int len; 268 269 virtqueue_disable_cb(vq); 270 while ((skb = virtqueue_get_buf(vq, &len)) != NULL) { 271 consume_skb(skb); 272 added = true; 273 } 274 } while (!virtqueue_enable_cb(vq)); 275 276 out: 277 mutex_unlock(&vsock->tx_lock); 278 279 if (added) 280 queue_work(virtio_vsock_workqueue, &vsock->send_pkt_work); 281 } 282 283 /* Is there space left for replies to rx packets? */ 284 static bool virtio_transport_more_replies(struct virtio_vsock *vsock) 285 { 286 struct virtqueue *vq = vsock->vqs[VSOCK_VQ_RX]; 287 int val; 288 289 smp_rmb(); /* paired with atomic_inc() and atomic_dec_return() */ 290 val = atomic_read(&vsock->queued_replies); 291 292 return val < virtqueue_get_vring_size(vq); 293 } 294 295 /* event_lock must be held */ 296 static int virtio_vsock_event_fill_one(struct virtio_vsock *vsock, 297 struct virtio_vsock_event *event) 298 { 299 struct scatterlist sg; 300 struct virtqueue *vq; 301 302 vq = vsock->vqs[VSOCK_VQ_EVENT]; 303 304 sg_init_one(&sg, event, sizeof(*event)); 305 306 return virtqueue_add_inbuf(vq, &sg, 1, event, GFP_KERNEL); 307 } 308 309 /* event_lock must be held */ 310 static void virtio_vsock_event_fill(struct virtio_vsock *vsock) 311 { 312 size_t i; 313 314 for (i = 0; i < ARRAY_SIZE(vsock->event_list); i++) { 315 struct virtio_vsock_event *event = &vsock->event_list[i]; 316 317 virtio_vsock_event_fill_one(vsock, event); 318 } 319 320 virtqueue_kick(vsock->vqs[VSOCK_VQ_EVENT]); 321 } 322 323 static void virtio_vsock_reset_sock(struct sock *sk) 324 { 325 /* vmci_transport.c doesn't take sk_lock here either. At least we're 326 * under vsock_table_lock so the sock cannot disappear while we're 327 * executing. 328 */ 329 330 sk->sk_state = TCP_CLOSE; 331 sk->sk_err = ECONNRESET; 332 sk_error_report(sk); 333 } 334 335 static void virtio_vsock_update_guest_cid(struct virtio_vsock *vsock) 336 { 337 struct virtio_device *vdev = vsock->vdev; 338 __le64 guest_cid; 339 340 vdev->config->get(vdev, offsetof(struct virtio_vsock_config, guest_cid), 341 &guest_cid, sizeof(guest_cid)); 342 vsock->guest_cid = le64_to_cpu(guest_cid); 343 } 344 345 /* event_lock must be held */ 346 static void virtio_vsock_event_handle(struct virtio_vsock *vsock, 347 struct virtio_vsock_event *event) 348 { 349 switch (le32_to_cpu(event->id)) { 350 case VIRTIO_VSOCK_EVENT_TRANSPORT_RESET: 351 virtio_vsock_update_guest_cid(vsock); 352 vsock_for_each_connected_socket(&virtio_transport.transport, 353 virtio_vsock_reset_sock); 354 break; 355 } 356 } 357 358 static void virtio_transport_event_work(struct work_struct *work) 359 { 360 struct virtio_vsock *vsock = 361 container_of(work, struct virtio_vsock, event_work); 362 struct virtqueue *vq; 363 364 vq = vsock->vqs[VSOCK_VQ_EVENT]; 365 366 mutex_lock(&vsock->event_lock); 367 368 if (!vsock->event_run) 369 goto out; 370 371 do { 372 struct virtio_vsock_event *event; 373 unsigned int len; 374 375 virtqueue_disable_cb(vq); 376 while ((event = virtqueue_get_buf(vq, &len)) != NULL) { 377 if (len == sizeof(*event)) 378 virtio_vsock_event_handle(vsock, event); 379 380 virtio_vsock_event_fill_one(vsock, event); 381 } 382 } while (!virtqueue_enable_cb(vq)); 383 384 virtqueue_kick(vsock->vqs[VSOCK_VQ_EVENT]); 385 out: 386 mutex_unlock(&vsock->event_lock); 387 } 388 389 static void virtio_vsock_event_done(struct virtqueue *vq) 390 { 391 struct virtio_vsock *vsock = vq->vdev->priv; 392 393 if (!vsock) 394 return; 395 queue_work(virtio_vsock_workqueue, &vsock->event_work); 396 } 397 398 static void virtio_vsock_tx_done(struct virtqueue *vq) 399 { 400 struct virtio_vsock *vsock = vq->vdev->priv; 401 402 if (!vsock) 403 return; 404 queue_work(virtio_vsock_workqueue, &vsock->tx_work); 405 } 406 407 static void virtio_vsock_rx_done(struct virtqueue *vq) 408 { 409 struct virtio_vsock *vsock = vq->vdev->priv; 410 411 if (!vsock) 412 return; 413 queue_work(virtio_vsock_workqueue, &vsock->rx_work); 414 } 415 416 static bool virtio_transport_seqpacket_allow(u32 remote_cid); 417 418 static struct virtio_transport virtio_transport = { 419 .transport = { 420 .module = THIS_MODULE, 421 422 .get_local_cid = virtio_transport_get_local_cid, 423 424 .init = virtio_transport_do_socket_init, 425 .destruct = virtio_transport_destruct, 426 .release = virtio_transport_release, 427 .connect = virtio_transport_connect, 428 .shutdown = virtio_transport_shutdown, 429 .cancel_pkt = virtio_transport_cancel_pkt, 430 431 .dgram_bind = virtio_transport_dgram_bind, 432 .dgram_dequeue = virtio_transport_dgram_dequeue, 433 .dgram_enqueue = virtio_transport_dgram_enqueue, 434 .dgram_allow = virtio_transport_dgram_allow, 435 436 .stream_dequeue = virtio_transport_stream_dequeue, 437 .stream_enqueue = virtio_transport_stream_enqueue, 438 .stream_has_data = virtio_transport_stream_has_data, 439 .stream_has_space = virtio_transport_stream_has_space, 440 .stream_rcvhiwat = virtio_transport_stream_rcvhiwat, 441 .stream_is_active = virtio_transport_stream_is_active, 442 .stream_allow = virtio_transport_stream_allow, 443 444 .seqpacket_dequeue = virtio_transport_seqpacket_dequeue, 445 .seqpacket_enqueue = virtio_transport_seqpacket_enqueue, 446 .seqpacket_allow = virtio_transport_seqpacket_allow, 447 .seqpacket_has_data = virtio_transport_seqpacket_has_data, 448 449 .notify_poll_in = virtio_transport_notify_poll_in, 450 .notify_poll_out = virtio_transport_notify_poll_out, 451 .notify_recv_init = virtio_transport_notify_recv_init, 452 .notify_recv_pre_block = virtio_transport_notify_recv_pre_block, 453 .notify_recv_pre_dequeue = virtio_transport_notify_recv_pre_dequeue, 454 .notify_recv_post_dequeue = virtio_transport_notify_recv_post_dequeue, 455 .notify_send_init = virtio_transport_notify_send_init, 456 .notify_send_pre_block = virtio_transport_notify_send_pre_block, 457 .notify_send_pre_enqueue = virtio_transport_notify_send_pre_enqueue, 458 .notify_send_post_enqueue = virtio_transport_notify_send_post_enqueue, 459 .notify_buffer_size = virtio_transport_notify_buffer_size, 460 }, 461 462 .send_pkt = virtio_transport_send_pkt, 463 }; 464 465 static bool virtio_transport_seqpacket_allow(u32 remote_cid) 466 { 467 struct virtio_vsock *vsock; 468 bool seqpacket_allow; 469 470 seqpacket_allow = false; 471 rcu_read_lock(); 472 vsock = rcu_dereference(the_virtio_vsock); 473 if (vsock) 474 seqpacket_allow = vsock->seqpacket_allow; 475 rcu_read_unlock(); 476 477 return seqpacket_allow; 478 } 479 480 static void virtio_transport_rx_work(struct work_struct *work) 481 { 482 struct virtio_vsock *vsock = 483 container_of(work, struct virtio_vsock, rx_work); 484 struct virtqueue *vq; 485 486 vq = vsock->vqs[VSOCK_VQ_RX]; 487 488 mutex_lock(&vsock->rx_lock); 489 490 if (!vsock->rx_run) 491 goto out; 492 493 do { 494 virtqueue_disable_cb(vq); 495 for (;;) { 496 struct sk_buff *skb; 497 unsigned int len; 498 499 if (!virtio_transport_more_replies(vsock)) { 500 /* Stop rx until the device processes already 501 * pending replies. Leave rx virtqueue 502 * callbacks disabled. 503 */ 504 goto out; 505 } 506 507 skb = virtqueue_get_buf(vq, &len); 508 if (!skb) 509 break; 510 511 vsock->rx_buf_nr--; 512 513 /* Drop short/long packets */ 514 if (unlikely(len < sizeof(struct virtio_vsock_hdr) || 515 len > virtio_vsock_skb_len(skb))) { 516 kfree_skb(skb); 517 continue; 518 } 519 520 virtio_vsock_skb_rx_put(skb); 521 virtio_transport_deliver_tap_pkt(skb); 522 virtio_transport_recv_pkt(&virtio_transport, skb); 523 } 524 } while (!virtqueue_enable_cb(vq)); 525 526 out: 527 if (vsock->rx_buf_nr < vsock->rx_buf_max_nr / 2) 528 virtio_vsock_rx_fill(vsock); 529 mutex_unlock(&vsock->rx_lock); 530 } 531 532 static int virtio_vsock_vqs_init(struct virtio_vsock *vsock) 533 { 534 struct virtio_device *vdev = vsock->vdev; 535 static const char * const names[] = { 536 "rx", 537 "tx", 538 "event", 539 }; 540 vq_callback_t *callbacks[] = { 541 virtio_vsock_rx_done, 542 virtio_vsock_tx_done, 543 virtio_vsock_event_done, 544 }; 545 int ret; 546 547 ret = virtio_find_vqs(vdev, VSOCK_VQ_MAX, vsock->vqs, callbacks, names, 548 NULL); 549 if (ret < 0) 550 return ret; 551 552 virtio_vsock_update_guest_cid(vsock); 553 554 virtio_device_ready(vdev); 555 556 mutex_lock(&vsock->tx_lock); 557 vsock->tx_run = true; 558 mutex_unlock(&vsock->tx_lock); 559 560 mutex_lock(&vsock->rx_lock); 561 virtio_vsock_rx_fill(vsock); 562 vsock->rx_run = true; 563 mutex_unlock(&vsock->rx_lock); 564 565 mutex_lock(&vsock->event_lock); 566 virtio_vsock_event_fill(vsock); 567 vsock->event_run = true; 568 mutex_unlock(&vsock->event_lock); 569 570 return 0; 571 } 572 573 static void virtio_vsock_vqs_del(struct virtio_vsock *vsock) 574 { 575 struct virtio_device *vdev = vsock->vdev; 576 struct sk_buff *skb; 577 578 /* Reset all connected sockets when the VQs disappear */ 579 vsock_for_each_connected_socket(&virtio_transport.transport, 580 virtio_vsock_reset_sock); 581 582 /* Stop all work handlers to make sure no one is accessing the device, 583 * so we can safely call virtio_reset_device(). 584 */ 585 mutex_lock(&vsock->rx_lock); 586 vsock->rx_run = false; 587 mutex_unlock(&vsock->rx_lock); 588 589 mutex_lock(&vsock->tx_lock); 590 vsock->tx_run = false; 591 mutex_unlock(&vsock->tx_lock); 592 593 mutex_lock(&vsock->event_lock); 594 vsock->event_run = false; 595 mutex_unlock(&vsock->event_lock); 596 597 /* Flush all device writes and interrupts, device will not use any 598 * more buffers. 599 */ 600 virtio_reset_device(vdev); 601 602 mutex_lock(&vsock->rx_lock); 603 while ((skb = virtqueue_detach_unused_buf(vsock->vqs[VSOCK_VQ_RX]))) 604 kfree_skb(skb); 605 mutex_unlock(&vsock->rx_lock); 606 607 mutex_lock(&vsock->tx_lock); 608 while ((skb = virtqueue_detach_unused_buf(vsock->vqs[VSOCK_VQ_TX]))) 609 kfree_skb(skb); 610 mutex_unlock(&vsock->tx_lock); 611 612 virtio_vsock_skb_queue_purge(&vsock->send_pkt_queue); 613 614 /* Delete virtqueues and flush outstanding callbacks if any */ 615 vdev->config->del_vqs(vdev); 616 } 617 618 static int virtio_vsock_probe(struct virtio_device *vdev) 619 { 620 struct virtio_vsock *vsock = NULL; 621 int ret; 622 623 ret = mutex_lock_interruptible(&the_virtio_vsock_mutex); 624 if (ret) 625 return ret; 626 627 /* Only one virtio-vsock device per guest is supported */ 628 if (rcu_dereference_protected(the_virtio_vsock, 629 lockdep_is_held(&the_virtio_vsock_mutex))) { 630 ret = -EBUSY; 631 goto out; 632 } 633 634 vsock = kzalloc(sizeof(*vsock), GFP_KERNEL); 635 if (!vsock) { 636 ret = -ENOMEM; 637 goto out; 638 } 639 640 vsock->vdev = vdev; 641 642 vsock->rx_buf_nr = 0; 643 vsock->rx_buf_max_nr = 0; 644 atomic_set(&vsock->queued_replies, 0); 645 646 mutex_init(&vsock->tx_lock); 647 mutex_init(&vsock->rx_lock); 648 mutex_init(&vsock->event_lock); 649 skb_queue_head_init(&vsock->send_pkt_queue); 650 INIT_WORK(&vsock->rx_work, virtio_transport_rx_work); 651 INIT_WORK(&vsock->tx_work, virtio_transport_tx_work); 652 INIT_WORK(&vsock->event_work, virtio_transport_event_work); 653 INIT_WORK(&vsock->send_pkt_work, virtio_transport_send_pkt_work); 654 655 if (virtio_has_feature(vdev, VIRTIO_VSOCK_F_SEQPACKET)) 656 vsock->seqpacket_allow = true; 657 658 vdev->priv = vsock; 659 660 ret = virtio_vsock_vqs_init(vsock); 661 if (ret < 0) 662 goto out; 663 664 rcu_assign_pointer(the_virtio_vsock, vsock); 665 666 mutex_unlock(&the_virtio_vsock_mutex); 667 668 return 0; 669 670 out: 671 kfree(vsock); 672 mutex_unlock(&the_virtio_vsock_mutex); 673 return ret; 674 } 675 676 static void virtio_vsock_remove(struct virtio_device *vdev) 677 { 678 struct virtio_vsock *vsock = vdev->priv; 679 680 mutex_lock(&the_virtio_vsock_mutex); 681 682 vdev->priv = NULL; 683 rcu_assign_pointer(the_virtio_vsock, NULL); 684 synchronize_rcu(); 685 686 virtio_vsock_vqs_del(vsock); 687 688 /* Other works can be queued before 'config->del_vqs()', so we flush 689 * all works before to free the vsock object to avoid use after free. 690 */ 691 flush_work(&vsock->rx_work); 692 flush_work(&vsock->tx_work); 693 flush_work(&vsock->event_work); 694 flush_work(&vsock->send_pkt_work); 695 696 mutex_unlock(&the_virtio_vsock_mutex); 697 698 kfree(vsock); 699 } 700 701 #ifdef CONFIG_PM_SLEEP 702 static int virtio_vsock_freeze(struct virtio_device *vdev) 703 { 704 struct virtio_vsock *vsock = vdev->priv; 705 706 mutex_lock(&the_virtio_vsock_mutex); 707 708 rcu_assign_pointer(the_virtio_vsock, NULL); 709 synchronize_rcu(); 710 711 virtio_vsock_vqs_del(vsock); 712 713 mutex_unlock(&the_virtio_vsock_mutex); 714 715 return 0; 716 } 717 718 static int virtio_vsock_restore(struct virtio_device *vdev) 719 { 720 struct virtio_vsock *vsock = vdev->priv; 721 int ret; 722 723 mutex_lock(&the_virtio_vsock_mutex); 724 725 /* Only one virtio-vsock device per guest is supported */ 726 if (rcu_dereference_protected(the_virtio_vsock, 727 lockdep_is_held(&the_virtio_vsock_mutex))) { 728 ret = -EBUSY; 729 goto out; 730 } 731 732 ret = virtio_vsock_vqs_init(vsock); 733 if (ret < 0) 734 goto out; 735 736 rcu_assign_pointer(the_virtio_vsock, vsock); 737 738 out: 739 mutex_unlock(&the_virtio_vsock_mutex); 740 return ret; 741 } 742 #endif /* CONFIG_PM_SLEEP */ 743 744 static struct virtio_device_id id_table[] = { 745 { VIRTIO_ID_VSOCK, VIRTIO_DEV_ANY_ID }, 746 { 0 }, 747 }; 748 749 static unsigned int features[] = { 750 VIRTIO_VSOCK_F_SEQPACKET 751 }; 752 753 static struct virtio_driver virtio_vsock_driver = { 754 .feature_table = features, 755 .feature_table_size = ARRAY_SIZE(features), 756 .driver.name = KBUILD_MODNAME, 757 .driver.owner = THIS_MODULE, 758 .id_table = id_table, 759 .probe = virtio_vsock_probe, 760 .remove = virtio_vsock_remove, 761 #ifdef CONFIG_PM_SLEEP 762 .freeze = virtio_vsock_freeze, 763 .restore = virtio_vsock_restore, 764 #endif 765 }; 766 767 static int __init virtio_vsock_init(void) 768 { 769 int ret; 770 771 virtio_vsock_workqueue = alloc_workqueue("virtio_vsock", 0, 0); 772 if (!virtio_vsock_workqueue) 773 return -ENOMEM; 774 775 ret = vsock_core_register(&virtio_transport.transport, 776 VSOCK_TRANSPORT_F_G2H); 777 if (ret) 778 goto out_wq; 779 780 ret = register_virtio_driver(&virtio_vsock_driver); 781 if (ret) 782 goto out_vci; 783 784 return 0; 785 786 out_vci: 787 vsock_core_unregister(&virtio_transport.transport); 788 out_wq: 789 destroy_workqueue(virtio_vsock_workqueue); 790 return ret; 791 } 792 793 static void __exit virtio_vsock_exit(void) 794 { 795 unregister_virtio_driver(&virtio_vsock_driver); 796 vsock_core_unregister(&virtio_transport.transport); 797 destroy_workqueue(virtio_vsock_workqueue); 798 } 799 800 module_init(virtio_vsock_init); 801 module_exit(virtio_vsock_exit); 802 MODULE_LICENSE("GPL v2"); 803 MODULE_AUTHOR("Asias He"); 804 MODULE_DESCRIPTION("virtio transport for vsock"); 805 MODULE_DEVICE_TABLE(virtio, id_table); 806