blob: b1e5a5fdaf7f1b390f7975d47a41efc4b6e22c4f [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
Greg Kroah-Hartman1d7e9072009-08-28 16:26:11 -070035struct vmbus_channel_message_table_entry {
K. Y. Srinivasancf9dcba2011-05-10 07:55:37 -070036 enum vmbus_channel_message_type message_type;
K. Y. Srinivasanfa90f1d2011-05-10 07:55:36 -070037 void (*message_handler)(struct vmbus_channel_message_header *msg);
Greg Kroah-Hartman1d7e9072009-08-28 16:26:11 -070038};
Hank Janssen3e7ee492009-07-13 16:02:34 -070039
Hank Janssenc88c4e42010-05-04 15:55:05 -070040
41/**
Greg Kroah-Hartmanda0e9632011-10-11 08:42:28 -060042 * vmbus_prep_negotiate_resp() - Create default response for Hyper-V Negotiate message
Hank Janssenc88c4e42010-05-04 15:55:05 -070043 * @icmsghdrp: Pointer to msg header structure
44 * @icmsg_negotiate: Pointer to negotiate message structure
45 * @buf: Raw buffer channel data
46 *
47 * @icmsghdrp is of type &struct icmsg_hdr.
48 * @negop is of type &struct icmsg_negotiate.
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070049 * Set up and fill in default negotiate response message.
50 *
K. Y. Srinivasan67413352013-07-02 10:31:30 -070051 * The fw_version specifies the framework version that
52 * we can support and srv_version specifies the service
53 * version we can support.
Hank Janssenc88c4e42010-05-04 15:55:05 -070054 *
55 * Mainly used by Hyper-V drivers.
56 */
K. Y. Srinivasan67413352013-07-02 10:31:30 -070057bool vmbus_prep_negotiate_resp(struct icmsg_hdr *icmsghdrp,
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070058 struct icmsg_negotiate *negop, u8 *buf,
K. Y. Srinivasan67413352013-07-02 10:31:30 -070059 int fw_version, int srv_version)
Hank Janssenc88c4e42010-05-04 15:55:05 -070060{
K. Y. Srinivasan67413352013-07-02 10:31:30 -070061 int icframe_major, icframe_minor;
62 int icmsg_major, icmsg_minor;
63 int fw_major, fw_minor;
64 int srv_major, srv_minor;
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070065 int i;
K. Y. Srinivasan67413352013-07-02 10:31:30 -070066 bool found_match = false;
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070067
K. Y. Srinivasana3605302012-05-12 13:44:57 -070068 icmsghdrp->icmsgsize = 0x10;
K. Y. Srinivasan67413352013-07-02 10:31:30 -070069 fw_major = (fw_version >> 16);
70 fw_minor = (fw_version & 0xFFFF);
71
72 srv_major = (srv_version >> 16);
73 srv_minor = (srv_version & 0xFFFF);
Hank Janssenc88c4e42010-05-04 15:55:05 -070074
K. Y. Srinivasana3605302012-05-12 13:44:57 -070075 negop = (struct icmsg_negotiate *)&buf[
76 sizeof(struct vmbuspipe_hdr) +
77 sizeof(struct icmsg_hdr)];
Hank Janssenc88c4e42010-05-04 15:55:05 -070078
K. Y. Srinivasan67413352013-07-02 10:31:30 -070079 icframe_major = negop->icframe_vercnt;
80 icframe_minor = 0;
81
82 icmsg_major = negop->icmsg_vercnt;
83 icmsg_minor = 0;
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070084
85 /*
86 * Select the framework version number we will
87 * support.
88 */
89
90 for (i = 0; i < negop->icframe_vercnt; i++) {
K. Y. Srinivasan67413352013-07-02 10:31:30 -070091 if ((negop->icversion_data[i].major == fw_major) &&
92 (negop->icversion_data[i].minor == fw_minor)) {
93 icframe_major = negop->icversion_data[i].major;
94 icframe_minor = negop->icversion_data[i].minor;
95 found_match = true;
96 }
Hank Janssenc88c4e42010-05-04 15:55:05 -070097 }
K. Y. Srinivasana3605302012-05-12 13:44:57 -070098
K. Y. Srinivasan67413352013-07-02 10:31:30 -070099 if (!found_match)
100 goto fw_error;
101
102 found_match = false;
103
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700104 for (i = negop->icframe_vercnt;
105 (i < negop->icframe_vercnt + negop->icmsg_vercnt); i++) {
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700106 if ((negop->icversion_data[i].major == srv_major) &&
107 (negop->icversion_data[i].minor == srv_minor)) {
108 icmsg_major = negop->icversion_data[i].major;
109 icmsg_minor = negop->icversion_data[i].minor;
110 found_match = true;
111 }
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700112 }
113
114 /*
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700115 * Respond with the framework and service
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700116 * version numbers we can support.
117 */
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700118
119fw_error:
120 if (!found_match) {
121 negop->icframe_vercnt = 0;
122 negop->icmsg_vercnt = 0;
123 } else {
124 negop->icframe_vercnt = 1;
125 negop->icmsg_vercnt = 1;
126 }
127
128 negop->icversion_data[0].major = icframe_major;
129 negop->icversion_data[0].minor = icframe_minor;
130 negop->icversion_data[1].major = icmsg_major;
131 negop->icversion_data[1].minor = icmsg_minor;
132 return found_match;
Hank Janssenc88c4e42010-05-04 15:55:05 -0700133}
K. Y. Srinivasana3605302012-05-12 13:44:57 -0700134
Greg Kroah-Hartmanda0e9632011-10-11 08:42:28 -0600135EXPORT_SYMBOL_GPL(vmbus_prep_negotiate_resp);
Hank Janssenc88c4e42010-05-04 15:55:05 -0700136
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800137static void vmbus_process_device_unregister(struct work_struct *work)
138{
139 struct device *dev;
140 struct vmbus_channel *channel = container_of(work,
141 struct vmbus_channel,
142 work);
143
144 dev = get_device(&channel->device_obj->device);
145 if (dev) {
146 vmbus_device_unregister(channel->device_obj);
147 put_device(dev);
148 }
149}
150
151static void vmbus_sc_creation_cb(struct work_struct *work)
152{
153 struct vmbus_channel *newchannel = container_of(work,
154 struct vmbus_channel,
155 work);
156 struct vmbus_channel *primary_channel = newchannel->primary_channel;
157
158 /*
159 * On entry sc_creation_callback has been already verified to
160 * be non-NULL.
161 */
162 primary_channel->sc_creation_callback(newchannel);
163}
164
Hank Janssen3e189512010-03-04 22:11:00 +0000165/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700166 * alloc_channel - Allocate and initialize a vmbus channel object
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700167 */
Greg Kroah-Hartman50fe56d2010-10-20 15:51:57 -0700168static struct vmbus_channel *alloc_channel(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700169{
Vitaly Kuznetsovbc63b6f2015-02-27 11:25:52 -0800170 static atomic_t chan_num = ATOMIC_INIT(0);
Greg Kroah-Hartmanaded7162009-08-18 15:21:19 -0700171 struct vmbus_channel *channel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700172
Greg Kroah-Hartmanaded7162009-08-18 15:21:19 -0700173 channel = kzalloc(sizeof(*channel), GFP_ATOMIC);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700174 if (!channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700175 return NULL;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700176
Vitaly Kuznetsovbc63b6f2015-02-27 11:25:52 -0800177 channel->id = atomic_inc_return(&chan_num);
Greg Kroah-Hartman54411c42009-07-15 14:48:32 -0700178 spin_lock_init(&channel->inbound_lock);
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100179 spin_lock_init(&channel->lock);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700180
181 INIT_LIST_HEAD(&channel->sc_list);
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700182 INIT_LIST_HEAD(&channel->percpu_list);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700183
Vitaly Kuznetsovbc63b6f2015-02-27 11:25:52 -0800184 channel->controlwq = alloc_workqueue("hv_vmbus_ctl/%d", WQ_MEM_RECLAIM,
185 1, channel->id);
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800186 if (!channel->controlwq) {
Greg Kroah-Hartman8c69f522009-07-15 12:48:29 -0700187 kfree(channel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700188 return NULL;
189 }
190
191 return channel;
192}
193
Hank Janssen3e189512010-03-04 22:11:00 +0000194/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700195 * release_hannel - Release the vmbus channel object itself
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700196 */
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200197static void release_channel(struct work_struct *work)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700198{
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200199 struct vmbus_channel *channel = container_of(work,
200 struct vmbus_channel,
201 work);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700202
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800203 destroy_workqueue(channel->controlwq);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700204
Greg Kroah-Hartman8c69f522009-07-15 12:48:29 -0700205 kfree(channel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700206}
207
Hank Janssen3e189512010-03-04 22:11:00 +0000208/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700209 * free_channel - Release the resources used by the vmbus channel object
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700210 */
Greg Kroah-Hartman9f3e28e2011-10-11 09:40:01 -0600211static void free_channel(struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700212{
Hank Janssen3e7ee492009-07-13 16:02:34 -0700213
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700214 /*
215 * We have to release the channel's workqueue/thread in the vmbus's
216 * workqueue/thread context
217 * ie we can't destroy ourselves.
218 */
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200219 INIT_WORK(&channel->work, release_channel);
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800220 queue_work(vmbus_connection.work_queue, &channel->work);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700221}
222
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700223static void percpu_channel_enq(void *arg)
224{
225 struct vmbus_channel *channel = arg;
226 int cpu = smp_processor_id();
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000227
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700228 list_add_tail(&channel->percpu_list, &hv_context.percpu_list[cpu]);
229}
230
231static void percpu_channel_deq(void *arg)
232{
233 struct vmbus_channel *channel = arg;
234
235 list_del(&channel->percpu_list);
236}
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000237
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800238
239void hv_process_channel_removal(struct vmbus_channel *channel, u32 relid)
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200240{
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800241 struct vmbus_channel_relid_released msg;
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700242 unsigned long flags;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700243 struct vmbus_channel *primary_channel;
Vitaly Kuznetsov04a258c2014-11-04 13:40:11 +0100244
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700245 memset(&msg, 0, sizeof(struct vmbus_channel_relid_released));
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800246 msg.child_relid = relid;
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700247 msg.header.msgtype = CHANNELMSG_RELID_RELEASED;
248 vmbus_post_msg(&msg, sizeof(struct vmbus_channel_relid_released));
249
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800250 if (channel == NULL)
251 return;
252
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700253 if (channel->target_cpu != get_cpu()) {
254 put_cpu();
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700255 smp_call_function_single(channel->target_cpu,
256 percpu_channel_deq, channel, true);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700257 } else {
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700258 percpu_channel_deq(channel);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700259 put_cpu();
260 }
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700261
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700262 if (channel->primary_channel == NULL) {
263 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
264 list_del(&channel->listentry);
265 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
266 } else {
267 primary_channel = channel->primary_channel;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100268 spin_lock_irqsave(&primary_channel->lock, flags);
K. Y. Srinivasan565ce642013-10-16 19:27:19 -0700269 list_del(&channel->sc_list);
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100270 spin_unlock_irqrestore(&primary_channel->lock, flags);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700271 }
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700272 free_channel(channel);
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200273}
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000274
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800275void vmbus_free_channels(void)
276{
277 struct vmbus_channel *channel;
278
279 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
280 vmbus_device_unregister(channel->device_obj);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800281 free_channel(channel);
282 }
283}
284
Hank Janssen3e189512010-03-04 22:11:00 +0000285/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700286 * vmbus_process_offer - Process the offer by creating a channel/device
Hank Janssenc88c4e42010-05-04 15:55:05 -0700287 * associated with this offer
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700288 */
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800289static void vmbus_process_offer(struct vmbus_channel *newchannel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700290{
Greg Kroah-Hartmanaded7162009-08-18 15:21:19 -0700291 struct vmbus_channel *channel;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700292 bool fnew = true;
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700293 bool enq = false;
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700294 int ret;
Greg Kroah-Hartman0f5e44c2009-07-15 14:57:16 -0700295 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700296
Bill Pemberton454f18a2009-07-27 16:47:24 -0400297 /* Make sure this is a new offer */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800298 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700299
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800300 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700301 if (!uuid_le_cmp(channel->offermsg.offer.if_type,
302 newchannel->offermsg.offer.if_type) &&
303 !uuid_le_cmp(channel->offermsg.offer.if_instance,
304 newchannel->offermsg.offer.if_instance)) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700305 fnew = false;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700306 break;
307 }
308 }
309
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700310 if (fnew) {
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800311 list_add_tail(&newchannel->listentry,
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800312 &vmbus_connection.chn_list);
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700313 enq = true;
314 }
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700315
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800316 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700317
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700318 if (enq) {
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700319 if (newchannel->target_cpu != get_cpu()) {
320 put_cpu();
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700321 smp_call_function_single(newchannel->target_cpu,
322 percpu_channel_enq,
323 newchannel, true);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700324 } else {
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700325 percpu_channel_enq(newchannel);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700326 put_cpu();
327 }
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700328 }
Haiyang Zhang188963e2010-10-15 10:14:06 -0700329 if (!fnew) {
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700330 /*
331 * Check to see if this is a sub-channel.
332 */
333 if (newchannel->offermsg.offer.sub_channel_index != 0) {
334 /*
335 * Process the sub-channel.
336 */
337 newchannel->primary_channel = channel;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100338 spin_lock_irqsave(&channel->lock, flags);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700339 list_add_tail(&newchannel->sc_list, &channel->sc_list);
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100340 spin_unlock_irqrestore(&channel->lock, flags);
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700341
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700342 if (newchannel->target_cpu != get_cpu()) {
343 put_cpu();
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700344 smp_call_function_single(newchannel->target_cpu,
345 percpu_channel_enq,
346 newchannel, true);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700347 } else {
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700348 percpu_channel_enq(newchannel);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700349 put_cpu();
350 }
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700351
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700352 newchannel->state = CHANNEL_OPEN_STATE;
353 if (channel->sc_creation_callback != NULL)
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800354 /*
355 * We need to invoke the sub-channel creation
356 * callback; invoke this in a seperate work
357 * context since we are currently running on
358 * the global work context in which we handle
359 * messages from the host.
360 */
361 INIT_WORK(&newchannel->work,
362 vmbus_sc_creation_cb);
363 queue_work(newchannel->controlwq,
364 &newchannel->work);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700365
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800366 return;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700367 }
368
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100369 goto err_free_chan;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700370 }
371
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700372 /*
K. Y. Srinivasan42dceeb2013-08-26 14:08:58 -0700373 * This state is used to indicate a successful open
374 * so that when we do close the channel normally, we
375 * can cleanup properly
376 */
377 newchannel->state = CHANNEL_OPEN_STATE;
378
379 /*
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700380 * Start the process of binding this offer to the driver
381 * We need to set the DeviceObject field before calling
Haiyang Zhang646f1ea2011-01-26 12:12:10 -0800382 * vmbus_child_dev_add()
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700383 */
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700384 newchannel->device_obj = vmbus_device_create(
Haiyang Zhang767dff62011-01-26 12:12:12 -0800385 &newchannel->offermsg.offer.if_type,
386 &newchannel->offermsg.offer.if_instance,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700387 newchannel);
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100388 if (!newchannel->device_obj)
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800389 goto err_deq_chan;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700390
Bill Pemberton454f18a2009-07-27 16:47:24 -0400391 /*
392 * Add the new device to the bus. This will kick off device-driver
393 * binding which eventually invokes the device driver's AddDevice()
394 * method.
395 */
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700396 ret = vmbus_device_register(newchannel->device_obj);
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700397 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700398 pr_err("unable to add child device object (relid %d)\n",
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800399 newchannel->offermsg.child_relid);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700400
K. Y. Srinivasan8b8ee672011-12-12 09:29:16 -0800401 kfree(newchannel->device_obj);
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800402 goto err_deq_chan;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700403 }
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800404
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100405 return;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800406
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800407err_deq_chan:
408 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
409 list_del(&newchannel->listentry);
410 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
411
412 if (newchannel->target_cpu != get_cpu()) {
413 put_cpu();
414 smp_call_function_single(newchannel->target_cpu,
415 percpu_channel_deq, newchannel, true);
416 } else {
417 percpu_channel_deq(newchannel);
418 put_cpu();
419 }
420
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100421err_free_chan:
422 free_channel(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700423}
424
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800425enum {
426 IDE = 0,
427 SCSI,
428 NIC,
429 MAX_PERF_CHN,
430};
431
432/*
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800433 * This is an array of device_ids (device types) that are performance critical.
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800434 * We attempt to distribute the interrupt load for these devices across
435 * all available CPUs.
436 */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800437static const struct hv_vmbus_device_id hp_devs[] = {
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800438 /* IDE */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800439 { HV_IDE_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800440 /* Storage - SCSI */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800441 { HV_SCSI_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800442 /* Network */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800443 { HV_NIC_GUID, },
K. Y. Srinivasan04653a02015-02-27 11:26:05 -0800444 /* NetworkDirect Guest RDMA */
445 { HV_ND_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800446};
447
448
449/*
450 * We use this state to statically distribute the channel interrupt load.
451 */
452static u32 next_vp;
453
454/*
455 * Starting with Win8, we can statically distribute the incoming
456 * channel interrupt load by binding a channel to VCPU. We
457 * implement here a simple round robin scheme for distributing
458 * the interrupt load.
459 * We will bind channels that are not performance critical to cpu 0 and
460 * performance critical channels (IDE, SCSI and Network) will be uniformly
461 * distributed across all available CPUs.
462 */
Linus Torvaldsf9da4552014-06-12 14:27:40 -0700463static void init_vp_index(struct vmbus_channel *channel, const uuid_le *type_guid)
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800464{
465 u32 cur_cpu;
466 int i;
467 bool perf_chn = false;
468 u32 max_cpus = num_online_cpus();
469
470 for (i = IDE; i < MAX_PERF_CHN; i++) {
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800471 if (!memcmp(type_guid->b, hp_devs[i].guid,
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800472 sizeof(uuid_le))) {
473 perf_chn = true;
474 break;
475 }
476 }
477 if ((vmbus_proto_version == VERSION_WS2008) ||
478 (vmbus_proto_version == VERSION_WIN7) || (!perf_chn)) {
479 /*
480 * Prior to win8, all channel interrupts are
481 * delivered on cpu 0.
482 * Also if the channel is not a performance critical
483 * channel, bind it to cpu 0.
484 */
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700485 channel->target_cpu = 0;
486 channel->target_vp = 0;
487 return;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800488 }
489 cur_cpu = (++next_vp % max_cpus);
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700490 channel->target_cpu = cur_cpu;
491 channel->target_vp = hv_context.vp_index[cur_cpu];
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800492}
493
Hank Janssen3e189512010-03-04 22:11:00 +0000494/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700495 * vmbus_onoffer - Handler for channel offers from vmbus in parent partition.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700496 *
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700497 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700498static void vmbus_onoffer(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700499{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700500 struct vmbus_channel_offer_channel *offer;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700501 struct vmbus_channel *newchannel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700502
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700503 offer = (struct vmbus_channel_offer_channel *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700504
Bill Pemberton454f18a2009-07-27 16:47:24 -0400505 /* Allocate the channel object and save this offer. */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700506 newchannel = alloc_channel();
Haiyang Zhang188963e2010-10-15 10:14:06 -0700507 if (!newchannel) {
Hank Janssen0a466182011-03-29 13:58:47 -0700508 pr_err("Unable to allocate channel object\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700509 return;
510 }
511
K. Y. Srinivasan132368b2012-12-01 06:46:33 -0800512 /*
513 * By default we setup state to enable batched
514 * reading. A specific service can choose to
515 * disable this prior to opening the channel.
516 */
517 newchannel->batched_reading = true;
518
K. Y. Srinivasanb3bf60c2012-12-01 06:46:45 -0800519 /*
520 * Setup state for signalling the host.
521 */
522 newchannel->sig_event = (struct hv_input_signal_event *)
523 (ALIGN((unsigned long)
524 &newchannel->sig_buf,
525 HV_HYPERCALL_PARAM_ALIGN));
526
527 newchannel->sig_event->connectionid.asu32 = 0;
528 newchannel->sig_event->connectionid.u.id = VMBUS_EVENT_CONNECTION_ID;
529 newchannel->sig_event->flag_number = 0;
530 newchannel->sig_event->rsvdz = 0;
531
532 if (vmbus_proto_version != VERSION_WS2008) {
533 newchannel->is_dedicated_interrupt =
534 (offer->is_dedicated_interrupt != 0);
535 newchannel->sig_event->connectionid.u.id =
536 offer->connection_id;
537 }
538
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700539 init_vp_index(newchannel, &offer->offer.if_type);
K. Y. Srinivasanabbf3b22012-12-01 06:46:48 -0800540
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800541 memcpy(&newchannel->offermsg, offer,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700542 sizeof(struct vmbus_channel_offer_channel));
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800543 newchannel->monitor_grp = (u8)offer->monitorid / 32;
544 newchannel->monitor_bit = (u8)offer->monitorid % 32;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700545
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800546 vmbus_process_offer(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700547}
548
Hank Janssen3e189512010-03-04 22:11:00 +0000549/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700550 * vmbus_onoffer_rescind - Rescind offer handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700551 *
552 * We queue a work item to process this offer synchronously
553 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700554static void vmbus_onoffer_rescind(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700555{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700556 struct vmbus_channel_rescind_offer *rescind;
Greg Kroah-Hartmanaded7162009-08-18 15:21:19 -0700557 struct vmbus_channel *channel;
Vitaly Kuznetsovd7f2fba2015-01-20 16:45:06 +0100558 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700559
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700560 rescind = (struct vmbus_channel_rescind_offer *)hdr;
Haiyang Zhangc6977672011-01-26 12:12:08 -0800561 channel = relid2channel(rescind->child_relid);
Hank Janssen98e08702011-03-29 13:58:44 -0700562
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800563 if (channel == NULL) {
564 hv_process_channel_removal(NULL, rescind->child_relid);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700565 return;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800566 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700567
Vitaly Kuznetsovd7f2fba2015-01-20 16:45:06 +0100568 spin_lock_irqsave(&channel->lock, flags);
Haiyang Zhangc3582a22014-12-01 13:28:39 -0800569 channel->rescind = true;
Vitaly Kuznetsovd7f2fba2015-01-20 16:45:06 +0100570 spin_unlock_irqrestore(&channel->lock, flags);
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800571
572 if (channel->device_obj) {
573 /*
574 * We will have to unregister this device from the
575 * driver core. Do this in the per-channel work context.
576 * Note that we are currently executing on the global
577 * workq for handling messages from the host.
578 */
579 INIT_WORK(&channel->work, vmbus_process_device_unregister);
580 queue_work(channel->controlwq, &channel->work);
581 } else {
582 hv_process_channel_removal(channel,
583 channel->offermsg.child_relid);
584 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700585}
586
Hank Janssen3e189512010-03-04 22:11:00 +0000587/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700588 * vmbus_onoffers_delivered -
589 * This is invoked when all offers have been delivered.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700590 *
591 * Nothing to do here.
592 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700593static void vmbus_onoffers_delivered(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700594 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700595{
Hank Janssen3e7ee492009-07-13 16:02:34 -0700596}
597
Hank Janssen3e189512010-03-04 22:11:00 +0000598/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700599 * vmbus_onopen_result - Open result handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700600 *
601 * This is invoked when we received a response to our channel open request.
602 * Find the matching request, copy the response and signal the requesting
603 * thread.
604 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700605static void vmbus_onopen_result(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700606{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700607 struct vmbus_channel_open_result *result;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700608 struct vmbus_channel_msginfo *msginfo;
609 struct vmbus_channel_message_header *requestheader;
610 struct vmbus_channel_open_channel *openmsg;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700611 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700612
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700613 result = (struct vmbus_channel_open_result *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700614
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700615 /*
616 * Find the open msg, copy the result and signal/unblock the wait event
617 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800618 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700619
Hank Janssenebb61e52011-02-18 12:39:57 -0800620 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
621 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700622 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800623 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700624
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800625 if (requestheader->msgtype == CHANNELMSG_OPENCHANNEL) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700626 openmsg =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800627 (struct vmbus_channel_open_channel *)msginfo->msg;
628 if (openmsg->child_relid == result->child_relid &&
629 openmsg->openid == result->openid) {
630 memcpy(&msginfo->response.open_result,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700631 result,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700632 sizeof(
633 struct vmbus_channel_open_result));
634 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700635 break;
636 }
637 }
638 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800639 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700640}
641
Hank Janssen3e189512010-03-04 22:11:00 +0000642/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700643 * vmbus_ongpadl_created - GPADL created handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700644 *
645 * This is invoked when we received a response to our gpadl create request.
646 * Find the matching request, copy the response and signal the requesting
647 * thread.
648 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700649static void vmbus_ongpadl_created(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700650{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700651 struct vmbus_channel_gpadl_created *gpadlcreated;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700652 struct vmbus_channel_msginfo *msginfo;
653 struct vmbus_channel_message_header *requestheader;
654 struct vmbus_channel_gpadl_header *gpadlheader;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700655 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700656
Haiyang Zhang188963e2010-10-15 10:14:06 -0700657 gpadlcreated = (struct vmbus_channel_gpadl_created *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700658
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700659 /*
660 * Find the establish msg, copy the result and signal/unblock the wait
661 * event
662 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800663 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700664
Hank Janssenebb61e52011-02-18 12:39:57 -0800665 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
666 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700667 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800668 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700669
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800670 if (requestheader->msgtype == CHANNELMSG_GPADL_HEADER) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700671 gpadlheader =
672 (struct vmbus_channel_gpadl_header *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700673
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800674 if ((gpadlcreated->child_relid ==
675 gpadlheader->child_relid) &&
676 (gpadlcreated->gpadl == gpadlheader->gpadl)) {
677 memcpy(&msginfo->response.gpadl_created,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700678 gpadlcreated,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700679 sizeof(
680 struct vmbus_channel_gpadl_created));
681 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700682 break;
683 }
684 }
685 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800686 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700687}
688
Hank Janssen3e189512010-03-04 22:11:00 +0000689/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700690 * vmbus_ongpadl_torndown - GPADL torndown handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700691 *
692 * This is invoked when we received a response to our gpadl teardown request.
693 * Find the matching request, copy the response and signal the requesting
694 * thread.
695 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700696static void vmbus_ongpadl_torndown(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700697 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700698{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700699 struct vmbus_channel_gpadl_torndown *gpadl_torndown;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700700 struct vmbus_channel_msginfo *msginfo;
701 struct vmbus_channel_message_header *requestheader;
702 struct vmbus_channel_gpadl_teardown *gpadl_teardown;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700703 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700704
Haiyang Zhang188963e2010-10-15 10:14:06 -0700705 gpadl_torndown = (struct vmbus_channel_gpadl_torndown *)hdr;
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700706
707 /*
708 * Find the open msg, copy the result and signal/unblock the wait event
709 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800710 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700711
Hank Janssenebb61e52011-02-18 12:39:57 -0800712 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
713 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700714 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800715 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700716
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800717 if (requestheader->msgtype == CHANNELMSG_GPADL_TEARDOWN) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700718 gpadl_teardown =
719 (struct vmbus_channel_gpadl_teardown *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700720
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800721 if (gpadl_torndown->gpadl == gpadl_teardown->gpadl) {
722 memcpy(&msginfo->response.gpadl_torndown,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700723 gpadl_torndown,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700724 sizeof(
725 struct vmbus_channel_gpadl_torndown));
726 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700727 break;
728 }
729 }
730 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800731 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700732}
733
Hank Janssen3e189512010-03-04 22:11:00 +0000734/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700735 * vmbus_onversion_response - Version response handler
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700736 *
737 * This is invoked when we received a response to our initiate contact request.
738 * Find the matching request, copy the response and signal the requesting
739 * thread.
740 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700741static void vmbus_onversion_response(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700742 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700743{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700744 struct vmbus_channel_msginfo *msginfo;
745 struct vmbus_channel_message_header *requestheader;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700746 struct vmbus_channel_version_response *version_response;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700747 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700748
Haiyang Zhang188963e2010-10-15 10:14:06 -0700749 version_response = (struct vmbus_channel_version_response *)hdr;
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800750 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700751
Hank Janssenebb61e52011-02-18 12:39:57 -0800752 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
753 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700754 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800755 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700756
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800757 if (requestheader->msgtype ==
758 CHANNELMSG_INITIATE_CONTACT) {
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800759 memcpy(&msginfo->response.version_response,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700760 version_response,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700761 sizeof(struct vmbus_channel_version_response));
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700762 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700763 }
764 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800765 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700766}
767
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -0700768/* Channel message dispatch table */
769static struct vmbus_channel_message_table_entry
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -0700770 channel_message_table[CHANNELMSG_COUNT] = {
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800771 {CHANNELMSG_INVALID, NULL},
772 {CHANNELMSG_OFFERCHANNEL, vmbus_onoffer},
773 {CHANNELMSG_RESCIND_CHANNELOFFER, vmbus_onoffer_rescind},
774 {CHANNELMSG_REQUESTOFFERS, NULL},
775 {CHANNELMSG_ALLOFFERS_DELIVERED, vmbus_onoffers_delivered},
776 {CHANNELMSG_OPENCHANNEL, NULL},
777 {CHANNELMSG_OPENCHANNEL_RESULT, vmbus_onopen_result},
778 {CHANNELMSG_CLOSECHANNEL, NULL},
779 {CHANNELMSG_GPADL_HEADER, NULL},
780 {CHANNELMSG_GPADL_BODY, NULL},
781 {CHANNELMSG_GPADL_CREATED, vmbus_ongpadl_created},
782 {CHANNELMSG_GPADL_TEARDOWN, NULL},
783 {CHANNELMSG_GPADL_TORNDOWN, vmbus_ongpadl_torndown},
784 {CHANNELMSG_RELID_RELEASED, NULL},
785 {CHANNELMSG_INITIATE_CONTACT, NULL},
786 {CHANNELMSG_VERSION_RESPONSE, vmbus_onversion_response},
787 {CHANNELMSG_UNLOAD, NULL},
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -0700788};
789
Hank Janssen3e189512010-03-04 22:11:00 +0000790/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700791 * vmbus_onmessage - Handler for channel protocol messages.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700792 *
793 * This is invoked in the vmbus worker thread context.
794 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700795void vmbus_onmessage(void *context)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700796{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700797 struct hv_message *msg = context;
Greg Kroah-Hartman82250212009-08-26 15:16:04 -0700798 struct vmbus_channel_message_header *hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700799 int size;
800
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800801 hdr = (struct vmbus_channel_message_header *)msg->u.payload;
802 size = msg->header.payload_size;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700803
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800804 if (hdr->msgtype >= CHANNELMSG_COUNT) {
Hank Janssen0a466182011-03-29 13:58:47 -0700805 pr_err("Received invalid channel message type %d size %d\n",
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800806 hdr->msgtype, size);
Greg Kroah-Hartman04f50c42009-07-16 12:35:37 -0700807 print_hex_dump_bytes("", DUMP_PREFIX_NONE,
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800808 (unsigned char *)msg->u.payload, size);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700809 return;
810 }
811
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -0700812 if (channel_message_table[hdr->msgtype].message_handler)
813 channel_message_table[hdr->msgtype].message_handler(hdr);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700814 else
Hank Janssen0a466182011-03-29 13:58:47 -0700815 pr_err("Unhandled channel message type %d\n", hdr->msgtype);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700816}
817
Hank Janssen3e189512010-03-04 22:11:00 +0000818/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700819 * vmbus_request_offers - Send a request to get all our pending offers.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700820 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700821int vmbus_request_offers(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700822{
Greg Kroah-Hartman82250212009-08-26 15:16:04 -0700823 struct vmbus_channel_message_header *msg;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700824 struct vmbus_channel_msginfo *msginfo;
Nicholas Mc Guire51e51812015-02-27 11:26:02 -0800825 int ret;
826 unsigned long t;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700827
Haiyang Zhang188963e2010-10-15 10:14:06 -0700828 msginfo = kmalloc(sizeof(*msginfo) +
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700829 sizeof(struct vmbus_channel_message_header),
830 GFP_KERNEL);
Haiyang Zhang188963e2010-10-15 10:14:06 -0700831 if (!msginfo)
Bill Pemberton75910f22010-05-05 15:27:31 -0400832 return -ENOMEM;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700833
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700834 init_completion(&msginfo->waitevent);
Bill Pemberton75910f22010-05-05 15:27:31 -0400835
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800836 msg = (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700837
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800838 msg->msgtype = CHANNELMSG_REQUESTOFFERS;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700839
Hank Janssen3e7ee492009-07-13 16:02:34 -0700840
Haiyang Zhangc6977672011-01-26 12:12:08 -0800841 ret = vmbus_post_msg(msg,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700842 sizeof(struct vmbus_channel_message_header));
843 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700844 pr_err("Unable to request offers - %d\n", ret);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700845
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800846 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700847 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700848
K. Y. Srinivasan2dfde962011-06-16 13:16:34 -0700849 t = wait_for_completion_timeout(&msginfo->waitevent, 5*HZ);
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700850 if (t == 0) {
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800851 ret = -ETIMEDOUT;
852 goto cleanup;
853 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700854
855
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800856
857cleanup:
Ilia Mirkindd9b15d2011-03-13 00:29:00 -0500858 kfree(msginfo);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700859
Hank Janssen3e7ee492009-07-13 16:02:34 -0700860 return ret;
861}
862
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700863/*
864 * Retrieve the (sub) channel on which to send an outgoing request.
865 * When a primary channel has multiple sub-channels, we choose a
866 * channel whose VCPU binding is closest to the VCPU on which
867 * this call is being made.
868 */
869struct vmbus_channel *vmbus_get_outgoing_channel(struct vmbus_channel *primary)
870{
871 struct list_head *cur, *tmp;
K. Y. Srinivasan87712bf82014-12-14 23:34:51 -0800872 int cur_cpu;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700873 struct vmbus_channel *cur_channel;
874 struct vmbus_channel *outgoing_channel = primary;
875 int cpu_distance, new_cpu_distance;
876
877 if (list_empty(&primary->sc_list))
878 return outgoing_channel;
879
K. Y. Srinivasan87712bf82014-12-14 23:34:51 -0800880 cur_cpu = hv_context.vp_index[get_cpu()];
881 put_cpu();
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700882 list_for_each_safe(cur, tmp, &primary->sc_list) {
883 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
884 if (cur_channel->state != CHANNEL_OPENED_STATE)
885 continue;
886
887 if (cur_channel->target_vp == cur_cpu)
888 return cur_channel;
889
890 cpu_distance = ((outgoing_channel->target_vp > cur_cpu) ?
891 (outgoing_channel->target_vp - cur_cpu) :
892 (cur_cpu - outgoing_channel->target_vp));
893
894 new_cpu_distance = ((cur_channel->target_vp > cur_cpu) ?
895 (cur_channel->target_vp - cur_cpu) :
896 (cur_cpu - cur_channel->target_vp));
897
898 if (cpu_distance < new_cpu_distance)
899 continue;
900
901 outgoing_channel = cur_channel;
902 }
903
904 return outgoing_channel;
905}
906EXPORT_SYMBOL_GPL(vmbus_get_outgoing_channel);
907
908static void invoke_sc_cb(struct vmbus_channel *primary_channel)
909{
910 struct list_head *cur, *tmp;
911 struct vmbus_channel *cur_channel;
912
913 if (primary_channel->sc_creation_callback == NULL)
914 return;
915
916 list_for_each_safe(cur, tmp, &primary_channel->sc_list) {
917 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
918
919 primary_channel->sc_creation_callback(cur_channel);
920 }
921}
922
923void vmbus_set_sc_create_callback(struct vmbus_channel *primary_channel,
924 void (*sc_cr_cb)(struct vmbus_channel *new_sc))
925{
926 primary_channel->sc_creation_callback = sc_cr_cb;
927}
928EXPORT_SYMBOL_GPL(vmbus_set_sc_create_callback);
929
930bool vmbus_are_subchannels_present(struct vmbus_channel *primary)
931{
932 bool ret;
933
934 ret = !list_empty(&primary->sc_list);
935
936 if (ret) {
937 /*
938 * Invoke the callback on sub-channel creation.
939 * This will present a uniform interface to the
940 * clients.
941 */
942 invoke_sc_cb(primary);
943 }
944
945 return ret;
946}
947EXPORT_SYMBOL_GPL(vmbus_are_subchannels_present);