Thomas Gleixner | 3b20eb2 | 2019-05-29 16:57:35 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 2 | /* |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 3 | * Copyright (c) 2009, Microsoft Corporation. |
| 4 | * |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 5 | * Authors: |
| 6 | * Haiyang Zhang <haiyangz@microsoft.com> |
| 7 | * Hank Janssen <hjanssen@microsoft.com> |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 8 | */ |
Hank Janssen | 0a46618 | 2011-03-29 13:58:47 -0700 | [diff] [blame] | 9 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 10 | |
Greg Kroah-Hartman | 5654e93 | 2009-07-14 15:08:20 -0700 | [diff] [blame] | 11 | #include <linux/kernel.h> |
K. Y. Srinivasan | 0c3b7b2 | 2011-02-11 09:59:43 -0800 | [diff] [blame] | 12 | #include <linux/sched.h> |
| 13 | #include <linux/wait.h> |
Greg Kroah-Hartman | a0086dc | 2009-08-17 17:22:08 -0700 | [diff] [blame] | 14 | #include <linux/mm.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 15 | #include <linux/slab.h> |
Hank Janssen | c88c4e4 | 2010-05-04 15:55:05 -0700 | [diff] [blame] | 16 | #include <linux/module.h> |
Greg Kroah-Hartman | 46a9719 | 2011-10-04 12:29:52 -0700 | [diff] [blame] | 17 | #include <linux/hyperv.h> |
K. Y. Srinivasan | 011a7c3 | 2014-02-01 19:02:20 -0800 | [diff] [blame] | 18 | #include <linux/uio.h> |
Dexuan Cui | 63d55b2 | 2015-12-14 16:01:47 -0800 | [diff] [blame] | 19 | #include <linux/interrupt.h> |
Tianyu Lan | d4dccf3 | 2021-10-25 08:21:09 -0400 | [diff] [blame] | 20 | #include <linux/set_memory.h> |
Michael Kelley | 6ba3417 | 2018-08-02 03:08:24 +0000 | [diff] [blame] | 21 | #include <asm/page.h> |
Andrea Parri (Microsoft) | 5bf7468 | 2020-06-17 18:46:35 +0200 | [diff] [blame] | 22 | #include <asm/mshyperv.h> |
K. Y. Srinivasan | 3f335ea | 2011-05-12 19:34:15 -0700 | [diff] [blame] | 23 | |
K. Y. Srinivasan | 0f2a661 | 2011-05-12 19:34:28 -0700 | [diff] [blame] | 24 | #include "hyperv_vmbus.h" |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 25 | |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 26 | /* |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 27 | * hv_gpadl_size - Return the real size of a gpadl, the size that Hyper-V uses |
| 28 | * |
| 29 | * For BUFFER gpadl, Hyper-V uses the exact same size as the guest does. |
| 30 | * |
| 31 | * For RING gpadl, in each ring, the guest uses one PAGE_SIZE as the header |
| 32 | * (because of the alignment requirement), however, the hypervisor only |
| 33 | * uses the first HV_HYP_PAGE_SIZE as the header, therefore leaving a |
| 34 | * (PAGE_SIZE - HV_HYP_PAGE_SIZE) gap. And since there are two rings in a |
| 35 | * ringbuffer, the total size for a RING gpadl that Hyper-V uses is the |
| 36 | * total size that the guest uses minus twice of the gap size. |
| 37 | */ |
| 38 | static inline u32 hv_gpadl_size(enum hv_gpadl_type type, u32 size) |
| 39 | { |
| 40 | switch (type) { |
| 41 | case HV_GPADL_BUFFER: |
| 42 | return size; |
| 43 | case HV_GPADL_RING: |
| 44 | /* The size of a ringbuffer must be page-aligned */ |
| 45 | BUG_ON(size % PAGE_SIZE); |
| 46 | /* |
| 47 | * Two things to notice here: |
| 48 | * 1) We're processing two ring buffers as a unit |
| 49 | * 2) We're skipping any space larger than HV_HYP_PAGE_SIZE in |
| 50 | * the first guest-size page of each of the two ring buffers. |
| 51 | * So we effectively subtract out two guest-size pages, and add |
| 52 | * back two Hyper-V size pages. |
| 53 | */ |
| 54 | return size - 2 * (PAGE_SIZE - HV_HYP_PAGE_SIZE); |
| 55 | } |
| 56 | BUG(); |
| 57 | return 0; |
| 58 | } |
| 59 | |
| 60 | /* |
| 61 | * hv_ring_gpadl_send_hvpgoffset - Calculate the send offset (in unit of |
| 62 | * HV_HYP_PAGE) in a ring gpadl based on the |
| 63 | * offset in the guest |
| 64 | * |
| 65 | * @offset: the offset (in bytes) where the send ringbuffer starts in the |
| 66 | * virtual address space of the guest |
| 67 | */ |
| 68 | static inline u32 hv_ring_gpadl_send_hvpgoffset(u32 offset) |
| 69 | { |
| 70 | |
| 71 | /* |
| 72 | * For RING gpadl, in each ring, the guest uses one PAGE_SIZE as the |
| 73 | * header (because of the alignment requirement), however, the |
| 74 | * hypervisor only uses the first HV_HYP_PAGE_SIZE as the header, |
| 75 | * therefore leaving a (PAGE_SIZE - HV_HYP_PAGE_SIZE) gap. |
| 76 | * |
| 77 | * And to calculate the effective send offset in gpadl, we need to |
| 78 | * substract this gap. |
| 79 | */ |
| 80 | return (offset - (PAGE_SIZE - HV_HYP_PAGE_SIZE)) >> HV_HYP_PAGE_SHIFT; |
| 81 | } |
| 82 | |
| 83 | /* |
| 84 | * hv_gpadl_hvpfn - Return the Hyper-V page PFN of the @i th Hyper-V page in |
| 85 | * the gpadl |
| 86 | * |
| 87 | * @type: the type of the gpadl |
| 88 | * @kbuffer: the pointer to the gpadl in the guest |
| 89 | * @size: the total size (in bytes) of the gpadl |
| 90 | * @send_offset: the offset (in bytes) where the send ringbuffer starts in the |
| 91 | * virtual address space of the guest |
| 92 | * @i: the index |
| 93 | */ |
| 94 | static inline u64 hv_gpadl_hvpfn(enum hv_gpadl_type type, void *kbuffer, |
| 95 | u32 size, u32 send_offset, int i) |
| 96 | { |
| 97 | int send_idx = hv_ring_gpadl_send_hvpgoffset(send_offset); |
| 98 | unsigned long delta = 0UL; |
| 99 | |
| 100 | switch (type) { |
| 101 | case HV_GPADL_BUFFER: |
| 102 | break; |
| 103 | case HV_GPADL_RING: |
| 104 | if (i == 0) |
| 105 | delta = 0; |
| 106 | else if (i <= send_idx) |
| 107 | delta = PAGE_SIZE - HV_HYP_PAGE_SIZE; |
| 108 | else |
| 109 | delta = 2 * (PAGE_SIZE - HV_HYP_PAGE_SIZE); |
| 110 | break; |
| 111 | default: |
| 112 | BUG(); |
| 113 | break; |
| 114 | } |
| 115 | |
| 116 | return virt_to_hvpfn(kbuffer + delta + (HV_HYP_PAGE_SIZE * i)); |
| 117 | } |
| 118 | |
| 119 | /* |
Haiyang Zhang | fff41b2 | 2010-10-07 11:40:08 -0700 | [diff] [blame] | 120 | * vmbus_setevent- Trigger an event notification on the specified |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 121 | * channel. |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 122 | */ |
K. Y. Srinivasan | 1f6ee4e | 2016-11-06 13:14:17 -0800 | [diff] [blame] | 123 | void vmbus_setevent(struct vmbus_channel *channel) |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 124 | { |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 125 | struct hv_monitor_page *monitorpage; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 126 | |
Vitaly Kuznetsov | 991f8f1 | 2017-10-29 12:21:16 -0700 | [diff] [blame] | 127 | trace_vmbus_setevent(channel); |
| 128 | |
K. Y. Srinivasan | 3724287 | 2016-07-01 16:26:37 -0700 | [diff] [blame] | 129 | /* |
| 130 | * For channels marked as in "low latency" mode |
| 131 | * bypass the monitor page mechanism. |
| 132 | */ |
Stephen Hemminger | 5c1bec6 | 2017-02-05 17:20:31 -0700 | [diff] [blame] | 133 | if (channel->offermsg.monitor_allocated && !channel->low_latency) { |
| 134 | vmbus_send_interrupt(channel->offermsg.child_relid); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 135 | |
Greg Kroah-Hartman | 8681db4 | 2013-09-13 11:32:55 -0700 | [diff] [blame] | 136 | /* Get the child to parent monitor page */ |
| 137 | monitorpage = vmbus_connection.monitor_pages[1]; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 138 | |
Olaf Hering | 2235658 | 2011-03-21 14:41:37 +0100 | [diff] [blame] | 139 | sync_set_bit(channel->monitor_bit, |
Haiyang Zhang | f6feebe | 2010-11-08 14:04:39 -0800 | [diff] [blame] | 140 | (unsigned long *)&monitorpage->trigger_group |
| 141 | [channel->monitor_grp].pending); |
Bill Pemberton | 7c369f4 | 2009-07-29 17:00:11 -0400 | [diff] [blame] | 142 | |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 143 | } else { |
K. Y. Srinivasan | 21c3bef | 2012-12-01 06:46:43 -0800 | [diff] [blame] | 144 | vmbus_set_event(channel); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 145 | } |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 146 | } |
K. Y. Srinivasan | 1f6ee4e | 2016-11-06 13:14:17 -0800 | [diff] [blame] | 147 | EXPORT_SYMBOL_GPL(vmbus_setevent); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 148 | |
Stephen Hemminger | ae6935e | 2018-09-14 09:10:17 -0700 | [diff] [blame] | 149 | /* vmbus_free_ring - drop mapping of ring buffer */ |
| 150 | void vmbus_free_ring(struct vmbus_channel *channel) |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 151 | { |
Stephen Hemminger | ae6935e | 2018-09-14 09:10:17 -0700 | [diff] [blame] | 152 | hv_ringbuffer_cleanup(&channel->outbound); |
| 153 | hv_ringbuffer_cleanup(&channel->inbound); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 154 | |
Stephen Hemminger | ae6935e | 2018-09-14 09:10:17 -0700 | [diff] [blame] | 155 | if (channel->ringbuffer_page) { |
| 156 | __free_pages(channel->ringbuffer_page, |
| 157 | get_order(channel->ringbuffer_pagecount |
| 158 | << PAGE_SHIFT)); |
| 159 | channel->ringbuffer_page = NULL; |
K. Y. Srinivasan | e68d297 | 2013-05-23 12:02:32 -0700 | [diff] [blame] | 160 | } |
Stephen Hemminger | ae6935e | 2018-09-14 09:10:17 -0700 | [diff] [blame] | 161 | } |
| 162 | EXPORT_SYMBOL_GPL(vmbus_free_ring); |
K. Y. Srinivasan | e68d297 | 2013-05-23 12:02:32 -0700 | [diff] [blame] | 163 | |
Stephen Hemminger | ae6935e | 2018-09-14 09:10:17 -0700 | [diff] [blame] | 164 | /* vmbus_alloc_ring - allocate and map pages for ring buffer */ |
| 165 | int vmbus_alloc_ring(struct vmbus_channel *newchannel, |
| 166 | u32 send_size, u32 recv_size) |
| 167 | { |
| 168 | struct page *page; |
| 169 | int order; |
| 170 | |
| 171 | if (send_size % PAGE_SIZE || recv_size % PAGE_SIZE) |
| 172 | return -EINVAL; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 173 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 174 | /* Allocate the ring buffer */ |
Stephen Hemminger | ae6935e | 2018-09-14 09:10:17 -0700 | [diff] [blame] | 175 | order = get_order(send_size + recv_size); |
K. Y. Srinivasan | 294409d | 2015-05-31 21:27:03 -0700 | [diff] [blame] | 176 | page = alloc_pages_node(cpu_to_node(newchannel->target_cpu), |
Stephen Hemminger | 52a42c2 | 2018-09-14 09:10:16 -0700 | [diff] [blame] | 177 | GFP_KERNEL|__GFP_ZERO, order); |
K. Y. Srinivasan | 294409d | 2015-05-31 21:27:03 -0700 | [diff] [blame] | 178 | |
| 179 | if (!page) |
Stephen Hemminger | 52a42c2 | 2018-09-14 09:10:16 -0700 | [diff] [blame] | 180 | page = alloc_pages(GFP_KERNEL|__GFP_ZERO, order); |
K. Y. Srinivasan | df3493e | 2011-02-11 09:59:00 -0800 | [diff] [blame] | 181 | |
Stephen Hemminger | ae6935e | 2018-09-14 09:10:17 -0700 | [diff] [blame] | 182 | if (!page) |
| 183 | return -ENOMEM; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 184 | |
Stephen Hemminger | 52a42c2 | 2018-09-14 09:10:16 -0700 | [diff] [blame] | 185 | newchannel->ringbuffer_page = page; |
Stephen Hemminger | ae6935e | 2018-09-14 09:10:17 -0700 | [diff] [blame] | 186 | newchannel->ringbuffer_pagecount = (send_size + recv_size) >> PAGE_SHIFT; |
| 187 | newchannel->ringbuffer_send_offset = send_size >> PAGE_SHIFT; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 188 | |
Stephen Hemminger | ae6935e | 2018-09-14 09:10:17 -0700 | [diff] [blame] | 189 | return 0; |
| 190 | } |
| 191 | EXPORT_SYMBOL_GPL(vmbus_alloc_ring); |
K. Y. Srinivasan | 72a95cb | 2011-05-10 07:55:21 -0700 | [diff] [blame] | 192 | |
Dexuan Cui | 5c23a1a | 2016-01-27 22:29:40 -0800 | [diff] [blame] | 193 | /* Used for Hyper-V Socket: a guest client's connect() to the host */ |
Andy Shevchenko | 593db80 | 2019-01-10 16:25:32 +0200 | [diff] [blame] | 194 | int vmbus_send_tl_connect_request(const guid_t *shv_guest_servie_id, |
| 195 | const guid_t *shv_host_servie_id) |
Dexuan Cui | 5c23a1a | 2016-01-27 22:29:40 -0800 | [diff] [blame] | 196 | { |
| 197 | struct vmbus_channel_tl_connect_request conn_msg; |
Vitaly Kuznetsov | 98f31a0 | 2017-10-29 12:21:15 -0700 | [diff] [blame] | 198 | int ret; |
Dexuan Cui | 5c23a1a | 2016-01-27 22:29:40 -0800 | [diff] [blame] | 199 | |
| 200 | memset(&conn_msg, 0, sizeof(conn_msg)); |
| 201 | conn_msg.header.msgtype = CHANNELMSG_TL_CONNECT_REQUEST; |
| 202 | conn_msg.guest_endpoint_id = *shv_guest_servie_id; |
| 203 | conn_msg.host_service_id = *shv_host_servie_id; |
| 204 | |
Vitaly Kuznetsov | 98f31a0 | 2017-10-29 12:21:15 -0700 | [diff] [blame] | 205 | ret = vmbus_post_msg(&conn_msg, sizeof(conn_msg), true); |
| 206 | |
| 207 | trace_vmbus_send_tl_connect_request(&conn_msg, ret); |
| 208 | |
| 209 | return ret; |
Dexuan Cui | 5c23a1a | 2016-01-27 22:29:40 -0800 | [diff] [blame] | 210 | } |
| 211 | EXPORT_SYMBOL_GPL(vmbus_send_tl_connect_request); |
| 212 | |
Andrea Parri (Microsoft) | 870ced0 | 2021-04-16 16:34:48 +0200 | [diff] [blame] | 213 | static int send_modifychannel_without_ack(struct vmbus_channel *channel, u32 target_vp) |
| 214 | { |
| 215 | struct vmbus_channel_modifychannel msg; |
| 216 | int ret; |
| 217 | |
| 218 | memset(&msg, 0, sizeof(msg)); |
| 219 | msg.header.msgtype = CHANNELMSG_MODIFYCHANNEL; |
| 220 | msg.child_relid = channel->offermsg.child_relid; |
| 221 | msg.target_vp = target_vp; |
| 222 | |
| 223 | ret = vmbus_post_msg(&msg, sizeof(msg), true); |
| 224 | trace_vmbus_send_modifychannel(&msg, ret); |
| 225 | |
| 226 | return ret; |
| 227 | } |
| 228 | |
| 229 | static int send_modifychannel_with_ack(struct vmbus_channel *channel, u32 target_vp) |
| 230 | { |
| 231 | struct vmbus_channel_modifychannel *msg; |
| 232 | struct vmbus_channel_msginfo *info; |
| 233 | unsigned long flags; |
| 234 | int ret; |
| 235 | |
| 236 | info = kzalloc(sizeof(struct vmbus_channel_msginfo) + |
| 237 | sizeof(struct vmbus_channel_modifychannel), |
| 238 | GFP_KERNEL); |
| 239 | if (!info) |
| 240 | return -ENOMEM; |
| 241 | |
| 242 | init_completion(&info->waitevent); |
| 243 | info->waiting_channel = channel; |
| 244 | |
| 245 | msg = (struct vmbus_channel_modifychannel *)info->msg; |
| 246 | msg->header.msgtype = CHANNELMSG_MODIFYCHANNEL; |
| 247 | msg->child_relid = channel->offermsg.child_relid; |
| 248 | msg->target_vp = target_vp; |
| 249 | |
| 250 | spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); |
| 251 | list_add_tail(&info->msglistentry, &vmbus_connection.chn_msg_list); |
| 252 | spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); |
| 253 | |
| 254 | ret = vmbus_post_msg(msg, sizeof(*msg), true); |
| 255 | trace_vmbus_send_modifychannel(msg, ret); |
| 256 | if (ret != 0) { |
| 257 | spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); |
| 258 | list_del(&info->msglistentry); |
| 259 | spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); |
| 260 | goto free_info; |
| 261 | } |
| 262 | |
| 263 | /* |
| 264 | * Release channel_mutex; otherwise, vmbus_onoffer_rescind() could block on |
| 265 | * the mutex and be unable to signal the completion. |
| 266 | * |
| 267 | * See the caller target_cpu_store() for information about the usage of the |
| 268 | * mutex. |
| 269 | */ |
| 270 | mutex_unlock(&vmbus_connection.channel_mutex); |
| 271 | wait_for_completion(&info->waitevent); |
| 272 | mutex_lock(&vmbus_connection.channel_mutex); |
| 273 | |
| 274 | spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); |
| 275 | list_del(&info->msglistentry); |
| 276 | spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); |
| 277 | |
| 278 | if (info->response.modify_response.status) |
| 279 | ret = -EAGAIN; |
| 280 | |
| 281 | free_info: |
| 282 | kfree(info); |
| 283 | return ret; |
| 284 | } |
| 285 | |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 286 | /* |
Andrea Parri (Microsoft) | 7527810 | 2020-04-06 02:15:13 +0200 | [diff] [blame] | 287 | * Set/change the vCPU (@target_vp) the channel (@child_relid) will interrupt. |
| 288 | * |
Andrea Parri (Microsoft) | 870ced0 | 2021-04-16 16:34:48 +0200 | [diff] [blame] | 289 | * CHANNELMSG_MODIFYCHANNEL messages are aynchronous. When VMbus version 5.3 |
| 290 | * or later is negotiated, Hyper-V always sends an ACK in response to such a |
| 291 | * message. For VMbus version 5.2 and earlier, it never sends an ACK. With- |
| 292 | * out an ACK, we can not know when the host will stop interrupting the "old" |
| 293 | * vCPU and start interrupting the "new" vCPU for the given channel. |
Andrea Parri (Microsoft) | 7527810 | 2020-04-06 02:15:13 +0200 | [diff] [blame] | 294 | * |
| 295 | * The CHANNELMSG_MODIFYCHANNEL message type is supported since VMBus version |
| 296 | * VERSION_WIN10_V4_1. |
| 297 | */ |
Andrea Parri (Microsoft) | 870ced0 | 2021-04-16 16:34:48 +0200 | [diff] [blame] | 298 | int vmbus_send_modifychannel(struct vmbus_channel *channel, u32 target_vp) |
Andrea Parri (Microsoft) | 7527810 | 2020-04-06 02:15:13 +0200 | [diff] [blame] | 299 | { |
Andrea Parri (Microsoft) | 870ced0 | 2021-04-16 16:34:48 +0200 | [diff] [blame] | 300 | if (vmbus_proto_version >= VERSION_WIN10_V5_3) |
| 301 | return send_modifychannel_with_ack(channel, target_vp); |
| 302 | return send_modifychannel_without_ack(channel, target_vp); |
Andrea Parri (Microsoft) | 7527810 | 2020-04-06 02:15:13 +0200 | [diff] [blame] | 303 | } |
| 304 | EXPORT_SYMBOL_GPL(vmbus_send_modifychannel); |
| 305 | |
| 306 | /* |
Haiyang Zhang | fff41b2 | 2010-10-07 11:40:08 -0700 | [diff] [blame] | 307 | * create_gpadl_header - Creates a gpadl for the specified buffer |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 308 | */ |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 309 | static int create_gpadl_header(enum hv_gpadl_type type, void *kbuffer, |
| 310 | u32 size, u32 send_offset, |
Vitaly Kuznetsov | 4d63763 | 2016-06-03 17:09:23 -0700 | [diff] [blame] | 311 | struct vmbus_channel_msginfo **msginfo) |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 312 | { |
| 313 | int i; |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 314 | int pagecount; |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 315 | struct vmbus_channel_gpadl_header *gpadl_header; |
| 316 | struct vmbus_channel_gpadl_body *gpadl_body; |
| 317 | struct vmbus_channel_msginfo *msgheader; |
| 318 | struct vmbus_channel_msginfo *msgbody = NULL; |
| 319 | u32 msgsize; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 320 | |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 321 | int pfnsum, pfncount, pfnleft, pfncurr, pfnsize; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 322 | |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 323 | pagecount = hv_gpadl_size(type, size) >> HV_HYP_PAGE_SHIFT; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 324 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 325 | /* do we need a gpadl body msg */ |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 326 | pfnsize = MAX_SIZE_CHANNEL_MESSAGE - |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 327 | sizeof(struct vmbus_channel_gpadl_header) - |
| 328 | sizeof(struct gpa_range); |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 329 | pfncount = pfnsize / sizeof(u64); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 330 | |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 331 | if (pagecount > pfncount) { |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 332 | /* we need a gpadl body */ |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 333 | /* fill in the header */ |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 334 | msgsize = sizeof(struct vmbus_channel_msginfo) + |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 335 | sizeof(struct vmbus_channel_gpadl_header) + |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 336 | sizeof(struct gpa_range) + pfncount * sizeof(u64); |
| 337 | msgheader = kzalloc(msgsize, GFP_KERNEL); |
| 338 | if (!msgheader) |
Bill Pemberton | d1c250b | 2010-05-05 15:27:35 -0400 | [diff] [blame] | 339 | goto nomem; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 340 | |
Haiyang Zhang | c50f7fb | 2010-11-08 14:04:38 -0800 | [diff] [blame] | 341 | INIT_LIST_HEAD(&msgheader->submsglist); |
| 342 | msgheader->msgsize = msgsize; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 343 | |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 344 | gpadl_header = (struct vmbus_channel_gpadl_header *) |
Haiyang Zhang | c50f7fb | 2010-11-08 14:04:38 -0800 | [diff] [blame] | 345 | msgheader->msg; |
| 346 | gpadl_header->rangecount = 1; |
| 347 | gpadl_header->range_buflen = sizeof(struct gpa_range) + |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 348 | pagecount * sizeof(u64); |
Haiyang Zhang | 415f228 | 2011-01-26 12:12:13 -0800 | [diff] [blame] | 349 | gpadl_header->range[0].byte_offset = 0; |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 350 | gpadl_header->range[0].byte_count = hv_gpadl_size(type, size); |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 351 | for (i = 0; i < pfncount; i++) |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 352 | gpadl_header->range[0].pfn_array[i] = hv_gpadl_hvpfn( |
| 353 | type, kbuffer, size, send_offset, i); |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 354 | *msginfo = msgheader; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 355 | |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 356 | pfnsum = pfncount; |
| 357 | pfnleft = pagecount - pfncount; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 358 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 359 | /* how many pfns can we fit */ |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 360 | pfnsize = MAX_SIZE_CHANNEL_MESSAGE - |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 361 | sizeof(struct vmbus_channel_gpadl_body); |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 362 | pfncount = pfnsize / sizeof(u64); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 363 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 364 | /* fill in the body */ |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 365 | while (pfnleft) { |
| 366 | if (pfnleft > pfncount) |
| 367 | pfncurr = pfncount; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 368 | else |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 369 | pfncurr = pfnleft; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 370 | |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 371 | msgsize = sizeof(struct vmbus_channel_msginfo) + |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 372 | sizeof(struct vmbus_channel_gpadl_body) + |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 373 | pfncurr * sizeof(u64); |
| 374 | msgbody = kzalloc(msgsize, GFP_KERNEL); |
K. Y. Srinivasan | f38cf9c | 2011-06-06 15:50:06 -0700 | [diff] [blame] | 375 | |
| 376 | if (!msgbody) { |
| 377 | struct vmbus_channel_msginfo *pos = NULL; |
| 378 | struct vmbus_channel_msginfo *tmp = NULL; |
| 379 | /* |
| 380 | * Free up all the allocated messages. |
| 381 | */ |
| 382 | list_for_each_entry_safe(pos, tmp, |
| 383 | &msgheader->submsglist, |
| 384 | msglistentry) { |
| 385 | |
| 386 | list_del(&pos->msglistentry); |
| 387 | kfree(pos); |
| 388 | } |
| 389 | |
Bill Pemberton | d1c250b | 2010-05-05 15:27:35 -0400 | [diff] [blame] | 390 | goto nomem; |
K. Y. Srinivasan | f38cf9c | 2011-06-06 15:50:06 -0700 | [diff] [blame] | 391 | } |
| 392 | |
Haiyang Zhang | c50f7fb | 2010-11-08 14:04:38 -0800 | [diff] [blame] | 393 | msgbody->msgsize = msgsize; |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 394 | gpadl_body = |
Haiyang Zhang | c50f7fb | 2010-11-08 14:04:38 -0800 | [diff] [blame] | 395 | (struct vmbus_channel_gpadl_body *)msgbody->msg; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 396 | |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 397 | /* |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 398 | * Gpadl is u32 and we are using a pointer which could |
| 399 | * be 64-bit |
K. Y. Srinivasan | f27df64 | 2011-06-06 15:49:56 -0700 | [diff] [blame] | 400 | * This is governed by the guest/host protocol and |
Stephen Hemminger | bdc1dd4 | 2017-03-04 18:27:14 -0700 | [diff] [blame] | 401 | * so the hypervisor guarantees that this is ok. |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 402 | */ |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 403 | for (i = 0; i < pfncurr; i++) |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 404 | gpadl_body->pfn[i] = hv_gpadl_hvpfn(type, |
| 405 | kbuffer, size, send_offset, pfnsum + i); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 406 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 407 | /* add to msg header */ |
Haiyang Zhang | c50f7fb | 2010-11-08 14:04:38 -0800 | [diff] [blame] | 408 | list_add_tail(&msgbody->msglistentry, |
| 409 | &msgheader->submsglist); |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 410 | pfnsum += pfncurr; |
| 411 | pfnleft -= pfncurr; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 412 | } |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 413 | } else { |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 414 | /* everything fits in a header */ |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 415 | msgsize = sizeof(struct vmbus_channel_msginfo) + |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 416 | sizeof(struct vmbus_channel_gpadl_header) + |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 417 | sizeof(struct gpa_range) + pagecount * sizeof(u64); |
| 418 | msgheader = kzalloc(msgsize, GFP_KERNEL); |
| 419 | if (msgheader == NULL) |
Kulikov Vasiliy | e3eb7cd | 2010-07-16 20:13:51 +0400 | [diff] [blame] | 420 | goto nomem; |
Vitaly Kuznetsov | 4d63763 | 2016-06-03 17:09:23 -0700 | [diff] [blame] | 421 | |
| 422 | INIT_LIST_HEAD(&msgheader->submsglist); |
Haiyang Zhang | c50f7fb | 2010-11-08 14:04:38 -0800 | [diff] [blame] | 423 | msgheader->msgsize = msgsize; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 424 | |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 425 | gpadl_header = (struct vmbus_channel_gpadl_header *) |
Haiyang Zhang | c50f7fb | 2010-11-08 14:04:38 -0800 | [diff] [blame] | 426 | msgheader->msg; |
| 427 | gpadl_header->rangecount = 1; |
| 428 | gpadl_header->range_buflen = sizeof(struct gpa_range) + |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 429 | pagecount * sizeof(u64); |
Haiyang Zhang | 415f228 | 2011-01-26 12:12:13 -0800 | [diff] [blame] | 430 | gpadl_header->range[0].byte_offset = 0; |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 431 | gpadl_header->range[0].byte_count = hv_gpadl_size(type, size); |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 432 | for (i = 0; i < pagecount; i++) |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 433 | gpadl_header->range[0].pfn_array[i] = hv_gpadl_hvpfn( |
| 434 | type, kbuffer, size, send_offset, i); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 435 | |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 436 | *msginfo = msgheader; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 437 | } |
| 438 | |
| 439 | return 0; |
Bill Pemberton | d1c250b | 2010-05-05 15:27:35 -0400 | [diff] [blame] | 440 | nomem: |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 441 | kfree(msgheader); |
| 442 | kfree(msgbody); |
Bill Pemberton | d1c250b | 2010-05-05 15:27:35 -0400 | [diff] [blame] | 443 | return -ENOMEM; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 444 | } |
| 445 | |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 446 | /* |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 447 | * __vmbus_establish_gpadl - Establish a GPADL for a buffer or ringbuffer |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 448 | * |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 449 | * @channel: a channel |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 450 | * @type: the type of the corresponding GPADL, only meaningful for the guest. |
Haiyang Zhang | b679ef7 | 2014-01-27 15:03:42 -0800 | [diff] [blame] | 451 | * @kbuffer: from kmalloc or vmalloc |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 452 | * @size: page-size multiple |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 453 | * @send_offset: the offset (in bytes) where the send ring buffer starts, |
Vasanth | f850a4c | 2021-02-19 22:43:11 +0530 | [diff] [blame] | 454 | * should be 0 for BUFFER type gpadl |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 455 | * @gpadl_handle: some funky thing |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 456 | */ |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 457 | static int __vmbus_establish_gpadl(struct vmbus_channel *channel, |
| 458 | enum hv_gpadl_type type, void *kbuffer, |
| 459 | u32 size, u32 send_offset, |
Tianyu Lan | d4dccf3 | 2021-10-25 08:21:09 -0400 | [diff] [blame] | 460 | struct vmbus_gpadl *gpadl) |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 461 | { |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 462 | struct vmbus_channel_gpadl_header *gpadlmsg; |
| 463 | struct vmbus_channel_gpadl_body *gpadl_body; |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 464 | struct vmbus_channel_msginfo *msginfo = NULL; |
Vitaly Kuznetsov | 7cc80c9 | 2016-06-03 17:09:24 -0700 | [diff] [blame] | 465 | struct vmbus_channel_msginfo *submsginfo, *tmp; |
Bill Pemberton | 53af545 | 2009-09-11 21:46:44 -0400 | [diff] [blame] | 466 | struct list_head *curr; |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 467 | u32 next_gpadl_handle; |
Greg Kroah-Hartman | dd0813b | 2009-07-15 14:56:45 -0700 | [diff] [blame] | 468 | unsigned long flags; |
Bill Pemberton | c3bf2e2 | 2010-05-05 15:27:34 -0400 | [diff] [blame] | 469 | int ret = 0; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 470 | |
K. Y. Srinivasan | 9f52a16 | 2015-01-09 23:54:33 -0800 | [diff] [blame] | 471 | next_gpadl_handle = |
| 472 | (atomic_inc_return(&vmbus_connection.next_gpadl_handle) - 1); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 473 | |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 474 | ret = create_gpadl_header(type, kbuffer, size, send_offset, &msginfo); |
Bill Pemberton | c3bf2e2 | 2010-05-05 15:27:34 -0400 | [diff] [blame] | 475 | if (ret) |
| 476 | return ret; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 477 | |
Tianyu Lan | d4dccf3 | 2021-10-25 08:21:09 -0400 | [diff] [blame] | 478 | ret = set_memory_decrypted((unsigned long)kbuffer, |
| 479 | PFN_UP(size)); |
| 480 | if (ret) { |
| 481 | dev_warn(&channel->device_obj->device, |
| 482 | "Failed to set host visibility for new GPADL %d.\n", |
| 483 | ret); |
| 484 | return ret; |
| 485 | } |
| 486 | |
K. Y. Srinivasan | 9568a19 | 2011-05-10 07:55:39 -0700 | [diff] [blame] | 487 | init_completion(&msginfo->waitevent); |
K. Y. Srinivasan | ccb61f8 | 2016-12-22 16:54:00 -0800 | [diff] [blame] | 488 | msginfo->waiting_channel = channel; |
Bill Pemberton | c3bf2e2 | 2010-05-05 15:27:34 -0400 | [diff] [blame] | 489 | |
Haiyang Zhang | c50f7fb | 2010-11-08 14:04:38 -0800 | [diff] [blame] | 490 | gpadlmsg = (struct vmbus_channel_gpadl_header *)msginfo->msg; |
| 491 | gpadlmsg->header.msgtype = CHANNELMSG_GPADL_HEADER; |
| 492 | gpadlmsg->child_relid = channel->offermsg.child_relid; |
| 493 | gpadlmsg->gpadl = next_gpadl_handle; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 494 | |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 495 | |
Haiyang Zhang | 15b2f64 | 2011-01-26 12:12:07 -0800 | [diff] [blame] | 496 | spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); |
Haiyang Zhang | c50f7fb | 2010-11-08 14:04:38 -0800 | [diff] [blame] | 497 | list_add_tail(&msginfo->msglistentry, |
Haiyang Zhang | da9fcb7 | 2011-01-26 12:12:14 -0800 | [diff] [blame] | 498 | &vmbus_connection.chn_msg_list); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 499 | |
Haiyang Zhang | 15b2f64 | 2011-01-26 12:12:07 -0800 | [diff] [blame] | 500 | spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 501 | |
K. Y. Srinivasan | 6f3d791 | 2017-08-11 10:03:59 -0700 | [diff] [blame] | 502 | if (channel->rescind) { |
| 503 | ret = -ENODEV; |
| 504 | goto cleanup; |
| 505 | } |
| 506 | |
Haiyang Zhang | c697767 | 2011-01-26 12:12:08 -0800 | [diff] [blame] | 507 | ret = vmbus_post_msg(gpadlmsg, msginfo->msgsize - |
Vitaly Kuznetsov | c0bb039 | 2016-12-07 01:16:24 -0800 | [diff] [blame] | 508 | sizeof(*msginfo), true); |
Vitaly Kuznetsov | 69edbd5 | 2017-10-29 12:21:11 -0700 | [diff] [blame] | 509 | |
| 510 | trace_vmbus_establish_gpadl_header(gpadlmsg, ret); |
| 511 | |
Hank Janssen | 98e0870 | 2011-03-29 13:58:44 -0700 | [diff] [blame] | 512 | if (ret != 0) |
K. Y. Srinivasan | 00d760b | 2011-06-06 15:50:12 -0700 | [diff] [blame] | 513 | goto cleanup; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 514 | |
Vitaly Kuznetsov | 4d63763 | 2016-06-03 17:09:23 -0700 | [diff] [blame] | 515 | list_for_each(curr, &msginfo->submsglist) { |
| 516 | submsginfo = (struct vmbus_channel_msginfo *)curr; |
| 517 | gpadl_body = |
| 518 | (struct vmbus_channel_gpadl_body *)submsginfo->msg; |
Bill Pemberton | 53af545 | 2009-09-11 21:46:44 -0400 | [diff] [blame] | 519 | |
Vitaly Kuznetsov | 4d63763 | 2016-06-03 17:09:23 -0700 | [diff] [blame] | 520 | gpadl_body->header.msgtype = |
| 521 | CHANNELMSG_GPADL_BODY; |
| 522 | gpadl_body->gpadl = next_gpadl_handle; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 523 | |
Vitaly Kuznetsov | 4d63763 | 2016-06-03 17:09:23 -0700 | [diff] [blame] | 524 | ret = vmbus_post_msg(gpadl_body, |
Vitaly Kuznetsov | c0bb039 | 2016-12-07 01:16:24 -0800 | [diff] [blame] | 525 | submsginfo->msgsize - sizeof(*submsginfo), |
| 526 | true); |
Vitaly Kuznetsov | 69edbd5 | 2017-10-29 12:21:11 -0700 | [diff] [blame] | 527 | |
| 528 | trace_vmbus_establish_gpadl_body(gpadl_body, ret); |
| 529 | |
Vitaly Kuznetsov | 4d63763 | 2016-06-03 17:09:23 -0700 | [diff] [blame] | 530 | if (ret != 0) |
| 531 | goto cleanup; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 532 | |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 533 | } |
K. Y. Srinivasan | 72c6b71 | 2014-08-27 16:25:34 -0700 | [diff] [blame] | 534 | wait_for_completion(&msginfo->waitevent); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 535 | |
Dexuan Cui | eceb059 | 2018-11-26 02:29:56 +0000 | [diff] [blame] | 536 | if (msginfo->response.gpadl_created.creation_status != 0) { |
| 537 | pr_err("Failed to establish GPADL: err = 0x%x\n", |
| 538 | msginfo->response.gpadl_created.creation_status); |
| 539 | |
| 540 | ret = -EDQUOT; |
| 541 | goto cleanup; |
| 542 | } |
| 543 | |
K. Y. Srinivasan | ccb61f8 | 2016-12-22 16:54:00 -0800 | [diff] [blame] | 544 | if (channel->rescind) { |
| 545 | ret = -ENODEV; |
| 546 | goto cleanup; |
| 547 | } |
| 548 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 549 | /* At this point, we received the gpadl created msg */ |
Tianyu Lan | d4dccf3 | 2021-10-25 08:21:09 -0400 | [diff] [blame] | 550 | gpadl->gpadl_handle = gpadlmsg->gpadl; |
| 551 | gpadl->buffer = kbuffer; |
| 552 | gpadl->size = size; |
| 553 | |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 554 | |
K. Y. Srinivasan | 00d760b | 2011-06-06 15:50:12 -0700 | [diff] [blame] | 555 | cleanup: |
Haiyang Zhang | 15b2f64 | 2011-01-26 12:12:07 -0800 | [diff] [blame] | 556 | spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); |
Haiyang Zhang | c50f7fb | 2010-11-08 14:04:38 -0800 | [diff] [blame] | 557 | list_del(&msginfo->msglistentry); |
Haiyang Zhang | 15b2f64 | 2011-01-26 12:12:07 -0800 | [diff] [blame] | 558 | spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); |
Vitaly Kuznetsov | 7cc80c9 | 2016-06-03 17:09:24 -0700 | [diff] [blame] | 559 | list_for_each_entry_safe(submsginfo, tmp, &msginfo->submsglist, |
| 560 | msglistentry) { |
| 561 | kfree(submsginfo); |
| 562 | } |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 563 | |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 564 | kfree(msginfo); |
Tianyu Lan | d4dccf3 | 2021-10-25 08:21:09 -0400 | [diff] [blame] | 565 | |
| 566 | if (ret) |
| 567 | set_memory_encrypted((unsigned long)kbuffer, |
| 568 | PFN_UP(size)); |
| 569 | |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 570 | return ret; |
| 571 | } |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 572 | |
| 573 | /* |
| 574 | * vmbus_establish_gpadl - Establish a GPADL for the specified buffer |
| 575 | * |
| 576 | * @channel: a channel |
| 577 | * @kbuffer: from kmalloc or vmalloc |
| 578 | * @size: page-size multiple |
| 579 | * @gpadl_handle: some funky thing |
| 580 | */ |
| 581 | int vmbus_establish_gpadl(struct vmbus_channel *channel, void *kbuffer, |
Tianyu Lan | d4dccf3 | 2021-10-25 08:21:09 -0400 | [diff] [blame] | 582 | u32 size, struct vmbus_gpadl *gpadl) |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 583 | { |
| 584 | return __vmbus_establish_gpadl(channel, HV_GPADL_BUFFER, kbuffer, size, |
Tianyu Lan | d4dccf3 | 2021-10-25 08:21:09 -0400 | [diff] [blame] | 585 | 0U, gpadl); |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 586 | } |
Greg Kroah-Hartman | 9887372 | 2010-10-21 08:47:43 -0700 | [diff] [blame] | 587 | EXPORT_SYMBOL_GPL(vmbus_establish_gpadl); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 588 | |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 589 | /** |
| 590 | * request_arr_init - Allocates memory for the requestor array. Each slot |
| 591 | * keeps track of the next available slot in the array. Initially, each |
| 592 | * slot points to the next one (as in a Linked List). The last slot |
| 593 | * does not point to anything, so its value is U64_MAX by default. |
| 594 | * @size The size of the array |
| 595 | */ |
| 596 | static u64 *request_arr_init(u32 size) |
| 597 | { |
| 598 | int i; |
| 599 | u64 *req_arr; |
| 600 | |
| 601 | req_arr = kcalloc(size, sizeof(u64), GFP_KERNEL); |
| 602 | if (!req_arr) |
| 603 | return NULL; |
| 604 | |
| 605 | for (i = 0; i < size - 1; i++) |
| 606 | req_arr[i] = i + 1; |
| 607 | |
| 608 | /* Last slot (no more available slots) */ |
| 609 | req_arr[i] = U64_MAX; |
| 610 | |
| 611 | return req_arr; |
| 612 | } |
| 613 | |
| 614 | /* |
| 615 | * vmbus_alloc_requestor - Initializes @rqstor's fields. |
| 616 | * Index 0 is the first free slot |
| 617 | * @size: Size of the requestor array |
| 618 | */ |
| 619 | static int vmbus_alloc_requestor(struct vmbus_requestor *rqstor, u32 size) |
| 620 | { |
| 621 | u64 *rqst_arr; |
| 622 | unsigned long *bitmap; |
| 623 | |
| 624 | rqst_arr = request_arr_init(size); |
| 625 | if (!rqst_arr) |
| 626 | return -ENOMEM; |
| 627 | |
| 628 | bitmap = bitmap_zalloc(size, GFP_KERNEL); |
| 629 | if (!bitmap) { |
| 630 | kfree(rqst_arr); |
| 631 | return -ENOMEM; |
| 632 | } |
| 633 | |
| 634 | rqstor->req_arr = rqst_arr; |
| 635 | rqstor->req_bitmap = bitmap; |
| 636 | rqstor->size = size; |
| 637 | rqstor->next_request_id = 0; |
| 638 | spin_lock_init(&rqstor->req_lock); |
| 639 | |
| 640 | return 0; |
| 641 | } |
| 642 | |
| 643 | /* |
| 644 | * vmbus_free_requestor - Frees memory allocated for @rqstor |
| 645 | * @rqstor: Pointer to the requestor struct |
| 646 | */ |
| 647 | static void vmbus_free_requestor(struct vmbus_requestor *rqstor) |
| 648 | { |
| 649 | kfree(rqstor->req_arr); |
| 650 | bitmap_free(rqstor->req_bitmap); |
| 651 | } |
| 652 | |
Boqun Feng | edd9bbc | 2020-09-16 11:48:08 +0800 | [diff] [blame] | 653 | static int __vmbus_open(struct vmbus_channel *newchannel, |
| 654 | void *userdata, u32 userdatalen, |
| 655 | void (*onchannelcallback)(void *context), void *context) |
| 656 | { |
| 657 | struct vmbus_channel_open_channel *open_msg; |
| 658 | struct vmbus_channel_msginfo *open_info = NULL; |
| 659 | struct page *page = newchannel->ringbuffer_page; |
| 660 | u32 send_pages, recv_pages; |
| 661 | unsigned long flags; |
| 662 | int err; |
| 663 | |
| 664 | if (userdatalen > MAX_USER_DEFINED_BYTES) |
| 665 | return -EINVAL; |
| 666 | |
| 667 | send_pages = newchannel->ringbuffer_send_offset; |
| 668 | recv_pages = newchannel->ringbuffer_pagecount - send_pages; |
| 669 | |
| 670 | if (newchannel->state != CHANNEL_OPEN_STATE) |
| 671 | return -EINVAL; |
| 672 | |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 673 | /* Create and init requestor */ |
| 674 | if (newchannel->rqstor_size) { |
| 675 | if (vmbus_alloc_requestor(&newchannel->requestor, newchannel->rqstor_size)) |
| 676 | return -ENOMEM; |
| 677 | } |
| 678 | |
Boqun Feng | edd9bbc | 2020-09-16 11:48:08 +0800 | [diff] [blame] | 679 | newchannel->state = CHANNEL_OPENING_STATE; |
| 680 | newchannel->onchannel_callback = onchannelcallback; |
| 681 | newchannel->channel_callback_context = context; |
| 682 | |
Andres Beltran | adae1e9 | 2021-04-08 18:14:39 +0200 | [diff] [blame] | 683 | if (!newchannel->max_pkt_size) |
| 684 | newchannel->max_pkt_size = VMBUS_DEFAULT_MAX_PKT_SIZE; |
| 685 | |
Boqun Feng | edd9bbc | 2020-09-16 11:48:08 +0800 | [diff] [blame] | 686 | /* Establish the gpadl for the ring buffer */ |
Tianyu Lan | d4dccf3 | 2021-10-25 08:21:09 -0400 | [diff] [blame] | 687 | newchannel->ringbuffer_gpadlhandle.gpadl_handle = 0; |
Boqun Feng | edd9bbc | 2020-09-16 11:48:08 +0800 | [diff] [blame] | 688 | |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 689 | err = __vmbus_establish_gpadl(newchannel, HV_GPADL_RING, |
| 690 | page_address(newchannel->ringbuffer_page), |
| 691 | (send_pages + recv_pages) << PAGE_SHIFT, |
| 692 | newchannel->ringbuffer_send_offset << PAGE_SHIFT, |
| 693 | &newchannel->ringbuffer_gpadlhandle); |
Boqun Feng | edd9bbc | 2020-09-16 11:48:08 +0800 | [diff] [blame] | 694 | if (err) |
| 695 | goto error_clean_ring; |
| 696 | |
Tianyu Lan | 9a87977 | 2021-10-25 08:21:14 -0400 | [diff] [blame] | 697 | err = hv_ringbuffer_init(&newchannel->outbound, |
| 698 | page, send_pages, 0); |
| 699 | if (err) |
| 700 | goto error_free_gpadl; |
| 701 | |
| 702 | err = hv_ringbuffer_init(&newchannel->inbound, &page[send_pages], |
| 703 | recv_pages, newchannel->max_pkt_size); |
| 704 | if (err) |
| 705 | goto error_free_gpadl; |
| 706 | |
Boqun Feng | edd9bbc | 2020-09-16 11:48:08 +0800 | [diff] [blame] | 707 | /* Create and init the channel open message */ |
Andrea Parri (Microsoft) | e99c4af | 2020-12-09 08:08:22 +0100 | [diff] [blame] | 708 | open_info = kzalloc(sizeof(*open_info) + |
Boqun Feng | edd9bbc | 2020-09-16 11:48:08 +0800 | [diff] [blame] | 709 | sizeof(struct vmbus_channel_open_channel), |
| 710 | GFP_KERNEL); |
| 711 | if (!open_info) { |
| 712 | err = -ENOMEM; |
| 713 | goto error_free_gpadl; |
| 714 | } |
| 715 | |
| 716 | init_completion(&open_info->waitevent); |
| 717 | open_info->waiting_channel = newchannel; |
| 718 | |
| 719 | open_msg = (struct vmbus_channel_open_channel *)open_info->msg; |
| 720 | open_msg->header.msgtype = CHANNELMSG_OPENCHANNEL; |
| 721 | open_msg->openid = newchannel->offermsg.child_relid; |
| 722 | open_msg->child_relid = newchannel->offermsg.child_relid; |
Tianyu Lan | d4dccf3 | 2021-10-25 08:21:09 -0400 | [diff] [blame] | 723 | open_msg->ringbuffer_gpadlhandle |
| 724 | = newchannel->ringbuffer_gpadlhandle.gpadl_handle; |
Boqun Feng | c1135c7 | 2020-09-16 11:48:09 +0800 | [diff] [blame] | 725 | /* |
| 726 | * The unit of ->downstream_ringbuffer_pageoffset is HV_HYP_PAGE and |
| 727 | * the unit of ->ringbuffer_send_offset (i.e. send_pages) is PAGE, so |
| 728 | * here we calculate it into HV_HYP_PAGE. |
| 729 | */ |
| 730 | open_msg->downstream_ringbuffer_pageoffset = |
| 731 | hv_ring_gpadl_send_hvpgoffset(send_pages << PAGE_SHIFT); |
Boqun Feng | edd9bbc | 2020-09-16 11:48:08 +0800 | [diff] [blame] | 732 | open_msg->target_vp = hv_cpu_number_to_vp_number(newchannel->target_cpu); |
| 733 | |
| 734 | if (userdatalen) |
| 735 | memcpy(open_msg->userdata, userdata, userdatalen); |
| 736 | |
| 737 | spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); |
| 738 | list_add_tail(&open_info->msglistentry, |
| 739 | &vmbus_connection.chn_msg_list); |
| 740 | spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); |
| 741 | |
| 742 | if (newchannel->rescind) { |
| 743 | err = -ENODEV; |
Dan Carpenter | 3e9bf43 | 2021-04-13 13:50:04 +0300 | [diff] [blame] | 744 | goto error_clean_msglist; |
Boqun Feng | edd9bbc | 2020-09-16 11:48:08 +0800 | [diff] [blame] | 745 | } |
| 746 | |
| 747 | err = vmbus_post_msg(open_msg, |
| 748 | sizeof(struct vmbus_channel_open_channel), true); |
| 749 | |
| 750 | trace_vmbus_open(open_msg, err); |
| 751 | |
| 752 | if (err != 0) |
| 753 | goto error_clean_msglist; |
| 754 | |
| 755 | wait_for_completion(&open_info->waitevent); |
| 756 | |
| 757 | spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); |
| 758 | list_del(&open_info->msglistentry); |
| 759 | spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); |
| 760 | |
| 761 | if (newchannel->rescind) { |
| 762 | err = -ENODEV; |
| 763 | goto error_free_info; |
| 764 | } |
| 765 | |
| 766 | if (open_info->response.open_result.status) { |
| 767 | err = -EAGAIN; |
| 768 | goto error_free_info; |
| 769 | } |
| 770 | |
| 771 | newchannel->state = CHANNEL_OPENED_STATE; |
| 772 | kfree(open_info); |
| 773 | return 0; |
| 774 | |
| 775 | error_clean_msglist: |
| 776 | spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); |
| 777 | list_del(&open_info->msglistentry); |
| 778 | spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); |
| 779 | error_free_info: |
| 780 | kfree(open_info); |
| 781 | error_free_gpadl: |
Tianyu Lan | d4dccf3 | 2021-10-25 08:21:09 -0400 | [diff] [blame] | 782 | vmbus_teardown_gpadl(newchannel, &newchannel->ringbuffer_gpadlhandle); |
Boqun Feng | edd9bbc | 2020-09-16 11:48:08 +0800 | [diff] [blame] | 783 | error_clean_ring: |
| 784 | hv_ringbuffer_cleanup(&newchannel->outbound); |
| 785 | hv_ringbuffer_cleanup(&newchannel->inbound); |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 786 | vmbus_free_requestor(&newchannel->requestor); |
Boqun Feng | edd9bbc | 2020-09-16 11:48:08 +0800 | [diff] [blame] | 787 | newchannel->state = CHANNEL_OPEN_STATE; |
| 788 | return err; |
| 789 | } |
| 790 | |
| 791 | /* |
| 792 | * vmbus_connect_ring - Open the channel but reuse ring buffer |
| 793 | */ |
| 794 | int vmbus_connect_ring(struct vmbus_channel *newchannel, |
| 795 | void (*onchannelcallback)(void *context), void *context) |
| 796 | { |
| 797 | return __vmbus_open(newchannel, NULL, 0, onchannelcallback, context); |
| 798 | } |
| 799 | EXPORT_SYMBOL_GPL(vmbus_connect_ring); |
| 800 | |
| 801 | /* |
| 802 | * vmbus_open - Open the specified channel. |
| 803 | */ |
| 804 | int vmbus_open(struct vmbus_channel *newchannel, |
| 805 | u32 send_ringbuffer_size, u32 recv_ringbuffer_size, |
| 806 | void *userdata, u32 userdatalen, |
| 807 | void (*onchannelcallback)(void *context), void *context) |
| 808 | { |
| 809 | int err; |
| 810 | |
| 811 | err = vmbus_alloc_ring(newchannel, send_ringbuffer_size, |
| 812 | recv_ringbuffer_size); |
| 813 | if (err) |
| 814 | return err; |
| 815 | |
| 816 | err = __vmbus_open(newchannel, userdata, userdatalen, |
| 817 | onchannelcallback, context); |
| 818 | if (err) |
| 819 | vmbus_free_ring(newchannel); |
| 820 | |
| 821 | return err; |
| 822 | } |
| 823 | EXPORT_SYMBOL_GPL(vmbus_open); |
| 824 | |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 825 | /* |
Haiyang Zhang | fff41b2 | 2010-10-07 11:40:08 -0700 | [diff] [blame] | 826 | * vmbus_teardown_gpadl -Teardown the specified GPADL handle |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 827 | */ |
Tianyu Lan | d4dccf3 | 2021-10-25 08:21:09 -0400 | [diff] [blame] | 828 | int vmbus_teardown_gpadl(struct vmbus_channel *channel, struct vmbus_gpadl *gpadl) |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 829 | { |
Greg Kroah-Hartman | 8225021 | 2009-08-26 15:16:04 -0700 | [diff] [blame] | 830 | struct vmbus_channel_gpadl_teardown *msg; |
Greg Kroah-Hartman | aded716 | 2009-08-18 15:21:19 -0700 | [diff] [blame] | 831 | struct vmbus_channel_msginfo *info; |
Greg Kroah-Hartman | dd0813b | 2009-07-15 14:56:45 -0700 | [diff] [blame] | 832 | unsigned long flags; |
K. Y. Srinivasan | 66be653 | 2014-08-27 16:25:32 -0700 | [diff] [blame] | 833 | int ret; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 834 | |
Andrea Parri (Microsoft) | e99c4af | 2020-12-09 08:08:22 +0100 | [diff] [blame] | 835 | info = kzalloc(sizeof(*info) + |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 836 | sizeof(struct vmbus_channel_gpadl_teardown), GFP_KERNEL); |
Bill Pemberton | c3bf2e2 | 2010-05-05 15:27:34 -0400 | [diff] [blame] | 837 | if (!info) |
| 838 | return -ENOMEM; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 839 | |
K. Y. Srinivasan | 9568a19 | 2011-05-10 07:55:39 -0700 | [diff] [blame] | 840 | init_completion(&info->waitevent); |
K. Y. Srinivasan | ccb61f8 | 2016-12-22 16:54:00 -0800 | [diff] [blame] | 841 | info->waiting_channel = channel; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 842 | |
Haiyang Zhang | c50f7fb | 2010-11-08 14:04:38 -0800 | [diff] [blame] | 843 | msg = (struct vmbus_channel_gpadl_teardown *)info->msg; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 844 | |
Haiyang Zhang | c50f7fb | 2010-11-08 14:04:38 -0800 | [diff] [blame] | 845 | msg->header.msgtype = CHANNELMSG_GPADL_TEARDOWN; |
| 846 | msg->child_relid = channel->offermsg.child_relid; |
Tianyu Lan | d4dccf3 | 2021-10-25 08:21:09 -0400 | [diff] [blame] | 847 | msg->gpadl = gpadl->gpadl_handle; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 848 | |
Haiyang Zhang | 15b2f64 | 2011-01-26 12:12:07 -0800 | [diff] [blame] | 849 | spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); |
Haiyang Zhang | c50f7fb | 2010-11-08 14:04:38 -0800 | [diff] [blame] | 850 | list_add_tail(&info->msglistentry, |
Haiyang Zhang | da9fcb7 | 2011-01-26 12:12:14 -0800 | [diff] [blame] | 851 | &vmbus_connection.chn_msg_list); |
Haiyang Zhang | 15b2f64 | 2011-01-26 12:12:07 -0800 | [diff] [blame] | 852 | spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); |
K. Y. Srinivasan | 6f3d791 | 2017-08-11 10:03:59 -0700 | [diff] [blame] | 853 | |
| 854 | if (channel->rescind) |
| 855 | goto post_msg_err; |
| 856 | |
Vitaly Kuznetsov | c0bb039 | 2016-12-07 01:16:24 -0800 | [diff] [blame] | 857 | ret = vmbus_post_msg(msg, sizeof(struct vmbus_channel_gpadl_teardown), |
| 858 | true); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 859 | |
Vitaly Kuznetsov | 09cdf8f | 2017-10-29 12:21:12 -0700 | [diff] [blame] | 860 | trace_vmbus_teardown_gpadl(msg, ret); |
| 861 | |
K. Y. Srinivasan | 66be653 | 2014-08-27 16:25:32 -0700 | [diff] [blame] | 862 | if (ret) |
| 863 | goto post_msg_err; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 864 | |
K. Y. Srinivasan | 66be653 | 2014-08-27 16:25:32 -0700 | [diff] [blame] | 865 | wait_for_completion(&info->waitevent); |
| 866 | |
Tianyu Lan | d4dccf3 | 2021-10-25 08:21:09 -0400 | [diff] [blame] | 867 | gpadl->gpadl_handle = 0; |
| 868 | |
K. Y. Srinivasan | 66be653 | 2014-08-27 16:25:32 -0700 | [diff] [blame] | 869 | post_msg_err: |
K. Y. Srinivasan | 5e030d5 | 2017-03-12 20:00:30 -0700 | [diff] [blame] | 870 | /* |
| 871 | * If the channel has been rescinded; |
| 872 | * we will be awakened by the rescind |
| 873 | * handler; set the error code to zero so we don't leak memory. |
| 874 | */ |
| 875 | if (channel->rescind) |
| 876 | ret = 0; |
| 877 | |
Haiyang Zhang | 15b2f64 | 2011-01-26 12:12:07 -0800 | [diff] [blame] | 878 | spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); |
Haiyang Zhang | c50f7fb | 2010-11-08 14:04:38 -0800 | [diff] [blame] | 879 | list_del(&info->msglistentry); |
Haiyang Zhang | 15b2f64 | 2011-01-26 12:12:07 -0800 | [diff] [blame] | 880 | spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 881 | |
Greg Kroah-Hartman | 8c69f52 | 2009-07-15 12:48:29 -0700 | [diff] [blame] | 882 | kfree(info); |
Tianyu Lan | d4dccf3 | 2021-10-25 08:21:09 -0400 | [diff] [blame] | 883 | |
| 884 | ret = set_memory_encrypted((unsigned long)gpadl->buffer, |
| 885 | PFN_UP(gpadl->size)); |
| 886 | if (ret) |
| 887 | pr_warn("Fail to set mem host visibility in GPADL teardown %d.\n", ret); |
| 888 | |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 889 | return ret; |
| 890 | } |
Greg Kroah-Hartman | 18726d7 | 2010-10-21 08:39:59 -0700 | [diff] [blame] | 891 | EXPORT_SYMBOL_GPL(vmbus_teardown_gpadl); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 892 | |
Dexuan Cui | d3b26dd | 2018-08-02 03:08:23 +0000 | [diff] [blame] | 893 | void vmbus_reset_channel_cb(struct vmbus_channel *channel) |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 894 | { |
Andrea Parri (Microsoft) | 9403b66 | 2020-04-06 02:15:09 +0200 | [diff] [blame] | 895 | unsigned long flags; |
| 896 | |
Dexuan Cui | 63d55b2 | 2015-12-14 16:01:47 -0800 | [diff] [blame] | 897 | /* |
Dexuan Cui | dad72a1 | 2017-03-04 18:13:58 -0700 | [diff] [blame] | 898 | * vmbus_on_event(), running in the per-channel tasklet, can race |
Dexuan Cui | 63d55b2 | 2015-12-14 16:01:47 -0800 | [diff] [blame] | 899 | * with vmbus_close_internal() in the case of SMP guest, e.g., when |
| 900 | * the former is accessing channel->inbound.ring_buffer, the latter |
Dexuan Cui | dad72a1 | 2017-03-04 18:13:58 -0700 | [diff] [blame] | 901 | * could be freeing the ring_buffer pages, so here we must stop it |
| 902 | * first. |
Andrea Parri (Microsoft) | ac50476 | 2020-04-06 02:15:07 +0200 | [diff] [blame] | 903 | * |
| 904 | * vmbus_chan_sched() might call the netvsc driver callback function |
| 905 | * that ends up scheduling NAPI work that accesses the ring buffer. |
| 906 | * At this point, we have to ensure that any such work is completed |
| 907 | * and that the channel ring buffer is no longer being accessed, cf. |
| 908 | * the calls to napi_disable() in netvsc_device_remove(). |
Dexuan Cui | 63d55b2 | 2015-12-14 16:01:47 -0800 | [diff] [blame] | 909 | */ |
Dexuan Cui | dad72a1 | 2017-03-04 18:13:58 -0700 | [diff] [blame] | 910 | tasklet_disable(&channel->callback_event); |
Dexuan Cui | 63d55b2 | 2015-12-14 16:01:47 -0800 | [diff] [blame] | 911 | |
Andrea Parri (Microsoft) | 9403b66 | 2020-04-06 02:15:09 +0200 | [diff] [blame] | 912 | /* See the inline comments in vmbus_chan_sched(). */ |
| 913 | spin_lock_irqsave(&channel->sched_lock, flags); |
| 914 | channel->onchannel_callback = NULL; |
| 915 | spin_unlock_irqrestore(&channel->sched_lock, flags); |
Dexuan Cui | d3b26dd | 2018-08-02 03:08:23 +0000 | [diff] [blame] | 916 | |
Andrea Parri (Microsoft) | 9403b66 | 2020-04-06 02:15:09 +0200 | [diff] [blame] | 917 | channel->sc_creation_callback = NULL; |
Dexuan Cui | d3b26dd | 2018-08-02 03:08:23 +0000 | [diff] [blame] | 918 | |
| 919 | /* Re-enable tasklet for use on re-open */ |
| 920 | tasklet_enable(&channel->callback_event); |
| 921 | } |
| 922 | |
| 923 | static int vmbus_close_internal(struct vmbus_channel *channel) |
| 924 | { |
| 925 | struct vmbus_channel_close_channel *msg; |
| 926 | int ret; |
| 927 | |
| 928 | vmbus_reset_channel_cb(channel); |
| 929 | |
Dexuan Cui | 64b7faf | 2015-12-14 16:01:48 -0800 | [diff] [blame] | 930 | /* |
| 931 | * In case a device driver's probe() fails (e.g., |
| 932 | * util_probe() -> vmbus_open() returns -ENOMEM) and the device is |
Masahiro Yamada | 8a1115f | 2017-03-09 16:16:31 -0800 | [diff] [blame] | 933 | * rescinded later (e.g., we dynamically disable an Integrated Service |
Dexuan Cui | 64b7faf | 2015-12-14 16:01:48 -0800 | [diff] [blame] | 934 | * in Hyper-V Manager), the driver's remove() invokes vmbus_close(): |
| 935 | * here we should skip most of the below cleanup work. |
| 936 | */ |
Stephen Hemminger | ae6935e | 2018-09-14 09:10:17 -0700 | [diff] [blame] | 937 | if (channel->state != CHANNEL_OPENED_STATE) |
| 938 | return -EINVAL; |
Dexuan Cui | 64b7faf | 2015-12-14 16:01:48 -0800 | [diff] [blame] | 939 | |
K. Y. Srinivasan | e68d297 | 2013-05-23 12:02:32 -0700 | [diff] [blame] | 940 | channel->state = CHANNEL_OPEN_STATE; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 941 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 942 | /* Send a closing message */ |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 943 | |
K. Y. Srinivasan | e9a27a9 | 2011-06-06 15:49:59 -0700 | [diff] [blame] | 944 | msg = &channel->close_msg.msg; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 945 | |
Haiyang Zhang | c50f7fb | 2010-11-08 14:04:38 -0800 | [diff] [blame] | 946 | msg->header.msgtype = CHANNELMSG_CLOSECHANNEL; |
| 947 | msg->child_relid = channel->offermsg.child_relid; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 948 | |
Vitaly Kuznetsov | c0bb039 | 2016-12-07 01:16:24 -0800 | [diff] [blame] | 949 | ret = vmbus_post_msg(msg, sizeof(struct vmbus_channel_close_channel), |
| 950 | true); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 951 | |
Vitaly Kuznetsov | 633b005 | 2017-10-29 12:21:10 -0700 | [diff] [blame] | 952 | trace_vmbus_close_internal(msg, ret); |
| 953 | |
K. Y. Srinivasan | 98d731b | 2014-08-27 16:25:33 -0700 | [diff] [blame] | 954 | if (ret) { |
| 955 | pr_err("Close failed: close post msg return is %d\n", ret); |
| 956 | /* |
| 957 | * If we failed to post the close msg, |
| 958 | * it is perhaps better to leak memory. |
| 959 | */ |
K. Y. Srinivasan | 98d731b | 2014-08-27 16:25:33 -0700 | [diff] [blame] | 960 | } |
| 961 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 962 | /* Tear down the gpadl for the channel's ring buffer */ |
Tianyu Lan | d4dccf3 | 2021-10-25 08:21:09 -0400 | [diff] [blame] | 963 | else if (channel->ringbuffer_gpadlhandle.gpadl_handle) { |
| 964 | ret = vmbus_teardown_gpadl(channel, &channel->ringbuffer_gpadlhandle); |
K. Y. Srinivasan | 98d731b | 2014-08-27 16:25:33 -0700 | [diff] [blame] | 965 | if (ret) { |
| 966 | pr_err("Close failed: teardown gpadl return %d\n", ret); |
| 967 | /* |
| 968 | * If we failed to teardown gpadl, |
| 969 | * it is perhaps better to leak memory. |
| 970 | */ |
K. Y. Srinivasan | 98d731b | 2014-08-27 16:25:33 -0700 | [diff] [blame] | 971 | } |
| 972 | } |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 973 | |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 974 | if (!ret) |
| 975 | vmbus_free_requestor(&channel->requestor); |
| 976 | |
K. Y. Srinivasan | 98d731b | 2014-08-27 16:25:33 -0700 | [diff] [blame] | 977 | return ret; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 978 | } |
K. Y. Srinivasan | e68d297 | 2013-05-23 12:02:32 -0700 | [diff] [blame] | 979 | |
Stephen Hemminger | ae6935e | 2018-09-14 09:10:17 -0700 | [diff] [blame] | 980 | /* disconnect ring - close all channels */ |
| 981 | int vmbus_disconnect_ring(struct vmbus_channel *channel) |
| 982 | { |
| 983 | struct vmbus_channel *cur_channel, *tmp; |
Stephen Hemminger | ae6935e | 2018-09-14 09:10:17 -0700 | [diff] [blame] | 984 | int ret; |
| 985 | |
| 986 | if (channel->primary_channel != NULL) |
| 987 | return -EINVAL; |
| 988 | |
Dexuan Cui | b5679ce | 2019-01-09 20:56:06 +0000 | [diff] [blame] | 989 | list_for_each_entry_safe(cur_channel, tmp, &channel->sc_list, sc_list) { |
Stephen Hemminger | ae6935e | 2018-09-14 09:10:17 -0700 | [diff] [blame] | 990 | if (cur_channel->rescind) |
| 991 | wait_for_completion(&cur_channel->rescind_event); |
| 992 | |
| 993 | mutex_lock(&vmbus_connection.channel_mutex); |
| 994 | if (vmbus_close_internal(cur_channel) == 0) { |
| 995 | vmbus_free_ring(cur_channel); |
| 996 | |
| 997 | if (cur_channel->rescind) |
| 998 | hv_process_channel_removal(cur_channel); |
| 999 | } |
| 1000 | mutex_unlock(&vmbus_connection.channel_mutex); |
| 1001 | } |
| 1002 | |
| 1003 | /* |
| 1004 | * Now close the primary. |
| 1005 | */ |
| 1006 | mutex_lock(&vmbus_connection.channel_mutex); |
| 1007 | ret = vmbus_close_internal(channel); |
| 1008 | mutex_unlock(&vmbus_connection.channel_mutex); |
| 1009 | |
| 1010 | return ret; |
| 1011 | } |
| 1012 | EXPORT_SYMBOL_GPL(vmbus_disconnect_ring); |
| 1013 | |
K. Y. Srinivasan | e68d297 | 2013-05-23 12:02:32 -0700 | [diff] [blame] | 1014 | /* |
| 1015 | * vmbus_close - Close the specified channel |
| 1016 | */ |
| 1017 | void vmbus_close(struct vmbus_channel *channel) |
| 1018 | { |
Stephen Hemminger | ae6935e | 2018-09-14 09:10:17 -0700 | [diff] [blame] | 1019 | if (vmbus_disconnect_ring(channel) == 0) |
| 1020 | vmbus_free_ring(channel); |
K. Y. Srinivasan | e68d297 | 2013-05-23 12:02:32 -0700 | [diff] [blame] | 1021 | } |
Greg Kroah-Hartman | 70bfa30 | 2010-10-21 09:52:22 -0700 | [diff] [blame] | 1022 | EXPORT_SYMBOL_GPL(vmbus_close); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1023 | |
stephen hemminger | 5dd0fb9 | 2017-08-16 08:56:26 -0700 | [diff] [blame] | 1024 | /** |
| 1025 | * vmbus_sendpacket() - Send the specified buffer on the given channel |
Dexuan Cui | fe857bb | 2018-09-23 21:10:41 +0000 | [diff] [blame] | 1026 | * @channel: Pointer to vmbus_channel structure |
| 1027 | * @buffer: Pointer to the buffer you want to send the data from. |
| 1028 | * @bufferlen: Maximum size of what the buffer holds. |
stephen hemminger | 5dd0fb9 | 2017-08-16 08:56:26 -0700 | [diff] [blame] | 1029 | * @requestid: Identifier of the request |
Dexuan Cui | fe857bb | 2018-09-23 21:10:41 +0000 | [diff] [blame] | 1030 | * @type: Type of packet that is being sent e.g. negotiate, time |
| 1031 | * packet etc. |
| 1032 | * @flags: 0 or VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED |
stephen hemminger | 5dd0fb9 | 2017-08-16 08:56:26 -0700 | [diff] [blame] | 1033 | * |
Dexuan Cui | fe857bb | 2018-09-23 21:10:41 +0000 | [diff] [blame] | 1034 | * Sends data in @buffer directly to Hyper-V via the vmbus. |
| 1035 | * This will send the data unparsed to Hyper-V. |
stephen hemminger | 5dd0fb9 | 2017-08-16 08:56:26 -0700 | [diff] [blame] | 1036 | * |
| 1037 | * Mainly used by Hyper-V drivers. |
| 1038 | */ |
| 1039 | int vmbus_sendpacket(struct vmbus_channel *channel, void *buffer, |
| 1040 | u32 bufferlen, u64 requestid, |
| 1041 | enum vmbus_packet_type type, u32 flags) |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1042 | { |
Greg Kroah-Hartman | 8dc0a06 | 2009-08-27 16:02:36 -0700 | [diff] [blame] | 1043 | struct vmpacket_descriptor desc; |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 1044 | u32 packetlen = sizeof(struct vmpacket_descriptor) + bufferlen; |
Uwe Kleine-König | 7350968 | 2011-01-20 09:32:01 +0100 | [diff] [blame] | 1045 | u32 packetlen_aligned = ALIGN(packetlen, sizeof(u64)); |
K. Y. Srinivasan | 011a7c3 | 2014-02-01 19:02:20 -0800 | [diff] [blame] | 1046 | struct kvec bufferlist[3]; |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 1047 | u64 aligned_data = 0; |
K. Y. Srinivasan | b81658c | 2015-08-01 16:08:14 -0700 | [diff] [blame] | 1048 | int num_vecs = ((bufferlen != 0) ? 3 : 1); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1049 | |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1050 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 1051 | /* Setup the descriptor */ |
Haiyang Zhang | 415f228 | 2011-01-26 12:12:13 -0800 | [diff] [blame] | 1052 | desc.type = type; /* VmbusPacketTypeDataInBand; */ |
| 1053 | desc.flags = flags; /* VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED; */ |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 1054 | /* in 8-bytes granularity */ |
Haiyang Zhang | 415f228 | 2011-01-26 12:12:13 -0800 | [diff] [blame] | 1055 | desc.offset8 = sizeof(struct vmpacket_descriptor) >> 3; |
| 1056 | desc.len8 = (u16)(packetlen_aligned >> 3); |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 1057 | desc.trans_id = VMBUS_RQST_ERROR; /* will be updated in hv_ringbuffer_write() */ |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1058 | |
K. Y. Srinivasan | 011a7c3 | 2014-02-01 19:02:20 -0800 | [diff] [blame] | 1059 | bufferlist[0].iov_base = &desc; |
| 1060 | bufferlist[0].iov_len = sizeof(struct vmpacket_descriptor); |
| 1061 | bufferlist[1].iov_base = buffer; |
| 1062 | bufferlist[1].iov_len = bufferlen; |
| 1063 | bufferlist[2].iov_base = &aligned_data; |
| 1064 | bufferlist[2].iov_len = (packetlen_aligned - packetlen); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1065 | |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 1066 | return hv_ringbuffer_write(channel, bufferlist, num_vecs, requestid); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1067 | } |
Haiyang Zhang | fff41b2 | 2010-10-07 11:40:08 -0700 | [diff] [blame] | 1068 | EXPORT_SYMBOL(vmbus_sendpacket); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1069 | |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 1070 | /* |
stephen hemminger | 5a668d8 | 2017-08-16 08:56:25 -0700 | [diff] [blame] | 1071 | * vmbus_sendpacket_pagebuffer - Send a range of single-page buffer |
K. Y. Srinivasan | 87e93d6 | 2015-02-28 11:39:03 -0800 | [diff] [blame] | 1072 | * packets using a GPADL Direct packet type. This interface allows you |
| 1073 | * to control notifying the host. This will be useful for sending |
| 1074 | * batched data. Also the sender can control the send flags |
| 1075 | * explicitly. |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 1076 | */ |
stephen hemminger | 5a668d8 | 2017-08-16 08:56:25 -0700 | [diff] [blame] | 1077 | int vmbus_sendpacket_pagebuffer(struct vmbus_channel *channel, |
| 1078 | struct hv_page_buffer pagebuffers[], |
| 1079 | u32 pagecount, void *buffer, u32 bufferlen, |
| 1080 | u64 requestid) |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1081 | { |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 1082 | int i; |
Haiyang Zhang | 430a8e9 | 2010-09-20 21:07:51 +0000 | [diff] [blame] | 1083 | struct vmbus_channel_packet_page_buffer desc; |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 1084 | u32 descsize; |
| 1085 | u32 packetlen; |
| 1086 | u32 packetlen_aligned; |
K. Y. Srinivasan | 011a7c3 | 2014-02-01 19:02:20 -0800 | [diff] [blame] | 1087 | struct kvec bufferlist[3]; |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 1088 | u64 aligned_data = 0; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1089 | |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 1090 | if (pagecount > MAX_PAGE_BUFFER_COUNT) |
Bill Pemberton | 002b53e | 2010-05-05 15:27:39 -0400 | [diff] [blame] | 1091 | return -EINVAL; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1092 | |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 1093 | /* |
Haiyang Zhang | 430a8e9 | 2010-09-20 21:07:51 +0000 | [diff] [blame] | 1094 | * Adjust the size down since vmbus_channel_packet_page_buffer is the |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 1095 | * largest size we support |
| 1096 | */ |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 1097 | descsize = sizeof(struct vmbus_channel_packet_page_buffer) - |
| 1098 | ((MAX_PAGE_BUFFER_COUNT - pagecount) * |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 1099 | sizeof(struct hv_page_buffer)); |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 1100 | packetlen = descsize + bufferlen; |
Uwe Kleine-König | 7350968 | 2011-01-20 09:32:01 +0100 | [diff] [blame] | 1101 | packetlen_aligned = ALIGN(packetlen, sizeof(u64)); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1102 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 1103 | /* Setup the descriptor */ |
Haiyang Zhang | 415f228 | 2011-01-26 12:12:13 -0800 | [diff] [blame] | 1104 | desc.type = VM_PKT_DATA_USING_GPA_DIRECT; |
stephen hemminger | 5a668d8 | 2017-08-16 08:56:25 -0700 | [diff] [blame] | 1105 | desc.flags = VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED; |
Stephen Hemminger | bdc1dd4 | 2017-03-04 18:27:14 -0700 | [diff] [blame] | 1106 | desc.dataoffset8 = descsize >> 3; /* in 8-bytes granularity */ |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 1107 | desc.length8 = (u16)(packetlen_aligned >> 3); |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 1108 | desc.transactionid = VMBUS_RQST_ERROR; /* will be updated in hv_ringbuffer_write() */ |
Stephen Hemminger | 33d426a | 2017-10-05 17:35:05 -0700 | [diff] [blame] | 1109 | desc.reserved = 0; |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 1110 | desc.rangecount = pagecount; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1111 | |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 1112 | for (i = 0; i < pagecount; i++) { |
Haiyang Zhang | ca623ad | 2011-01-26 12:12:11 -0800 | [diff] [blame] | 1113 | desc.range[i].len = pagebuffers[i].len; |
| 1114 | desc.range[i].offset = pagebuffers[i].offset; |
| 1115 | desc.range[i].pfn = pagebuffers[i].pfn; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1116 | } |
| 1117 | |
K. Y. Srinivasan | 011a7c3 | 2014-02-01 19:02:20 -0800 | [diff] [blame] | 1118 | bufferlist[0].iov_base = &desc; |
| 1119 | bufferlist[0].iov_len = descsize; |
| 1120 | bufferlist[1].iov_base = buffer; |
| 1121 | bufferlist[1].iov_len = bufferlen; |
| 1122 | bufferlist[2].iov_base = &aligned_data; |
| 1123 | bufferlist[2].iov_len = (packetlen_aligned - packetlen); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1124 | |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 1125 | return hv_ringbuffer_write(channel, bufferlist, 3, requestid); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1126 | } |
Greg Kroah-Hartman | 713efeb | 2010-10-21 09:29:54 -0700 | [diff] [blame] | 1127 | EXPORT_SYMBOL_GPL(vmbus_sendpacket_pagebuffer); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1128 | |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 1129 | /* |
Haiyang Zhang | fff41b2 | 2010-10-07 11:40:08 -0700 | [diff] [blame] | 1130 | * vmbus_sendpacket_multipagebuffer - Send a multi-page buffer packet |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 1131 | * using a GPADL Direct packet type. |
K. Y. Srinivasan | d61031e | 2015-01-09 23:54:34 -0800 | [diff] [blame] | 1132 | * The buffer includes the vmbus descriptor. |
| 1133 | */ |
| 1134 | int vmbus_sendpacket_mpb_desc(struct vmbus_channel *channel, |
| 1135 | struct vmbus_packet_mpb_array *desc, |
| 1136 | u32 desc_size, |
| 1137 | void *buffer, u32 bufferlen, u64 requestid) |
| 1138 | { |
K. Y. Srinivasan | d61031e | 2015-01-09 23:54:34 -0800 | [diff] [blame] | 1139 | u32 packetlen; |
| 1140 | u32 packetlen_aligned; |
| 1141 | struct kvec bufferlist[3]; |
| 1142 | u64 aligned_data = 0; |
K. Y. Srinivasan | d61031e | 2015-01-09 23:54:34 -0800 | [diff] [blame] | 1143 | |
| 1144 | packetlen = desc_size + bufferlen; |
| 1145 | packetlen_aligned = ALIGN(packetlen, sizeof(u64)); |
| 1146 | |
| 1147 | /* Setup the descriptor */ |
| 1148 | desc->type = VM_PKT_DATA_USING_GPA_DIRECT; |
| 1149 | desc->flags = VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED; |
Stephen Hemminger | bdc1dd4 | 2017-03-04 18:27:14 -0700 | [diff] [blame] | 1150 | desc->dataoffset8 = desc_size >> 3; /* in 8-bytes granularity */ |
K. Y. Srinivasan | d61031e | 2015-01-09 23:54:34 -0800 | [diff] [blame] | 1151 | desc->length8 = (u16)(packetlen_aligned >> 3); |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 1152 | desc->transactionid = VMBUS_RQST_ERROR; /* will be updated in hv_ringbuffer_write() */ |
Stephen Hemminger | 33d426a | 2017-10-05 17:35:05 -0700 | [diff] [blame] | 1153 | desc->reserved = 0; |
K. Y. Srinivasan | d61031e | 2015-01-09 23:54:34 -0800 | [diff] [blame] | 1154 | desc->rangecount = 1; |
| 1155 | |
| 1156 | bufferlist[0].iov_base = desc; |
| 1157 | bufferlist[0].iov_len = desc_size; |
| 1158 | bufferlist[1].iov_base = buffer; |
| 1159 | bufferlist[1].iov_len = bufferlen; |
| 1160 | bufferlist[2].iov_base = &aligned_data; |
| 1161 | bufferlist[2].iov_len = (packetlen_aligned - packetlen); |
| 1162 | |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 1163 | return hv_ringbuffer_write(channel, bufferlist, 3, requestid); |
K. Y. Srinivasan | d61031e | 2015-01-09 23:54:34 -0800 | [diff] [blame] | 1164 | } |
| 1165 | EXPORT_SYMBOL_GPL(vmbus_sendpacket_mpb_desc); |
| 1166 | |
Hank Janssen | c88c4e4 | 2010-05-04 15:55:05 -0700 | [diff] [blame] | 1167 | /** |
Dexuan Cui | fe857bb | 2018-09-23 21:10:41 +0000 | [diff] [blame] | 1168 | * __vmbus_recvpacket() - Retrieve the user packet on the specified channel |
| 1169 | * @channel: Pointer to vmbus_channel structure |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 1170 | * @buffer: Pointer to the buffer you want to receive the data into. |
Dexuan Cui | fe857bb | 2018-09-23 21:10:41 +0000 | [diff] [blame] | 1171 | * @bufferlen: Maximum size of what the buffer can hold. |
| 1172 | * @buffer_actual_len: The actual size of the data after it was received. |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 1173 | * @requestid: Identifier of the request |
Dexuan Cui | fe857bb | 2018-09-23 21:10:41 +0000 | [diff] [blame] | 1174 | * @raw: true means keep the vmpacket_descriptor header in the received data. |
Hank Janssen | c88c4e4 | 2010-05-04 15:55:05 -0700 | [diff] [blame] | 1175 | * |
| 1176 | * Receives directly from the hyper-v vmbus and puts the data it received |
| 1177 | * into Buffer. This will receive the data unparsed from hyper-v. |
| 1178 | * |
| 1179 | * Mainly used by Hyper-V drivers. |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 1180 | */ |
Vitaly Kuznetsov | 667d374 | 2015-12-14 19:02:00 -0800 | [diff] [blame] | 1181 | static inline int |
| 1182 | __vmbus_recvpacket(struct vmbus_channel *channel, void *buffer, |
| 1183 | u32 bufferlen, u32 *buffer_actual_len, u64 *requestid, |
| 1184 | bool raw) |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1185 | { |
K. Y. Srinivasan | 3372592 | 2016-11-06 13:14:18 -0800 | [diff] [blame] | 1186 | return hv_ringbuffer_read(channel, buffer, bufferlen, |
| 1187 | buffer_actual_len, requestid, raw); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1188 | |
Vitaly Kuznetsov | 667d374 | 2015-12-14 19:02:00 -0800 | [diff] [blame] | 1189 | } |
| 1190 | |
| 1191 | int vmbus_recvpacket(struct vmbus_channel *channel, void *buffer, |
| 1192 | u32 bufferlen, u32 *buffer_actual_len, |
| 1193 | u64 *requestid) |
| 1194 | { |
| 1195 | return __vmbus_recvpacket(channel, buffer, bufferlen, |
| 1196 | buffer_actual_len, requestid, false); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1197 | } |
Haiyang Zhang | fff41b2 | 2010-10-07 11:40:08 -0700 | [diff] [blame] | 1198 | EXPORT_SYMBOL(vmbus_recvpacket); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1199 | |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 1200 | /* |
Haiyang Zhang | fff41b2 | 2010-10-07 11:40:08 -0700 | [diff] [blame] | 1201 | * vmbus_recvpacket_raw - Retrieve the raw packet on the specified channel |
Greg Kroah-Hartman | f4266e3 | 2009-09-01 17:24:57 -0700 | [diff] [blame] | 1202 | */ |
Haiyang Zhang | fff41b2 | 2010-10-07 11:40:08 -0700 | [diff] [blame] | 1203 | int vmbus_recvpacket_raw(struct vmbus_channel *channel, void *buffer, |
Haiyang Zhang | 39d70a4 | 2010-09-30 10:52:13 -0700 | [diff] [blame] | 1204 | u32 bufferlen, u32 *buffer_actual_len, |
| 1205 | u64 *requestid) |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1206 | { |
Vitaly Kuznetsov | 667d374 | 2015-12-14 19:02:00 -0800 | [diff] [blame] | 1207 | return __vmbus_recvpacket(channel, buffer, bufferlen, |
| 1208 | buffer_actual_len, requestid, true); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1209 | } |
Greg Kroah-Hartman | adaee6b | 2010-10-21 09:09:23 -0700 | [diff] [blame] | 1210 | EXPORT_SYMBOL_GPL(vmbus_recvpacket_raw); |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 1211 | |
| 1212 | /* |
| 1213 | * vmbus_next_request_id - Returns a new request id. It is also |
| 1214 | * the index at which the guest memory address is stored. |
| 1215 | * Uses a spin lock to avoid race conditions. |
Andrea Parri (Microsoft) | bf5fd8c | 2021-05-10 23:08:41 +0200 | [diff] [blame] | 1216 | * @channel: Pointer to the VMbus channel struct |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 1217 | * @rqst_add: Guest memory address to be stored in the array |
| 1218 | */ |
Andrea Parri (Microsoft) | bf5fd8c | 2021-05-10 23:08:41 +0200 | [diff] [blame] | 1219 | u64 vmbus_next_request_id(struct vmbus_channel *channel, u64 rqst_addr) |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 1220 | { |
Andrea Parri (Microsoft) | bf5fd8c | 2021-05-10 23:08:41 +0200 | [diff] [blame] | 1221 | struct vmbus_requestor *rqstor = &channel->requestor; |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 1222 | unsigned long flags; |
| 1223 | u64 current_id; |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 1224 | |
| 1225 | /* Check rqstor has been initialized */ |
| 1226 | if (!channel->rqstor_size) |
| 1227 | return VMBUS_NO_RQSTOR; |
| 1228 | |
| 1229 | spin_lock_irqsave(&rqstor->req_lock, flags); |
| 1230 | current_id = rqstor->next_request_id; |
| 1231 | |
| 1232 | /* Requestor array is full */ |
| 1233 | if (current_id >= rqstor->size) { |
| 1234 | spin_unlock_irqrestore(&rqstor->req_lock, flags); |
| 1235 | return VMBUS_RQST_ERROR; |
| 1236 | } |
| 1237 | |
| 1238 | rqstor->next_request_id = rqstor->req_arr[current_id]; |
| 1239 | rqstor->req_arr[current_id] = rqst_addr; |
| 1240 | |
| 1241 | /* The already held spin lock provides atomicity */ |
| 1242 | bitmap_set(rqstor->req_bitmap, current_id, 1); |
| 1243 | |
| 1244 | spin_unlock_irqrestore(&rqstor->req_lock, flags); |
| 1245 | |
| 1246 | /* |
| 1247 | * Cannot return an ID of 0, which is reserved for an unsolicited |
| 1248 | * message from Hyper-V. |
| 1249 | */ |
| 1250 | return current_id + 1; |
| 1251 | } |
| 1252 | EXPORT_SYMBOL_GPL(vmbus_next_request_id); |
| 1253 | |
| 1254 | /* |
| 1255 | * vmbus_request_addr - Returns the memory address stored at @trans_id |
| 1256 | * in @rqstor. Uses a spin lock to avoid race conditions. |
Andrea Parri (Microsoft) | bf5fd8c | 2021-05-10 23:08:41 +0200 | [diff] [blame] | 1257 | * @channel: Pointer to the VMbus channel struct |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 1258 | * @trans_id: Request id sent back from Hyper-V. Becomes the requestor's |
| 1259 | * next request id. |
| 1260 | */ |
Andrea Parri (Microsoft) | bf5fd8c | 2021-05-10 23:08:41 +0200 | [diff] [blame] | 1261 | u64 vmbus_request_addr(struct vmbus_channel *channel, u64 trans_id) |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 1262 | { |
Andrea Parri (Microsoft) | bf5fd8c | 2021-05-10 23:08:41 +0200 | [diff] [blame] | 1263 | struct vmbus_requestor *rqstor = &channel->requestor; |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 1264 | unsigned long flags; |
| 1265 | u64 req_addr; |
Andres Beltran | e8b7db3 | 2020-11-09 11:04:00 +0100 | [diff] [blame] | 1266 | |
| 1267 | /* Check rqstor has been initialized */ |
| 1268 | if (!channel->rqstor_size) |
| 1269 | return VMBUS_NO_RQSTOR; |
| 1270 | |
| 1271 | /* Hyper-V can send an unsolicited message with ID of 0 */ |
| 1272 | if (!trans_id) |
| 1273 | return trans_id; |
| 1274 | |
| 1275 | spin_lock_irqsave(&rqstor->req_lock, flags); |
| 1276 | |
| 1277 | /* Data corresponding to trans_id is stored at trans_id - 1 */ |
| 1278 | trans_id--; |
| 1279 | |
| 1280 | /* Invalid trans_id */ |
| 1281 | if (trans_id >= rqstor->size || !test_bit(trans_id, rqstor->req_bitmap)) { |
| 1282 | spin_unlock_irqrestore(&rqstor->req_lock, flags); |
| 1283 | return VMBUS_RQST_ERROR; |
| 1284 | } |
| 1285 | |
| 1286 | req_addr = rqstor->req_arr[trans_id]; |
| 1287 | rqstor->req_arr[trans_id] = rqstor->next_request_id; |
| 1288 | rqstor->next_request_id = trans_id; |
| 1289 | |
| 1290 | /* The already held spin lock provides atomicity */ |
| 1291 | bitmap_clear(rqstor->req_bitmap, trans_id, 1); |
| 1292 | |
| 1293 | spin_unlock_irqrestore(&rqstor->req_lock, flags); |
| 1294 | return req_addr; |
| 1295 | } |
| 1296 | EXPORT_SYMBOL_GPL(vmbus_request_addr); |