bpf: remove redundant variable old_flags
[linux-2.6/btrfs-unstable.git] / net / vmw_vsock / hyperv_transport.c
blobbbac023e70d1741ab2ad6a33d9ee7a954cf0e33c
1 /*
2 * Hyper-V transport for vsock
4 * Hyper-V Sockets supplies a byte-stream based communication mechanism
5 * between the host and the VM. This driver implements the necessary
6 * support in the VM by introducing the new vsock transport.
8 * Copyright (c) 2017, Microsoft Corporation.
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms and conditions of the GNU General Public License,
12 * version 2, as published by the Free Software Foundation.
14 * This program is distributed in the hope it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * more details.
20 #include <linux/module.h>
21 #include <linux/vmalloc.h>
22 #include <linux/hyperv.h>
23 #include <net/sock.h>
24 #include <net/af_vsock.h>
26 /* The host side's design of the feature requires 6 exact 4KB pages for
27 * recv/send rings respectively -- this is suboptimal considering memory
28 * consumption, however unluckily we have to live with it, before the
29 * host comes up with a better design in the future.
31 #define PAGE_SIZE_4K 4096
32 #define RINGBUFFER_HVS_RCV_SIZE (PAGE_SIZE_4K * 6)
33 #define RINGBUFFER_HVS_SND_SIZE (PAGE_SIZE_4K * 6)
35 /* The MTU is 16KB per the host side's design */
36 #define HVS_MTU_SIZE (1024 * 16)
38 struct vmpipe_proto_header {
39 u32 pkt_type;
40 u32 data_size;
43 /* For recv, we use the VMBus in-place packet iterator APIs to directly copy
44 * data from the ringbuffer into the userspace buffer.
46 struct hvs_recv_buf {
47 /* The header before the payload data */
48 struct vmpipe_proto_header hdr;
50 /* The payload */
51 u8 data[HVS_MTU_SIZE];
54 /* We can send up to HVS_MTU_SIZE bytes of payload to the host, but let's use
55 * a small size, i.e. HVS_SEND_BUF_SIZE, to minimize the dynamically-allocated
56 * buffer, because tests show there is no significant performance difference.
58 * Note: the buffer can be eliminated in the future when we add new VMBus
59 * ringbuffer APIs that allow us to directly copy data from userspace buffer
60 * to VMBus ringbuffer.
62 #define HVS_SEND_BUF_SIZE (PAGE_SIZE_4K - sizeof(struct vmpipe_proto_header))
64 struct hvs_send_buf {
65 /* The header before the payload data */
66 struct vmpipe_proto_header hdr;
68 /* The payload */
69 u8 data[HVS_SEND_BUF_SIZE];
72 #define HVS_HEADER_LEN (sizeof(struct vmpacket_descriptor) + \
73 sizeof(struct vmpipe_proto_header))
75 /* See 'prev_indices' in hv_ringbuffer_read(), hv_ringbuffer_write(), and
76 * __hv_pkt_iter_next().
78 #define VMBUS_PKT_TRAILER_SIZE (sizeof(u64))
80 #define HVS_PKT_LEN(payload_len) (HVS_HEADER_LEN + \
81 ALIGN((payload_len), 8) + \
82 VMBUS_PKT_TRAILER_SIZE)
84 union hvs_service_id {
85 uuid_le srv_id;
87 struct {
88 unsigned int svm_port;
89 unsigned char b[sizeof(uuid_le) - sizeof(unsigned int)];
93 /* Per-socket state (accessed via vsk->trans) */
94 struct hvsock {
95 struct vsock_sock *vsk;
97 uuid_le vm_srv_id;
98 uuid_le host_srv_id;
100 struct vmbus_channel *chan;
101 struct vmpacket_descriptor *recv_desc;
103 /* The length of the payload not delivered to userland yet */
104 u32 recv_data_len;
105 /* The offset of the payload */
106 u32 recv_data_off;
108 /* Have we sent the zero-length packet (FIN)? */
109 bool fin_sent;
112 /* In the VM, we support Hyper-V Sockets with AF_VSOCK, and the endpoint is
113 * <cid, port> (see struct sockaddr_vm). Note: cid is not really used here:
114 * when we write apps to connect to the host, we can only use VMADDR_CID_ANY
115 * or VMADDR_CID_HOST (both are equivalent) as the remote cid, and when we
116 * write apps to bind() & listen() in the VM, we can only use VMADDR_CID_ANY
117 * as the local cid.
119 * On the host, Hyper-V Sockets are supported by Winsock AF_HYPERV:
120 * https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/user-
121 * guide/make-integration-service, and the endpoint is <VmID, ServiceId> with
122 * the below sockaddr:
124 * struct SOCKADDR_HV
126 * ADDRESS_FAMILY Family;
127 * USHORT Reserved;
128 * GUID VmId;
129 * GUID ServiceId;
130 * };
131 * Note: VmID is not used by Linux VM and actually it isn't transmitted via
132 * VMBus, because here it's obvious the host and the VM can easily identify
133 * each other. Though the VmID is useful on the host, especially in the case
134 * of Windows container, Linux VM doesn't need it at all.
136 * To make use of the AF_VSOCK infrastructure in Linux VM, we have to limit
137 * the available GUID space of SOCKADDR_HV so that we can create a mapping
138 * between AF_VSOCK port and SOCKADDR_HV Service GUID. The rule of writing
139 * Hyper-V Sockets apps on the host and in Linux VM is:
141 ****************************************************************************
142 * The only valid Service GUIDs, from the perspectives of both the host and *
143 * Linux VM, that can be connected by the other end, must conform to this *
144 * format: <port>-facb-11e6-bd58-64006a7986d3, and the "port" must be in *
145 * this range [0, 0x7FFFFFFF]. *
146 ****************************************************************************
148 * When we write apps on the host to connect(), the GUID ServiceID is used.
149 * When we write apps in Linux VM to connect(), we only need to specify the
150 * port and the driver will form the GUID and use that to request the host.
152 * From the perspective of Linux VM:
153 * 1. the local ephemeral port (i.e. the local auto-bound port when we call
154 * connect() without explicit bind()) is generated by __vsock_bind_stream(),
155 * and the range is [1024, 0xFFFFFFFF).
156 * 2. the remote ephemeral port (i.e. the auto-generated remote port for
157 * a connect request initiated by the host's connect()) is generated by
158 * hvs_remote_addr_init() and the range is [0x80000000, 0xFFFFFFFF).
161 #define MAX_LISTEN_PORT ((u32)0x7FFFFFFF)
162 #define MAX_VM_LISTEN_PORT MAX_LISTEN_PORT
163 #define MAX_HOST_LISTEN_PORT MAX_LISTEN_PORT
164 #define MIN_HOST_EPHEMERAL_PORT (MAX_HOST_LISTEN_PORT + 1)
166 /* 00000000-facb-11e6-bd58-64006a7986d3 */
167 static const uuid_le srv_id_template =
168 UUID_LE(0x00000000, 0xfacb, 0x11e6, 0xbd, 0x58,
169 0x64, 0x00, 0x6a, 0x79, 0x86, 0xd3);
171 static bool is_valid_srv_id(const uuid_le *id)
173 return !memcmp(&id->b[4], &srv_id_template.b[4], sizeof(uuid_le) - 4);
176 static unsigned int get_port_by_srv_id(const uuid_le *svr_id)
178 return *((unsigned int *)svr_id);
181 static void hvs_addr_init(struct sockaddr_vm *addr, const uuid_le *svr_id)
183 unsigned int port = get_port_by_srv_id(svr_id);
185 vsock_addr_init(addr, VMADDR_CID_ANY, port);
188 static void hvs_remote_addr_init(struct sockaddr_vm *remote,
189 struct sockaddr_vm *local)
191 static u32 host_ephemeral_port = MIN_HOST_EPHEMERAL_PORT;
192 struct sock *sk;
194 vsock_addr_init(remote, VMADDR_CID_ANY, VMADDR_PORT_ANY);
196 while (1) {
197 /* Wrap around ? */
198 if (host_ephemeral_port < MIN_HOST_EPHEMERAL_PORT ||
199 host_ephemeral_port == VMADDR_PORT_ANY)
200 host_ephemeral_port = MIN_HOST_EPHEMERAL_PORT;
202 remote->svm_port = host_ephemeral_port++;
204 sk = vsock_find_connected_socket(remote, local);
205 if (!sk) {
206 /* Found an available ephemeral port */
207 return;
210 /* Release refcnt got in vsock_find_connected_socket */
211 sock_put(sk);
215 static void hvs_set_channel_pending_send_size(struct vmbus_channel *chan)
217 set_channel_pending_send_size(chan,
218 HVS_PKT_LEN(HVS_SEND_BUF_SIZE));
220 /* See hvs_stream_has_space(): we must make sure the host has seen
221 * the new pending send size, before we can re-check the writable
222 * bytes.
224 virt_mb();
227 static void hvs_clear_channel_pending_send_size(struct vmbus_channel *chan)
229 set_channel_pending_send_size(chan, 0);
231 /* Ditto */
232 virt_mb();
235 static bool hvs_channel_readable(struct vmbus_channel *chan)
237 u32 readable = hv_get_bytes_to_read(&chan->inbound);
239 /* 0-size payload means FIN */
240 return readable >= HVS_PKT_LEN(0);
243 static int hvs_channel_readable_payload(struct vmbus_channel *chan)
245 u32 readable = hv_get_bytes_to_read(&chan->inbound);
247 if (readable > HVS_PKT_LEN(0)) {
248 /* At least we have 1 byte to read. We don't need to return
249 * the exact readable bytes: see vsock_stream_recvmsg() ->
250 * vsock_stream_has_data().
252 return 1;
255 if (readable == HVS_PKT_LEN(0)) {
256 /* 0-size payload means FIN */
257 return 0;
260 /* No payload or FIN */
261 return -1;
264 static size_t hvs_channel_writable_bytes(struct vmbus_channel *chan)
266 u32 writeable = hv_get_bytes_to_write(&chan->outbound);
267 size_t ret;
269 /* The ringbuffer mustn't be 100% full, and we should reserve a
270 * zero-length-payload packet for the FIN: see hv_ringbuffer_write()
271 * and hvs_shutdown().
273 if (writeable <= HVS_PKT_LEN(1) + HVS_PKT_LEN(0))
274 return 0;
276 ret = writeable - HVS_PKT_LEN(1) - HVS_PKT_LEN(0);
278 return round_down(ret, 8);
281 static int hvs_send_data(struct vmbus_channel *chan,
282 struct hvs_send_buf *send_buf, size_t to_write)
284 send_buf->hdr.pkt_type = 1;
285 send_buf->hdr.data_size = to_write;
286 return vmbus_sendpacket(chan, &send_buf->hdr,
287 sizeof(send_buf->hdr) + to_write,
288 0, VM_PKT_DATA_INBAND, 0);
291 static void hvs_channel_cb(void *ctx)
293 struct sock *sk = (struct sock *)ctx;
294 struct vsock_sock *vsk = vsock_sk(sk);
295 struct hvsock *hvs = vsk->trans;
296 struct vmbus_channel *chan = hvs->chan;
298 if (hvs_channel_readable(chan))
299 sk->sk_data_ready(sk);
301 /* See hvs_stream_has_space(): when we reach here, the writable bytes
302 * may be already less than HVS_PKT_LEN(HVS_SEND_BUF_SIZE).
304 if (hv_get_bytes_to_write(&chan->outbound) > 0)
305 sk->sk_write_space(sk);
308 static void hvs_close_connection(struct vmbus_channel *chan)
310 struct sock *sk = get_per_channel_state(chan);
311 struct vsock_sock *vsk = vsock_sk(sk);
313 sk->sk_state = TCP_CLOSE;
314 sock_set_flag(sk, SOCK_DONE);
315 vsk->peer_shutdown |= SEND_SHUTDOWN | RCV_SHUTDOWN;
317 sk->sk_state_change(sk);
320 static void hvs_open_connection(struct vmbus_channel *chan)
322 uuid_le *if_instance, *if_type;
323 unsigned char conn_from_host;
325 struct sockaddr_vm addr;
326 struct sock *sk, *new = NULL;
327 struct vsock_sock *vnew;
328 struct hvsock *hvs, *hvs_new;
329 int ret;
331 if_type = &chan->offermsg.offer.if_type;
332 if_instance = &chan->offermsg.offer.if_instance;
333 conn_from_host = chan->offermsg.offer.u.pipe.user_def[0];
335 /* The host or the VM should only listen on a port in
336 * [0, MAX_LISTEN_PORT]
338 if (!is_valid_srv_id(if_type) ||
339 get_port_by_srv_id(if_type) > MAX_LISTEN_PORT)
340 return;
342 hvs_addr_init(&addr, conn_from_host ? if_type : if_instance);
343 sk = vsock_find_bound_socket(&addr);
344 if (!sk)
345 return;
347 if ((conn_from_host && sk->sk_state != TCP_LISTEN) ||
348 (!conn_from_host && sk->sk_state != TCP_SYN_SENT))
349 goto out;
351 if (conn_from_host) {
352 if (sk->sk_ack_backlog >= sk->sk_max_ack_backlog)
353 goto out;
355 new = __vsock_create(sock_net(sk), NULL, sk, GFP_KERNEL,
356 sk->sk_type, 0);
357 if (!new)
358 goto out;
360 new->sk_state = TCP_SYN_SENT;
361 vnew = vsock_sk(new);
362 hvs_new = vnew->trans;
363 hvs_new->chan = chan;
364 } else {
365 hvs = vsock_sk(sk)->trans;
366 hvs->chan = chan;
369 set_channel_read_mode(chan, HV_CALL_DIRECT);
370 ret = vmbus_open(chan, RINGBUFFER_HVS_SND_SIZE,
371 RINGBUFFER_HVS_RCV_SIZE, NULL, 0,
372 hvs_channel_cb, conn_from_host ? new : sk);
373 if (ret != 0) {
374 if (conn_from_host) {
375 hvs_new->chan = NULL;
376 sock_put(new);
377 } else {
378 hvs->chan = NULL;
380 goto out;
383 set_per_channel_state(chan, conn_from_host ? new : sk);
384 vmbus_set_chn_rescind_callback(chan, hvs_close_connection);
386 if (conn_from_host) {
387 new->sk_state = TCP_ESTABLISHED;
388 sk->sk_ack_backlog++;
390 hvs_addr_init(&vnew->local_addr, if_type);
391 hvs_remote_addr_init(&vnew->remote_addr, &vnew->local_addr);
393 hvs_new->vm_srv_id = *if_type;
394 hvs_new->host_srv_id = *if_instance;
396 vsock_insert_connected(vnew);
398 lock_sock(sk);
399 vsock_enqueue_accept(sk, new);
400 release_sock(sk);
401 } else {
402 sk->sk_state = TCP_ESTABLISHED;
403 sk->sk_socket->state = SS_CONNECTED;
405 vsock_insert_connected(vsock_sk(sk));
408 sk->sk_state_change(sk);
410 out:
411 /* Release refcnt obtained when we called vsock_find_bound_socket() */
412 sock_put(sk);
415 static u32 hvs_get_local_cid(void)
417 return VMADDR_CID_ANY;
420 static int hvs_sock_init(struct vsock_sock *vsk, struct vsock_sock *psk)
422 struct hvsock *hvs;
424 hvs = kzalloc(sizeof(*hvs), GFP_KERNEL);
425 if (!hvs)
426 return -ENOMEM;
428 vsk->trans = hvs;
429 hvs->vsk = vsk;
431 return 0;
434 static int hvs_connect(struct vsock_sock *vsk)
436 union hvs_service_id vm, host;
437 struct hvsock *h = vsk->trans;
439 vm.srv_id = srv_id_template;
440 vm.svm_port = vsk->local_addr.svm_port;
441 h->vm_srv_id = vm.srv_id;
443 host.srv_id = srv_id_template;
444 host.svm_port = vsk->remote_addr.svm_port;
445 h->host_srv_id = host.srv_id;
447 return vmbus_send_tl_connect_request(&h->vm_srv_id, &h->host_srv_id);
450 static int hvs_shutdown(struct vsock_sock *vsk, int mode)
452 struct sock *sk = sk_vsock(vsk);
453 struct vmpipe_proto_header hdr;
454 struct hvs_send_buf *send_buf;
455 struct hvsock *hvs;
457 if (!(mode & SEND_SHUTDOWN))
458 return 0;
460 lock_sock(sk);
462 hvs = vsk->trans;
463 if (hvs->fin_sent)
464 goto out;
466 send_buf = (struct hvs_send_buf *)&hdr;
468 /* It can't fail: see hvs_channel_writable_bytes(). */
469 (void)hvs_send_data(hvs->chan, send_buf, 0);
471 hvs->fin_sent = true;
472 out:
473 release_sock(sk);
474 return 0;
477 static void hvs_release(struct vsock_sock *vsk)
479 struct hvsock *hvs = vsk->trans;
480 struct vmbus_channel *chan = hvs->chan;
482 if (chan)
483 hvs_shutdown(vsk, RCV_SHUTDOWN | SEND_SHUTDOWN);
485 vsock_remove_sock(vsk);
488 static void hvs_destruct(struct vsock_sock *vsk)
490 struct hvsock *hvs = vsk->trans;
491 struct vmbus_channel *chan = hvs->chan;
493 if (chan)
494 vmbus_hvsock_device_unregister(chan);
496 kfree(hvs);
499 static int hvs_dgram_bind(struct vsock_sock *vsk, struct sockaddr_vm *addr)
501 return -EOPNOTSUPP;
504 static int hvs_dgram_dequeue(struct vsock_sock *vsk, struct msghdr *msg,
505 size_t len, int flags)
507 return -EOPNOTSUPP;
510 static int hvs_dgram_enqueue(struct vsock_sock *vsk,
511 struct sockaddr_vm *remote, struct msghdr *msg,
512 size_t dgram_len)
514 return -EOPNOTSUPP;
517 static bool hvs_dgram_allow(u32 cid, u32 port)
519 return false;
522 static int hvs_update_recv_data(struct hvsock *hvs)
524 struct hvs_recv_buf *recv_buf;
525 u32 payload_len;
527 recv_buf = (struct hvs_recv_buf *)(hvs->recv_desc + 1);
528 payload_len = recv_buf->hdr.data_size;
530 if (payload_len > HVS_MTU_SIZE)
531 return -EIO;
533 if (payload_len == 0)
534 hvs->vsk->peer_shutdown |= SEND_SHUTDOWN;
536 hvs->recv_data_len = payload_len;
537 hvs->recv_data_off = 0;
539 return 0;
542 static ssize_t hvs_stream_dequeue(struct vsock_sock *vsk, struct msghdr *msg,
543 size_t len, int flags)
545 struct hvsock *hvs = vsk->trans;
546 bool need_refill = !hvs->recv_desc;
547 struct hvs_recv_buf *recv_buf;
548 u32 to_read;
549 int ret;
551 if (flags & MSG_PEEK)
552 return -EOPNOTSUPP;
554 if (need_refill) {
555 hvs->recv_desc = hv_pkt_iter_first(hvs->chan);
556 ret = hvs_update_recv_data(hvs);
557 if (ret)
558 return ret;
561 recv_buf = (struct hvs_recv_buf *)(hvs->recv_desc + 1);
562 to_read = min_t(u32, len, hvs->recv_data_len);
563 ret = memcpy_to_msg(msg, recv_buf->data + hvs->recv_data_off, to_read);
564 if (ret != 0)
565 return ret;
567 hvs->recv_data_len -= to_read;
568 if (hvs->recv_data_len == 0) {
569 hvs->recv_desc = hv_pkt_iter_next(hvs->chan, hvs->recv_desc);
570 if (hvs->recv_desc) {
571 ret = hvs_update_recv_data(hvs);
572 if (ret)
573 return ret;
575 } else {
576 hvs->recv_data_off += to_read;
579 return to_read;
582 static ssize_t hvs_stream_enqueue(struct vsock_sock *vsk, struct msghdr *msg,
583 size_t len)
585 struct hvsock *hvs = vsk->trans;
586 struct vmbus_channel *chan = hvs->chan;
587 struct hvs_send_buf *send_buf;
588 ssize_t to_write, max_writable, ret;
590 BUILD_BUG_ON(sizeof(*send_buf) != PAGE_SIZE_4K);
592 send_buf = kmalloc(sizeof(*send_buf), GFP_KERNEL);
593 if (!send_buf)
594 return -ENOMEM;
596 max_writable = hvs_channel_writable_bytes(chan);
597 to_write = min_t(ssize_t, len, max_writable);
598 to_write = min_t(ssize_t, to_write, HVS_SEND_BUF_SIZE);
600 ret = memcpy_from_msg(send_buf->data, msg, to_write);
601 if (ret < 0)
602 goto out;
604 ret = hvs_send_data(hvs->chan, send_buf, to_write);
605 if (ret < 0)
606 goto out;
608 ret = to_write;
609 out:
610 kfree(send_buf);
611 return ret;
614 static s64 hvs_stream_has_data(struct vsock_sock *vsk)
616 struct hvsock *hvs = vsk->trans;
617 s64 ret;
619 if (hvs->recv_data_len > 0)
620 return 1;
622 switch (hvs_channel_readable_payload(hvs->chan)) {
623 case 1:
624 ret = 1;
625 break;
626 case 0:
627 vsk->peer_shutdown |= SEND_SHUTDOWN;
628 ret = 0;
629 break;
630 default: /* -1 */
631 ret = 0;
632 break;
635 return ret;
638 static s64 hvs_stream_has_space(struct vsock_sock *vsk)
640 struct hvsock *hvs = vsk->trans;
641 struct vmbus_channel *chan = hvs->chan;
642 s64 ret;
644 ret = hvs_channel_writable_bytes(chan);
645 if (ret > 0) {
646 hvs_clear_channel_pending_send_size(chan);
647 } else {
648 /* See hvs_channel_cb() */
649 hvs_set_channel_pending_send_size(chan);
651 /* Re-check the writable bytes to avoid race */
652 ret = hvs_channel_writable_bytes(chan);
653 if (ret > 0)
654 hvs_clear_channel_pending_send_size(chan);
657 return ret;
660 static u64 hvs_stream_rcvhiwat(struct vsock_sock *vsk)
662 return HVS_MTU_SIZE + 1;
665 static bool hvs_stream_is_active(struct vsock_sock *vsk)
667 struct hvsock *hvs = vsk->trans;
669 return hvs->chan != NULL;
672 static bool hvs_stream_allow(u32 cid, u32 port)
674 /* The host's port range [MIN_HOST_EPHEMERAL_PORT, 0xFFFFFFFF) is
675 * reserved as ephemeral ports, which are used as the host's ports
676 * when the host initiates connections.
678 * Perform this check in the guest so an immediate error is produced
679 * instead of a timeout.
681 if (port > MAX_HOST_LISTEN_PORT)
682 return false;
684 if (cid == VMADDR_CID_HOST)
685 return true;
687 return false;
690 static
691 int hvs_notify_poll_in(struct vsock_sock *vsk, size_t target, bool *readable)
693 struct hvsock *hvs = vsk->trans;
695 *readable = hvs_channel_readable(hvs->chan);
696 return 0;
699 static
700 int hvs_notify_poll_out(struct vsock_sock *vsk, size_t target, bool *writable)
702 *writable = hvs_stream_has_space(vsk) > 0;
704 return 0;
707 static
708 int hvs_notify_recv_init(struct vsock_sock *vsk, size_t target,
709 struct vsock_transport_recv_notify_data *d)
711 return 0;
714 static
715 int hvs_notify_recv_pre_block(struct vsock_sock *vsk, size_t target,
716 struct vsock_transport_recv_notify_data *d)
718 return 0;
721 static
722 int hvs_notify_recv_pre_dequeue(struct vsock_sock *vsk, size_t target,
723 struct vsock_transport_recv_notify_data *d)
725 return 0;
728 static
729 int hvs_notify_recv_post_dequeue(struct vsock_sock *vsk, size_t target,
730 ssize_t copied, bool data_read,
731 struct vsock_transport_recv_notify_data *d)
733 return 0;
736 static
737 int hvs_notify_send_init(struct vsock_sock *vsk,
738 struct vsock_transport_send_notify_data *d)
740 return 0;
743 static
744 int hvs_notify_send_pre_block(struct vsock_sock *vsk,
745 struct vsock_transport_send_notify_data *d)
747 return 0;
750 static
751 int hvs_notify_send_pre_enqueue(struct vsock_sock *vsk,
752 struct vsock_transport_send_notify_data *d)
754 return 0;
757 static
758 int hvs_notify_send_post_enqueue(struct vsock_sock *vsk, ssize_t written,
759 struct vsock_transport_send_notify_data *d)
761 return 0;
764 static void hvs_set_buffer_size(struct vsock_sock *vsk, u64 val)
766 /* Ignored. */
769 static void hvs_set_min_buffer_size(struct vsock_sock *vsk, u64 val)
771 /* Ignored. */
774 static void hvs_set_max_buffer_size(struct vsock_sock *vsk, u64 val)
776 /* Ignored. */
779 static u64 hvs_get_buffer_size(struct vsock_sock *vsk)
781 return -ENOPROTOOPT;
784 static u64 hvs_get_min_buffer_size(struct vsock_sock *vsk)
786 return -ENOPROTOOPT;
789 static u64 hvs_get_max_buffer_size(struct vsock_sock *vsk)
791 return -ENOPROTOOPT;
794 static struct vsock_transport hvs_transport = {
795 .get_local_cid = hvs_get_local_cid,
797 .init = hvs_sock_init,
798 .destruct = hvs_destruct,
799 .release = hvs_release,
800 .connect = hvs_connect,
801 .shutdown = hvs_shutdown,
803 .dgram_bind = hvs_dgram_bind,
804 .dgram_dequeue = hvs_dgram_dequeue,
805 .dgram_enqueue = hvs_dgram_enqueue,
806 .dgram_allow = hvs_dgram_allow,
808 .stream_dequeue = hvs_stream_dequeue,
809 .stream_enqueue = hvs_stream_enqueue,
810 .stream_has_data = hvs_stream_has_data,
811 .stream_has_space = hvs_stream_has_space,
812 .stream_rcvhiwat = hvs_stream_rcvhiwat,
813 .stream_is_active = hvs_stream_is_active,
814 .stream_allow = hvs_stream_allow,
816 .notify_poll_in = hvs_notify_poll_in,
817 .notify_poll_out = hvs_notify_poll_out,
818 .notify_recv_init = hvs_notify_recv_init,
819 .notify_recv_pre_block = hvs_notify_recv_pre_block,
820 .notify_recv_pre_dequeue = hvs_notify_recv_pre_dequeue,
821 .notify_recv_post_dequeue = hvs_notify_recv_post_dequeue,
822 .notify_send_init = hvs_notify_send_init,
823 .notify_send_pre_block = hvs_notify_send_pre_block,
824 .notify_send_pre_enqueue = hvs_notify_send_pre_enqueue,
825 .notify_send_post_enqueue = hvs_notify_send_post_enqueue,
827 .set_buffer_size = hvs_set_buffer_size,
828 .set_min_buffer_size = hvs_set_min_buffer_size,
829 .set_max_buffer_size = hvs_set_max_buffer_size,
830 .get_buffer_size = hvs_get_buffer_size,
831 .get_min_buffer_size = hvs_get_min_buffer_size,
832 .get_max_buffer_size = hvs_get_max_buffer_size,
835 static int hvs_probe(struct hv_device *hdev,
836 const struct hv_vmbus_device_id *dev_id)
838 struct vmbus_channel *chan = hdev->channel;
840 hvs_open_connection(chan);
842 /* Always return success to suppress the unnecessary error message
843 * in vmbus_probe(): on error the host will rescind the device in
844 * 30 seconds and we can do cleanup at that time in
845 * vmbus_onoffer_rescind().
847 return 0;
850 static int hvs_remove(struct hv_device *hdev)
852 struct vmbus_channel *chan = hdev->channel;
854 vmbus_close(chan);
856 return 0;
859 /* This isn't really used. See vmbus_match() and vmbus_probe() */
860 static const struct hv_vmbus_device_id id_table[] = {
864 static struct hv_driver hvs_drv = {
865 .name = "hv_sock",
866 .hvsock = true,
867 .id_table = id_table,
868 .probe = hvs_probe,
869 .remove = hvs_remove,
872 static int __init hvs_init(void)
874 int ret;
876 if (vmbus_proto_version < VERSION_WIN10)
877 return -ENODEV;
879 ret = vmbus_driver_register(&hvs_drv);
880 if (ret != 0)
881 return ret;
883 ret = vsock_core_init(&hvs_transport);
884 if (ret) {
885 vmbus_driver_unregister(&hvs_drv);
886 return ret;
889 return 0;
892 static void __exit hvs_exit(void)
894 vsock_core_exit();
895 vmbus_driver_unregister(&hvs_drv);
898 module_init(hvs_init);
899 module_exit(hvs_exit);
901 MODULE_DESCRIPTION("Hyper-V Sockets");
902 MODULE_VERSION("1.0.0");
903 MODULE_LICENSE("GPL");
904 MODULE_ALIAS_NETPROTO(PF_VSOCK);