blob: 96a85cd39580a904acfdf6f57d89403c4fd734b6 [file] [log] [blame]
Hank Janssen3e7ee492009-07-13 16:02:34 -07001/*
Hank Janssen3e7ee492009-07-13 16:02:34 -07002 * 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>
Hank Janssen3e7ee492009-07-13 16:02:34 -070020 */
Hank Janssen0a466182011-03-29 13:58:47 -070021#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
Greg Kroah-Hartmana0086dc2009-08-17 17:22:08 -070023#include <linux/kernel.h>
Dexuan Cui638fea32016-06-09 18:47:24 -070024#include <linux/interrupt.h>
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -080025#include <linux/sched.h>
26#include <linux/wait.h>
Greg Kroah-Hartmana0086dc2009-08-17 17:22:08 -070027#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Bill Pemberton53af5452009-09-11 21:46:44 -040029#include <linux/list.h>
Hank Janssenc88c4e42010-05-04 15:55:05 -070030#include <linux/module.h>
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +000031#include <linux/completion.h>
Vitaly Kuznetsov41571912016-01-27 22:29:35 -080032#include <linux/delay.h>
Greg Kroah-Hartman46a97192011-10-04 12:29:52 -070033#include <linux/hyperv.h>
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070034
K. Y. Srinivasan0f2a6612011-05-12 19:34:28 -070035#include "hyperv_vmbus.h"
Hank Janssen3e7ee492009-07-13 16:02:34 -070036
K. Y. Srinivasan7047f172015-12-25 20:00:30 -080037static void init_vp_index(struct vmbus_channel *channel, u16 dev_type);
38
39static const struct vmbus_device vmbus_devs[] = {
40 /* IDE */
41 { .dev_type = HV_IDE,
42 HV_IDE_GUID,
43 .perf_device = true,
44 },
45
46 /* SCSI */
47 { .dev_type = HV_SCSI,
48 HV_SCSI_GUID,
49 .perf_device = true,
50 },
51
52 /* Fibre Channel */
53 { .dev_type = HV_FC,
54 HV_SYNTHFC_GUID,
55 .perf_device = true,
56 },
57
58 /* Synthetic NIC */
59 { .dev_type = HV_NIC,
60 HV_NIC_GUID,
61 .perf_device = true,
62 },
63
64 /* Network Direct */
65 { .dev_type = HV_ND,
66 HV_ND_GUID,
67 .perf_device = true,
68 },
69
70 /* PCIE */
71 { .dev_type = HV_PCIE,
72 HV_PCIE_GUID,
73 .perf_device = true,
74 },
75
76 /* Synthetic Frame Buffer */
77 { .dev_type = HV_FB,
78 HV_SYNTHVID_GUID,
79 .perf_device = false,
80 },
81
82 /* Synthetic Keyboard */
83 { .dev_type = HV_KBD,
84 HV_KBD_GUID,
85 .perf_device = false,
86 },
87
88 /* Synthetic MOUSE */
89 { .dev_type = HV_MOUSE,
90 HV_MOUSE_GUID,
91 .perf_device = false,
92 },
93
94 /* KVP */
95 { .dev_type = HV_KVP,
96 HV_KVP_GUID,
97 .perf_device = false,
98 },
99
100 /* Time Synch */
101 { .dev_type = HV_TS,
102 HV_TS_GUID,
103 .perf_device = false,
104 },
105
106 /* Heartbeat */
107 { .dev_type = HV_HB,
108 HV_HEART_BEAT_GUID,
109 .perf_device = false,
110 },
111
112 /* Shutdown */
113 { .dev_type = HV_SHUTDOWN,
114 HV_SHUTDOWN_GUID,
115 .perf_device = false,
116 },
117
118 /* File copy */
119 { .dev_type = HV_FCOPY,
120 HV_FCOPY_GUID,
121 .perf_device = false,
122 },
123
124 /* Backup */
125 { .dev_type = HV_BACKUP,
126 HV_VSS_GUID,
127 .perf_device = false,
128 },
129
130 /* Dynamic Memory */
131 { .dev_type = HV_DM,
132 HV_DM_GUID,
133 .perf_device = false,
134 },
135
136 /* Unknown GUID */
137 { .dev_type = HV_UNKOWN,
138 .perf_device = false,
139 },
140};
141
Dexuan Cui0f988292016-09-07 05:39:34 -0700142static const struct {
143 uuid_le guid;
144} vmbus_unsupported_devs[] = {
145 { HV_AVMA1_GUID },
146 { HV_AVMA2_GUID },
147 { HV_RDV_GUID },
148};
149
150static bool is_unsupported_vmbus_devs(const uuid_le *guid)
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800151{
Dexuan Cui0f988292016-09-07 05:39:34 -0700152 int i;
153
154 for (i = 0; i < ARRAY_SIZE(vmbus_unsupported_devs); i++)
155 if (!uuid_le_cmp(*guid, vmbus_unsupported_devs[i].guid))
156 return true;
157 return false;
158}
159
160static u16 hv_get_dev_type(const struct vmbus_channel *channel)
161{
162 const uuid_le *guid = &channel->offermsg.offer.if_type;
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800163 u16 i;
164
Dexuan Cui0f988292016-09-07 05:39:34 -0700165 if (is_hvsock_channel(channel) || is_unsupported_vmbus_devs(guid))
166 return HV_UNKOWN;
167
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800168 for (i = HV_IDE; i < HV_UNKOWN; i++) {
169 if (!uuid_le_cmp(*guid, vmbus_devs[i].guid))
170 return i;
171 }
172 pr_info("Unknown GUID: %pUl\n", guid);
173 return i;
174}
Vitaly Kuznetsovf38e7dd2015-05-06 17:47:45 -0700175
Hank Janssenc88c4e42010-05-04 15:55:05 -0700176/**
Greg Kroah-Hartmanda0e9632011-10-11 08:42:28 -0600177 * vmbus_prep_negotiate_resp() - Create default response for Hyper-V Negotiate message
Hank Janssenc88c4e42010-05-04 15:55:05 -0700178 * @icmsghdrp: Pointer to msg header structure
179 * @icmsg_negotiate: Pointer to negotiate message structure
180 * @buf: Raw buffer channel data
181 *
182 * @icmsghdrp is of type &struct icmsg_hdr.
183 * @negop is of type &struct icmsg_negotiate.
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700184 * Set up and fill in default negotiate response message.
185 *
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700186 * The fw_version specifies the framework version that
187 * we can support and srv_version specifies the service
188 * version we can support.
Hank Janssenc88c4e42010-05-04 15:55:05 -0700189 *
190 * Mainly used by Hyper-V drivers.
191 */
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700192bool vmbus_prep_negotiate_resp(struct icmsg_hdr *icmsghdrp,
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700193 struct icmsg_negotiate *negop, u8 *buf,
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700194 int fw_version, int srv_version)
Hank Janssenc88c4e42010-05-04 15:55:05 -0700195{
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700196 int icframe_major, icframe_minor;
197 int icmsg_major, icmsg_minor;
198 int fw_major, fw_minor;
199 int srv_major, srv_minor;
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700200 int i;
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700201 bool found_match = false;
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700202
K. Y. Srinivasana3605302012-05-12 13:44:57 -0700203 icmsghdrp->icmsgsize = 0x10;
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700204 fw_major = (fw_version >> 16);
205 fw_minor = (fw_version & 0xFFFF);
206
207 srv_major = (srv_version >> 16);
208 srv_minor = (srv_version & 0xFFFF);
Hank Janssenc88c4e42010-05-04 15:55:05 -0700209
K. Y. Srinivasana3605302012-05-12 13:44:57 -0700210 negop = (struct icmsg_negotiate *)&buf[
211 sizeof(struct vmbuspipe_hdr) +
212 sizeof(struct icmsg_hdr)];
Hank Janssenc88c4e42010-05-04 15:55:05 -0700213
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700214 icframe_major = negop->icframe_vercnt;
215 icframe_minor = 0;
216
217 icmsg_major = negop->icmsg_vercnt;
218 icmsg_minor = 0;
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700219
220 /*
221 * Select the framework version number we will
222 * support.
223 */
224
225 for (i = 0; i < negop->icframe_vercnt; i++) {
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700226 if ((negop->icversion_data[i].major == fw_major) &&
227 (negop->icversion_data[i].minor == fw_minor)) {
228 icframe_major = negop->icversion_data[i].major;
229 icframe_minor = negop->icversion_data[i].minor;
230 found_match = true;
231 }
Hank Janssenc88c4e42010-05-04 15:55:05 -0700232 }
K. Y. Srinivasana3605302012-05-12 13:44:57 -0700233
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700234 if (!found_match)
235 goto fw_error;
236
237 found_match = false;
238
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700239 for (i = negop->icframe_vercnt;
240 (i < negop->icframe_vercnt + negop->icmsg_vercnt); i++) {
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700241 if ((negop->icversion_data[i].major == srv_major) &&
242 (negop->icversion_data[i].minor == srv_minor)) {
243 icmsg_major = negop->icversion_data[i].major;
244 icmsg_minor = negop->icversion_data[i].minor;
245 found_match = true;
246 }
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700247 }
248
249 /*
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700250 * Respond with the framework and service
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700251 * version numbers we can support.
252 */
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700253
254fw_error:
255 if (!found_match) {
256 negop->icframe_vercnt = 0;
257 negop->icmsg_vercnt = 0;
258 } else {
259 negop->icframe_vercnt = 1;
260 negop->icmsg_vercnt = 1;
261 }
262
263 negop->icversion_data[0].major = icframe_major;
264 negop->icversion_data[0].minor = icframe_minor;
265 negop->icversion_data[1].major = icmsg_major;
266 negop->icversion_data[1].minor = icmsg_minor;
267 return found_match;
Hank Janssenc88c4e42010-05-04 15:55:05 -0700268}
K. Y. Srinivasana3605302012-05-12 13:44:57 -0700269
Greg Kroah-Hartmanda0e9632011-10-11 08:42:28 -0600270EXPORT_SYMBOL_GPL(vmbus_prep_negotiate_resp);
Hank Janssenc88c4e42010-05-04 15:55:05 -0700271
Hank Janssen3e189512010-03-04 22:11:00 +0000272/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700273 * alloc_channel - Allocate and initialize a vmbus channel object
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700274 */
Greg Kroah-Hartman50fe56d2010-10-20 15:51:57 -0700275static struct vmbus_channel *alloc_channel(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700276{
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700277 struct vmbus_channel *channel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700278
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700279 channel = kzalloc(sizeof(*channel), GFP_ATOMIC);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700280 if (!channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700281 return NULL;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700282
K. Y. Srinivasanfe760e42016-01-27 22:29:45 -0800283 channel->acquire_ring_lock = true;
Greg Kroah-Hartman54411c42009-07-15 14:48:32 -0700284 spin_lock_init(&channel->inbound_lock);
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100285 spin_lock_init(&channel->lock);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700286
287 INIT_LIST_HEAD(&channel->sc_list);
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700288 INIT_LIST_HEAD(&channel->percpu_list);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700289
Hank Janssen3e7ee492009-07-13 16:02:34 -0700290 return channel;
291}
292
Hank Janssen3e189512010-03-04 22:11:00 +0000293/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700294 * free_channel - Release the resources used by the vmbus channel object
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700295 */
Greg Kroah-Hartman9f3e28e2011-10-11 09:40:01 -0600296static void free_channel(struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700297{
Dexuan Cuiaadc3782015-03-27 09:10:10 -0700298 kfree(channel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700299}
300
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700301static void percpu_channel_enq(void *arg)
302{
303 struct vmbus_channel *channel = arg;
304 int cpu = smp_processor_id();
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000305
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700306 list_add_tail(&channel->percpu_list, &hv_context.percpu_list[cpu]);
307}
308
309static void percpu_channel_deq(void *arg)
310{
311 struct vmbus_channel *channel = arg;
312
313 list_del(&channel->percpu_list);
314}
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000315
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800316
Dexuan Cuif52078c2015-12-14 16:01:50 -0800317static void vmbus_release_relid(u32 relid)
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200318{
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800319 struct vmbus_channel_relid_released msg;
Vitaly Kuznetsov04a258c2014-11-04 13:40:11 +0100320
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700321 memset(&msg, 0, sizeof(struct vmbus_channel_relid_released));
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800322 msg.child_relid = relid;
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700323 msg.header.msgtype = CHANNELMSG_RELID_RELEASED;
324 vmbus_post_msg(&msg, sizeof(struct vmbus_channel_relid_released));
Dexuan Cuif52078c2015-12-14 16:01:50 -0800325}
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700326
Dexuan Cui638fea32016-06-09 18:47:24 -0700327void hv_event_tasklet_disable(struct vmbus_channel *channel)
328{
329 struct tasklet_struct *tasklet;
330 tasklet = hv_context.event_dpc[channel->target_cpu];
331 tasklet_disable(tasklet);
332}
333
334void hv_event_tasklet_enable(struct vmbus_channel *channel)
335{
336 struct tasklet_struct *tasklet;
337 tasklet = hv_context.event_dpc[channel->target_cpu];
338 tasklet_enable(tasklet);
339
340 /* In case there is any pending event */
341 tasklet_schedule(tasklet);
342}
343
Dexuan Cuif52078c2015-12-14 16:01:50 -0800344void hv_process_channel_removal(struct vmbus_channel *channel, u32 relid)
345{
346 unsigned long flags;
347 struct vmbus_channel *primary_channel;
348
Dexuan Cui34c68012015-12-14 16:01:49 -0800349 BUG_ON(!channel->rescind);
Dexuan Cui85d9aa72016-01-27 22:29:43 -0800350 BUG_ON(!mutex_is_locked(&vmbus_connection.channel_mutex));
Dexuan Cui34c68012015-12-14 16:01:49 -0800351
Dexuan Cui638fea32016-06-09 18:47:24 -0700352 hv_event_tasklet_disable(channel);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700353 if (channel->target_cpu != get_cpu()) {
354 put_cpu();
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700355 smp_call_function_single(channel->target_cpu,
356 percpu_channel_deq, channel, true);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700357 } else {
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700358 percpu_channel_deq(channel);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700359 put_cpu();
360 }
Dexuan Cui638fea32016-06-09 18:47:24 -0700361 hv_event_tasklet_enable(channel);
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700362
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700363 if (channel->primary_channel == NULL) {
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700364 list_del(&channel->listentry);
Dexuan Cuica1c4b72015-08-13 17:07:03 -0700365
366 primary_channel = channel;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700367 } else {
368 primary_channel = channel->primary_channel;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100369 spin_lock_irqsave(&primary_channel->lock, flags);
K. Y. Srinivasan565ce642013-10-16 19:27:19 -0700370 list_del(&channel->sc_list);
Vitaly Kuznetsov357e8362015-05-06 17:47:44 -0700371 primary_channel->num_sc--;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100372 spin_unlock_irqrestore(&primary_channel->lock, flags);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700373 }
Dexuan Cuica1c4b72015-08-13 17:07:03 -0700374
375 /*
376 * We need to free the bit for init_vp_index() to work in the case
377 * of sub-channel, when we reload drivers like hv_netvsc.
378 */
K. Y. Srinivasan509879b2016-09-02 05:58:23 -0700379 if (channel->affinity_policy == HV_LOCALIZED)
380 cpumask_clear_cpu(channel->target_cpu,
381 &primary_channel->alloced_cpus_in_node);
Dexuan Cuica1c4b72015-08-13 17:07:03 -0700382
Dexuan Cui638fea32016-06-09 18:47:24 -0700383 vmbus_release_relid(relid);
384
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700385 free_channel(channel);
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200386}
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000387
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800388void vmbus_free_channels(void)
389{
Dexuan Cui813c5b72015-04-22 21:31:30 -0700390 struct vmbus_channel *channel, *tmp;
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800391
Dexuan Cui813c5b72015-04-22 21:31:30 -0700392 list_for_each_entry_safe(channel, tmp, &vmbus_connection.chn_list,
393 listentry) {
Dexuan Cui34c68012015-12-14 16:01:49 -0800394 /* hv_process_channel_removal() needs this */
Dexuan Cui813c5b72015-04-22 21:31:30 -0700395 channel->rescind = true;
396
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800397 vmbus_device_unregister(channel->device_obj);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800398 }
399}
400
Hank Janssen3e189512010-03-04 22:11:00 +0000401/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700402 * vmbus_process_offer - Process the offer by creating a channel/device
Hank Janssenc88c4e42010-05-04 15:55:05 -0700403 * associated with this offer
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700404 */
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800405static void vmbus_process_offer(struct vmbus_channel *newchannel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700406{
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700407 struct vmbus_channel *channel;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700408 bool fnew = true;
Greg Kroah-Hartman0f5e44c2009-07-15 14:57:16 -0700409 unsigned long flags;
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800410 u16 dev_type;
Dexuan Cui85d9aa72016-01-27 22:29:43 -0800411 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700412
Bill Pemberton454f18a2009-07-27 16:47:24 -0400413 /* Make sure this is a new offer */
Dexuan Cuid6f591e2015-12-14 16:01:51 -0800414 mutex_lock(&vmbus_connection.channel_mutex);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700415
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800416 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700417 if (!uuid_le_cmp(channel->offermsg.offer.if_type,
418 newchannel->offermsg.offer.if_type) &&
419 !uuid_le_cmp(channel->offermsg.offer.if_instance,
420 newchannel->offermsg.offer.if_instance)) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700421 fnew = false;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700422 break;
423 }
424 }
425
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700426 if (fnew)
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800427 list_add_tail(&newchannel->listentry,
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800428 &vmbus_connection.chn_list);
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700429
Dexuan Cuid6f591e2015-12-14 16:01:51 -0800430 mutex_unlock(&vmbus_connection.channel_mutex);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700431
Haiyang Zhang188963e2010-10-15 10:14:06 -0700432 if (!fnew) {
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700433 /*
434 * Check to see if this is a sub-channel.
435 */
436 if (newchannel->offermsg.offer.sub_channel_index != 0) {
437 /*
438 * Process the sub-channel.
439 */
440 newchannel->primary_channel = channel;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100441 spin_lock_irqsave(&channel->lock, flags);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700442 list_add_tail(&newchannel->sc_list, &channel->sc_list);
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800443 channel->num_sc++;
Vitaly Kuznetsov357e8362015-05-06 17:47:44 -0700444 spin_unlock_irqrestore(&channel->lock, flags);
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700445 } else
446 goto err_free_chan;
447 }
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700448
Dexuan Cui0f988292016-09-07 05:39:34 -0700449 dev_type = hv_get_dev_type(newchannel);
K. Y. Srinivasanccef9bc2016-07-01 16:26:35 -0700450 if (dev_type == HV_NIC)
451 set_channel_signal_state(newchannel, HV_SIGNAL_POLICY_EXPLICIT);
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800452
453 init_vp_index(newchannel, dev_type);
Vitaly Kuznetsovf38e7dd2015-05-06 17:47:45 -0700454
Dexuan Cui638fea32016-06-09 18:47:24 -0700455 hv_event_tasklet_disable(newchannel);
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700456 if (newchannel->target_cpu != get_cpu()) {
457 put_cpu();
458 smp_call_function_single(newchannel->target_cpu,
459 percpu_channel_enq,
460 newchannel, true);
461 } else {
462 percpu_channel_enq(newchannel);
463 put_cpu();
Hank Janssen3e7ee492009-07-13 16:02:34 -0700464 }
Dexuan Cui638fea32016-06-09 18:47:24 -0700465 hv_event_tasklet_enable(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700466
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700467 /*
K. Y. Srinivasan42dceeb2013-08-26 14:08:58 -0700468 * This state is used to indicate a successful open
469 * so that when we do close the channel normally, we
470 * can cleanup properly
471 */
472 newchannel->state = CHANNEL_OPEN_STATE;
473
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700474 if (!fnew) {
475 if (channel->sc_creation_callback != NULL)
476 channel->sc_creation_callback(newchannel);
477 return;
478 }
479
K. Y. Srinivasan42dceeb2013-08-26 14:08:58 -0700480 /*
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700481 * Start the process of binding this offer to the driver
482 * We need to set the DeviceObject field before calling
Haiyang Zhang646f1ea2011-01-26 12:12:10 -0800483 * vmbus_child_dev_add()
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700484 */
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700485 newchannel->device_obj = vmbus_device_create(
Haiyang Zhang767dff62011-01-26 12:12:12 -0800486 &newchannel->offermsg.offer.if_type,
487 &newchannel->offermsg.offer.if_instance,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700488 newchannel);
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100489 if (!newchannel->device_obj)
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800490 goto err_deq_chan;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700491
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800492 newchannel->device_obj->device_id = dev_type;
Bill Pemberton454f18a2009-07-27 16:47:24 -0400493 /*
494 * Add the new device to the bus. This will kick off device-driver
495 * binding which eventually invokes the device driver's AddDevice()
496 * method.
497 */
Dexuan Cui85d9aa72016-01-27 22:29:43 -0800498 mutex_lock(&vmbus_connection.channel_mutex);
499 ret = vmbus_device_register(newchannel->device_obj);
500 mutex_unlock(&vmbus_connection.channel_mutex);
501
502 if (ret != 0) {
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700503 pr_err("unable to add child device object (relid %d)\n",
504 newchannel->offermsg.child_relid);
505 kfree(newchannel->device_obj);
506 goto err_deq_chan;
507 }
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100508 return;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800509
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800510err_deq_chan:
Dexuan Cuid6f591e2015-12-14 16:01:51 -0800511 mutex_lock(&vmbus_connection.channel_mutex);
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800512 list_del(&newchannel->listentry);
Dexuan Cuid6f591e2015-12-14 16:01:51 -0800513 mutex_unlock(&vmbus_connection.channel_mutex);
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800514
Dexuan Cui638fea32016-06-09 18:47:24 -0700515 hv_event_tasklet_disable(newchannel);
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800516 if (newchannel->target_cpu != get_cpu()) {
517 put_cpu();
518 smp_call_function_single(newchannel->target_cpu,
519 percpu_channel_deq, newchannel, true);
520 } else {
521 percpu_channel_deq(newchannel);
522 put_cpu();
523 }
Dexuan Cui638fea32016-06-09 18:47:24 -0700524 hv_event_tasklet_enable(newchannel);
525
526 vmbus_release_relid(newchannel->offermsg.child_relid);
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800527
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100528err_free_chan:
529 free_channel(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700530}
531
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800532/*
533 * We use this state to statically distribute the channel interrupt load.
534 */
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700535static int next_numa_node_id;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800536
537/*
538 * Starting with Win8, we can statically distribute the incoming
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700539 * channel interrupt load by binding a channel to VCPU.
540 * We do this in a hierarchical fashion:
541 * First distribute the primary channels across available NUMA nodes
542 * and then distribute the subchannels amongst the CPUs in the NUMA
543 * node assigned to the primary channel.
544 *
545 * For pre-win8 hosts or non-performance critical channels we assign the
546 * first CPU in the first NUMA node.
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800547 */
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800548static void init_vp_index(struct vmbus_channel *channel, u16 dev_type)
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800549{
550 u32 cur_cpu;
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800551 bool perf_chn = vmbus_devs[dev_type].perf_device;
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700552 struct vmbus_channel *primary = channel->primary_channel;
553 int next_node;
554 struct cpumask available_mask;
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700555 struct cpumask *alloced_mask;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800556
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800557 if ((vmbus_proto_version == VERSION_WS2008) ||
558 (vmbus_proto_version == VERSION_WIN7) || (!perf_chn)) {
559 /*
560 * Prior to win8, all channel interrupts are
561 * delivered on cpu 0.
562 * Also if the channel is not a performance critical
563 * channel, bind it to cpu 0.
564 */
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700565 channel->numa_node = 0;
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700566 channel->target_cpu = 0;
K. Y. Srinivasan9c6e64a2015-05-30 23:37:47 -0700567 channel->target_vp = hv_context.vp_index[0];
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700568 return;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800569 }
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700570
571 /*
K. Y. Srinivasan509879b2016-09-02 05:58:23 -0700572 * Based on the channel affinity policy, we will assign the NUMA
573 * nodes.
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700574 */
K. Y. Srinivasan509879b2016-09-02 05:58:23 -0700575
576 if ((channel->affinity_policy == HV_BALANCED) || (!primary)) {
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700577 while (true) {
578 next_node = next_numa_node_id++;
K. Y. Srinivasan509879b2016-09-02 05:58:23 -0700579 if (next_node == nr_node_ids) {
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700580 next_node = next_numa_node_id = 0;
K. Y. Srinivasan509879b2016-09-02 05:58:23 -0700581 continue;
582 }
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700583 if (cpumask_empty(cpumask_of_node(next_node)))
584 continue;
585 break;
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700586 }
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700587 channel->numa_node = next_node;
588 primary = channel;
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700589 }
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700590 alloced_mask = &hv_context.hv_numa_map[primary->numa_node];
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700591
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700592 if (cpumask_weight(alloced_mask) ==
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700593 cpumask_weight(cpumask_of_node(primary->numa_node))) {
594 /*
595 * We have cycled through all the CPUs in the node;
596 * reset the alloced map.
597 */
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700598 cpumask_clear(alloced_mask);
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700599 }
600
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700601 cpumask_xor(&available_mask, alloced_mask,
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700602 cpumask_of_node(primary->numa_node));
603
Dexuan Cui3b711072015-08-05 00:52:39 -0700604 cur_cpu = -1;
Vitaly Kuznetsov79fd8e72016-01-27 22:29:34 -0800605
K. Y. Srinivasan509879b2016-09-02 05:58:23 -0700606 if (primary->affinity_policy == HV_LOCALIZED) {
607 /*
608 * Normally Hyper-V host doesn't create more subchannels
609 * than there are VCPUs on the node but it is possible when not
610 * all present VCPUs on the node are initialized by guest.
611 * Clear the alloced_cpus_in_node to start over.
612 */
613 if (cpumask_equal(&primary->alloced_cpus_in_node,
614 cpumask_of_node(primary->numa_node)))
615 cpumask_clear(&primary->alloced_cpus_in_node);
616 }
Vitaly Kuznetsov79fd8e72016-01-27 22:29:34 -0800617
Dexuan Cui3b711072015-08-05 00:52:39 -0700618 while (true) {
619 cur_cpu = cpumask_next(cur_cpu, &available_mask);
620 if (cur_cpu >= nr_cpu_ids) {
621 cur_cpu = -1;
622 cpumask_copy(&available_mask,
623 cpumask_of_node(primary->numa_node));
624 continue;
625 }
626
K. Y. Srinivasan509879b2016-09-02 05:58:23 -0700627 if (primary->affinity_policy == HV_LOCALIZED) {
628 /*
629 * NOTE: in the case of sub-channel, we clear the
630 * sub-channel related bit(s) in
631 * primary->alloced_cpus_in_node in
632 * hv_process_channel_removal(), so when we
633 * reload drivers like hv_netvsc in SMP guest, here
634 * we're able to re-allocate
635 * bit from primary->alloced_cpus_in_node.
636 */
637 if (!cpumask_test_cpu(cur_cpu,
638 &primary->alloced_cpus_in_node)) {
639 cpumask_set_cpu(cur_cpu,
640 &primary->alloced_cpus_in_node);
641 cpumask_set_cpu(cur_cpu, alloced_mask);
642 break;
643 }
644 } else {
Dexuan Cui3b711072015-08-05 00:52:39 -0700645 cpumask_set_cpu(cur_cpu, alloced_mask);
646 break;
647 }
648 }
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700649
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700650 channel->target_cpu = cur_cpu;
651 channel->target_vp = hv_context.vp_index[cur_cpu];
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800652}
653
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800654static void vmbus_wait_for_unload(void)
655{
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -0700656 int cpu;
657 void *page_addr;
658 struct hv_message *msg;
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800659 struct vmbus_channel_message_header *hdr;
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -0700660 u32 message_type;
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800661
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -0700662 /*
663 * CHANNELMSG_UNLOAD_RESPONSE is always delivered to the CPU which was
664 * used for initial contact or to CPU0 depending on host version. When
665 * we're crashing on a different CPU let's hope that IRQ handler on
666 * the cpu which receives CHANNELMSG_UNLOAD_RESPONSE is still
667 * functional and vmbus_unload_response() will complete
668 * vmbus_connection.unload_event. If not, the last thing we can do is
669 * read message pages for all CPUs directly.
670 */
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800671 while (1) {
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -0700672 if (completion_done(&vmbus_connection.unload_event))
673 break;
674
675 for_each_online_cpu(cpu) {
676 page_addr = hv_context.synic_message_page[cpu];
677 msg = (struct hv_message *)page_addr +
678 VMBUS_MESSAGE_SINT;
679
680 message_type = READ_ONCE(msg->header.message_type);
681 if (message_type == HVMSG_NONE)
682 continue;
683
684 hdr = (struct vmbus_channel_message_header *)
685 msg->u.payload;
686
687 if (hdr->msgtype == CHANNELMSG_UNLOAD_RESPONSE)
688 complete(&vmbus_connection.unload_event);
689
690 vmbus_signal_eom(msg, message_type);
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800691 }
692
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -0700693 mdelay(10);
694 }
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800695
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -0700696 /*
697 * We're crashing and already got the UNLOAD_RESPONSE, cleanup all
698 * maybe-pending messages on all CPUs to be able to receive new
699 * messages after we reconnect.
700 */
701 for_each_online_cpu(cpu) {
702 page_addr = hv_context.synic_message_page[cpu];
703 msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT;
704 msg->header.message_type = HVMSG_NONE;
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800705 }
706}
707
Hank Janssen3e189512010-03-04 22:11:00 +0000708/*
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700709 * vmbus_unload_response - Handler for the unload response.
710 */
711static void vmbus_unload_response(struct vmbus_channel_message_header *hdr)
712{
713 /*
714 * This is a global event; just wakeup the waiting thread.
715 * Once we successfully unload, we can cleanup the monitor state.
716 */
717 complete(&vmbus_connection.unload_event);
718}
719
Vitaly Kuznetsov75ff3a82016-02-26 15:13:16 -0800720void vmbus_initiate_unload(bool crash)
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700721{
722 struct vmbus_channel_message_header hdr;
723
Vitaly Kuznetsov4a542432015-08-01 16:08:19 -0700724 /* Pre-Win2012R2 hosts don't support reconnect */
725 if (vmbus_proto_version < VERSION_WIN8_1)
726 return;
727
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700728 init_completion(&vmbus_connection.unload_event);
729 memset(&hdr, 0, sizeof(struct vmbus_channel_message_header));
730 hdr.msgtype = CHANNELMSG_UNLOAD;
731 vmbus_post_msg(&hdr, sizeof(struct vmbus_channel_message_header));
732
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800733 /*
734 * vmbus_initiate_unload() is also called on crash and the crash can be
735 * happening in an interrupt context, where scheduling is impossible.
736 */
Vitaly Kuznetsov75ff3a82016-02-26 15:13:16 -0800737 if (!crash)
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800738 wait_for_completion(&vmbus_connection.unload_event);
739 else
740 vmbus_wait_for_unload();
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700741}
742
743/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700744 * vmbus_onoffer - Handler for channel offers from vmbus in parent partition.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700745 *
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700746 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700747static void vmbus_onoffer(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700748{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700749 struct vmbus_channel_offer_channel *offer;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700750 struct vmbus_channel *newchannel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700751
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700752 offer = (struct vmbus_channel_offer_channel *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700753
Bill Pemberton454f18a2009-07-27 16:47:24 -0400754 /* Allocate the channel object and save this offer. */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700755 newchannel = alloc_channel();
Haiyang Zhang188963e2010-10-15 10:14:06 -0700756 if (!newchannel) {
Hank Janssen0a466182011-03-29 13:58:47 -0700757 pr_err("Unable to allocate channel object\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700758 return;
759 }
760
K. Y. Srinivasan132368b2012-12-01 06:46:33 -0800761 /*
762 * By default we setup state to enable batched
763 * reading. A specific service can choose to
764 * disable this prior to opening the channel.
765 */
766 newchannel->batched_reading = true;
767
K. Y. Srinivasanb3bf60c2012-12-01 06:46:45 -0800768 /*
769 * Setup state for signalling the host.
770 */
771 newchannel->sig_event = (struct hv_input_signal_event *)
772 (ALIGN((unsigned long)
773 &newchannel->sig_buf,
774 HV_HYPERCALL_PARAM_ALIGN));
775
776 newchannel->sig_event->connectionid.asu32 = 0;
777 newchannel->sig_event->connectionid.u.id = VMBUS_EVENT_CONNECTION_ID;
778 newchannel->sig_event->flag_number = 0;
779 newchannel->sig_event->rsvdz = 0;
780
781 if (vmbus_proto_version != VERSION_WS2008) {
782 newchannel->is_dedicated_interrupt =
783 (offer->is_dedicated_interrupt != 0);
784 newchannel->sig_event->connectionid.u.id =
785 offer->connection_id;
786 }
787
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800788 memcpy(&newchannel->offermsg, offer,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700789 sizeof(struct vmbus_channel_offer_channel));
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800790 newchannel->monitor_grp = (u8)offer->monitorid / 32;
791 newchannel->monitor_bit = (u8)offer->monitorid % 32;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700792
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800793 vmbus_process_offer(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700794}
795
Hank Janssen3e189512010-03-04 22:11:00 +0000796/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700797 * vmbus_onoffer_rescind - Rescind offer handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700798 *
799 * We queue a work item to process this offer synchronously
800 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700801static void vmbus_onoffer_rescind(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700802{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700803 struct vmbus_channel_rescind_offer *rescind;
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700804 struct vmbus_channel *channel;
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700805 unsigned long flags;
806 struct device *dev;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700807
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700808 rescind = (struct vmbus_channel_rescind_offer *)hdr;
Dexuan Cui85d9aa72016-01-27 22:29:43 -0800809
810 mutex_lock(&vmbus_connection.channel_mutex);
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700811 channel = relid2channel(rescind->child_relid);
Hank Janssen98e08702011-03-29 13:58:44 -0700812
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800813 if (channel == NULL) {
Dexuan Cuif52078c2015-12-14 16:01:50 -0800814 /*
815 * This is very impossible, because in
816 * vmbus_process_offer(), we have already invoked
817 * vmbus_release_relid() on error.
818 */
Dexuan Cui85d9aa72016-01-27 22:29:43 -0800819 goto out;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800820 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700821
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700822 spin_lock_irqsave(&channel->lock, flags);
823 channel->rescind = true;
824 spin_unlock_irqrestore(&channel->lock, flags);
825
826 if (channel->device_obj) {
Dexuan Cui499e8402016-01-27 22:29:42 -0800827 if (channel->chn_rescind_callback) {
828 channel->chn_rescind_callback(channel);
Dexuan Cui85d9aa72016-01-27 22:29:43 -0800829 goto out;
Dexuan Cui499e8402016-01-27 22:29:42 -0800830 }
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700831 /*
832 * We will have to unregister this device from the
833 * driver core.
834 */
835 dev = get_device(&channel->device_obj->device);
836 if (dev) {
837 vmbus_device_unregister(channel->device_obj);
838 put_device(dev);
839 }
840 } else {
841 hv_process_channel_removal(channel,
842 channel->offermsg.child_relid);
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800843 }
Dexuan Cui85d9aa72016-01-27 22:29:43 -0800844
845out:
846 mutex_unlock(&vmbus_connection.channel_mutex);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700847}
848
Dexuan Cui85d9aa72016-01-27 22:29:43 -0800849void vmbus_hvsock_device_unregister(struct vmbus_channel *channel)
850{
851 mutex_lock(&vmbus_connection.channel_mutex);
852
853 BUG_ON(!is_hvsock_channel(channel));
854
855 channel->rescind = true;
856 vmbus_device_unregister(channel->device_obj);
857
858 mutex_unlock(&vmbus_connection.channel_mutex);
859}
860EXPORT_SYMBOL_GPL(vmbus_hvsock_device_unregister);
861
862
Hank Janssen3e189512010-03-04 22:11:00 +0000863/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700864 * vmbus_onoffers_delivered -
865 * This is invoked when all offers have been delivered.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700866 *
867 * Nothing to do here.
868 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700869static void vmbus_onoffers_delivered(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700870 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700871{
Hank Janssen3e7ee492009-07-13 16:02:34 -0700872}
873
Hank Janssen3e189512010-03-04 22:11:00 +0000874/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700875 * vmbus_onopen_result - Open result handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700876 *
877 * This is invoked when we received a response to our channel open request.
878 * Find the matching request, copy the response and signal the requesting
879 * thread.
880 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700881static void vmbus_onopen_result(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700882{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700883 struct vmbus_channel_open_result *result;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700884 struct vmbus_channel_msginfo *msginfo;
885 struct vmbus_channel_message_header *requestheader;
886 struct vmbus_channel_open_channel *openmsg;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700887 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700888
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700889 result = (struct vmbus_channel_open_result *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700890
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700891 /*
892 * Find the open msg, copy the result and signal/unblock the wait event
893 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800894 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700895
Hank Janssenebb61e52011-02-18 12:39:57 -0800896 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
897 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700898 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800899 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700900
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800901 if (requestheader->msgtype == CHANNELMSG_OPENCHANNEL) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700902 openmsg =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800903 (struct vmbus_channel_open_channel *)msginfo->msg;
904 if (openmsg->child_relid == result->child_relid &&
905 openmsg->openid == result->openid) {
906 memcpy(&msginfo->response.open_result,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700907 result,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700908 sizeof(
909 struct vmbus_channel_open_result));
910 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700911 break;
912 }
913 }
914 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800915 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700916}
917
Hank Janssen3e189512010-03-04 22:11:00 +0000918/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700919 * vmbus_ongpadl_created - GPADL created handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700920 *
921 * This is invoked when we received a response to our gpadl create request.
922 * Find the matching request, copy the response and signal the requesting
923 * thread.
924 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700925static void vmbus_ongpadl_created(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700926{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700927 struct vmbus_channel_gpadl_created *gpadlcreated;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700928 struct vmbus_channel_msginfo *msginfo;
929 struct vmbus_channel_message_header *requestheader;
930 struct vmbus_channel_gpadl_header *gpadlheader;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700931 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700932
Haiyang Zhang188963e2010-10-15 10:14:06 -0700933 gpadlcreated = (struct vmbus_channel_gpadl_created *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700934
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700935 /*
936 * Find the establish msg, copy the result and signal/unblock the wait
937 * event
938 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800939 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700940
Hank Janssenebb61e52011-02-18 12:39:57 -0800941 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
942 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700943 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800944 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700945
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800946 if (requestheader->msgtype == CHANNELMSG_GPADL_HEADER) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700947 gpadlheader =
948 (struct vmbus_channel_gpadl_header *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700949
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800950 if ((gpadlcreated->child_relid ==
951 gpadlheader->child_relid) &&
952 (gpadlcreated->gpadl == gpadlheader->gpadl)) {
953 memcpy(&msginfo->response.gpadl_created,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700954 gpadlcreated,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700955 sizeof(
956 struct vmbus_channel_gpadl_created));
957 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700958 break;
959 }
960 }
961 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800962 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700963}
964
Hank Janssen3e189512010-03-04 22:11:00 +0000965/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700966 * vmbus_ongpadl_torndown - GPADL torndown handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700967 *
968 * This is invoked when we received a response to our gpadl teardown request.
969 * Find the matching request, copy the response and signal the requesting
970 * thread.
971 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700972static void vmbus_ongpadl_torndown(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700973 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700974{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700975 struct vmbus_channel_gpadl_torndown *gpadl_torndown;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700976 struct vmbus_channel_msginfo *msginfo;
977 struct vmbus_channel_message_header *requestheader;
978 struct vmbus_channel_gpadl_teardown *gpadl_teardown;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700979 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700980
Haiyang Zhang188963e2010-10-15 10:14:06 -0700981 gpadl_torndown = (struct vmbus_channel_gpadl_torndown *)hdr;
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700982
983 /*
984 * Find the open msg, copy the result and signal/unblock the wait event
985 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800986 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700987
Hank Janssenebb61e52011-02-18 12:39:57 -0800988 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
989 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700990 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800991 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700992
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800993 if (requestheader->msgtype == CHANNELMSG_GPADL_TEARDOWN) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700994 gpadl_teardown =
995 (struct vmbus_channel_gpadl_teardown *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700996
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800997 if (gpadl_torndown->gpadl == gpadl_teardown->gpadl) {
998 memcpy(&msginfo->response.gpadl_torndown,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700999 gpadl_torndown,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -07001000 sizeof(
1001 struct vmbus_channel_gpadl_torndown));
1002 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001003 break;
1004 }
1005 }
1006 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -08001007 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001008}
1009
Hank Janssen3e189512010-03-04 22:11:00 +00001010/*
Haiyang Zhange98cb272010-10-15 10:14:07 -07001011 * vmbus_onversion_response - Version response handler
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -07001012 *
1013 * This is invoked when we received a response to our initiate contact request.
1014 * Find the matching request, copy the response and signal the requesting
1015 * thread.
1016 */
Haiyang Zhange98cb272010-10-15 10:14:07 -07001017static void vmbus_onversion_response(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -07001018 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001019{
Haiyang Zhang188963e2010-10-15 10:14:06 -07001020 struct vmbus_channel_msginfo *msginfo;
1021 struct vmbus_channel_message_header *requestheader;
Haiyang Zhang188963e2010-10-15 10:14:06 -07001022 struct vmbus_channel_version_response *version_response;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -07001023 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001024
Haiyang Zhang188963e2010-10-15 10:14:06 -07001025 version_response = (struct vmbus_channel_version_response *)hdr;
Haiyang Zhang15b2f642011-01-26 12:12:07 -08001026 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001027
Hank Janssenebb61e52011-02-18 12:39:57 -08001028 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
1029 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -07001030 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -08001031 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001032
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -08001033 if (requestheader->msgtype ==
1034 CHANNELMSG_INITIATE_CONTACT) {
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -08001035 memcpy(&msginfo->response.version_response,
Haiyang Zhang188963e2010-10-15 10:14:06 -07001036 version_response,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -07001037 sizeof(struct vmbus_channel_version_response));
K. Y. Srinivasan9568a192011-05-10 07:55:39 -07001038 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001039 }
1040 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -08001041 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001042}
1043
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -07001044/* Channel message dispatch table */
Dexuan Cui652594c2015-03-27 09:10:08 -07001045struct vmbus_channel_message_table_entry
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -07001046 channel_message_table[CHANNELMSG_COUNT] = {
Dexuan Cui652594c2015-03-27 09:10:08 -07001047 {CHANNELMSG_INVALID, 0, NULL},
1048 {CHANNELMSG_OFFERCHANNEL, 0, vmbus_onoffer},
1049 {CHANNELMSG_RESCIND_CHANNELOFFER, 0, vmbus_onoffer_rescind},
1050 {CHANNELMSG_REQUESTOFFERS, 0, NULL},
1051 {CHANNELMSG_ALLOFFERS_DELIVERED, 1, vmbus_onoffers_delivered},
1052 {CHANNELMSG_OPENCHANNEL, 0, NULL},
1053 {CHANNELMSG_OPENCHANNEL_RESULT, 1, vmbus_onopen_result},
1054 {CHANNELMSG_CLOSECHANNEL, 0, NULL},
1055 {CHANNELMSG_GPADL_HEADER, 0, NULL},
1056 {CHANNELMSG_GPADL_BODY, 0, NULL},
1057 {CHANNELMSG_GPADL_CREATED, 1, vmbus_ongpadl_created},
1058 {CHANNELMSG_GPADL_TEARDOWN, 0, NULL},
1059 {CHANNELMSG_GPADL_TORNDOWN, 1, vmbus_ongpadl_torndown},
1060 {CHANNELMSG_RELID_RELEASED, 0, NULL},
1061 {CHANNELMSG_INITIATE_CONTACT, 0, NULL},
1062 {CHANNELMSG_VERSION_RESPONSE, 1, vmbus_onversion_response},
1063 {CHANNELMSG_UNLOAD, 0, NULL},
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -07001064 {CHANNELMSG_UNLOAD_RESPONSE, 1, vmbus_unload_response},
Dexuan Cui5c23a1a2016-01-27 22:29:40 -08001065 {CHANNELMSG_18, 0, NULL},
1066 {CHANNELMSG_19, 0, NULL},
1067 {CHANNELMSG_20, 0, NULL},
1068 {CHANNELMSG_TL_CONNECT_REQUEST, 0, NULL},
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -07001069};
1070
Hank Janssen3e189512010-03-04 22:11:00 +00001071/*
Haiyang Zhange98cb272010-10-15 10:14:07 -07001072 * vmbus_onmessage - Handler for channel protocol messages.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -07001073 *
1074 * This is invoked in the vmbus worker thread context.
1075 */
Haiyang Zhange98cb272010-10-15 10:14:07 -07001076void vmbus_onmessage(void *context)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001077{
Haiyang Zhang188963e2010-10-15 10:14:06 -07001078 struct hv_message *msg = context;
Greg Kroah-Hartman82250212009-08-26 15:16:04 -07001079 struct vmbus_channel_message_header *hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001080 int size;
1081
Haiyang Zhangf6feebe2010-11-08 14:04:39 -08001082 hdr = (struct vmbus_channel_message_header *)msg->u.payload;
1083 size = msg->header.payload_size;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001084
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -08001085 if (hdr->msgtype >= CHANNELMSG_COUNT) {
Hank Janssen0a466182011-03-29 13:58:47 -07001086 pr_err("Received invalid channel message type %d size %d\n",
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -08001087 hdr->msgtype, size);
Greg Kroah-Hartman04f50c42009-07-16 12:35:37 -07001088 print_hex_dump_bytes("", DUMP_PREFIX_NONE,
Haiyang Zhangf6feebe2010-11-08 14:04:39 -08001089 (unsigned char *)msg->u.payload, size);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001090 return;
1091 }
1092
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -07001093 if (channel_message_table[hdr->msgtype].message_handler)
1094 channel_message_table[hdr->msgtype].message_handler(hdr);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001095 else
Hank Janssen0a466182011-03-29 13:58:47 -07001096 pr_err("Unhandled channel message type %d\n", hdr->msgtype);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001097}
1098
Hank Janssen3e189512010-03-04 22:11:00 +00001099/*
Haiyang Zhange98cb272010-10-15 10:14:07 -07001100 * vmbus_request_offers - Send a request to get all our pending offers.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -07001101 */
Haiyang Zhange98cb272010-10-15 10:14:07 -07001102int vmbus_request_offers(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001103{
Greg Kroah-Hartman82250212009-08-26 15:16:04 -07001104 struct vmbus_channel_message_header *msg;
Haiyang Zhang188963e2010-10-15 10:14:06 -07001105 struct vmbus_channel_msginfo *msginfo;
Nicholas Mc Guire51e51812015-02-27 11:26:02 -08001106 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001107
Haiyang Zhang188963e2010-10-15 10:14:06 -07001108 msginfo = kmalloc(sizeof(*msginfo) +
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -07001109 sizeof(struct vmbus_channel_message_header),
1110 GFP_KERNEL);
Haiyang Zhang188963e2010-10-15 10:14:06 -07001111 if (!msginfo)
Bill Pemberton75910f22010-05-05 15:27:31 -04001112 return -ENOMEM;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001113
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -08001114 msg = (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001115
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -08001116 msg->msgtype = CHANNELMSG_REQUESTOFFERS;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001117
Hank Janssen3e7ee492009-07-13 16:02:34 -07001118
Haiyang Zhangc6977672011-01-26 12:12:08 -08001119 ret = vmbus_post_msg(msg,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -07001120 sizeof(struct vmbus_channel_message_header));
1121 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -07001122 pr_err("Unable to request offers - %d\n", ret);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001123
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -08001124 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001125 }
Hank Janssen3e7ee492009-07-13 16:02:34 -07001126
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -08001127cleanup:
Ilia Mirkindd9b15d2011-03-13 00:29:00 -05001128 kfree(msginfo);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001129
Hank Janssen3e7ee492009-07-13 16:02:34 -07001130 return ret;
1131}
1132
K. Y. Srinivasane68d2972013-05-23 12:02:32 -07001133/*
1134 * Retrieve the (sub) channel on which to send an outgoing request.
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -08001135 * When a primary channel has multiple sub-channels, we try to
1136 * distribute the load equally amongst all available channels.
K. Y. Srinivasane68d2972013-05-23 12:02:32 -07001137 */
1138struct vmbus_channel *vmbus_get_outgoing_channel(struct vmbus_channel *primary)
1139{
1140 struct list_head *cur, *tmp;
K. Y. Srinivasan87712bf82014-12-14 23:34:51 -08001141 int cur_cpu;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -07001142 struct vmbus_channel *cur_channel;
1143 struct vmbus_channel *outgoing_channel = primary;
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -08001144 int next_channel;
1145 int i = 1;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -07001146
1147 if (list_empty(&primary->sc_list))
1148 return outgoing_channel;
1149
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -08001150 next_channel = primary->next_oc++;
1151
1152 if (next_channel > (primary->num_sc)) {
1153 primary->next_oc = 0;
1154 return outgoing_channel;
1155 }
1156
K. Y. Srinivasan87712bf82014-12-14 23:34:51 -08001157 cur_cpu = hv_context.vp_index[get_cpu()];
1158 put_cpu();
K. Y. Srinivasane68d2972013-05-23 12:02:32 -07001159 list_for_each_safe(cur, tmp, &primary->sc_list) {
1160 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
1161 if (cur_channel->state != CHANNEL_OPENED_STATE)
1162 continue;
1163
1164 if (cur_channel->target_vp == cur_cpu)
1165 return cur_channel;
1166
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -08001167 if (i == next_channel)
1168 return cur_channel;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -07001169
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -08001170 i++;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -07001171 }
1172
1173 return outgoing_channel;
1174}
1175EXPORT_SYMBOL_GPL(vmbus_get_outgoing_channel);
1176
1177static void invoke_sc_cb(struct vmbus_channel *primary_channel)
1178{
1179 struct list_head *cur, *tmp;
1180 struct vmbus_channel *cur_channel;
1181
1182 if (primary_channel->sc_creation_callback == NULL)
1183 return;
1184
1185 list_for_each_safe(cur, tmp, &primary_channel->sc_list) {
1186 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
1187
1188 primary_channel->sc_creation_callback(cur_channel);
1189 }
1190}
1191
1192void vmbus_set_sc_create_callback(struct vmbus_channel *primary_channel,
1193 void (*sc_cr_cb)(struct vmbus_channel *new_sc))
1194{
1195 primary_channel->sc_creation_callback = sc_cr_cb;
1196}
1197EXPORT_SYMBOL_GPL(vmbus_set_sc_create_callback);
1198
1199bool vmbus_are_subchannels_present(struct vmbus_channel *primary)
1200{
1201 bool ret;
1202
1203 ret = !list_empty(&primary->sc_list);
1204
1205 if (ret) {
1206 /*
1207 * Invoke the callback on sub-channel creation.
1208 * This will present a uniform interface to the
1209 * clients.
1210 */
1211 invoke_sc_cb(primary);
1212 }
1213
1214 return ret;
1215}
1216EXPORT_SYMBOL_GPL(vmbus_are_subchannels_present);
Dexuan Cui499e8402016-01-27 22:29:42 -08001217
1218void vmbus_set_chn_rescind_callback(struct vmbus_channel *channel,
1219 void (*chn_rescind_cb)(struct vmbus_channel *))
1220{
1221 channel->chn_rescind_callback = chn_rescind_cb;
1222}
1223EXPORT_SYMBOL_GPL(vmbus_set_chn_rescind_callback);