blob: 0eeb1b3bc0484ce75572b0f6326ca0857cb73268 [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
Hank Janssenc88c4e42010-05-04 15:55:05 -070035/**
Greg Kroah-Hartmanda0e9632011-10-11 08:42:28 -060036 * vmbus_prep_negotiate_resp() - Create default response for Hyper-V Negotiate message
Hank Janssenc88c4e42010-05-04 15:55:05 -070037 * @icmsghdrp: Pointer to msg header structure
38 * @icmsg_negotiate: Pointer to negotiate message structure
39 * @buf: Raw buffer channel data
40 *
41 * @icmsghdrp is of type &struct icmsg_hdr.
42 * @negop is of type &struct icmsg_negotiate.
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070043 * Set up and fill in default negotiate response message.
44 *
K. Y. Srinivasan67413352013-07-02 10:31:30 -070045 * The fw_version specifies the framework version that
46 * we can support and srv_version specifies the service
47 * version we can support.
Hank Janssenc88c4e42010-05-04 15:55:05 -070048 *
49 * Mainly used by Hyper-V drivers.
50 */
K. Y. Srinivasan67413352013-07-02 10:31:30 -070051bool vmbus_prep_negotiate_resp(struct icmsg_hdr *icmsghdrp,
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070052 struct icmsg_negotiate *negop, u8 *buf,
K. Y. Srinivasan67413352013-07-02 10:31:30 -070053 int fw_version, int srv_version)
Hank Janssenc88c4e42010-05-04 15:55:05 -070054{
K. Y. Srinivasan67413352013-07-02 10:31:30 -070055 int icframe_major, icframe_minor;
56 int icmsg_major, icmsg_minor;
57 int fw_major, fw_minor;
58 int srv_major, srv_minor;
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070059 int i;
K. Y. Srinivasan67413352013-07-02 10:31:30 -070060 bool found_match = false;
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070061
K. Y. Srinivasana3605302012-05-12 13:44:57 -070062 icmsghdrp->icmsgsize = 0x10;
K. Y. Srinivasan67413352013-07-02 10:31:30 -070063 fw_major = (fw_version >> 16);
64 fw_minor = (fw_version & 0xFFFF);
65
66 srv_major = (srv_version >> 16);
67 srv_minor = (srv_version & 0xFFFF);
Hank Janssenc88c4e42010-05-04 15:55:05 -070068
K. Y. Srinivasana3605302012-05-12 13:44:57 -070069 negop = (struct icmsg_negotiate *)&buf[
70 sizeof(struct vmbuspipe_hdr) +
71 sizeof(struct icmsg_hdr)];
Hank Janssenc88c4e42010-05-04 15:55:05 -070072
K. Y. Srinivasan67413352013-07-02 10:31:30 -070073 icframe_major = negop->icframe_vercnt;
74 icframe_minor = 0;
75
76 icmsg_major = negop->icmsg_vercnt;
77 icmsg_minor = 0;
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070078
79 /*
80 * Select the framework version number we will
81 * support.
82 */
83
84 for (i = 0; i < negop->icframe_vercnt; i++) {
K. Y. Srinivasan67413352013-07-02 10:31:30 -070085 if ((negop->icversion_data[i].major == fw_major) &&
86 (negop->icversion_data[i].minor == fw_minor)) {
87 icframe_major = negop->icversion_data[i].major;
88 icframe_minor = negop->icversion_data[i].minor;
89 found_match = true;
90 }
Hank Janssenc88c4e42010-05-04 15:55:05 -070091 }
K. Y. Srinivasana3605302012-05-12 13:44:57 -070092
K. Y. Srinivasan67413352013-07-02 10:31:30 -070093 if (!found_match)
94 goto fw_error;
95
96 found_match = false;
97
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070098 for (i = negop->icframe_vercnt;
99 (i < negop->icframe_vercnt + negop->icmsg_vercnt); i++) {
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700100 if ((negop->icversion_data[i].major == srv_major) &&
101 (negop->icversion_data[i].minor == srv_minor)) {
102 icmsg_major = negop->icversion_data[i].major;
103 icmsg_minor = negop->icversion_data[i].minor;
104 found_match = true;
105 }
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700106 }
107
108 /*
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700109 * Respond with the framework and service
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700110 * version numbers we can support.
111 */
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700112
113fw_error:
114 if (!found_match) {
115 negop->icframe_vercnt = 0;
116 negop->icmsg_vercnt = 0;
117 } else {
118 negop->icframe_vercnt = 1;
119 negop->icmsg_vercnt = 1;
120 }
121
122 negop->icversion_data[0].major = icframe_major;
123 negop->icversion_data[0].minor = icframe_minor;
124 negop->icversion_data[1].major = icmsg_major;
125 negop->icversion_data[1].minor = icmsg_minor;
126 return found_match;
Hank Janssenc88c4e42010-05-04 15:55:05 -0700127}
K. Y. Srinivasana3605302012-05-12 13:44:57 -0700128
Greg Kroah-Hartmanda0e9632011-10-11 08:42:28 -0600129EXPORT_SYMBOL_GPL(vmbus_prep_negotiate_resp);
Hank Janssenc88c4e42010-05-04 15:55:05 -0700130
Hank Janssen3e189512010-03-04 22:11:00 +0000131/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700132 * alloc_channel - Allocate and initialize a vmbus channel object
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700133 */
Greg Kroah-Hartman50fe56d2010-10-20 15:51:57 -0700134static struct vmbus_channel *alloc_channel(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700135{
Vitaly Kuznetsovbc63b6f2015-02-27 11:25:52 -0800136 static atomic_t chan_num = ATOMIC_INIT(0);
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700137 struct vmbus_channel *channel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700138
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700139 channel = kzalloc(sizeof(*channel), GFP_ATOMIC);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700140 if (!channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700141 return NULL;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700142
Vitaly Kuznetsovbc63b6f2015-02-27 11:25:52 -0800143 channel->id = atomic_inc_return(&chan_num);
Greg Kroah-Hartman54411c42009-07-15 14:48:32 -0700144 spin_lock_init(&channel->inbound_lock);
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100145 spin_lock_init(&channel->lock);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700146
147 INIT_LIST_HEAD(&channel->sc_list);
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700148 INIT_LIST_HEAD(&channel->percpu_list);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700149
Hank Janssen3e7ee492009-07-13 16:02:34 -0700150 return channel;
151}
152
Hank Janssen3e189512010-03-04 22:11:00 +0000153/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700154 * free_channel - Release the resources used by the vmbus channel object
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700155 */
Greg Kroah-Hartman9f3e28e2011-10-11 09:40:01 -0600156static void free_channel(struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700157{
Dexuan Cuiaadc3782015-03-27 09:10:10 -0700158 kfree(channel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700159}
160
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700161static void percpu_channel_enq(void *arg)
162{
163 struct vmbus_channel *channel = arg;
164 int cpu = smp_processor_id();
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000165
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700166 list_add_tail(&channel->percpu_list, &hv_context.percpu_list[cpu]);
167}
168
169static void percpu_channel_deq(void *arg)
170{
171 struct vmbus_channel *channel = arg;
172
173 list_del(&channel->percpu_list);
174}
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000175
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800176
177void hv_process_channel_removal(struct vmbus_channel *channel, u32 relid)
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200178{
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800179 struct vmbus_channel_relid_released msg;
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700180 unsigned long flags;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700181 struct vmbus_channel *primary_channel;
Vitaly Kuznetsov04a258c2014-11-04 13:40:11 +0100182
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700183 memset(&msg, 0, sizeof(struct vmbus_channel_relid_released));
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800184 msg.child_relid = relid;
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700185 msg.header.msgtype = CHANNELMSG_RELID_RELEASED;
186 vmbus_post_msg(&msg, sizeof(struct vmbus_channel_relid_released));
187
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800188 if (channel == NULL)
189 return;
190
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700191 if (channel->target_cpu != get_cpu()) {
192 put_cpu();
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700193 smp_call_function_single(channel->target_cpu,
194 percpu_channel_deq, channel, true);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700195 } else {
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700196 percpu_channel_deq(channel);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700197 put_cpu();
198 }
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700199
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700200 if (channel->primary_channel == NULL) {
201 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
202 list_del(&channel->listentry);
203 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
204 } else {
205 primary_channel = channel->primary_channel;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100206 spin_lock_irqsave(&primary_channel->lock, flags);
K. Y. Srinivasan565ce642013-10-16 19:27:19 -0700207 list_del(&channel->sc_list);
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100208 spin_unlock_irqrestore(&primary_channel->lock, flags);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700209 }
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700210 free_channel(channel);
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200211}
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000212
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800213void vmbus_free_channels(void)
214{
215 struct vmbus_channel *channel;
216
217 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
218 vmbus_device_unregister(channel->device_obj);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800219 free_channel(channel);
220 }
221}
222
Hank Janssen3e189512010-03-04 22:11:00 +0000223/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700224 * vmbus_process_offer - Process the offer by creating a channel/device
Hank Janssenc88c4e42010-05-04 15:55:05 -0700225 * associated with this offer
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700226 */
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800227static void vmbus_process_offer(struct vmbus_channel *newchannel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700228{
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700229 struct vmbus_channel *channel;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700230 bool fnew = true;
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700231 bool enq = false;
Greg Kroah-Hartman0f5e44c2009-07-15 14:57:16 -0700232 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700233
Bill Pemberton454f18a2009-07-27 16:47:24 -0400234 /* Make sure this is a new offer */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800235 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700236
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800237 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700238 if (!uuid_le_cmp(channel->offermsg.offer.if_type,
239 newchannel->offermsg.offer.if_type) &&
240 !uuid_le_cmp(channel->offermsg.offer.if_instance,
241 newchannel->offermsg.offer.if_instance)) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700242 fnew = false;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700243 break;
244 }
245 }
246
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700247 if (fnew) {
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800248 list_add_tail(&newchannel->listentry,
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800249 &vmbus_connection.chn_list);
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700250 enq = true;
251 }
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700252
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800253 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700254
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700255 if (enq) {
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700256 if (newchannel->target_cpu != get_cpu()) {
257 put_cpu();
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700258 smp_call_function_single(newchannel->target_cpu,
259 percpu_channel_enq,
260 newchannel, true);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700261 } else {
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700262 percpu_channel_enq(newchannel);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700263 put_cpu();
264 }
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700265 }
Haiyang Zhang188963e2010-10-15 10:14:06 -0700266 if (!fnew) {
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700267 /*
268 * Check to see if this is a sub-channel.
269 */
270 if (newchannel->offermsg.offer.sub_channel_index != 0) {
271 /*
272 * Process the sub-channel.
273 */
274 newchannel->primary_channel = channel;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100275 spin_lock_irqsave(&channel->lock, flags);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700276 list_add_tail(&newchannel->sc_list, &channel->sc_list);
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100277 spin_unlock_irqrestore(&channel->lock, flags);
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700278
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700279 if (newchannel->target_cpu != get_cpu()) {
280 put_cpu();
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700281 smp_call_function_single(newchannel->target_cpu,
282 percpu_channel_enq,
283 newchannel, true);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700284 } else {
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700285 percpu_channel_enq(newchannel);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700286 put_cpu();
287 }
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700288
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700289 newchannel->state = CHANNEL_OPEN_STATE;
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800290 channel->num_sc++;
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700291 if (channel->sc_creation_callback != NULL)
292 channel->sc_creation_callback(newchannel);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700293
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800294 return;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700295 }
296
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100297 goto err_free_chan;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700298 }
299
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700300 /*
K. Y. Srinivasan42dceeb2013-08-26 14:08:58 -0700301 * This state is used to indicate a successful open
302 * so that when we do close the channel normally, we
303 * can cleanup properly
304 */
305 newchannel->state = CHANNEL_OPEN_STATE;
306
307 /*
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700308 * Start the process of binding this offer to the driver
309 * We need to set the DeviceObject field before calling
Haiyang Zhang646f1ea2011-01-26 12:12:10 -0800310 * vmbus_child_dev_add()
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700311 */
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700312 newchannel->device_obj = vmbus_device_create(
Haiyang Zhang767dff62011-01-26 12:12:12 -0800313 &newchannel->offermsg.offer.if_type,
314 &newchannel->offermsg.offer.if_instance,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700315 newchannel);
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100316 if (!newchannel->device_obj)
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800317 goto err_deq_chan;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700318
Bill Pemberton454f18a2009-07-27 16:47:24 -0400319 /*
320 * Add the new device to the bus. This will kick off device-driver
321 * binding which eventually invokes the device driver's AddDevice()
322 * method.
323 */
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700324 if (vmbus_device_register(newchannel->device_obj) != 0) {
325 pr_err("unable to add child device object (relid %d)\n",
326 newchannel->offermsg.child_relid);
327 kfree(newchannel->device_obj);
328 goto err_deq_chan;
329 }
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100330 return;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800331
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800332err_deq_chan:
333 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
334 list_del(&newchannel->listentry);
335 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
336
337 if (newchannel->target_cpu != get_cpu()) {
338 put_cpu();
339 smp_call_function_single(newchannel->target_cpu,
340 percpu_channel_deq, newchannel, true);
341 } else {
342 percpu_channel_deq(newchannel);
343 put_cpu();
344 }
345
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100346err_free_chan:
347 free_channel(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700348}
349
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800350enum {
351 IDE = 0,
352 SCSI,
353 NIC,
354 MAX_PERF_CHN,
355};
356
357/*
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800358 * This is an array of device_ids (device types) that are performance critical.
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800359 * We attempt to distribute the interrupt load for these devices across
360 * all available CPUs.
361 */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800362static const struct hv_vmbus_device_id hp_devs[] = {
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800363 /* IDE */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800364 { HV_IDE_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800365 /* Storage - SCSI */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800366 { HV_SCSI_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800367 /* Network */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800368 { HV_NIC_GUID, },
K. Y. Srinivasan04653a02015-02-27 11:26:05 -0800369 /* NetworkDirect Guest RDMA */
370 { HV_ND_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800371};
372
373
374/*
375 * We use this state to statically distribute the channel interrupt load.
376 */
377static u32 next_vp;
378
379/*
380 * Starting with Win8, we can statically distribute the incoming
381 * channel interrupt load by binding a channel to VCPU. We
382 * implement here a simple round robin scheme for distributing
383 * the interrupt load.
384 * We will bind channels that are not performance critical to cpu 0 and
385 * performance critical channels (IDE, SCSI and Network) will be uniformly
386 * distributed across all available CPUs.
387 */
Linus Torvaldsf9da4552014-06-12 14:27:40 -0700388static void init_vp_index(struct vmbus_channel *channel, const uuid_le *type_guid)
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800389{
390 u32 cur_cpu;
391 int i;
392 bool perf_chn = false;
393 u32 max_cpus = num_online_cpus();
394
395 for (i = IDE; i < MAX_PERF_CHN; i++) {
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800396 if (!memcmp(type_guid->b, hp_devs[i].guid,
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800397 sizeof(uuid_le))) {
398 perf_chn = true;
399 break;
400 }
401 }
402 if ((vmbus_proto_version == VERSION_WS2008) ||
403 (vmbus_proto_version == VERSION_WIN7) || (!perf_chn)) {
404 /*
405 * Prior to win8, all channel interrupts are
406 * delivered on cpu 0.
407 * Also if the channel is not a performance critical
408 * channel, bind it to cpu 0.
409 */
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700410 channel->target_cpu = 0;
411 channel->target_vp = 0;
412 return;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800413 }
414 cur_cpu = (++next_vp % max_cpus);
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700415 channel->target_cpu = cur_cpu;
416 channel->target_vp = hv_context.vp_index[cur_cpu];
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800417}
418
Hank Janssen3e189512010-03-04 22:11:00 +0000419/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700420 * vmbus_onoffer - Handler for channel offers from vmbus in parent partition.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700421 *
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700422 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700423static void vmbus_onoffer(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700424{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700425 struct vmbus_channel_offer_channel *offer;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700426 struct vmbus_channel *newchannel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700427
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700428 offer = (struct vmbus_channel_offer_channel *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700429
Bill Pemberton454f18a2009-07-27 16:47:24 -0400430 /* Allocate the channel object and save this offer. */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700431 newchannel = alloc_channel();
Haiyang Zhang188963e2010-10-15 10:14:06 -0700432 if (!newchannel) {
Hank Janssen0a466182011-03-29 13:58:47 -0700433 pr_err("Unable to allocate channel object\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700434 return;
435 }
436
K. Y. Srinivasan132368b2012-12-01 06:46:33 -0800437 /*
438 * By default we setup state to enable batched
439 * reading. A specific service can choose to
440 * disable this prior to opening the channel.
441 */
442 newchannel->batched_reading = true;
443
K. Y. Srinivasanb3bf60c2012-12-01 06:46:45 -0800444 /*
445 * Setup state for signalling the host.
446 */
447 newchannel->sig_event = (struct hv_input_signal_event *)
448 (ALIGN((unsigned long)
449 &newchannel->sig_buf,
450 HV_HYPERCALL_PARAM_ALIGN));
451
452 newchannel->sig_event->connectionid.asu32 = 0;
453 newchannel->sig_event->connectionid.u.id = VMBUS_EVENT_CONNECTION_ID;
454 newchannel->sig_event->flag_number = 0;
455 newchannel->sig_event->rsvdz = 0;
456
457 if (vmbus_proto_version != VERSION_WS2008) {
458 newchannel->is_dedicated_interrupt =
459 (offer->is_dedicated_interrupt != 0);
460 newchannel->sig_event->connectionid.u.id =
461 offer->connection_id;
462 }
463
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700464 init_vp_index(newchannel, &offer->offer.if_type);
K. Y. Srinivasanabbf3b22012-12-01 06:46:48 -0800465
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800466 memcpy(&newchannel->offermsg, offer,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700467 sizeof(struct vmbus_channel_offer_channel));
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800468 newchannel->monitor_grp = (u8)offer->monitorid / 32;
469 newchannel->monitor_bit = (u8)offer->monitorid % 32;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700470
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800471 vmbus_process_offer(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700472}
473
Hank Janssen3e189512010-03-04 22:11:00 +0000474/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700475 * vmbus_onoffer_rescind - Rescind offer handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700476 *
477 * We queue a work item to process this offer synchronously
478 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700479static void vmbus_onoffer_rescind(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700480{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700481 struct vmbus_channel_rescind_offer *rescind;
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700482 struct vmbus_channel *channel;
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700483 unsigned long flags;
484 struct device *dev;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700485
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700486 rescind = (struct vmbus_channel_rescind_offer *)hdr;
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700487 channel = relid2channel(rescind->child_relid);
Hank Janssen98e08702011-03-29 13:58:44 -0700488
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800489 if (channel == NULL) {
490 hv_process_channel_removal(NULL, rescind->child_relid);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700491 return;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800492 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700493
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700494 spin_lock_irqsave(&channel->lock, flags);
495 channel->rescind = true;
496 spin_unlock_irqrestore(&channel->lock, flags);
497
498 if (channel->device_obj) {
499 /*
500 * We will have to unregister this device from the
501 * driver core.
502 */
503 dev = get_device(&channel->device_obj->device);
504 if (dev) {
505 vmbus_device_unregister(channel->device_obj);
506 put_device(dev);
507 }
508 } else {
509 hv_process_channel_removal(channel,
510 channel->offermsg.child_relid);
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800511 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700512}
513
Hank Janssen3e189512010-03-04 22:11:00 +0000514/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700515 * vmbus_onoffers_delivered -
516 * This is invoked when all offers have been delivered.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700517 *
518 * Nothing to do here.
519 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700520static void vmbus_onoffers_delivered(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700521 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700522{
Hank Janssen3e7ee492009-07-13 16:02:34 -0700523}
524
Hank Janssen3e189512010-03-04 22:11:00 +0000525/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700526 * vmbus_onopen_result - Open result handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700527 *
528 * This is invoked when we received a response to our channel open request.
529 * Find the matching request, copy the response and signal the requesting
530 * thread.
531 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700532static void vmbus_onopen_result(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700533{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700534 struct vmbus_channel_open_result *result;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700535 struct vmbus_channel_msginfo *msginfo;
536 struct vmbus_channel_message_header *requestheader;
537 struct vmbus_channel_open_channel *openmsg;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700538 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700539
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700540 result = (struct vmbus_channel_open_result *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700541
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700542 /*
543 * Find the open msg, copy the result and signal/unblock the wait event
544 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800545 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700546
Hank Janssenebb61e52011-02-18 12:39:57 -0800547 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
548 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700549 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800550 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700551
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800552 if (requestheader->msgtype == CHANNELMSG_OPENCHANNEL) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700553 openmsg =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800554 (struct vmbus_channel_open_channel *)msginfo->msg;
555 if (openmsg->child_relid == result->child_relid &&
556 openmsg->openid == result->openid) {
557 memcpy(&msginfo->response.open_result,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700558 result,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700559 sizeof(
560 struct vmbus_channel_open_result));
561 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700562 break;
563 }
564 }
565 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800566 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700567}
568
Hank Janssen3e189512010-03-04 22:11:00 +0000569/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700570 * vmbus_ongpadl_created - GPADL created handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700571 *
572 * This is invoked when we received a response to our gpadl create request.
573 * Find the matching request, copy the response and signal the requesting
574 * thread.
575 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700576static void vmbus_ongpadl_created(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700577{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700578 struct vmbus_channel_gpadl_created *gpadlcreated;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700579 struct vmbus_channel_msginfo *msginfo;
580 struct vmbus_channel_message_header *requestheader;
581 struct vmbus_channel_gpadl_header *gpadlheader;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700582 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700583
Haiyang Zhang188963e2010-10-15 10:14:06 -0700584 gpadlcreated = (struct vmbus_channel_gpadl_created *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700585
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700586 /*
587 * Find the establish msg, copy the result and signal/unblock the wait
588 * event
589 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800590 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700591
Hank Janssenebb61e52011-02-18 12:39:57 -0800592 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
593 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700594 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800595 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700596
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800597 if (requestheader->msgtype == CHANNELMSG_GPADL_HEADER) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700598 gpadlheader =
599 (struct vmbus_channel_gpadl_header *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700600
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800601 if ((gpadlcreated->child_relid ==
602 gpadlheader->child_relid) &&
603 (gpadlcreated->gpadl == gpadlheader->gpadl)) {
604 memcpy(&msginfo->response.gpadl_created,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700605 gpadlcreated,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700606 sizeof(
607 struct vmbus_channel_gpadl_created));
608 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700609 break;
610 }
611 }
612 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800613 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700614}
615
Hank Janssen3e189512010-03-04 22:11:00 +0000616/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700617 * vmbus_ongpadl_torndown - GPADL torndown handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700618 *
619 * This is invoked when we received a response to our gpadl teardown request.
620 * Find the matching request, copy the response and signal the requesting
621 * thread.
622 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700623static void vmbus_ongpadl_torndown(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700624 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700625{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700626 struct vmbus_channel_gpadl_torndown *gpadl_torndown;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700627 struct vmbus_channel_msginfo *msginfo;
628 struct vmbus_channel_message_header *requestheader;
629 struct vmbus_channel_gpadl_teardown *gpadl_teardown;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700630 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700631
Haiyang Zhang188963e2010-10-15 10:14:06 -0700632 gpadl_torndown = (struct vmbus_channel_gpadl_torndown *)hdr;
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700633
634 /*
635 * Find the open msg, copy the result and signal/unblock the wait event
636 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800637 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700638
Hank Janssenebb61e52011-02-18 12:39:57 -0800639 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
640 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700641 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800642 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700643
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800644 if (requestheader->msgtype == CHANNELMSG_GPADL_TEARDOWN) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700645 gpadl_teardown =
646 (struct vmbus_channel_gpadl_teardown *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700647
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800648 if (gpadl_torndown->gpadl == gpadl_teardown->gpadl) {
649 memcpy(&msginfo->response.gpadl_torndown,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700650 gpadl_torndown,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700651 sizeof(
652 struct vmbus_channel_gpadl_torndown));
653 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700654 break;
655 }
656 }
657 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800658 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700659}
660
Hank Janssen3e189512010-03-04 22:11:00 +0000661/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700662 * vmbus_onversion_response - Version response handler
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700663 *
664 * This is invoked when we received a response to our initiate contact request.
665 * Find the matching request, copy the response and signal the requesting
666 * thread.
667 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700668static void vmbus_onversion_response(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700669 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700670{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700671 struct vmbus_channel_msginfo *msginfo;
672 struct vmbus_channel_message_header *requestheader;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700673 struct vmbus_channel_version_response *version_response;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700674 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700675
Haiyang Zhang188963e2010-10-15 10:14:06 -0700676 version_response = (struct vmbus_channel_version_response *)hdr;
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800677 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700678
Hank Janssenebb61e52011-02-18 12:39:57 -0800679 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
680 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700681 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800682 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700683
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800684 if (requestheader->msgtype ==
685 CHANNELMSG_INITIATE_CONTACT) {
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800686 memcpy(&msginfo->response.version_response,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700687 version_response,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700688 sizeof(struct vmbus_channel_version_response));
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700689 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700690 }
691 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800692 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700693}
694
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -0700695/* Channel message dispatch table */
Dexuan Cui652594c2015-03-27 09:10:08 -0700696struct vmbus_channel_message_table_entry
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -0700697 channel_message_table[CHANNELMSG_COUNT] = {
Dexuan Cui652594c2015-03-27 09:10:08 -0700698 {CHANNELMSG_INVALID, 0, NULL},
699 {CHANNELMSG_OFFERCHANNEL, 0, vmbus_onoffer},
700 {CHANNELMSG_RESCIND_CHANNELOFFER, 0, vmbus_onoffer_rescind},
701 {CHANNELMSG_REQUESTOFFERS, 0, NULL},
702 {CHANNELMSG_ALLOFFERS_DELIVERED, 1, vmbus_onoffers_delivered},
703 {CHANNELMSG_OPENCHANNEL, 0, NULL},
704 {CHANNELMSG_OPENCHANNEL_RESULT, 1, vmbus_onopen_result},
705 {CHANNELMSG_CLOSECHANNEL, 0, NULL},
706 {CHANNELMSG_GPADL_HEADER, 0, NULL},
707 {CHANNELMSG_GPADL_BODY, 0, NULL},
708 {CHANNELMSG_GPADL_CREATED, 1, vmbus_ongpadl_created},
709 {CHANNELMSG_GPADL_TEARDOWN, 0, NULL},
710 {CHANNELMSG_GPADL_TORNDOWN, 1, vmbus_ongpadl_torndown},
711 {CHANNELMSG_RELID_RELEASED, 0, NULL},
712 {CHANNELMSG_INITIATE_CONTACT, 0, NULL},
713 {CHANNELMSG_VERSION_RESPONSE, 1, vmbus_onversion_response},
714 {CHANNELMSG_UNLOAD, 0, NULL},
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -0700715};
716
Hank Janssen3e189512010-03-04 22:11:00 +0000717/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700718 * vmbus_onmessage - Handler for channel protocol messages.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700719 *
720 * This is invoked in the vmbus worker thread context.
721 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700722void vmbus_onmessage(void *context)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700723{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700724 struct hv_message *msg = context;
Greg Kroah-Hartman82250212009-08-26 15:16:04 -0700725 struct vmbus_channel_message_header *hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700726 int size;
727
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800728 hdr = (struct vmbus_channel_message_header *)msg->u.payload;
729 size = msg->header.payload_size;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700730
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800731 if (hdr->msgtype >= CHANNELMSG_COUNT) {
Hank Janssen0a466182011-03-29 13:58:47 -0700732 pr_err("Received invalid channel message type %d size %d\n",
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800733 hdr->msgtype, size);
Greg Kroah-Hartman04f50c42009-07-16 12:35:37 -0700734 print_hex_dump_bytes("", DUMP_PREFIX_NONE,
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800735 (unsigned char *)msg->u.payload, size);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700736 return;
737 }
738
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -0700739 if (channel_message_table[hdr->msgtype].message_handler)
740 channel_message_table[hdr->msgtype].message_handler(hdr);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700741 else
Hank Janssen0a466182011-03-29 13:58:47 -0700742 pr_err("Unhandled channel message type %d\n", hdr->msgtype);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700743}
744
Hank Janssen3e189512010-03-04 22:11:00 +0000745/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700746 * vmbus_request_offers - Send a request to get all our pending offers.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700747 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700748int vmbus_request_offers(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700749{
Greg Kroah-Hartman82250212009-08-26 15:16:04 -0700750 struct vmbus_channel_message_header *msg;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700751 struct vmbus_channel_msginfo *msginfo;
Nicholas Mc Guire51e51812015-02-27 11:26:02 -0800752 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700753
Haiyang Zhang188963e2010-10-15 10:14:06 -0700754 msginfo = kmalloc(sizeof(*msginfo) +
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700755 sizeof(struct vmbus_channel_message_header),
756 GFP_KERNEL);
Haiyang Zhang188963e2010-10-15 10:14:06 -0700757 if (!msginfo)
Bill Pemberton75910f22010-05-05 15:27:31 -0400758 return -ENOMEM;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700759
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800760 msg = (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700761
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800762 msg->msgtype = CHANNELMSG_REQUESTOFFERS;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700763
Hank Janssen3e7ee492009-07-13 16:02:34 -0700764
Haiyang Zhangc6977672011-01-26 12:12:08 -0800765 ret = vmbus_post_msg(msg,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700766 sizeof(struct vmbus_channel_message_header));
767 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700768 pr_err("Unable to request offers - %d\n", ret);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700769
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800770 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700771 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700772
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800773cleanup:
Ilia Mirkindd9b15d2011-03-13 00:29:00 -0500774 kfree(msginfo);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700775
Hank Janssen3e7ee492009-07-13 16:02:34 -0700776 return ret;
777}
778
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700779/*
780 * Retrieve the (sub) channel on which to send an outgoing request.
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800781 * When a primary channel has multiple sub-channels, we try to
782 * distribute the load equally amongst all available channels.
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700783 */
784struct vmbus_channel *vmbus_get_outgoing_channel(struct vmbus_channel *primary)
785{
786 struct list_head *cur, *tmp;
K. Y. Srinivasan87712bf82014-12-14 23:34:51 -0800787 int cur_cpu;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700788 struct vmbus_channel *cur_channel;
789 struct vmbus_channel *outgoing_channel = primary;
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800790 int next_channel;
791 int i = 1;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700792
793 if (list_empty(&primary->sc_list))
794 return outgoing_channel;
795
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800796 next_channel = primary->next_oc++;
797
798 if (next_channel > (primary->num_sc)) {
799 primary->next_oc = 0;
800 return outgoing_channel;
801 }
802
K. Y. Srinivasan87712bf82014-12-14 23:34:51 -0800803 cur_cpu = hv_context.vp_index[get_cpu()];
804 put_cpu();
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700805 list_for_each_safe(cur, tmp, &primary->sc_list) {
806 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
807 if (cur_channel->state != CHANNEL_OPENED_STATE)
808 continue;
809
810 if (cur_channel->target_vp == cur_cpu)
811 return cur_channel;
812
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800813 if (i == next_channel)
814 return cur_channel;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700815
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800816 i++;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700817 }
818
819 return outgoing_channel;
820}
821EXPORT_SYMBOL_GPL(vmbus_get_outgoing_channel);
822
823static void invoke_sc_cb(struct vmbus_channel *primary_channel)
824{
825 struct list_head *cur, *tmp;
826 struct vmbus_channel *cur_channel;
827
828 if (primary_channel->sc_creation_callback == NULL)
829 return;
830
831 list_for_each_safe(cur, tmp, &primary_channel->sc_list) {
832 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
833
834 primary_channel->sc_creation_callback(cur_channel);
835 }
836}
837
838void vmbus_set_sc_create_callback(struct vmbus_channel *primary_channel,
839 void (*sc_cr_cb)(struct vmbus_channel *new_sc))
840{
841 primary_channel->sc_creation_callback = sc_cr_cb;
842}
843EXPORT_SYMBOL_GPL(vmbus_set_sc_create_callback);
844
845bool vmbus_are_subchannels_present(struct vmbus_channel *primary)
846{
847 bool ret;
848
849 ret = !list_empty(&primary->sc_list);
850
851 if (ret) {
852 /*
853 * Invoke the callback on sub-channel creation.
854 * This will present a uniform interface to the
855 * clients.
856 */
857 invoke_sc_cb(primary);
858 }
859
860 return ret;
861}
862EXPORT_SYMBOL_GPL(vmbus_are_subchannels_present);