2 * VMware vSockets Driver
4 * Copyright (C) 2007-2013 VMware, Inc. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation version 2 and no later version.
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 #include <linux/types.h>
17 #include <linux/bitops.h>
18 #include <linux/cred.h>
19 #include <linux/init.h>
21 #include <linux/kernel.h>
22 #include <linux/kmod.h>
23 #include <linux/list.h>
24 #include <linux/miscdevice.h>
25 #include <linux/module.h>
26 #include <linux/mutex.h>
27 #include <linux/net.h>
28 #include <linux/poll.h>
29 #include <linux/skbuff.h>
30 #include <linux/smp.h>
31 #include <linux/socket.h>
32 #include <linux/stddef.h>
33 #include <linux/unistd.h>
34 #include <linux/wait.h>
35 #include <linux/workqueue.h>
37 #include <net/af_vsock.h>
39 #include "vmci_transport_notify.h"
41 static int vmci_transport_recv_dgram_cb(void *data
, struct vmci_datagram
*dg
);
42 static int vmci_transport_recv_stream_cb(void *data
, struct vmci_datagram
*dg
);
43 static void vmci_transport_peer_detach_cb(u32 sub_id
,
44 const struct vmci_event_data
*ed
,
46 static void vmci_transport_recv_pkt_work(struct work_struct
*work
);
47 static void vmci_transport_cleanup(struct work_struct
*work
);
48 static int vmci_transport_recv_listen(struct sock
*sk
,
49 struct vmci_transport_packet
*pkt
);
50 static int vmci_transport_recv_connecting_server(
53 struct vmci_transport_packet
*pkt
);
54 static int vmci_transport_recv_connecting_client(
56 struct vmci_transport_packet
*pkt
);
57 static int vmci_transport_recv_connecting_client_negotiate(
59 struct vmci_transport_packet
*pkt
);
60 static int vmci_transport_recv_connecting_client_invalid(
62 struct vmci_transport_packet
*pkt
);
63 static int vmci_transport_recv_connected(struct sock
*sk
,
64 struct vmci_transport_packet
*pkt
);
65 static bool vmci_transport_old_proto_override(bool *old_pkt_proto
);
66 static u16
vmci_transport_new_proto_supported_versions(void);
67 static bool vmci_transport_proto_to_notify_struct(struct sock
*sk
, u16
*proto
,
70 struct vmci_transport_recv_pkt_info
{
71 struct work_struct work
;
73 struct vmci_transport_packet pkt
;
76 static LIST_HEAD(vmci_transport_cleanup_list
);
77 static DEFINE_SPINLOCK(vmci_transport_cleanup_lock
);
78 static DECLARE_WORK(vmci_transport_cleanup_work
, vmci_transport_cleanup
);
80 static struct vmci_handle vmci_transport_stream_handle
= { VMCI_INVALID_ID
,
82 static u32 vmci_transport_qp_resumed_sub_id
= VMCI_INVALID_ID
;
84 static int PROTOCOL_OVERRIDE
= -1;
86 #define VMCI_TRANSPORT_DEFAULT_QP_SIZE_MIN 128
87 #define VMCI_TRANSPORT_DEFAULT_QP_SIZE 262144
88 #define VMCI_TRANSPORT_DEFAULT_QP_SIZE_MAX 262144
90 /* The default peer timeout indicates how long we will wait for a peer response
91 * to a control message.
93 #define VSOCK_DEFAULT_CONNECT_TIMEOUT (2 * HZ)
95 /* Helper function to convert from a VMCI error code to a VSock error code. */
97 static s32
vmci_transport_error_to_vsock_error(s32 vmci_error
)
100 case VMCI_ERROR_NO_MEM
:
102 case VMCI_ERROR_DUPLICATE_ENTRY
:
103 case VMCI_ERROR_ALREADY_EXISTS
:
105 case VMCI_ERROR_NO_ACCESS
:
107 case VMCI_ERROR_NO_RESOURCES
:
109 case VMCI_ERROR_INVALID_RESOURCE
:
110 return -EHOSTUNREACH
;
111 case VMCI_ERROR_INVALID_ARGS
:
118 static u32
vmci_transport_peer_rid(u32 peer_cid
)
120 if (VMADDR_CID_HYPERVISOR
== peer_cid
)
121 return VMCI_TRANSPORT_HYPERVISOR_PACKET_RID
;
123 return VMCI_TRANSPORT_PACKET_RID
;
127 vmci_transport_packet_init(struct vmci_transport_packet
*pkt
,
128 struct sockaddr_vm
*src
,
129 struct sockaddr_vm
*dst
,
133 struct vmci_transport_waiting_info
*wait
,
135 struct vmci_handle handle
)
137 /* We register the stream control handler as an any cid handle so we
138 * must always send from a source address of VMADDR_CID_ANY
140 pkt
->dg
.src
= vmci_make_handle(VMADDR_CID_ANY
,
141 VMCI_TRANSPORT_PACKET_RID
);
142 pkt
->dg
.dst
= vmci_make_handle(dst
->svm_cid
,
143 vmci_transport_peer_rid(dst
->svm_cid
));
144 pkt
->dg
.payload_size
= sizeof(*pkt
) - sizeof(pkt
->dg
);
145 pkt
->version
= VMCI_TRANSPORT_PACKET_VERSION
;
147 pkt
->src_port
= src
->svm_port
;
148 pkt
->dst_port
= dst
->svm_port
;
149 memset(&pkt
->proto
, 0, sizeof(pkt
->proto
));
150 memset(&pkt
->_reserved2
, 0, sizeof(pkt
->_reserved2
));
153 case VMCI_TRANSPORT_PACKET_TYPE_INVALID
:
157 case VMCI_TRANSPORT_PACKET_TYPE_REQUEST
:
158 case VMCI_TRANSPORT_PACKET_TYPE_NEGOTIATE
:
162 case VMCI_TRANSPORT_PACKET_TYPE_OFFER
:
163 case VMCI_TRANSPORT_PACKET_TYPE_ATTACH
:
164 pkt
->u
.handle
= handle
;
167 case VMCI_TRANSPORT_PACKET_TYPE_WROTE
:
168 case VMCI_TRANSPORT_PACKET_TYPE_READ
:
169 case VMCI_TRANSPORT_PACKET_TYPE_RST
:
173 case VMCI_TRANSPORT_PACKET_TYPE_SHUTDOWN
:
177 case VMCI_TRANSPORT_PACKET_TYPE_WAITING_READ
:
178 case VMCI_TRANSPORT_PACKET_TYPE_WAITING_WRITE
:
179 memcpy(&pkt
->u
.wait
, wait
, sizeof(pkt
->u
.wait
));
182 case VMCI_TRANSPORT_PACKET_TYPE_REQUEST2
:
183 case VMCI_TRANSPORT_PACKET_TYPE_NEGOTIATE2
:
191 vmci_transport_packet_get_addresses(struct vmci_transport_packet
*pkt
,
192 struct sockaddr_vm
*local
,
193 struct sockaddr_vm
*remote
)
195 vsock_addr_init(local
, pkt
->dg
.dst
.context
, pkt
->dst_port
);
196 vsock_addr_init(remote
, pkt
->dg
.src
.context
, pkt
->src_port
);
200 __vmci_transport_send_control_pkt(struct vmci_transport_packet
*pkt
,
201 struct sockaddr_vm
*src
,
202 struct sockaddr_vm
*dst
,
203 enum vmci_transport_packet_type type
,
206 struct vmci_transport_waiting_info
*wait
,
208 struct vmci_handle handle
,
213 vmci_transport_packet_init(pkt
, src
, dst
, type
, size
, mode
, wait
,
215 err
= vmci_datagram_send(&pkt
->dg
);
216 if (convert_error
&& (err
< 0))
217 return vmci_transport_error_to_vsock_error(err
);
223 vmci_transport_reply_control_pkt_fast(struct vmci_transport_packet
*pkt
,
224 enum vmci_transport_packet_type type
,
227 struct vmci_transport_waiting_info
*wait
,
228 struct vmci_handle handle
)
230 struct vmci_transport_packet reply
;
231 struct sockaddr_vm src
, dst
;
233 if (pkt
->type
== VMCI_TRANSPORT_PACKET_TYPE_RST
) {
236 vmci_transport_packet_get_addresses(pkt
, &src
, &dst
);
237 return __vmci_transport_send_control_pkt(&reply
, &src
, &dst
,
246 vmci_transport_send_control_pkt_bh(struct sockaddr_vm
*src
,
247 struct sockaddr_vm
*dst
,
248 enum vmci_transport_packet_type type
,
251 struct vmci_transport_waiting_info
*wait
,
252 struct vmci_handle handle
)
254 /* Note that it is safe to use a single packet across all CPUs since
255 * two tasklets of the same type are guaranteed to not ever run
256 * simultaneously. If that ever changes, or VMCI stops using tasklets,
257 * we can use per-cpu packets.
259 static struct vmci_transport_packet pkt
;
261 return __vmci_transport_send_control_pkt(&pkt
, src
, dst
, type
,
263 VSOCK_PROTO_INVALID
, handle
,
268 vmci_transport_send_control_pkt(struct sock
*sk
,
269 enum vmci_transport_packet_type type
,
272 struct vmci_transport_waiting_info
*wait
,
274 struct vmci_handle handle
)
276 struct vmci_transport_packet
*pkt
;
277 struct vsock_sock
*vsk
;
282 if (!vsock_addr_bound(&vsk
->local_addr
))
285 if (!vsock_addr_bound(&vsk
->remote_addr
))
288 pkt
= kmalloc(sizeof(*pkt
), GFP_KERNEL
);
292 err
= __vmci_transport_send_control_pkt(pkt
, &vsk
->local_addr
,
293 &vsk
->remote_addr
, type
, size
,
294 mode
, wait
, proto
, handle
,
301 static int vmci_transport_send_reset_bh(struct sockaddr_vm
*dst
,
302 struct sockaddr_vm
*src
,
303 struct vmci_transport_packet
*pkt
)
305 if (pkt
->type
== VMCI_TRANSPORT_PACKET_TYPE_RST
)
307 return vmci_transport_send_control_pkt_bh(
309 VMCI_TRANSPORT_PACKET_TYPE_RST
, 0,
310 0, NULL
, VMCI_INVALID_HANDLE
);
313 static int vmci_transport_send_reset(struct sock
*sk
,
314 struct vmci_transport_packet
*pkt
)
316 if (pkt
->type
== VMCI_TRANSPORT_PACKET_TYPE_RST
)
318 return vmci_transport_send_control_pkt(sk
,
319 VMCI_TRANSPORT_PACKET_TYPE_RST
,
320 0, 0, NULL
, VSOCK_PROTO_INVALID
,
321 VMCI_INVALID_HANDLE
);
324 static int vmci_transport_send_negotiate(struct sock
*sk
, size_t size
)
326 return vmci_transport_send_control_pkt(
328 VMCI_TRANSPORT_PACKET_TYPE_NEGOTIATE
,
331 VMCI_INVALID_HANDLE
);
334 static int vmci_transport_send_negotiate2(struct sock
*sk
, size_t size
,
337 return vmci_transport_send_control_pkt(
339 VMCI_TRANSPORT_PACKET_TYPE_NEGOTIATE2
,
340 size
, 0, NULL
, version
,
341 VMCI_INVALID_HANDLE
);
344 static int vmci_transport_send_qp_offer(struct sock
*sk
,
345 struct vmci_handle handle
)
347 return vmci_transport_send_control_pkt(
348 sk
, VMCI_TRANSPORT_PACKET_TYPE_OFFER
, 0,
350 VSOCK_PROTO_INVALID
, handle
);
353 static int vmci_transport_send_attach(struct sock
*sk
,
354 struct vmci_handle handle
)
356 return vmci_transport_send_control_pkt(
357 sk
, VMCI_TRANSPORT_PACKET_TYPE_ATTACH
,
358 0, 0, NULL
, VSOCK_PROTO_INVALID
,
362 static int vmci_transport_reply_reset(struct vmci_transport_packet
*pkt
)
364 return vmci_transport_reply_control_pkt_fast(
366 VMCI_TRANSPORT_PACKET_TYPE_RST
,
368 VMCI_INVALID_HANDLE
);
371 static int vmci_transport_send_invalid_bh(struct sockaddr_vm
*dst
,
372 struct sockaddr_vm
*src
)
374 return vmci_transport_send_control_pkt_bh(
376 VMCI_TRANSPORT_PACKET_TYPE_INVALID
,
377 0, 0, NULL
, VMCI_INVALID_HANDLE
);
380 int vmci_transport_send_wrote_bh(struct sockaddr_vm
*dst
,
381 struct sockaddr_vm
*src
)
383 return vmci_transport_send_control_pkt_bh(
385 VMCI_TRANSPORT_PACKET_TYPE_WROTE
, 0,
386 0, NULL
, VMCI_INVALID_HANDLE
);
389 int vmci_transport_send_read_bh(struct sockaddr_vm
*dst
,
390 struct sockaddr_vm
*src
)
392 return vmci_transport_send_control_pkt_bh(
394 VMCI_TRANSPORT_PACKET_TYPE_READ
, 0,
395 0, NULL
, VMCI_INVALID_HANDLE
);
398 int vmci_transport_send_wrote(struct sock
*sk
)
400 return vmci_transport_send_control_pkt(
401 sk
, VMCI_TRANSPORT_PACKET_TYPE_WROTE
, 0,
402 0, NULL
, VSOCK_PROTO_INVALID
,
403 VMCI_INVALID_HANDLE
);
406 int vmci_transport_send_read(struct sock
*sk
)
408 return vmci_transport_send_control_pkt(
409 sk
, VMCI_TRANSPORT_PACKET_TYPE_READ
, 0,
410 0, NULL
, VSOCK_PROTO_INVALID
,
411 VMCI_INVALID_HANDLE
);
414 int vmci_transport_send_waiting_write(struct sock
*sk
,
415 struct vmci_transport_waiting_info
*wait
)
417 return vmci_transport_send_control_pkt(
418 sk
, VMCI_TRANSPORT_PACKET_TYPE_WAITING_WRITE
,
419 0, 0, wait
, VSOCK_PROTO_INVALID
,
420 VMCI_INVALID_HANDLE
);
423 int vmci_transport_send_waiting_read(struct sock
*sk
,
424 struct vmci_transport_waiting_info
*wait
)
426 return vmci_transport_send_control_pkt(
427 sk
, VMCI_TRANSPORT_PACKET_TYPE_WAITING_READ
,
428 0, 0, wait
, VSOCK_PROTO_INVALID
,
429 VMCI_INVALID_HANDLE
);
432 static int vmci_transport_shutdown(struct vsock_sock
*vsk
, int mode
)
434 return vmci_transport_send_control_pkt(
436 VMCI_TRANSPORT_PACKET_TYPE_SHUTDOWN
,
439 VMCI_INVALID_HANDLE
);
442 static int vmci_transport_send_conn_request(struct sock
*sk
, size_t size
)
444 return vmci_transport_send_control_pkt(sk
,
445 VMCI_TRANSPORT_PACKET_TYPE_REQUEST
,
448 VMCI_INVALID_HANDLE
);
451 static int vmci_transport_send_conn_request2(struct sock
*sk
, size_t size
,
454 return vmci_transport_send_control_pkt(
455 sk
, VMCI_TRANSPORT_PACKET_TYPE_REQUEST2
,
456 size
, 0, NULL
, version
,
457 VMCI_INVALID_HANDLE
);
460 static struct sock
*vmci_transport_get_pending(
461 struct sock
*listener
,
462 struct vmci_transport_packet
*pkt
)
464 struct vsock_sock
*vlistener
;
465 struct vsock_sock
*vpending
;
466 struct sock
*pending
;
467 struct sockaddr_vm src
;
469 vsock_addr_init(&src
, pkt
->dg
.src
.context
, pkt
->src_port
);
471 vlistener
= vsock_sk(listener
);
473 list_for_each_entry(vpending
, &vlistener
->pending_links
,
475 if (vsock_addr_equals_addr(&src
, &vpending
->remote_addr
) &&
476 pkt
->dst_port
== vpending
->local_addr
.svm_port
) {
477 pending
= sk_vsock(vpending
);
489 static void vmci_transport_release_pending(struct sock
*pending
)
494 /* We allow two kinds of sockets to communicate with a restricted VM: 1)
495 * trusted sockets 2) sockets from applications running as the same user as the
496 * VM (this is only true for the host side and only when using hosted products)
499 static bool vmci_transport_is_trusted(struct vsock_sock
*vsock
, u32 peer_cid
)
501 return vsock
->trusted
||
502 vmci_is_context_owner(peer_cid
, vsock
->owner
->uid
);
505 /* We allow sending datagrams to and receiving datagrams from a restricted VM
506 * only if it is trusted as described in vmci_transport_is_trusted.
509 static bool vmci_transport_allow_dgram(struct vsock_sock
*vsock
, u32 peer_cid
)
511 if (VMADDR_CID_HYPERVISOR
== peer_cid
)
514 if (vsock
->cached_peer
!= peer_cid
) {
515 vsock
->cached_peer
= peer_cid
;
516 if (!vmci_transport_is_trusted(vsock
, peer_cid
) &&
517 (vmci_context_get_priv_flags(peer_cid
) &
518 VMCI_PRIVILEGE_FLAG_RESTRICTED
)) {
519 vsock
->cached_peer_allow_dgram
= false;
521 vsock
->cached_peer_allow_dgram
= true;
525 return vsock
->cached_peer_allow_dgram
;
529 vmci_transport_queue_pair_alloc(struct vmci_qp
**qpair
,
530 struct vmci_handle
*handle
,
533 u32 peer
, u32 flags
, bool trusted
)
538 /* Try to allocate our queue pair as trusted. This will only
539 * work if vsock is running in the host.
542 err
= vmci_qpair_alloc(qpair
, handle
, produce_size
,
545 VMCI_PRIVILEGE_FLAG_TRUSTED
);
546 if (err
!= VMCI_ERROR_NO_ACCESS
)
551 err
= vmci_qpair_alloc(qpair
, handle
, produce_size
, consume_size
,
552 peer
, flags
, VMCI_NO_PRIVILEGE_FLAGS
);
555 pr_err("Could not attach to queue pair with %d\n",
557 err
= vmci_transport_error_to_vsock_error(err
);
564 vmci_transport_datagram_create_hnd(u32 resource_id
,
566 vmci_datagram_recv_cb recv_cb
,
568 struct vmci_handle
*out_handle
)
572 /* Try to allocate our datagram handler as trusted. This will only work
573 * if vsock is running in the host.
576 err
= vmci_datagram_create_handle_priv(resource_id
, flags
,
577 VMCI_PRIVILEGE_FLAG_TRUSTED
,
579 client_data
, out_handle
);
581 if (err
== VMCI_ERROR_NO_ACCESS
)
582 err
= vmci_datagram_create_handle(resource_id
, flags
,
583 recv_cb
, client_data
,
589 /* This is invoked as part of a tasklet that's scheduled when the VMCI
590 * interrupt fires. This is run in bottom-half context and if it ever needs to
591 * sleep it should defer that work to a work queue.
594 static int vmci_transport_recv_dgram_cb(void *data
, struct vmci_datagram
*dg
)
599 struct vsock_sock
*vsk
;
601 sk
= (struct sock
*)data
;
603 /* This handler is privileged when this module is running on the host.
604 * We will get datagrams from all endpoints (even VMs that are in a
605 * restricted context). If we get one from a restricted context then
606 * the destination socket must be trusted.
608 * NOTE: We access the socket struct without holding the lock here.
609 * This is ok because the field we are interested is never modified
610 * outside of the create and destruct socket functions.
613 if (!vmci_transport_allow_dgram(vsk
, dg
->src
.context
))
614 return VMCI_ERROR_NO_ACCESS
;
616 size
= VMCI_DG_SIZE(dg
);
618 /* Attach the packet to the socket's receive queue as an sk_buff. */
619 skb
= alloc_skb(size
, GFP_ATOMIC
);
621 return VMCI_ERROR_NO_MEM
;
623 /* sk_receive_skb() will do a sock_put(), so hold here. */
626 memcpy(skb
->data
, dg
, size
);
627 sk_receive_skb(sk
, skb
, 0);
632 static bool vmci_transport_stream_allow(u32 cid
, u32 port
)
634 static const u32 non_socket_contexts
[] = {
639 BUILD_BUG_ON(sizeof(cid
) != sizeof(*non_socket_contexts
));
641 for (i
= 0; i
< ARRAY_SIZE(non_socket_contexts
); i
++) {
642 if (cid
== non_socket_contexts
[i
])
649 /* This is invoked as part of a tasklet that's scheduled when the VMCI
650 * interrupt fires. This is run in bottom-half context but it defers most of
651 * its work to the packet handling work queue.
654 static int vmci_transport_recv_stream_cb(void *data
, struct vmci_datagram
*dg
)
657 struct sockaddr_vm dst
;
658 struct sockaddr_vm src
;
659 struct vmci_transport_packet
*pkt
;
660 struct vsock_sock
*vsk
;
666 bh_process_pkt
= false;
668 /* Ignore incoming packets from contexts without sockets, or resources
669 * that aren't vsock implementations.
672 if (!vmci_transport_stream_allow(dg
->src
.context
, -1)
673 || vmci_transport_peer_rid(dg
->src
.context
) != dg
->src
.resource
)
674 return VMCI_ERROR_NO_ACCESS
;
676 if (VMCI_DG_SIZE(dg
) < sizeof(*pkt
))
677 /* Drop datagrams that do not contain full VSock packets. */
678 return VMCI_ERROR_INVALID_ARGS
;
680 pkt
= (struct vmci_transport_packet
*)dg
;
682 /* Find the socket that should handle this packet. First we look for a
683 * connected socket and if there is none we look for a socket bound to
684 * the destintation address.
686 vsock_addr_init(&src
, pkt
->dg
.src
.context
, pkt
->src_port
);
687 vsock_addr_init(&dst
, pkt
->dg
.dst
.context
, pkt
->dst_port
);
689 sk
= vsock_find_connected_socket(&src
, &dst
);
691 sk
= vsock_find_bound_socket(&dst
);
693 /* We could not find a socket for this specified
694 * address. If this packet is a RST, we just drop it.
695 * If it is another packet, we send a RST. Note that
696 * we do not send a RST reply to RSTs so that we do not
697 * continually send RSTs between two endpoints.
699 * Note that since this is a reply, dst is src and src
702 if (vmci_transport_send_reset_bh(&dst
, &src
, pkt
) < 0)
703 pr_err("unable to send reset\n");
705 err
= VMCI_ERROR_NOT_FOUND
;
710 /* If the received packet type is beyond all types known to this
711 * implementation, reply with an invalid message. Hopefully this will
712 * help when implementing backwards compatibility in the future.
714 if (pkt
->type
>= VMCI_TRANSPORT_PACKET_TYPE_MAX
) {
715 vmci_transport_send_invalid_bh(&dst
, &src
);
716 err
= VMCI_ERROR_INVALID_ARGS
;
720 /* This handler is privileged when this module is running on the host.
721 * We will get datagram connect requests from all endpoints (even VMs
722 * that are in a restricted context). If we get one from a restricted
723 * context then the destination socket must be trusted.
725 * NOTE: We access the socket struct without holding the lock here.
726 * This is ok because the field we are interested is never modified
727 * outside of the create and destruct socket functions.
730 if (!vmci_transport_allow_dgram(vsk
, pkt
->dg
.src
.context
)) {
731 err
= VMCI_ERROR_NO_ACCESS
;
735 /* We do most everything in a work queue, but let's fast path the
736 * notification of reads and writes to help data transfer performance.
737 * We can only do this if there is no process context code executing
738 * for this socket since that may change the state.
742 if (!sock_owned_by_user(sk
)) {
743 /* The local context ID may be out of date, update it. */
744 vsk
->local_addr
.svm_cid
= dst
.svm_cid
;
746 if (sk
->sk_state
== SS_CONNECTED
)
747 vmci_trans(vsk
)->notify_ops
->handle_notify_pkt(
748 sk
, pkt
, true, &dst
, &src
,
754 if (!bh_process_pkt
) {
755 struct vmci_transport_recv_pkt_info
*recv_pkt_info
;
757 recv_pkt_info
= kmalloc(sizeof(*recv_pkt_info
), GFP_ATOMIC
);
758 if (!recv_pkt_info
) {
759 if (vmci_transport_send_reset_bh(&dst
, &src
, pkt
) < 0)
760 pr_err("unable to send reset\n");
762 err
= VMCI_ERROR_NO_MEM
;
766 recv_pkt_info
->sk
= sk
;
767 memcpy(&recv_pkt_info
->pkt
, pkt
, sizeof(recv_pkt_info
->pkt
));
768 INIT_WORK(&recv_pkt_info
->work
, vmci_transport_recv_pkt_work
);
770 schedule_work(&recv_pkt_info
->work
);
771 /* Clear sk so that the reference count incremented by one of
772 * the Find functions above is not decremented below. We need
773 * that reference count for the packet handler we've scheduled
786 static void vmci_transport_handle_detach(struct sock
*sk
)
788 struct vsock_sock
*vsk
;
791 if (!vmci_handle_is_invalid(vmci_trans(vsk
)->qp_handle
)) {
792 sock_set_flag(sk
, SOCK_DONE
);
794 /* On a detach the peer will not be sending or receiving
797 vsk
->peer_shutdown
= SHUTDOWN_MASK
;
799 /* We should not be sending anymore since the peer won't be
800 * there to receive, but we can still receive if there is data
801 * left in our consume queue.
803 if (vsock_stream_has_data(vsk
) <= 0) {
804 if (sk
->sk_state
== SS_CONNECTING
) {
805 /* The peer may detach from a queue pair while
806 * we are still in the connecting state, i.e.,
807 * if the peer VM is killed after attaching to
808 * a queue pair, but before we complete the
809 * handshake. In that case, we treat the detach
810 * event like a reset.
813 sk
->sk_state
= SS_UNCONNECTED
;
814 sk
->sk_err
= ECONNRESET
;
815 sk
->sk_error_report(sk
);
818 sk
->sk_state
= SS_UNCONNECTED
;
820 sk
->sk_state_change(sk
);
824 static void vmci_transport_peer_detach_cb(u32 sub_id
,
825 const struct vmci_event_data
*e_data
,
828 struct vmci_transport
*trans
= client_data
;
829 const struct vmci_event_payload_qp
*e_payload
;
831 e_payload
= vmci_event_data_const_payload(e_data
);
833 /* XXX This is lame, we should provide a way to lookup sockets by
836 if (vmci_handle_is_invalid(e_payload
->handle
) ||
837 !vmci_handle_is_equal(trans
->qp_handle
, e_payload
->handle
))
840 /* We don't ask for delayed CBs when we subscribe to this event (we
841 * pass 0 as flags to vmci_event_subscribe()). VMCI makes no
842 * guarantees in that case about what context we might be running in,
843 * so it could be BH or process, blockable or non-blockable. So we
844 * need to account for all possible contexts here.
846 spin_lock_bh(&trans
->lock
);
850 /* Apart from here, trans->lock is only grabbed as part of sk destruct,
851 * where trans->sk isn't locked.
853 bh_lock_sock(trans
->sk
);
855 vmci_transport_handle_detach(trans
->sk
);
857 bh_unlock_sock(trans
->sk
);
859 spin_unlock_bh(&trans
->lock
);
862 static void vmci_transport_qp_resumed_cb(u32 sub_id
,
863 const struct vmci_event_data
*e_data
,
866 vsock_for_each_connected_socket(vmci_transport_handle_detach
);
869 static void vmci_transport_recv_pkt_work(struct work_struct
*work
)
871 struct vmci_transport_recv_pkt_info
*recv_pkt_info
;
872 struct vmci_transport_packet
*pkt
;
876 container_of(work
, struct vmci_transport_recv_pkt_info
, work
);
877 sk
= recv_pkt_info
->sk
;
878 pkt
= &recv_pkt_info
->pkt
;
882 /* The local context ID may be out of date. */
883 vsock_sk(sk
)->local_addr
.svm_cid
= pkt
->dg
.dst
.context
;
885 switch (sk
->sk_state
) {
886 case VSOCK_SS_LISTEN
:
887 vmci_transport_recv_listen(sk
, pkt
);
890 /* Processing of pending connections for servers goes through
891 * the listening socket, so see vmci_transport_recv_listen()
894 vmci_transport_recv_connecting_client(sk
, pkt
);
897 vmci_transport_recv_connected(sk
, pkt
);
900 /* Because this function does not run in the same context as
901 * vmci_transport_recv_stream_cb it is possible that the
902 * socket has closed. We need to let the other side know or it
903 * could be sitting in a connect and hang forever. Send a
904 * reset to prevent that.
906 vmci_transport_send_reset(sk
, pkt
);
911 kfree(recv_pkt_info
);
912 /* Release reference obtained in the stream callback when we fetched
913 * this socket out of the bound or connected list.
918 static int vmci_transport_recv_listen(struct sock
*sk
,
919 struct vmci_transport_packet
*pkt
)
921 struct sock
*pending
;
922 struct vsock_sock
*vpending
;
925 bool old_request
= false;
926 bool old_pkt_proto
= false;
930 /* Because we are in the listen state, we could be receiving a packet
931 * for ourself or any previous connection requests that we received.
932 * If it's the latter, we try to find a socket in our list of pending
933 * connections and, if we do, call the appropriate handler for the
934 * state that that socket is in. Otherwise we try to service the
935 * connection request.
937 pending
= vmci_transport_get_pending(sk
, pkt
);
941 /* The local context ID may be out of date. */
942 vsock_sk(pending
)->local_addr
.svm_cid
= pkt
->dg
.dst
.context
;
944 switch (pending
->sk_state
) {
946 err
= vmci_transport_recv_connecting_server(sk
,
951 vmci_transport_send_reset(pending
, pkt
);
956 vsock_remove_pending(sk
, pending
);
958 release_sock(pending
);
959 vmci_transport_release_pending(pending
);
964 /* The listen state only accepts connection requests. Reply with a
965 * reset unless we received a reset.
968 if (!(pkt
->type
== VMCI_TRANSPORT_PACKET_TYPE_REQUEST
||
969 pkt
->type
== VMCI_TRANSPORT_PACKET_TYPE_REQUEST2
)) {
970 vmci_transport_reply_reset(pkt
);
974 if (pkt
->u
.size
== 0) {
975 vmci_transport_reply_reset(pkt
);
979 /* If this socket can't accommodate this connection request, we send a
980 * reset. Otherwise we create and initialize a child socket and reply
981 * with a connection negotiation.
983 if (sk
->sk_ack_backlog
>= sk
->sk_max_ack_backlog
) {
984 vmci_transport_reply_reset(pkt
);
985 return -ECONNREFUSED
;
988 pending
= __vsock_create(sock_net(sk
), NULL
, sk
, GFP_KERNEL
,
991 vmci_transport_send_reset(sk
, pkt
);
995 vpending
= vsock_sk(pending
);
997 vsock_addr_init(&vpending
->local_addr
, pkt
->dg
.dst
.context
,
999 vsock_addr_init(&vpending
->remote_addr
, pkt
->dg
.src
.context
,
1002 /* If the proposed size fits within our min/max, accept it. Otherwise
1003 * propose our own size.
1005 if (pkt
->u
.size
>= vmci_trans(vpending
)->queue_pair_min_size
&&
1006 pkt
->u
.size
<= vmci_trans(vpending
)->queue_pair_max_size
) {
1007 qp_size
= pkt
->u
.size
;
1009 qp_size
= vmci_trans(vpending
)->queue_pair_size
;
1012 /* Figure out if we are using old or new requests based on the
1013 * overrides pkt types sent by our peer.
1015 if (vmci_transport_old_proto_override(&old_pkt_proto
)) {
1016 old_request
= old_pkt_proto
;
1018 if (pkt
->type
== VMCI_TRANSPORT_PACKET_TYPE_REQUEST
)
1020 else if (pkt
->type
== VMCI_TRANSPORT_PACKET_TYPE_REQUEST2
)
1021 old_request
= false;
1026 /* Handle a REQUEST (or override) */
1027 u16 version
= VSOCK_PROTO_INVALID
;
1028 if (vmci_transport_proto_to_notify_struct(
1029 pending
, &version
, true))
1030 err
= vmci_transport_send_negotiate(pending
, qp_size
);
1035 /* Handle a REQUEST2 (or override) */
1036 int proto_int
= pkt
->proto
;
1038 u16 active_proto_version
= 0;
1040 /* The list of possible protocols is the intersection of all
1041 * protocols the client supports ... plus all the protocols we
1044 proto_int
&= vmci_transport_new_proto_supported_versions();
1046 /* We choose the highest possible protocol version and use that
1049 pos
= fls(proto_int
);
1051 active_proto_version
= (1 << (pos
- 1));
1052 if (vmci_transport_proto_to_notify_struct(
1053 pending
, &active_proto_version
, false))
1054 err
= vmci_transport_send_negotiate2(pending
,
1056 active_proto_version
);
1066 vmci_transport_send_reset(sk
, pkt
);
1068 err
= vmci_transport_error_to_vsock_error(err
);
1072 vsock_add_pending(sk
, pending
);
1073 sk
->sk_ack_backlog
++;
1075 pending
->sk_state
= SS_CONNECTING
;
1076 vmci_trans(vpending
)->produce_size
=
1077 vmci_trans(vpending
)->consume_size
= qp_size
;
1078 vmci_trans(vpending
)->queue_pair_size
= qp_size
;
1080 vmci_trans(vpending
)->notify_ops
->process_request(pending
);
1082 /* We might never receive another message for this socket and it's not
1083 * connected to any process, so we have to ensure it gets cleaned up
1084 * ourself. Our delayed work function will take care of that. Note
1085 * that we do not ever cancel this function since we have few
1086 * guarantees about its state when calling cancel_delayed_work().
1087 * Instead we hold a reference on the socket for that function and make
1088 * it capable of handling cases where it needs to do nothing but
1089 * release that reference.
1091 vpending
->listener
= sk
;
1094 INIT_DELAYED_WORK(&vpending
->dwork
, vsock_pending_work
);
1095 schedule_delayed_work(&vpending
->dwork
, HZ
);
1102 vmci_transport_recv_connecting_server(struct sock
*listener
,
1103 struct sock
*pending
,
1104 struct vmci_transport_packet
*pkt
)
1106 struct vsock_sock
*vpending
;
1107 struct vmci_handle handle
;
1108 struct vmci_qp
*qpair
;
1115 vpending
= vsock_sk(pending
);
1116 detach_sub_id
= VMCI_INVALID_ID
;
1118 switch (pkt
->type
) {
1119 case VMCI_TRANSPORT_PACKET_TYPE_OFFER
:
1120 if (vmci_handle_is_invalid(pkt
->u
.handle
)) {
1121 vmci_transport_send_reset(pending
, pkt
);
1128 /* Close and cleanup the connection. */
1129 vmci_transport_send_reset(pending
, pkt
);
1131 err
= pkt
->type
== VMCI_TRANSPORT_PACKET_TYPE_RST
? 0 : -EINVAL
;
1135 /* In order to complete the connection we need to attach to the offered
1136 * queue pair and send an attach notification. We also subscribe to the
1137 * detach event so we know when our peer goes away, and we do that
1138 * before attaching so we don't miss an event. If all this succeeds,
1139 * we update our state and wakeup anything waiting in accept() for a
1143 /* We don't care about attach since we ensure the other side has
1144 * attached by specifying the ATTACH_ONLY flag below.
1146 err
= vmci_event_subscribe(VMCI_EVENT_QP_PEER_DETACH
,
1147 vmci_transport_peer_detach_cb
,
1148 vmci_trans(vpending
), &detach_sub_id
);
1149 if (err
< VMCI_SUCCESS
) {
1150 vmci_transport_send_reset(pending
, pkt
);
1151 err
= vmci_transport_error_to_vsock_error(err
);
1156 vmci_trans(vpending
)->detach_sub_id
= detach_sub_id
;
1158 /* Now attach to the queue pair the client created. */
1159 handle
= pkt
->u
.handle
;
1161 /* vpending->local_addr always has a context id so we do not need to
1162 * worry about VMADDR_CID_ANY in this case.
1165 vpending
->remote_addr
.svm_cid
== vpending
->local_addr
.svm_cid
;
1166 flags
= VMCI_QPFLAG_ATTACH_ONLY
;
1167 flags
|= is_local
? VMCI_QPFLAG_LOCAL
: 0;
1169 err
= vmci_transport_queue_pair_alloc(
1172 vmci_trans(vpending
)->produce_size
,
1173 vmci_trans(vpending
)->consume_size
,
1174 pkt
->dg
.src
.context
,
1176 vmci_transport_is_trusted(
1178 vpending
->remote_addr
.svm_cid
));
1180 vmci_transport_send_reset(pending
, pkt
);
1185 vmci_trans(vpending
)->qp_handle
= handle
;
1186 vmci_trans(vpending
)->qpair
= qpair
;
1188 /* When we send the attach message, we must be ready to handle incoming
1189 * control messages on the newly connected socket. So we move the
1190 * pending socket to the connected state before sending the attach
1191 * message. Otherwise, an incoming packet triggered by the attach being
1192 * received by the peer may be processed concurrently with what happens
1193 * below after sending the attach message, and that incoming packet
1194 * will find the listening socket instead of the (currently) pending
1195 * socket. Note that enqueueing the socket increments the reference
1196 * count, so even if a reset comes before the connection is accepted,
1197 * the socket will be valid until it is removed from the queue.
1199 * If we fail sending the attach below, we remove the socket from the
1200 * connected list and move the socket to SS_UNCONNECTED before
1201 * releasing the lock, so a pending slow path processing of an incoming
1202 * packet will not see the socket in the connected state in that case.
1204 pending
->sk_state
= SS_CONNECTED
;
1206 vsock_insert_connected(vpending
);
1208 /* Notify our peer of our attach. */
1209 err
= vmci_transport_send_attach(pending
, handle
);
1211 vsock_remove_connected(vpending
);
1212 pr_err("Could not send attach\n");
1213 vmci_transport_send_reset(pending
, pkt
);
1214 err
= vmci_transport_error_to_vsock_error(err
);
1219 /* We have a connection. Move the now connected socket from the
1220 * listener's pending list to the accept queue so callers of accept()
1223 vsock_remove_pending(listener
, pending
);
1224 vsock_enqueue_accept(listener
, pending
);
1226 /* Callers of accept() will be be waiting on the listening socket, not
1227 * the pending socket.
1229 listener
->sk_data_ready(listener
);
1234 pending
->sk_err
= skerr
;
1235 pending
->sk_state
= SS_UNCONNECTED
;
1236 /* As long as we drop our reference, all necessary cleanup will handle
1237 * when the cleanup function drops its reference and our destruct
1238 * implementation is called. Note that since the listen handler will
1239 * remove pending from the pending list upon our failure, the cleanup
1240 * function won't drop the additional reference, which is why we do it
1249 vmci_transport_recv_connecting_client(struct sock
*sk
,
1250 struct vmci_transport_packet
*pkt
)
1252 struct vsock_sock
*vsk
;
1258 switch (pkt
->type
) {
1259 case VMCI_TRANSPORT_PACKET_TYPE_ATTACH
:
1260 if (vmci_handle_is_invalid(pkt
->u
.handle
) ||
1261 !vmci_handle_is_equal(pkt
->u
.handle
,
1262 vmci_trans(vsk
)->qp_handle
)) {
1268 /* Signify the socket is connected and wakeup the waiter in
1269 * connect(). Also place the socket in the connected table for
1270 * accounting (it can already be found since it's in the bound
1273 sk
->sk_state
= SS_CONNECTED
;
1274 sk
->sk_socket
->state
= SS_CONNECTED
;
1275 vsock_insert_connected(vsk
);
1276 sk
->sk_state_change(sk
);
1279 case VMCI_TRANSPORT_PACKET_TYPE_NEGOTIATE
:
1280 case VMCI_TRANSPORT_PACKET_TYPE_NEGOTIATE2
:
1281 if (pkt
->u
.size
== 0
1282 || pkt
->dg
.src
.context
!= vsk
->remote_addr
.svm_cid
1283 || pkt
->src_port
!= vsk
->remote_addr
.svm_port
1284 || !vmci_handle_is_invalid(vmci_trans(vsk
)->qp_handle
)
1285 || vmci_trans(vsk
)->qpair
1286 || vmci_trans(vsk
)->produce_size
!= 0
1287 || vmci_trans(vsk
)->consume_size
!= 0
1288 || vmci_trans(vsk
)->detach_sub_id
!= VMCI_INVALID_ID
) {
1295 err
= vmci_transport_recv_connecting_client_negotiate(sk
, pkt
);
1302 case VMCI_TRANSPORT_PACKET_TYPE_INVALID
:
1303 err
= vmci_transport_recv_connecting_client_invalid(sk
, pkt
);
1310 case VMCI_TRANSPORT_PACKET_TYPE_RST
:
1311 /* Older versions of the linux code (WS 6.5 / ESX 4.0) used to
1312 * continue processing here after they sent an INVALID packet.
1313 * This meant that we got a RST after the INVALID. We ignore a
1314 * RST after an INVALID. The common code doesn't send the RST
1315 * ... so we can hang if an old version of the common code
1316 * fails between getting a REQUEST and sending an OFFER back.
1317 * Not much we can do about it... except hope that it doesn't
1320 if (vsk
->ignore_connecting_rst
) {
1321 vsk
->ignore_connecting_rst
= false;
1330 /* Close and cleanup the connection. */
1339 vmci_transport_send_reset(sk
, pkt
);
1341 sk
->sk_state
= SS_UNCONNECTED
;
1343 sk
->sk_error_report(sk
);
1347 static int vmci_transport_recv_connecting_client_negotiate(
1349 struct vmci_transport_packet
*pkt
)
1352 struct vsock_sock
*vsk
;
1353 struct vmci_handle handle
;
1354 struct vmci_qp
*qpair
;
1358 bool old_proto
= true;
1363 handle
= VMCI_INVALID_HANDLE
;
1364 detach_sub_id
= VMCI_INVALID_ID
;
1366 /* If we have gotten here then we should be past the point where old
1367 * linux vsock could have sent the bogus rst.
1369 vsk
->sent_request
= false;
1370 vsk
->ignore_connecting_rst
= false;
1372 /* Verify that we're OK with the proposed queue pair size */
1373 if (pkt
->u
.size
< vmci_trans(vsk
)->queue_pair_min_size
||
1374 pkt
->u
.size
> vmci_trans(vsk
)->queue_pair_max_size
) {
1379 /* At this point we know the CID the peer is using to talk to us. */
1381 if (vsk
->local_addr
.svm_cid
== VMADDR_CID_ANY
)
1382 vsk
->local_addr
.svm_cid
= pkt
->dg
.dst
.context
;
1384 /* Setup the notify ops to be the highest supported version that both
1385 * the server and the client support.
1388 if (vmci_transport_old_proto_override(&old_pkt_proto
)) {
1389 old_proto
= old_pkt_proto
;
1391 if (pkt
->type
== VMCI_TRANSPORT_PACKET_TYPE_NEGOTIATE
)
1393 else if (pkt
->type
== VMCI_TRANSPORT_PACKET_TYPE_NEGOTIATE2
)
1399 version
= VSOCK_PROTO_INVALID
;
1401 version
= pkt
->proto
;
1403 if (!vmci_transport_proto_to_notify_struct(sk
, &version
, old_proto
)) {
1408 /* Subscribe to detach events first.
1410 * XXX We attach once for each queue pair created for now so it is easy
1411 * to find the socket (it's provided), but later we should only
1412 * subscribe once and add a way to lookup sockets by queue pair handle.
1414 err
= vmci_event_subscribe(VMCI_EVENT_QP_PEER_DETACH
,
1415 vmci_transport_peer_detach_cb
,
1416 vmci_trans(vsk
), &detach_sub_id
);
1417 if (err
< VMCI_SUCCESS
) {
1418 err
= vmci_transport_error_to_vsock_error(err
);
1422 /* Make VMCI select the handle for us. */
1423 handle
= VMCI_INVALID_HANDLE
;
1424 is_local
= vsk
->remote_addr
.svm_cid
== vsk
->local_addr
.svm_cid
;
1425 flags
= is_local
? VMCI_QPFLAG_LOCAL
: 0;
1427 err
= vmci_transport_queue_pair_alloc(&qpair
,
1431 vsk
->remote_addr
.svm_cid
,
1433 vmci_transport_is_trusted(
1436 remote_addr
.svm_cid
));
1440 err
= vmci_transport_send_qp_offer(sk
, handle
);
1442 err
= vmci_transport_error_to_vsock_error(err
);
1446 vmci_trans(vsk
)->qp_handle
= handle
;
1447 vmci_trans(vsk
)->qpair
= qpair
;
1449 vmci_trans(vsk
)->produce_size
= vmci_trans(vsk
)->consume_size
=
1452 vmci_trans(vsk
)->detach_sub_id
= detach_sub_id
;
1454 vmci_trans(vsk
)->notify_ops
->process_negotiate(sk
);
1459 if (detach_sub_id
!= VMCI_INVALID_ID
)
1460 vmci_event_unsubscribe(detach_sub_id
);
1462 if (!vmci_handle_is_invalid(handle
))
1463 vmci_qpair_detach(&qpair
);
1469 vmci_transport_recv_connecting_client_invalid(struct sock
*sk
,
1470 struct vmci_transport_packet
*pkt
)
1473 struct vsock_sock
*vsk
= vsock_sk(sk
);
1475 if (vsk
->sent_request
) {
1476 vsk
->sent_request
= false;
1477 vsk
->ignore_connecting_rst
= true;
1479 err
= vmci_transport_send_conn_request(
1480 sk
, vmci_trans(vsk
)->queue_pair_size
);
1482 err
= vmci_transport_error_to_vsock_error(err
);
1491 static int vmci_transport_recv_connected(struct sock
*sk
,
1492 struct vmci_transport_packet
*pkt
)
1494 struct vsock_sock
*vsk
;
1495 bool pkt_processed
= false;
1497 /* In cases where we are closing the connection, it's sufficient to
1498 * mark the state change (and maybe error) and wake up any waiting
1499 * threads. Since this is a connected socket, it's owned by a user
1500 * process and will be cleaned up when the failure is passed back on
1501 * the current or next system call. Our system call implementations
1502 * must therefore check for error and state changes on entry and when
1505 switch (pkt
->type
) {
1506 case VMCI_TRANSPORT_PACKET_TYPE_SHUTDOWN
:
1510 vsk
->peer_shutdown
|= pkt
->u
.mode
;
1511 sk
->sk_state_change(sk
);
1515 case VMCI_TRANSPORT_PACKET_TYPE_RST
:
1517 /* It is possible that we sent our peer a message (e.g a
1518 * WAITING_READ) right before we got notified that the peer had
1519 * detached. If that happens then we can get a RST pkt back
1520 * from our peer even though there is data available for us to
1521 * read. In that case, don't shutdown the socket completely but
1522 * instead allow the local client to finish reading data off
1523 * the queuepair. Always treat a RST pkt in connected mode like
1526 sock_set_flag(sk
, SOCK_DONE
);
1527 vsk
->peer_shutdown
= SHUTDOWN_MASK
;
1528 if (vsock_stream_has_data(vsk
) <= 0)
1529 sk
->sk_state
= SS_DISCONNECTING
;
1531 sk
->sk_state_change(sk
);
1536 vmci_trans(vsk
)->notify_ops
->handle_notify_pkt(
1537 sk
, pkt
, false, NULL
, NULL
,
1548 static int vmci_transport_socket_init(struct vsock_sock
*vsk
,
1549 struct vsock_sock
*psk
)
1551 vsk
->trans
= kmalloc(sizeof(struct vmci_transport
), GFP_KERNEL
);
1555 vmci_trans(vsk
)->dg_handle
= VMCI_INVALID_HANDLE
;
1556 vmci_trans(vsk
)->qp_handle
= VMCI_INVALID_HANDLE
;
1557 vmci_trans(vsk
)->qpair
= NULL
;
1558 vmci_trans(vsk
)->produce_size
= vmci_trans(vsk
)->consume_size
= 0;
1559 vmci_trans(vsk
)->detach_sub_id
= VMCI_INVALID_ID
;
1560 vmci_trans(vsk
)->notify_ops
= NULL
;
1561 INIT_LIST_HEAD(&vmci_trans(vsk
)->elem
);
1562 vmci_trans(vsk
)->sk
= &vsk
->sk
;
1563 spin_lock_init(&vmci_trans(vsk
)->lock
);
1565 vmci_trans(vsk
)->queue_pair_size
=
1566 vmci_trans(psk
)->queue_pair_size
;
1567 vmci_trans(vsk
)->queue_pair_min_size
=
1568 vmci_trans(psk
)->queue_pair_min_size
;
1569 vmci_trans(vsk
)->queue_pair_max_size
=
1570 vmci_trans(psk
)->queue_pair_max_size
;
1572 vmci_trans(vsk
)->queue_pair_size
=
1573 VMCI_TRANSPORT_DEFAULT_QP_SIZE
;
1574 vmci_trans(vsk
)->queue_pair_min_size
=
1575 VMCI_TRANSPORT_DEFAULT_QP_SIZE_MIN
;
1576 vmci_trans(vsk
)->queue_pair_max_size
=
1577 VMCI_TRANSPORT_DEFAULT_QP_SIZE_MAX
;
1583 static void vmci_transport_free_resources(struct list_head
*transport_list
)
1585 while (!list_empty(transport_list
)) {
1586 struct vmci_transport
*transport
=
1587 list_first_entry(transport_list
, struct vmci_transport
,
1589 list_del(&transport
->elem
);
1591 if (transport
->detach_sub_id
!= VMCI_INVALID_ID
) {
1592 vmci_event_unsubscribe(transport
->detach_sub_id
);
1593 transport
->detach_sub_id
= VMCI_INVALID_ID
;
1596 if (!vmci_handle_is_invalid(transport
->qp_handle
)) {
1597 vmci_qpair_detach(&transport
->qpair
);
1598 transport
->qp_handle
= VMCI_INVALID_HANDLE
;
1599 transport
->produce_size
= 0;
1600 transport
->consume_size
= 0;
1607 static void vmci_transport_cleanup(struct work_struct
*work
)
1611 spin_lock_bh(&vmci_transport_cleanup_lock
);
1612 list_replace_init(&vmci_transport_cleanup_list
, &pending
);
1613 spin_unlock_bh(&vmci_transport_cleanup_lock
);
1614 vmci_transport_free_resources(&pending
);
1617 static void vmci_transport_destruct(struct vsock_sock
*vsk
)
1619 /* Ensure that the detach callback doesn't use the sk/vsk
1620 * we are about to destruct.
1622 spin_lock_bh(&vmci_trans(vsk
)->lock
);
1623 vmci_trans(vsk
)->sk
= NULL
;
1624 spin_unlock_bh(&vmci_trans(vsk
)->lock
);
1626 if (vmci_trans(vsk
)->notify_ops
)
1627 vmci_trans(vsk
)->notify_ops
->socket_destruct(vsk
);
1629 spin_lock_bh(&vmci_transport_cleanup_lock
);
1630 list_add(&vmci_trans(vsk
)->elem
, &vmci_transport_cleanup_list
);
1631 spin_unlock_bh(&vmci_transport_cleanup_lock
);
1632 schedule_work(&vmci_transport_cleanup_work
);
1637 static void vmci_transport_release(struct vsock_sock
*vsk
)
1639 vsock_remove_sock(vsk
);
1641 if (!vmci_handle_is_invalid(vmci_trans(vsk
)->dg_handle
)) {
1642 vmci_datagram_destroy_handle(vmci_trans(vsk
)->dg_handle
);
1643 vmci_trans(vsk
)->dg_handle
= VMCI_INVALID_HANDLE
;
1647 static int vmci_transport_dgram_bind(struct vsock_sock
*vsk
,
1648 struct sockaddr_vm
*addr
)
1654 /* VMCI will select a resource ID for us if we provide
1657 port
= addr
->svm_port
== VMADDR_PORT_ANY
?
1658 VMCI_INVALID_ID
: addr
->svm_port
;
1660 if (port
<= LAST_RESERVED_PORT
&& !capable(CAP_NET_BIND_SERVICE
))
1663 flags
= addr
->svm_cid
== VMADDR_CID_ANY
?
1664 VMCI_FLAG_ANYCID_DG_HND
: 0;
1666 err
= vmci_transport_datagram_create_hnd(port
, flags
,
1667 vmci_transport_recv_dgram_cb
,
1669 &vmci_trans(vsk
)->dg_handle
);
1670 if (err
< VMCI_SUCCESS
)
1671 return vmci_transport_error_to_vsock_error(err
);
1672 vsock_addr_init(&vsk
->local_addr
, addr
->svm_cid
,
1673 vmci_trans(vsk
)->dg_handle
.resource
);
1678 static int vmci_transport_dgram_enqueue(
1679 struct vsock_sock
*vsk
,
1680 struct sockaddr_vm
*remote_addr
,
1685 struct vmci_datagram
*dg
;
1687 if (len
> VMCI_MAX_DG_PAYLOAD_SIZE
)
1690 if (!vmci_transport_allow_dgram(vsk
, remote_addr
->svm_cid
))
1693 /* Allocate a buffer for the user's message and our packet header. */
1694 dg
= kmalloc(len
+ sizeof(*dg
), GFP_KERNEL
);
1698 memcpy_from_msg(VMCI_DG_PAYLOAD(dg
), msg
, len
);
1700 dg
->dst
= vmci_make_handle(remote_addr
->svm_cid
,
1701 remote_addr
->svm_port
);
1702 dg
->src
= vmci_make_handle(vsk
->local_addr
.svm_cid
,
1703 vsk
->local_addr
.svm_port
);
1704 dg
->payload_size
= len
;
1706 err
= vmci_datagram_send(dg
);
1709 return vmci_transport_error_to_vsock_error(err
);
1711 return err
- sizeof(*dg
);
1714 static int vmci_transport_dgram_dequeue(struct vsock_sock
*vsk
,
1715 struct msghdr
*msg
, size_t len
,
1720 struct vmci_datagram
*dg
;
1722 struct sk_buff
*skb
;
1724 noblock
= flags
& MSG_DONTWAIT
;
1726 if (flags
& MSG_OOB
|| flags
& MSG_ERRQUEUE
)
1729 /* Retrieve the head sk_buff from the socket's receive queue. */
1731 skb
= skb_recv_datagram(&vsk
->sk
, flags
, noblock
, &err
);
1735 dg
= (struct vmci_datagram
*)skb
->data
;
1737 /* err is 0, meaning we read zero bytes. */
1740 payload_len
= dg
->payload_size
;
1741 /* Ensure the sk_buff matches the payload size claimed in the packet. */
1742 if (payload_len
!= skb
->len
- sizeof(*dg
)) {
1747 if (payload_len
> len
) {
1749 msg
->msg_flags
|= MSG_TRUNC
;
1752 /* Place the datagram payload in the user's iovec. */
1753 err
= skb_copy_datagram_msg(skb
, sizeof(*dg
), msg
, payload_len
);
1757 if (msg
->msg_name
) {
1758 /* Provide the address of the sender. */
1759 DECLARE_SOCKADDR(struct sockaddr_vm
*, vm_addr
, msg
->msg_name
);
1760 vsock_addr_init(vm_addr
, dg
->src
.context
, dg
->src
.resource
);
1761 msg
->msg_namelen
= sizeof(*vm_addr
);
1766 skb_free_datagram(&vsk
->sk
, skb
);
1770 static bool vmci_transport_dgram_allow(u32 cid
, u32 port
)
1772 if (cid
== VMADDR_CID_HYPERVISOR
) {
1773 /* Registrations of PBRPC Servers do not modify VMX/Hypervisor
1774 * state and are allowed.
1776 return port
== VMCI_UNITY_PBRPC_REGISTER
;
1782 static int vmci_transport_connect(struct vsock_sock
*vsk
)
1785 bool old_pkt_proto
= false;
1786 struct sock
*sk
= &vsk
->sk
;
1788 if (vmci_transport_old_proto_override(&old_pkt_proto
) &&
1790 err
= vmci_transport_send_conn_request(
1791 sk
, vmci_trans(vsk
)->queue_pair_size
);
1793 sk
->sk_state
= SS_UNCONNECTED
;
1797 int supported_proto_versions
=
1798 vmci_transport_new_proto_supported_versions();
1799 err
= vmci_transport_send_conn_request2(
1800 sk
, vmci_trans(vsk
)->queue_pair_size
,
1801 supported_proto_versions
);
1803 sk
->sk_state
= SS_UNCONNECTED
;
1807 vsk
->sent_request
= true;
1813 static ssize_t
vmci_transport_stream_dequeue(
1814 struct vsock_sock
*vsk
,
1819 if (flags
& MSG_PEEK
)
1820 return vmci_qpair_peekv(vmci_trans(vsk
)->qpair
, msg
, len
, 0);
1822 return vmci_qpair_dequev(vmci_trans(vsk
)->qpair
, msg
, len
, 0);
1825 static ssize_t
vmci_transport_stream_enqueue(
1826 struct vsock_sock
*vsk
,
1830 return vmci_qpair_enquev(vmci_trans(vsk
)->qpair
, msg
, len
, 0);
1833 static s64
vmci_transport_stream_has_data(struct vsock_sock
*vsk
)
1835 return vmci_qpair_consume_buf_ready(vmci_trans(vsk
)->qpair
);
1838 static s64
vmci_transport_stream_has_space(struct vsock_sock
*vsk
)
1840 return vmci_qpair_produce_free_space(vmci_trans(vsk
)->qpair
);
1843 static u64
vmci_transport_stream_rcvhiwat(struct vsock_sock
*vsk
)
1845 return vmci_trans(vsk
)->consume_size
;
1848 static bool vmci_transport_stream_is_active(struct vsock_sock
*vsk
)
1850 return !vmci_handle_is_invalid(vmci_trans(vsk
)->qp_handle
);
1853 static u64
vmci_transport_get_buffer_size(struct vsock_sock
*vsk
)
1855 return vmci_trans(vsk
)->queue_pair_size
;
1858 static u64
vmci_transport_get_min_buffer_size(struct vsock_sock
*vsk
)
1860 return vmci_trans(vsk
)->queue_pair_min_size
;
1863 static u64
vmci_transport_get_max_buffer_size(struct vsock_sock
*vsk
)
1865 return vmci_trans(vsk
)->queue_pair_max_size
;
1868 static void vmci_transport_set_buffer_size(struct vsock_sock
*vsk
, u64 val
)
1870 if (val
< vmci_trans(vsk
)->queue_pair_min_size
)
1871 vmci_trans(vsk
)->queue_pair_min_size
= val
;
1872 if (val
> vmci_trans(vsk
)->queue_pair_max_size
)
1873 vmci_trans(vsk
)->queue_pair_max_size
= val
;
1874 vmci_trans(vsk
)->queue_pair_size
= val
;
1877 static void vmci_transport_set_min_buffer_size(struct vsock_sock
*vsk
,
1880 if (val
> vmci_trans(vsk
)->queue_pair_size
)
1881 vmci_trans(vsk
)->queue_pair_size
= val
;
1882 vmci_trans(vsk
)->queue_pair_min_size
= val
;
1885 static void vmci_transport_set_max_buffer_size(struct vsock_sock
*vsk
,
1888 if (val
< vmci_trans(vsk
)->queue_pair_size
)
1889 vmci_trans(vsk
)->queue_pair_size
= val
;
1890 vmci_trans(vsk
)->queue_pair_max_size
= val
;
1893 static int vmci_transport_notify_poll_in(
1894 struct vsock_sock
*vsk
,
1896 bool *data_ready_now
)
1898 return vmci_trans(vsk
)->notify_ops
->poll_in(
1899 &vsk
->sk
, target
, data_ready_now
);
1902 static int vmci_transport_notify_poll_out(
1903 struct vsock_sock
*vsk
,
1905 bool *space_available_now
)
1907 return vmci_trans(vsk
)->notify_ops
->poll_out(
1908 &vsk
->sk
, target
, space_available_now
);
1911 static int vmci_transport_notify_recv_init(
1912 struct vsock_sock
*vsk
,
1914 struct vsock_transport_recv_notify_data
*data
)
1916 return vmci_trans(vsk
)->notify_ops
->recv_init(
1918 (struct vmci_transport_recv_notify_data
*)data
);
1921 static int vmci_transport_notify_recv_pre_block(
1922 struct vsock_sock
*vsk
,
1924 struct vsock_transport_recv_notify_data
*data
)
1926 return vmci_trans(vsk
)->notify_ops
->recv_pre_block(
1928 (struct vmci_transport_recv_notify_data
*)data
);
1931 static int vmci_transport_notify_recv_pre_dequeue(
1932 struct vsock_sock
*vsk
,
1934 struct vsock_transport_recv_notify_data
*data
)
1936 return vmci_trans(vsk
)->notify_ops
->recv_pre_dequeue(
1938 (struct vmci_transport_recv_notify_data
*)data
);
1941 static int vmci_transport_notify_recv_post_dequeue(
1942 struct vsock_sock
*vsk
,
1946 struct vsock_transport_recv_notify_data
*data
)
1948 return vmci_trans(vsk
)->notify_ops
->recv_post_dequeue(
1949 &vsk
->sk
, target
, copied
, data_read
,
1950 (struct vmci_transport_recv_notify_data
*)data
);
1953 static int vmci_transport_notify_send_init(
1954 struct vsock_sock
*vsk
,
1955 struct vsock_transport_send_notify_data
*data
)
1957 return vmci_trans(vsk
)->notify_ops
->send_init(
1959 (struct vmci_transport_send_notify_data
*)data
);
1962 static int vmci_transport_notify_send_pre_block(
1963 struct vsock_sock
*vsk
,
1964 struct vsock_transport_send_notify_data
*data
)
1966 return vmci_trans(vsk
)->notify_ops
->send_pre_block(
1968 (struct vmci_transport_send_notify_data
*)data
);
1971 static int vmci_transport_notify_send_pre_enqueue(
1972 struct vsock_sock
*vsk
,
1973 struct vsock_transport_send_notify_data
*data
)
1975 return vmci_trans(vsk
)->notify_ops
->send_pre_enqueue(
1977 (struct vmci_transport_send_notify_data
*)data
);
1980 static int vmci_transport_notify_send_post_enqueue(
1981 struct vsock_sock
*vsk
,
1983 struct vsock_transport_send_notify_data
*data
)
1985 return vmci_trans(vsk
)->notify_ops
->send_post_enqueue(
1987 (struct vmci_transport_send_notify_data
*)data
);
1990 static bool vmci_transport_old_proto_override(bool *old_pkt_proto
)
1992 if (PROTOCOL_OVERRIDE
!= -1) {
1993 if (PROTOCOL_OVERRIDE
== 0)
1994 *old_pkt_proto
= true;
1996 *old_pkt_proto
= false;
1998 pr_info("Proto override in use\n");
2005 static bool vmci_transport_proto_to_notify_struct(struct sock
*sk
,
2009 struct vsock_sock
*vsk
= vsock_sk(sk
);
2011 if (old_pkt_proto
) {
2012 if (*proto
!= VSOCK_PROTO_INVALID
) {
2013 pr_err("Can't set both an old and new protocol\n");
2016 vmci_trans(vsk
)->notify_ops
= &vmci_transport_notify_pkt_ops
;
2021 case VSOCK_PROTO_PKT_ON_NOTIFY
:
2022 vmci_trans(vsk
)->notify_ops
=
2023 &vmci_transport_notify_pkt_q_state_ops
;
2026 pr_err("Unknown notify protocol version\n");
2031 vmci_trans(vsk
)->notify_ops
->socket_init(sk
);
2035 static u16
vmci_transport_new_proto_supported_versions(void)
2037 if (PROTOCOL_OVERRIDE
!= -1)
2038 return PROTOCOL_OVERRIDE
;
2040 return VSOCK_PROTO_ALL_SUPPORTED
;
2043 static u32
vmci_transport_get_local_cid(void)
2045 return vmci_get_context_id();
2048 static const struct vsock_transport vmci_transport
= {
2049 .init
= vmci_transport_socket_init
,
2050 .destruct
= vmci_transport_destruct
,
2051 .release
= vmci_transport_release
,
2052 .connect
= vmci_transport_connect
,
2053 .dgram_bind
= vmci_transport_dgram_bind
,
2054 .dgram_dequeue
= vmci_transport_dgram_dequeue
,
2055 .dgram_enqueue
= vmci_transport_dgram_enqueue
,
2056 .dgram_allow
= vmci_transport_dgram_allow
,
2057 .stream_dequeue
= vmci_transport_stream_dequeue
,
2058 .stream_enqueue
= vmci_transport_stream_enqueue
,
2059 .stream_has_data
= vmci_transport_stream_has_data
,
2060 .stream_has_space
= vmci_transport_stream_has_space
,
2061 .stream_rcvhiwat
= vmci_transport_stream_rcvhiwat
,
2062 .stream_is_active
= vmci_transport_stream_is_active
,
2063 .stream_allow
= vmci_transport_stream_allow
,
2064 .notify_poll_in
= vmci_transport_notify_poll_in
,
2065 .notify_poll_out
= vmci_transport_notify_poll_out
,
2066 .notify_recv_init
= vmci_transport_notify_recv_init
,
2067 .notify_recv_pre_block
= vmci_transport_notify_recv_pre_block
,
2068 .notify_recv_pre_dequeue
= vmci_transport_notify_recv_pre_dequeue
,
2069 .notify_recv_post_dequeue
= vmci_transport_notify_recv_post_dequeue
,
2070 .notify_send_init
= vmci_transport_notify_send_init
,
2071 .notify_send_pre_block
= vmci_transport_notify_send_pre_block
,
2072 .notify_send_pre_enqueue
= vmci_transport_notify_send_pre_enqueue
,
2073 .notify_send_post_enqueue
= vmci_transport_notify_send_post_enqueue
,
2074 .shutdown
= vmci_transport_shutdown
,
2075 .set_buffer_size
= vmci_transport_set_buffer_size
,
2076 .set_min_buffer_size
= vmci_transport_set_min_buffer_size
,
2077 .set_max_buffer_size
= vmci_transport_set_max_buffer_size
,
2078 .get_buffer_size
= vmci_transport_get_buffer_size
,
2079 .get_min_buffer_size
= vmci_transport_get_min_buffer_size
,
2080 .get_max_buffer_size
= vmci_transport_get_max_buffer_size
,
2081 .get_local_cid
= vmci_transport_get_local_cid
,
2084 static int __init
vmci_transport_init(void)
2088 /* Create the datagram handle that we will use to send and receive all
2089 * VSocket control messages for this context.
2091 err
= vmci_transport_datagram_create_hnd(VMCI_TRANSPORT_PACKET_RID
,
2092 VMCI_FLAG_ANYCID_DG_HND
,
2093 vmci_transport_recv_stream_cb
,
2095 &vmci_transport_stream_handle
);
2096 if (err
< VMCI_SUCCESS
) {
2097 pr_err("Unable to create datagram handle. (%d)\n", err
);
2098 return vmci_transport_error_to_vsock_error(err
);
2101 err
= vmci_event_subscribe(VMCI_EVENT_QP_RESUMED
,
2102 vmci_transport_qp_resumed_cb
,
2103 NULL
, &vmci_transport_qp_resumed_sub_id
);
2104 if (err
< VMCI_SUCCESS
) {
2105 pr_err("Unable to subscribe to resumed event. (%d)\n", err
);
2106 err
= vmci_transport_error_to_vsock_error(err
);
2107 vmci_transport_qp_resumed_sub_id
= VMCI_INVALID_ID
;
2108 goto err_destroy_stream_handle
;
2111 err
= vsock_core_init(&vmci_transport
);
2113 goto err_unsubscribe
;
2118 vmci_event_unsubscribe(vmci_transport_qp_resumed_sub_id
);
2119 err_destroy_stream_handle
:
2120 vmci_datagram_destroy_handle(vmci_transport_stream_handle
);
2123 module_init(vmci_transport_init
);
2125 static void __exit
vmci_transport_exit(void)
2127 cancel_work_sync(&vmci_transport_cleanup_work
);
2128 vmci_transport_free_resources(&vmci_transport_cleanup_list
);
2130 if (!vmci_handle_is_invalid(vmci_transport_stream_handle
)) {
2131 if (vmci_datagram_destroy_handle(
2132 vmci_transport_stream_handle
) != VMCI_SUCCESS
)
2133 pr_err("Couldn't destroy datagram handle\n");
2134 vmci_transport_stream_handle
= VMCI_INVALID_HANDLE
;
2137 if (vmci_transport_qp_resumed_sub_id
!= VMCI_INVALID_ID
) {
2138 vmci_event_unsubscribe(vmci_transport_qp_resumed_sub_id
);
2139 vmci_transport_qp_resumed_sub_id
= VMCI_INVALID_ID
;
2144 module_exit(vmci_transport_exit
);
2146 MODULE_AUTHOR("VMware, Inc.");
2147 MODULE_DESCRIPTION("VMCI transport for Virtual Sockets");
2148 MODULE_VERSION("1.0.4.0-k");
2149 MODULE_LICENSE("GPL v2");
2150 MODULE_ALIAS("vmware_vsock");
2151 MODULE_ALIAS_NETPROTO(PF_VSOCK
);