blob: 287f07b1bef65828438429cbeaf8a3eafa07161d [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>
K. Y. Srinivasanfde25d22015-03-18 12:29:21 -070026#include <linux/delay.h>
Greg Kroah-Hartmana0086dc2009-08-17 17:22:08 -070027#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Bill Pemberton53af5452009-09-11 21:46:44 -040029#include <linux/list.h>
Hank Janssenc88c4e42010-05-04 15:55:05 -070030#include <linux/module.h>
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +000031#include <linux/completion.h>
Greg Kroah-Hartman46a97192011-10-04 12:29:52 -070032#include <linux/hyperv.h>
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070033
K. Y. Srinivasan0f2a6612011-05-12 19:34:28 -070034#include "hyperv_vmbus.h"
Hank Janssen3e7ee492009-07-13 16:02:34 -070035
K. Y. Srinivasanfde25d22015-03-18 12:29:21 -070036struct vmbus_rescind_work {
37 struct work_struct work;
38 struct vmbus_channel *channel;
39};
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_sc_creation_cb(struct work_struct *work)
138{
139 struct vmbus_channel *newchannel = container_of(work,
140 struct vmbus_channel,
141 work);
142 struct vmbus_channel *primary_channel = newchannel->primary_channel;
143
144 /*
145 * On entry sc_creation_callback has been already verified to
146 * be non-NULL.
147 */
148 primary_channel->sc_creation_callback(newchannel);
149}
150
Hank Janssen3e189512010-03-04 22:11:00 +0000151/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700152 * alloc_channel - Allocate and initialize a vmbus channel object
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700153 */
Greg Kroah-Hartman50fe56d2010-10-20 15:51:57 -0700154static struct vmbus_channel *alloc_channel(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700155{
Vitaly Kuznetsovbc63b6f2015-02-27 11:25:52 -0800156 static atomic_t chan_num = ATOMIC_INIT(0);
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700157 struct vmbus_channel *channel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700158
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700159 channel = kzalloc(sizeof(*channel), GFP_ATOMIC);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700160 if (!channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700161 return NULL;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700162
Vitaly Kuznetsovbc63b6f2015-02-27 11:25:52 -0800163 channel->id = atomic_inc_return(&chan_num);
Greg Kroah-Hartman54411c42009-07-15 14:48:32 -0700164 spin_lock_init(&channel->inbound_lock);
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100165 spin_lock_init(&channel->lock);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700166
167 INIT_LIST_HEAD(&channel->sc_list);
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700168 INIT_LIST_HEAD(&channel->percpu_list);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700169
Vitaly Kuznetsovbc63b6f2015-02-27 11:25:52 -0800170 channel->controlwq = alloc_workqueue("hv_vmbus_ctl/%d", WQ_MEM_RECLAIM,
171 1, channel->id);
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800172 if (!channel->controlwq) {
Greg Kroah-Hartman8c69f522009-07-15 12:48:29 -0700173 kfree(channel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700174 return NULL;
175 }
176
177 return channel;
178}
179
Hank Janssen3e189512010-03-04 22:11:00 +0000180/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700181 * release_hannel - Release the vmbus channel object itself
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700182 */
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200183static void release_channel(struct work_struct *work)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700184{
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200185 struct vmbus_channel *channel = container_of(work,
186 struct vmbus_channel,
187 work);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700188
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800189 destroy_workqueue(channel->controlwq);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700190
Greg Kroah-Hartman8c69f522009-07-15 12:48:29 -0700191 kfree(channel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700192}
193
Hank Janssen3e189512010-03-04 22:11:00 +0000194/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700195 * free_channel - Release the resources used by the vmbus channel object
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700196 */
Greg Kroah-Hartman9f3e28e2011-10-11 09:40:01 -0600197static void free_channel(struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700198{
Hank Janssen3e7ee492009-07-13 16:02:34 -0700199
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700200 /*
201 * We have to release the channel's workqueue/thread in the vmbus's
202 * workqueue/thread context
203 * ie we can't destroy ourselves.
204 */
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200205 INIT_WORK(&channel->work, release_channel);
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800206 queue_work(vmbus_connection.work_queue, &channel->work);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700207}
208
K. Y. Srinivasanfde25d22015-03-18 12:29:21 -0700209static void process_rescind_fn(struct work_struct *work)
210{
211 struct vmbus_rescind_work *rc_work;
212 struct vmbus_channel *channel;
213 struct device *dev;
214
215 rc_work = container_of(work, struct vmbus_rescind_work, work);
216 channel = rc_work->channel;
217
218 /*
219 * We have already acquired a reference on the channel
220 * and so it cannot vanish underneath us.
221 * It is possible (while very unlikely) that we may
222 * get here while the processing of the initial offer
223 * is still not complete. Deal with this situation by
224 * just waiting until the channel is in the correct state.
225 */
226
227 while (channel->work.func != release_channel)
228 msleep(1000);
229
230 if (channel->device_obj) {
231 dev = get_device(&channel->device_obj->device);
232 if (dev) {
233 vmbus_device_unregister(channel->device_obj);
234 put_device(dev);
235 }
236 } else {
237 hv_process_channel_removal(channel,
238 channel->offermsg.child_relid);
239 }
240 kfree(work);
241}
242
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700243static void percpu_channel_enq(void *arg)
244{
245 struct vmbus_channel *channel = arg;
246 int cpu = smp_processor_id();
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000247
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700248 list_add_tail(&channel->percpu_list, &hv_context.percpu_list[cpu]);
249}
250
251static void percpu_channel_deq(void *arg)
252{
253 struct vmbus_channel *channel = arg;
254
255 list_del(&channel->percpu_list);
256}
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000257
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800258
259void hv_process_channel_removal(struct vmbus_channel *channel, u32 relid)
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200260{
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800261 struct vmbus_channel_relid_released msg;
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700262 unsigned long flags;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700263 struct vmbus_channel *primary_channel;
Vitaly Kuznetsov04a258c2014-11-04 13:40:11 +0100264
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700265 memset(&msg, 0, sizeof(struct vmbus_channel_relid_released));
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800266 msg.child_relid = relid;
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700267 msg.header.msgtype = CHANNELMSG_RELID_RELEASED;
268 vmbus_post_msg(&msg, sizeof(struct vmbus_channel_relid_released));
269
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800270 if (channel == NULL)
271 return;
272
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700273 if (channel->target_cpu != get_cpu()) {
274 put_cpu();
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700275 smp_call_function_single(channel->target_cpu,
276 percpu_channel_deq, channel, true);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700277 } else {
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700278 percpu_channel_deq(channel);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700279 put_cpu();
280 }
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700281
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700282 if (channel->primary_channel == NULL) {
283 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
284 list_del(&channel->listentry);
285 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
286 } else {
287 primary_channel = channel->primary_channel;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100288 spin_lock_irqsave(&primary_channel->lock, flags);
K. Y. Srinivasan565ce642013-10-16 19:27:19 -0700289 list_del(&channel->sc_list);
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100290 spin_unlock_irqrestore(&primary_channel->lock, flags);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700291 }
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700292 free_channel(channel);
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200293}
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000294
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800295void vmbus_free_channels(void)
296{
297 struct vmbus_channel *channel;
298
299 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
300 vmbus_device_unregister(channel->device_obj);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800301 free_channel(channel);
302 }
303}
304
K. Y. Srinivasanfde25d22015-03-18 12:29:21 -0700305static void vmbus_do_device_register(struct work_struct *work)
306{
307 struct hv_device *device_obj;
308 int ret;
309 unsigned long flags;
310 struct vmbus_channel *newchannel = container_of(work,
311 struct vmbus_channel,
312 work);
313
314 ret = vmbus_device_register(newchannel->device_obj);
315 if (ret != 0) {
316 pr_err("unable to add child device object (relid %d)\n",
317 newchannel->offermsg.child_relid);
318 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
319 list_del(&newchannel->listentry);
320 device_obj = newchannel->device_obj;
321 newchannel->device_obj = NULL;
322 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
323
324 if (newchannel->target_cpu != get_cpu()) {
325 put_cpu();
326 smp_call_function_single(newchannel->target_cpu,
327 percpu_channel_deq, newchannel, true);
328 } else {
329 percpu_channel_deq(newchannel);
330 put_cpu();
331 }
332
333 kfree(device_obj);
334 if (!newchannel->rescind) {
335 free_channel(newchannel);
336 return;
337 }
338 }
339 /*
340 * The next state for this channel is to be freed.
341 */
342 INIT_WORK(&newchannel->work, release_channel);
343}
344
Hank Janssen3e189512010-03-04 22:11:00 +0000345/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700346 * vmbus_process_offer - Process the offer by creating a channel/device
Hank Janssenc88c4e42010-05-04 15:55:05 -0700347 * associated with this offer
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700348 */
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800349static void vmbus_process_offer(struct vmbus_channel *newchannel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700350{
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700351 struct vmbus_channel *channel;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700352 bool fnew = true;
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700353 bool enq = false;
Greg Kroah-Hartman0f5e44c2009-07-15 14:57:16 -0700354 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700355
Bill Pemberton454f18a2009-07-27 16:47:24 -0400356 /* Make sure this is a new offer */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800357 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700358
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800359 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700360 if (!uuid_le_cmp(channel->offermsg.offer.if_type,
361 newchannel->offermsg.offer.if_type) &&
362 !uuid_le_cmp(channel->offermsg.offer.if_instance,
363 newchannel->offermsg.offer.if_instance)) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700364 fnew = false;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700365 break;
366 }
367 }
368
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700369 if (fnew) {
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800370 list_add_tail(&newchannel->listentry,
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800371 &vmbus_connection.chn_list);
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700372 enq = true;
373 }
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700374
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800375 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700376
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700377 if (enq) {
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700378 if (newchannel->target_cpu != get_cpu()) {
379 put_cpu();
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700380 smp_call_function_single(newchannel->target_cpu,
381 percpu_channel_enq,
382 newchannel, true);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700383 } else {
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700384 percpu_channel_enq(newchannel);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700385 put_cpu();
386 }
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700387 }
Haiyang Zhang188963e2010-10-15 10:14:06 -0700388 if (!fnew) {
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700389 /*
390 * Check to see if this is a sub-channel.
391 */
392 if (newchannel->offermsg.offer.sub_channel_index != 0) {
393 /*
394 * Process the sub-channel.
395 */
396 newchannel->primary_channel = channel;
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100397 spin_lock_irqsave(&channel->lock, flags);
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700398 list_add_tail(&newchannel->sc_list, &channel->sc_list);
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100399 spin_unlock_irqrestore(&channel->lock, flags);
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700400
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700401 if (newchannel->target_cpu != get_cpu()) {
402 put_cpu();
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700403 smp_call_function_single(newchannel->target_cpu,
404 percpu_channel_enq,
405 newchannel, true);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700406 } else {
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700407 percpu_channel_enq(newchannel);
K. Y. Srinivasan2115b562014-08-28 18:29:53 -0700408 put_cpu();
409 }
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700410
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700411 newchannel->state = CHANNEL_OPEN_STATE;
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800412 channel->num_sc++;
Dan Carpenter17775742015-03-18 12:29:25 -0700413 if (channel->sc_creation_callback != NULL) {
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800414 /*
415 * We need to invoke the sub-channel creation
416 * callback; invoke this in a seperate work
417 * context since we are currently running on
418 * the global work context in which we handle
419 * messages from the host.
420 */
421 INIT_WORK(&newchannel->work,
422 vmbus_sc_creation_cb);
423 queue_work(newchannel->controlwq,
424 &newchannel->work);
Dan Carpenter17775742015-03-18 12:29:25 -0700425 }
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700426
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800427 return;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700428 }
429
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100430 goto err_free_chan;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700431 }
432
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700433 /*
K. Y. Srinivasan42dceeb2013-08-26 14:08:58 -0700434 * This state is used to indicate a successful open
435 * so that when we do close the channel normally, we
436 * can cleanup properly
437 */
438 newchannel->state = CHANNEL_OPEN_STATE;
439
440 /*
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700441 * Start the process of binding this offer to the driver
442 * We need to set the DeviceObject field before calling
Haiyang Zhang646f1ea2011-01-26 12:12:10 -0800443 * vmbus_child_dev_add()
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700444 */
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700445 newchannel->device_obj = vmbus_device_create(
Haiyang Zhang767dff62011-01-26 12:12:12 -0800446 &newchannel->offermsg.offer.if_type,
447 &newchannel->offermsg.offer.if_instance,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700448 newchannel);
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100449 if (!newchannel->device_obj)
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800450 goto err_deq_chan;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700451
Bill Pemberton454f18a2009-07-27 16:47:24 -0400452 /*
453 * Add the new device to the bus. This will kick off device-driver
454 * binding which eventually invokes the device driver's AddDevice()
455 * method.
K. Y. Srinivasanfde25d22015-03-18 12:29:21 -0700456 * Invoke this call on the per-channel work context.
457 * Until we return from this function, rescind offer message
458 * cannot be processed as we are running on the global message
459 * handling work.
Bill Pemberton454f18a2009-07-27 16:47:24 -0400460 */
K. Y. Srinivasanfde25d22015-03-18 12:29:21 -0700461 INIT_WORK(&newchannel->work, vmbus_do_device_register);
462 queue_work(newchannel->controlwq, &newchannel->work);
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100463 return;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800464
K. Y. Srinivasan5b1e5b52015-02-28 11:18:19 -0800465err_deq_chan:
466 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
467 list_del(&newchannel->listentry);
468 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
469
470 if (newchannel->target_cpu != get_cpu()) {
471 put_cpu();
472 smp_call_function_single(newchannel->target_cpu,
473 percpu_channel_deq, newchannel, true);
474 } else {
475 percpu_channel_deq(newchannel);
476 put_cpu();
477 }
478
Vitaly Kuznetsov9c3a6f72015-01-20 16:45:04 +0100479err_free_chan:
480 free_channel(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700481}
482
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800483enum {
484 IDE = 0,
485 SCSI,
486 NIC,
487 MAX_PERF_CHN,
488};
489
490/*
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800491 * This is an array of device_ids (device types) that are performance critical.
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800492 * We attempt to distribute the interrupt load for these devices across
493 * all available CPUs.
494 */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800495static const struct hv_vmbus_device_id hp_devs[] = {
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800496 /* IDE */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800497 { HV_IDE_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800498 /* Storage - SCSI */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800499 { HV_SCSI_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800500 /* Network */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800501 { HV_NIC_GUID, },
K. Y. Srinivasan04653a02015-02-27 11:26:05 -0800502 /* NetworkDirect Guest RDMA */
503 { HV_ND_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800504};
505
506
507/*
508 * We use this state to statically distribute the channel interrupt load.
509 */
510static u32 next_vp;
511
512/*
513 * Starting with Win8, we can statically distribute the incoming
514 * channel interrupt load by binding a channel to VCPU. We
515 * implement here a simple round robin scheme for distributing
516 * the interrupt load.
517 * We will bind channels that are not performance critical to cpu 0 and
518 * performance critical channels (IDE, SCSI and Network) will be uniformly
519 * distributed across all available CPUs.
520 */
Linus Torvaldsf9da4552014-06-12 14:27:40 -0700521static void init_vp_index(struct vmbus_channel *channel, const uuid_le *type_guid)
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800522{
523 u32 cur_cpu;
524 int i;
525 bool perf_chn = false;
526 u32 max_cpus = num_online_cpus();
527
528 for (i = IDE; i < MAX_PERF_CHN; i++) {
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800529 if (!memcmp(type_guid->b, hp_devs[i].guid,
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800530 sizeof(uuid_le))) {
531 perf_chn = true;
532 break;
533 }
534 }
535 if ((vmbus_proto_version == VERSION_WS2008) ||
536 (vmbus_proto_version == VERSION_WIN7) || (!perf_chn)) {
537 /*
538 * Prior to win8, all channel interrupts are
539 * delivered on cpu 0.
540 * Also if the channel is not a performance critical
541 * channel, bind it to cpu 0.
542 */
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700543 channel->target_cpu = 0;
544 channel->target_vp = 0;
545 return;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800546 }
547 cur_cpu = (++next_vp % max_cpus);
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700548 channel->target_cpu = cur_cpu;
549 channel->target_vp = hv_context.vp_index[cur_cpu];
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800550}
551
Hank Janssen3e189512010-03-04 22:11:00 +0000552/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700553 * vmbus_onoffer - Handler for channel offers from vmbus in parent partition.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700554 *
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700555 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700556static void vmbus_onoffer(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700557{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700558 struct vmbus_channel_offer_channel *offer;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700559 struct vmbus_channel *newchannel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700560
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700561 offer = (struct vmbus_channel_offer_channel *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700562
Bill Pemberton454f18a2009-07-27 16:47:24 -0400563 /* Allocate the channel object and save this offer. */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700564 newchannel = alloc_channel();
Haiyang Zhang188963e2010-10-15 10:14:06 -0700565 if (!newchannel) {
Hank Janssen0a466182011-03-29 13:58:47 -0700566 pr_err("Unable to allocate channel object\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700567 return;
568 }
569
K. Y. Srinivasan132368b2012-12-01 06:46:33 -0800570 /*
571 * By default we setup state to enable batched
572 * reading. A specific service can choose to
573 * disable this prior to opening the channel.
574 */
575 newchannel->batched_reading = true;
576
K. Y. Srinivasanb3bf60c2012-12-01 06:46:45 -0800577 /*
578 * Setup state for signalling the host.
579 */
580 newchannel->sig_event = (struct hv_input_signal_event *)
581 (ALIGN((unsigned long)
582 &newchannel->sig_buf,
583 HV_HYPERCALL_PARAM_ALIGN));
584
585 newchannel->sig_event->connectionid.asu32 = 0;
586 newchannel->sig_event->connectionid.u.id = VMBUS_EVENT_CONNECTION_ID;
587 newchannel->sig_event->flag_number = 0;
588 newchannel->sig_event->rsvdz = 0;
589
590 if (vmbus_proto_version != VERSION_WS2008) {
591 newchannel->is_dedicated_interrupt =
592 (offer->is_dedicated_interrupt != 0);
593 newchannel->sig_event->connectionid.u.id =
594 offer->connection_id;
595 }
596
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700597 init_vp_index(newchannel, &offer->offer.if_type);
K. Y. Srinivasanabbf3b22012-12-01 06:46:48 -0800598
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800599 memcpy(&newchannel->offermsg, offer,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700600 sizeof(struct vmbus_channel_offer_channel));
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800601 newchannel->monitor_grp = (u8)offer->monitorid / 32;
602 newchannel->monitor_bit = (u8)offer->monitorid % 32;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700603
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800604 vmbus_process_offer(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700605}
606
Hank Janssen3e189512010-03-04 22:11:00 +0000607/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700608 * vmbus_onoffer_rescind - Rescind offer handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700609 *
610 * We queue a work item to process this offer synchronously
611 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700612static void vmbus_onoffer_rescind(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700613{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700614 struct vmbus_channel_rescind_offer *rescind;
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700615 struct vmbus_channel *channel;
K. Y. Srinivasanfde25d22015-03-18 12:29:21 -0700616 struct vmbus_rescind_work *rc_work;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700617
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700618 rescind = (struct vmbus_channel_rescind_offer *)hdr;
K. Y. Srinivasanfde25d22015-03-18 12:29:21 -0700619 channel = relid2channel(rescind->child_relid, true);
Hank Janssen98e08702011-03-29 13:58:44 -0700620
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800621 if (channel == NULL) {
622 hv_process_channel_removal(NULL, rescind->child_relid);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700623 return;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800624 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700625
K. Y. Srinivasanfde25d22015-03-18 12:29:21 -0700626 /*
627 * We have acquired a reference on the channel and have posted
628 * the rescind state. Perform further cleanup in a work context
629 * that is different from the global work context in which
630 * we process messages from the host (we are currently executing
631 * on that global context.
632 */
633 rc_work = kzalloc(sizeof(struct vmbus_rescind_work), GFP_KERNEL);
634 if (!rc_work) {
635 pr_err("Unable to allocate memory for rescind processing ");
636 return;
K. Y. Srinivasan2dd37cb2015-02-28 11:18:18 -0800637 }
K. Y. Srinivasanfde25d22015-03-18 12:29:21 -0700638 rc_work->channel = channel;
639 INIT_WORK(&rc_work->work, process_rescind_fn);
640 schedule_work(&rc_work->work);
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_onoffers_delivered -
645 * This is invoked when all offers have been delivered.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700646 *
647 * Nothing to do here.
648 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700649static void vmbus_onoffers_delivered(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700650 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700651{
Hank Janssen3e7ee492009-07-13 16:02:34 -0700652}
653
Hank Janssen3e189512010-03-04 22:11:00 +0000654/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700655 * vmbus_onopen_result - Open result handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700656 *
657 * This is invoked when we received a response to our channel open request.
658 * Find the matching request, copy the response and signal the requesting
659 * thread.
660 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700661static void vmbus_onopen_result(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700662{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700663 struct vmbus_channel_open_result *result;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700664 struct vmbus_channel_msginfo *msginfo;
665 struct vmbus_channel_message_header *requestheader;
666 struct vmbus_channel_open_channel *openmsg;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700667 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700668
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700669 result = (struct vmbus_channel_open_result *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700670
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700671 /*
672 * Find the open msg, copy the result and signal/unblock the wait event
673 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800674 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700675
Hank Janssenebb61e52011-02-18 12:39:57 -0800676 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
677 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700678 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800679 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700680
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800681 if (requestheader->msgtype == CHANNELMSG_OPENCHANNEL) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700682 openmsg =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800683 (struct vmbus_channel_open_channel *)msginfo->msg;
684 if (openmsg->child_relid == result->child_relid &&
685 openmsg->openid == result->openid) {
686 memcpy(&msginfo->response.open_result,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700687 result,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700688 sizeof(
689 struct vmbus_channel_open_result));
690 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700691 break;
692 }
693 }
694 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800695 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700696}
697
Hank Janssen3e189512010-03-04 22:11:00 +0000698/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700699 * vmbus_ongpadl_created - GPADL created handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700700 *
701 * This is invoked when we received a response to our gpadl create request.
702 * Find the matching request, copy the response and signal the requesting
703 * thread.
704 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700705static void vmbus_ongpadl_created(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700706{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700707 struct vmbus_channel_gpadl_created *gpadlcreated;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700708 struct vmbus_channel_msginfo *msginfo;
709 struct vmbus_channel_message_header *requestheader;
710 struct vmbus_channel_gpadl_header *gpadlheader;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700711 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700712
Haiyang Zhang188963e2010-10-15 10:14:06 -0700713 gpadlcreated = (struct vmbus_channel_gpadl_created *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700714
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700715 /*
716 * Find the establish msg, copy the result and signal/unblock the wait
717 * event
718 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800719 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700720
Hank Janssenebb61e52011-02-18 12:39:57 -0800721 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
722 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700723 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800724 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700725
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800726 if (requestheader->msgtype == CHANNELMSG_GPADL_HEADER) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700727 gpadlheader =
728 (struct vmbus_channel_gpadl_header *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700729
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800730 if ((gpadlcreated->child_relid ==
731 gpadlheader->child_relid) &&
732 (gpadlcreated->gpadl == gpadlheader->gpadl)) {
733 memcpy(&msginfo->response.gpadl_created,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700734 gpadlcreated,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700735 sizeof(
736 struct vmbus_channel_gpadl_created));
737 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700738 break;
739 }
740 }
741 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800742 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700743}
744
Hank Janssen3e189512010-03-04 22:11:00 +0000745/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700746 * vmbus_ongpadl_torndown - GPADL torndown handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700747 *
748 * This is invoked when we received a response to our gpadl teardown request.
749 * Find the matching request, copy the response and signal the requesting
750 * thread.
751 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700752static void vmbus_ongpadl_torndown(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700753 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700754{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700755 struct vmbus_channel_gpadl_torndown *gpadl_torndown;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700756 struct vmbus_channel_msginfo *msginfo;
757 struct vmbus_channel_message_header *requestheader;
758 struct vmbus_channel_gpadl_teardown *gpadl_teardown;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700759 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700760
Haiyang Zhang188963e2010-10-15 10:14:06 -0700761 gpadl_torndown = (struct vmbus_channel_gpadl_torndown *)hdr;
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700762
763 /*
764 * Find the open msg, copy the result and signal/unblock the wait event
765 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800766 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700767
Hank Janssenebb61e52011-02-18 12:39:57 -0800768 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
769 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700770 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800771 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700772
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800773 if (requestheader->msgtype == CHANNELMSG_GPADL_TEARDOWN) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700774 gpadl_teardown =
775 (struct vmbus_channel_gpadl_teardown *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700776
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800777 if (gpadl_torndown->gpadl == gpadl_teardown->gpadl) {
778 memcpy(&msginfo->response.gpadl_torndown,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700779 gpadl_torndown,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700780 sizeof(
781 struct vmbus_channel_gpadl_torndown));
782 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700783 break;
784 }
785 }
786 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800787 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700788}
789
Hank Janssen3e189512010-03-04 22:11:00 +0000790/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700791 * vmbus_onversion_response - Version response handler
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700792 *
793 * This is invoked when we received a response to our initiate contact request.
794 * Find the matching request, copy the response and signal the requesting
795 * thread.
796 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700797static void vmbus_onversion_response(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700798 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700799{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700800 struct vmbus_channel_msginfo *msginfo;
801 struct vmbus_channel_message_header *requestheader;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700802 struct vmbus_channel_version_response *version_response;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700803 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700804
Haiyang Zhang188963e2010-10-15 10:14:06 -0700805 version_response = (struct vmbus_channel_version_response *)hdr;
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800806 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700807
Hank Janssenebb61e52011-02-18 12:39:57 -0800808 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
809 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700810 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800811 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700812
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800813 if (requestheader->msgtype ==
814 CHANNELMSG_INITIATE_CONTACT) {
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800815 memcpy(&msginfo->response.version_response,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700816 version_response,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700817 sizeof(struct vmbus_channel_version_response));
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700818 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700819 }
820 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800821 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700822}
823
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -0700824/* Channel message dispatch table */
Dexuan Cui652594c2015-03-27 09:10:08 -0700825struct vmbus_channel_message_table_entry
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -0700826 channel_message_table[CHANNELMSG_COUNT] = {
Dexuan Cui652594c2015-03-27 09:10:08 -0700827 {CHANNELMSG_INVALID, 0, NULL},
828 {CHANNELMSG_OFFERCHANNEL, 0, vmbus_onoffer},
829 {CHANNELMSG_RESCIND_CHANNELOFFER, 0, vmbus_onoffer_rescind},
830 {CHANNELMSG_REQUESTOFFERS, 0, NULL},
831 {CHANNELMSG_ALLOFFERS_DELIVERED, 1, vmbus_onoffers_delivered},
832 {CHANNELMSG_OPENCHANNEL, 0, NULL},
833 {CHANNELMSG_OPENCHANNEL_RESULT, 1, vmbus_onopen_result},
834 {CHANNELMSG_CLOSECHANNEL, 0, NULL},
835 {CHANNELMSG_GPADL_HEADER, 0, NULL},
836 {CHANNELMSG_GPADL_BODY, 0, NULL},
837 {CHANNELMSG_GPADL_CREATED, 1, vmbus_ongpadl_created},
838 {CHANNELMSG_GPADL_TEARDOWN, 0, NULL},
839 {CHANNELMSG_GPADL_TORNDOWN, 1, vmbus_ongpadl_torndown},
840 {CHANNELMSG_RELID_RELEASED, 0, NULL},
841 {CHANNELMSG_INITIATE_CONTACT, 0, NULL},
842 {CHANNELMSG_VERSION_RESPONSE, 1, vmbus_onversion_response},
843 {CHANNELMSG_UNLOAD, 0, NULL},
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -0700844};
845
Hank Janssen3e189512010-03-04 22:11:00 +0000846/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700847 * vmbus_onmessage - Handler for channel protocol messages.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700848 *
849 * This is invoked in the vmbus worker thread context.
850 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700851void vmbus_onmessage(void *context)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700852{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700853 struct hv_message *msg = context;
Greg Kroah-Hartman82250212009-08-26 15:16:04 -0700854 struct vmbus_channel_message_header *hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700855 int size;
856
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800857 hdr = (struct vmbus_channel_message_header *)msg->u.payload;
858 size = msg->header.payload_size;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700859
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800860 if (hdr->msgtype >= CHANNELMSG_COUNT) {
Hank Janssen0a466182011-03-29 13:58:47 -0700861 pr_err("Received invalid channel message type %d size %d\n",
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800862 hdr->msgtype, size);
Greg Kroah-Hartman04f50c42009-07-16 12:35:37 -0700863 print_hex_dump_bytes("", DUMP_PREFIX_NONE,
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800864 (unsigned char *)msg->u.payload, size);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700865 return;
866 }
867
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -0700868 if (channel_message_table[hdr->msgtype].message_handler)
869 channel_message_table[hdr->msgtype].message_handler(hdr);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700870 else
Hank Janssen0a466182011-03-29 13:58:47 -0700871 pr_err("Unhandled channel message type %d\n", hdr->msgtype);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700872}
873
Hank Janssen3e189512010-03-04 22:11:00 +0000874/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700875 * vmbus_request_offers - Send a request to get all our pending offers.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700876 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700877int vmbus_request_offers(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700878{
Greg Kroah-Hartman82250212009-08-26 15:16:04 -0700879 struct vmbus_channel_message_header *msg;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700880 struct vmbus_channel_msginfo *msginfo;
Nicholas Mc Guire51e51812015-02-27 11:26:02 -0800881 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700882
Haiyang Zhang188963e2010-10-15 10:14:06 -0700883 msginfo = kmalloc(sizeof(*msginfo) +
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700884 sizeof(struct vmbus_channel_message_header),
885 GFP_KERNEL);
Haiyang Zhang188963e2010-10-15 10:14:06 -0700886 if (!msginfo)
Bill Pemberton75910f22010-05-05 15:27:31 -0400887 return -ENOMEM;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700888
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800889 msg = (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700890
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800891 msg->msgtype = CHANNELMSG_REQUESTOFFERS;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700892
Hank Janssen3e7ee492009-07-13 16:02:34 -0700893
Haiyang Zhangc6977672011-01-26 12:12:08 -0800894 ret = vmbus_post_msg(msg,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700895 sizeof(struct vmbus_channel_message_header));
896 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700897 pr_err("Unable to request offers - %d\n", ret);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700898
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800899 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700900 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700901
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800902cleanup:
Ilia Mirkindd9b15d2011-03-13 00:29:00 -0500903 kfree(msginfo);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700904
Hank Janssen3e7ee492009-07-13 16:02:34 -0700905 return ret;
906}
907
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700908/*
909 * Retrieve the (sub) channel on which to send an outgoing request.
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800910 * When a primary channel has multiple sub-channels, we try to
911 * distribute the load equally amongst all available channels.
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700912 */
913struct vmbus_channel *vmbus_get_outgoing_channel(struct vmbus_channel *primary)
914{
915 struct list_head *cur, *tmp;
K. Y. Srinivasan87712bf2014-12-14 23:34:51 -0800916 int cur_cpu;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700917 struct vmbus_channel *cur_channel;
918 struct vmbus_channel *outgoing_channel = primary;
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800919 int next_channel;
920 int i = 1;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700921
922 if (list_empty(&primary->sc_list))
923 return outgoing_channel;
924
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800925 next_channel = primary->next_oc++;
926
927 if (next_channel > (primary->num_sc)) {
928 primary->next_oc = 0;
929 return outgoing_channel;
930 }
931
K. Y. Srinivasan87712bf2014-12-14 23:34:51 -0800932 cur_cpu = hv_context.vp_index[get_cpu()];
933 put_cpu();
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700934 list_for_each_safe(cur, tmp, &primary->sc_list) {
935 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
936 if (cur_channel->state != CHANNEL_OPENED_STATE)
937 continue;
938
939 if (cur_channel->target_vp == cur_cpu)
940 return cur_channel;
941
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800942 if (i == next_channel)
943 return cur_channel;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700944
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800945 i++;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700946 }
947
948 return outgoing_channel;
949}
950EXPORT_SYMBOL_GPL(vmbus_get_outgoing_channel);
951
952static void invoke_sc_cb(struct vmbus_channel *primary_channel)
953{
954 struct list_head *cur, *tmp;
955 struct vmbus_channel *cur_channel;
956
957 if (primary_channel->sc_creation_callback == NULL)
958 return;
959
960 list_for_each_safe(cur, tmp, &primary_channel->sc_list) {
961 cur_channel = list_entry(cur, struct vmbus_channel, sc_list);
962
963 primary_channel->sc_creation_callback(cur_channel);
964 }
965}
966
967void vmbus_set_sc_create_callback(struct vmbus_channel *primary_channel,
968 void (*sc_cr_cb)(struct vmbus_channel *new_sc))
969{
970 primary_channel->sc_creation_callback = sc_cr_cb;
971}
972EXPORT_SYMBOL_GPL(vmbus_set_sc_create_callback);
973
974bool vmbus_are_subchannels_present(struct vmbus_channel *primary)
975{
976 bool ret;
977
978 ret = !list_empty(&primary->sc_list);
979
980 if (ret) {
981 /*
982 * Invoke the callback on sub-channel creation.
983 * This will present a uniform interface to the
984 * clients.
985 */
986 invoke_sc_cb(primary);
987 }
988
989 return ret;
990}
991EXPORT_SYMBOL_GPL(vmbus_are_subchannels_present);