]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/hv/channel_mgmt.c
Drivers: hv: vmbus: Use uuid_le type consistently
[mirror_ubuntu-zesty-kernel.git] / drivers / hv / channel_mgmt.c
CommitLineData
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 <haiyangz@microsoft.com>
19 * Hank Janssen <hjanssen@microsoft.com>
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
f38e7dd7
VK
35static void init_vp_index(struct vmbus_channel *channel,
36 const uuid_le *type_guid);
37
c88c4e4c 38/**
da0e9631 39 * vmbus_prep_negotiate_resp() - Create default response for Hyper-V Negotiate message
c88c4e4c
HJ
40 * @icmsghdrp: Pointer to msg header structure
41 * @icmsg_negotiate: Pointer to negotiate message structure
42 * @buf: Raw buffer channel data
43 *
44 * @icmsghdrp is of type &struct icmsg_hdr.
45 * @negop is of type &struct icmsg_negotiate.
c836d0ab
S
46 * Set up and fill in default negotiate response message.
47 *
6741335b
S
48 * The fw_version specifies the framework version that
49 * we can support and srv_version specifies the service
50 * version we can support.
c88c4e4c
HJ
51 *
52 * Mainly used by Hyper-V drivers.
53 */
6741335b 54bool vmbus_prep_negotiate_resp(struct icmsg_hdr *icmsghdrp,
c836d0ab 55 struct icmsg_negotiate *negop, u8 *buf,
6741335b 56 int fw_version, int srv_version)
c88c4e4c 57{
6741335b
S
58 int icframe_major, icframe_minor;
59 int icmsg_major, icmsg_minor;
60 int fw_major, fw_minor;
61 int srv_major, srv_minor;
c836d0ab 62 int i;
6741335b 63 bool found_match = false;
c836d0ab 64
a3605300 65 icmsghdrp->icmsgsize = 0x10;
6741335b
S
66 fw_major = (fw_version >> 16);
67 fw_minor = (fw_version & 0xFFFF);
68
69 srv_major = (srv_version >> 16);
70 srv_minor = (srv_version & 0xFFFF);
c88c4e4c 71
a3605300
S
72 negop = (struct icmsg_negotiate *)&buf[
73 sizeof(struct vmbuspipe_hdr) +
74 sizeof(struct icmsg_hdr)];
c88c4e4c 75
6741335b
S
76 icframe_major = negop->icframe_vercnt;
77 icframe_minor = 0;
78
79 icmsg_major = negop->icmsg_vercnt;
80 icmsg_minor = 0;
c836d0ab
S
81
82 /*
83 * Select the framework version number we will
84 * support.
85 */
86
87 for (i = 0; i < negop->icframe_vercnt; i++) {
6741335b
S
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;
92 found_match = true;
93 }
c836d0ab
S
94 }
95
6741335b
S
96 if (!found_match)
97 goto fw_error;
98
99 found_match = false;
100
c836d0ab
S
101 for (i = negop->icframe_vercnt;
102 (i < negop->icframe_vercnt + negop->icmsg_vercnt); i++) {
6741335b
S
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;
107 found_match = true;
108 }
c88c4e4c 109 }
a3605300 110
c836d0ab 111 /*
6741335b 112 * Respond with the framework and service
c836d0ab
S
113 * version numbers we can support.
114 */
6741335b
S
115
116fw_error:
117 if (!found_match) {
118 negop->icframe_vercnt = 0;
119 negop->icmsg_vercnt = 0;
120 } else {
121 negop->icframe_vercnt = 1;
122 negop->icmsg_vercnt = 1;
123 }
124
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;
129 return found_match;
c88c4e4c 130}
a3605300 131
da0e9631 132EXPORT_SYMBOL_GPL(vmbus_prep_negotiate_resp);
c88c4e4c 133
3e189519 134/*
e98cb276 135 * alloc_channel - Allocate and initialize a vmbus channel object
bd60c33e 136 */
50fe56d2 137static struct vmbus_channel *alloc_channel(void)
3e7ee490 138{
bc63b6f6 139 static atomic_t chan_num = ATOMIC_INIT(0);
aded7165 140 struct vmbus_channel *channel;
3e7ee490 141
aded7165 142 channel = kzalloc(sizeof(*channel), GFP_ATOMIC);
3e7ee490 143 if (!channel)
3e7ee490 144 return NULL;
3e7ee490 145
bc63b6f6 146 channel->id = atomic_inc_return(&chan_num);
54411c42 147 spin_lock_init(&channel->inbound_lock);
67fae053 148 spin_lock_init(&channel->lock);
e68d2971
S
149
150 INIT_LIST_HEAD(&channel->sc_list);
3a28fa35 151 INIT_LIST_HEAD(&channel->percpu_list);
3e7ee490 152
3e7ee490
HJ
153 return channel;
154}
155
3e189519 156/*
e98cb276 157 * free_channel - Release the resources used by the vmbus channel object
bd60c33e 158 */
9f3e28e3 159static void free_channel(struct vmbus_channel *channel)
3e7ee490 160{
aadc3780 161 kfree(channel);
3e7ee490
HJ
162}
163
3a28fa35
S
164static void percpu_channel_enq(void *arg)
165{
166 struct vmbus_channel *channel = arg;
167 int cpu = smp_processor_id();
168
169 list_add_tail(&channel->percpu_list, &hv_context.percpu_list[cpu]);
170}
8b5d6d3b 171
3a28fa35
S
172static void percpu_channel_deq(void *arg)
173{
174 struct vmbus_channel *channel = arg;
175
176 list_del(&channel->percpu_list);
177}
8b5d6d3b 178
ed6cfcc5
S
179
180void hv_process_channel_removal(struct vmbus_channel *channel, u32 relid)
4b2f9abe 181{
ed6cfcc5 182 struct vmbus_channel_relid_released msg;
c8705979 183 unsigned long flags;
e68d2971 184 struct vmbus_channel *primary_channel;
4b2f9abe 185
c8705979 186 memset(&msg, 0, sizeof(struct vmbus_channel_relid_released));
ed6cfcc5 187 msg.child_relid = relid;
c8705979
S
188 msg.header.msgtype = CHANNELMSG_RELID_RELEASED;
189 vmbus_post_msg(&msg, sizeof(struct vmbus_channel_relid_released));
190
ed6cfcc5
S
191 if (channel == NULL)
192 return;
193
2115b561
S
194 if (channel->target_cpu != get_cpu()) {
195 put_cpu();
3a28fa35
S
196 smp_call_function_single(channel->target_cpu,
197 percpu_channel_deq, channel, true);
2115b561 198 } else {
3a28fa35 199 percpu_channel_deq(channel);
2115b561
S
200 put_cpu();
201 }
3a28fa35 202
e68d2971
S
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);
ca1c4b74
DC
207
208 primary_channel = channel;
e68d2971
S
209 } else {
210 primary_channel = channel->primary_channel;
67fae053 211 spin_lock_irqsave(&primary_channel->lock, flags);
565ce642 212 list_del(&channel->sc_list);
357e836a 213 primary_channel->num_sc--;
67fae053 214 spin_unlock_irqrestore(&primary_channel->lock, flags);
e68d2971 215 }
ca1c4b74
DC
216
217 /*
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.
220 */
221 cpumask_clear_cpu(channel->target_cpu,
222 &primary_channel->alloced_cpus_in_node);
223
c8705979 224 free_channel(channel);
4b2f9abe 225}
8b5d6d3b 226
93e5bd06
S
227void vmbus_free_channels(void)
228{
813c5b79
DC
229 struct vmbus_channel *channel, *tmp;
230
231 list_for_each_entry_safe(channel, tmp, &vmbus_connection.chn_list,
232 listentry) {
233 /* if we don't set rescind to true, vmbus_close_internal()
234 * won't invoke hv_process_channel_removal().
235 */
236 channel->rescind = true;
93e5bd06 237
93e5bd06 238 vmbus_device_unregister(channel->device_obj);
93e5bd06
S
239 }
240}
241
3e189519 242/*
e98cb276 243 * vmbus_process_offer - Process the offer by creating a channel/device
c88c4e4c 244 * associated with this offer
bd60c33e 245 */
2dd37cb8 246static void vmbus_process_offer(struct vmbus_channel *newchannel)
3e7ee490 247{
aded7165 248 struct vmbus_channel *channel;
188963ec 249 bool fnew = true;
0f5e44ca 250 unsigned long flags;
3e7ee490 251
454f18a9 252 /* Make sure this is a new offer */
15b2f647 253 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
3e7ee490 254
da9fcb72 255 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
358d2ee2
S
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)) {
188963ec 260 fnew = false;
3e7ee490
HJ
261 break;
262 }
263 }
264
8dfd3326 265 if (fnew)
c50f7fb2 266 list_add_tail(&newchannel->listentry,
da9fcb72 267 &vmbus_connection.chn_list);
bd60c33e 268
15b2f647 269 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
3e7ee490 270
188963ec 271 if (!fnew) {
e68d2971
S
272 /*
273 * Check to see if this is a sub-channel.
274 */
275 if (newchannel->offermsg.offer.sub_channel_index != 0) {
276 /*
277 * Process the sub-channel.
278 */
279 newchannel->primary_channel = channel;
67fae053 280 spin_lock_irqsave(&channel->lock, flags);
e68d2971 281 list_add_tail(&newchannel->sc_list, &channel->sc_list);
a13e8bbe 282 channel->num_sc++;
357e836a 283 spin_unlock_irqrestore(&channel->lock, flags);
8dfd3326
VK
284 } else
285 goto err_free_chan;
286 }
e68d2971 287
f38e7dd7
VK
288 init_vp_index(newchannel, &newchannel->offermsg.offer.if_type);
289
8dfd3326
VK
290 if (newchannel->target_cpu != get_cpu()) {
291 put_cpu();
292 smp_call_function_single(newchannel->target_cpu,
293 percpu_channel_enq,
294 newchannel, true);
295 } else {
296 percpu_channel_enq(newchannel);
297 put_cpu();
3e7ee490
HJ
298 }
299
42dceebe
S
300 /*
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
304 */
305 newchannel->state = CHANNEL_OPEN_STATE;
306
8dfd3326
VK
307 if (!fnew) {
308 if (channel->sc_creation_callback != NULL)
309 channel->sc_creation_callback(newchannel);
310 return;
311 }
312
bd60c33e
GKH
313 /*
314 * Start the process of binding this offer to the driver
315 * We need to set the DeviceObject field before calling
646f1ea3 316 * vmbus_child_dev_add()
bd60c33e 317 */
f2c73011 318 newchannel->device_obj = vmbus_device_create(
767dff68
HZ
319 &newchannel->offermsg.offer.if_type,
320 &newchannel->offermsg.offer.if_instance,
188963ec 321 newchannel);
9c3a6f7e 322 if (!newchannel->device_obj)
5b1e5b53 323 goto err_deq_chan;
3e7ee490 324
454f18a9
BP
325 /*
326 * Add the new device to the bus. This will kick off device-driver
327 * binding which eventually invokes the device driver's AddDevice()
328 * method.
329 */
d43e2fe7
DC
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);
334 goto err_deq_chan;
335 }
9c3a6f7e 336 return;
2dd37cb8 337
5b1e5b53
S
338err_deq_chan:
339 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
340 list_del(&newchannel->listentry);
341 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
342
343 if (newchannel->target_cpu != get_cpu()) {
344 put_cpu();
345 smp_call_function_single(newchannel->target_cpu,
346 percpu_channel_deq, newchannel, true);
347 } else {
348 percpu_channel_deq(newchannel);
349 put_cpu();
350 }
351
9c3a6f7e
VK
352err_free_chan:
353 free_channel(newchannel);
3e7ee490
HJ
354}
355
a119845f
S
356enum {
357 IDE = 0,
358 SCSI,
359 NIC,
379e4f75 360 ND_NIC,
3053c762 361 PCIE,
a119845f
S
362 MAX_PERF_CHN,
363};
364
365/*
7fb96565 366 * This is an array of device_ids (device types) that are performance critical.
a119845f
S
367 * We attempt to distribute the interrupt load for these devices across
368 * all available CPUs.
369 */
7fb96565 370static const struct hv_vmbus_device_id hp_devs[] = {
a119845f 371 /* IDE */
7fb96565 372 { HV_IDE_GUID, },
a119845f 373 /* Storage - SCSI */
7fb96565 374 { HV_SCSI_GUID, },
a119845f 375 /* Network */
7fb96565 376 { HV_NIC_GUID, },
04653a00
S
377 /* NetworkDirect Guest RDMA */
378 { HV_ND_GUID, },
3053c762
JO
379 /* PCI Express Pass Through */
380 { HV_PCIE_GUID, },
a119845f
S
381};
382
383
384/*
385 * We use this state to statically distribute the channel interrupt load.
386 */
1f656ff3 387static int next_numa_node_id;
a119845f
S
388
389/*
390 * Starting with Win8, we can statically distribute the incoming
1f656ff3
S
391 * channel interrupt load by binding a channel to VCPU.
392 * We do this in a hierarchical fashion:
393 * First distribute the primary channels across available NUMA nodes
394 * and then distribute the subchannels amongst the CPUs in the NUMA
395 * node assigned to the primary channel.
396 *
397 * For pre-win8 hosts or non-performance critical channels we assign the
398 * first CPU in the first NUMA node.
a119845f 399 */
f9da455b 400static void init_vp_index(struct vmbus_channel *channel, const uuid_le *type_guid)
a119845f
S
401{
402 u32 cur_cpu;
403 int i;
404 bool perf_chn = false;
1f656ff3
S
405 struct vmbus_channel *primary = channel->primary_channel;
406 int next_node;
407 struct cpumask available_mask;
9f01ec53 408 struct cpumask *alloced_mask;
a119845f
S
409
410 for (i = IDE; i < MAX_PERF_CHN; i++) {
af3ff643 411 if (!memcmp(type_guid->b, &hp_devs[i].guid,
a119845f
S
412 sizeof(uuid_le))) {
413 perf_chn = true;
414 break;
415 }
416 }
417 if ((vmbus_proto_version == VERSION_WS2008) ||
418 (vmbus_proto_version == VERSION_WIN7) || (!perf_chn)) {
419 /*
420 * Prior to win8, all channel interrupts are
421 * delivered on cpu 0.
422 * Also if the channel is not a performance critical
423 * channel, bind it to cpu 0.
424 */
1f656ff3 425 channel->numa_node = 0;
d3ba720d 426 channel->target_cpu = 0;
9c6e64ad 427 channel->target_vp = hv_context.vp_index[0];
d3ba720d 428 return;
a119845f 429 }
ce59fec8
VK
430
431 /*
1f656ff3
S
432 * We distribute primary channels evenly across all the available
433 * NUMA nodes and within the assigned NUMA node we will assign the
434 * first available CPU to the primary channel.
435 * The sub-channels will be assigned to the CPUs available in the
436 * NUMA node evenly.
ce59fec8 437 */
1f656ff3
S
438 if (!primary) {
439 while (true) {
440 next_node = next_numa_node_id++;
441 if (next_node == nr_node_ids)
442 next_node = next_numa_node_id = 0;
443 if (cpumask_empty(cpumask_of_node(next_node)))
444 continue;
445 break;
446 }
447 channel->numa_node = next_node;
448 primary = channel;
449 }
9f01ec53 450 alloced_mask = &hv_context.hv_numa_map[primary->numa_node];
1f656ff3 451
9f01ec53 452 if (cpumask_weight(alloced_mask) ==
1f656ff3 453 cpumask_weight(cpumask_of_node(primary->numa_node))) {
ce59fec8 454 /*
1f656ff3
S
455 * We have cycled through all the CPUs in the node;
456 * reset the alloced map.
ce59fec8 457 */
9f01ec53 458 cpumask_clear(alloced_mask);
ce59fec8
VK
459 }
460
9f01ec53 461 cpumask_xor(&available_mask, alloced_mask,
1f656ff3
S
462 cpumask_of_node(primary->numa_node));
463
3b71107d
DC
464 cur_cpu = -1;
465 while (true) {
466 cur_cpu = cpumask_next(cur_cpu, &available_mask);
467 if (cur_cpu >= nr_cpu_ids) {
468 cur_cpu = -1;
469 cpumask_copy(&available_mask,
470 cpumask_of_node(primary->numa_node));
471 continue;
472 }
473
ca1c4b74
DC
474 /*
475 * NOTE: in the case of sub-channel, we clear the sub-channel
476 * related bit(s) in primary->alloced_cpus_in_node in
477 * hv_process_channel_removal(), so when we reload drivers
478 * like hv_netvsc in SMP guest, here we're able to re-allocate
479 * bit from primary->alloced_cpus_in_node.
480 */
3b71107d
DC
481 if (!cpumask_test_cpu(cur_cpu,
482 &primary->alloced_cpus_in_node)) {
483 cpumask_set_cpu(cur_cpu,
484 &primary->alloced_cpus_in_node);
485 cpumask_set_cpu(cur_cpu, alloced_mask);
486 break;
487 }
488 }
1f656ff3 489
d3ba720d
S
490 channel->target_cpu = cur_cpu;
491 channel->target_vp = hv_context.vp_index[cur_cpu];
a119845f
S
492}
493
2db84eff
S
494/*
495 * vmbus_unload_response - Handler for the unload response.
496 */
497static void vmbus_unload_response(struct vmbus_channel_message_header *hdr)
498{
499 /*
500 * This is a global event; just wakeup the waiting thread.
501 * Once we successfully unload, we can cleanup the monitor state.
502 */
503 complete(&vmbus_connection.unload_event);
504}
505
506void vmbus_initiate_unload(void)
507{
508 struct vmbus_channel_message_header hdr;
509
4a54243f
VK
510 /* Pre-Win2012R2 hosts don't support reconnect */
511 if (vmbus_proto_version < VERSION_WIN8_1)
512 return;
513
2db84eff
S
514 init_completion(&vmbus_connection.unload_event);
515 memset(&hdr, 0, sizeof(struct vmbus_channel_message_header));
516 hdr.msgtype = CHANNELMSG_UNLOAD;
517 vmbus_post_msg(&hdr, sizeof(struct vmbus_channel_message_header));
518
519 wait_for_completion(&vmbus_connection.unload_event);
520}
521
3e189519 522/*
e98cb276 523 * vmbus_onoffer - Handler for channel offers from vmbus in parent partition.
bd60c33e 524 *
bd60c33e 525 */
e98cb276 526static void vmbus_onoffer(struct vmbus_channel_message_header *hdr)
3e7ee490 527{
bd60c33e 528 struct vmbus_channel_offer_channel *offer;
188963ec 529 struct vmbus_channel *newchannel;
3e7ee490 530
bd60c33e 531 offer = (struct vmbus_channel_offer_channel *)hdr;
3e7ee490 532
454f18a9 533 /* Allocate the channel object and save this offer. */
e98cb276 534 newchannel = alloc_channel();
188963ec 535 if (!newchannel) {
0a46618d 536 pr_err("Unable to allocate channel object\n");
3e7ee490
HJ
537 return;
538 }
539
132368bd
S
540 /*
541 * By default we setup state to enable batched
542 * reading. A specific service can choose to
543 * disable this prior to opening the channel.
544 */
545 newchannel->batched_reading = true;
546
b3bf60c7
S
547 /*
548 * Setup state for signalling the host.
549 */
550 newchannel->sig_event = (struct hv_input_signal_event *)
551 (ALIGN((unsigned long)
552 &newchannel->sig_buf,
553 HV_HYPERCALL_PARAM_ALIGN));
554
555 newchannel->sig_event->connectionid.asu32 = 0;
556 newchannel->sig_event->connectionid.u.id = VMBUS_EVENT_CONNECTION_ID;
557 newchannel->sig_event->flag_number = 0;
558 newchannel->sig_event->rsvdz = 0;
559
560 if (vmbus_proto_version != VERSION_WS2008) {
561 newchannel->is_dedicated_interrupt =
562 (offer->is_dedicated_interrupt != 0);
563 newchannel->sig_event->connectionid.u.id =
564 offer->connection_id;
565 }
566
c50f7fb2 567 memcpy(&newchannel->offermsg, offer,
bd60c33e 568 sizeof(struct vmbus_channel_offer_channel));
c50f7fb2
HZ
569 newchannel->monitor_grp = (u8)offer->monitorid / 32;
570 newchannel->monitor_bit = (u8)offer->monitorid % 32;
3e7ee490 571
2dd37cb8 572 vmbus_process_offer(newchannel);
3e7ee490
HJ
573}
574
3e189519 575/*
e98cb276 576 * vmbus_onoffer_rescind - Rescind offer handler.
bd60c33e
GKH
577 *
578 * We queue a work item to process this offer synchronously
579 */
e98cb276 580static void vmbus_onoffer_rescind(struct vmbus_channel_message_header *hdr)
3e7ee490 581{
bd60c33e 582 struct vmbus_channel_rescind_offer *rescind;
aded7165 583 struct vmbus_channel *channel;
d43e2fe7
DC
584 unsigned long flags;
585 struct device *dev;
3e7ee490 586
bd60c33e 587 rescind = (struct vmbus_channel_rescind_offer *)hdr;
d43e2fe7 588 channel = relid2channel(rescind->child_relid);
98e08702 589
2dd37cb8
S
590 if (channel == NULL) {
591 hv_process_channel_removal(NULL, rescind->child_relid);
3e7ee490 592 return;
2dd37cb8 593 }
3e7ee490 594
d43e2fe7
DC
595 spin_lock_irqsave(&channel->lock, flags);
596 channel->rescind = true;
597 spin_unlock_irqrestore(&channel->lock, flags);
598
599 if (channel->device_obj) {
600 /*
601 * We will have to unregister this device from the
602 * driver core.
603 */
604 dev = get_device(&channel->device_obj->device);
605 if (dev) {
606 vmbus_device_unregister(channel->device_obj);
607 put_device(dev);
608 }
609 } else {
610 hv_process_channel_removal(channel,
611 channel->offermsg.child_relid);
2dd37cb8 612 }
3e7ee490
HJ
613}
614
3e189519 615/*
e98cb276
HZ
616 * vmbus_onoffers_delivered -
617 * This is invoked when all offers have been delivered.
bd60c33e
GKH
618 *
619 * Nothing to do here.
620 */
e98cb276 621static void vmbus_onoffers_delivered(
bd60c33e 622 struct vmbus_channel_message_header *hdr)
3e7ee490 623{
3e7ee490
HJ
624}
625
3e189519 626/*
e98cb276 627 * vmbus_onopen_result - Open result handler.
bd60c33e
GKH
628 *
629 * This is invoked when we received a response to our channel open request.
630 * Find the matching request, copy the response and signal the requesting
631 * thread.
632 */
e98cb276 633static void vmbus_onopen_result(struct vmbus_channel_message_header *hdr)
3e7ee490 634{
bd60c33e 635 struct vmbus_channel_open_result *result;
188963ec
HZ
636 struct vmbus_channel_msginfo *msginfo;
637 struct vmbus_channel_message_header *requestheader;
638 struct vmbus_channel_open_channel *openmsg;
dd0813b6 639 unsigned long flags;
3e7ee490 640
bd60c33e 641 result = (struct vmbus_channel_open_result *)hdr;
3e7ee490 642
bd60c33e
GKH
643 /*
644 * Find the open msg, copy the result and signal/unblock the wait event
645 */
15b2f647 646 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
3e7ee490 647
ebb61e5f
HJ
648 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
649 msglistentry) {
188963ec 650 requestheader =
c50f7fb2 651 (struct vmbus_channel_message_header *)msginfo->msg;
188963ec 652
c50f7fb2 653 if (requestheader->msgtype == CHANNELMSG_OPENCHANNEL) {
188963ec 654 openmsg =
c50f7fb2
HZ
655 (struct vmbus_channel_open_channel *)msginfo->msg;
656 if (openmsg->child_relid == result->child_relid &&
657 openmsg->openid == result->openid) {
658 memcpy(&msginfo->response.open_result,
bd60c33e 659 result,
9568a193
S
660 sizeof(
661 struct vmbus_channel_open_result));
662 complete(&msginfo->waitevent);
3e7ee490
HJ
663 break;
664 }
665 }
666 }
15b2f647 667 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
3e7ee490
HJ
668}
669
3e189519 670/*
e98cb276 671 * vmbus_ongpadl_created - GPADL created handler.
bd60c33e
GKH
672 *
673 * This is invoked when we received a response to our gpadl create request.
674 * Find the matching request, copy the response and signal the requesting
675 * thread.
676 */
e98cb276 677static void vmbus_ongpadl_created(struct vmbus_channel_message_header *hdr)
3e7ee490 678{
188963ec 679 struct vmbus_channel_gpadl_created *gpadlcreated;
188963ec
HZ
680 struct vmbus_channel_msginfo *msginfo;
681 struct vmbus_channel_message_header *requestheader;
682 struct vmbus_channel_gpadl_header *gpadlheader;
dd0813b6 683 unsigned long flags;
3e7ee490 684
188963ec 685 gpadlcreated = (struct vmbus_channel_gpadl_created *)hdr;
3e7ee490 686
bd60c33e
GKH
687 /*
688 * Find the establish msg, copy the result and signal/unblock the wait
689 * event
690 */
15b2f647 691 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
3e7ee490 692
ebb61e5f
HJ
693 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
694 msglistentry) {
188963ec 695 requestheader =
c50f7fb2 696 (struct vmbus_channel_message_header *)msginfo->msg;
188963ec 697
c50f7fb2 698 if (requestheader->msgtype == CHANNELMSG_GPADL_HEADER) {
188963ec
HZ
699 gpadlheader =
700 (struct vmbus_channel_gpadl_header *)requestheader;
701
c50f7fb2
HZ
702 if ((gpadlcreated->child_relid ==
703 gpadlheader->child_relid) &&
704 (gpadlcreated->gpadl == gpadlheader->gpadl)) {
705 memcpy(&msginfo->response.gpadl_created,
188963ec 706 gpadlcreated,
9568a193
S
707 sizeof(
708 struct vmbus_channel_gpadl_created));
709 complete(&msginfo->waitevent);
3e7ee490
HJ
710 break;
711 }
712 }
713 }
15b2f647 714 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
3e7ee490
HJ
715}
716
3e189519 717/*
e98cb276 718 * vmbus_ongpadl_torndown - GPADL torndown handler.
bd60c33e
GKH
719 *
720 * This is invoked when we received a response to our gpadl teardown request.
721 * Find the matching request, copy the response and signal the requesting
722 * thread.
723 */
e98cb276 724static void vmbus_ongpadl_torndown(
bd60c33e 725 struct vmbus_channel_message_header *hdr)
3e7ee490 726{
188963ec 727 struct vmbus_channel_gpadl_torndown *gpadl_torndown;
188963ec
HZ
728 struct vmbus_channel_msginfo *msginfo;
729 struct vmbus_channel_message_header *requestheader;
730 struct vmbus_channel_gpadl_teardown *gpadl_teardown;
dd0813b6 731 unsigned long flags;
3e7ee490 732
188963ec 733 gpadl_torndown = (struct vmbus_channel_gpadl_torndown *)hdr;
bd60c33e
GKH
734
735 /*
736 * Find the open msg, copy the result and signal/unblock the wait event
737 */
15b2f647 738 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
3e7ee490 739
ebb61e5f
HJ
740 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
741 msglistentry) {
188963ec 742 requestheader =
c50f7fb2 743 (struct vmbus_channel_message_header *)msginfo->msg;
3e7ee490 744
c50f7fb2 745 if (requestheader->msgtype == CHANNELMSG_GPADL_TEARDOWN) {
188963ec
HZ
746 gpadl_teardown =
747 (struct vmbus_channel_gpadl_teardown *)requestheader;
3e7ee490 748
c50f7fb2
HZ
749 if (gpadl_torndown->gpadl == gpadl_teardown->gpadl) {
750 memcpy(&msginfo->response.gpadl_torndown,
188963ec 751 gpadl_torndown,
9568a193
S
752 sizeof(
753 struct vmbus_channel_gpadl_torndown));
754 complete(&msginfo->waitevent);
3e7ee490
HJ
755 break;
756 }
757 }
758 }
15b2f647 759 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
3e7ee490
HJ
760}
761
3e189519 762/*
e98cb276 763 * vmbus_onversion_response - Version response handler
bd60c33e
GKH
764 *
765 * This is invoked when we received a response to our initiate contact request.
766 * Find the matching request, copy the response and signal the requesting
767 * thread.
768 */
e98cb276 769static void vmbus_onversion_response(
bd60c33e 770 struct vmbus_channel_message_header *hdr)
3e7ee490 771{
188963ec
HZ
772 struct vmbus_channel_msginfo *msginfo;
773 struct vmbus_channel_message_header *requestheader;
188963ec 774 struct vmbus_channel_version_response *version_response;
dd0813b6 775 unsigned long flags;
3e7ee490 776
188963ec 777 version_response = (struct vmbus_channel_version_response *)hdr;
15b2f647 778 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
3e7ee490 779
ebb61e5f
HJ
780 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
781 msglistentry) {
188963ec 782 requestheader =
c50f7fb2 783 (struct vmbus_channel_message_header *)msginfo->msg;
3e7ee490 784
c50f7fb2
HZ
785 if (requestheader->msgtype ==
786 CHANNELMSG_INITIATE_CONTACT) {
c50f7fb2 787 memcpy(&msginfo->response.version_response,
188963ec 788 version_response,
bd60c33e 789 sizeof(struct vmbus_channel_version_response));
9568a193 790 complete(&msginfo->waitevent);
3e7ee490
HJ
791 }
792 }
15b2f647 793 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
3e7ee490
HJ
794}
795
c8212f04 796/* Channel message dispatch table */
652594c7 797struct vmbus_channel_message_table_entry
b7c6b02f 798 channel_message_table[CHANNELMSG_COUNT] = {
652594c7
DC
799 {CHANNELMSG_INVALID, 0, NULL},
800 {CHANNELMSG_OFFERCHANNEL, 0, vmbus_onoffer},
801 {CHANNELMSG_RESCIND_CHANNELOFFER, 0, vmbus_onoffer_rescind},
802 {CHANNELMSG_REQUESTOFFERS, 0, NULL},
803 {CHANNELMSG_ALLOFFERS_DELIVERED, 1, vmbus_onoffers_delivered},
804 {CHANNELMSG_OPENCHANNEL, 0, NULL},
805 {CHANNELMSG_OPENCHANNEL_RESULT, 1, vmbus_onopen_result},
806 {CHANNELMSG_CLOSECHANNEL, 0, NULL},
807 {CHANNELMSG_GPADL_HEADER, 0, NULL},
808 {CHANNELMSG_GPADL_BODY, 0, NULL},
809 {CHANNELMSG_GPADL_CREATED, 1, vmbus_ongpadl_created},
810 {CHANNELMSG_GPADL_TEARDOWN, 0, NULL},
811 {CHANNELMSG_GPADL_TORNDOWN, 1, vmbus_ongpadl_torndown},
812 {CHANNELMSG_RELID_RELEASED, 0, NULL},
813 {CHANNELMSG_INITIATE_CONTACT, 0, NULL},
814 {CHANNELMSG_VERSION_RESPONSE, 1, vmbus_onversion_response},
815 {CHANNELMSG_UNLOAD, 0, NULL},
2db84eff 816 {CHANNELMSG_UNLOAD_RESPONSE, 1, vmbus_unload_response},
c8212f04
GKH
817};
818
3e189519 819/*
e98cb276 820 * vmbus_onmessage - Handler for channel protocol messages.
bd60c33e
GKH
821 *
822 * This is invoked in the vmbus worker thread context.
823 */
e98cb276 824void vmbus_onmessage(void *context)
3e7ee490 825{
188963ec 826 struct hv_message *msg = context;
82250213 827 struct vmbus_channel_message_header *hdr;
3e7ee490
HJ
828 int size;
829
f6feebe0
HZ
830 hdr = (struct vmbus_channel_message_header *)msg->u.payload;
831 size = msg->header.payload_size;
3e7ee490 832
c50f7fb2 833 if (hdr->msgtype >= CHANNELMSG_COUNT) {
0a46618d 834 pr_err("Received invalid channel message type %d size %d\n",
c50f7fb2 835 hdr->msgtype, size);
04f50c4d 836 print_hex_dump_bytes("", DUMP_PREFIX_NONE,
f6feebe0 837 (unsigned char *)msg->u.payload, size);
3e7ee490
HJ
838 return;
839 }
840
b7c6b02f
S
841 if (channel_message_table[hdr->msgtype].message_handler)
842 channel_message_table[hdr->msgtype].message_handler(hdr);
3e7ee490 843 else
0a46618d 844 pr_err("Unhandled channel message type %d\n", hdr->msgtype);
3e7ee490
HJ
845}
846
3e189519 847/*
e98cb276 848 * vmbus_request_offers - Send a request to get all our pending offers.
bd60c33e 849 */
e98cb276 850int vmbus_request_offers(void)
3e7ee490 851{
82250213 852 struct vmbus_channel_message_header *msg;
188963ec 853 struct vmbus_channel_msginfo *msginfo;
51e5181d 854 int ret;
3e7ee490 855
188963ec 856 msginfo = kmalloc(sizeof(*msginfo) +
bd60c33e
GKH
857 sizeof(struct vmbus_channel_message_header),
858 GFP_KERNEL);
188963ec 859 if (!msginfo)
75910f23 860 return -ENOMEM;
3e7ee490 861
c50f7fb2 862 msg = (struct vmbus_channel_message_header *)msginfo->msg;
3e7ee490 863
c50f7fb2 864 msg->msgtype = CHANNELMSG_REQUESTOFFERS;
3e7ee490 865
3e7ee490 866
c6977677 867 ret = vmbus_post_msg(msg,
bd60c33e
GKH
868 sizeof(struct vmbus_channel_message_header));
869 if (ret != 0) {
0a46618d 870 pr_err("Unable to request offers - %d\n", ret);
3e7ee490 871
0c3b7b2f
S
872 goto cleanup;
873 }
3e7ee490 874
0c3b7b2f 875cleanup:
dd9b15dc 876 kfree(msginfo);
3e7ee490 877
3e7ee490
HJ
878 return ret;
879}
880
e68d2971
S
881/*
882 * Retrieve the (sub) channel on which to send an outgoing request.
a13e8bbe
S
883 * When a primary channel has multiple sub-channels, we try to
884 * distribute the load equally amongst all available channels.
e68d2971
S
885 */
886struct vmbus_channel *vmbus_get_outgoing_channel(struct vmbus_channel *primary)
887{
888 struct list_head *cur, *tmp;
87712bf8 889 int cur_cpu;
e68d2971
S
890 struct vmbus_channel *cur_channel;
891 struct vmbus_channel *outgoing_channel = primary;
a13e8bbe
S
892 int next_channel;
893 int i = 1;
e68d2971
S
894
895 if (list_empty(&primary->sc_list))
896 return outgoing_channel;
897
a13e8bbe
S
898 next_channel = primary->next_oc++;
899
900 if (next_channel > (primary->num_sc)) {
901 primary->next_oc = 0;
902 return outgoing_channel;
903 }
904
87712bf8
S
905 cur_cpu = hv_context.vp_index[get_cpu()];
906 put_cpu();
e68d2971
S
907 list_for_each_safe(cur, tmp, &primary->sc_list) {
908 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
909 if (cur_channel->state != CHANNEL_OPENED_STATE)
910 continue;
911
912 if (cur_channel->target_vp == cur_cpu)
913 return cur_channel;
914
a13e8bbe
S
915 if (i == next_channel)
916 return cur_channel;
e68d2971 917
a13e8bbe 918 i++;
e68d2971
S
919 }
920
921 return outgoing_channel;
922}
923EXPORT_SYMBOL_GPL(vmbus_get_outgoing_channel);
924
925static void invoke_sc_cb(struct vmbus_channel *primary_channel)
926{
927 struct list_head *cur, *tmp;
928 struct vmbus_channel *cur_channel;
929
930 if (primary_channel->sc_creation_callback == NULL)
931 return;
932
933 list_for_each_safe(cur, tmp, &primary_channel->sc_list) {
934 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
935
936 primary_channel->sc_creation_callback(cur_channel);
937 }
938}
939
940void vmbus_set_sc_create_callback(struct vmbus_channel *primary_channel,
941 void (*sc_cr_cb)(struct vmbus_channel *new_sc))
942{
943 primary_channel->sc_creation_callback = sc_cr_cb;
944}
945EXPORT_SYMBOL_GPL(vmbus_set_sc_create_callback);
946
947bool vmbus_are_subchannels_present(struct vmbus_channel *primary)
948{
949 bool ret;
950
951 ret = !list_empty(&primary->sc_list);
952
953 if (ret) {
954 /*
955 * Invoke the callback on sub-channel creation.
956 * This will present a uniform interface to the
957 * clients.
958 */
959 invoke_sc_cb(primary);
960 }
961
962 return ret;
963}
964EXPORT_SYMBOL_GPL(vmbus_are_subchannels_present);