blob: 9360cdce740e8591f007dcf21033dfa1d25f3146 [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,
Dexuan Cui64080662018-03-27 15:01:02 -070073 .perf_device = false,
K. Y. Srinivasan7047f172015-12-25 20:00:30 -080074 },
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
K. Y. Srinivasan728fe692016-12-22 16:54:00 -0800150/*
151 * The rescinded channel may be blocked waiting for a response from the host;
152 * take care of that.
153 */
154static void vmbus_rescind_cleanup(struct vmbus_channel *channel)
155{
156 struct vmbus_channel_msginfo *msginfo;
157 unsigned long flags;
158
159
160 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
161
162 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
163 msglistentry) {
164
165 if (msginfo->waiting_channel == channel) {
166 complete(&msginfo->waitevent);
167 break;
168 }
169 }
170 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
171}
172
Dexuan Cui0f988292016-09-07 05:39:34 -0700173static bool is_unsupported_vmbus_devs(const uuid_le *guid)
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800174{
Dexuan Cui0f988292016-09-07 05:39:34 -0700175 int i;
176
177 for (i = 0; i < ARRAY_SIZE(vmbus_unsupported_devs); i++)
178 if (!uuid_le_cmp(*guid, vmbus_unsupported_devs[i].guid))
179 return true;
180 return false;
181}
182
183static u16 hv_get_dev_type(const struct vmbus_channel *channel)
184{
185 const uuid_le *guid = &channel->offermsg.offer.if_type;
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800186 u16 i;
187
Dexuan Cui0f988292016-09-07 05:39:34 -0700188 if (is_hvsock_channel(channel) || is_unsupported_vmbus_devs(guid))
189 return HV_UNKOWN;
190
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800191 for (i = HV_IDE; i < HV_UNKOWN; i++) {
192 if (!uuid_le_cmp(*guid, vmbus_devs[i].guid))
193 return i;
194 }
195 pr_info("Unknown GUID: %pUl\n", guid);
196 return i;
197}
Vitaly Kuznetsovf38e7dd2015-05-06 17:47:45 -0700198
Hank Janssenc88c4e42010-05-04 15:55:05 -0700199/**
Greg Kroah-Hartmanda0e9632011-10-11 08:42:28 -0600200 * vmbus_prep_negotiate_resp() - Create default response for Hyper-V Negotiate message
Hank Janssenc88c4e42010-05-04 15:55:05 -0700201 * @icmsghdrp: Pointer to msg header structure
202 * @icmsg_negotiate: Pointer to negotiate message structure
203 * @buf: Raw buffer channel data
204 *
205 * @icmsghdrp is of type &struct icmsg_hdr.
206 * @negop is of type &struct icmsg_negotiate.
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700207 * Set up and fill in default negotiate response message.
208 *
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700209 * The fw_version specifies the framework version that
210 * we can support and srv_version specifies the service
211 * version we can support.
Hank Janssenc88c4e42010-05-04 15:55:05 -0700212 *
213 * Mainly used by Hyper-V drivers.
214 */
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700215bool vmbus_prep_negotiate_resp(struct icmsg_hdr *icmsghdrp,
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700216 struct icmsg_negotiate *negop, u8 *buf,
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700217 int fw_version, int srv_version)
Hank Janssenc88c4e42010-05-04 15:55:05 -0700218{
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700219 int icframe_major, icframe_minor;
220 int icmsg_major, icmsg_minor;
221 int fw_major, fw_minor;
222 int srv_major, srv_minor;
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700223 int i;
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700224 bool found_match = false;
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700225
K. Y. Srinivasana3605302012-05-12 13:44:57 -0700226 icmsghdrp->icmsgsize = 0x10;
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700227 fw_major = (fw_version >> 16);
228 fw_minor = (fw_version & 0xFFFF);
229
230 srv_major = (srv_version >> 16);
231 srv_minor = (srv_version & 0xFFFF);
Hank Janssenc88c4e42010-05-04 15:55:05 -0700232
K. Y. Srinivasana3605302012-05-12 13:44:57 -0700233 negop = (struct icmsg_negotiate *)&buf[
234 sizeof(struct vmbuspipe_hdr) +
235 sizeof(struct icmsg_hdr)];
Hank Janssenc88c4e42010-05-04 15:55:05 -0700236
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700237 icframe_major = negop->icframe_vercnt;
238 icframe_minor = 0;
239
240 icmsg_major = negop->icmsg_vercnt;
241 icmsg_minor = 0;
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700242
243 /*
244 * Select the framework version number we will
245 * support.
246 */
247
248 for (i = 0; i < negop->icframe_vercnt; i++) {
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700249 if ((negop->icversion_data[i].major == fw_major) &&
250 (negop->icversion_data[i].minor == fw_minor)) {
251 icframe_major = negop->icversion_data[i].major;
252 icframe_minor = negop->icversion_data[i].minor;
253 found_match = true;
254 }
Hank Janssenc88c4e42010-05-04 15:55:05 -0700255 }
K. Y. Srinivasana3605302012-05-12 13:44:57 -0700256
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700257 if (!found_match)
258 goto fw_error;
259
260 found_match = false;
261
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700262 for (i = negop->icframe_vercnt;
263 (i < negop->icframe_vercnt + negop->icmsg_vercnt); i++) {
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700264 if ((negop->icversion_data[i].major == srv_major) &&
265 (negop->icversion_data[i].minor == srv_minor)) {
266 icmsg_major = negop->icversion_data[i].major;
267 icmsg_minor = negop->icversion_data[i].minor;
268 found_match = true;
269 }
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700270 }
271
272 /*
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700273 * Respond with the framework and service
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700274 * version numbers we can support.
275 */
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700276
277fw_error:
278 if (!found_match) {
279 negop->icframe_vercnt = 0;
280 negop->icmsg_vercnt = 0;
281 } else {
282 negop->icframe_vercnt = 1;
283 negop->icmsg_vercnt = 1;
284 }
285
286 negop->icversion_data[0].major = icframe_major;
287 negop->icversion_data[0].minor = icframe_minor;
288 negop->icversion_data[1].major = icmsg_major;
289 negop->icversion_data[1].minor = icmsg_minor;
290 return found_match;
Hank Janssenc88c4e42010-05-04 15:55:05 -0700291}
K. Y. Srinivasana3605302012-05-12 13:44:57 -0700292
Greg Kroah-Hartmanda0e9632011-10-11 08:42:28 -0600293EXPORT_SYMBOL_GPL(vmbus_prep_negotiate_resp);
Hank Janssenc88c4e42010-05-04 15:55:05 -0700294
Hank Janssen3e189512010-03-04 22:11:00 +0000295/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700296 * alloc_channel - Allocate and initialize a vmbus channel object
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700297 */
Greg Kroah-Hartman50fe56d2010-10-20 15:51:57 -0700298static struct vmbus_channel *alloc_channel(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700299{
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700300 struct vmbus_channel *channel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700301
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700302 channel = kzalloc(sizeof(*channel), GFP_ATOMIC);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700303 if (!channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700304 return NULL;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700305
K. Y. Srinivasanfe760e42016-01-27 22:29:45 -0800306 channel->acquire_ring_lock = true;
Greg Kroah-Hartman54411c42009-07-15 14:48:32 -0700307 spin_lock_init(&channel->inbound_lock);
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100308 spin_lock_init(&channel->lock);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700309
310 INIT_LIST_HEAD(&channel->sc_list);
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700311 INIT_LIST_HEAD(&channel->percpu_list);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700312
Hank Janssen3e7ee492009-07-13 16:02:34 -0700313 return channel;
314}
315
Hank Janssen3e189512010-03-04 22:11:00 +0000316/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700317 * free_channel - Release the resources used by the vmbus channel object
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700318 */
Greg Kroah-Hartman9f3e28e2011-10-11 09:40:01 -0600319static void free_channel(struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700320{
Dexuan Cuiaadc3782015-03-27 09:10:10 -0700321 kfree(channel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700322}
323
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700324static void percpu_channel_enq(void *arg)
325{
326 struct vmbus_channel *channel = arg;
327 int cpu = smp_processor_id();
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000328
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700329 list_add_tail(&channel->percpu_list, &hv_context.percpu_list[cpu]);
330}
331
332static void percpu_channel_deq(void *arg)
333{
334 struct vmbus_channel *channel = arg;
335
336 list_del(&channel->percpu_list);
337}
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000338
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800339
Dexuan Cuif52078c2015-12-14 16:01:50 -0800340static void vmbus_release_relid(u32 relid)
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200341{
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800342 struct vmbus_channel_relid_released msg;
Vitaly Kuznetsov04a258c2014-11-04 13:40:11 +0100343
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700344 memset(&msg, 0, sizeof(struct vmbus_channel_relid_released));
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800345 msg.child_relid = relid;
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700346 msg.header.msgtype = CHANNELMSG_RELID_RELEASED;
Vitaly Kuznetsov65013a92016-12-07 01:16:24 -0800347 vmbus_post_msg(&msg, sizeof(struct vmbus_channel_relid_released),
348 true);
Dexuan Cuif52078c2015-12-14 16:01:50 -0800349}
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700350
Dexuan Cui638fea32016-06-09 18:47:24 -0700351void hv_event_tasklet_disable(struct vmbus_channel *channel)
352{
353 struct tasklet_struct *tasklet;
354 tasklet = hv_context.event_dpc[channel->target_cpu];
355 tasklet_disable(tasklet);
356}
357
358void hv_event_tasklet_enable(struct vmbus_channel *channel)
359{
360 struct tasklet_struct *tasklet;
361 tasklet = hv_context.event_dpc[channel->target_cpu];
362 tasklet_enable(tasklet);
363
364 /* In case there is any pending event */
365 tasklet_schedule(tasklet);
366}
367
Dexuan Cuif52078c2015-12-14 16:01:50 -0800368void hv_process_channel_removal(struct vmbus_channel *channel, u32 relid)
369{
370 unsigned long flags;
371 struct vmbus_channel *primary_channel;
372
Dexuan Cui34c68012015-12-14 16:01:49 -0800373 BUG_ON(!channel->rescind);
Dexuan Cui85d9aa72016-01-27 22:29:43 -0800374 BUG_ON(!mutex_is_locked(&vmbus_connection.channel_mutex));
Dexuan Cui34c68012015-12-14 16:01:49 -0800375
Dexuan Cui638fea32016-06-09 18:47:24 -0700376 hv_event_tasklet_disable(channel);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700377 if (channel->target_cpu != get_cpu()) {
378 put_cpu();
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700379 smp_call_function_single(channel->target_cpu,
380 percpu_channel_deq, channel, true);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700381 } else {
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700382 percpu_channel_deq(channel);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700383 put_cpu();
384 }
Dexuan Cui638fea32016-06-09 18:47:24 -0700385 hv_event_tasklet_enable(channel);
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700386
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700387 if (channel->primary_channel == NULL) {
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700388 list_del(&channel->listentry);
Dexuan Cuica1c4b72015-08-13 17:07:03 -0700389
390 primary_channel = channel;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700391 } else {
392 primary_channel = channel->primary_channel;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100393 spin_lock_irqsave(&primary_channel->lock, flags);
K. Y. Srinivasan565ce642013-10-16 19:27:19 -0700394 list_del(&channel->sc_list);
Vitaly Kuznetsov357e8362015-05-06 17:47:44 -0700395 primary_channel->num_sc--;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100396 spin_unlock_irqrestore(&primary_channel->lock, flags);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700397 }
Dexuan Cuica1c4b72015-08-13 17:07:03 -0700398
399 /*
400 * We need to free the bit for init_vp_index() to work in the case
401 * of sub-channel, when we reload drivers like hv_netvsc.
402 */
K. Y. Srinivasan509879b2016-09-02 05:58:23 -0700403 if (channel->affinity_policy == HV_LOCALIZED)
404 cpumask_clear_cpu(channel->target_cpu,
405 &primary_channel->alloced_cpus_in_node);
Dexuan Cuica1c4b72015-08-13 17:07:03 -0700406
Dexuan Cui638fea32016-06-09 18:47:24 -0700407 vmbus_release_relid(relid);
408
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700409 free_channel(channel);
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200410}
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000411
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800412void vmbus_free_channels(void)
413{
Dexuan Cui813c5b72015-04-22 21:31:30 -0700414 struct vmbus_channel *channel, *tmp;
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800415
Vitaly Kuznetsovbf6a9b32016-12-03 12:34:32 -0800416 mutex_lock(&vmbus_connection.channel_mutex);
Dexuan Cui813c5b72015-04-22 21:31:30 -0700417 list_for_each_entry_safe(channel, tmp, &vmbus_connection.chn_list,
418 listentry) {
Dexuan Cui34c68012015-12-14 16:01:49 -0800419 /* hv_process_channel_removal() needs this */
Dexuan Cui813c5b72015-04-22 21:31:30 -0700420 channel->rescind = true;
421
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800422 vmbus_device_unregister(channel->device_obj);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800423 }
Vitaly Kuznetsovbf6a9b32016-12-03 12:34:32 -0800424 mutex_unlock(&vmbus_connection.channel_mutex);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800425}
426
Hank Janssen3e189512010-03-04 22:11:00 +0000427/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700428 * vmbus_process_offer - Process the offer by creating a channel/device
Hank Janssenc88c4e42010-05-04 15:55:05 -0700429 * associated with this offer
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700430 */
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800431static void vmbus_process_offer(struct vmbus_channel *newchannel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700432{
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700433 struct vmbus_channel *channel;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700434 bool fnew = true;
Greg Kroah-Hartman0f5e44c2009-07-15 14:57:16 -0700435 unsigned long flags;
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800436 u16 dev_type;
Dexuan Cui85d9aa72016-01-27 22:29:43 -0800437 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700438
Bill Pemberton454f18a2009-07-27 16:47:24 -0400439 /* Make sure this is a new offer */
Dexuan Cuid6f591e2015-12-14 16:01:51 -0800440 mutex_lock(&vmbus_connection.channel_mutex);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700441
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800442 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700443 if (!uuid_le_cmp(channel->offermsg.offer.if_type,
444 newchannel->offermsg.offer.if_type) &&
445 !uuid_le_cmp(channel->offermsg.offer.if_instance,
446 newchannel->offermsg.offer.if_instance)) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700447 fnew = false;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700448 break;
449 }
450 }
451
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700452 if (fnew)
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800453 list_add_tail(&newchannel->listentry,
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800454 &vmbus_connection.chn_list);
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700455
Dexuan Cuid6f591e2015-12-14 16:01:51 -0800456 mutex_unlock(&vmbus_connection.channel_mutex);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700457
Haiyang Zhang188963e2010-10-15 10:14:06 -0700458 if (!fnew) {
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700459 /*
460 * Check to see if this is a sub-channel.
461 */
462 if (newchannel->offermsg.offer.sub_channel_index != 0) {
463 /*
464 * Process the sub-channel.
465 */
466 newchannel->primary_channel = channel;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100467 spin_lock_irqsave(&channel->lock, flags);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700468 list_add_tail(&newchannel->sc_list, &channel->sc_list);
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800469 channel->num_sc++;
Vitaly Kuznetsov357e8362015-05-06 17:47:44 -0700470 spin_unlock_irqrestore(&channel->lock, flags);
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700471 } else
472 goto err_free_chan;
473 }
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700474
Dexuan Cui0f988292016-09-07 05:39:34 -0700475 dev_type = hv_get_dev_type(newchannel);
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800476
477 init_vp_index(newchannel, dev_type);
Vitaly Kuznetsovf38e7dd2015-05-06 17:47:45 -0700478
Dexuan Cui638fea32016-06-09 18:47:24 -0700479 hv_event_tasklet_disable(newchannel);
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700480 if (newchannel->target_cpu != get_cpu()) {
481 put_cpu();
482 smp_call_function_single(newchannel->target_cpu,
483 percpu_channel_enq,
484 newchannel, true);
485 } else {
486 percpu_channel_enq(newchannel);
487 put_cpu();
Hank Janssen3e7ee492009-07-13 16:02:34 -0700488 }
Dexuan Cui638fea32016-06-09 18:47:24 -0700489 hv_event_tasklet_enable(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700490
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700491 /*
K. Y. Srinivasan42dceeb2013-08-26 14:08:58 -0700492 * This state is used to indicate a successful open
493 * so that when we do close the channel normally, we
494 * can cleanup properly
495 */
496 newchannel->state = CHANNEL_OPEN_STATE;
497
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700498 if (!fnew) {
499 if (channel->sc_creation_callback != NULL)
500 channel->sc_creation_callback(newchannel);
501 return;
502 }
503
K. Y. Srinivasan42dceeb2013-08-26 14:08:58 -0700504 /*
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700505 * Start the process of binding this offer to the driver
506 * We need to set the DeviceObject field before calling
Haiyang Zhang646f1ea2011-01-26 12:12:10 -0800507 * vmbus_child_dev_add()
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700508 */
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700509 newchannel->device_obj = vmbus_device_create(
Haiyang Zhang767dff62011-01-26 12:12:12 -0800510 &newchannel->offermsg.offer.if_type,
511 &newchannel->offermsg.offer.if_instance,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700512 newchannel);
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100513 if (!newchannel->device_obj)
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800514 goto err_deq_chan;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700515
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800516 newchannel->device_obj->device_id = dev_type;
Bill Pemberton454f18a2009-07-27 16:47:24 -0400517 /*
518 * Add the new device to the bus. This will kick off device-driver
519 * binding which eventually invokes the device driver's AddDevice()
520 * method.
521 */
Dexuan Cui85d9aa72016-01-27 22:29:43 -0800522 mutex_lock(&vmbus_connection.channel_mutex);
523 ret = vmbus_device_register(newchannel->device_obj);
524 mutex_unlock(&vmbus_connection.channel_mutex);
525
526 if (ret != 0) {
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700527 pr_err("unable to add child device object (relid %d)\n",
528 newchannel->offermsg.child_relid);
529 kfree(newchannel->device_obj);
530 goto err_deq_chan;
531 }
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100532 return;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800533
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800534err_deq_chan:
Dexuan Cuid6f591e2015-12-14 16:01:51 -0800535 mutex_lock(&vmbus_connection.channel_mutex);
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800536 list_del(&newchannel->listentry);
Dexuan Cuid6f591e2015-12-14 16:01:51 -0800537 mutex_unlock(&vmbus_connection.channel_mutex);
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800538
Dexuan Cui638fea32016-06-09 18:47:24 -0700539 hv_event_tasklet_disable(newchannel);
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800540 if (newchannel->target_cpu != get_cpu()) {
541 put_cpu();
542 smp_call_function_single(newchannel->target_cpu,
543 percpu_channel_deq, newchannel, true);
544 } else {
545 percpu_channel_deq(newchannel);
546 put_cpu();
547 }
Dexuan Cui638fea32016-06-09 18:47:24 -0700548 hv_event_tasklet_enable(newchannel);
549
550 vmbus_release_relid(newchannel->offermsg.child_relid);
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800551
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100552err_free_chan:
553 free_channel(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700554}
555
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800556/*
557 * We use this state to statically distribute the channel interrupt load.
558 */
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700559static int next_numa_node_id;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800560
561/*
562 * Starting with Win8, we can statically distribute the incoming
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700563 * channel interrupt load by binding a channel to VCPU.
564 * We do this in a hierarchical fashion:
565 * First distribute the primary channels across available NUMA nodes
566 * and then distribute the subchannels amongst the CPUs in the NUMA
567 * node assigned to the primary channel.
568 *
569 * For pre-win8 hosts or non-performance critical channels we assign the
570 * first CPU in the first NUMA node.
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800571 */
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800572static void init_vp_index(struct vmbus_channel *channel, u16 dev_type)
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800573{
574 u32 cur_cpu;
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800575 bool perf_chn = vmbus_devs[dev_type].perf_device;
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700576 struct vmbus_channel *primary = channel->primary_channel;
577 int next_node;
578 struct cpumask available_mask;
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700579 struct cpumask *alloced_mask;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800580
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800581 if ((vmbus_proto_version == VERSION_WS2008) ||
582 (vmbus_proto_version == VERSION_WIN7) || (!perf_chn)) {
583 /*
584 * Prior to win8, all channel interrupts are
585 * delivered on cpu 0.
586 * Also if the channel is not a performance critical
587 * channel, bind it to cpu 0.
588 */
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700589 channel->numa_node = 0;
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700590 channel->target_cpu = 0;
K. Y. Srinivasan9c6e64a2015-05-30 23:37:47 -0700591 channel->target_vp = hv_context.vp_index[0];
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700592 return;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800593 }
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700594
595 /*
K. Y. Srinivasan509879b2016-09-02 05:58:23 -0700596 * Based on the channel affinity policy, we will assign the NUMA
597 * nodes.
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700598 */
K. Y. Srinivasan509879b2016-09-02 05:58:23 -0700599
600 if ((channel->affinity_policy == HV_BALANCED) || (!primary)) {
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700601 while (true) {
602 next_node = next_numa_node_id++;
K. Y. Srinivasan509879b2016-09-02 05:58:23 -0700603 if (next_node == nr_node_ids) {
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700604 next_node = next_numa_node_id = 0;
K. Y. Srinivasan509879b2016-09-02 05:58:23 -0700605 continue;
606 }
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700607 if (cpumask_empty(cpumask_of_node(next_node)))
608 continue;
609 break;
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700610 }
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700611 channel->numa_node = next_node;
612 primary = channel;
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700613 }
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700614 alloced_mask = &hv_context.hv_numa_map[primary->numa_node];
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700615
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700616 if (cpumask_weight(alloced_mask) ==
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700617 cpumask_weight(cpumask_of_node(primary->numa_node))) {
618 /*
619 * We have cycled through all the CPUs in the node;
620 * reset the alloced map.
621 */
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700622 cpumask_clear(alloced_mask);
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700623 }
624
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700625 cpumask_xor(&available_mask, alloced_mask,
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700626 cpumask_of_node(primary->numa_node));
627
Dexuan Cui3b711072015-08-05 00:52:39 -0700628 cur_cpu = -1;
Vitaly Kuznetsov79fd8e72016-01-27 22:29:34 -0800629
K. Y. Srinivasan509879b2016-09-02 05:58:23 -0700630 if (primary->affinity_policy == HV_LOCALIZED) {
631 /*
632 * Normally Hyper-V host doesn't create more subchannels
633 * than there are VCPUs on the node but it is possible when not
634 * all present VCPUs on the node are initialized by guest.
635 * Clear the alloced_cpus_in_node to start over.
636 */
637 if (cpumask_equal(&primary->alloced_cpus_in_node,
638 cpumask_of_node(primary->numa_node)))
639 cpumask_clear(&primary->alloced_cpus_in_node);
640 }
Vitaly Kuznetsov79fd8e72016-01-27 22:29:34 -0800641
Dexuan Cui3b711072015-08-05 00:52:39 -0700642 while (true) {
643 cur_cpu = cpumask_next(cur_cpu, &available_mask);
644 if (cur_cpu >= nr_cpu_ids) {
645 cur_cpu = -1;
646 cpumask_copy(&available_mask,
647 cpumask_of_node(primary->numa_node));
648 continue;
649 }
650
K. Y. Srinivasan509879b2016-09-02 05:58:23 -0700651 if (primary->affinity_policy == HV_LOCALIZED) {
652 /*
653 * NOTE: in the case of sub-channel, we clear the
654 * sub-channel related bit(s) in
655 * primary->alloced_cpus_in_node in
656 * hv_process_channel_removal(), so when we
657 * reload drivers like hv_netvsc in SMP guest, here
658 * we're able to re-allocate
659 * bit from primary->alloced_cpus_in_node.
660 */
661 if (!cpumask_test_cpu(cur_cpu,
662 &primary->alloced_cpus_in_node)) {
663 cpumask_set_cpu(cur_cpu,
664 &primary->alloced_cpus_in_node);
665 cpumask_set_cpu(cur_cpu, alloced_mask);
666 break;
667 }
668 } else {
Dexuan Cui3b711072015-08-05 00:52:39 -0700669 cpumask_set_cpu(cur_cpu, alloced_mask);
670 break;
671 }
672 }
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700673
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700674 channel->target_cpu = cur_cpu;
675 channel->target_vp = hv_context.vp_index[cur_cpu];
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800676}
677
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800678static void vmbus_wait_for_unload(void)
679{
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -0700680 int cpu;
681 void *page_addr;
682 struct hv_message *msg;
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800683 struct vmbus_channel_message_header *hdr;
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -0700684 u32 message_type;
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800685
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -0700686 /*
687 * CHANNELMSG_UNLOAD_RESPONSE is always delivered to the CPU which was
688 * used for initial contact or to CPU0 depending on host version. When
689 * we're crashing on a different CPU let's hope that IRQ handler on
690 * the cpu which receives CHANNELMSG_UNLOAD_RESPONSE is still
691 * functional and vmbus_unload_response() will complete
692 * vmbus_connection.unload_event. If not, the last thing we can do is
693 * read message pages for all CPUs directly.
694 */
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800695 while (1) {
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -0700696 if (completion_done(&vmbus_connection.unload_event))
697 break;
698
699 for_each_online_cpu(cpu) {
700 page_addr = hv_context.synic_message_page[cpu];
701 msg = (struct hv_message *)page_addr +
702 VMBUS_MESSAGE_SINT;
703
704 message_type = READ_ONCE(msg->header.message_type);
705 if (message_type == HVMSG_NONE)
706 continue;
707
708 hdr = (struct vmbus_channel_message_header *)
709 msg->u.payload;
710
711 if (hdr->msgtype == CHANNELMSG_UNLOAD_RESPONSE)
712 complete(&vmbus_connection.unload_event);
713
714 vmbus_signal_eom(msg, message_type);
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800715 }
716
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -0700717 mdelay(10);
718 }
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800719
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -0700720 /*
721 * We're crashing and already got the UNLOAD_RESPONSE, cleanup all
722 * maybe-pending messages on all CPUs to be able to receive new
723 * messages after we reconnect.
724 */
725 for_each_online_cpu(cpu) {
726 page_addr = hv_context.synic_message_page[cpu];
727 msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT;
728 msg->header.message_type = HVMSG_NONE;
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800729 }
730}
731
Hank Janssen3e189512010-03-04 22:11:00 +0000732/*
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700733 * vmbus_unload_response - Handler for the unload response.
734 */
735static void vmbus_unload_response(struct vmbus_channel_message_header *hdr)
736{
737 /*
738 * This is a global event; just wakeup the waiting thread.
739 * Once we successfully unload, we can cleanup the monitor state.
740 */
741 complete(&vmbus_connection.unload_event);
742}
743
Vitaly Kuznetsov75ff3a82016-02-26 15:13:16 -0800744void vmbus_initiate_unload(bool crash)
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700745{
746 struct vmbus_channel_message_header hdr;
747
Vitaly Kuznetsov4a542432015-08-01 16:08:19 -0700748 /* Pre-Win2012R2 hosts don't support reconnect */
749 if (vmbus_proto_version < VERSION_WIN8_1)
750 return;
751
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700752 init_completion(&vmbus_connection.unload_event);
753 memset(&hdr, 0, sizeof(struct vmbus_channel_message_header));
754 hdr.msgtype = CHANNELMSG_UNLOAD;
Vitaly Kuznetsov65013a92016-12-07 01:16:24 -0800755 vmbus_post_msg(&hdr, sizeof(struct vmbus_channel_message_header),
756 !crash);
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700757
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800758 /*
759 * vmbus_initiate_unload() is also called on crash and the crash can be
760 * happening in an interrupt context, where scheduling is impossible.
761 */
Vitaly Kuznetsov75ff3a82016-02-26 15:13:16 -0800762 if (!crash)
Vitaly Kuznetsov41571912016-01-27 22:29:35 -0800763 wait_for_completion(&vmbus_connection.unload_event);
764 else
765 vmbus_wait_for_unload();
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700766}
767
768/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700769 * vmbus_onoffer - Handler for channel offers from vmbus in parent partition.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700770 *
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700771 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700772static void vmbus_onoffer(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700773{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700774 struct vmbus_channel_offer_channel *offer;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700775 struct vmbus_channel *newchannel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700776
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700777 offer = (struct vmbus_channel_offer_channel *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700778
Bill Pemberton454f18a2009-07-27 16:47:24 -0400779 /* Allocate the channel object and save this offer. */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700780 newchannel = alloc_channel();
Haiyang Zhang188963e2010-10-15 10:14:06 -0700781 if (!newchannel) {
K. Y. Srinivasanb1f6b0a2017-03-13 15:57:09 -0700782 vmbus_release_relid(offer->child_relid);
Hank Janssen0a466182011-03-29 13:58:47 -0700783 pr_err("Unable to allocate channel object\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700784 return;
785 }
786
K. Y. Srinivasan132368b2012-12-01 06:46:33 -0800787 /*
788 * By default we setup state to enable batched
789 * reading. A specific service can choose to
790 * disable this prior to opening the channel.
791 */
792 newchannel->batched_reading = true;
793
K. Y. Srinivasanb3bf60c2012-12-01 06:46:45 -0800794 /*
795 * Setup state for signalling the host.
796 */
797 newchannel->sig_event = (struct hv_input_signal_event *)
798 (ALIGN((unsigned long)
799 &newchannel->sig_buf,
800 HV_HYPERCALL_PARAM_ALIGN));
801
802 newchannel->sig_event->connectionid.asu32 = 0;
803 newchannel->sig_event->connectionid.u.id = VMBUS_EVENT_CONNECTION_ID;
804 newchannel->sig_event->flag_number = 0;
805 newchannel->sig_event->rsvdz = 0;
806
807 if (vmbus_proto_version != VERSION_WS2008) {
808 newchannel->is_dedicated_interrupt =
809 (offer->is_dedicated_interrupt != 0);
810 newchannel->sig_event->connectionid.u.id =
811 offer->connection_id;
812 }
813
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800814 memcpy(&newchannel->offermsg, offer,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700815 sizeof(struct vmbus_channel_offer_channel));
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800816 newchannel->monitor_grp = (u8)offer->monitorid / 32;
817 newchannel->monitor_bit = (u8)offer->monitorid % 32;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700818
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800819 vmbus_process_offer(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700820}
821
Hank Janssen3e189512010-03-04 22:11:00 +0000822/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700823 * vmbus_onoffer_rescind - Rescind offer handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700824 *
825 * We queue a work item to process this offer synchronously
826 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700827static void vmbus_onoffer_rescind(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700828{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700829 struct vmbus_channel_rescind_offer *rescind;
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700830 struct vmbus_channel *channel;
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700831 unsigned long flags;
832 struct device *dev;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700833
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700834 rescind = (struct vmbus_channel_rescind_offer *)hdr;
Dexuan Cui85d9aa72016-01-27 22:29:43 -0800835
836 mutex_lock(&vmbus_connection.channel_mutex);
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700837 channel = relid2channel(rescind->child_relid);
Hank Janssen98e08702011-03-29 13:58:44 -0700838
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800839 if (channel == NULL) {
Dexuan Cuif52078c2015-12-14 16:01:50 -0800840 /*
841 * This is very impossible, because in
842 * vmbus_process_offer(), we have already invoked
843 * vmbus_release_relid() on error.
844 */
Dexuan Cui85d9aa72016-01-27 22:29:43 -0800845 goto out;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800846 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700847
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700848 spin_lock_irqsave(&channel->lock, flags);
849 channel->rescind = true;
850 spin_unlock_irqrestore(&channel->lock, flags);
851
K. Y. Srinivasan728fe692016-12-22 16:54:00 -0800852 vmbus_rescind_cleanup(channel);
853
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700854 if (channel->device_obj) {
Dexuan Cui499e8402016-01-27 22:29:42 -0800855 if (channel->chn_rescind_callback) {
856 channel->chn_rescind_callback(channel);
Dexuan Cui85d9aa72016-01-27 22:29:43 -0800857 goto out;
Dexuan Cui499e8402016-01-27 22:29:42 -0800858 }
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700859 /*
860 * We will have to unregister this device from the
861 * driver core.
862 */
863 dev = get_device(&channel->device_obj->device);
864 if (dev) {
865 vmbus_device_unregister(channel->device_obj);
866 put_device(dev);
867 }
868 } else {
869 hv_process_channel_removal(channel,
870 channel->offermsg.child_relid);
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800871 }
Dexuan Cui85d9aa72016-01-27 22:29:43 -0800872
873out:
874 mutex_unlock(&vmbus_connection.channel_mutex);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700875}
876
Dexuan Cui85d9aa72016-01-27 22:29:43 -0800877void vmbus_hvsock_device_unregister(struct vmbus_channel *channel)
878{
879 mutex_lock(&vmbus_connection.channel_mutex);
880
881 BUG_ON(!is_hvsock_channel(channel));
882
883 channel->rescind = true;
884 vmbus_device_unregister(channel->device_obj);
885
886 mutex_unlock(&vmbus_connection.channel_mutex);
887}
888EXPORT_SYMBOL_GPL(vmbus_hvsock_device_unregister);
889
890
Hank Janssen3e189512010-03-04 22:11:00 +0000891/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700892 * vmbus_onoffers_delivered -
893 * This is invoked when all offers have been delivered.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700894 *
895 * Nothing to do here.
896 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700897static void vmbus_onoffers_delivered(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700898 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700899{
Hank Janssen3e7ee492009-07-13 16:02:34 -0700900}
901
Hank Janssen3e189512010-03-04 22:11:00 +0000902/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700903 * vmbus_onopen_result - Open result handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700904 *
905 * This is invoked when we received a response to our channel open request.
906 * Find the matching request, copy the response and signal the requesting
907 * thread.
908 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700909static void vmbus_onopen_result(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700910{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700911 struct vmbus_channel_open_result *result;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700912 struct vmbus_channel_msginfo *msginfo;
913 struct vmbus_channel_message_header *requestheader;
914 struct vmbus_channel_open_channel *openmsg;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700915 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700916
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700917 result = (struct vmbus_channel_open_result *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700918
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700919 /*
920 * Find the open msg, copy the result and signal/unblock the wait event
921 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800922 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700923
Hank Janssenebb61e52011-02-18 12:39:57 -0800924 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
925 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700926 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800927 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700928
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800929 if (requestheader->msgtype == CHANNELMSG_OPENCHANNEL) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700930 openmsg =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800931 (struct vmbus_channel_open_channel *)msginfo->msg;
932 if (openmsg->child_relid == result->child_relid &&
933 openmsg->openid == result->openid) {
934 memcpy(&msginfo->response.open_result,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700935 result,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700936 sizeof(
937 struct vmbus_channel_open_result));
938 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700939 break;
940 }
941 }
942 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800943 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700944}
945
Hank Janssen3e189512010-03-04 22:11:00 +0000946/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700947 * vmbus_ongpadl_created - GPADL created handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700948 *
949 * This is invoked when we received a response to our gpadl create request.
950 * Find the matching request, copy the response and signal the requesting
951 * thread.
952 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700953static void vmbus_ongpadl_created(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700954{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700955 struct vmbus_channel_gpadl_created *gpadlcreated;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700956 struct vmbus_channel_msginfo *msginfo;
957 struct vmbus_channel_message_header *requestheader;
958 struct vmbus_channel_gpadl_header *gpadlheader;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700959 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700960
Haiyang Zhang188963e2010-10-15 10:14:06 -0700961 gpadlcreated = (struct vmbus_channel_gpadl_created *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700962
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700963 /*
964 * Find the establish msg, copy the result and signal/unblock the wait
965 * event
966 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800967 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700968
Hank Janssenebb61e52011-02-18 12:39:57 -0800969 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
970 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700971 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800972 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700973
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800974 if (requestheader->msgtype == CHANNELMSG_GPADL_HEADER) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700975 gpadlheader =
976 (struct vmbus_channel_gpadl_header *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700977
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800978 if ((gpadlcreated->child_relid ==
979 gpadlheader->child_relid) &&
980 (gpadlcreated->gpadl == gpadlheader->gpadl)) {
981 memcpy(&msginfo->response.gpadl_created,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700982 gpadlcreated,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700983 sizeof(
984 struct vmbus_channel_gpadl_created));
985 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700986 break;
987 }
988 }
989 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800990 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700991}
992
Hank Janssen3e189512010-03-04 22:11:00 +0000993/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700994 * vmbus_ongpadl_torndown - GPADL torndown handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700995 *
996 * This is invoked when we received a response to our gpadl teardown request.
997 * Find the matching request, copy the response and signal the requesting
998 * thread.
999 */
Haiyang Zhange98cb272010-10-15 10:14:07 -07001000static void vmbus_ongpadl_torndown(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -07001001 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001002{
Haiyang Zhang188963e2010-10-15 10:14:06 -07001003 struct vmbus_channel_gpadl_torndown *gpadl_torndown;
Haiyang Zhang188963e2010-10-15 10:14:06 -07001004 struct vmbus_channel_msginfo *msginfo;
1005 struct vmbus_channel_message_header *requestheader;
1006 struct vmbus_channel_gpadl_teardown *gpadl_teardown;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -07001007 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001008
Haiyang Zhang188963e2010-10-15 10:14:06 -07001009 gpadl_torndown = (struct vmbus_channel_gpadl_torndown *)hdr;
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -07001010
1011 /*
1012 * Find the open msg, copy the result and signal/unblock the wait event
1013 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -08001014 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001015
Hank Janssenebb61e52011-02-18 12:39:57 -08001016 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
1017 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -07001018 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -08001019 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001020
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -08001021 if (requestheader->msgtype == CHANNELMSG_GPADL_TEARDOWN) {
Haiyang Zhang188963e2010-10-15 10:14:06 -07001022 gpadl_teardown =
1023 (struct vmbus_channel_gpadl_teardown *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001024
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -08001025 if (gpadl_torndown->gpadl == gpadl_teardown->gpadl) {
1026 memcpy(&msginfo->response.gpadl_torndown,
Haiyang Zhang188963e2010-10-15 10:14:06 -07001027 gpadl_torndown,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -07001028 sizeof(
1029 struct vmbus_channel_gpadl_torndown));
1030 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001031 break;
1032 }
1033 }
1034 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -08001035 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001036}
1037
Hank Janssen3e189512010-03-04 22:11:00 +00001038/*
Haiyang Zhange98cb272010-10-15 10:14:07 -07001039 * vmbus_onversion_response - Version response handler
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -07001040 *
1041 * This is invoked when we received a response to our initiate contact request.
1042 * Find the matching request, copy the response and signal the requesting
1043 * thread.
1044 */
Haiyang Zhange98cb272010-10-15 10:14:07 -07001045static void vmbus_onversion_response(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -07001046 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001047{
Haiyang Zhang188963e2010-10-15 10:14:06 -07001048 struct vmbus_channel_msginfo *msginfo;
1049 struct vmbus_channel_message_header *requestheader;
Haiyang Zhang188963e2010-10-15 10:14:06 -07001050 struct vmbus_channel_version_response *version_response;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -07001051 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001052
Haiyang Zhang188963e2010-10-15 10:14:06 -07001053 version_response = (struct vmbus_channel_version_response *)hdr;
Haiyang Zhang15b2f642011-01-26 12:12:07 -08001054 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001055
Hank Janssenebb61e52011-02-18 12:39:57 -08001056 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
1057 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -07001058 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -08001059 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001060
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -08001061 if (requestheader->msgtype ==
1062 CHANNELMSG_INITIATE_CONTACT) {
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -08001063 memcpy(&msginfo->response.version_response,
Haiyang Zhang188963e2010-10-15 10:14:06 -07001064 version_response,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -07001065 sizeof(struct vmbus_channel_version_response));
K. Y. Srinivasan9568a192011-05-10 07:55:39 -07001066 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001067 }
1068 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -08001069 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001070}
1071
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -07001072/* Channel message dispatch table */
Dexuan Cui652594c2015-03-27 09:10:08 -07001073struct vmbus_channel_message_table_entry
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -07001074 channel_message_table[CHANNELMSG_COUNT] = {
Dexuan Cui652594c2015-03-27 09:10:08 -07001075 {CHANNELMSG_INVALID, 0, NULL},
1076 {CHANNELMSG_OFFERCHANNEL, 0, vmbus_onoffer},
1077 {CHANNELMSG_RESCIND_CHANNELOFFER, 0, vmbus_onoffer_rescind},
1078 {CHANNELMSG_REQUESTOFFERS, 0, NULL},
1079 {CHANNELMSG_ALLOFFERS_DELIVERED, 1, vmbus_onoffers_delivered},
1080 {CHANNELMSG_OPENCHANNEL, 0, NULL},
1081 {CHANNELMSG_OPENCHANNEL_RESULT, 1, vmbus_onopen_result},
1082 {CHANNELMSG_CLOSECHANNEL, 0, NULL},
1083 {CHANNELMSG_GPADL_HEADER, 0, NULL},
1084 {CHANNELMSG_GPADL_BODY, 0, NULL},
1085 {CHANNELMSG_GPADL_CREATED, 1, vmbus_ongpadl_created},
1086 {CHANNELMSG_GPADL_TEARDOWN, 0, NULL},
1087 {CHANNELMSG_GPADL_TORNDOWN, 1, vmbus_ongpadl_torndown},
1088 {CHANNELMSG_RELID_RELEASED, 0, NULL},
1089 {CHANNELMSG_INITIATE_CONTACT, 0, NULL},
1090 {CHANNELMSG_VERSION_RESPONSE, 1, vmbus_onversion_response},
1091 {CHANNELMSG_UNLOAD, 0, NULL},
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -07001092 {CHANNELMSG_UNLOAD_RESPONSE, 1, vmbus_unload_response},
Dexuan Cui5c23a1a2016-01-27 22:29:40 -08001093 {CHANNELMSG_18, 0, NULL},
1094 {CHANNELMSG_19, 0, NULL},
1095 {CHANNELMSG_20, 0, NULL},
1096 {CHANNELMSG_TL_CONNECT_REQUEST, 0, NULL},
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -07001097};
1098
Hank Janssen3e189512010-03-04 22:11:00 +00001099/*
Haiyang Zhange98cb272010-10-15 10:14:07 -07001100 * vmbus_onmessage - Handler for channel protocol messages.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -07001101 *
1102 * This is invoked in the vmbus worker thread context.
1103 */
Haiyang Zhange98cb272010-10-15 10:14:07 -07001104void vmbus_onmessage(void *context)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001105{
Haiyang Zhang188963e2010-10-15 10:14:06 -07001106 struct hv_message *msg = context;
Greg Kroah-Hartman82250212009-08-26 15:16:04 -07001107 struct vmbus_channel_message_header *hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001108 int size;
1109
Haiyang Zhangf6feebe2010-11-08 14:04:39 -08001110 hdr = (struct vmbus_channel_message_header *)msg->u.payload;
1111 size = msg->header.payload_size;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001112
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -08001113 if (hdr->msgtype >= CHANNELMSG_COUNT) {
Hank Janssen0a466182011-03-29 13:58:47 -07001114 pr_err("Received invalid channel message type %d size %d\n",
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -08001115 hdr->msgtype, size);
Greg Kroah-Hartman04f50c42009-07-16 12:35:37 -07001116 print_hex_dump_bytes("", DUMP_PREFIX_NONE,
Haiyang Zhangf6feebe2010-11-08 14:04:39 -08001117 (unsigned char *)msg->u.payload, size);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001118 return;
1119 }
1120
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -07001121 if (channel_message_table[hdr->msgtype].message_handler)
1122 channel_message_table[hdr->msgtype].message_handler(hdr);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001123 else
Hank Janssen0a466182011-03-29 13:58:47 -07001124 pr_err("Unhandled channel message type %d\n", hdr->msgtype);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001125}
1126
Hank Janssen3e189512010-03-04 22:11:00 +00001127/*
Haiyang Zhange98cb272010-10-15 10:14:07 -07001128 * vmbus_request_offers - Send a request to get all our pending offers.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -07001129 */
Haiyang Zhange98cb272010-10-15 10:14:07 -07001130int vmbus_request_offers(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001131{
Greg Kroah-Hartman82250212009-08-26 15:16:04 -07001132 struct vmbus_channel_message_header *msg;
Haiyang Zhang188963e2010-10-15 10:14:06 -07001133 struct vmbus_channel_msginfo *msginfo;
Nicholas Mc Guire51e51812015-02-27 11:26:02 -08001134 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001135
Haiyang Zhang188963e2010-10-15 10:14:06 -07001136 msginfo = kmalloc(sizeof(*msginfo) +
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -07001137 sizeof(struct vmbus_channel_message_header),
1138 GFP_KERNEL);
Haiyang Zhang188963e2010-10-15 10:14:06 -07001139 if (!msginfo)
Bill Pemberton75910f22010-05-05 15:27:31 -04001140 return -ENOMEM;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001141
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -08001142 msg = (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001143
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -08001144 msg->msgtype = CHANNELMSG_REQUESTOFFERS;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001145
Hank Janssen3e7ee492009-07-13 16:02:34 -07001146
Vitaly Kuznetsov65013a92016-12-07 01:16:24 -08001147 ret = vmbus_post_msg(msg, sizeof(struct vmbus_channel_message_header),
1148 true);
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -07001149 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -07001150 pr_err("Unable to request offers - %d\n", ret);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001151
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -08001152 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001153 }
Hank Janssen3e7ee492009-07-13 16:02:34 -07001154
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -08001155cleanup:
Ilia Mirkindd9b15d2011-03-13 00:29:00 -05001156 kfree(msginfo);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001157
Hank Janssen3e7ee492009-07-13 16:02:34 -07001158 return ret;
1159}
1160
K. Y. Srinivasane68d2972013-05-23 12:02:32 -07001161/*
1162 * Retrieve the (sub) channel on which to send an outgoing request.
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -08001163 * When a primary channel has multiple sub-channels, we try to
1164 * distribute the load equally amongst all available channels.
K. Y. Srinivasane68d2972013-05-23 12:02:32 -07001165 */
1166struct vmbus_channel *vmbus_get_outgoing_channel(struct vmbus_channel *primary)
1167{
1168 struct list_head *cur, *tmp;
K. Y. Srinivasan87712bf82014-12-14 23:34:51 -08001169 int cur_cpu;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -07001170 struct vmbus_channel *cur_channel;
1171 struct vmbus_channel *outgoing_channel = primary;
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -08001172 int next_channel;
1173 int i = 1;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -07001174
1175 if (list_empty(&primary->sc_list))
1176 return outgoing_channel;
1177
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -08001178 next_channel = primary->next_oc++;
1179
1180 if (next_channel > (primary->num_sc)) {
1181 primary->next_oc = 0;
1182 return outgoing_channel;
1183 }
1184
K. Y. Srinivasan87712bf82014-12-14 23:34:51 -08001185 cur_cpu = hv_context.vp_index[get_cpu()];
1186 put_cpu();
K. Y. Srinivasane68d2972013-05-23 12:02:32 -07001187 list_for_each_safe(cur, tmp, &primary->sc_list) {
1188 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
1189 if (cur_channel->state != CHANNEL_OPENED_STATE)
1190 continue;
1191
1192 if (cur_channel->target_vp == cur_cpu)
1193 return cur_channel;
1194
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -08001195 if (i == next_channel)
1196 return cur_channel;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -07001197
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -08001198 i++;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -07001199 }
1200
1201 return outgoing_channel;
1202}
1203EXPORT_SYMBOL_GPL(vmbus_get_outgoing_channel);
1204
1205static void invoke_sc_cb(struct vmbus_channel *primary_channel)
1206{
1207 struct list_head *cur, *tmp;
1208 struct vmbus_channel *cur_channel;
1209
1210 if (primary_channel->sc_creation_callback == NULL)
1211 return;
1212
1213 list_for_each_safe(cur, tmp, &primary_channel->sc_list) {
1214 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
1215
1216 primary_channel->sc_creation_callback(cur_channel);
1217 }
1218}
1219
1220void vmbus_set_sc_create_callback(struct vmbus_channel *primary_channel,
1221 void (*sc_cr_cb)(struct vmbus_channel *new_sc))
1222{
1223 primary_channel->sc_creation_callback = sc_cr_cb;
1224}
1225EXPORT_SYMBOL_GPL(vmbus_set_sc_create_callback);
1226
1227bool vmbus_are_subchannels_present(struct vmbus_channel *primary)
1228{
1229 bool ret;
1230
1231 ret = !list_empty(&primary->sc_list);
1232
1233 if (ret) {
1234 /*
1235 * Invoke the callback on sub-channel creation.
1236 * This will present a uniform interface to the
1237 * clients.
1238 */
1239 invoke_sc_cb(primary);
1240 }
1241
1242 return ret;
1243}
1244EXPORT_SYMBOL_GPL(vmbus_are_subchannels_present);
Dexuan Cui499e8402016-01-27 22:29:42 -08001245
1246void vmbus_set_chn_rescind_callback(struct vmbus_channel *channel,
1247 void (*chn_rescind_cb)(struct vmbus_channel *))
1248{
1249 channel->chn_rescind_callback = chn_rescind_cb;
1250}
1251EXPORT_SYMBOL_GPL(vmbus_set_chn_rescind_callback);