]>
Commit | Line | Data |
---|---|---|
3e7ee490 | 1 | /* |
3e7ee490 HJ |
2 | * Copyright (c) 2009, Microsoft Corporation. |
3 | * | |
4 | * This program is free software; you can redistribute it and/or modify it | |
5 | * under the terms and conditions of the GNU General Public License, | |
6 | * version 2, as published by the Free Software Foundation. | |
7 | * | |
8 | * This program is distributed in the hope it will be useful, but WITHOUT | |
9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
11 | * more details. | |
12 | * | |
13 | * You should have received a copy of the GNU General Public License along with | |
14 | * this program; if not, write to the Free Software Foundation, Inc., 59 Temple | |
15 | * Place - Suite 330, Boston, MA 02111-1307 USA. | |
16 | * | |
17 | * Authors: | |
18 | * Haiyang Zhang <[email protected]> | |
19 | * Hank Janssen <[email protected]> | |
3e7ee490 | 20 | */ |
0a46618d HJ |
21 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
22 | ||
a0086dc5 | 23 | #include <linux/kernel.h> |
0c3b7b2f S |
24 | #include <linux/sched.h> |
25 | #include <linux/wait.h> | |
a0086dc5 | 26 | #include <linux/mm.h> |
5a0e3ad6 | 27 | #include <linux/slab.h> |
53af545b | 28 | #include <linux/list.h> |
c88c4e4c | 29 | #include <linux/module.h> |
8b5d6d3b | 30 | #include <linux/completion.h> |
46a97191 | 31 | #include <linux/hyperv.h> |
3f335ea2 | 32 | |
0f2a6619 | 33 | #include "hyperv_vmbus.h" |
3e7ee490 | 34 | |
1d7e907f | 35 | struct vmbus_channel_message_table_entry { |
cf9dcba7 | 36 | enum vmbus_channel_message_type message_type; |
fa90f1de | 37 | void (*message_handler)(struct vmbus_channel_message_header *msg); |
1d7e907f | 38 | }; |
3e7ee490 | 39 | |
c88c4e4c HJ |
40 | |
41 | /** | |
da0e9631 | 42 | * vmbus_prep_negotiate_resp() - Create default response for Hyper-V Negotiate message |
c88c4e4c HJ |
43 | * @icmsghdrp: Pointer to msg header structure |
44 | * @icmsg_negotiate: Pointer to negotiate message structure | |
45 | * @buf: Raw buffer channel data | |
46 | * | |
47 | * @icmsghdrp is of type &struct icmsg_hdr. | |
48 | * @negop is of type &struct icmsg_negotiate. | |
c836d0ab S |
49 | * Set up and fill in default negotiate response message. |
50 | * | |
6741335b S |
51 | * The fw_version specifies the framework version that |
52 | * we can support and srv_version specifies the service | |
53 | * version we can support. | |
c88c4e4c HJ |
54 | * |
55 | * Mainly used by Hyper-V drivers. | |
56 | */ | |
6741335b | 57 | bool vmbus_prep_negotiate_resp(struct icmsg_hdr *icmsghdrp, |
c836d0ab | 58 | struct icmsg_negotiate *negop, u8 *buf, |
6741335b | 59 | int fw_version, int srv_version) |
c88c4e4c | 60 | { |
6741335b S |
61 | int icframe_major, icframe_minor; |
62 | int icmsg_major, icmsg_minor; | |
63 | int fw_major, fw_minor; | |
64 | int srv_major, srv_minor; | |
c836d0ab | 65 | int i; |
6741335b | 66 | bool found_match = false; |
c836d0ab | 67 | |
a3605300 | 68 | icmsghdrp->icmsgsize = 0x10; |
6741335b S |
69 | fw_major = (fw_version >> 16); |
70 | fw_minor = (fw_version & 0xFFFF); | |
71 | ||
72 | srv_major = (srv_version >> 16); | |
73 | srv_minor = (srv_version & 0xFFFF); | |
c88c4e4c | 74 | |
a3605300 S |
75 | negop = (struct icmsg_negotiate *)&buf[ |
76 | sizeof(struct vmbuspipe_hdr) + | |
77 | sizeof(struct icmsg_hdr)]; | |
c88c4e4c | 78 | |
6741335b S |
79 | icframe_major = negop->icframe_vercnt; |
80 | icframe_minor = 0; | |
81 | ||
82 | icmsg_major = negop->icmsg_vercnt; | |
83 | icmsg_minor = 0; | |
c836d0ab S |
84 | |
85 | /* | |
86 | * Select the framework version number we will | |
87 | * support. | |
88 | */ | |
89 | ||
90 | for (i = 0; i < negop->icframe_vercnt; i++) { | |
6741335b S |
91 | if ((negop->icversion_data[i].major == fw_major) && |
92 | (negop->icversion_data[i].minor == fw_minor)) { | |
93 | icframe_major = negop->icversion_data[i].major; | |
94 | icframe_minor = negop->icversion_data[i].minor; | |
95 | found_match = true; | |
96 | } | |
c836d0ab S |
97 | } |
98 | ||
6741335b S |
99 | if (!found_match) |
100 | goto fw_error; | |
101 | ||
102 | found_match = false; | |
103 | ||
c836d0ab S |
104 | for (i = negop->icframe_vercnt; |
105 | (i < negop->icframe_vercnt + negop->icmsg_vercnt); i++) { | |
6741335b S |
106 | if ((negop->icversion_data[i].major == srv_major) && |
107 | (negop->icversion_data[i].minor == srv_minor)) { | |
108 | icmsg_major = negop->icversion_data[i].major; | |
109 | icmsg_minor = negop->icversion_data[i].minor; | |
110 | found_match = true; | |
111 | } | |
c88c4e4c | 112 | } |
a3605300 | 113 | |
c836d0ab | 114 | /* |
6741335b | 115 | * Respond with the framework and service |
c836d0ab S |
116 | * version numbers we can support. |
117 | */ | |
6741335b S |
118 | |
119 | fw_error: | |
120 | if (!found_match) { | |
121 | negop->icframe_vercnt = 0; | |
122 | negop->icmsg_vercnt = 0; | |
123 | } else { | |
124 | negop->icframe_vercnt = 1; | |
125 | negop->icmsg_vercnt = 1; | |
126 | } | |
127 | ||
128 | negop->icversion_data[0].major = icframe_major; | |
129 | negop->icversion_data[0].minor = icframe_minor; | |
130 | negop->icversion_data[1].major = icmsg_major; | |
131 | negop->icversion_data[1].minor = icmsg_minor; | |
132 | return found_match; | |
c88c4e4c | 133 | } |
a3605300 | 134 | |
da0e9631 | 135 | EXPORT_SYMBOL_GPL(vmbus_prep_negotiate_resp); |
c88c4e4c | 136 | |
3e189519 | 137 | /* |
e98cb276 | 138 | * alloc_channel - Allocate and initialize a vmbus channel object |
bd60c33e | 139 | */ |
50fe56d2 | 140 | static struct vmbus_channel *alloc_channel(void) |
3e7ee490 | 141 | { |
aded7165 | 142 | struct vmbus_channel *channel; |
3e7ee490 | 143 | |
aded7165 | 144 | channel = kzalloc(sizeof(*channel), GFP_ATOMIC); |
3e7ee490 | 145 | if (!channel) |
3e7ee490 | 146 | return NULL; |
3e7ee490 | 147 | |
54411c42 | 148 | spin_lock_init(&channel->inbound_lock); |
e68d2971 S |
149 | spin_lock_init(&channel->sc_lock); |
150 | ||
151 | INIT_LIST_HEAD(&channel->sc_list); | |
3e7ee490 | 152 | |
c50f7fb2 HZ |
153 | channel->controlwq = create_workqueue("hv_vmbus_ctl"); |
154 | if (!channel->controlwq) { | |
8c69f52a | 155 | kfree(channel); |
3e7ee490 HJ |
156 | return NULL; |
157 | } | |
158 | ||
159 | return channel; | |
160 | } | |
161 | ||
3e189519 | 162 | /* |
e98cb276 | 163 | * release_hannel - Release the vmbus channel object itself |
bd60c33e | 164 | */ |
4b2f9abe | 165 | static void release_channel(struct work_struct *work) |
3e7ee490 | 166 | { |
4b2f9abe TT |
167 | struct vmbus_channel *channel = container_of(work, |
168 | struct vmbus_channel, | |
169 | work); | |
3e7ee490 | 170 | |
c50f7fb2 | 171 | destroy_workqueue(channel->controlwq); |
3e7ee490 | 172 | |
8c69f52a | 173 | kfree(channel); |
3e7ee490 HJ |
174 | } |
175 | ||
3e189519 | 176 | /* |
e98cb276 | 177 | * free_channel - Release the resources used by the vmbus channel object |
bd60c33e | 178 | */ |
9f3e28e3 | 179 | static void free_channel(struct vmbus_channel *channel) |
3e7ee490 | 180 | { |
3e7ee490 | 181 | |
bd60c33e GKH |
182 | /* |
183 | * We have to release the channel's workqueue/thread in the vmbus's | |
184 | * workqueue/thread context | |
185 | * ie we can't destroy ourselves. | |
186 | */ | |
4b2f9abe | 187 | INIT_WORK(&channel->work, release_channel); |
da9fcb72 | 188 | queue_work(vmbus_connection.work_queue, &channel->work); |
3e7ee490 HJ |
189 | } |
190 | ||
8b5d6d3b | 191 | |
8b5d6d3b | 192 | |
4b2f9abe TT |
193 | /* |
194 | * vmbus_process_rescind_offer - | |
195 | * Rescind the offer by initiating a device removal | |
196 | */ | |
197 | static void vmbus_process_rescind_offer(struct work_struct *work) | |
198 | { | |
199 | struct vmbus_channel *channel = container_of(work, | |
200 | struct vmbus_channel, | |
201 | work); | |
c8705979 | 202 | unsigned long flags; |
e68d2971 | 203 | struct vmbus_channel *primary_channel; |
c8705979 | 204 | struct vmbus_channel_relid_released msg; |
4b2f9abe | 205 | |
696453ba | 206 | vmbus_device_unregister(channel->device_obj); |
c8705979 S |
207 | memset(&msg, 0, sizeof(struct vmbus_channel_relid_released)); |
208 | msg.child_relid = channel->offermsg.child_relid; | |
209 | msg.header.msgtype = CHANNELMSG_RELID_RELEASED; | |
210 | vmbus_post_msg(&msg, sizeof(struct vmbus_channel_relid_released)); | |
211 | ||
e68d2971 S |
212 | if (channel->primary_channel == NULL) { |
213 | spin_lock_irqsave(&vmbus_connection.channel_lock, flags); | |
214 | list_del(&channel->listentry); | |
215 | spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags); | |
216 | } else { | |
217 | primary_channel = channel->primary_channel; | |
218 | spin_lock_irqsave(&primary_channel->sc_lock, flags); | |
219 | list_del(&channel->listentry); | |
220 | spin_unlock_irqrestore(&primary_channel->sc_lock, flags); | |
221 | } | |
c8705979 | 222 | free_channel(channel); |
4b2f9abe | 223 | } |
8b5d6d3b | 224 | |
93e5bd06 S |
225 | void vmbus_free_channels(void) |
226 | { | |
227 | struct vmbus_channel *channel; | |
228 | ||
229 | list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) { | |
230 | vmbus_device_unregister(channel->device_obj); | |
231 | kfree(channel->device_obj); | |
232 | free_channel(channel); | |
233 | } | |
234 | } | |
235 | ||
3e189519 | 236 | /* |
e98cb276 | 237 | * vmbus_process_offer - Process the offer by creating a channel/device |
c88c4e4c | 238 | * associated with this offer |
bd60c33e | 239 | */ |
4b2f9abe | 240 | static void vmbus_process_offer(struct work_struct *work) |
3e7ee490 | 241 | { |
4b2f9abe TT |
242 | struct vmbus_channel *newchannel = container_of(work, |
243 | struct vmbus_channel, | |
244 | work); | |
aded7165 | 245 | struct vmbus_channel *channel; |
188963ec | 246 | bool fnew = true; |
bd60c33e | 247 | int ret; |
0f5e44ca | 248 | unsigned long flags; |
3e7ee490 | 249 | |
4b2f9abe TT |
250 | /* The next possible work is rescind handling */ |
251 | INIT_WORK(&newchannel->work, vmbus_process_rescind_offer); | |
252 | ||
454f18a9 | 253 | /* Make sure this is a new offer */ |
15b2f647 | 254 | spin_lock_irqsave(&vmbus_connection.channel_lock, flags); |
3e7ee490 | 255 | |
da9fcb72 | 256 | list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) { |
358d2ee2 S |
257 | if (!uuid_le_cmp(channel->offermsg.offer.if_type, |
258 | newchannel->offermsg.offer.if_type) && | |
259 | !uuid_le_cmp(channel->offermsg.offer.if_instance, | |
260 | newchannel->offermsg.offer.if_instance)) { | |
188963ec | 261 | fnew = false; |
3e7ee490 HJ |
262 | break; |
263 | } | |
264 | } | |
265 | ||
188963ec | 266 | if (fnew) |
c50f7fb2 | 267 | list_add_tail(&newchannel->listentry, |
da9fcb72 | 268 | &vmbus_connection.chn_list); |
bd60c33e | 269 | |
15b2f647 | 270 | spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags); |
3e7ee490 | 271 | |
188963ec | 272 | if (!fnew) { |
e68d2971 S |
273 | /* |
274 | * Check to see if this is a sub-channel. | |
275 | */ | |
276 | if (newchannel->offermsg.offer.sub_channel_index != 0) { | |
277 | /* | |
278 | * Process the sub-channel. | |
279 | */ | |
280 | newchannel->primary_channel = channel; | |
281 | spin_lock_irqsave(&channel->sc_lock, flags); | |
282 | list_add_tail(&newchannel->sc_list, &channel->sc_list); | |
283 | spin_unlock_irqrestore(&channel->sc_lock, flags); | |
284 | newchannel->state = CHANNEL_OPEN_STATE; | |
285 | if (channel->sc_creation_callback != NULL) | |
286 | channel->sc_creation_callback(newchannel); | |
287 | ||
288 | return; | |
289 | } | |
290 | ||
e98cb276 | 291 | free_channel(newchannel); |
3e7ee490 HJ |
292 | return; |
293 | } | |
294 | ||
42dceebe S |
295 | /* |
296 | * This state is used to indicate a successful open | |
297 | * so that when we do close the channel normally, we | |
298 | * can cleanup properly | |
299 | */ | |
300 | newchannel->state = CHANNEL_OPEN_STATE; | |
301 | ||
bd60c33e GKH |
302 | /* |
303 | * Start the process of binding this offer to the driver | |
304 | * We need to set the DeviceObject field before calling | |
646f1ea3 | 305 | * vmbus_child_dev_add() |
bd60c33e | 306 | */ |
f2c73011 | 307 | newchannel->device_obj = vmbus_device_create( |
767dff68 HZ |
308 | &newchannel->offermsg.offer.if_type, |
309 | &newchannel->offermsg.offer.if_instance, | |
188963ec | 310 | newchannel); |
3e7ee490 | 311 | |
454f18a9 BP |
312 | /* |
313 | * Add the new device to the bus. This will kick off device-driver | |
314 | * binding which eventually invokes the device driver's AddDevice() | |
315 | * method. | |
316 | */ | |
22794281 | 317 | ret = vmbus_device_register(newchannel->device_obj); |
bd60c33e | 318 | if (ret != 0) { |
0a46618d | 319 | pr_err("unable to add child device object (relid %d)\n", |
c50f7fb2 | 320 | newchannel->offermsg.child_relid); |
3e7ee490 | 321 | |
15b2f647 | 322 | spin_lock_irqsave(&vmbus_connection.channel_lock, flags); |
c50f7fb2 | 323 | list_del(&newchannel->listentry); |
15b2f647 | 324 | spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags); |
8b8ee675 | 325 | kfree(newchannel->device_obj); |
3e7ee490 | 326 | |
e98cb276 | 327 | free_channel(newchannel); |
3e7ee490 | 328 | } |
3e7ee490 HJ |
329 | } |
330 | ||
a119845f S |
331 | enum { |
332 | IDE = 0, | |
333 | SCSI, | |
334 | NIC, | |
335 | MAX_PERF_CHN, | |
336 | }; | |
337 | ||
338 | /* | |
7fb96565 | 339 | * This is an array of device_ids (device types) that are performance critical. |
a119845f S |
340 | * We attempt to distribute the interrupt load for these devices across |
341 | * all available CPUs. | |
342 | */ | |
7fb96565 | 343 | static const struct hv_vmbus_device_id hp_devs[] = { |
a119845f | 344 | /* IDE */ |
7fb96565 | 345 | { HV_IDE_GUID, }, |
a119845f | 346 | /* Storage - SCSI */ |
7fb96565 | 347 | { HV_SCSI_GUID, }, |
a119845f | 348 | /* Network */ |
7fb96565 | 349 | { HV_NIC_GUID, }, |
a119845f S |
350 | }; |
351 | ||
352 | ||
353 | /* | |
354 | * We use this state to statically distribute the channel interrupt load. | |
355 | */ | |
356 | static u32 next_vp; | |
357 | ||
358 | /* | |
359 | * Starting with Win8, we can statically distribute the incoming | |
360 | * channel interrupt load by binding a channel to VCPU. We | |
361 | * implement here a simple round robin scheme for distributing | |
362 | * the interrupt load. | |
363 | * We will bind channels that are not performance critical to cpu 0 and | |
364 | * performance critical channels (IDE, SCSI and Network) will be uniformly | |
365 | * distributed across all available CPUs. | |
366 | */ | |
367 | static u32 get_vp_index(uuid_le *type_guid) | |
368 | { | |
369 | u32 cur_cpu; | |
370 | int i; | |
371 | bool perf_chn = false; | |
372 | u32 max_cpus = num_online_cpus(); | |
373 | ||
374 | for (i = IDE; i < MAX_PERF_CHN; i++) { | |
7fb96565 | 375 | if (!memcmp(type_guid->b, hp_devs[i].guid, |
a119845f S |
376 | sizeof(uuid_le))) { |
377 | perf_chn = true; | |
378 | break; | |
379 | } | |
380 | } | |
381 | if ((vmbus_proto_version == VERSION_WS2008) || | |
382 | (vmbus_proto_version == VERSION_WIN7) || (!perf_chn)) { | |
383 | /* | |
384 | * Prior to win8, all channel interrupts are | |
385 | * delivered on cpu 0. | |
386 | * Also if the channel is not a performance critical | |
387 | * channel, bind it to cpu 0. | |
388 | */ | |
389 | return 0; | |
390 | } | |
391 | cur_cpu = (++next_vp % max_cpus); | |
d2242a38 | 392 | return hv_context.vp_index[cur_cpu]; |
a119845f S |
393 | } |
394 | ||
3e189519 | 395 | /* |
e98cb276 | 396 | * vmbus_onoffer - Handler for channel offers from vmbus in parent partition. |
bd60c33e | 397 | * |
bd60c33e | 398 | */ |
e98cb276 | 399 | static void vmbus_onoffer(struct vmbus_channel_message_header *hdr) |
3e7ee490 | 400 | { |
bd60c33e | 401 | struct vmbus_channel_offer_channel *offer; |
188963ec | 402 | struct vmbus_channel *newchannel; |
3e7ee490 | 403 | |
bd60c33e | 404 | offer = (struct vmbus_channel_offer_channel *)hdr; |
3e7ee490 | 405 | |
454f18a9 | 406 | /* Allocate the channel object and save this offer. */ |
e98cb276 | 407 | newchannel = alloc_channel(); |
188963ec | 408 | if (!newchannel) { |
0a46618d | 409 | pr_err("Unable to allocate channel object\n"); |
3e7ee490 HJ |
410 | return; |
411 | } | |
412 | ||
132368bd S |
413 | /* |
414 | * By default we setup state to enable batched | |
415 | * reading. A specific service can choose to | |
416 | * disable this prior to opening the channel. | |
417 | */ | |
418 | newchannel->batched_reading = true; | |
419 | ||
b3bf60c7 S |
420 | /* |
421 | * Setup state for signalling the host. | |
422 | */ | |
423 | newchannel->sig_event = (struct hv_input_signal_event *) | |
424 | (ALIGN((unsigned long) | |
425 | &newchannel->sig_buf, | |
426 | HV_HYPERCALL_PARAM_ALIGN)); | |
427 | ||
428 | newchannel->sig_event->connectionid.asu32 = 0; | |
429 | newchannel->sig_event->connectionid.u.id = VMBUS_EVENT_CONNECTION_ID; | |
430 | newchannel->sig_event->flag_number = 0; | |
431 | newchannel->sig_event->rsvdz = 0; | |
432 | ||
433 | if (vmbus_proto_version != VERSION_WS2008) { | |
434 | newchannel->is_dedicated_interrupt = | |
435 | (offer->is_dedicated_interrupt != 0); | |
436 | newchannel->sig_event->connectionid.u.id = | |
437 | offer->connection_id; | |
438 | } | |
439 | ||
a119845f | 440 | newchannel->target_vp = get_vp_index(&offer->offer.if_type); |
abbf3b2a | 441 | |
c50f7fb2 | 442 | memcpy(&newchannel->offermsg, offer, |
bd60c33e | 443 | sizeof(struct vmbus_channel_offer_channel)); |
c50f7fb2 HZ |
444 | newchannel->monitor_grp = (u8)offer->monitorid / 32; |
445 | newchannel->monitor_bit = (u8)offer->monitorid % 32; | |
3e7ee490 | 446 | |
4b2f9abe TT |
447 | INIT_WORK(&newchannel->work, vmbus_process_offer); |
448 | queue_work(newchannel->controlwq, &newchannel->work); | |
3e7ee490 HJ |
449 | } |
450 | ||
3e189519 | 451 | /* |
e98cb276 | 452 | * vmbus_onoffer_rescind - Rescind offer handler. |
bd60c33e GKH |
453 | * |
454 | * We queue a work item to process this offer synchronously | |
455 | */ | |
e98cb276 | 456 | static void vmbus_onoffer_rescind(struct vmbus_channel_message_header *hdr) |
3e7ee490 | 457 | { |
bd60c33e | 458 | struct vmbus_channel_rescind_offer *rescind; |
aded7165 | 459 | struct vmbus_channel *channel; |
3e7ee490 | 460 | |
bd60c33e | 461 | rescind = (struct vmbus_channel_rescind_offer *)hdr; |
c6977677 | 462 | channel = relid2channel(rescind->child_relid); |
98e08702 HJ |
463 | |
464 | if (channel == NULL) | |
465 | /* Just return here, no channel found */ | |
3e7ee490 | 466 | return; |
3e7ee490 | 467 | |
4b2f9abe TT |
468 | /* work is initialized for vmbus_process_rescind_offer() from |
469 | * vmbus_process_offer() where the channel got created */ | |
470 | queue_work(channel->controlwq, &channel->work); | |
3e7ee490 HJ |
471 | } |
472 | ||
3e189519 | 473 | /* |
e98cb276 HZ |
474 | * vmbus_onoffers_delivered - |
475 | * This is invoked when all offers have been delivered. | |
bd60c33e GKH |
476 | * |
477 | * Nothing to do here. | |
478 | */ | |
e98cb276 | 479 | static void vmbus_onoffers_delivered( |
bd60c33e | 480 | struct vmbus_channel_message_header *hdr) |
3e7ee490 | 481 | { |
3e7ee490 HJ |
482 | } |
483 | ||
3e189519 | 484 | /* |
e98cb276 | 485 | * vmbus_onopen_result - Open result handler. |
bd60c33e GKH |
486 | * |
487 | * This is invoked when we received a response to our channel open request. | |
488 | * Find the matching request, copy the response and signal the requesting | |
489 | * thread. | |
490 | */ | |
e98cb276 | 491 | static void vmbus_onopen_result(struct vmbus_channel_message_header *hdr) |
3e7ee490 | 492 | { |
bd60c33e | 493 | struct vmbus_channel_open_result *result; |
188963ec HZ |
494 | struct vmbus_channel_msginfo *msginfo; |
495 | struct vmbus_channel_message_header *requestheader; | |
496 | struct vmbus_channel_open_channel *openmsg; | |
dd0813b6 | 497 | unsigned long flags; |
3e7ee490 | 498 | |
bd60c33e | 499 | result = (struct vmbus_channel_open_result *)hdr; |
3e7ee490 | 500 | |
bd60c33e GKH |
501 | /* |
502 | * Find the open msg, copy the result and signal/unblock the wait event | |
503 | */ | |
15b2f647 | 504 | spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); |
3e7ee490 | 505 | |
ebb61e5f HJ |
506 | list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list, |
507 | msglistentry) { | |
188963ec | 508 | requestheader = |
c50f7fb2 | 509 | (struct vmbus_channel_message_header *)msginfo->msg; |
188963ec | 510 | |
c50f7fb2 | 511 | if (requestheader->msgtype == CHANNELMSG_OPENCHANNEL) { |
188963ec | 512 | openmsg = |
c50f7fb2 HZ |
513 | (struct vmbus_channel_open_channel *)msginfo->msg; |
514 | if (openmsg->child_relid == result->child_relid && | |
515 | openmsg->openid == result->openid) { | |
516 | memcpy(&msginfo->response.open_result, | |
bd60c33e | 517 | result, |
9568a193 S |
518 | sizeof( |
519 | struct vmbus_channel_open_result)); | |
520 | complete(&msginfo->waitevent); | |
3e7ee490 HJ |
521 | break; |
522 | } | |
523 | } | |
524 | } | |
15b2f647 | 525 | spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); |
3e7ee490 HJ |
526 | } |
527 | ||
3e189519 | 528 | /* |
e98cb276 | 529 | * vmbus_ongpadl_created - GPADL created handler. |
bd60c33e GKH |
530 | * |
531 | * This is invoked when we received a response to our gpadl create request. | |
532 | * Find the matching request, copy the response and signal the requesting | |
533 | * thread. | |
534 | */ | |
e98cb276 | 535 | static void vmbus_ongpadl_created(struct vmbus_channel_message_header *hdr) |
3e7ee490 | 536 | { |
188963ec | 537 | struct vmbus_channel_gpadl_created *gpadlcreated; |
188963ec HZ |
538 | struct vmbus_channel_msginfo *msginfo; |
539 | struct vmbus_channel_message_header *requestheader; | |
540 | struct vmbus_channel_gpadl_header *gpadlheader; | |
dd0813b6 | 541 | unsigned long flags; |
3e7ee490 | 542 | |
188963ec | 543 | gpadlcreated = (struct vmbus_channel_gpadl_created *)hdr; |
3e7ee490 | 544 | |
bd60c33e GKH |
545 | /* |
546 | * Find the establish msg, copy the result and signal/unblock the wait | |
547 | * event | |
548 | */ | |
15b2f647 | 549 | spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); |
3e7ee490 | 550 | |
ebb61e5f HJ |
551 | list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list, |
552 | msglistentry) { | |
188963ec | 553 | requestheader = |
c50f7fb2 | 554 | (struct vmbus_channel_message_header *)msginfo->msg; |
188963ec | 555 | |
c50f7fb2 | 556 | if (requestheader->msgtype == CHANNELMSG_GPADL_HEADER) { |
188963ec HZ |
557 | gpadlheader = |
558 | (struct vmbus_channel_gpadl_header *)requestheader; | |
559 | ||
c50f7fb2 HZ |
560 | if ((gpadlcreated->child_relid == |
561 | gpadlheader->child_relid) && | |
562 | (gpadlcreated->gpadl == gpadlheader->gpadl)) { | |
563 | memcpy(&msginfo->response.gpadl_created, | |
188963ec | 564 | gpadlcreated, |
9568a193 S |
565 | sizeof( |
566 | struct vmbus_channel_gpadl_created)); | |
567 | complete(&msginfo->waitevent); | |
3e7ee490 HJ |
568 | break; |
569 | } | |
570 | } | |
571 | } | |
15b2f647 | 572 | spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); |
3e7ee490 HJ |
573 | } |
574 | ||
3e189519 | 575 | /* |
e98cb276 | 576 | * vmbus_ongpadl_torndown - GPADL torndown handler. |
bd60c33e GKH |
577 | * |
578 | * This is invoked when we received a response to our gpadl teardown request. | |
579 | * Find the matching request, copy the response and signal the requesting | |
580 | * thread. | |
581 | */ | |
e98cb276 | 582 | static void vmbus_ongpadl_torndown( |
bd60c33e | 583 | struct vmbus_channel_message_header *hdr) |
3e7ee490 | 584 | { |
188963ec | 585 | struct vmbus_channel_gpadl_torndown *gpadl_torndown; |
188963ec HZ |
586 | struct vmbus_channel_msginfo *msginfo; |
587 | struct vmbus_channel_message_header *requestheader; | |
588 | struct vmbus_channel_gpadl_teardown *gpadl_teardown; | |
dd0813b6 | 589 | unsigned long flags; |
3e7ee490 | 590 | |
188963ec | 591 | gpadl_torndown = (struct vmbus_channel_gpadl_torndown *)hdr; |
bd60c33e GKH |
592 | |
593 | /* | |
594 | * Find the open msg, copy the result and signal/unblock the wait event | |
595 | */ | |
15b2f647 | 596 | spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); |
3e7ee490 | 597 | |
ebb61e5f HJ |
598 | list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list, |
599 | msglistentry) { | |
188963ec | 600 | requestheader = |
c50f7fb2 | 601 | (struct vmbus_channel_message_header *)msginfo->msg; |
3e7ee490 | 602 | |
c50f7fb2 | 603 | if (requestheader->msgtype == CHANNELMSG_GPADL_TEARDOWN) { |
188963ec HZ |
604 | gpadl_teardown = |
605 | (struct vmbus_channel_gpadl_teardown *)requestheader; | |
3e7ee490 | 606 | |
c50f7fb2 HZ |
607 | if (gpadl_torndown->gpadl == gpadl_teardown->gpadl) { |
608 | memcpy(&msginfo->response.gpadl_torndown, | |
188963ec | 609 | gpadl_torndown, |
9568a193 S |
610 | sizeof( |
611 | struct vmbus_channel_gpadl_torndown)); | |
612 | complete(&msginfo->waitevent); | |
3e7ee490 HJ |
613 | break; |
614 | } | |
615 | } | |
616 | } | |
15b2f647 | 617 | spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); |
3e7ee490 HJ |
618 | } |
619 | ||
3e189519 | 620 | /* |
e98cb276 | 621 | * vmbus_onversion_response - Version response handler |
bd60c33e GKH |
622 | * |
623 | * This is invoked when we received a response to our initiate contact request. | |
624 | * Find the matching request, copy the response and signal the requesting | |
625 | * thread. | |
626 | */ | |
e98cb276 | 627 | static void vmbus_onversion_response( |
bd60c33e | 628 | struct vmbus_channel_message_header *hdr) |
3e7ee490 | 629 | { |
188963ec HZ |
630 | struct vmbus_channel_msginfo *msginfo; |
631 | struct vmbus_channel_message_header *requestheader; | |
188963ec | 632 | struct vmbus_channel_version_response *version_response; |
dd0813b6 | 633 | unsigned long flags; |
3e7ee490 | 634 | |
188963ec | 635 | version_response = (struct vmbus_channel_version_response *)hdr; |
15b2f647 | 636 | spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); |
3e7ee490 | 637 | |
ebb61e5f HJ |
638 | list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list, |
639 | msglistentry) { | |
188963ec | 640 | requestheader = |
c50f7fb2 | 641 | (struct vmbus_channel_message_header *)msginfo->msg; |
3e7ee490 | 642 | |
c50f7fb2 HZ |
643 | if (requestheader->msgtype == |
644 | CHANNELMSG_INITIATE_CONTACT) { | |
c50f7fb2 | 645 | memcpy(&msginfo->response.version_response, |
188963ec | 646 | version_response, |
bd60c33e | 647 | sizeof(struct vmbus_channel_version_response)); |
9568a193 | 648 | complete(&msginfo->waitevent); |
3e7ee490 HJ |
649 | } |
650 | } | |
15b2f647 | 651 | spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); |
3e7ee490 HJ |
652 | } |
653 | ||
c8212f04 GKH |
654 | /* Channel message dispatch table */ |
655 | static struct vmbus_channel_message_table_entry | |
b7c6b02f | 656 | channel_message_table[CHANNELMSG_COUNT] = { |
c50f7fb2 HZ |
657 | {CHANNELMSG_INVALID, NULL}, |
658 | {CHANNELMSG_OFFERCHANNEL, vmbus_onoffer}, | |
659 | {CHANNELMSG_RESCIND_CHANNELOFFER, vmbus_onoffer_rescind}, | |
660 | {CHANNELMSG_REQUESTOFFERS, NULL}, | |
661 | {CHANNELMSG_ALLOFFERS_DELIVERED, vmbus_onoffers_delivered}, | |
662 | {CHANNELMSG_OPENCHANNEL, NULL}, | |
663 | {CHANNELMSG_OPENCHANNEL_RESULT, vmbus_onopen_result}, | |
664 | {CHANNELMSG_CLOSECHANNEL, NULL}, | |
665 | {CHANNELMSG_GPADL_HEADER, NULL}, | |
666 | {CHANNELMSG_GPADL_BODY, NULL}, | |
667 | {CHANNELMSG_GPADL_CREATED, vmbus_ongpadl_created}, | |
668 | {CHANNELMSG_GPADL_TEARDOWN, NULL}, | |
669 | {CHANNELMSG_GPADL_TORNDOWN, vmbus_ongpadl_torndown}, | |
670 | {CHANNELMSG_RELID_RELEASED, NULL}, | |
671 | {CHANNELMSG_INITIATE_CONTACT, NULL}, | |
672 | {CHANNELMSG_VERSION_RESPONSE, vmbus_onversion_response}, | |
673 | {CHANNELMSG_UNLOAD, NULL}, | |
c8212f04 GKH |
674 | }; |
675 | ||
3e189519 | 676 | /* |
e98cb276 | 677 | * vmbus_onmessage - Handler for channel protocol messages. |
bd60c33e GKH |
678 | * |
679 | * This is invoked in the vmbus worker thread context. | |
680 | */ | |
e98cb276 | 681 | void vmbus_onmessage(void *context) |
3e7ee490 | 682 | { |
188963ec | 683 | struct hv_message *msg = context; |
82250213 | 684 | struct vmbus_channel_message_header *hdr; |
3e7ee490 HJ |
685 | int size; |
686 | ||
f6feebe0 HZ |
687 | hdr = (struct vmbus_channel_message_header *)msg->u.payload; |
688 | size = msg->header.payload_size; | |
3e7ee490 | 689 | |
c50f7fb2 | 690 | if (hdr->msgtype >= CHANNELMSG_COUNT) { |
0a46618d | 691 | pr_err("Received invalid channel message type %d size %d\n", |
c50f7fb2 | 692 | hdr->msgtype, size); |
04f50c4d | 693 | print_hex_dump_bytes("", DUMP_PREFIX_NONE, |
f6feebe0 | 694 | (unsigned char *)msg->u.payload, size); |
3e7ee490 HJ |
695 | return; |
696 | } | |
697 | ||
b7c6b02f S |
698 | if (channel_message_table[hdr->msgtype].message_handler) |
699 | channel_message_table[hdr->msgtype].message_handler(hdr); | |
3e7ee490 | 700 | else |
0a46618d | 701 | pr_err("Unhandled channel message type %d\n", hdr->msgtype); |
3e7ee490 HJ |
702 | } |
703 | ||
3e189519 | 704 | /* |
e98cb276 | 705 | * vmbus_request_offers - Send a request to get all our pending offers. |
bd60c33e | 706 | */ |
e98cb276 | 707 | int vmbus_request_offers(void) |
3e7ee490 | 708 | { |
82250213 | 709 | struct vmbus_channel_message_header *msg; |
188963ec | 710 | struct vmbus_channel_msginfo *msginfo; |
9568a193 | 711 | int ret, t; |
3e7ee490 | 712 | |
188963ec | 713 | msginfo = kmalloc(sizeof(*msginfo) + |
bd60c33e GKH |
714 | sizeof(struct vmbus_channel_message_header), |
715 | GFP_KERNEL); | |
188963ec | 716 | if (!msginfo) |
75910f23 | 717 | return -ENOMEM; |
3e7ee490 | 718 | |
9568a193 | 719 | init_completion(&msginfo->waitevent); |
75910f23 | 720 | |
c50f7fb2 | 721 | msg = (struct vmbus_channel_message_header *)msginfo->msg; |
3e7ee490 | 722 | |
c50f7fb2 | 723 | msg->msgtype = CHANNELMSG_REQUESTOFFERS; |
3e7ee490 | 724 | |
3e7ee490 | 725 | |
c6977677 | 726 | ret = vmbus_post_msg(msg, |
bd60c33e GKH |
727 | sizeof(struct vmbus_channel_message_header)); |
728 | if (ret != 0) { | |
0a46618d | 729 | pr_err("Unable to request offers - %d\n", ret); |
3e7ee490 | 730 | |
0c3b7b2f S |
731 | goto cleanup; |
732 | } | |
3e7ee490 | 733 | |
2dfde964 | 734 | t = wait_for_completion_timeout(&msginfo->waitevent, 5*HZ); |
9568a193 | 735 | if (t == 0) { |
0c3b7b2f S |
736 | ret = -ETIMEDOUT; |
737 | goto cleanup; | |
3e7ee490 | 738 | } |
3e7ee490 | 739 | |
3e7ee490 HJ |
740 | |
741 | ||
0c3b7b2f | 742 | cleanup: |
dd9b15dc | 743 | kfree(msginfo); |
3e7ee490 | 744 | |
3e7ee490 HJ |
745 | return ret; |
746 | } | |
747 | ||
e68d2971 S |
748 | /* |
749 | * Retrieve the (sub) channel on which to send an outgoing request. | |
750 | * When a primary channel has multiple sub-channels, we choose a | |
751 | * channel whose VCPU binding is closest to the VCPU on which | |
752 | * this call is being made. | |
753 | */ | |
754 | struct vmbus_channel *vmbus_get_outgoing_channel(struct vmbus_channel *primary) | |
755 | { | |
756 | struct list_head *cur, *tmp; | |
757 | int cur_cpu = hv_context.vp_index[smp_processor_id()]; | |
758 | struct vmbus_channel *cur_channel; | |
759 | struct vmbus_channel *outgoing_channel = primary; | |
760 | int cpu_distance, new_cpu_distance; | |
761 | ||
762 | if (list_empty(&primary->sc_list)) | |
763 | return outgoing_channel; | |
764 | ||
765 | list_for_each_safe(cur, tmp, &primary->sc_list) { | |
766 | cur_channel = list_entry(cur, struct vmbus_channel, sc_list); | |
767 | if (cur_channel->state != CHANNEL_OPENED_STATE) | |
768 | continue; | |
769 | ||
770 | if (cur_channel->target_vp == cur_cpu) | |
771 | return cur_channel; | |
772 | ||
773 | cpu_distance = ((outgoing_channel->target_vp > cur_cpu) ? | |
774 | (outgoing_channel->target_vp - cur_cpu) : | |
775 | (cur_cpu - outgoing_channel->target_vp)); | |
776 | ||
777 | new_cpu_distance = ((cur_channel->target_vp > cur_cpu) ? | |
778 | (cur_channel->target_vp - cur_cpu) : | |
779 | (cur_cpu - cur_channel->target_vp)); | |
780 | ||
781 | if (cpu_distance < new_cpu_distance) | |
782 | continue; | |
783 | ||
784 | outgoing_channel = cur_channel; | |
785 | } | |
786 | ||
787 | return outgoing_channel; | |
788 | } | |
789 | EXPORT_SYMBOL_GPL(vmbus_get_outgoing_channel); | |
790 | ||
791 | static void invoke_sc_cb(struct vmbus_channel *primary_channel) | |
792 | { | |
793 | struct list_head *cur, *tmp; | |
794 | struct vmbus_channel *cur_channel; | |
795 | ||
796 | if (primary_channel->sc_creation_callback == NULL) | |
797 | return; | |
798 | ||
799 | list_for_each_safe(cur, tmp, &primary_channel->sc_list) { | |
800 | cur_channel = list_entry(cur, struct vmbus_channel, sc_list); | |
801 | ||
802 | primary_channel->sc_creation_callback(cur_channel); | |
803 | } | |
804 | } | |
805 | ||
806 | void vmbus_set_sc_create_callback(struct vmbus_channel *primary_channel, | |
807 | void (*sc_cr_cb)(struct vmbus_channel *new_sc)) | |
808 | { | |
809 | primary_channel->sc_creation_callback = sc_cr_cb; | |
810 | } | |
811 | EXPORT_SYMBOL_GPL(vmbus_set_sc_create_callback); | |
812 | ||
813 | bool vmbus_are_subchannels_present(struct vmbus_channel *primary) | |
814 | { | |
815 | bool ret; | |
816 | ||
817 | ret = !list_empty(&primary->sc_list); | |
818 | ||
819 | if (ret) { | |
820 | /* | |
821 | * Invoke the callback on sub-channel creation. | |
822 | * This will present a uniform interface to the | |
823 | * clients. | |
824 | */ | |
825 | invoke_sc_cb(primary); | |
826 | } | |
827 | ||
828 | return ret; | |
829 | } | |
830 | EXPORT_SYMBOL_GPL(vmbus_are_subchannels_present); |