blob: 1c1ad47042c5d7e9a90f29d8a232bab0ad6f2a8a [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
Dexuan Cuif52078c2015-12-14 16:01:50 -0800180static void vmbus_release_relid(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;
Vitaly Kuznetsov04a258c2014-11-04 13:40:11 +0100183
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700184 memset(&msg, 0, sizeof(struct vmbus_channel_relid_released));
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800185 msg.child_relid = relid;
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700186 msg.header.msgtype = CHANNELMSG_RELID_RELEASED;
187 vmbus_post_msg(&msg, sizeof(struct vmbus_channel_relid_released));
Dexuan Cuif52078c2015-12-14 16:01:50 -0800188}
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700189
Dexuan Cuif52078c2015-12-14 16:01:50 -0800190void hv_process_channel_removal(struct vmbus_channel *channel, u32 relid)
191{
192 unsigned long flags;
193 struct vmbus_channel *primary_channel;
194
195 vmbus_release_relid(relid);
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800196
Dexuan Cui34c68012015-12-14 16:01:49 -0800197 BUG_ON(!channel->rescind);
198
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700199 if (channel->target_cpu != get_cpu()) {
200 put_cpu();
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700201 smp_call_function_single(channel->target_cpu,
202 percpu_channel_deq, channel, true);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700203 } else {
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700204 percpu_channel_deq(channel);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700205 put_cpu();
206 }
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700207
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700208 if (channel->primary_channel == NULL) {
Dexuan Cuid6f591e2015-12-14 16:01:51 -0800209 mutex_lock(&vmbus_connection.channel_mutex);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700210 list_del(&channel->listentry);
Dexuan Cuid6f591e2015-12-14 16:01:51 -0800211 mutex_unlock(&vmbus_connection.channel_mutex);
Dexuan Cuica1c4b72015-08-13 17:07:03 -0700212
213 primary_channel = channel;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700214 } else {
215 primary_channel = channel->primary_channel;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100216 spin_lock_irqsave(&primary_channel->lock, flags);
K. Y. Srinivasan565ce642013-10-16 19:27:19 -0700217 list_del(&channel->sc_list);
Vitaly Kuznetsov357e8362015-05-06 17:47:44 -0700218 primary_channel->num_sc--;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100219 spin_unlock_irqrestore(&primary_channel->lock, flags);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700220 }
Dexuan Cuica1c4b72015-08-13 17:07:03 -0700221
222 /*
223 * We need to free the bit for init_vp_index() to work in the case
224 * of sub-channel, when we reload drivers like hv_netvsc.
225 */
226 cpumask_clear_cpu(channel->target_cpu,
227 &primary_channel->alloced_cpus_in_node);
228
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700229 free_channel(channel);
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200230}
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000231
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800232void vmbus_free_channels(void)
233{
Dexuan Cui813c5b72015-04-22 21:31:30 -0700234 struct vmbus_channel *channel, *tmp;
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800235
Dexuan Cui813c5b72015-04-22 21:31:30 -0700236 list_for_each_entry_safe(channel, tmp, &vmbus_connection.chn_list,
237 listentry) {
Dexuan Cui34c68012015-12-14 16:01:49 -0800238 /* hv_process_channel_removal() needs this */
Dexuan Cui813c5b72015-04-22 21:31:30 -0700239 channel->rescind = true;
240
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800241 vmbus_device_unregister(channel->device_obj);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800242 }
243}
244
Hank Janssen3e189512010-03-04 22:11:00 +0000245/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700246 * vmbus_process_offer - Process the offer by creating a channel/device
Hank Janssenc88c4e42010-05-04 15:55:05 -0700247 * associated with this offer
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700248 */
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800249static void vmbus_process_offer(struct vmbus_channel *newchannel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700250{
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700251 struct vmbus_channel *channel;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700252 bool fnew = true;
Greg Kroah-Hartman0f5e44c2009-07-15 14:57:16 -0700253 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700254
Bill Pemberton454f18a2009-07-27 16:47:24 -0400255 /* Make sure this is a new offer */
Dexuan Cuid6f591e2015-12-14 16:01:51 -0800256 mutex_lock(&vmbus_connection.channel_mutex);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700257
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800258 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700259 if (!uuid_le_cmp(channel->offermsg.offer.if_type,
260 newchannel->offermsg.offer.if_type) &&
261 !uuid_le_cmp(channel->offermsg.offer.if_instance,
262 newchannel->offermsg.offer.if_instance)) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700263 fnew = false;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700264 break;
265 }
266 }
267
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700268 if (fnew)
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800269 list_add_tail(&newchannel->listentry,
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800270 &vmbus_connection.chn_list);
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700271
Dexuan Cuid6f591e2015-12-14 16:01:51 -0800272 mutex_unlock(&vmbus_connection.channel_mutex);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700273
Haiyang Zhang188963e2010-10-15 10:14:06 -0700274 if (!fnew) {
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700275 /*
276 * Check to see if this is a sub-channel.
277 */
278 if (newchannel->offermsg.offer.sub_channel_index != 0) {
279 /*
280 * Process the sub-channel.
281 */
282 newchannel->primary_channel = channel;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100283 spin_lock_irqsave(&channel->lock, flags);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700284 list_add_tail(&newchannel->sc_list, &channel->sc_list);
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800285 channel->num_sc++;
Vitaly Kuznetsov357e8362015-05-06 17:47:44 -0700286 spin_unlock_irqrestore(&channel->lock, flags);
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700287 } else
288 goto err_free_chan;
289 }
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700290
Vitaly Kuznetsovf38e7dd2015-05-06 17:47:45 -0700291 init_vp_index(newchannel, &newchannel->offermsg.offer.if_type);
292
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700293 if (newchannel->target_cpu != get_cpu()) {
294 put_cpu();
295 smp_call_function_single(newchannel->target_cpu,
296 percpu_channel_enq,
297 newchannel, true);
298 } else {
299 percpu_channel_enq(newchannel);
300 put_cpu();
Hank Janssen3e7ee492009-07-13 16:02:34 -0700301 }
302
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700303 /*
K. Y. Srinivasan42dceeb2013-08-26 14:08:58 -0700304 * This state is used to indicate a successful open
305 * so that when we do close the channel normally, we
306 * can cleanup properly
307 */
308 newchannel->state = CHANNEL_OPEN_STATE;
309
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700310 if (!fnew) {
311 if (channel->sc_creation_callback != NULL)
312 channel->sc_creation_callback(newchannel);
313 return;
314 }
315
K. Y. Srinivasan42dceeb2013-08-26 14:08:58 -0700316 /*
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700317 * Start the process of binding this offer to the driver
318 * We need to set the DeviceObject field before calling
Haiyang Zhang646f1ea2011-01-26 12:12:10 -0800319 * vmbus_child_dev_add()
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700320 */
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700321 newchannel->device_obj = vmbus_device_create(
Haiyang Zhang767dff62011-01-26 12:12:12 -0800322 &newchannel->offermsg.offer.if_type,
323 &newchannel->offermsg.offer.if_instance,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700324 newchannel);
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100325 if (!newchannel->device_obj)
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800326 goto err_deq_chan;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700327
Bill Pemberton454f18a2009-07-27 16:47:24 -0400328 /*
329 * Add the new device to the bus. This will kick off device-driver
330 * binding which eventually invokes the device driver's AddDevice()
331 * method.
332 */
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700333 if (vmbus_device_register(newchannel->device_obj) != 0) {
334 pr_err("unable to add child device object (relid %d)\n",
335 newchannel->offermsg.child_relid);
336 kfree(newchannel->device_obj);
337 goto err_deq_chan;
338 }
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100339 return;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800340
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800341err_deq_chan:
Dexuan Cuif52078c2015-12-14 16:01:50 -0800342 vmbus_release_relid(newchannel->offermsg.child_relid);
343
Dexuan Cuid6f591e2015-12-14 16:01:51 -0800344 mutex_lock(&vmbus_connection.channel_mutex);
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800345 list_del(&newchannel->listentry);
Dexuan Cuid6f591e2015-12-14 16:01:51 -0800346 mutex_unlock(&vmbus_connection.channel_mutex);
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800347
348 if (newchannel->target_cpu != get_cpu()) {
349 put_cpu();
350 smp_call_function_single(newchannel->target_cpu,
351 percpu_channel_deq, newchannel, true);
352 } else {
353 percpu_channel_deq(newchannel);
354 put_cpu();
355 }
356
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100357err_free_chan:
358 free_channel(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700359}
360
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800361enum {
362 IDE = 0,
363 SCSI,
K. Y. Srinivasan879a6502015-12-15 16:27:27 -0800364 FC,
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800365 NIC,
K. Y. Srinivasan379e4f72015-08-01 16:08:21 -0700366 ND_NIC,
Jake Oshins3053c762015-12-14 16:01:41 -0800367 PCIE,
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800368 MAX_PERF_CHN,
369};
370
371/*
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800372 * This is an array of device_ids (device types) that are performance critical.
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800373 * We attempt to distribute the interrupt load for these devices across
374 * all available CPUs.
375 */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800376static const struct hv_vmbus_device_id hp_devs[] = {
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800377 /* IDE */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800378 { HV_IDE_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800379 /* Storage - SCSI */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800380 { HV_SCSI_GUID, },
K. Y. Srinivasan879a6502015-12-15 16:27:27 -0800381 /* Storage - FC */
382 { HV_SYNTHFC_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800383 /* Network */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800384 { HV_NIC_GUID, },
K. Y. Srinivasan04653a02015-02-27 11:26:05 -0800385 /* NetworkDirect Guest RDMA */
386 { HV_ND_GUID, },
Jake Oshins3053c762015-12-14 16:01:41 -0800387 /* PCI Express Pass Through */
388 { HV_PCIE_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800389};
390
391
392/*
393 * We use this state to statically distribute the channel interrupt load.
394 */
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700395static int next_numa_node_id;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800396
397/*
398 * Starting with Win8, we can statically distribute the incoming
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700399 * channel interrupt load by binding a channel to VCPU.
400 * We do this in a hierarchical fashion:
401 * First distribute the primary channels across available NUMA nodes
402 * and then distribute the subchannels amongst the CPUs in the NUMA
403 * node assigned to the primary channel.
404 *
405 * For pre-win8 hosts or non-performance critical channels we assign the
406 * first CPU in the first NUMA node.
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800407 */
Linus Torvaldsf9da4552014-06-12 14:27:40 -0700408static void init_vp_index(struct vmbus_channel *channel, const uuid_le *type_guid)
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800409{
410 u32 cur_cpu;
411 int i;
412 bool perf_chn = false;
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700413 struct vmbus_channel *primary = channel->primary_channel;
414 int next_node;
415 struct cpumask available_mask;
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700416 struct cpumask *alloced_mask;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800417
418 for (i = IDE; i < MAX_PERF_CHN; i++) {
K. Y. Srinivasan4ae92502015-12-14 16:01:44 -0800419 if (!uuid_le_cmp(*type_guid, hp_devs[i].guid)) {
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800420 perf_chn = true;
421 break;
422 }
423 }
424 if ((vmbus_proto_version == VERSION_WS2008) ||
425 (vmbus_proto_version == VERSION_WIN7) || (!perf_chn)) {
426 /*
427 * Prior to win8, all channel interrupts are
428 * delivered on cpu 0.
429 * Also if the channel is not a performance critical
430 * channel, bind it to cpu 0.
431 */
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700432 channel->numa_node = 0;
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700433 channel->target_cpu = 0;
K. Y. Srinivasan9c6e64a2015-05-30 23:37:47 -0700434 channel->target_vp = hv_context.vp_index[0];
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700435 return;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800436 }
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700437
438 /*
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700439 * We distribute primary channels evenly across all the available
440 * NUMA nodes and within the assigned NUMA node we will assign the
441 * first available CPU to the primary channel.
442 * The sub-channels will be assigned to the CPUs available in the
443 * NUMA node evenly.
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700444 */
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700445 if (!primary) {
446 while (true) {
447 next_node = next_numa_node_id++;
448 if (next_node == nr_node_ids)
449 next_node = next_numa_node_id = 0;
450 if (cpumask_empty(cpumask_of_node(next_node)))
451 continue;
452 break;
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700453 }
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700454 channel->numa_node = next_node;
455 primary = channel;
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700456 }
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700457 alloced_mask = &hv_context.hv_numa_map[primary->numa_node];
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700458
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700459 if (cpumask_weight(alloced_mask) ==
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700460 cpumask_weight(cpumask_of_node(primary->numa_node))) {
461 /*
462 * We have cycled through all the CPUs in the node;
463 * reset the alloced map.
464 */
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700465 cpumask_clear(alloced_mask);
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700466 }
467
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700468 cpumask_xor(&available_mask, alloced_mask,
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700469 cpumask_of_node(primary->numa_node));
470
Dexuan Cui3b711072015-08-05 00:52:39 -0700471 cur_cpu = -1;
472 while (true) {
473 cur_cpu = cpumask_next(cur_cpu, &available_mask);
474 if (cur_cpu >= nr_cpu_ids) {
475 cur_cpu = -1;
476 cpumask_copy(&available_mask,
477 cpumask_of_node(primary->numa_node));
478 continue;
479 }
480
Dexuan Cuica1c4b72015-08-13 17:07:03 -0700481 /*
482 * NOTE: in the case of sub-channel, we clear the sub-channel
483 * related bit(s) in primary->alloced_cpus_in_node in
484 * hv_process_channel_removal(), so when we reload drivers
485 * like hv_netvsc in SMP guest, here we're able to re-allocate
486 * bit from primary->alloced_cpus_in_node.
487 */
Dexuan Cui3b711072015-08-05 00:52:39 -0700488 if (!cpumask_test_cpu(cur_cpu,
489 &primary->alloced_cpus_in_node)) {
490 cpumask_set_cpu(cur_cpu,
491 &primary->alloced_cpus_in_node);
492 cpumask_set_cpu(cur_cpu, alloced_mask);
493 break;
494 }
495 }
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700496
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700497 channel->target_cpu = cur_cpu;
498 channel->target_vp = hv_context.vp_index[cur_cpu];
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800499}
500
Hank Janssen3e189512010-03-04 22:11:00 +0000501/*
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700502 * vmbus_unload_response - Handler for the unload response.
503 */
504static void vmbus_unload_response(struct vmbus_channel_message_header *hdr)
505{
506 /*
507 * This is a global event; just wakeup the waiting thread.
508 * Once we successfully unload, we can cleanup the monitor state.
509 */
510 complete(&vmbus_connection.unload_event);
511}
512
513void vmbus_initiate_unload(void)
514{
515 struct vmbus_channel_message_header hdr;
516
Vitaly Kuznetsov4a542432015-08-01 16:08:19 -0700517 /* Pre-Win2012R2 hosts don't support reconnect */
518 if (vmbus_proto_version < VERSION_WIN8_1)
519 return;
520
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700521 init_completion(&vmbus_connection.unload_event);
522 memset(&hdr, 0, sizeof(struct vmbus_channel_message_header));
523 hdr.msgtype = CHANNELMSG_UNLOAD;
524 vmbus_post_msg(&hdr, sizeof(struct vmbus_channel_message_header));
525
526 wait_for_completion(&vmbus_connection.unload_event);
527}
528
529/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700530 * vmbus_onoffer - Handler for channel offers from vmbus in parent partition.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700531 *
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700532 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700533static void vmbus_onoffer(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700534{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700535 struct vmbus_channel_offer_channel *offer;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700536 struct vmbus_channel *newchannel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700537
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700538 offer = (struct vmbus_channel_offer_channel *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700539
Bill Pemberton454f18a2009-07-27 16:47:24 -0400540 /* Allocate the channel object and save this offer. */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700541 newchannel = alloc_channel();
Haiyang Zhang188963e2010-10-15 10:14:06 -0700542 if (!newchannel) {
Hank Janssen0a466182011-03-29 13:58:47 -0700543 pr_err("Unable to allocate channel object\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700544 return;
545 }
546
K. Y. Srinivasan132368b2012-12-01 06:46:33 -0800547 /*
548 * By default we setup state to enable batched
549 * reading. A specific service can choose to
550 * disable this prior to opening the channel.
551 */
552 newchannel->batched_reading = true;
553
K. Y. Srinivasanb3bf60c2012-12-01 06:46:45 -0800554 /*
555 * Setup state for signalling the host.
556 */
557 newchannel->sig_event = (struct hv_input_signal_event *)
558 (ALIGN((unsigned long)
559 &newchannel->sig_buf,
560 HV_HYPERCALL_PARAM_ALIGN));
561
562 newchannel->sig_event->connectionid.asu32 = 0;
563 newchannel->sig_event->connectionid.u.id = VMBUS_EVENT_CONNECTION_ID;
564 newchannel->sig_event->flag_number = 0;
565 newchannel->sig_event->rsvdz = 0;
566
567 if (vmbus_proto_version != VERSION_WS2008) {
568 newchannel->is_dedicated_interrupt =
569 (offer->is_dedicated_interrupt != 0);
570 newchannel->sig_event->connectionid.u.id =
571 offer->connection_id;
572 }
573
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800574 memcpy(&newchannel->offermsg, offer,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700575 sizeof(struct vmbus_channel_offer_channel));
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800576 newchannel->monitor_grp = (u8)offer->monitorid / 32;
577 newchannel->monitor_bit = (u8)offer->monitorid % 32;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700578
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800579 vmbus_process_offer(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700580}
581
Hank Janssen3e189512010-03-04 22:11:00 +0000582/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700583 * vmbus_onoffer_rescind - Rescind offer handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700584 *
585 * We queue a work item to process this offer synchronously
586 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700587static void vmbus_onoffer_rescind(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700588{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700589 struct vmbus_channel_rescind_offer *rescind;
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700590 struct vmbus_channel *channel;
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700591 unsigned long flags;
592 struct device *dev;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700593
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700594 rescind = (struct vmbus_channel_rescind_offer *)hdr;
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700595 channel = relid2channel(rescind->child_relid);
Hank Janssen98e08702011-03-29 13:58:44 -0700596
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800597 if (channel == NULL) {
Dexuan Cuif52078c2015-12-14 16:01:50 -0800598 /*
599 * This is very impossible, because in
600 * vmbus_process_offer(), we have already invoked
601 * vmbus_release_relid() on error.
602 */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700603 return;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800604 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700605
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700606 spin_lock_irqsave(&channel->lock, flags);
607 channel->rescind = true;
608 spin_unlock_irqrestore(&channel->lock, flags);
609
610 if (channel->device_obj) {
611 /*
612 * We will have to unregister this device from the
613 * driver core.
614 */
615 dev = get_device(&channel->device_obj->device);
616 if (dev) {
617 vmbus_device_unregister(channel->device_obj);
618 put_device(dev);
619 }
620 } else {
621 hv_process_channel_removal(channel,
622 channel->offermsg.child_relid);
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800623 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700624}
625
Hank Janssen3e189512010-03-04 22:11:00 +0000626/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700627 * vmbus_onoffers_delivered -
628 * This is invoked when all offers have been delivered.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700629 *
630 * Nothing to do here.
631 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700632static void vmbus_onoffers_delivered(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700633 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700634{
Hank Janssen3e7ee492009-07-13 16:02:34 -0700635}
636
Hank Janssen3e189512010-03-04 22:11:00 +0000637/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700638 * vmbus_onopen_result - Open result handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700639 *
640 * This is invoked when we received a response to our channel open request.
641 * Find the matching request, copy the response and signal the requesting
642 * thread.
643 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700644static void vmbus_onopen_result(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700645{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700646 struct vmbus_channel_open_result *result;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700647 struct vmbus_channel_msginfo *msginfo;
648 struct vmbus_channel_message_header *requestheader;
649 struct vmbus_channel_open_channel *openmsg;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700650 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700651
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700652 result = (struct vmbus_channel_open_result *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700653
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700654 /*
655 * Find the open msg, copy the result and signal/unblock the wait event
656 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800657 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700658
Hank Janssenebb61e52011-02-18 12:39:57 -0800659 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
660 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700661 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800662 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700663
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800664 if (requestheader->msgtype == CHANNELMSG_OPENCHANNEL) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700665 openmsg =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800666 (struct vmbus_channel_open_channel *)msginfo->msg;
667 if (openmsg->child_relid == result->child_relid &&
668 openmsg->openid == result->openid) {
669 memcpy(&msginfo->response.open_result,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700670 result,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700671 sizeof(
672 struct vmbus_channel_open_result));
673 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700674 break;
675 }
676 }
677 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800678 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700679}
680
Hank Janssen3e189512010-03-04 22:11:00 +0000681/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700682 * vmbus_ongpadl_created - GPADL created handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700683 *
684 * This is invoked when we received a response to our gpadl create request.
685 * Find the matching request, copy the response and signal the requesting
686 * thread.
687 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700688static void vmbus_ongpadl_created(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700689{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700690 struct vmbus_channel_gpadl_created *gpadlcreated;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700691 struct vmbus_channel_msginfo *msginfo;
692 struct vmbus_channel_message_header *requestheader;
693 struct vmbus_channel_gpadl_header *gpadlheader;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700694 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700695
Haiyang Zhang188963e2010-10-15 10:14:06 -0700696 gpadlcreated = (struct vmbus_channel_gpadl_created *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700697
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700698 /*
699 * Find the establish msg, copy the result and signal/unblock the wait
700 * event
701 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800702 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700703
Hank Janssenebb61e52011-02-18 12:39:57 -0800704 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
705 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700706 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800707 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700708
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800709 if (requestheader->msgtype == CHANNELMSG_GPADL_HEADER) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700710 gpadlheader =
711 (struct vmbus_channel_gpadl_header *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700712
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800713 if ((gpadlcreated->child_relid ==
714 gpadlheader->child_relid) &&
715 (gpadlcreated->gpadl == gpadlheader->gpadl)) {
716 memcpy(&msginfo->response.gpadl_created,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700717 gpadlcreated,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700718 sizeof(
719 struct vmbus_channel_gpadl_created));
720 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700721 break;
722 }
723 }
724 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800725 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700726}
727
Hank Janssen3e189512010-03-04 22:11:00 +0000728/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700729 * vmbus_ongpadl_torndown - GPADL torndown handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700730 *
731 * This is invoked when we received a response to our gpadl teardown request.
732 * Find the matching request, copy the response and signal the requesting
733 * thread.
734 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700735static void vmbus_ongpadl_torndown(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700736 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700737{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700738 struct vmbus_channel_gpadl_torndown *gpadl_torndown;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700739 struct vmbus_channel_msginfo *msginfo;
740 struct vmbus_channel_message_header *requestheader;
741 struct vmbus_channel_gpadl_teardown *gpadl_teardown;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700742 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700743
Haiyang Zhang188963e2010-10-15 10:14:06 -0700744 gpadl_torndown = (struct vmbus_channel_gpadl_torndown *)hdr;
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700745
746 /*
747 * Find the open msg, copy the result and signal/unblock the wait event
748 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800749 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700750
Hank Janssenebb61e52011-02-18 12:39:57 -0800751 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
752 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700753 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800754 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700755
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800756 if (requestheader->msgtype == CHANNELMSG_GPADL_TEARDOWN) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700757 gpadl_teardown =
758 (struct vmbus_channel_gpadl_teardown *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700759
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800760 if (gpadl_torndown->gpadl == gpadl_teardown->gpadl) {
761 memcpy(&msginfo->response.gpadl_torndown,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700762 gpadl_torndown,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700763 sizeof(
764 struct vmbus_channel_gpadl_torndown));
765 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700766 break;
767 }
768 }
769 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800770 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700771}
772
Hank Janssen3e189512010-03-04 22:11:00 +0000773/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700774 * vmbus_onversion_response - Version response handler
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700775 *
776 * This is invoked when we received a response to our initiate contact request.
777 * Find the matching request, copy the response and signal the requesting
778 * thread.
779 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700780static void vmbus_onversion_response(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700781 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700782{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700783 struct vmbus_channel_msginfo *msginfo;
784 struct vmbus_channel_message_header *requestheader;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700785 struct vmbus_channel_version_response *version_response;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700786 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700787
Haiyang Zhang188963e2010-10-15 10:14:06 -0700788 version_response = (struct vmbus_channel_version_response *)hdr;
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800789 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700790
Hank Janssenebb61e52011-02-18 12:39:57 -0800791 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
792 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700793 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800794 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700795
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800796 if (requestheader->msgtype ==
797 CHANNELMSG_INITIATE_CONTACT) {
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800798 memcpy(&msginfo->response.version_response,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700799 version_response,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700800 sizeof(struct vmbus_channel_version_response));
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700801 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700802 }
803 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800804 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700805}
806
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -0700807/* Channel message dispatch table */
Dexuan Cui652594c2015-03-27 09:10:08 -0700808struct vmbus_channel_message_table_entry
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -0700809 channel_message_table[CHANNELMSG_COUNT] = {
Dexuan Cui652594c2015-03-27 09:10:08 -0700810 {CHANNELMSG_INVALID, 0, NULL},
811 {CHANNELMSG_OFFERCHANNEL, 0, vmbus_onoffer},
812 {CHANNELMSG_RESCIND_CHANNELOFFER, 0, vmbus_onoffer_rescind},
813 {CHANNELMSG_REQUESTOFFERS, 0, NULL},
814 {CHANNELMSG_ALLOFFERS_DELIVERED, 1, vmbus_onoffers_delivered},
815 {CHANNELMSG_OPENCHANNEL, 0, NULL},
816 {CHANNELMSG_OPENCHANNEL_RESULT, 1, vmbus_onopen_result},
817 {CHANNELMSG_CLOSECHANNEL, 0, NULL},
818 {CHANNELMSG_GPADL_HEADER, 0, NULL},
819 {CHANNELMSG_GPADL_BODY, 0, NULL},
820 {CHANNELMSG_GPADL_CREATED, 1, vmbus_ongpadl_created},
821 {CHANNELMSG_GPADL_TEARDOWN, 0, NULL},
822 {CHANNELMSG_GPADL_TORNDOWN, 1, vmbus_ongpadl_torndown},
823 {CHANNELMSG_RELID_RELEASED, 0, NULL},
824 {CHANNELMSG_INITIATE_CONTACT, 0, NULL},
825 {CHANNELMSG_VERSION_RESPONSE, 1, vmbus_onversion_response},
826 {CHANNELMSG_UNLOAD, 0, NULL},
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700827 {CHANNELMSG_UNLOAD_RESPONSE, 1, vmbus_unload_response},
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -0700828};
829
Hank Janssen3e189512010-03-04 22:11:00 +0000830/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700831 * vmbus_onmessage - Handler for channel protocol messages.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700832 *
833 * This is invoked in the vmbus worker thread context.
834 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700835void vmbus_onmessage(void *context)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700836{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700837 struct hv_message *msg = context;
Greg Kroah-Hartman82250212009-08-26 15:16:04 -0700838 struct vmbus_channel_message_header *hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700839 int size;
840
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800841 hdr = (struct vmbus_channel_message_header *)msg->u.payload;
842 size = msg->header.payload_size;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700843
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800844 if (hdr->msgtype >= CHANNELMSG_COUNT) {
Hank Janssen0a466182011-03-29 13:58:47 -0700845 pr_err("Received invalid channel message type %d size %d\n",
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800846 hdr->msgtype, size);
Greg Kroah-Hartman04f50c42009-07-16 12:35:37 -0700847 print_hex_dump_bytes("", DUMP_PREFIX_NONE,
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800848 (unsigned char *)msg->u.payload, size);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700849 return;
850 }
851
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -0700852 if (channel_message_table[hdr->msgtype].message_handler)
853 channel_message_table[hdr->msgtype].message_handler(hdr);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700854 else
Hank Janssen0a466182011-03-29 13:58:47 -0700855 pr_err("Unhandled channel message type %d\n", hdr->msgtype);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700856}
857
Hank Janssen3e189512010-03-04 22:11:00 +0000858/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700859 * vmbus_request_offers - Send a request to get all our pending offers.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700860 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700861int vmbus_request_offers(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700862{
Greg Kroah-Hartman82250212009-08-26 15:16:04 -0700863 struct vmbus_channel_message_header *msg;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700864 struct vmbus_channel_msginfo *msginfo;
Nicholas Mc Guire51e51812015-02-27 11:26:02 -0800865 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700866
Haiyang Zhang188963e2010-10-15 10:14:06 -0700867 msginfo = kmalloc(sizeof(*msginfo) +
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700868 sizeof(struct vmbus_channel_message_header),
869 GFP_KERNEL);
Haiyang Zhang188963e2010-10-15 10:14:06 -0700870 if (!msginfo)
Bill Pemberton75910f22010-05-05 15:27:31 -0400871 return -ENOMEM;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700872
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800873 msg = (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700874
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800875 msg->msgtype = CHANNELMSG_REQUESTOFFERS;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700876
Hank Janssen3e7ee492009-07-13 16:02:34 -0700877
Haiyang Zhangc6977672011-01-26 12:12:08 -0800878 ret = vmbus_post_msg(msg,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700879 sizeof(struct vmbus_channel_message_header));
880 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700881 pr_err("Unable to request offers - %d\n", ret);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700882
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800883 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700884 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700885
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800886cleanup:
Ilia Mirkindd9b15d2011-03-13 00:29:00 -0500887 kfree(msginfo);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700888
Hank Janssen3e7ee492009-07-13 16:02:34 -0700889 return ret;
890}
891
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700892/*
893 * Retrieve the (sub) channel on which to send an outgoing request.
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800894 * When a primary channel has multiple sub-channels, we try to
895 * distribute the load equally amongst all available channels.
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700896 */
897struct vmbus_channel *vmbus_get_outgoing_channel(struct vmbus_channel *primary)
898{
899 struct list_head *cur, *tmp;
K. Y. Srinivasan87712bf82014-12-14 23:34:51 -0800900 int cur_cpu;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700901 struct vmbus_channel *cur_channel;
902 struct vmbus_channel *outgoing_channel = primary;
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800903 int next_channel;
904 int i = 1;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700905
906 if (list_empty(&primary->sc_list))
907 return outgoing_channel;
908
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800909 next_channel = primary->next_oc++;
910
911 if (next_channel > (primary->num_sc)) {
912 primary->next_oc = 0;
913 return outgoing_channel;
914 }
915
K. Y. Srinivasan87712bf82014-12-14 23:34:51 -0800916 cur_cpu = hv_context.vp_index[get_cpu()];
917 put_cpu();
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700918 list_for_each_safe(cur, tmp, &primary->sc_list) {
919 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
920 if (cur_channel->state != CHANNEL_OPENED_STATE)
921 continue;
922
923 if (cur_channel->target_vp == cur_cpu)
924 return cur_channel;
925
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800926 if (i == next_channel)
927 return cur_channel;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700928
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800929 i++;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700930 }
931
932 return outgoing_channel;
933}
934EXPORT_SYMBOL_GPL(vmbus_get_outgoing_channel);
935
936static void invoke_sc_cb(struct vmbus_channel *primary_channel)
937{
938 struct list_head *cur, *tmp;
939 struct vmbus_channel *cur_channel;
940
941 if (primary_channel->sc_creation_callback == NULL)
942 return;
943
944 list_for_each_safe(cur, tmp, &primary_channel->sc_list) {
945 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
946
947 primary_channel->sc_creation_callback(cur_channel);
948 }
949}
950
951void vmbus_set_sc_create_callback(struct vmbus_channel *primary_channel,
952 void (*sc_cr_cb)(struct vmbus_channel *new_sc))
953{
954 primary_channel->sc_creation_callback = sc_cr_cb;
955}
956EXPORT_SYMBOL_GPL(vmbus_set_sc_create_callback);
957
958bool vmbus_are_subchannels_present(struct vmbus_channel *primary)
959{
960 bool ret;
961
962 ret = !list_empty(&primary->sc_list);
963
964 if (ret) {
965 /*
966 * Invoke the callback on sub-channel creation.
967 * This will present a uniform interface to the
968 * clients.
969 */
970 invoke_sc_cb(primary);
971 }
972
973 return ret;
974}
975EXPORT_SYMBOL_GPL(vmbus_are_subchannels_present);