2 * Copyright (c) 2009, Microsoft Corporation.
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.
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
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.
18 * Haiyang Zhang <haiyangz@microsoft.com>
19 * Hank Janssen <hjanssen@microsoft.com>
21 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23 #include <linux/kernel.h>
24 #include <linux/sched.h>
25 #include <linux/wait.h>
27 #include <linux/slab.h>
28 #include <linux/list.h>
29 #include <linux/module.h>
30 #include <linux/completion.h>
31 #include <linux/hyperv.h>
33 #include "hyperv_vmbus.h"
35 static void init_vp_index(struct vmbus_channel
*channel
,
36 const uuid_le
*type_guid
);
39 * vmbus_prep_negotiate_resp() - Create default response for Hyper-V Negotiate message
40 * @icmsghdrp: Pointer to msg header structure
41 * @icmsg_negotiate: Pointer to negotiate message structure
42 * @buf: Raw buffer channel data
44 * @icmsghdrp is of type &struct icmsg_hdr.
45 * @negop is of type &struct icmsg_negotiate.
46 * Set up and fill in default negotiate response message.
48 * The fw_version specifies the framework version that
49 * we can support and srv_version specifies the service
50 * version we can support.
52 * Mainly used by Hyper-V drivers.
54 bool vmbus_prep_negotiate_resp(struct icmsg_hdr
*icmsghdrp
,
55 struct icmsg_negotiate
*negop
, u8
*buf
,
56 int fw_version
, int srv_version
)
58 int icframe_major
, icframe_minor
;
59 int icmsg_major
, icmsg_minor
;
60 int fw_major
, fw_minor
;
61 int srv_major
, srv_minor
;
63 bool found_match
= false;
65 icmsghdrp
->icmsgsize
= 0x10;
66 fw_major
= (fw_version
>> 16);
67 fw_minor
= (fw_version
& 0xFFFF);
69 srv_major
= (srv_version
>> 16);
70 srv_minor
= (srv_version
& 0xFFFF);
72 negop
= (struct icmsg_negotiate
*)&buf
[
73 sizeof(struct vmbuspipe_hdr
) +
74 sizeof(struct icmsg_hdr
)];
76 icframe_major
= negop
->icframe_vercnt
;
79 icmsg_major
= negop
->icmsg_vercnt
;
83 * Select the framework version number we will
87 for (i
= 0; i
< negop
->icframe_vercnt
; i
++) {
88 if ((negop
->icversion_data
[i
].major
== fw_major
) &&
89 (negop
->icversion_data
[i
].minor
== fw_minor
)) {
90 icframe_major
= negop
->icversion_data
[i
].major
;
91 icframe_minor
= negop
->icversion_data
[i
].minor
;
101 for (i
= negop
->icframe_vercnt
;
102 (i
< negop
->icframe_vercnt
+ negop
->icmsg_vercnt
); i
++) {
103 if ((negop
->icversion_data
[i
].major
== srv_major
) &&
104 (negop
->icversion_data
[i
].minor
== srv_minor
)) {
105 icmsg_major
= negop
->icversion_data
[i
].major
;
106 icmsg_minor
= negop
->icversion_data
[i
].minor
;
112 * Respond with the framework and service
113 * version numbers we can support.
118 negop
->icframe_vercnt
= 0;
119 negop
->icmsg_vercnt
= 0;
121 negop
->icframe_vercnt
= 1;
122 negop
->icmsg_vercnt
= 1;
125 negop
->icversion_data
[0].major
= icframe_major
;
126 negop
->icversion_data
[0].minor
= icframe_minor
;
127 negop
->icversion_data
[1].major
= icmsg_major
;
128 negop
->icversion_data
[1].minor
= icmsg_minor
;
132 EXPORT_SYMBOL_GPL(vmbus_prep_negotiate_resp
);
135 * alloc_channel - Allocate and initialize a vmbus channel object
137 static struct vmbus_channel
*alloc_channel(void)
139 static atomic_t chan_num
= ATOMIC_INIT(0);
140 struct vmbus_channel
*channel
;
142 channel
= kzalloc(sizeof(*channel
), GFP_ATOMIC
);
146 channel
->id
= atomic_inc_return(&chan_num
);
147 spin_lock_init(&channel
->inbound_lock
);
148 spin_lock_init(&channel
->lock
);
150 INIT_LIST_HEAD(&channel
->sc_list
);
151 INIT_LIST_HEAD(&channel
->percpu_list
);
157 * free_channel - Release the resources used by the vmbus channel object
159 static void free_channel(struct vmbus_channel
*channel
)
164 static void percpu_channel_enq(void *arg
)
166 struct vmbus_channel
*channel
= arg
;
167 int cpu
= smp_processor_id();
169 list_add_tail(&channel
->percpu_list
, &hv_context
.percpu_list
[cpu
]);
172 static void percpu_channel_deq(void *arg
)
174 struct vmbus_channel
*channel
= arg
;
176 list_del(&channel
->percpu_list
);
180 void hv_process_channel_removal(struct vmbus_channel
*channel
, u32 relid
)
182 struct vmbus_channel_relid_released msg
;
184 struct vmbus_channel
*primary_channel
;
186 memset(&msg
, 0, sizeof(struct vmbus_channel_relid_released
));
187 msg
.child_relid
= relid
;
188 msg
.header
.msgtype
= CHANNELMSG_RELID_RELEASED
;
189 vmbus_post_msg(&msg
, sizeof(struct vmbus_channel_relid_released
));
194 if (channel
->target_cpu
!= get_cpu()) {
196 smp_call_function_single(channel
->target_cpu
,
197 percpu_channel_deq
, channel
, true);
199 percpu_channel_deq(channel
);
203 if (channel
->primary_channel
== NULL
) {
204 spin_lock_irqsave(&vmbus_connection
.channel_lock
, flags
);
205 list_del(&channel
->listentry
);
206 spin_unlock_irqrestore(&vmbus_connection
.channel_lock
, flags
);
208 primary_channel
= channel
;
210 primary_channel
= channel
->primary_channel
;
211 spin_lock_irqsave(&primary_channel
->lock
, flags
);
212 list_del(&channel
->sc_list
);
213 primary_channel
->num_sc
--;
214 spin_unlock_irqrestore(&primary_channel
->lock
, flags
);
218 * We need to free the bit for init_vp_index() to work in the case
219 * of sub-channel, when we reload drivers like hv_netvsc.
221 cpumask_clear_cpu(channel
->target_cpu
,
222 &primary_channel
->alloced_cpus_in_node
);
224 free_channel(channel
);
227 void vmbus_free_channels(void)
229 struct vmbus_channel
*channel
, *tmp
;
231 list_for_each_entry_safe(channel
, tmp
, &vmbus_connection
.chn_list
,
233 /* if we don't set rescind to true, vmbus_close_internal()
234 * won't invoke hv_process_channel_removal().
236 channel
->rescind
= true;
238 vmbus_device_unregister(channel
->device_obj
);
243 * vmbus_process_offer - Process the offer by creating a channel/device
244 * associated with this offer
246 static void vmbus_process_offer(struct vmbus_channel
*newchannel
)
248 struct vmbus_channel
*channel
;
252 /* Make sure this is a new offer */
253 spin_lock_irqsave(&vmbus_connection
.channel_lock
, flags
);
255 list_for_each_entry(channel
, &vmbus_connection
.chn_list
, listentry
) {
256 if (!uuid_le_cmp(channel
->offermsg
.offer
.if_type
,
257 newchannel
->offermsg
.offer
.if_type
) &&
258 !uuid_le_cmp(channel
->offermsg
.offer
.if_instance
,
259 newchannel
->offermsg
.offer
.if_instance
)) {
266 list_add_tail(&newchannel
->listentry
,
267 &vmbus_connection
.chn_list
);
269 spin_unlock_irqrestore(&vmbus_connection
.channel_lock
, flags
);
273 * Check to see if this is a sub-channel.
275 if (newchannel
->offermsg
.offer
.sub_channel_index
!= 0) {
277 * Process the sub-channel.
279 newchannel
->primary_channel
= channel
;
280 spin_lock_irqsave(&channel
->lock
, flags
);
281 list_add_tail(&newchannel
->sc_list
, &channel
->sc_list
);
283 spin_unlock_irqrestore(&channel
->lock
, flags
);
288 init_vp_index(newchannel
, &newchannel
->offermsg
.offer
.if_type
);
290 if (newchannel
->target_cpu
!= get_cpu()) {
292 smp_call_function_single(newchannel
->target_cpu
,
296 percpu_channel_enq(newchannel
);
301 * This state is used to indicate a successful open
302 * so that when we do close the channel normally, we
303 * can cleanup properly
305 newchannel
->state
= CHANNEL_OPEN_STATE
;
308 if (channel
->sc_creation_callback
!= NULL
)
309 channel
->sc_creation_callback(newchannel
);
314 * Start the process of binding this offer to the driver
315 * We need to set the DeviceObject field before calling
316 * vmbus_child_dev_add()
318 newchannel
->device_obj
= vmbus_device_create(
319 &newchannel
->offermsg
.offer
.if_type
,
320 &newchannel
->offermsg
.offer
.if_instance
,
322 if (!newchannel
->device_obj
)
326 * Add the new device to the bus. This will kick off device-driver
327 * binding which eventually invokes the device driver's AddDevice()
330 if (vmbus_device_register(newchannel
->device_obj
) != 0) {
331 pr_err("unable to add child device object (relid %d)\n",
332 newchannel
->offermsg
.child_relid
);
333 kfree(newchannel
->device_obj
);
339 spin_lock_irqsave(&vmbus_connection
.channel_lock
, flags
);
340 list_del(&newchannel
->listentry
);
341 spin_unlock_irqrestore(&vmbus_connection
.channel_lock
, flags
);
343 if (newchannel
->target_cpu
!= get_cpu()) {
345 smp_call_function_single(newchannel
->target_cpu
,
346 percpu_channel_deq
, newchannel
, true);
348 percpu_channel_deq(newchannel
);
353 free_channel(newchannel
);
365 * This is an array of device_ids (device types) that are performance critical.
366 * We attempt to distribute the interrupt load for these devices across
367 * all available CPUs.
369 static const struct hv_vmbus_device_id hp_devs
[] = {
376 /* NetworkDirect Guest RDMA */
382 * We use this state to statically distribute the channel interrupt load.
384 static int next_numa_node_id
;
387 * Starting with Win8, we can statically distribute the incoming
388 * channel interrupt load by binding a channel to VCPU.
389 * We do this in a hierarchical fashion:
390 * First distribute the primary channels across available NUMA nodes
391 * and then distribute the subchannels amongst the CPUs in the NUMA
392 * node assigned to the primary channel.
394 * For pre-win8 hosts or non-performance critical channels we assign the
395 * first CPU in the first NUMA node.
397 static void init_vp_index(struct vmbus_channel
*channel
, const uuid_le
*type_guid
)
401 bool perf_chn
= false;
402 struct vmbus_channel
*primary
= channel
->primary_channel
;
404 struct cpumask available_mask
;
405 struct cpumask
*alloced_mask
;
407 for (i
= IDE
; i
< MAX_PERF_CHN
; i
++) {
408 if (!memcmp(type_guid
->b
, hp_devs
[i
].guid
,
414 if ((vmbus_proto_version
== VERSION_WS2008
) ||
415 (vmbus_proto_version
== VERSION_WIN7
) || (!perf_chn
)) {
417 * Prior to win8, all channel interrupts are
418 * delivered on cpu 0.
419 * Also if the channel is not a performance critical
420 * channel, bind it to cpu 0.
422 channel
->numa_node
= 0;
423 channel
->target_cpu
= 0;
424 channel
->target_vp
= hv_context
.vp_index
[0];
429 * We distribute primary channels evenly across all the available
430 * NUMA nodes and within the assigned NUMA node we will assign the
431 * first available CPU to the primary channel.
432 * The sub-channels will be assigned to the CPUs available in the
437 next_node
= next_numa_node_id
++;
438 if (next_node
== nr_node_ids
)
439 next_node
= next_numa_node_id
= 0;
440 if (cpumask_empty(cpumask_of_node(next_node
)))
444 channel
->numa_node
= next_node
;
447 alloced_mask
= &hv_context
.hv_numa_map
[primary
->numa_node
];
449 if (cpumask_weight(alloced_mask
) ==
450 cpumask_weight(cpumask_of_node(primary
->numa_node
))) {
452 * We have cycled through all the CPUs in the node;
453 * reset the alloced map.
455 cpumask_clear(alloced_mask
);
458 cpumask_xor(&available_mask
, alloced_mask
,
459 cpumask_of_node(primary
->numa_node
));
463 cur_cpu
= cpumask_next(cur_cpu
, &available_mask
);
464 if (cur_cpu
>= nr_cpu_ids
) {
466 cpumask_copy(&available_mask
,
467 cpumask_of_node(primary
->numa_node
));
472 * NOTE: in the case of sub-channel, we clear the sub-channel
473 * related bit(s) in primary->alloced_cpus_in_node in
474 * hv_process_channel_removal(), so when we reload drivers
475 * like hv_netvsc in SMP guest, here we're able to re-allocate
476 * bit from primary->alloced_cpus_in_node.
478 if (!cpumask_test_cpu(cur_cpu
,
479 &primary
->alloced_cpus_in_node
)) {
480 cpumask_set_cpu(cur_cpu
,
481 &primary
->alloced_cpus_in_node
);
482 cpumask_set_cpu(cur_cpu
, alloced_mask
);
487 channel
->target_cpu
= cur_cpu
;
488 channel
->target_vp
= hv_context
.vp_index
[cur_cpu
];
492 * vmbus_unload_response - Handler for the unload response.
494 static void vmbus_unload_response(struct vmbus_channel_message_header
*hdr
)
497 * This is a global event; just wakeup the waiting thread.
498 * Once we successfully unload, we can cleanup the monitor state.
500 complete(&vmbus_connection
.unload_event
);
503 void vmbus_initiate_unload(void)
505 struct vmbus_channel_message_header hdr
;
507 /* Pre-Win2012R2 hosts don't support reconnect */
508 if (vmbus_proto_version
< VERSION_WIN8_1
)
511 init_completion(&vmbus_connection
.unload_event
);
512 memset(&hdr
, 0, sizeof(struct vmbus_channel_message_header
));
513 hdr
.msgtype
= CHANNELMSG_UNLOAD
;
514 vmbus_post_msg(&hdr
, sizeof(struct vmbus_channel_message_header
));
516 wait_for_completion(&vmbus_connection
.unload_event
);
520 * vmbus_onoffer - Handler for channel offers from vmbus in parent partition.
523 static void vmbus_onoffer(struct vmbus_channel_message_header
*hdr
)
525 struct vmbus_channel_offer_channel
*offer
;
526 struct vmbus_channel
*newchannel
;
528 offer
= (struct vmbus_channel_offer_channel
*)hdr
;
530 /* Allocate the channel object and save this offer. */
531 newchannel
= alloc_channel();
533 pr_err("Unable to allocate channel object\n");
538 * By default we setup state to enable batched
539 * reading. A specific service can choose to
540 * disable this prior to opening the channel.
542 newchannel
->batched_reading
= true;
545 * Setup state for signalling the host.
547 newchannel
->sig_event
= (struct hv_input_signal_event
*)
548 (ALIGN((unsigned long)
549 &newchannel
->sig_buf
,
550 HV_HYPERCALL_PARAM_ALIGN
));
552 newchannel
->sig_event
->connectionid
.asu32
= 0;
553 newchannel
->sig_event
->connectionid
.u
.id
= VMBUS_EVENT_CONNECTION_ID
;
554 newchannel
->sig_event
->flag_number
= 0;
555 newchannel
->sig_event
->rsvdz
= 0;
557 if (vmbus_proto_version
!= VERSION_WS2008
) {
558 newchannel
->is_dedicated_interrupt
=
559 (offer
->is_dedicated_interrupt
!= 0);
560 newchannel
->sig_event
->connectionid
.u
.id
=
561 offer
->connection_id
;
564 memcpy(&newchannel
->offermsg
, offer
,
565 sizeof(struct vmbus_channel_offer_channel
));
566 newchannel
->monitor_grp
= (u8
)offer
->monitorid
/ 32;
567 newchannel
->monitor_bit
= (u8
)offer
->monitorid
% 32;
569 vmbus_process_offer(newchannel
);
573 * vmbus_onoffer_rescind - Rescind offer handler.
575 * We queue a work item to process this offer synchronously
577 static void vmbus_onoffer_rescind(struct vmbus_channel_message_header
*hdr
)
579 struct vmbus_channel_rescind_offer
*rescind
;
580 struct vmbus_channel
*channel
;
584 rescind
= (struct vmbus_channel_rescind_offer
*)hdr
;
585 channel
= relid2channel(rescind
->child_relid
);
587 if (channel
== NULL
) {
588 hv_process_channel_removal(NULL
, rescind
->child_relid
);
592 spin_lock_irqsave(&channel
->lock
, flags
);
593 channel
->rescind
= true;
594 spin_unlock_irqrestore(&channel
->lock
, flags
);
596 if (channel
->device_obj
) {
598 * We will have to unregister this device from the
601 dev
= get_device(&channel
->device_obj
->device
);
603 vmbus_device_unregister(channel
->device_obj
);
607 hv_process_channel_removal(channel
,
608 channel
->offermsg
.child_relid
);
613 * vmbus_onoffers_delivered -
614 * This is invoked when all offers have been delivered.
616 * Nothing to do here.
618 static void vmbus_onoffers_delivered(
619 struct vmbus_channel_message_header
*hdr
)
624 * vmbus_onopen_result - Open result handler.
626 * This is invoked when we received a response to our channel open request.
627 * Find the matching request, copy the response and signal the requesting
630 static void vmbus_onopen_result(struct vmbus_channel_message_header
*hdr
)
632 struct vmbus_channel_open_result
*result
;
633 struct vmbus_channel_msginfo
*msginfo
;
634 struct vmbus_channel_message_header
*requestheader
;
635 struct vmbus_channel_open_channel
*openmsg
;
638 result
= (struct vmbus_channel_open_result
*)hdr
;
641 * Find the open msg, copy the result and signal/unblock the wait event
643 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
645 list_for_each_entry(msginfo
, &vmbus_connection
.chn_msg_list
,
648 (struct vmbus_channel_message_header
*)msginfo
->msg
;
650 if (requestheader
->msgtype
== CHANNELMSG_OPENCHANNEL
) {
652 (struct vmbus_channel_open_channel
*)msginfo
->msg
;
653 if (openmsg
->child_relid
== result
->child_relid
&&
654 openmsg
->openid
== result
->openid
) {
655 memcpy(&msginfo
->response
.open_result
,
658 struct vmbus_channel_open_result
));
659 complete(&msginfo
->waitevent
);
664 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
, flags
);
668 * vmbus_ongpadl_created - GPADL created handler.
670 * This is invoked when we received a response to our gpadl create request.
671 * Find the matching request, copy the response and signal the requesting
674 static void vmbus_ongpadl_created(struct vmbus_channel_message_header
*hdr
)
676 struct vmbus_channel_gpadl_created
*gpadlcreated
;
677 struct vmbus_channel_msginfo
*msginfo
;
678 struct vmbus_channel_message_header
*requestheader
;
679 struct vmbus_channel_gpadl_header
*gpadlheader
;
682 gpadlcreated
= (struct vmbus_channel_gpadl_created
*)hdr
;
685 * Find the establish msg, copy the result and signal/unblock the wait
688 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
690 list_for_each_entry(msginfo
, &vmbus_connection
.chn_msg_list
,
693 (struct vmbus_channel_message_header
*)msginfo
->msg
;
695 if (requestheader
->msgtype
== CHANNELMSG_GPADL_HEADER
) {
697 (struct vmbus_channel_gpadl_header
*)requestheader
;
699 if ((gpadlcreated
->child_relid
==
700 gpadlheader
->child_relid
) &&
701 (gpadlcreated
->gpadl
== gpadlheader
->gpadl
)) {
702 memcpy(&msginfo
->response
.gpadl_created
,
705 struct vmbus_channel_gpadl_created
));
706 complete(&msginfo
->waitevent
);
711 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
, flags
);
715 * vmbus_ongpadl_torndown - GPADL torndown handler.
717 * This is invoked when we received a response to our gpadl teardown request.
718 * Find the matching request, copy the response and signal the requesting
721 static void vmbus_ongpadl_torndown(
722 struct vmbus_channel_message_header
*hdr
)
724 struct vmbus_channel_gpadl_torndown
*gpadl_torndown
;
725 struct vmbus_channel_msginfo
*msginfo
;
726 struct vmbus_channel_message_header
*requestheader
;
727 struct vmbus_channel_gpadl_teardown
*gpadl_teardown
;
730 gpadl_torndown
= (struct vmbus_channel_gpadl_torndown
*)hdr
;
733 * Find the open msg, copy the result and signal/unblock the wait event
735 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
737 list_for_each_entry(msginfo
, &vmbus_connection
.chn_msg_list
,
740 (struct vmbus_channel_message_header
*)msginfo
->msg
;
742 if (requestheader
->msgtype
== CHANNELMSG_GPADL_TEARDOWN
) {
744 (struct vmbus_channel_gpadl_teardown
*)requestheader
;
746 if (gpadl_torndown
->gpadl
== gpadl_teardown
->gpadl
) {
747 memcpy(&msginfo
->response
.gpadl_torndown
,
750 struct vmbus_channel_gpadl_torndown
));
751 complete(&msginfo
->waitevent
);
756 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
, flags
);
760 * vmbus_onversion_response - Version response handler
762 * This is invoked when we received a response to our initiate contact request.
763 * Find the matching request, copy the response and signal the requesting
766 static void vmbus_onversion_response(
767 struct vmbus_channel_message_header
*hdr
)
769 struct vmbus_channel_msginfo
*msginfo
;
770 struct vmbus_channel_message_header
*requestheader
;
771 struct vmbus_channel_version_response
*version_response
;
774 version_response
= (struct vmbus_channel_version_response
*)hdr
;
775 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
777 list_for_each_entry(msginfo
, &vmbus_connection
.chn_msg_list
,
780 (struct vmbus_channel_message_header
*)msginfo
->msg
;
782 if (requestheader
->msgtype
==
783 CHANNELMSG_INITIATE_CONTACT
) {
784 memcpy(&msginfo
->response
.version_response
,
786 sizeof(struct vmbus_channel_version_response
));
787 complete(&msginfo
->waitevent
);
790 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
, flags
);
793 /* Channel message dispatch table */
794 struct vmbus_channel_message_table_entry
795 channel_message_table
[CHANNELMSG_COUNT
] = {
796 {CHANNELMSG_INVALID
, 0, NULL
},
797 {CHANNELMSG_OFFERCHANNEL
, 0, vmbus_onoffer
},
798 {CHANNELMSG_RESCIND_CHANNELOFFER
, 0, vmbus_onoffer_rescind
},
799 {CHANNELMSG_REQUESTOFFERS
, 0, NULL
},
800 {CHANNELMSG_ALLOFFERS_DELIVERED
, 1, vmbus_onoffers_delivered
},
801 {CHANNELMSG_OPENCHANNEL
, 0, NULL
},
802 {CHANNELMSG_OPENCHANNEL_RESULT
, 1, vmbus_onopen_result
},
803 {CHANNELMSG_CLOSECHANNEL
, 0, NULL
},
804 {CHANNELMSG_GPADL_HEADER
, 0, NULL
},
805 {CHANNELMSG_GPADL_BODY
, 0, NULL
},
806 {CHANNELMSG_GPADL_CREATED
, 1, vmbus_ongpadl_created
},
807 {CHANNELMSG_GPADL_TEARDOWN
, 0, NULL
},
808 {CHANNELMSG_GPADL_TORNDOWN
, 1, vmbus_ongpadl_torndown
},
809 {CHANNELMSG_RELID_RELEASED
, 0, NULL
},
810 {CHANNELMSG_INITIATE_CONTACT
, 0, NULL
},
811 {CHANNELMSG_VERSION_RESPONSE
, 1, vmbus_onversion_response
},
812 {CHANNELMSG_UNLOAD
, 0, NULL
},
813 {CHANNELMSG_UNLOAD_RESPONSE
, 1, vmbus_unload_response
},
817 * vmbus_onmessage - Handler for channel protocol messages.
819 * This is invoked in the vmbus worker thread context.
821 void vmbus_onmessage(void *context
)
823 struct hv_message
*msg
= context
;
824 struct vmbus_channel_message_header
*hdr
;
827 hdr
= (struct vmbus_channel_message_header
*)msg
->u
.payload
;
828 size
= msg
->header
.payload_size
;
830 if (hdr
->msgtype
>= CHANNELMSG_COUNT
) {
831 pr_err("Received invalid channel message type %d size %d\n",
833 print_hex_dump_bytes("", DUMP_PREFIX_NONE
,
834 (unsigned char *)msg
->u
.payload
, size
);
838 if (channel_message_table
[hdr
->msgtype
].message_handler
)
839 channel_message_table
[hdr
->msgtype
].message_handler(hdr
);
841 pr_err("Unhandled channel message type %d\n", hdr
->msgtype
);
845 * vmbus_request_offers - Send a request to get all our pending offers.
847 int vmbus_request_offers(void)
849 struct vmbus_channel_message_header
*msg
;
850 struct vmbus_channel_msginfo
*msginfo
;
853 msginfo
= kmalloc(sizeof(*msginfo
) +
854 sizeof(struct vmbus_channel_message_header
),
859 msg
= (struct vmbus_channel_message_header
*)msginfo
->msg
;
861 msg
->msgtype
= CHANNELMSG_REQUESTOFFERS
;
864 ret
= vmbus_post_msg(msg
,
865 sizeof(struct vmbus_channel_message_header
));
867 pr_err("Unable to request offers - %d\n", ret
);
879 * Retrieve the (sub) channel on which to send an outgoing request.
880 * When a primary channel has multiple sub-channels, we try to
881 * distribute the load equally amongst all available channels.
883 struct vmbus_channel
*vmbus_get_outgoing_channel(struct vmbus_channel
*primary
)
885 struct list_head
*cur
, *tmp
;
887 struct vmbus_channel
*cur_channel
;
888 struct vmbus_channel
*outgoing_channel
= primary
;
892 if (list_empty(&primary
->sc_list
))
893 return outgoing_channel
;
895 next_channel
= primary
->next_oc
++;
897 if (next_channel
> (primary
->num_sc
)) {
898 primary
->next_oc
= 0;
899 return outgoing_channel
;
902 cur_cpu
= hv_context
.vp_index
[get_cpu()];
904 list_for_each_safe(cur
, tmp
, &primary
->sc_list
) {
905 cur_channel
= list_entry(cur
, struct vmbus_channel
, sc_list
);
906 if (cur_channel
->state
!= CHANNEL_OPENED_STATE
)
909 if (cur_channel
->target_vp
== cur_cpu
)
912 if (i
== next_channel
)
918 return outgoing_channel
;
920 EXPORT_SYMBOL_GPL(vmbus_get_outgoing_channel
);
922 static void invoke_sc_cb(struct vmbus_channel
*primary_channel
)
924 struct list_head
*cur
, *tmp
;
925 struct vmbus_channel
*cur_channel
;
927 if (primary_channel
->sc_creation_callback
== NULL
)
930 list_for_each_safe(cur
, tmp
, &primary_channel
->sc_list
) {
931 cur_channel
= list_entry(cur
, struct vmbus_channel
, sc_list
);
933 primary_channel
->sc_creation_callback(cur_channel
);
937 void vmbus_set_sc_create_callback(struct vmbus_channel
*primary_channel
,
938 void (*sc_cr_cb
)(struct vmbus_channel
*new_sc
))
940 primary_channel
->sc_creation_callback
= sc_cr_cb
;
942 EXPORT_SYMBOL_GPL(vmbus_set_sc_create_callback
);
944 bool vmbus_are_subchannels_present(struct vmbus_channel
*primary
)
948 ret
= !list_empty(&primary
->sc_list
);
952 * Invoke the callback on sub-channel creation.
953 * This will present a uniform interface to the
956 invoke_sc_cb(primary
);
961 EXPORT_SYMBOL_GPL(vmbus_are_subchannels_present
);