xref: /openbmc/linux/drivers/hv/channel_mgmt.c (revision 929e2a61)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (c) 2009, Microsoft Corporation.
4  *
5  * Authors:
6  *   Haiyang Zhang <haiyangz@microsoft.com>
7  *   Hank Janssen  <hjanssen@microsoft.com>
8  */
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 
11 #include <linux/kernel.h>
12 #include <linux/interrupt.h>
13 #include <linux/sched.h>
14 #include <linux/wait.h>
15 #include <linux/mm.h>
16 #include <linux/slab.h>
17 #include <linux/list.h>
18 #include <linux/module.h>
19 #include <linux/completion.h>
20 #include <linux/delay.h>
21 #include <linux/cpu.h>
22 #include <linux/hyperv.h>
23 #include <asm/mshyperv.h>
24 
25 #include "hyperv_vmbus.h"
26 
27 static void init_vp_index(struct vmbus_channel *channel);
28 
29 const struct vmbus_device vmbus_devs[] = {
30 	/* IDE */
31 	{ .dev_type = HV_IDE,
32 	  HV_IDE_GUID,
33 	  .perf_device = true,
34 	},
35 
36 	/* SCSI */
37 	{ .dev_type = HV_SCSI,
38 	  HV_SCSI_GUID,
39 	  .perf_device = true,
40 	},
41 
42 	/* Fibre Channel */
43 	{ .dev_type = HV_FC,
44 	  HV_SYNTHFC_GUID,
45 	  .perf_device = true,
46 	},
47 
48 	/* Synthetic NIC */
49 	{ .dev_type = HV_NIC,
50 	  HV_NIC_GUID,
51 	  .perf_device = true,
52 	},
53 
54 	/* Network Direct */
55 	{ .dev_type = HV_ND,
56 	  HV_ND_GUID,
57 	  .perf_device = true,
58 	},
59 
60 	/* PCIE */
61 	{ .dev_type = HV_PCIE,
62 	  HV_PCIE_GUID,
63 	  .perf_device = false,
64 	},
65 
66 	/* Synthetic Frame Buffer */
67 	{ .dev_type = HV_FB,
68 	  HV_SYNTHVID_GUID,
69 	  .perf_device = false,
70 	},
71 
72 	/* Synthetic Keyboard */
73 	{ .dev_type = HV_KBD,
74 	  HV_KBD_GUID,
75 	  .perf_device = false,
76 	},
77 
78 	/* Synthetic MOUSE */
79 	{ .dev_type = HV_MOUSE,
80 	  HV_MOUSE_GUID,
81 	  .perf_device = false,
82 	},
83 
84 	/* KVP */
85 	{ .dev_type = HV_KVP,
86 	  HV_KVP_GUID,
87 	  .perf_device = false,
88 	},
89 
90 	/* Time Synch */
91 	{ .dev_type = HV_TS,
92 	  HV_TS_GUID,
93 	  .perf_device = false,
94 	},
95 
96 	/* Heartbeat */
97 	{ .dev_type = HV_HB,
98 	  HV_HEART_BEAT_GUID,
99 	  .perf_device = false,
100 	},
101 
102 	/* Shutdown */
103 	{ .dev_type = HV_SHUTDOWN,
104 	  HV_SHUTDOWN_GUID,
105 	  .perf_device = false,
106 	},
107 
108 	/* File copy */
109 	{ .dev_type = HV_FCOPY,
110 	  HV_FCOPY_GUID,
111 	  .perf_device = false,
112 	},
113 
114 	/* Backup */
115 	{ .dev_type = HV_BACKUP,
116 	  HV_VSS_GUID,
117 	  .perf_device = false,
118 	},
119 
120 	/* Dynamic Memory */
121 	{ .dev_type = HV_DM,
122 	  HV_DM_GUID,
123 	  .perf_device = false,
124 	},
125 
126 	/* Unknown GUID */
127 	{ .dev_type = HV_UNKNOWN,
128 	  .perf_device = false,
129 	},
130 };
131 
132 static const struct {
133 	guid_t guid;
134 } vmbus_unsupported_devs[] = {
135 	{ HV_AVMA1_GUID },
136 	{ HV_AVMA2_GUID },
137 	{ HV_RDV_GUID	},
138 };
139 
140 /*
141  * The rescinded channel may be blocked waiting for a response from the host;
142  * take care of that.
143  */
144 static void vmbus_rescind_cleanup(struct vmbus_channel *channel)
145 {
146 	struct vmbus_channel_msginfo *msginfo;
147 	unsigned long flags;
148 
149 
150 	spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
151 	channel->rescind = true;
152 	list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
153 				msglistentry) {
154 
155 		if (msginfo->waiting_channel == channel) {
156 			complete(&msginfo->waitevent);
157 			break;
158 		}
159 	}
160 	spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
161 }
162 
163 static bool is_unsupported_vmbus_devs(const guid_t *guid)
164 {
165 	int i;
166 
167 	for (i = 0; i < ARRAY_SIZE(vmbus_unsupported_devs); i++)
168 		if (guid_equal(guid, &vmbus_unsupported_devs[i].guid))
169 			return true;
170 	return false;
171 }
172 
173 static u16 hv_get_dev_type(const struct vmbus_channel *channel)
174 {
175 	const guid_t *guid = &channel->offermsg.offer.if_type;
176 	u16 i;
177 
178 	if (is_hvsock_channel(channel) || is_unsupported_vmbus_devs(guid))
179 		return HV_UNKNOWN;
180 
181 	for (i = HV_IDE; i < HV_UNKNOWN; i++) {
182 		if (guid_equal(guid, &vmbus_devs[i].guid))
183 			return i;
184 	}
185 	pr_info("Unknown GUID: %pUl\n", guid);
186 	return i;
187 }
188 
189 /**
190  * vmbus_prep_negotiate_resp() - Create default response for Negotiate message
191  * @icmsghdrp: Pointer to msg header structure
192  * @buf: Raw buffer channel data
193  * @fw_version: The framework versions we can support.
194  * @fw_vercnt: The size of @fw_version.
195  * @srv_version: The service versions we can support.
196  * @srv_vercnt: The size of @srv_version.
197  * @nego_fw_version: The selected framework version.
198  * @nego_srv_version: The selected service version.
199  *
200  * Note: Versions are given in decreasing order.
201  *
202  * Set up and fill in default negotiate response message.
203  * Mainly used by Hyper-V drivers.
204  */
205 bool vmbus_prep_negotiate_resp(struct icmsg_hdr *icmsghdrp,
206 				u8 *buf, const int *fw_version, int fw_vercnt,
207 				const int *srv_version, int srv_vercnt,
208 				int *nego_fw_version, int *nego_srv_version)
209 {
210 	int icframe_major, icframe_minor;
211 	int icmsg_major, icmsg_minor;
212 	int fw_major, fw_minor;
213 	int srv_major, srv_minor;
214 	int i, j;
215 	bool found_match = false;
216 	struct icmsg_negotiate *negop;
217 
218 	icmsghdrp->icmsgsize = 0x10;
219 	negop = (struct icmsg_negotiate *)&buf[
220 		sizeof(struct vmbuspipe_hdr) +
221 		sizeof(struct icmsg_hdr)];
222 
223 	icframe_major = negop->icframe_vercnt;
224 	icframe_minor = 0;
225 
226 	icmsg_major = negop->icmsg_vercnt;
227 	icmsg_minor = 0;
228 
229 	/*
230 	 * Select the framework version number we will
231 	 * support.
232 	 */
233 
234 	for (i = 0; i < fw_vercnt; i++) {
235 		fw_major = (fw_version[i] >> 16);
236 		fw_minor = (fw_version[i] & 0xFFFF);
237 
238 		for (j = 0; j < negop->icframe_vercnt; j++) {
239 			if ((negop->icversion_data[j].major == fw_major) &&
240 			    (negop->icversion_data[j].minor == fw_minor)) {
241 				icframe_major = negop->icversion_data[j].major;
242 				icframe_minor = negop->icversion_data[j].minor;
243 				found_match = true;
244 				break;
245 			}
246 		}
247 
248 		if (found_match)
249 			break;
250 	}
251 
252 	if (!found_match)
253 		goto fw_error;
254 
255 	found_match = false;
256 
257 	for (i = 0; i < srv_vercnt; i++) {
258 		srv_major = (srv_version[i] >> 16);
259 		srv_minor = (srv_version[i] & 0xFFFF);
260 
261 		for (j = negop->icframe_vercnt;
262 			(j < negop->icframe_vercnt + negop->icmsg_vercnt);
263 			j++) {
264 
265 			if ((negop->icversion_data[j].major == srv_major) &&
266 				(negop->icversion_data[j].minor == srv_minor)) {
267 
268 				icmsg_major = negop->icversion_data[j].major;
269 				icmsg_minor = negop->icversion_data[j].minor;
270 				found_match = true;
271 				break;
272 			}
273 		}
274 
275 		if (found_match)
276 			break;
277 	}
278 
279 	/*
280 	 * Respond with the framework and service
281 	 * version numbers we can support.
282 	 */
283 
284 fw_error:
285 	if (!found_match) {
286 		negop->icframe_vercnt = 0;
287 		negop->icmsg_vercnt = 0;
288 	} else {
289 		negop->icframe_vercnt = 1;
290 		negop->icmsg_vercnt = 1;
291 	}
292 
293 	if (nego_fw_version)
294 		*nego_fw_version = (icframe_major << 16) | icframe_minor;
295 
296 	if (nego_srv_version)
297 		*nego_srv_version = (icmsg_major << 16) | icmsg_minor;
298 
299 	negop->icversion_data[0].major = icframe_major;
300 	negop->icversion_data[0].minor = icframe_minor;
301 	negop->icversion_data[1].major = icmsg_major;
302 	negop->icversion_data[1].minor = icmsg_minor;
303 	return found_match;
304 }
305 
306 EXPORT_SYMBOL_GPL(vmbus_prep_negotiate_resp);
307 
308 /*
309  * alloc_channel - Allocate and initialize a vmbus channel object
310  */
311 static struct vmbus_channel *alloc_channel(void)
312 {
313 	struct vmbus_channel *channel;
314 
315 	channel = kzalloc(sizeof(*channel), GFP_ATOMIC);
316 	if (!channel)
317 		return NULL;
318 
319 	spin_lock_init(&channel->sched_lock);
320 	init_completion(&channel->rescind_event);
321 
322 	INIT_LIST_HEAD(&channel->sc_list);
323 
324 	tasklet_init(&channel->callback_event,
325 		     vmbus_on_event, (unsigned long)channel);
326 
327 	hv_ringbuffer_pre_init(channel);
328 
329 	return channel;
330 }
331 
332 /*
333  * free_channel - Release the resources used by the vmbus channel object
334  */
335 static void free_channel(struct vmbus_channel *channel)
336 {
337 	tasklet_kill(&channel->callback_event);
338 	vmbus_remove_channel_attr_group(channel);
339 
340 	kobject_put(&channel->kobj);
341 }
342 
343 void vmbus_channel_map_relid(struct vmbus_channel *channel)
344 {
345 	if (WARN_ON(channel->offermsg.child_relid >= MAX_CHANNEL_RELIDS))
346 		return;
347 	/*
348 	 * The mapping of the channel's relid is visible from the CPUs that
349 	 * execute vmbus_chan_sched() by the time that vmbus_chan_sched() will
350 	 * execute:
351 	 *
352 	 *  (a) In the "normal (i.e., not resuming from hibernation)" path,
353 	 *      the full barrier in smp_store_mb() guarantees that the store
354 	 *      is propagated to all CPUs before the add_channel_work work
355 	 *      is queued.  In turn, add_channel_work is queued before the
356 	 *      channel's ring buffer is allocated/initialized and the
357 	 *      OPENCHANNEL message for the channel is sent in vmbus_open().
358 	 *      Hyper-V won't start sending the interrupts for the channel
359 	 *      before the OPENCHANNEL message is acked.  The memory barrier
360 	 *      in vmbus_chan_sched() -> sync_test_and_clear_bit() ensures
361 	 *      that vmbus_chan_sched() must find the channel's relid in
362 	 *      recv_int_page before retrieving the channel pointer from the
363 	 *      array of channels.
364 	 *
365 	 *  (b) In the "resuming from hibernation" path, the smp_store_mb()
366 	 *      guarantees that the store is propagated to all CPUs before
367 	 *      the VMBus connection is marked as ready for the resume event
368 	 *      (cf. check_ready_for_resume_event()).  The interrupt handler
369 	 *      of the VMBus driver and vmbus_chan_sched() can not run before
370 	 *      vmbus_bus_resume() has completed execution (cf. resume_noirq).
371 	 */
372 	smp_store_mb(
373 		vmbus_connection.channels[channel->offermsg.child_relid],
374 		channel);
375 }
376 
377 void vmbus_channel_unmap_relid(struct vmbus_channel *channel)
378 {
379 	if (WARN_ON(channel->offermsg.child_relid >= MAX_CHANNEL_RELIDS))
380 		return;
381 	WRITE_ONCE(
382 		vmbus_connection.channels[channel->offermsg.child_relid],
383 		NULL);
384 }
385 
386 static void vmbus_release_relid(u32 relid)
387 {
388 	struct vmbus_channel_relid_released msg;
389 	int ret;
390 
391 	memset(&msg, 0, sizeof(struct vmbus_channel_relid_released));
392 	msg.child_relid = relid;
393 	msg.header.msgtype = CHANNELMSG_RELID_RELEASED;
394 	ret = vmbus_post_msg(&msg, sizeof(struct vmbus_channel_relid_released),
395 			     true);
396 
397 	trace_vmbus_release_relid(&msg, ret);
398 }
399 
400 void hv_process_channel_removal(struct vmbus_channel *channel)
401 {
402 	lockdep_assert_held(&vmbus_connection.channel_mutex);
403 	BUG_ON(!channel->rescind);
404 
405 	/*
406 	 * hv_process_channel_removal() could find INVALID_RELID only for
407 	 * hv_sock channels.  See the inline comments in vmbus_onoffer().
408 	 */
409 	WARN_ON(channel->offermsg.child_relid == INVALID_RELID &&
410 		!is_hvsock_channel(channel));
411 
412 	/*
413 	 * Upon suspend, an in-use hv_sock channel is removed from the array of
414 	 * channels and the relid is invalidated.  After hibernation, when the
415 	 * user-space appplication destroys the channel, it's unnecessary and
416 	 * unsafe to remove the channel from the array of channels.  See also
417 	 * the inline comments before the call of vmbus_release_relid() below.
418 	 */
419 	if (channel->offermsg.child_relid != INVALID_RELID)
420 		vmbus_channel_unmap_relid(channel);
421 
422 	if (channel->primary_channel == NULL)
423 		list_del(&channel->listentry);
424 	else
425 		list_del(&channel->sc_list);
426 
427 	/*
428 	 * If this is a "perf" channel, updates the hv_numa_map[] masks so that
429 	 * init_vp_index() can (re-)use the CPU.
430 	 */
431 	if (hv_is_perf_channel(channel))
432 		hv_clear_alloced_cpu(channel->target_cpu);
433 
434 	/*
435 	 * Upon suspend, an in-use hv_sock channel is marked as "rescinded" and
436 	 * the relid is invalidated; after hibernation, when the user-space app
437 	 * destroys the channel, the relid is INVALID_RELID, and in this case
438 	 * it's unnecessary and unsafe to release the old relid, since the same
439 	 * relid can refer to a completely different channel now.
440 	 */
441 	if (channel->offermsg.child_relid != INVALID_RELID)
442 		vmbus_release_relid(channel->offermsg.child_relid);
443 
444 	free_channel(channel);
445 }
446 
447 void vmbus_free_channels(void)
448 {
449 	struct vmbus_channel *channel, *tmp;
450 
451 	list_for_each_entry_safe(channel, tmp, &vmbus_connection.chn_list,
452 		listentry) {
453 		/* hv_process_channel_removal() needs this */
454 		channel->rescind = true;
455 
456 		vmbus_device_unregister(channel->device_obj);
457 	}
458 }
459 
460 /* Note: the function can run concurrently for primary/sub channels. */
461 static void vmbus_add_channel_work(struct work_struct *work)
462 {
463 	struct vmbus_channel *newchannel =
464 		container_of(work, struct vmbus_channel, add_channel_work);
465 	struct vmbus_channel *primary_channel = newchannel->primary_channel;
466 	int ret;
467 
468 	/*
469 	 * This state is used to indicate a successful open
470 	 * so that when we do close the channel normally, we
471 	 * can cleanup properly.
472 	 */
473 	newchannel->state = CHANNEL_OPEN_STATE;
474 
475 	if (primary_channel != NULL) {
476 		/* newchannel is a sub-channel. */
477 		struct hv_device *dev = primary_channel->device_obj;
478 
479 		if (vmbus_add_channel_kobj(dev, newchannel))
480 			goto err_deq_chan;
481 
482 		if (primary_channel->sc_creation_callback != NULL)
483 			primary_channel->sc_creation_callback(newchannel);
484 
485 		newchannel->probe_done = true;
486 		return;
487 	}
488 
489 	/*
490 	 * Start the process of binding the primary channel to the driver
491 	 */
492 	newchannel->device_obj = vmbus_device_create(
493 		&newchannel->offermsg.offer.if_type,
494 		&newchannel->offermsg.offer.if_instance,
495 		newchannel);
496 	if (!newchannel->device_obj)
497 		goto err_deq_chan;
498 
499 	newchannel->device_obj->device_id = newchannel->device_id;
500 	/*
501 	 * Add the new device to the bus. This will kick off device-driver
502 	 * binding which eventually invokes the device driver's AddDevice()
503 	 * method.
504 	 */
505 	ret = vmbus_device_register(newchannel->device_obj);
506 
507 	if (ret != 0) {
508 		pr_err("unable to add child device object (relid %d)\n",
509 			newchannel->offermsg.child_relid);
510 		kfree(newchannel->device_obj);
511 		goto err_deq_chan;
512 	}
513 
514 	newchannel->probe_done = true;
515 	return;
516 
517 err_deq_chan:
518 	mutex_lock(&vmbus_connection.channel_mutex);
519 
520 	/*
521 	 * We need to set the flag, otherwise
522 	 * vmbus_onoffer_rescind() can be blocked.
523 	 */
524 	newchannel->probe_done = true;
525 
526 	if (primary_channel == NULL)
527 		list_del(&newchannel->listentry);
528 	else
529 		list_del(&newchannel->sc_list);
530 
531 	/* vmbus_process_offer() has mapped the channel. */
532 	vmbus_channel_unmap_relid(newchannel);
533 
534 	mutex_unlock(&vmbus_connection.channel_mutex);
535 
536 	vmbus_release_relid(newchannel->offermsg.child_relid);
537 
538 	free_channel(newchannel);
539 }
540 
541 /*
542  * vmbus_process_offer - Process the offer by creating a channel/device
543  * associated with this offer
544  */
545 static void vmbus_process_offer(struct vmbus_channel *newchannel)
546 {
547 	struct vmbus_channel *channel;
548 	struct workqueue_struct *wq;
549 	bool fnew = true;
550 
551 	/*
552 	 * Synchronize vmbus_process_offer() and CPU hotplugging:
553 	 *
554 	 * CPU1				CPU2
555 	 *
556 	 * [vmbus_process_offer()]	[Hot removal of the CPU]
557 	 *
558 	 * CPU_READ_LOCK		CPUS_WRITE_LOCK
559 	 * LOAD cpu_online_mask		SEARCH chn_list
560 	 * STORE target_cpu		LOAD target_cpu
561 	 * INSERT chn_list		STORE cpu_online_mask
562 	 * CPUS_READ_UNLOCK		CPUS_WRITE_UNLOCK
563 	 *
564 	 * Forbids: CPU1's LOAD from *not* seing CPU2's STORE &&
565 	 * 		CPU2's SEARCH from *not* seeing CPU1's INSERT
566 	 *
567 	 * Forbids: CPU2's SEARCH from seeing CPU1's INSERT &&
568 	 * 		CPU2's LOAD from *not* seing CPU1's STORE
569 	 */
570 	cpus_read_lock();
571 
572 	/*
573 	 * Serializes the modifications of the chn_list list as well as
574 	 * the accesses to next_numa_node_id in init_vp_index().
575 	 */
576 	mutex_lock(&vmbus_connection.channel_mutex);
577 
578 	init_vp_index(newchannel);
579 
580 	/* Remember the channels that should be cleaned up upon suspend. */
581 	if (is_hvsock_channel(newchannel) || is_sub_channel(newchannel))
582 		atomic_inc(&vmbus_connection.nr_chan_close_on_suspend);
583 
584 	/*
585 	 * Now that we have acquired the channel_mutex,
586 	 * we can release the potentially racing rescind thread.
587 	 */
588 	atomic_dec(&vmbus_connection.offer_in_progress);
589 
590 	list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
591 		if (guid_equal(&channel->offermsg.offer.if_type,
592 			       &newchannel->offermsg.offer.if_type) &&
593 		    guid_equal(&channel->offermsg.offer.if_instance,
594 			       &newchannel->offermsg.offer.if_instance)) {
595 			fnew = false;
596 			break;
597 		}
598 	}
599 
600 	if (fnew) {
601 		list_add_tail(&newchannel->listentry,
602 			      &vmbus_connection.chn_list);
603 	} else {
604 		/*
605 		 * Check to see if this is a valid sub-channel.
606 		 */
607 		if (newchannel->offermsg.offer.sub_channel_index == 0) {
608 			mutex_unlock(&vmbus_connection.channel_mutex);
609 			/*
610 			 * Don't call free_channel(), because newchannel->kobj
611 			 * is not initialized yet.
612 			 */
613 			kfree(newchannel);
614 			WARN_ON_ONCE(1);
615 			return;
616 		}
617 		/*
618 		 * Process the sub-channel.
619 		 */
620 		newchannel->primary_channel = channel;
621 		list_add_tail(&newchannel->sc_list, &channel->sc_list);
622 	}
623 
624 	vmbus_channel_map_relid(newchannel);
625 
626 	mutex_unlock(&vmbus_connection.channel_mutex);
627 	cpus_read_unlock();
628 
629 	/*
630 	 * vmbus_process_offer() mustn't call channel->sc_creation_callback()
631 	 * directly for sub-channels, because sc_creation_callback() ->
632 	 * vmbus_open() may never get the host's response to the
633 	 * OPEN_CHANNEL message (the host may rescind a channel at any time,
634 	 * e.g. in the case of hot removing a NIC), and vmbus_onoffer_rescind()
635 	 * may not wake up the vmbus_open() as it's blocked due to a non-zero
636 	 * vmbus_connection.offer_in_progress, and finally we have a deadlock.
637 	 *
638 	 * The above is also true for primary channels, if the related device
639 	 * drivers use sync probing mode by default.
640 	 *
641 	 * And, usually the handling of primary channels and sub-channels can
642 	 * depend on each other, so we should offload them to different
643 	 * workqueues to avoid possible deadlock, e.g. in sync-probing mode,
644 	 * NIC1's netvsc_subchan_work() can race with NIC2's netvsc_probe() ->
645 	 * rtnl_lock(), and causes deadlock: the former gets the rtnl_lock
646 	 * and waits for all the sub-channels to appear, but the latter
647 	 * can't get the rtnl_lock and this blocks the handling of
648 	 * sub-channels.
649 	 */
650 	INIT_WORK(&newchannel->add_channel_work, vmbus_add_channel_work);
651 	wq = fnew ? vmbus_connection.handle_primary_chan_wq :
652 		    vmbus_connection.handle_sub_chan_wq;
653 	queue_work(wq, &newchannel->add_channel_work);
654 }
655 
656 /*
657  * We use this state to statically distribute the channel interrupt load.
658  */
659 static int next_numa_node_id;
660 
661 /*
662  * Starting with Win8, we can statically distribute the incoming
663  * channel interrupt load by binding a channel to VCPU.
664  *
665  * For pre-win8 hosts or non-performance critical channels we assign the
666  * VMBUS_CONNECT_CPU.
667  *
668  * Starting with win8, performance critical channels will be distributed
669  * evenly among all the available NUMA nodes.  Once the node is assigned,
670  * we will assign the CPU based on a simple round robin scheme.
671  */
672 static void init_vp_index(struct vmbus_channel *channel)
673 {
674 	bool perf_chn = hv_is_perf_channel(channel);
675 	cpumask_var_t available_mask;
676 	struct cpumask *alloced_mask;
677 	u32 target_cpu;
678 	int numa_node;
679 
680 	if ((vmbus_proto_version == VERSION_WS2008) ||
681 	    (vmbus_proto_version == VERSION_WIN7) || (!perf_chn) ||
682 	    !alloc_cpumask_var(&available_mask, GFP_KERNEL)) {
683 		/*
684 		 * Prior to win8, all channel interrupts are
685 		 * delivered on VMBUS_CONNECT_CPU.
686 		 * Also if the channel is not a performance critical
687 		 * channel, bind it to VMBUS_CONNECT_CPU.
688 		 * In case alloc_cpumask_var() fails, bind it to
689 		 * VMBUS_CONNECT_CPU.
690 		 */
691 		channel->target_cpu = VMBUS_CONNECT_CPU;
692 		if (perf_chn)
693 			hv_set_alloced_cpu(VMBUS_CONNECT_CPU);
694 		return;
695 	}
696 
697 	while (true) {
698 		numa_node = next_numa_node_id++;
699 		if (numa_node == nr_node_ids) {
700 			next_numa_node_id = 0;
701 			continue;
702 		}
703 		if (cpumask_empty(cpumask_of_node(numa_node)))
704 			continue;
705 		break;
706 	}
707 	alloced_mask = &hv_context.hv_numa_map[numa_node];
708 
709 	if (cpumask_weight(alloced_mask) ==
710 	    cpumask_weight(cpumask_of_node(numa_node))) {
711 		/*
712 		 * We have cycled through all the CPUs in the node;
713 		 * reset the alloced map.
714 		 */
715 		cpumask_clear(alloced_mask);
716 	}
717 
718 	cpumask_xor(available_mask, alloced_mask, cpumask_of_node(numa_node));
719 
720 	target_cpu = cpumask_first(available_mask);
721 	cpumask_set_cpu(target_cpu, alloced_mask);
722 
723 	channel->target_cpu = target_cpu;
724 
725 	free_cpumask_var(available_mask);
726 }
727 
728 static void vmbus_wait_for_unload(void)
729 {
730 	int cpu;
731 	void *page_addr;
732 	struct hv_message *msg;
733 	struct vmbus_channel_message_header *hdr;
734 	u32 message_type;
735 
736 	/*
737 	 * CHANNELMSG_UNLOAD_RESPONSE is always delivered to the CPU which was
738 	 * used for initial contact or to CPU0 depending on host version. When
739 	 * we're crashing on a different CPU let's hope that IRQ handler on
740 	 * the cpu which receives CHANNELMSG_UNLOAD_RESPONSE is still
741 	 * functional and vmbus_unload_response() will complete
742 	 * vmbus_connection.unload_event. If not, the last thing we can do is
743 	 * read message pages for all CPUs directly.
744 	 */
745 	while (1) {
746 		if (completion_done(&vmbus_connection.unload_event))
747 			break;
748 
749 		for_each_online_cpu(cpu) {
750 			struct hv_per_cpu_context *hv_cpu
751 				= per_cpu_ptr(hv_context.cpu_context, cpu);
752 
753 			page_addr = hv_cpu->synic_message_page;
754 			msg = (struct hv_message *)page_addr
755 				+ VMBUS_MESSAGE_SINT;
756 
757 			message_type = READ_ONCE(msg->header.message_type);
758 			if (message_type == HVMSG_NONE)
759 				continue;
760 
761 			hdr = (struct vmbus_channel_message_header *)
762 				msg->u.payload;
763 
764 			if (hdr->msgtype == CHANNELMSG_UNLOAD_RESPONSE)
765 				complete(&vmbus_connection.unload_event);
766 
767 			vmbus_signal_eom(msg, message_type);
768 		}
769 
770 		mdelay(10);
771 	}
772 
773 	/*
774 	 * We're crashing and already got the UNLOAD_RESPONSE, cleanup all
775 	 * maybe-pending messages on all CPUs to be able to receive new
776 	 * messages after we reconnect.
777 	 */
778 	for_each_online_cpu(cpu) {
779 		struct hv_per_cpu_context *hv_cpu
780 			= per_cpu_ptr(hv_context.cpu_context, cpu);
781 
782 		page_addr = hv_cpu->synic_message_page;
783 		msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT;
784 		msg->header.message_type = HVMSG_NONE;
785 	}
786 }
787 
788 /*
789  * vmbus_unload_response - Handler for the unload response.
790  */
791 static void vmbus_unload_response(struct vmbus_channel_message_header *hdr)
792 {
793 	/*
794 	 * This is a global event; just wakeup the waiting thread.
795 	 * Once we successfully unload, we can cleanup the monitor state.
796 	 */
797 	complete(&vmbus_connection.unload_event);
798 }
799 
800 void vmbus_initiate_unload(bool crash)
801 {
802 	struct vmbus_channel_message_header hdr;
803 
804 	if (xchg(&vmbus_connection.conn_state, DISCONNECTED) == DISCONNECTED)
805 		return;
806 
807 	/* Pre-Win2012R2 hosts don't support reconnect */
808 	if (vmbus_proto_version < VERSION_WIN8_1)
809 		return;
810 
811 	init_completion(&vmbus_connection.unload_event);
812 	memset(&hdr, 0, sizeof(struct vmbus_channel_message_header));
813 	hdr.msgtype = CHANNELMSG_UNLOAD;
814 	vmbus_post_msg(&hdr, sizeof(struct vmbus_channel_message_header),
815 		       !crash);
816 
817 	/*
818 	 * vmbus_initiate_unload() is also called on crash and the crash can be
819 	 * happening in an interrupt context, where scheduling is impossible.
820 	 */
821 	if (!crash)
822 		wait_for_completion(&vmbus_connection.unload_event);
823 	else
824 		vmbus_wait_for_unload();
825 }
826 
827 static void check_ready_for_resume_event(void)
828 {
829 	/*
830 	 * If all the old primary channels have been fixed up, then it's safe
831 	 * to resume.
832 	 */
833 	if (atomic_dec_and_test(&vmbus_connection.nr_chan_fixup_on_resume))
834 		complete(&vmbus_connection.ready_for_resume_event);
835 }
836 
837 static void vmbus_setup_channel_state(struct vmbus_channel *channel,
838 				      struct vmbus_channel_offer_channel *offer)
839 {
840 	/*
841 	 * Setup state for signalling the host.
842 	 */
843 	channel->sig_event = VMBUS_EVENT_CONNECTION_ID;
844 
845 	if (vmbus_proto_version != VERSION_WS2008) {
846 		channel->is_dedicated_interrupt =
847 				(offer->is_dedicated_interrupt != 0);
848 		channel->sig_event = offer->connection_id;
849 	}
850 
851 	memcpy(&channel->offermsg, offer,
852 	       sizeof(struct vmbus_channel_offer_channel));
853 	channel->monitor_grp = (u8)offer->monitorid / 32;
854 	channel->monitor_bit = (u8)offer->monitorid % 32;
855 	channel->device_id = hv_get_dev_type(channel);
856 }
857 
858 /*
859  * find_primary_channel_by_offer - Get the channel object given the new offer.
860  * This is only used in the resume path of hibernation.
861  */
862 static struct vmbus_channel *
863 find_primary_channel_by_offer(const struct vmbus_channel_offer_channel *offer)
864 {
865 	struct vmbus_channel *channel = NULL, *iter;
866 	const guid_t *inst1, *inst2;
867 
868 	/* Ignore sub-channel offers. */
869 	if (offer->offer.sub_channel_index != 0)
870 		return NULL;
871 
872 	mutex_lock(&vmbus_connection.channel_mutex);
873 
874 	list_for_each_entry(iter, &vmbus_connection.chn_list, listentry) {
875 		inst1 = &iter->offermsg.offer.if_instance;
876 		inst2 = &offer->offer.if_instance;
877 
878 		if (guid_equal(inst1, inst2)) {
879 			channel = iter;
880 			break;
881 		}
882 	}
883 
884 	mutex_unlock(&vmbus_connection.channel_mutex);
885 
886 	return channel;
887 }
888 
889 /*
890  * vmbus_onoffer - Handler for channel offers from vmbus in parent partition.
891  *
892  */
893 static void vmbus_onoffer(struct vmbus_channel_message_header *hdr)
894 {
895 	struct vmbus_channel_offer_channel *offer;
896 	struct vmbus_channel *oldchannel, *newchannel;
897 	size_t offer_sz;
898 
899 	offer = (struct vmbus_channel_offer_channel *)hdr;
900 
901 	trace_vmbus_onoffer(offer);
902 
903 	oldchannel = find_primary_channel_by_offer(offer);
904 
905 	if (oldchannel != NULL) {
906 		/*
907 		 * We're resuming from hibernation: all the sub-channel and
908 		 * hv_sock channels we had before the hibernation should have
909 		 * been cleaned up, and now we must be seeing a re-offered
910 		 * primary channel that we had before the hibernation.
911 		 */
912 
913 		/*
914 		 * { Initially: channel relid = INVALID_RELID,
915 		 *		channels[valid_relid] = NULL }
916 		 *
917 		 * CPU1					CPU2
918 		 *
919 		 * [vmbus_onoffer()]			[vmbus_device_release()]
920 		 *
921 		 * LOCK channel_mutex			LOCK channel_mutex
922 		 * STORE channel relid = valid_relid	LOAD r1 = channel relid
923 		 * MAP_RELID channel			if (r1 != INVALID_RELID)
924 		 * UNLOCK channel_mutex			  UNMAP_RELID channel
925 		 *					UNLOCK channel_mutex
926 		 *
927 		 * Forbids: r1 == valid_relid &&
928 		 * 		channels[valid_relid] == channel
929 		 *
930 		 * Note.  r1 can be INVALID_RELID only for an hv_sock channel.
931 		 * None of the hv_sock channels which were present before the
932 		 * suspend are re-offered upon the resume.  See the WARN_ON()
933 		 * in hv_process_channel_removal().
934 		 */
935 		mutex_lock(&vmbus_connection.channel_mutex);
936 
937 		atomic_dec(&vmbus_connection.offer_in_progress);
938 
939 		WARN_ON(oldchannel->offermsg.child_relid != INVALID_RELID);
940 		/* Fix up the relid. */
941 		oldchannel->offermsg.child_relid = offer->child_relid;
942 
943 		offer_sz = sizeof(*offer);
944 		if (memcmp(offer, &oldchannel->offermsg, offer_sz) != 0) {
945 			/*
946 			 * This is not an error, since the host can also change
947 			 * the other field(s) of the offer, e.g. on WS RS5
948 			 * (Build 17763), the offer->connection_id of the
949 			 * Mellanox VF vmbus device can change when the host
950 			 * reoffers the device upon resume.
951 			 */
952 			pr_debug("vmbus offer changed: relid=%d\n",
953 				 offer->child_relid);
954 
955 			print_hex_dump_debug("Old vmbus offer: ",
956 					     DUMP_PREFIX_OFFSET, 16, 4,
957 					     &oldchannel->offermsg, offer_sz,
958 					     false);
959 			print_hex_dump_debug("New vmbus offer: ",
960 					     DUMP_PREFIX_OFFSET, 16, 4,
961 					     offer, offer_sz, false);
962 
963 			/* Fix up the old channel. */
964 			vmbus_setup_channel_state(oldchannel, offer);
965 		}
966 
967 		/* Add the channel back to the array of channels. */
968 		vmbus_channel_map_relid(oldchannel);
969 		check_ready_for_resume_event();
970 
971 		mutex_unlock(&vmbus_connection.channel_mutex);
972 		return;
973 	}
974 
975 	/* Allocate the channel object and save this offer. */
976 	newchannel = alloc_channel();
977 	if (!newchannel) {
978 		vmbus_release_relid(offer->child_relid);
979 		atomic_dec(&vmbus_connection.offer_in_progress);
980 		pr_err("Unable to allocate channel object\n");
981 		return;
982 	}
983 
984 	vmbus_setup_channel_state(newchannel, offer);
985 
986 	vmbus_process_offer(newchannel);
987 }
988 
989 static void check_ready_for_suspend_event(void)
990 {
991 	/*
992 	 * If all the sub-channels or hv_sock channels have been cleaned up,
993 	 * then it's safe to suspend.
994 	 */
995 	if (atomic_dec_and_test(&vmbus_connection.nr_chan_close_on_suspend))
996 		complete(&vmbus_connection.ready_for_suspend_event);
997 }
998 
999 /*
1000  * vmbus_onoffer_rescind - Rescind offer handler.
1001  *
1002  * We queue a work item to process this offer synchronously
1003  */
1004 static void vmbus_onoffer_rescind(struct vmbus_channel_message_header *hdr)
1005 {
1006 	struct vmbus_channel_rescind_offer *rescind;
1007 	struct vmbus_channel *channel;
1008 	struct device *dev;
1009 	bool clean_up_chan_for_suspend;
1010 
1011 	rescind = (struct vmbus_channel_rescind_offer *)hdr;
1012 
1013 	trace_vmbus_onoffer_rescind(rescind);
1014 
1015 	/*
1016 	 * The offer msg and the corresponding rescind msg
1017 	 * from the host are guranteed to be ordered -
1018 	 * offer comes in first and then the rescind.
1019 	 * Since we process these events in work elements,
1020 	 * and with preemption, we may end up processing
1021 	 * the events out of order.  We rely on the synchronization
1022 	 * provided by offer_in_progress and by channel_mutex for
1023 	 * ordering these events:
1024 	 *
1025 	 * { Initially: offer_in_progress = 1 }
1026 	 *
1027 	 * CPU1				CPU2
1028 	 *
1029 	 * [vmbus_onoffer()]		[vmbus_onoffer_rescind()]
1030 	 *
1031 	 * LOCK channel_mutex		WAIT_ON offer_in_progress == 0
1032 	 * DECREMENT offer_in_progress	LOCK channel_mutex
1033 	 * STORE channels[]		LOAD channels[]
1034 	 * UNLOCK channel_mutex		UNLOCK channel_mutex
1035 	 *
1036 	 * Forbids: CPU2's LOAD from *not* seeing CPU1's STORE
1037 	 */
1038 
1039 	while (atomic_read(&vmbus_connection.offer_in_progress) != 0) {
1040 		/*
1041 		 * We wait here until any channel offer is currently
1042 		 * being processed.
1043 		 */
1044 		msleep(1);
1045 	}
1046 
1047 	mutex_lock(&vmbus_connection.channel_mutex);
1048 	channel = relid2channel(rescind->child_relid);
1049 	mutex_unlock(&vmbus_connection.channel_mutex);
1050 
1051 	if (channel == NULL) {
1052 		/*
1053 		 * We failed in processing the offer message;
1054 		 * we would have cleaned up the relid in that
1055 		 * failure path.
1056 		 */
1057 		return;
1058 	}
1059 
1060 	clean_up_chan_for_suspend = is_hvsock_channel(channel) ||
1061 				    is_sub_channel(channel);
1062 	/*
1063 	 * Before setting channel->rescind in vmbus_rescind_cleanup(), we
1064 	 * should make sure the channel callback is not running any more.
1065 	 */
1066 	vmbus_reset_channel_cb(channel);
1067 
1068 	/*
1069 	 * Now wait for offer handling to complete.
1070 	 */
1071 	vmbus_rescind_cleanup(channel);
1072 	while (READ_ONCE(channel->probe_done) == false) {
1073 		/*
1074 		 * We wait here until any channel offer is currently
1075 		 * being processed.
1076 		 */
1077 		msleep(1);
1078 	}
1079 
1080 	/*
1081 	 * At this point, the rescind handling can proceed safely.
1082 	 */
1083 
1084 	if (channel->device_obj) {
1085 		if (channel->chn_rescind_callback) {
1086 			channel->chn_rescind_callback(channel);
1087 
1088 			if (clean_up_chan_for_suspend)
1089 				check_ready_for_suspend_event();
1090 
1091 			return;
1092 		}
1093 		/*
1094 		 * We will have to unregister this device from the
1095 		 * driver core.
1096 		 */
1097 		dev = get_device(&channel->device_obj->device);
1098 		if (dev) {
1099 			vmbus_device_unregister(channel->device_obj);
1100 			put_device(dev);
1101 		}
1102 	}
1103 	if (channel->primary_channel != NULL) {
1104 		/*
1105 		 * Sub-channel is being rescinded. Following is the channel
1106 		 * close sequence when initiated from the driveri (refer to
1107 		 * vmbus_close() for details):
1108 		 * 1. Close all sub-channels first
1109 		 * 2. Then close the primary channel.
1110 		 */
1111 		mutex_lock(&vmbus_connection.channel_mutex);
1112 		if (channel->state == CHANNEL_OPEN_STATE) {
1113 			/*
1114 			 * The channel is currently not open;
1115 			 * it is safe for us to cleanup the channel.
1116 			 */
1117 			hv_process_channel_removal(channel);
1118 		} else {
1119 			complete(&channel->rescind_event);
1120 		}
1121 		mutex_unlock(&vmbus_connection.channel_mutex);
1122 	}
1123 
1124 	/* The "channel" may have been freed. Do not access it any longer. */
1125 
1126 	if (clean_up_chan_for_suspend)
1127 		check_ready_for_suspend_event();
1128 }
1129 
1130 void vmbus_hvsock_device_unregister(struct vmbus_channel *channel)
1131 {
1132 	BUG_ON(!is_hvsock_channel(channel));
1133 
1134 	/* We always get a rescind msg when a connection is closed. */
1135 	while (!READ_ONCE(channel->probe_done) || !READ_ONCE(channel->rescind))
1136 		msleep(1);
1137 
1138 	vmbus_device_unregister(channel->device_obj);
1139 }
1140 EXPORT_SYMBOL_GPL(vmbus_hvsock_device_unregister);
1141 
1142 
1143 /*
1144  * vmbus_onoffers_delivered -
1145  * This is invoked when all offers have been delivered.
1146  *
1147  * Nothing to do here.
1148  */
1149 static void vmbus_onoffers_delivered(
1150 			struct vmbus_channel_message_header *hdr)
1151 {
1152 }
1153 
1154 /*
1155  * vmbus_onopen_result - Open result handler.
1156  *
1157  * This is invoked when we received a response to our channel open request.
1158  * Find the matching request, copy the response and signal the requesting
1159  * thread.
1160  */
1161 static void vmbus_onopen_result(struct vmbus_channel_message_header *hdr)
1162 {
1163 	struct vmbus_channel_open_result *result;
1164 	struct vmbus_channel_msginfo *msginfo;
1165 	struct vmbus_channel_message_header *requestheader;
1166 	struct vmbus_channel_open_channel *openmsg;
1167 	unsigned long flags;
1168 
1169 	result = (struct vmbus_channel_open_result *)hdr;
1170 
1171 	trace_vmbus_onopen_result(result);
1172 
1173 	/*
1174 	 * Find the open msg, copy the result and signal/unblock the wait event
1175 	 */
1176 	spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
1177 
1178 	list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
1179 				msglistentry) {
1180 		requestheader =
1181 			(struct vmbus_channel_message_header *)msginfo->msg;
1182 
1183 		if (requestheader->msgtype == CHANNELMSG_OPENCHANNEL) {
1184 			openmsg =
1185 			(struct vmbus_channel_open_channel *)msginfo->msg;
1186 			if (openmsg->child_relid == result->child_relid &&
1187 			    openmsg->openid == result->openid) {
1188 				memcpy(&msginfo->response.open_result,
1189 				       result,
1190 				       sizeof(
1191 					struct vmbus_channel_open_result));
1192 				complete(&msginfo->waitevent);
1193 				break;
1194 			}
1195 		}
1196 	}
1197 	spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
1198 }
1199 
1200 /*
1201  * vmbus_ongpadl_created - GPADL created handler.
1202  *
1203  * This is invoked when we received a response to our gpadl create request.
1204  * Find the matching request, copy the response and signal the requesting
1205  * thread.
1206  */
1207 static void vmbus_ongpadl_created(struct vmbus_channel_message_header *hdr)
1208 {
1209 	struct vmbus_channel_gpadl_created *gpadlcreated;
1210 	struct vmbus_channel_msginfo *msginfo;
1211 	struct vmbus_channel_message_header *requestheader;
1212 	struct vmbus_channel_gpadl_header *gpadlheader;
1213 	unsigned long flags;
1214 
1215 	gpadlcreated = (struct vmbus_channel_gpadl_created *)hdr;
1216 
1217 	trace_vmbus_ongpadl_created(gpadlcreated);
1218 
1219 	/*
1220 	 * Find the establish msg, copy the result and signal/unblock the wait
1221 	 * event
1222 	 */
1223 	spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
1224 
1225 	list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
1226 				msglistentry) {
1227 		requestheader =
1228 			(struct vmbus_channel_message_header *)msginfo->msg;
1229 
1230 		if (requestheader->msgtype == CHANNELMSG_GPADL_HEADER) {
1231 			gpadlheader =
1232 			(struct vmbus_channel_gpadl_header *)requestheader;
1233 
1234 			if ((gpadlcreated->child_relid ==
1235 			     gpadlheader->child_relid) &&
1236 			    (gpadlcreated->gpadl == gpadlheader->gpadl)) {
1237 				memcpy(&msginfo->response.gpadl_created,
1238 				       gpadlcreated,
1239 				       sizeof(
1240 					struct vmbus_channel_gpadl_created));
1241 				complete(&msginfo->waitevent);
1242 				break;
1243 			}
1244 		}
1245 	}
1246 	spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
1247 }
1248 
1249 /*
1250  * vmbus_ongpadl_torndown - GPADL torndown handler.
1251  *
1252  * This is invoked when we received a response to our gpadl teardown request.
1253  * Find the matching request, copy the response and signal the requesting
1254  * thread.
1255  */
1256 static void vmbus_ongpadl_torndown(
1257 			struct vmbus_channel_message_header *hdr)
1258 {
1259 	struct vmbus_channel_gpadl_torndown *gpadl_torndown;
1260 	struct vmbus_channel_msginfo *msginfo;
1261 	struct vmbus_channel_message_header *requestheader;
1262 	struct vmbus_channel_gpadl_teardown *gpadl_teardown;
1263 	unsigned long flags;
1264 
1265 	gpadl_torndown = (struct vmbus_channel_gpadl_torndown *)hdr;
1266 
1267 	trace_vmbus_ongpadl_torndown(gpadl_torndown);
1268 
1269 	/*
1270 	 * Find the open msg, copy the result and signal/unblock the wait event
1271 	 */
1272 	spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
1273 
1274 	list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
1275 				msglistentry) {
1276 		requestheader =
1277 			(struct vmbus_channel_message_header *)msginfo->msg;
1278 
1279 		if (requestheader->msgtype == CHANNELMSG_GPADL_TEARDOWN) {
1280 			gpadl_teardown =
1281 			(struct vmbus_channel_gpadl_teardown *)requestheader;
1282 
1283 			if (gpadl_torndown->gpadl == gpadl_teardown->gpadl) {
1284 				memcpy(&msginfo->response.gpadl_torndown,
1285 				       gpadl_torndown,
1286 				       sizeof(
1287 					struct vmbus_channel_gpadl_torndown));
1288 				complete(&msginfo->waitevent);
1289 				break;
1290 			}
1291 		}
1292 	}
1293 	spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
1294 }
1295 
1296 /*
1297  * vmbus_onversion_response - Version response handler
1298  *
1299  * This is invoked when we received a response to our initiate contact request.
1300  * Find the matching request, copy the response and signal the requesting
1301  * thread.
1302  */
1303 static void vmbus_onversion_response(
1304 		struct vmbus_channel_message_header *hdr)
1305 {
1306 	struct vmbus_channel_msginfo *msginfo;
1307 	struct vmbus_channel_message_header *requestheader;
1308 	struct vmbus_channel_version_response *version_response;
1309 	unsigned long flags;
1310 
1311 	version_response = (struct vmbus_channel_version_response *)hdr;
1312 
1313 	trace_vmbus_onversion_response(version_response);
1314 
1315 	spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
1316 
1317 	list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
1318 				msglistentry) {
1319 		requestheader =
1320 			(struct vmbus_channel_message_header *)msginfo->msg;
1321 
1322 		if (requestheader->msgtype ==
1323 		    CHANNELMSG_INITIATE_CONTACT) {
1324 			memcpy(&msginfo->response.version_response,
1325 			      version_response,
1326 			      sizeof(struct vmbus_channel_version_response));
1327 			complete(&msginfo->waitevent);
1328 		}
1329 	}
1330 	spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
1331 }
1332 
1333 /* Channel message dispatch table */
1334 const struct vmbus_channel_message_table_entry
1335 channel_message_table[CHANNELMSG_COUNT] = {
1336 	{ CHANNELMSG_INVALID,			0, NULL, 0},
1337 	{ CHANNELMSG_OFFERCHANNEL,		0, vmbus_onoffer,
1338 		sizeof(struct vmbus_channel_offer_channel)},
1339 	{ CHANNELMSG_RESCIND_CHANNELOFFER,	0, vmbus_onoffer_rescind,
1340 		sizeof(struct vmbus_channel_rescind_offer) },
1341 	{ CHANNELMSG_REQUESTOFFERS,		0, NULL, 0},
1342 	{ CHANNELMSG_ALLOFFERS_DELIVERED,	1, vmbus_onoffers_delivered, 0},
1343 	{ CHANNELMSG_OPENCHANNEL,		0, NULL, 0},
1344 	{ CHANNELMSG_OPENCHANNEL_RESULT,	1, vmbus_onopen_result,
1345 		sizeof(struct vmbus_channel_open_result)},
1346 	{ CHANNELMSG_CLOSECHANNEL,		0, NULL, 0},
1347 	{ CHANNELMSG_GPADL_HEADER,		0, NULL, 0},
1348 	{ CHANNELMSG_GPADL_BODY,		0, NULL, 0},
1349 	{ CHANNELMSG_GPADL_CREATED,		1, vmbus_ongpadl_created,
1350 		sizeof(struct vmbus_channel_gpadl_created)},
1351 	{ CHANNELMSG_GPADL_TEARDOWN,		0, NULL, 0},
1352 	{ CHANNELMSG_GPADL_TORNDOWN,		1, vmbus_ongpadl_torndown,
1353 		sizeof(struct vmbus_channel_gpadl_torndown) },
1354 	{ CHANNELMSG_RELID_RELEASED,		0, NULL, 0},
1355 	{ CHANNELMSG_INITIATE_CONTACT,		0, NULL, 0},
1356 	{ CHANNELMSG_VERSION_RESPONSE,		1, vmbus_onversion_response,
1357 		sizeof(struct vmbus_channel_version_response)},
1358 	{ CHANNELMSG_UNLOAD,			0, NULL, 0},
1359 	{ CHANNELMSG_UNLOAD_RESPONSE,		1, vmbus_unload_response, 0},
1360 	{ CHANNELMSG_18,			0, NULL, 0},
1361 	{ CHANNELMSG_19,			0, NULL, 0},
1362 	{ CHANNELMSG_20,			0, NULL, 0},
1363 	{ CHANNELMSG_TL_CONNECT_REQUEST,	0, NULL, 0},
1364 	{ CHANNELMSG_MODIFYCHANNEL,		0, NULL, 0},
1365 	{ CHANNELMSG_TL_CONNECT_RESULT,		0, NULL, 0},
1366 };
1367 
1368 /*
1369  * vmbus_onmessage - Handler for channel protocol messages.
1370  *
1371  * This is invoked in the vmbus worker thread context.
1372  */
1373 void vmbus_onmessage(struct vmbus_channel_message_header *hdr)
1374 {
1375 	trace_vmbus_on_message(hdr);
1376 
1377 	/*
1378 	 * vmbus_on_msg_dpc() makes sure the hdr->msgtype here can not go
1379 	 * out of bound and the message_handler pointer can not be NULL.
1380 	 */
1381 	channel_message_table[hdr->msgtype].message_handler(hdr);
1382 }
1383 
1384 /*
1385  * vmbus_request_offers - Send a request to get all our pending offers.
1386  */
1387 int vmbus_request_offers(void)
1388 {
1389 	struct vmbus_channel_message_header *msg;
1390 	struct vmbus_channel_msginfo *msginfo;
1391 	int ret;
1392 
1393 	msginfo = kmalloc(sizeof(*msginfo) +
1394 			  sizeof(struct vmbus_channel_message_header),
1395 			  GFP_KERNEL);
1396 	if (!msginfo)
1397 		return -ENOMEM;
1398 
1399 	msg = (struct vmbus_channel_message_header *)msginfo->msg;
1400 
1401 	msg->msgtype = CHANNELMSG_REQUESTOFFERS;
1402 
1403 	ret = vmbus_post_msg(msg, sizeof(struct vmbus_channel_message_header),
1404 			     true);
1405 
1406 	trace_vmbus_request_offers(ret);
1407 
1408 	if (ret != 0) {
1409 		pr_err("Unable to request offers - %d\n", ret);
1410 
1411 		goto cleanup;
1412 	}
1413 
1414 cleanup:
1415 	kfree(msginfo);
1416 
1417 	return ret;
1418 }
1419 
1420 static void invoke_sc_cb(struct vmbus_channel *primary_channel)
1421 {
1422 	struct list_head *cur, *tmp;
1423 	struct vmbus_channel *cur_channel;
1424 
1425 	if (primary_channel->sc_creation_callback == NULL)
1426 		return;
1427 
1428 	list_for_each_safe(cur, tmp, &primary_channel->sc_list) {
1429 		cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
1430 
1431 		primary_channel->sc_creation_callback(cur_channel);
1432 	}
1433 }
1434 
1435 void vmbus_set_sc_create_callback(struct vmbus_channel *primary_channel,
1436 				void (*sc_cr_cb)(struct vmbus_channel *new_sc))
1437 {
1438 	primary_channel->sc_creation_callback = sc_cr_cb;
1439 }
1440 EXPORT_SYMBOL_GPL(vmbus_set_sc_create_callback);
1441 
1442 bool vmbus_are_subchannels_present(struct vmbus_channel *primary)
1443 {
1444 	bool ret;
1445 
1446 	ret = !list_empty(&primary->sc_list);
1447 
1448 	if (ret) {
1449 		/*
1450 		 * Invoke the callback on sub-channel creation.
1451 		 * This will present a uniform interface to the
1452 		 * clients.
1453 		 */
1454 		invoke_sc_cb(primary);
1455 	}
1456 
1457 	return ret;
1458 }
1459 EXPORT_SYMBOL_GPL(vmbus_are_subchannels_present);
1460 
1461 void vmbus_set_chn_rescind_callback(struct vmbus_channel *channel,
1462 		void (*chn_rescind_cb)(struct vmbus_channel *))
1463 {
1464 	channel->chn_rescind_callback = chn_rescind_cb;
1465 }
1466 EXPORT_SYMBOL_GPL(vmbus_set_chn_rescind_callback);
1467