blob: 652afd11a9efdceb545add8bad4980b41f698340 [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>
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -080024#include <linux/sched.h>
25#include <linux/wait.h>
Greg Kroah-Hartmana0086dc2009-08-17 17:22:08 -070026#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Bill Pemberton53af5452009-09-11 21:46:44 -040028#include <linux/list.h>
Hank Janssenc88c4e42010-05-04 15:55:05 -070029#include <linux/module.h>
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +000030#include <linux/completion.h>
Greg Kroah-Hartman46a97192011-10-04 12:29:52 -070031#include <linux/hyperv.h>
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070032
K. Y. Srinivasan0f2a6612011-05-12 19:34:28 -070033#include "hyperv_vmbus.h"
Hank Janssen3e7ee492009-07-13 16:02:34 -070034
Vitaly Kuznetsovf38e7dd2015-05-06 17:47:45 -070035static void init_vp_index(struct vmbus_channel *channel,
36 const uuid_le *type_guid);
37
Hank Janssenc88c4e42010-05-04 15:55:05 -070038/**
Greg Kroah-Hartmanda0e9632011-10-11 08:42:28 -060039 * vmbus_prep_negotiate_resp() - Create default response for Hyper-V Negotiate message
Hank Janssenc88c4e42010-05-04 15:55:05 -070040 * @icmsghdrp: Pointer to msg header structure
41 * @icmsg_negotiate: Pointer to negotiate message structure
42 * @buf: Raw buffer channel data
43 *
44 * @icmsghdrp is of type &struct icmsg_hdr.
45 * @negop is of type &struct icmsg_negotiate.
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070046 * Set up and fill in default negotiate response message.
47 *
K. Y. Srinivasan67413352013-07-02 10:31:30 -070048 * The fw_version specifies the framework version that
49 * we can support and srv_version specifies the service
50 * version we can support.
Hank Janssenc88c4e42010-05-04 15:55:05 -070051 *
52 * Mainly used by Hyper-V drivers.
53 */
K. Y. Srinivasan67413352013-07-02 10:31:30 -070054bool vmbus_prep_negotiate_resp(struct icmsg_hdr *icmsghdrp,
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070055 struct icmsg_negotiate *negop, u8 *buf,
K. Y. Srinivasan67413352013-07-02 10:31:30 -070056 int fw_version, int srv_version)
Hank Janssenc88c4e42010-05-04 15:55:05 -070057{
K. Y. Srinivasan67413352013-07-02 10:31:30 -070058 int icframe_major, icframe_minor;
59 int icmsg_major, icmsg_minor;
60 int fw_major, fw_minor;
61 int srv_major, srv_minor;
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070062 int i;
K. Y. Srinivasan67413352013-07-02 10:31:30 -070063 bool found_match = false;
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070064
K. Y. Srinivasana3605302012-05-12 13:44:57 -070065 icmsghdrp->icmsgsize = 0x10;
K. Y. Srinivasan67413352013-07-02 10:31:30 -070066 fw_major = (fw_version >> 16);
67 fw_minor = (fw_version & 0xFFFF);
68
69 srv_major = (srv_version >> 16);
70 srv_minor = (srv_version & 0xFFFF);
Hank Janssenc88c4e42010-05-04 15:55:05 -070071
K. Y. Srinivasana3605302012-05-12 13:44:57 -070072 negop = (struct icmsg_negotiate *)&buf[
73 sizeof(struct vmbuspipe_hdr) +
74 sizeof(struct icmsg_hdr)];
Hank Janssenc88c4e42010-05-04 15:55:05 -070075
K. Y. Srinivasan67413352013-07-02 10:31:30 -070076 icframe_major = negop->icframe_vercnt;
77 icframe_minor = 0;
78
79 icmsg_major = negop->icmsg_vercnt;
80 icmsg_minor = 0;
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070081
82 /*
83 * Select the framework version number we will
84 * support.
85 */
86
87 for (i = 0; i < negop->icframe_vercnt; i++) {
K. Y. Srinivasan67413352013-07-02 10:31:30 -070088 if ((negop->icversion_data[i].major == fw_major) &&
89 (negop->icversion_data[i].minor == fw_minor)) {
90 icframe_major = negop->icversion_data[i].major;
91 icframe_minor = negop->icversion_data[i].minor;
92 found_match = true;
93 }
Hank Janssenc88c4e42010-05-04 15:55:05 -070094 }
K. Y. Srinivasana3605302012-05-12 13:44:57 -070095
K. Y. Srinivasan67413352013-07-02 10:31:30 -070096 if (!found_match)
97 goto fw_error;
98
99 found_match = false;
100
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700101 for (i = negop->icframe_vercnt;
102 (i < negop->icframe_vercnt + negop->icmsg_vercnt); i++) {
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700103 if ((negop->icversion_data[i].major == srv_major) &&
104 (negop->icversion_data[i].minor == srv_minor)) {
105 icmsg_major = negop->icversion_data[i].major;
106 icmsg_minor = negop->icversion_data[i].minor;
107 found_match = true;
108 }
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700109 }
110
111 /*
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700112 * Respond with the framework and service
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700113 * version numbers we can support.
114 */
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700115
116fw_error:
117 if (!found_match) {
118 negop->icframe_vercnt = 0;
119 negop->icmsg_vercnt = 0;
120 } else {
121 negop->icframe_vercnt = 1;
122 negop->icmsg_vercnt = 1;
123 }
124
125 negop->icversion_data[0].major = icframe_major;
126 negop->icversion_data[0].minor = icframe_minor;
127 negop->icversion_data[1].major = icmsg_major;
128 negop->icversion_data[1].minor = icmsg_minor;
129 return found_match;
Hank Janssenc88c4e42010-05-04 15:55:05 -0700130}
K. Y. Srinivasana3605302012-05-12 13:44:57 -0700131
Greg Kroah-Hartmanda0e9632011-10-11 08:42:28 -0600132EXPORT_SYMBOL_GPL(vmbus_prep_negotiate_resp);
Hank Janssenc88c4e42010-05-04 15:55:05 -0700133
Hank Janssen3e189512010-03-04 22:11:00 +0000134/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700135 * alloc_channel - Allocate and initialize a vmbus channel object
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700136 */
Greg Kroah-Hartman50fe56d2010-10-20 15:51:57 -0700137static struct vmbus_channel *alloc_channel(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700138{
Vitaly Kuznetsovbc63b6f2015-02-27 11:25:52 -0800139 static atomic_t chan_num = ATOMIC_INIT(0);
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700140 struct vmbus_channel *channel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700141
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700142 channel = kzalloc(sizeof(*channel), GFP_ATOMIC);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700143 if (!channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700144 return NULL;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700145
Vitaly Kuznetsovbc63b6f2015-02-27 11:25:52 -0800146 channel->id = atomic_inc_return(&chan_num);
Greg Kroah-Hartman54411c42009-07-15 14:48:32 -0700147 spin_lock_init(&channel->inbound_lock);
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100148 spin_lock_init(&channel->lock);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700149
150 INIT_LIST_HEAD(&channel->sc_list);
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700151 INIT_LIST_HEAD(&channel->percpu_list);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700152
Hank Janssen3e7ee492009-07-13 16:02:34 -0700153 return channel;
154}
155
Hank Janssen3e189512010-03-04 22:11:00 +0000156/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700157 * free_channel - Release the resources used by the vmbus channel object
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700158 */
Greg Kroah-Hartman9f3e28e2011-10-11 09:40:01 -0600159static void free_channel(struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700160{
Dexuan Cuiaadc3782015-03-27 09:10:10 -0700161 kfree(channel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700162}
163
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700164static void percpu_channel_enq(void *arg)
165{
166 struct vmbus_channel *channel = arg;
167 int cpu = smp_processor_id();
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000168
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700169 list_add_tail(&channel->percpu_list, &hv_context.percpu_list[cpu]);
170}
171
172static void percpu_channel_deq(void *arg)
173{
174 struct vmbus_channel *channel = arg;
175
176 list_del(&channel->percpu_list);
177}
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000178
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800179
180void hv_process_channel_removal(struct vmbus_channel *channel, u32 relid)
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200181{
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800182 struct vmbus_channel_relid_released msg;
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700183 unsigned long flags;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700184 struct vmbus_channel *primary_channel;
Vitaly Kuznetsov04a258c2014-11-04 13:40:11 +0100185
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700186 memset(&msg, 0, sizeof(struct vmbus_channel_relid_released));
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800187 msg.child_relid = relid;
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700188 msg.header.msgtype = CHANNELMSG_RELID_RELEASED;
189 vmbus_post_msg(&msg, sizeof(struct vmbus_channel_relid_released));
190
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800191 if (channel == NULL)
192 return;
193
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700194 if (channel->target_cpu != get_cpu()) {
195 put_cpu();
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700196 smp_call_function_single(channel->target_cpu,
197 percpu_channel_deq, channel, true);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700198 } else {
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700199 percpu_channel_deq(channel);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700200 put_cpu();
201 }
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700202
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700203 if (channel->primary_channel == NULL) {
204 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
205 list_del(&channel->listentry);
206 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
Dexuan Cuica1c4b72015-08-13 17:07:03 -0700207
208 primary_channel = channel;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700209 } else {
210 primary_channel = channel->primary_channel;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100211 spin_lock_irqsave(&primary_channel->lock, flags);
K. Y. Srinivasan565ce642013-10-16 19:27:19 -0700212 list_del(&channel->sc_list);
Vitaly Kuznetsov357e8362015-05-06 17:47:44 -0700213 primary_channel->num_sc--;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100214 spin_unlock_irqrestore(&primary_channel->lock, flags);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700215 }
Dexuan Cuica1c4b72015-08-13 17:07:03 -0700216
217 /*
218 * We need to free the bit for init_vp_index() to work in the case
219 * of sub-channel, when we reload drivers like hv_netvsc.
220 */
221 cpumask_clear_cpu(channel->target_cpu,
222 &primary_channel->alloced_cpus_in_node);
223
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700224 free_channel(channel);
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200225}
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000226
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800227void vmbus_free_channels(void)
228{
Dexuan Cui813c5b72015-04-22 21:31:30 -0700229 struct vmbus_channel *channel, *tmp;
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800230
Dexuan Cui813c5b72015-04-22 21:31:30 -0700231 list_for_each_entry_safe(channel, tmp, &vmbus_connection.chn_list,
232 listentry) {
233 /* if we don't set rescind to true, vmbus_close_internal()
234 * won't invoke hv_process_channel_removal().
235 */
236 channel->rescind = true;
237
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800238 vmbus_device_unregister(channel->device_obj);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800239 }
240}
241
Hank Janssen3e189512010-03-04 22:11:00 +0000242/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700243 * vmbus_process_offer - Process the offer by creating a channel/device
Hank Janssenc88c4e42010-05-04 15:55:05 -0700244 * associated with this offer
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700245 */
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800246static void vmbus_process_offer(struct vmbus_channel *newchannel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700247{
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700248 struct vmbus_channel *channel;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700249 bool fnew = true;
Greg Kroah-Hartman0f5e44c2009-07-15 14:57:16 -0700250 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700251
Bill Pemberton454f18a2009-07-27 16:47:24 -0400252 /* Make sure this is a new offer */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800253 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700254
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800255 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700256 if (!uuid_le_cmp(channel->offermsg.offer.if_type,
257 newchannel->offermsg.offer.if_type) &&
258 !uuid_le_cmp(channel->offermsg.offer.if_instance,
259 newchannel->offermsg.offer.if_instance)) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700260 fnew = false;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700261 break;
262 }
263 }
264
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700265 if (fnew)
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800266 list_add_tail(&newchannel->listentry,
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800267 &vmbus_connection.chn_list);
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700268
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800269 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700270
Haiyang Zhang188963e2010-10-15 10:14:06 -0700271 if (!fnew) {
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700272 /*
273 * Check to see if this is a sub-channel.
274 */
275 if (newchannel->offermsg.offer.sub_channel_index != 0) {
276 /*
277 * Process the sub-channel.
278 */
279 newchannel->primary_channel = channel;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100280 spin_lock_irqsave(&channel->lock, flags);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700281 list_add_tail(&newchannel->sc_list, &channel->sc_list);
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800282 channel->num_sc++;
Vitaly Kuznetsov357e8362015-05-06 17:47:44 -0700283 spin_unlock_irqrestore(&channel->lock, flags);
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700284 } else
285 goto err_free_chan;
286 }
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700287
Vitaly Kuznetsovf38e7dd2015-05-06 17:47:45 -0700288 init_vp_index(newchannel, &newchannel->offermsg.offer.if_type);
289
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700290 if (newchannel->target_cpu != get_cpu()) {
291 put_cpu();
292 smp_call_function_single(newchannel->target_cpu,
293 percpu_channel_enq,
294 newchannel, true);
295 } else {
296 percpu_channel_enq(newchannel);
297 put_cpu();
Hank Janssen3e7ee492009-07-13 16:02:34 -0700298 }
299
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700300 /*
K. Y. Srinivasan42dceeb2013-08-26 14:08:58 -0700301 * This state is used to indicate a successful open
302 * so that when we do close the channel normally, we
303 * can cleanup properly
304 */
305 newchannel->state = CHANNEL_OPEN_STATE;
306
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700307 if (!fnew) {
308 if (channel->sc_creation_callback != NULL)
309 channel->sc_creation_callback(newchannel);
310 return;
311 }
312
K. Y. Srinivasan42dceeb2013-08-26 14:08:58 -0700313 /*
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700314 * Start the process of binding this offer to the driver
315 * We need to set the DeviceObject field before calling
Haiyang Zhang646f1ea2011-01-26 12:12:10 -0800316 * vmbus_child_dev_add()
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700317 */
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700318 newchannel->device_obj = vmbus_device_create(
Haiyang Zhang767dff62011-01-26 12:12:12 -0800319 &newchannel->offermsg.offer.if_type,
320 &newchannel->offermsg.offer.if_instance,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700321 newchannel);
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100322 if (!newchannel->device_obj)
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800323 goto err_deq_chan;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700324
Bill Pemberton454f18a2009-07-27 16:47:24 -0400325 /*
326 * Add the new device to the bus. This will kick off device-driver
327 * binding which eventually invokes the device driver's AddDevice()
328 * method.
329 */
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700330 if (vmbus_device_register(newchannel->device_obj) != 0) {
331 pr_err("unable to add child device object (relid %d)\n",
332 newchannel->offermsg.child_relid);
333 kfree(newchannel->device_obj);
334 goto err_deq_chan;
335 }
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100336 return;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800337
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800338err_deq_chan:
339 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
340 list_del(&newchannel->listentry);
341 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
342
343 if (newchannel->target_cpu != get_cpu()) {
344 put_cpu();
345 smp_call_function_single(newchannel->target_cpu,
346 percpu_channel_deq, newchannel, true);
347 } else {
348 percpu_channel_deq(newchannel);
349 put_cpu();
350 }
351
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100352err_free_chan:
353 free_channel(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700354}
355
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800356enum {
357 IDE = 0,
358 SCSI,
359 NIC,
K. Y. Srinivasan379e4f72015-08-01 16:08:21 -0700360 ND_NIC,
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800361 MAX_PERF_CHN,
362};
363
364/*
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800365 * This is an array of device_ids (device types) that are performance critical.
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800366 * We attempt to distribute the interrupt load for these devices across
367 * all available CPUs.
368 */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800369static const struct hv_vmbus_device_id hp_devs[] = {
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800370 /* IDE */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800371 { HV_IDE_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800372 /* Storage - SCSI */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800373 { HV_SCSI_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800374 /* Network */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800375 { HV_NIC_GUID, },
K. Y. Srinivasan04653a02015-02-27 11:26:05 -0800376 /* NetworkDirect Guest RDMA */
377 { HV_ND_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800378};
379
380
381/*
382 * We use this state to statically distribute the channel interrupt load.
383 */
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700384static int next_numa_node_id;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800385
386/*
387 * Starting with Win8, we can statically distribute the incoming
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700388 * channel interrupt load by binding a channel to VCPU.
389 * We do this in a hierarchical fashion:
390 * First distribute the primary channels across available NUMA nodes
391 * and then distribute the subchannels amongst the CPUs in the NUMA
392 * node assigned to the primary channel.
393 *
394 * For pre-win8 hosts or non-performance critical channels we assign the
395 * first CPU in the first NUMA node.
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800396 */
Linus Torvaldsf9da4552014-06-12 14:27:40 -0700397static void init_vp_index(struct vmbus_channel *channel, const uuid_le *type_guid)
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800398{
399 u32 cur_cpu;
400 int i;
401 bool perf_chn = false;
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700402 struct vmbus_channel *primary = channel->primary_channel;
403 int next_node;
404 struct cpumask available_mask;
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700405 struct cpumask *alloced_mask;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800406
407 for (i = IDE; i < MAX_PERF_CHN; i++) {
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800408 if (!memcmp(type_guid->b, hp_devs[i].guid,
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800409 sizeof(uuid_le))) {
410 perf_chn = true;
411 break;
412 }
413 }
414 if ((vmbus_proto_version == VERSION_WS2008) ||
415 (vmbus_proto_version == VERSION_WIN7) || (!perf_chn)) {
416 /*
417 * Prior to win8, all channel interrupts are
418 * delivered on cpu 0.
419 * Also if the channel is not a performance critical
420 * channel, bind it to cpu 0.
421 */
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700422 channel->numa_node = 0;
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700423 channel->target_cpu = 0;
K. Y. Srinivasan9c6e64a2015-05-30 23:37:47 -0700424 channel->target_vp = hv_context.vp_index[0];
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700425 return;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800426 }
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700427
428 /*
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700429 * We distribute primary channels evenly across all the available
430 * NUMA nodes and within the assigned NUMA node we will assign the
431 * first available CPU to the primary channel.
432 * The sub-channels will be assigned to the CPUs available in the
433 * NUMA node evenly.
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700434 */
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700435 if (!primary) {
436 while (true) {
437 next_node = next_numa_node_id++;
438 if (next_node == nr_node_ids)
439 next_node = next_numa_node_id = 0;
440 if (cpumask_empty(cpumask_of_node(next_node)))
441 continue;
442 break;
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700443 }
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700444 channel->numa_node = next_node;
445 primary = channel;
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700446 }
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700447 alloced_mask = &hv_context.hv_numa_map[primary->numa_node];
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700448
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700449 if (cpumask_weight(alloced_mask) ==
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700450 cpumask_weight(cpumask_of_node(primary->numa_node))) {
451 /*
452 * We have cycled through all the CPUs in the node;
453 * reset the alloced map.
454 */
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700455 cpumask_clear(alloced_mask);
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700456 }
457
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700458 cpumask_xor(&available_mask, alloced_mask,
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700459 cpumask_of_node(primary->numa_node));
460
Dexuan Cui3b711072015-08-05 00:52:39 -0700461 cur_cpu = -1;
462 while (true) {
463 cur_cpu = cpumask_next(cur_cpu, &available_mask);
464 if (cur_cpu >= nr_cpu_ids) {
465 cur_cpu = -1;
466 cpumask_copy(&available_mask,
467 cpumask_of_node(primary->numa_node));
468 continue;
469 }
470
Dexuan Cuica1c4b72015-08-13 17:07:03 -0700471 /*
472 * NOTE: in the case of sub-channel, we clear the sub-channel
473 * related bit(s) in primary->alloced_cpus_in_node in
474 * hv_process_channel_removal(), so when we reload drivers
475 * like hv_netvsc in SMP guest, here we're able to re-allocate
476 * bit from primary->alloced_cpus_in_node.
477 */
Dexuan Cui3b711072015-08-05 00:52:39 -0700478 if (!cpumask_test_cpu(cur_cpu,
479 &primary->alloced_cpus_in_node)) {
480 cpumask_set_cpu(cur_cpu,
481 &primary->alloced_cpus_in_node);
482 cpumask_set_cpu(cur_cpu, alloced_mask);
483 break;
484 }
485 }
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700486
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700487 channel->target_cpu = cur_cpu;
488 channel->target_vp = hv_context.vp_index[cur_cpu];
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800489}
490
Hank Janssen3e189512010-03-04 22:11:00 +0000491/*
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700492 * vmbus_unload_response - Handler for the unload response.
493 */
494static void vmbus_unload_response(struct vmbus_channel_message_header *hdr)
495{
496 /*
497 * This is a global event; just wakeup the waiting thread.
498 * Once we successfully unload, we can cleanup the monitor state.
499 */
500 complete(&vmbus_connection.unload_event);
501}
502
503void vmbus_initiate_unload(void)
504{
505 struct vmbus_channel_message_header hdr;
506
Vitaly Kuznetsov4a542432015-08-01 16:08:19 -0700507 /* Pre-Win2012R2 hosts don't support reconnect */
508 if (vmbus_proto_version < VERSION_WIN8_1)
509 return;
510
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700511 init_completion(&vmbus_connection.unload_event);
512 memset(&hdr, 0, sizeof(struct vmbus_channel_message_header));
513 hdr.msgtype = CHANNELMSG_UNLOAD;
514 vmbus_post_msg(&hdr, sizeof(struct vmbus_channel_message_header));
515
516 wait_for_completion(&vmbus_connection.unload_event);
517}
518
519/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700520 * vmbus_onoffer - Handler for channel offers from vmbus in parent partition.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700521 *
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700522 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700523static void vmbus_onoffer(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700524{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700525 struct vmbus_channel_offer_channel *offer;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700526 struct vmbus_channel *newchannel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700527
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700528 offer = (struct vmbus_channel_offer_channel *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700529
Bill Pemberton454f18a2009-07-27 16:47:24 -0400530 /* Allocate the channel object and save this offer. */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700531 newchannel = alloc_channel();
Haiyang Zhang188963e2010-10-15 10:14:06 -0700532 if (!newchannel) {
Hank Janssen0a466182011-03-29 13:58:47 -0700533 pr_err("Unable to allocate channel object\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700534 return;
535 }
536
K. Y. Srinivasan132368b2012-12-01 06:46:33 -0800537 /*
538 * By default we setup state to enable batched
539 * reading. A specific service can choose to
540 * disable this prior to opening the channel.
541 */
542 newchannel->batched_reading = true;
543
K. Y. Srinivasanb3bf60c2012-12-01 06:46:45 -0800544 /*
545 * Setup state for signalling the host.
546 */
547 newchannel->sig_event = (struct hv_input_signal_event *)
548 (ALIGN((unsigned long)
549 &newchannel->sig_buf,
550 HV_HYPERCALL_PARAM_ALIGN));
551
552 newchannel->sig_event->connectionid.asu32 = 0;
553 newchannel->sig_event->connectionid.u.id = VMBUS_EVENT_CONNECTION_ID;
554 newchannel->sig_event->flag_number = 0;
555 newchannel->sig_event->rsvdz = 0;
556
557 if (vmbus_proto_version != VERSION_WS2008) {
558 newchannel->is_dedicated_interrupt =
559 (offer->is_dedicated_interrupt != 0);
560 newchannel->sig_event->connectionid.u.id =
561 offer->connection_id;
562 }
563
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800564 memcpy(&newchannel->offermsg, offer,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700565 sizeof(struct vmbus_channel_offer_channel));
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800566 newchannel->monitor_grp = (u8)offer->monitorid / 32;
567 newchannel->monitor_bit = (u8)offer->monitorid % 32;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700568
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800569 vmbus_process_offer(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700570}
571
Hank Janssen3e189512010-03-04 22:11:00 +0000572/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700573 * vmbus_onoffer_rescind - Rescind offer handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700574 *
575 * We queue a work item to process this offer synchronously
576 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700577static void vmbus_onoffer_rescind(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700578{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700579 struct vmbus_channel_rescind_offer *rescind;
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700580 struct vmbus_channel *channel;
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700581 unsigned long flags;
582 struct device *dev;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700583
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700584 rescind = (struct vmbus_channel_rescind_offer *)hdr;
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700585 channel = relid2channel(rescind->child_relid);
Hank Janssen98e08702011-03-29 13:58:44 -0700586
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800587 if (channel == NULL) {
588 hv_process_channel_removal(NULL, rescind->child_relid);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700589 return;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800590 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700591
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700592 spin_lock_irqsave(&channel->lock, flags);
593 channel->rescind = true;
594 spin_unlock_irqrestore(&channel->lock, flags);
595
596 if (channel->device_obj) {
597 /*
598 * We will have to unregister this device from the
599 * driver core.
600 */
601 dev = get_device(&channel->device_obj->device);
602 if (dev) {
603 vmbus_device_unregister(channel->device_obj);
604 put_device(dev);
605 }
606 } else {
607 hv_process_channel_removal(channel,
608 channel->offermsg.child_relid);
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800609 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700610}
611
Hank Janssen3e189512010-03-04 22:11:00 +0000612/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700613 * vmbus_onoffers_delivered -
614 * This is invoked when all offers have been delivered.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700615 *
616 * Nothing to do here.
617 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700618static void vmbus_onoffers_delivered(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700619 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700620{
Hank Janssen3e7ee492009-07-13 16:02:34 -0700621}
622
Hank Janssen3e189512010-03-04 22:11:00 +0000623/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700624 * vmbus_onopen_result - Open result handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700625 *
626 * This is invoked when we received a response to our channel open request.
627 * Find the matching request, copy the response and signal the requesting
628 * thread.
629 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700630static void vmbus_onopen_result(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700631{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700632 struct vmbus_channel_open_result *result;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700633 struct vmbus_channel_msginfo *msginfo;
634 struct vmbus_channel_message_header *requestheader;
635 struct vmbus_channel_open_channel *openmsg;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700636 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700637
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700638 result = (struct vmbus_channel_open_result *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700639
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700640 /*
641 * Find the open msg, copy the result and signal/unblock the wait event
642 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800643 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700644
Hank Janssenebb61e52011-02-18 12:39:57 -0800645 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
646 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700647 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800648 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700649
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800650 if (requestheader->msgtype == CHANNELMSG_OPENCHANNEL) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700651 openmsg =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800652 (struct vmbus_channel_open_channel *)msginfo->msg;
653 if (openmsg->child_relid == result->child_relid &&
654 openmsg->openid == result->openid) {
655 memcpy(&msginfo->response.open_result,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700656 result,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700657 sizeof(
658 struct vmbus_channel_open_result));
659 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700660 break;
661 }
662 }
663 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800664 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700665}
666
Hank Janssen3e189512010-03-04 22:11:00 +0000667/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700668 * vmbus_ongpadl_created - GPADL created handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700669 *
670 * This is invoked when we received a response to our gpadl create request.
671 * Find the matching request, copy the response and signal the requesting
672 * thread.
673 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700674static void vmbus_ongpadl_created(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700675{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700676 struct vmbus_channel_gpadl_created *gpadlcreated;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700677 struct vmbus_channel_msginfo *msginfo;
678 struct vmbus_channel_message_header *requestheader;
679 struct vmbus_channel_gpadl_header *gpadlheader;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700680 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700681
Haiyang Zhang188963e2010-10-15 10:14:06 -0700682 gpadlcreated = (struct vmbus_channel_gpadl_created *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700683
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700684 /*
685 * Find the establish msg, copy the result and signal/unblock the wait
686 * event
687 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800688 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700689
Hank Janssenebb61e52011-02-18 12:39:57 -0800690 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
691 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700692 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800693 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700694
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800695 if (requestheader->msgtype == CHANNELMSG_GPADL_HEADER) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700696 gpadlheader =
697 (struct vmbus_channel_gpadl_header *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700698
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800699 if ((gpadlcreated->child_relid ==
700 gpadlheader->child_relid) &&
701 (gpadlcreated->gpadl == gpadlheader->gpadl)) {
702 memcpy(&msginfo->response.gpadl_created,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700703 gpadlcreated,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700704 sizeof(
705 struct vmbus_channel_gpadl_created));
706 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700707 break;
708 }
709 }
710 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800711 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700712}
713
Hank Janssen3e189512010-03-04 22:11:00 +0000714/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700715 * vmbus_ongpadl_torndown - GPADL torndown handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700716 *
717 * This is invoked when we received a response to our gpadl teardown request.
718 * Find the matching request, copy the response and signal the requesting
719 * thread.
720 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700721static void vmbus_ongpadl_torndown(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700722 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700723{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700724 struct vmbus_channel_gpadl_torndown *gpadl_torndown;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700725 struct vmbus_channel_msginfo *msginfo;
726 struct vmbus_channel_message_header *requestheader;
727 struct vmbus_channel_gpadl_teardown *gpadl_teardown;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700728 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700729
Haiyang Zhang188963e2010-10-15 10:14:06 -0700730 gpadl_torndown = (struct vmbus_channel_gpadl_torndown *)hdr;
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700731
732 /*
733 * Find the open msg, copy the result and signal/unblock the wait event
734 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800735 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700736
Hank Janssenebb61e52011-02-18 12:39:57 -0800737 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
738 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700739 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800740 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700741
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800742 if (requestheader->msgtype == CHANNELMSG_GPADL_TEARDOWN) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700743 gpadl_teardown =
744 (struct vmbus_channel_gpadl_teardown *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700745
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800746 if (gpadl_torndown->gpadl == gpadl_teardown->gpadl) {
747 memcpy(&msginfo->response.gpadl_torndown,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700748 gpadl_torndown,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700749 sizeof(
750 struct vmbus_channel_gpadl_torndown));
751 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700752 break;
753 }
754 }
755 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800756 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700757}
758
Hank Janssen3e189512010-03-04 22:11:00 +0000759/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700760 * vmbus_onversion_response - Version response handler
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700761 *
762 * This is invoked when we received a response to our initiate contact request.
763 * Find the matching request, copy the response and signal the requesting
764 * thread.
765 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700766static void vmbus_onversion_response(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700767 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700768{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700769 struct vmbus_channel_msginfo *msginfo;
770 struct vmbus_channel_message_header *requestheader;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700771 struct vmbus_channel_version_response *version_response;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700772 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700773
Haiyang Zhang188963e2010-10-15 10:14:06 -0700774 version_response = (struct vmbus_channel_version_response *)hdr;
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800775 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700776
Hank Janssenebb61e52011-02-18 12:39:57 -0800777 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
778 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700779 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800780 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700781
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800782 if (requestheader->msgtype ==
783 CHANNELMSG_INITIATE_CONTACT) {
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800784 memcpy(&msginfo->response.version_response,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700785 version_response,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700786 sizeof(struct vmbus_channel_version_response));
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700787 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700788 }
789 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800790 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700791}
792
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -0700793/* Channel message dispatch table */
Dexuan Cui652594c2015-03-27 09:10:08 -0700794struct vmbus_channel_message_table_entry
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -0700795 channel_message_table[CHANNELMSG_COUNT] = {
Dexuan Cui652594c2015-03-27 09:10:08 -0700796 {CHANNELMSG_INVALID, 0, NULL},
797 {CHANNELMSG_OFFERCHANNEL, 0, vmbus_onoffer},
798 {CHANNELMSG_RESCIND_CHANNELOFFER, 0, vmbus_onoffer_rescind},
799 {CHANNELMSG_REQUESTOFFERS, 0, NULL},
800 {CHANNELMSG_ALLOFFERS_DELIVERED, 1, vmbus_onoffers_delivered},
801 {CHANNELMSG_OPENCHANNEL, 0, NULL},
802 {CHANNELMSG_OPENCHANNEL_RESULT, 1, vmbus_onopen_result},
803 {CHANNELMSG_CLOSECHANNEL, 0, NULL},
804 {CHANNELMSG_GPADL_HEADER, 0, NULL},
805 {CHANNELMSG_GPADL_BODY, 0, NULL},
806 {CHANNELMSG_GPADL_CREATED, 1, vmbus_ongpadl_created},
807 {CHANNELMSG_GPADL_TEARDOWN, 0, NULL},
808 {CHANNELMSG_GPADL_TORNDOWN, 1, vmbus_ongpadl_torndown},
809 {CHANNELMSG_RELID_RELEASED, 0, NULL},
810 {CHANNELMSG_INITIATE_CONTACT, 0, NULL},
811 {CHANNELMSG_VERSION_RESPONSE, 1, vmbus_onversion_response},
812 {CHANNELMSG_UNLOAD, 0, NULL},
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700813 {CHANNELMSG_UNLOAD_RESPONSE, 1, vmbus_unload_response},
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -0700814};
815
Hank Janssen3e189512010-03-04 22:11:00 +0000816/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700817 * vmbus_onmessage - Handler for channel protocol messages.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700818 *
819 * This is invoked in the vmbus worker thread context.
820 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700821void vmbus_onmessage(void *context)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700822{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700823 struct hv_message *msg = context;
Greg Kroah-Hartman82250212009-08-26 15:16:04 -0700824 struct vmbus_channel_message_header *hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700825 int size;
826
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800827 hdr = (struct vmbus_channel_message_header *)msg->u.payload;
828 size = msg->header.payload_size;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700829
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800830 if (hdr->msgtype >= CHANNELMSG_COUNT) {
Hank Janssen0a466182011-03-29 13:58:47 -0700831 pr_err("Received invalid channel message type %d size %d\n",
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800832 hdr->msgtype, size);
Greg Kroah-Hartman04f50c42009-07-16 12:35:37 -0700833 print_hex_dump_bytes("", DUMP_PREFIX_NONE,
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800834 (unsigned char *)msg->u.payload, size);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700835 return;
836 }
837
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -0700838 if (channel_message_table[hdr->msgtype].message_handler)
839 channel_message_table[hdr->msgtype].message_handler(hdr);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700840 else
Hank Janssen0a466182011-03-29 13:58:47 -0700841 pr_err("Unhandled channel message type %d\n", hdr->msgtype);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700842}
843
Hank Janssen3e189512010-03-04 22:11:00 +0000844/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700845 * vmbus_request_offers - Send a request to get all our pending offers.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700846 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700847int vmbus_request_offers(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700848{
Greg Kroah-Hartman82250212009-08-26 15:16:04 -0700849 struct vmbus_channel_message_header *msg;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700850 struct vmbus_channel_msginfo *msginfo;
Nicholas Mc Guire51e51812015-02-27 11:26:02 -0800851 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700852
Haiyang Zhang188963e2010-10-15 10:14:06 -0700853 msginfo = kmalloc(sizeof(*msginfo) +
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700854 sizeof(struct vmbus_channel_message_header),
855 GFP_KERNEL);
Haiyang Zhang188963e2010-10-15 10:14:06 -0700856 if (!msginfo)
Bill Pemberton75910f22010-05-05 15:27:31 -0400857 return -ENOMEM;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700858
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800859 msg = (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700860
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800861 msg->msgtype = CHANNELMSG_REQUESTOFFERS;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700862
Hank Janssen3e7ee492009-07-13 16:02:34 -0700863
Haiyang Zhangc6977672011-01-26 12:12:08 -0800864 ret = vmbus_post_msg(msg,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700865 sizeof(struct vmbus_channel_message_header));
866 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700867 pr_err("Unable to request offers - %d\n", ret);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700868
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800869 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700870 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700871
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800872cleanup:
Ilia Mirkindd9b15d2011-03-13 00:29:00 -0500873 kfree(msginfo);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700874
Hank Janssen3e7ee492009-07-13 16:02:34 -0700875 return ret;
876}
877
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700878/*
879 * Retrieve the (sub) channel on which to send an outgoing request.
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800880 * When a primary channel has multiple sub-channels, we try to
881 * distribute the load equally amongst all available channels.
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700882 */
883struct vmbus_channel *vmbus_get_outgoing_channel(struct vmbus_channel *primary)
884{
885 struct list_head *cur, *tmp;
K. Y. Srinivasan87712bf82014-12-14 23:34:51 -0800886 int cur_cpu;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700887 struct vmbus_channel *cur_channel;
888 struct vmbus_channel *outgoing_channel = primary;
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800889 int next_channel;
890 int i = 1;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700891
892 if (list_empty(&primary->sc_list))
893 return outgoing_channel;
894
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800895 next_channel = primary->next_oc++;
896
897 if (next_channel > (primary->num_sc)) {
898 primary->next_oc = 0;
899 return outgoing_channel;
900 }
901
K. Y. Srinivasan87712bf82014-12-14 23:34:51 -0800902 cur_cpu = hv_context.vp_index[get_cpu()];
903 put_cpu();
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700904 list_for_each_safe(cur, tmp, &primary->sc_list) {
905 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
906 if (cur_channel->state != CHANNEL_OPENED_STATE)
907 continue;
908
909 if (cur_channel->target_vp == cur_cpu)
910 return cur_channel;
911
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800912 if (i == next_channel)
913 return cur_channel;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700914
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800915 i++;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700916 }
917
918 return outgoing_channel;
919}
920EXPORT_SYMBOL_GPL(vmbus_get_outgoing_channel);
921
922static void invoke_sc_cb(struct vmbus_channel *primary_channel)
923{
924 struct list_head *cur, *tmp;
925 struct vmbus_channel *cur_channel;
926
927 if (primary_channel->sc_creation_callback == NULL)
928 return;
929
930 list_for_each_safe(cur, tmp, &primary_channel->sc_list) {
931 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
932
933 primary_channel->sc_creation_callback(cur_channel);
934 }
935}
936
937void vmbus_set_sc_create_callback(struct vmbus_channel *primary_channel,
938 void (*sc_cr_cb)(struct vmbus_channel *new_sc))
939{
940 primary_channel->sc_creation_callback = sc_cr_cb;
941}
942EXPORT_SYMBOL_GPL(vmbus_set_sc_create_callback);
943
944bool vmbus_are_subchannels_present(struct vmbus_channel *primary)
945{
946 bool ret;
947
948 ret = !list_empty(&primary->sc_list);
949
950 if (ret) {
951 /*
952 * Invoke the callback on sub-channel creation.
953 * This will present a uniform interface to the
954 * clients.
955 */
956 invoke_sc_cb(primary);
957 }
958
959 return ret;
960}
961EXPORT_SYMBOL_GPL(vmbus_are_subchannels_present);