blob: 39c5afc7970c1f525b077b8965508aa7e512f9b0 [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);
207 } else {
208 primary_channel = channel->primary_channel;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100209 spin_lock_irqsave(&primary_channel->lock, flags);
K. Y. Srinivasan565ce642013-10-16 19:27:19 -0700210 list_del(&channel->sc_list);
Vitaly Kuznetsov357e8362015-05-06 17:47:44 -0700211 primary_channel->num_sc--;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100212 spin_unlock_irqrestore(&primary_channel->lock, flags);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700213 }
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700214 free_channel(channel);
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200215}
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000216
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800217void vmbus_free_channels(void)
218{
Dexuan Cui813c5b72015-04-22 21:31:30 -0700219 struct vmbus_channel *channel, *tmp;
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800220
Dexuan Cui813c5b72015-04-22 21:31:30 -0700221 list_for_each_entry_safe(channel, tmp, &vmbus_connection.chn_list,
222 listentry) {
223 /* if we don't set rescind to true, vmbus_close_internal()
224 * won't invoke hv_process_channel_removal().
225 */
226 channel->rescind = true;
227
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800228 vmbus_device_unregister(channel->device_obj);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800229 }
230}
231
Hank Janssen3e189512010-03-04 22:11:00 +0000232/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700233 * vmbus_process_offer - Process the offer by creating a channel/device
Hank Janssenc88c4e42010-05-04 15:55:05 -0700234 * associated with this offer
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700235 */
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800236static void vmbus_process_offer(struct vmbus_channel *newchannel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700237{
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700238 struct vmbus_channel *channel;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700239 bool fnew = true;
Greg Kroah-Hartman0f5e44c2009-07-15 14:57:16 -0700240 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700241
Bill Pemberton454f18a2009-07-27 16:47:24 -0400242 /* Make sure this is a new offer */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800243 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700244
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800245 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700246 if (!uuid_le_cmp(channel->offermsg.offer.if_type,
247 newchannel->offermsg.offer.if_type) &&
248 !uuid_le_cmp(channel->offermsg.offer.if_instance,
249 newchannel->offermsg.offer.if_instance)) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700250 fnew = false;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700251 break;
252 }
253 }
254
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700255 if (fnew)
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800256 list_add_tail(&newchannel->listentry,
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800257 &vmbus_connection.chn_list);
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700258
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800259 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700260
Haiyang Zhang188963e2010-10-15 10:14:06 -0700261 if (!fnew) {
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700262 /*
263 * Check to see if this is a sub-channel.
264 */
265 if (newchannel->offermsg.offer.sub_channel_index != 0) {
266 /*
267 * Process the sub-channel.
268 */
269 newchannel->primary_channel = channel;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100270 spin_lock_irqsave(&channel->lock, flags);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700271 list_add_tail(&newchannel->sc_list, &channel->sc_list);
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800272 channel->num_sc++;
Vitaly Kuznetsov357e8362015-05-06 17:47:44 -0700273 spin_unlock_irqrestore(&channel->lock, flags);
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700274 } else
275 goto err_free_chan;
276 }
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700277
Vitaly Kuznetsovf38e7dd2015-05-06 17:47:45 -0700278 init_vp_index(newchannel, &newchannel->offermsg.offer.if_type);
279
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700280 if (newchannel->target_cpu != get_cpu()) {
281 put_cpu();
282 smp_call_function_single(newchannel->target_cpu,
283 percpu_channel_enq,
284 newchannel, true);
285 } else {
286 percpu_channel_enq(newchannel);
287 put_cpu();
Hank Janssen3e7ee492009-07-13 16:02:34 -0700288 }
289
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700290 /*
K. Y. Srinivasan42dceeb2013-08-26 14:08:58 -0700291 * This state is used to indicate a successful open
292 * so that when we do close the channel normally, we
293 * can cleanup properly
294 */
295 newchannel->state = CHANNEL_OPEN_STATE;
296
Vitaly Kuznetsov8dfd3322015-05-06 17:47:42 -0700297 if (!fnew) {
298 if (channel->sc_creation_callback != NULL)
299 channel->sc_creation_callback(newchannel);
300 return;
301 }
302
K. Y. Srinivasan42dceeb2013-08-26 14:08:58 -0700303 /*
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700304 * Start the process of binding this offer to the driver
305 * We need to set the DeviceObject field before calling
Haiyang Zhang646f1ea2011-01-26 12:12:10 -0800306 * vmbus_child_dev_add()
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700307 */
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700308 newchannel->device_obj = vmbus_device_create(
Haiyang Zhang767dff62011-01-26 12:12:12 -0800309 &newchannel->offermsg.offer.if_type,
310 &newchannel->offermsg.offer.if_instance,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700311 newchannel);
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100312 if (!newchannel->device_obj)
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800313 goto err_deq_chan;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700314
Bill Pemberton454f18a2009-07-27 16:47:24 -0400315 /*
316 * Add the new device to the bus. This will kick off device-driver
317 * binding which eventually invokes the device driver's AddDevice()
318 * method.
319 */
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700320 if (vmbus_device_register(newchannel->device_obj) != 0) {
321 pr_err("unable to add child device object (relid %d)\n",
322 newchannel->offermsg.child_relid);
323 kfree(newchannel->device_obj);
324 goto err_deq_chan;
325 }
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100326 return;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800327
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800328err_deq_chan:
329 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
330 list_del(&newchannel->listentry);
331 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
332
333 if (newchannel->target_cpu != get_cpu()) {
334 put_cpu();
335 smp_call_function_single(newchannel->target_cpu,
336 percpu_channel_deq, newchannel, true);
337 } else {
338 percpu_channel_deq(newchannel);
339 put_cpu();
340 }
341
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100342err_free_chan:
343 free_channel(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700344}
345
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800346enum {
347 IDE = 0,
348 SCSI,
349 NIC,
K. Y. Srinivasan379e4f72015-08-01 16:08:21 -0700350 ND_NIC,
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800351 MAX_PERF_CHN,
352};
353
354/*
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800355 * This is an array of device_ids (device types) that are performance critical.
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800356 * We attempt to distribute the interrupt load for these devices across
357 * all available CPUs.
358 */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800359static const struct hv_vmbus_device_id hp_devs[] = {
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800360 /* IDE */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800361 { HV_IDE_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800362 /* Storage - SCSI */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800363 { HV_SCSI_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800364 /* Network */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800365 { HV_NIC_GUID, },
K. Y. Srinivasan04653a02015-02-27 11:26:05 -0800366 /* NetworkDirect Guest RDMA */
367 { HV_ND_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800368};
369
370
371/*
372 * We use this state to statically distribute the channel interrupt load.
373 */
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700374static int next_numa_node_id;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800375
376/*
377 * Starting with Win8, we can statically distribute the incoming
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700378 * channel interrupt load by binding a channel to VCPU.
379 * We do this in a hierarchical fashion:
380 * First distribute the primary channels across available NUMA nodes
381 * and then distribute the subchannels amongst the CPUs in the NUMA
382 * node assigned to the primary channel.
383 *
384 * For pre-win8 hosts or non-performance critical channels we assign the
385 * first CPU in the first NUMA node.
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800386 */
Linus Torvaldsf9da4552014-06-12 14:27:40 -0700387static void init_vp_index(struct vmbus_channel *channel, const uuid_le *type_guid)
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800388{
389 u32 cur_cpu;
390 int i;
391 bool perf_chn = false;
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700392 struct vmbus_channel *primary = channel->primary_channel;
393 int next_node;
394 struct cpumask available_mask;
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700395 struct cpumask *alloced_mask;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800396
397 for (i = IDE; i < MAX_PERF_CHN; i++) {
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800398 if (!memcmp(type_guid->b, hp_devs[i].guid,
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800399 sizeof(uuid_le))) {
400 perf_chn = true;
401 break;
402 }
403 }
404 if ((vmbus_proto_version == VERSION_WS2008) ||
405 (vmbus_proto_version == VERSION_WIN7) || (!perf_chn)) {
406 /*
407 * Prior to win8, all channel interrupts are
408 * delivered on cpu 0.
409 * Also if the channel is not a performance critical
410 * channel, bind it to cpu 0.
411 */
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700412 channel->numa_node = 0;
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700413 channel->target_cpu = 0;
K. Y. Srinivasan9c6e64a2015-05-30 23:37:47 -0700414 channel->target_vp = hv_context.vp_index[0];
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700415 return;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800416 }
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700417
418 /*
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700419 * We distribute primary channels evenly across all the available
420 * NUMA nodes and within the assigned NUMA node we will assign the
421 * first available CPU to the primary channel.
422 * The sub-channels will be assigned to the CPUs available in the
423 * NUMA node evenly.
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700424 */
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700425 if (!primary) {
426 while (true) {
427 next_node = next_numa_node_id++;
428 if (next_node == nr_node_ids)
429 next_node = next_numa_node_id = 0;
430 if (cpumask_empty(cpumask_of_node(next_node)))
431 continue;
432 break;
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700433 }
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700434 channel->numa_node = next_node;
435 primary = channel;
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700436 }
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700437 alloced_mask = &hv_context.hv_numa_map[primary->numa_node];
Vitaly Kuznetsovce59fec2015-05-06 17:47:46 -0700438
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700439 if (cpumask_weight(alloced_mask) ==
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700440 cpumask_weight(cpumask_of_node(primary->numa_node))) {
441 /*
442 * We have cycled through all the CPUs in the node;
443 * reset the alloced map.
444 */
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700445 cpumask_clear(alloced_mask);
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700446 }
447
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700448 cpumask_xor(&available_mask, alloced_mask,
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700449 cpumask_of_node(primary->numa_node));
450
451 cur_cpu = cpumask_next(-1, &available_mask);
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700452 cpumask_set_cpu(cur_cpu, alloced_mask);
K. Y. Srinivasan1f656ff2015-05-30 23:37:48 -0700453
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700454 channel->target_cpu = cur_cpu;
455 channel->target_vp = hv_context.vp_index[cur_cpu];
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800456}
457
Hank Janssen3e189512010-03-04 22:11:00 +0000458/*
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700459 * vmbus_unload_response - Handler for the unload response.
460 */
461static void vmbus_unload_response(struct vmbus_channel_message_header *hdr)
462{
463 /*
464 * This is a global event; just wakeup the waiting thread.
465 * Once we successfully unload, we can cleanup the monitor state.
466 */
467 complete(&vmbus_connection.unload_event);
468}
469
470void vmbus_initiate_unload(void)
471{
472 struct vmbus_channel_message_header hdr;
473
Vitaly Kuznetsov4a542432015-08-01 16:08:19 -0700474 /* Pre-Win2012R2 hosts don't support reconnect */
475 if (vmbus_proto_version < VERSION_WIN8_1)
476 return;
477
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700478 init_completion(&vmbus_connection.unload_event);
479 memset(&hdr, 0, sizeof(struct vmbus_channel_message_header));
480 hdr.msgtype = CHANNELMSG_UNLOAD;
481 vmbus_post_msg(&hdr, sizeof(struct vmbus_channel_message_header));
482
483 wait_for_completion(&vmbus_connection.unload_event);
484}
485
486/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700487 * vmbus_onoffer - Handler for channel offers from vmbus in parent partition.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700488 *
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700489 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700490static void vmbus_onoffer(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700491{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700492 struct vmbus_channel_offer_channel *offer;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700493 struct vmbus_channel *newchannel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700494
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700495 offer = (struct vmbus_channel_offer_channel *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700496
Bill Pemberton454f18a2009-07-27 16:47:24 -0400497 /* Allocate the channel object and save this offer. */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700498 newchannel = alloc_channel();
Haiyang Zhang188963e2010-10-15 10:14:06 -0700499 if (!newchannel) {
Hank Janssen0a466182011-03-29 13:58:47 -0700500 pr_err("Unable to allocate channel object\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700501 return;
502 }
503
K. Y. Srinivasan132368b2012-12-01 06:46:33 -0800504 /*
505 * By default we setup state to enable batched
506 * reading. A specific service can choose to
507 * disable this prior to opening the channel.
508 */
509 newchannel->batched_reading = true;
510
K. Y. Srinivasanb3bf60c2012-12-01 06:46:45 -0800511 /*
512 * Setup state for signalling the host.
513 */
514 newchannel->sig_event = (struct hv_input_signal_event *)
515 (ALIGN((unsigned long)
516 &newchannel->sig_buf,
517 HV_HYPERCALL_PARAM_ALIGN));
518
519 newchannel->sig_event->connectionid.asu32 = 0;
520 newchannel->sig_event->connectionid.u.id = VMBUS_EVENT_CONNECTION_ID;
521 newchannel->sig_event->flag_number = 0;
522 newchannel->sig_event->rsvdz = 0;
523
524 if (vmbus_proto_version != VERSION_WS2008) {
525 newchannel->is_dedicated_interrupt =
526 (offer->is_dedicated_interrupt != 0);
527 newchannel->sig_event->connectionid.u.id =
528 offer->connection_id;
529 }
530
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800531 memcpy(&newchannel->offermsg, offer,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700532 sizeof(struct vmbus_channel_offer_channel));
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800533 newchannel->monitor_grp = (u8)offer->monitorid / 32;
534 newchannel->monitor_bit = (u8)offer->monitorid % 32;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700535
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800536 vmbus_process_offer(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700537}
538
Hank Janssen3e189512010-03-04 22:11:00 +0000539/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700540 * vmbus_onoffer_rescind - Rescind offer handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700541 *
542 * We queue a work item to process this offer synchronously
543 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700544static void vmbus_onoffer_rescind(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700545{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700546 struct vmbus_channel_rescind_offer *rescind;
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700547 struct vmbus_channel *channel;
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700548 unsigned long flags;
549 struct device *dev;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700550
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700551 rescind = (struct vmbus_channel_rescind_offer *)hdr;
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700552 channel = relid2channel(rescind->child_relid);
Hank Janssen98e08702011-03-29 13:58:44 -0700553
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800554 if (channel == NULL) {
555 hv_process_channel_removal(NULL, rescind->child_relid);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700556 return;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800557 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700558
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700559 spin_lock_irqsave(&channel->lock, flags);
560 channel->rescind = true;
561 spin_unlock_irqrestore(&channel->lock, flags);
562
563 if (channel->device_obj) {
564 /*
565 * We will have to unregister this device from the
566 * driver core.
567 */
568 dev = get_device(&channel->device_obj->device);
569 if (dev) {
570 vmbus_device_unregister(channel->device_obj);
571 put_device(dev);
572 }
573 } else {
574 hv_process_channel_removal(channel,
575 channel->offermsg.child_relid);
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800576 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700577}
578
Hank Janssen3e189512010-03-04 22:11:00 +0000579/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700580 * vmbus_onoffers_delivered -
581 * This is invoked when all offers have been delivered.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700582 *
583 * Nothing to do here.
584 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700585static void vmbus_onoffers_delivered(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700586 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700587{
Hank Janssen3e7ee492009-07-13 16:02:34 -0700588}
589
Hank Janssen3e189512010-03-04 22:11:00 +0000590/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700591 * vmbus_onopen_result - Open result handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700592 *
593 * This is invoked when we received a response to our channel open request.
594 * Find the matching request, copy the response and signal the requesting
595 * thread.
596 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700597static void vmbus_onopen_result(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700598{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700599 struct vmbus_channel_open_result *result;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700600 struct vmbus_channel_msginfo *msginfo;
601 struct vmbus_channel_message_header *requestheader;
602 struct vmbus_channel_open_channel *openmsg;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700603 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700604
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700605 result = (struct vmbus_channel_open_result *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700606
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700607 /*
608 * Find the open msg, copy the result and signal/unblock the wait event
609 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800610 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700611
Hank Janssenebb61e52011-02-18 12:39:57 -0800612 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
613 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700614 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800615 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700616
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800617 if (requestheader->msgtype == CHANNELMSG_OPENCHANNEL) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700618 openmsg =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800619 (struct vmbus_channel_open_channel *)msginfo->msg;
620 if (openmsg->child_relid == result->child_relid &&
621 openmsg->openid == result->openid) {
622 memcpy(&msginfo->response.open_result,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700623 result,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700624 sizeof(
625 struct vmbus_channel_open_result));
626 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700627 break;
628 }
629 }
630 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800631 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700632}
633
Hank Janssen3e189512010-03-04 22:11:00 +0000634/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700635 * vmbus_ongpadl_created - GPADL created handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700636 *
637 * This is invoked when we received a response to our gpadl create request.
638 * Find the matching request, copy the response and signal the requesting
639 * thread.
640 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700641static void vmbus_ongpadl_created(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700642{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700643 struct vmbus_channel_gpadl_created *gpadlcreated;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700644 struct vmbus_channel_msginfo *msginfo;
645 struct vmbus_channel_message_header *requestheader;
646 struct vmbus_channel_gpadl_header *gpadlheader;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700647 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700648
Haiyang Zhang188963e2010-10-15 10:14:06 -0700649 gpadlcreated = (struct vmbus_channel_gpadl_created *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700650
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700651 /*
652 * Find the establish msg, copy the result and signal/unblock the wait
653 * event
654 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800655 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700656
Hank Janssenebb61e52011-02-18 12:39:57 -0800657 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
658 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700659 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800660 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700661
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800662 if (requestheader->msgtype == CHANNELMSG_GPADL_HEADER) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700663 gpadlheader =
664 (struct vmbus_channel_gpadl_header *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700665
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800666 if ((gpadlcreated->child_relid ==
667 gpadlheader->child_relid) &&
668 (gpadlcreated->gpadl == gpadlheader->gpadl)) {
669 memcpy(&msginfo->response.gpadl_created,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700670 gpadlcreated,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700671 sizeof(
672 struct vmbus_channel_gpadl_created));
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_torndown - GPADL torndown handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700683 *
684 * This is invoked when we received a response to our gpadl teardown 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_torndown(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700689 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700690{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700691 struct vmbus_channel_gpadl_torndown *gpadl_torndown;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700692 struct vmbus_channel_msginfo *msginfo;
693 struct vmbus_channel_message_header *requestheader;
694 struct vmbus_channel_gpadl_teardown *gpadl_teardown;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700695 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700696
Haiyang Zhang188963e2010-10-15 10:14:06 -0700697 gpadl_torndown = (struct vmbus_channel_gpadl_torndown *)hdr;
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700698
699 /*
700 * Find the open msg, copy the result and signal/unblock the wait 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_TEARDOWN) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700710 gpadl_teardown =
711 (struct vmbus_channel_gpadl_teardown *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700712
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800713 if (gpadl_torndown->gpadl == gpadl_teardown->gpadl) {
714 memcpy(&msginfo->response.gpadl_torndown,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700715 gpadl_torndown,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700716 sizeof(
717 struct vmbus_channel_gpadl_torndown));
718 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700719 break;
720 }
721 }
722 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800723 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700724}
725
Hank Janssen3e189512010-03-04 22:11:00 +0000726/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700727 * vmbus_onversion_response - Version response handler
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700728 *
729 * This is invoked when we received a response to our initiate contact request.
730 * Find the matching request, copy the response and signal the requesting
731 * thread.
732 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700733static void vmbus_onversion_response(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700734 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700735{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700736 struct vmbus_channel_msginfo *msginfo;
737 struct vmbus_channel_message_header *requestheader;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700738 struct vmbus_channel_version_response *version_response;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700739 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700740
Haiyang Zhang188963e2010-10-15 10:14:06 -0700741 version_response = (struct vmbus_channel_version_response *)hdr;
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800742 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700743
Hank Janssenebb61e52011-02-18 12:39:57 -0800744 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
745 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700746 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800747 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700748
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800749 if (requestheader->msgtype ==
750 CHANNELMSG_INITIATE_CONTACT) {
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800751 memcpy(&msginfo->response.version_response,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700752 version_response,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700753 sizeof(struct vmbus_channel_version_response));
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700754 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700755 }
756 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800757 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700758}
759
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -0700760/* Channel message dispatch table */
Dexuan Cui652594c2015-03-27 09:10:08 -0700761struct vmbus_channel_message_table_entry
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -0700762 channel_message_table[CHANNELMSG_COUNT] = {
Dexuan Cui652594c2015-03-27 09:10:08 -0700763 {CHANNELMSG_INVALID, 0, NULL},
764 {CHANNELMSG_OFFERCHANNEL, 0, vmbus_onoffer},
765 {CHANNELMSG_RESCIND_CHANNELOFFER, 0, vmbus_onoffer_rescind},
766 {CHANNELMSG_REQUESTOFFERS, 0, NULL},
767 {CHANNELMSG_ALLOFFERS_DELIVERED, 1, vmbus_onoffers_delivered},
768 {CHANNELMSG_OPENCHANNEL, 0, NULL},
769 {CHANNELMSG_OPENCHANNEL_RESULT, 1, vmbus_onopen_result},
770 {CHANNELMSG_CLOSECHANNEL, 0, NULL},
771 {CHANNELMSG_GPADL_HEADER, 0, NULL},
772 {CHANNELMSG_GPADL_BODY, 0, NULL},
773 {CHANNELMSG_GPADL_CREATED, 1, vmbus_ongpadl_created},
774 {CHANNELMSG_GPADL_TEARDOWN, 0, NULL},
775 {CHANNELMSG_GPADL_TORNDOWN, 1, vmbus_ongpadl_torndown},
776 {CHANNELMSG_RELID_RELEASED, 0, NULL},
777 {CHANNELMSG_INITIATE_CONTACT, 0, NULL},
778 {CHANNELMSG_VERSION_RESPONSE, 1, vmbus_onversion_response},
779 {CHANNELMSG_UNLOAD, 0, NULL},
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700780 {CHANNELMSG_UNLOAD_RESPONSE, 1, vmbus_unload_response},
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -0700781};
782
Hank Janssen3e189512010-03-04 22:11:00 +0000783/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700784 * vmbus_onmessage - Handler for channel protocol messages.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700785 *
786 * This is invoked in the vmbus worker thread context.
787 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700788void vmbus_onmessage(void *context)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700789{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700790 struct hv_message *msg = context;
Greg Kroah-Hartman82250212009-08-26 15:16:04 -0700791 struct vmbus_channel_message_header *hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700792 int size;
793
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800794 hdr = (struct vmbus_channel_message_header *)msg->u.payload;
795 size = msg->header.payload_size;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700796
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800797 if (hdr->msgtype >= CHANNELMSG_COUNT) {
Hank Janssen0a466182011-03-29 13:58:47 -0700798 pr_err("Received invalid channel message type %d size %d\n",
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800799 hdr->msgtype, size);
Greg Kroah-Hartman04f50c42009-07-16 12:35:37 -0700800 print_hex_dump_bytes("", DUMP_PREFIX_NONE,
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800801 (unsigned char *)msg->u.payload, size);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700802 return;
803 }
804
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -0700805 if (channel_message_table[hdr->msgtype].message_handler)
806 channel_message_table[hdr->msgtype].message_handler(hdr);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700807 else
Hank Janssen0a466182011-03-29 13:58:47 -0700808 pr_err("Unhandled channel message type %d\n", hdr->msgtype);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700809}
810
Hank Janssen3e189512010-03-04 22:11:00 +0000811/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700812 * vmbus_request_offers - Send a request to get all our pending offers.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700813 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700814int vmbus_request_offers(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700815{
Greg Kroah-Hartman82250212009-08-26 15:16:04 -0700816 struct vmbus_channel_message_header *msg;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700817 struct vmbus_channel_msginfo *msginfo;
Nicholas Mc Guire51e51812015-02-27 11:26:02 -0800818 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700819
Haiyang Zhang188963e2010-10-15 10:14:06 -0700820 msginfo = kmalloc(sizeof(*msginfo) +
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700821 sizeof(struct vmbus_channel_message_header),
822 GFP_KERNEL);
Haiyang Zhang188963e2010-10-15 10:14:06 -0700823 if (!msginfo)
Bill Pemberton75910f22010-05-05 15:27:31 -0400824 return -ENOMEM;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700825
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800826 msg = (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700827
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800828 msg->msgtype = CHANNELMSG_REQUESTOFFERS;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700829
Hank Janssen3e7ee492009-07-13 16:02:34 -0700830
Haiyang Zhangc6977672011-01-26 12:12:08 -0800831 ret = vmbus_post_msg(msg,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700832 sizeof(struct vmbus_channel_message_header));
833 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700834 pr_err("Unable to request offers - %d\n", ret);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700835
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800836 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700837 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700838
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800839cleanup:
Ilia Mirkindd9b15d2011-03-13 00:29:00 -0500840 kfree(msginfo);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700841
Hank Janssen3e7ee492009-07-13 16:02:34 -0700842 return ret;
843}
844
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700845/*
846 * Retrieve the (sub) channel on which to send an outgoing request.
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800847 * When a primary channel has multiple sub-channels, we try to
848 * distribute the load equally amongst all available channels.
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700849 */
850struct vmbus_channel *vmbus_get_outgoing_channel(struct vmbus_channel *primary)
851{
852 struct list_head *cur, *tmp;
K. Y. Srinivasan87712bf82014-12-14 23:34:51 -0800853 int cur_cpu;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700854 struct vmbus_channel *cur_channel;
855 struct vmbus_channel *outgoing_channel = primary;
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800856 int next_channel;
857 int i = 1;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700858
859 if (list_empty(&primary->sc_list))
860 return outgoing_channel;
861
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800862 next_channel = primary->next_oc++;
863
864 if (next_channel > (primary->num_sc)) {
865 primary->next_oc = 0;
866 return outgoing_channel;
867 }
868
K. Y. Srinivasan87712bf82014-12-14 23:34:51 -0800869 cur_cpu = hv_context.vp_index[get_cpu()];
870 put_cpu();
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700871 list_for_each_safe(cur, tmp, &primary->sc_list) {
872 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
873 if (cur_channel->state != CHANNEL_OPENED_STATE)
874 continue;
875
876 if (cur_channel->target_vp == cur_cpu)
877 return cur_channel;
878
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800879 if (i == next_channel)
880 return cur_channel;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700881
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800882 i++;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700883 }
884
885 return outgoing_channel;
886}
887EXPORT_SYMBOL_GPL(vmbus_get_outgoing_channel);
888
889static void invoke_sc_cb(struct vmbus_channel *primary_channel)
890{
891 struct list_head *cur, *tmp;
892 struct vmbus_channel *cur_channel;
893
894 if (primary_channel->sc_creation_callback == NULL)
895 return;
896
897 list_for_each_safe(cur, tmp, &primary_channel->sc_list) {
898 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
899
900 primary_channel->sc_creation_callback(cur_channel);
901 }
902}
903
904void vmbus_set_sc_create_callback(struct vmbus_channel *primary_channel,
905 void (*sc_cr_cb)(struct vmbus_channel *new_sc))
906{
907 primary_channel->sc_creation_callback = sc_cr_cb;
908}
909EXPORT_SYMBOL_GPL(vmbus_set_sc_create_callback);
910
911bool vmbus_are_subchannels_present(struct vmbus_channel *primary)
912{
913 bool ret;
914
915 ret = !list_empty(&primary->sc_list);
916
917 if (ret) {
918 /*
919 * Invoke the callback on sub-channel creation.
920 * This will present a uniform interface to the
921 * clients.
922 */
923 invoke_sc_cb(primary);
924 }
925
926 return ret;
927}
928EXPORT_SYMBOL_GPL(vmbus_are_subchannels_present);