blob: 611789139f9b799d1ea612a534c02ed3ddd8188a [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-Hartmanaded71652009-08-18 15:21:19 -0700171 struct vmbus_channel *channel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700172
Greg Kroah-Hartmanaded71652009-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-Hartmanaded71652009-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;
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800353 channel->num_sc++;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700354 if (channel->sc_creation_callback != NULL)
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800355 /*
356 * We need to invoke the sub-channel creation
357 * callback; invoke this in a seperate work
358 * context since we are currently running on
359 * the global work context in which we handle
360 * messages from the host.
361 */
362 INIT_WORK(&newchannel->work,
363 vmbus_sc_creation_cb);
364 queue_work(newchannel->controlwq,
365 &newchannel->work);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700366
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800367 return;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700368 }
369
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100370 goto err_free_chan;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700371 }
372
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700373 /*
K. Y. Srinivasan42dceeb2013-08-26 14:08:58 -0700374 * This state is used to indicate a successful open
375 * so that when we do close the channel normally, we
376 * can cleanup properly
377 */
378 newchannel->state = CHANNEL_OPEN_STATE;
379
380 /*
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700381 * Start the process of binding this offer to the driver
382 * We need to set the DeviceObject field before calling
Haiyang Zhang646f1ea2011-01-26 12:12:10 -0800383 * vmbus_child_dev_add()
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700384 */
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700385 newchannel->device_obj = vmbus_device_create(
Haiyang Zhang767dff62011-01-26 12:12:12 -0800386 &newchannel->offermsg.offer.if_type,
387 &newchannel->offermsg.offer.if_instance,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700388 newchannel);
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100389 if (!newchannel->device_obj)
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800390 goto err_deq_chan;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700391
Bill Pemberton454f18a2009-07-27 16:47:24 -0400392 /*
393 * Add the new device to the bus. This will kick off device-driver
394 * binding which eventually invokes the device driver's AddDevice()
395 * method.
396 */
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700397 ret = vmbus_device_register(newchannel->device_obj);
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700398 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700399 pr_err("unable to add child device object (relid %d)\n",
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800400 newchannel->offermsg.child_relid);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700401
K. Y. Srinivasan8b8ee672011-12-12 09:29:16 -0800402 kfree(newchannel->device_obj);
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800403 goto err_deq_chan;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700404 }
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800405
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100406 return;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800407
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800408err_deq_chan:
409 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
410 list_del(&newchannel->listentry);
411 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
412
413 if (newchannel->target_cpu != get_cpu()) {
414 put_cpu();
415 smp_call_function_single(newchannel->target_cpu,
416 percpu_channel_deq, newchannel, true);
417 } else {
418 percpu_channel_deq(newchannel);
419 put_cpu();
420 }
421
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100422err_free_chan:
423 free_channel(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700424}
425
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800426enum {
427 IDE = 0,
428 SCSI,
429 NIC,
430 MAX_PERF_CHN,
431};
432
433/*
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800434 * This is an array of device_ids (device types) that are performance critical.
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800435 * We attempt to distribute the interrupt load for these devices across
436 * all available CPUs.
437 */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800438static const struct hv_vmbus_device_id hp_devs[] = {
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800439 /* IDE */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800440 { HV_IDE_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800441 /* Storage - SCSI */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800442 { HV_SCSI_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800443 /* Network */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800444 { HV_NIC_GUID, },
K. Y. Srinivasan04653a02015-02-27 11:26:05 -0800445 /* NetworkDirect Guest RDMA */
446 { HV_ND_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800447};
448
449
450/*
451 * We use this state to statically distribute the channel interrupt load.
452 */
453static u32 next_vp;
454
455/*
456 * Starting with Win8, we can statically distribute the incoming
457 * channel interrupt load by binding a channel to VCPU. We
458 * implement here a simple round robin scheme for distributing
459 * the interrupt load.
460 * We will bind channels that are not performance critical to cpu 0 and
461 * performance critical channels (IDE, SCSI and Network) will be uniformly
462 * distributed across all available CPUs.
463 */
Linus Torvaldsf9da4552014-06-12 14:27:40 -0700464static void init_vp_index(struct vmbus_channel *channel, const uuid_le *type_guid)
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800465{
466 u32 cur_cpu;
467 int i;
468 bool perf_chn = false;
469 u32 max_cpus = num_online_cpus();
470
471 for (i = IDE; i < MAX_PERF_CHN; i++) {
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800472 if (!memcmp(type_guid->b, hp_devs[i].guid,
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800473 sizeof(uuid_le))) {
474 perf_chn = true;
475 break;
476 }
477 }
478 if ((vmbus_proto_version == VERSION_WS2008) ||
479 (vmbus_proto_version == VERSION_WIN7) || (!perf_chn)) {
480 /*
481 * Prior to win8, all channel interrupts are
482 * delivered on cpu 0.
483 * Also if the channel is not a performance critical
484 * channel, bind it to cpu 0.
485 */
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700486 channel->target_cpu = 0;
487 channel->target_vp = 0;
488 return;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800489 }
490 cur_cpu = (++next_vp % max_cpus);
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700491 channel->target_cpu = cur_cpu;
492 channel->target_vp = hv_context.vp_index[cur_cpu];
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800493}
494
Hank Janssen3e189512010-03-04 22:11:00 +0000495/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700496 * vmbus_onoffer - Handler for channel offers from vmbus in parent partition.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700497 *
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700498 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700499static void vmbus_onoffer(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700500{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700501 struct vmbus_channel_offer_channel *offer;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700502 struct vmbus_channel *newchannel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700503
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700504 offer = (struct vmbus_channel_offer_channel *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700505
Bill Pemberton454f18a2009-07-27 16:47:24 -0400506 /* Allocate the channel object and save this offer. */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700507 newchannel = alloc_channel();
Haiyang Zhang188963e2010-10-15 10:14:06 -0700508 if (!newchannel) {
Hank Janssen0a466182011-03-29 13:58:47 -0700509 pr_err("Unable to allocate channel object\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700510 return;
511 }
512
K. Y. Srinivasan132368b2012-12-01 06:46:33 -0800513 /*
514 * By default we setup state to enable batched
515 * reading. A specific service can choose to
516 * disable this prior to opening the channel.
517 */
518 newchannel->batched_reading = true;
519
K. Y. Srinivasanb3bf60c2012-12-01 06:46:45 -0800520 /*
521 * Setup state for signalling the host.
522 */
523 newchannel->sig_event = (struct hv_input_signal_event *)
524 (ALIGN((unsigned long)
525 &newchannel->sig_buf,
526 HV_HYPERCALL_PARAM_ALIGN));
527
528 newchannel->sig_event->connectionid.asu32 = 0;
529 newchannel->sig_event->connectionid.u.id = VMBUS_EVENT_CONNECTION_ID;
530 newchannel->sig_event->flag_number = 0;
531 newchannel->sig_event->rsvdz = 0;
532
533 if (vmbus_proto_version != VERSION_WS2008) {
534 newchannel->is_dedicated_interrupt =
535 (offer->is_dedicated_interrupt != 0);
536 newchannel->sig_event->connectionid.u.id =
537 offer->connection_id;
538 }
539
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700540 init_vp_index(newchannel, &offer->offer.if_type);
K. Y. Srinivasanabbf3b22012-12-01 06:46:48 -0800541
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800542 memcpy(&newchannel->offermsg, offer,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700543 sizeof(struct vmbus_channel_offer_channel));
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800544 newchannel->monitor_grp = (u8)offer->monitorid / 32;
545 newchannel->monitor_bit = (u8)offer->monitorid % 32;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700546
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800547 vmbus_process_offer(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700548}
549
Hank Janssen3e189512010-03-04 22:11:00 +0000550/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700551 * vmbus_onoffer_rescind - Rescind offer handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700552 *
553 * We queue a work item to process this offer synchronously
554 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700555static void vmbus_onoffer_rescind(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700556{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700557 struct vmbus_channel_rescind_offer *rescind;
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700558 struct vmbus_channel *channel;
Vitaly Kuznetsovd7f2fba2015-01-20 16:45:06 +0100559 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700560
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700561 rescind = (struct vmbus_channel_rescind_offer *)hdr;
Haiyang Zhangc6977672011-01-26 12:12:08 -0800562 channel = relid2channel(rescind->child_relid);
Hank Janssen98e08702011-03-29 13:58:44 -0700563
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800564 if (channel == NULL) {
565 hv_process_channel_removal(NULL, rescind->child_relid);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700566 return;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800567 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700568
Vitaly Kuznetsovd7f2fba2015-01-20 16:45:06 +0100569 spin_lock_irqsave(&channel->lock, flags);
Haiyang Zhangc3582a22014-12-01 13:28:39 -0800570 channel->rescind = true;
Vitaly Kuznetsovd7f2fba2015-01-20 16:45:06 +0100571 spin_unlock_irqrestore(&channel->lock, flags);
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800572
573 if (channel->device_obj) {
574 /*
575 * We will have to unregister this device from the
576 * driver core. Do this in the per-channel work context.
577 * Note that we are currently executing on the global
578 * workq for handling messages from the host.
579 */
580 INIT_WORK(&channel->work, vmbus_process_device_unregister);
581 queue_work(channel->controlwq, &channel->work);
582 } else {
583 hv_process_channel_removal(channel,
584 channel->offermsg.child_relid);
585 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700586}
587
Hank Janssen3e189512010-03-04 22:11:00 +0000588/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700589 * vmbus_onoffers_delivered -
590 * This is invoked when all offers have been delivered.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700591 *
592 * Nothing to do here.
593 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700594static void vmbus_onoffers_delivered(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700595 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700596{
Hank Janssen3e7ee492009-07-13 16:02:34 -0700597}
598
Hank Janssen3e189512010-03-04 22:11:00 +0000599/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700600 * vmbus_onopen_result - Open result handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700601 *
602 * This is invoked when we received a response to our channel open request.
603 * Find the matching request, copy the response and signal the requesting
604 * thread.
605 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700606static void vmbus_onopen_result(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700607{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700608 struct vmbus_channel_open_result *result;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700609 struct vmbus_channel_msginfo *msginfo;
610 struct vmbus_channel_message_header *requestheader;
611 struct vmbus_channel_open_channel *openmsg;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700612 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700613
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700614 result = (struct vmbus_channel_open_result *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700615
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700616 /*
617 * Find the open msg, copy the result and signal/unblock the wait event
618 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800619 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700620
Hank Janssenebb61e52011-02-18 12:39:57 -0800621 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
622 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700623 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800624 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700625
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800626 if (requestheader->msgtype == CHANNELMSG_OPENCHANNEL) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700627 openmsg =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800628 (struct vmbus_channel_open_channel *)msginfo->msg;
629 if (openmsg->child_relid == result->child_relid &&
630 openmsg->openid == result->openid) {
631 memcpy(&msginfo->response.open_result,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700632 result,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700633 sizeof(
634 struct vmbus_channel_open_result));
635 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700636 break;
637 }
638 }
639 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800640 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700641}
642
Hank Janssen3e189512010-03-04 22:11:00 +0000643/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700644 * vmbus_ongpadl_created - GPADL created handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700645 *
646 * This is invoked when we received a response to our gpadl create request.
647 * Find the matching request, copy the response and signal the requesting
648 * thread.
649 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700650static void vmbus_ongpadl_created(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700651{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700652 struct vmbus_channel_gpadl_created *gpadlcreated;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700653 struct vmbus_channel_msginfo *msginfo;
654 struct vmbus_channel_message_header *requestheader;
655 struct vmbus_channel_gpadl_header *gpadlheader;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700656 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700657
Haiyang Zhang188963e2010-10-15 10:14:06 -0700658 gpadlcreated = (struct vmbus_channel_gpadl_created *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700659
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700660 /*
661 * Find the establish msg, copy the result and signal/unblock the wait
662 * event
663 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800664 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700665
Hank Janssenebb61e52011-02-18 12:39:57 -0800666 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
667 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700668 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800669 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700670
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800671 if (requestheader->msgtype == CHANNELMSG_GPADL_HEADER) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700672 gpadlheader =
673 (struct vmbus_channel_gpadl_header *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700674
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800675 if ((gpadlcreated->child_relid ==
676 gpadlheader->child_relid) &&
677 (gpadlcreated->gpadl == gpadlheader->gpadl)) {
678 memcpy(&msginfo->response.gpadl_created,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700679 gpadlcreated,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700680 sizeof(
681 struct vmbus_channel_gpadl_created));
682 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700683 break;
684 }
685 }
686 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800687 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700688}
689
Hank Janssen3e189512010-03-04 22:11:00 +0000690/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700691 * vmbus_ongpadl_torndown - GPADL torndown handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700692 *
693 * This is invoked when we received a response to our gpadl teardown request.
694 * Find the matching request, copy the response and signal the requesting
695 * thread.
696 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700697static void vmbus_ongpadl_torndown(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700698 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700699{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700700 struct vmbus_channel_gpadl_torndown *gpadl_torndown;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700701 struct vmbus_channel_msginfo *msginfo;
702 struct vmbus_channel_message_header *requestheader;
703 struct vmbus_channel_gpadl_teardown *gpadl_teardown;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700704 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700705
Haiyang Zhang188963e2010-10-15 10:14:06 -0700706 gpadl_torndown = (struct vmbus_channel_gpadl_torndown *)hdr;
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700707
708 /*
709 * Find the open msg, copy the result and signal/unblock the wait event
710 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800711 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700712
Hank Janssenebb61e52011-02-18 12:39:57 -0800713 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
714 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700715 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800716 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700717
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800718 if (requestheader->msgtype == CHANNELMSG_GPADL_TEARDOWN) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700719 gpadl_teardown =
720 (struct vmbus_channel_gpadl_teardown *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700721
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800722 if (gpadl_torndown->gpadl == gpadl_teardown->gpadl) {
723 memcpy(&msginfo->response.gpadl_torndown,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700724 gpadl_torndown,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700725 sizeof(
726 struct vmbus_channel_gpadl_torndown));
727 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700728 break;
729 }
730 }
731 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800732 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700733}
734
Hank Janssen3e189512010-03-04 22:11:00 +0000735/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700736 * vmbus_onversion_response - Version response handler
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700737 *
738 * This is invoked when we received a response to our initiate contact request.
739 * Find the matching request, copy the response and signal the requesting
740 * thread.
741 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700742static void vmbus_onversion_response(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700743 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700744{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700745 struct vmbus_channel_msginfo *msginfo;
746 struct vmbus_channel_message_header *requestheader;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700747 struct vmbus_channel_version_response *version_response;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700748 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700749
Haiyang Zhang188963e2010-10-15 10:14:06 -0700750 version_response = (struct vmbus_channel_version_response *)hdr;
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800751 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700752
Hank Janssenebb61e52011-02-18 12:39:57 -0800753 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
754 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700755 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800756 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700757
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800758 if (requestheader->msgtype ==
759 CHANNELMSG_INITIATE_CONTACT) {
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800760 memcpy(&msginfo->response.version_response,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700761 version_response,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700762 sizeof(struct vmbus_channel_version_response));
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700763 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700764 }
765 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800766 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700767}
768
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -0700769/* Channel message dispatch table */
770static struct vmbus_channel_message_table_entry
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -0700771 channel_message_table[CHANNELMSG_COUNT] = {
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800772 {CHANNELMSG_INVALID, NULL},
773 {CHANNELMSG_OFFERCHANNEL, vmbus_onoffer},
774 {CHANNELMSG_RESCIND_CHANNELOFFER, vmbus_onoffer_rescind},
775 {CHANNELMSG_REQUESTOFFERS, NULL},
776 {CHANNELMSG_ALLOFFERS_DELIVERED, vmbus_onoffers_delivered},
777 {CHANNELMSG_OPENCHANNEL, NULL},
778 {CHANNELMSG_OPENCHANNEL_RESULT, vmbus_onopen_result},
779 {CHANNELMSG_CLOSECHANNEL, NULL},
780 {CHANNELMSG_GPADL_HEADER, NULL},
781 {CHANNELMSG_GPADL_BODY, NULL},
782 {CHANNELMSG_GPADL_CREATED, vmbus_ongpadl_created},
783 {CHANNELMSG_GPADL_TEARDOWN, NULL},
784 {CHANNELMSG_GPADL_TORNDOWN, vmbus_ongpadl_torndown},
785 {CHANNELMSG_RELID_RELEASED, NULL},
786 {CHANNELMSG_INITIATE_CONTACT, NULL},
787 {CHANNELMSG_VERSION_RESPONSE, vmbus_onversion_response},
788 {CHANNELMSG_UNLOAD, NULL},
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -0700789};
790
Hank Janssen3e189512010-03-04 22:11:00 +0000791/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700792 * vmbus_onmessage - Handler for channel protocol messages.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700793 *
794 * This is invoked in the vmbus worker thread context.
795 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700796void vmbus_onmessage(void *context)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700797{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700798 struct hv_message *msg = context;
Greg Kroah-Hartman82250212009-08-26 15:16:04 -0700799 struct vmbus_channel_message_header *hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700800 int size;
801
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800802 hdr = (struct vmbus_channel_message_header *)msg->u.payload;
803 size = msg->header.payload_size;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700804
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800805 if (hdr->msgtype >= CHANNELMSG_COUNT) {
Hank Janssen0a466182011-03-29 13:58:47 -0700806 pr_err("Received invalid channel message type %d size %d\n",
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800807 hdr->msgtype, size);
Greg Kroah-Hartman04f50c42009-07-16 12:35:37 -0700808 print_hex_dump_bytes("", DUMP_PREFIX_NONE,
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800809 (unsigned char *)msg->u.payload, size);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700810 return;
811 }
812
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -0700813 if (channel_message_table[hdr->msgtype].message_handler)
814 channel_message_table[hdr->msgtype].message_handler(hdr);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700815 else
Hank Janssen0a466182011-03-29 13:58:47 -0700816 pr_err("Unhandled channel message type %d\n", hdr->msgtype);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700817}
818
Hank Janssen3e189512010-03-04 22:11:00 +0000819/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700820 * vmbus_request_offers - Send a request to get all our pending offers.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700821 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700822int vmbus_request_offers(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700823{
Greg Kroah-Hartman82250212009-08-26 15:16:04 -0700824 struct vmbus_channel_message_header *msg;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700825 struct vmbus_channel_msginfo *msginfo;
Nicholas Mc Guire51e51812015-02-27 11:26:02 -0800826 int ret;
827 unsigned long t;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700828
Haiyang Zhang188963e2010-10-15 10:14:06 -0700829 msginfo = kmalloc(sizeof(*msginfo) +
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700830 sizeof(struct vmbus_channel_message_header),
831 GFP_KERNEL);
Haiyang Zhang188963e2010-10-15 10:14:06 -0700832 if (!msginfo)
Bill Pemberton75910f22010-05-05 15:27:31 -0400833 return -ENOMEM;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700834
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700835 init_completion(&msginfo->waitevent);
Bill Pemberton75910f22010-05-05 15:27:31 -0400836
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800837 msg = (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700838
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800839 msg->msgtype = CHANNELMSG_REQUESTOFFERS;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700840
Hank Janssen3e7ee492009-07-13 16:02:34 -0700841
Haiyang Zhangc6977672011-01-26 12:12:08 -0800842 ret = vmbus_post_msg(msg,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700843 sizeof(struct vmbus_channel_message_header));
844 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700845 pr_err("Unable to request offers - %d\n", ret);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700846
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800847 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700848 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700849
K. Y. Srinivasan2dfde962011-06-16 13:16:34 -0700850 t = wait_for_completion_timeout(&msginfo->waitevent, 5*HZ);
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700851 if (t == 0) {
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800852 ret = -ETIMEDOUT;
853 goto cleanup;
854 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700855
856
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800857
858cleanup:
Ilia Mirkindd9b15d2011-03-13 00:29:00 -0500859 kfree(msginfo);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700860
Hank Janssen3e7ee492009-07-13 16:02:34 -0700861 return ret;
862}
863
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700864/*
865 * Retrieve the (sub) channel on which to send an outgoing request.
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800866 * When a primary channel has multiple sub-channels, we try to
867 * distribute the load equally amongst all available channels.
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700868 */
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;
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800875 int next_channel;
876 int i = 1;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700877
878 if (list_empty(&primary->sc_list))
879 return outgoing_channel;
880
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800881 next_channel = primary->next_oc++;
882
883 if (next_channel > (primary->num_sc)) {
884 primary->next_oc = 0;
885 return outgoing_channel;
886 }
887
K. Y. Srinivasan87712bf82014-12-14 23:34:51 -0800888 cur_cpu = hv_context.vp_index[get_cpu()];
889 put_cpu();
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700890 list_for_each_safe(cur, tmp, &primary->sc_list) {
891 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
892 if (cur_channel->state != CHANNEL_OPENED_STATE)
893 continue;
894
895 if (cur_channel->target_vp == cur_cpu)
896 return cur_channel;
897
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800898 if (i == next_channel)
899 return cur_channel;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700900
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800901 i++;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700902 }
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);