Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get rid of the PCI signature
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / staging / hv / channel_mgmt.c
CommitLineData
3e7ee490 1/*
3e7ee490
HJ
2 * 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>
3e7ee490 20 */
0a46618d
HJ
21#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
a0086dc5 23#include <linux/kernel.h>
0c3b7b2f
S
24#include <linux/sched.h>
25#include <linux/wait.h>
a0086dc5 26#include <linux/mm.h>
5a0e3ad6 27#include <linux/slab.h>
53af545b 28#include <linux/list.h>
c88c4e4c 29#include <linux/module.h>
8b5d6d3b 30#include <linux/completion.h>
3f335ea2
S
31
32#include "hyperv.h"
0f2a6619 33#include "hyperv_vmbus.h"
3e7ee490 34
1d7e907f 35struct vmbus_channel_message_table_entry {
cf9dcba7 36 enum vmbus_channel_message_type message_type;
fa90f1de 37 void (*message_handler)(struct vmbus_channel_message_header *msg);
1d7e907f 38};
3e7ee490 39
245ba56a
KS
40#define MAX_MSG_TYPES 4
41#define MAX_NUM_DEVICE_CLASSES_SUPPORTED 8
c88c4e4c 42
bd60c33e 43static const struct hv_guid
50b03266 44 supported_device_classes[MAX_NUM_DEVICE_CLASSES_SUPPORTED] = {
454f18a9 45 /* {ba6163d9-04a1-4d29-b605-72e2ffb1dc7f} */
caf26a31
GKH
46 /* Storage - SCSI */
47 {
48 .data = {
49 0xd9, 0x63, 0x61, 0xba, 0xa1, 0x04, 0x29, 0x4d,
50 0xb6, 0x05, 0x72, 0xe2, 0xff, 0xb1, 0xdc, 0x7f
51 }
52 },
53
454f18a9 54 /* {F8615163-DF3E-46c5-913F-F2D2F965ED0E} */
caf26a31
GKH
55 /* Network */
56 {
57 .data = {
58 0x63, 0x51, 0x61, 0xF8, 0x3E, 0xDF, 0xc5, 0x46,
59 0x91, 0x3F, 0xF2, 0xD2, 0xF9, 0x65, 0xED, 0x0E
60 }
61 },
62
454f18a9 63 /* {CFA8B69E-5B4A-4cc0-B98B-8BA1A1F3F95A} */
caf26a31
GKH
64 /* Input */
65 {
66 .data = {
67 0x9E, 0xB6, 0xA8, 0xCF, 0x4A, 0x5B, 0xc0, 0x4c,
68 0xB9, 0x8B, 0x8B, 0xA1, 0xA1, 0xF3, 0xF9, 0x5A
69 }
70 },
3e7ee490 71
caf26a31
GKH
72 /* {32412632-86cb-44a2-9b5c-50d1417354f5} */
73 /* IDE */
74 {
75 .data = {
76 0x32, 0x26, 0x41, 0x32, 0xcb, 0x86, 0xa2, 0x44,
77 0x9b, 0x5c, 0x50, 0xd1, 0x41, 0x73, 0x54, 0xf5
78 }
79 },
c88c4e4c
HJ
80 /* 0E0B6031-5213-4934-818B-38D90CED39DB */
81 /* Shutdown */
82 {
83 .data = {
84 0x31, 0x60, 0x0B, 0X0E, 0x13, 0x52, 0x34, 0x49,
85 0x81, 0x8B, 0x38, 0XD9, 0x0C, 0xED, 0x39, 0xDB
86 }
87 },
39c4e9c3
HZ
88 /* {9527E630-D0AE-497b-ADCE-E80AB0175CAF} */
89 /* TimeSync */
90 {
91 .data = {
92 0x30, 0xe6, 0x27, 0x95, 0xae, 0xd0, 0x7b, 0x49,
93 0xad, 0xce, 0xe8, 0x0a, 0xb0, 0x17, 0x5c, 0xaf
94 }
95 },
9153f7b9
HJ
96 /* {57164f39-9115-4e78-ab55-382f3bd5422d} */
97 /* Heartbeat */
98 {
99 .data = {
100 0x39, 0x4f, 0x16, 0x57, 0x15, 0x91, 0x78, 0x4e,
101 0xab, 0x55, 0x38, 0x2f, 0x3b, 0xd5, 0x42, 0x2d
102 }
103 },
245ba56a
KS
104 /* {A9A0F4E7-5A45-4d96-B827-8A841E8C03E6} */
105 /* KVP */
106 {
107 .data = {
108 0xe7, 0xf4, 0xa0, 0xa9, 0x45, 0x5a, 0x96, 0x4d,
109 0xb8, 0x27, 0x8a, 0x84, 0x1e, 0x8c, 0x3, 0xe6
110 }
111 },
112
3e7ee490
HJ
113};
114
c88c4e4c
HJ
115
116/**
117 * prep_negotiate_resp() - Create default response for Hyper-V Negotiate message
118 * @icmsghdrp: Pointer to msg header structure
119 * @icmsg_negotiate: Pointer to negotiate message structure
120 * @buf: Raw buffer channel data
121 *
122 * @icmsghdrp is of type &struct icmsg_hdr.
123 * @negop is of type &struct icmsg_negotiate.
124 * Set up and fill in default negotiate response message. This response can
125 * come from both the vmbus driver and the hv_utils driver. The current api
126 * will respond properly to both Windows 2008 and Windows 2008-R2 operating
127 * systems.
128 *
129 * Mainly used by Hyper-V drivers.
130 */
131void prep_negotiate_resp(struct icmsg_hdr *icmsghdrp,
132 struct icmsg_negotiate *negop,
133 u8 *buf)
134{
135 if (icmsghdrp->icmsgtype == ICMSGTYPE_NEGOTIATE) {
136 icmsghdrp->icmsgsize = 0x10;
137
138 negop = (struct icmsg_negotiate *)&buf[
139 sizeof(struct vmbuspipe_hdr) +
140 sizeof(struct icmsg_hdr)];
141
142 if (negop->icframe_vercnt == 2 &&
143 negop->icversion_data[1].major == 3) {
144 negop->icversion_data[0].major = 3;
145 negop->icversion_data[0].minor = 0;
146 negop->icversion_data[1].major = 3;
147 negop->icversion_data[1].minor = 0;
148 } else {
149 negop->icversion_data[0].major = 1;
150 negop->icversion_data[0].minor = 0;
151 negop->icversion_data[1].major = 1;
152 negop->icversion_data[1].minor = 0;
153 }
154
155 negop->icframe_vercnt = 1;
156 negop->icmsg_vercnt = 1;
157 }
158}
159EXPORT_SYMBOL(prep_negotiate_resp);
160
161/**
162 * chn_cb_negotiate() - Default handler for non IDE/SCSI/NETWORK
163 * Hyper-V requests
164 * @context: Pointer to argument structure.
165 *
166 * Set up the default handler for non device driver specific requests
167 * from Hyper-V. This stub responds to the default negotiate messages
168 * that come in for every non IDE/SCSI/Network request.
169 * This behavior is normally overwritten in the hv_utils driver. That
25985edc 170 * driver handles requests like graceful shutdown, heartbeats etc.
c88c4e4c
HJ
171 *
172 * Mainly used by Hyper-V drivers.
173 */
174void chn_cb_negotiate(void *context)
175{
176 struct vmbus_channel *channel = context;
177 u8 *buf;
178 u32 buflen, recvlen;
179 u64 requestid;
180
181 struct icmsg_hdr *icmsghdrp;
182 struct icmsg_negotiate *negop = NULL;
183
b9d8e352
S
184 if (channel->util_index >= 0) {
185 /*
186 * This is a properly initialized util channel.
187 * Route this callback appropriately and setup state
188 * so that we don't need to reroute again.
189 */
190 if (hv_cb_utils[channel->util_index].callback != NULL) {
191 /*
192 * The util driver has established a handler for
193 * this service; do the magic.
194 */
195 channel->onchannel_callback =
196 hv_cb_utils[channel->util_index].callback;
197 (hv_cb_utils[channel->util_index].callback)(channel);
198 return;
199 }
200 }
201
c88c4e4c
HJ
202 buflen = PAGE_SIZE;
203 buf = kmalloc(buflen, GFP_ATOMIC);
204
fff41b2e 205 vmbus_recvpacket(channel, buf, buflen, &recvlen, &requestid);
c88c4e4c
HJ
206
207 if (recvlen > 0) {
208 icmsghdrp = (struct icmsg_hdr *)&buf[
209 sizeof(struct vmbuspipe_hdr)];
210
211 prep_negotiate_resp(icmsghdrp, negop, buf);
212
213 icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION
214 | ICMSGHDRFLAG_RESPONSE;
215
fff41b2e 216 vmbus_sendpacket(channel, buf,
c88c4e4c 217 recvlen, requestid,
415f2287 218 VM_PKT_DATA_INBAND, 0);
c88c4e4c
HJ
219 }
220
221 kfree(buf);
222}
223EXPORT_SYMBOL(chn_cb_negotiate);
224
225/*
226 * Function table used for message responses for non IDE/SCSI/Network type
227 * messages. (Such as KVP/Shutdown etc)
228 */
229struct hyperv_service_callback hv_cb_utils[MAX_MSG_TYPES] = {
230 /* 0E0B6031-5213-4934-818B-38D90CED39DB */
231 /* Shutdown */
232 {
233 .msg_type = HV_SHUTDOWN_MSG,
234 .data = {
235 0x31, 0x60, 0x0B, 0X0E, 0x13, 0x52, 0x34, 0x49,
236 0x81, 0x8B, 0x38, 0XD9, 0x0C, 0xED, 0x39, 0xDB
237 },
c88c4e4c
HJ
238 .log_msg = "Shutdown channel functionality initialized"
239 },
39c4e9c3
HZ
240
241 /* {9527E630-D0AE-497b-ADCE-E80AB0175CAF} */
242 /* TimeSync */
243 {
244 .msg_type = HV_TIMESYNC_MSG,
245 .data = {
246 0x30, 0xe6, 0x27, 0x95, 0xae, 0xd0, 0x7b, 0x49,
247 0xad, 0xce, 0xe8, 0x0a, 0xb0, 0x17, 0x5c, 0xaf
248 },
39c4e9c3
HZ
249 .log_msg = "Timesync channel functionality initialized"
250 },
9153f7b9
HJ
251 /* {57164f39-9115-4e78-ab55-382f3bd5422d} */
252 /* Heartbeat */
253 {
254 .msg_type = HV_HEARTBEAT_MSG,
255 .data = {
256 0x39, 0x4f, 0x16, 0x57, 0x15, 0x91, 0x78, 0x4e,
257 0xab, 0x55, 0x38, 0x2f, 0x3b, 0xd5, 0x42, 0x2d
258 },
9153f7b9
HJ
259 .log_msg = "Heartbeat channel functionality initialized"
260 },
245ba56a
KS
261 /* {A9A0F4E7-5A45-4d96-B827-8A841E8C03E6} */
262 /* KVP */
263 {
264 .data = {
265 0xe7, 0xf4, 0xa0, 0xa9, 0x45, 0x5a, 0x96, 0x4d,
266 0xb8, 0x27, 0x8a, 0x84, 0x1e, 0x8c, 0x3, 0xe6
267 },
245ba56a
KS
268 .log_msg = "KVP channel functionality initialized"
269 },
c88c4e4c
HJ
270};
271EXPORT_SYMBOL(hv_cb_utils);
272
3e189519 273/*
e98cb276 274 * alloc_channel - Allocate and initialize a vmbus channel object
bd60c33e 275 */
50fe56d2 276static struct vmbus_channel *alloc_channel(void)
3e7ee490 277{
aded7165 278 struct vmbus_channel *channel;
3e7ee490 279
aded7165 280 channel = kzalloc(sizeof(*channel), GFP_ATOMIC);
3e7ee490 281 if (!channel)
3e7ee490 282 return NULL;
3e7ee490 283
54411c42 284 spin_lock_init(&channel->inbound_lock);
3e7ee490 285
c50f7fb2
HZ
286 channel->controlwq = create_workqueue("hv_vmbus_ctl");
287 if (!channel->controlwq) {
8c69f52a 288 kfree(channel);
3e7ee490
HJ
289 return NULL;
290 }
291
292 return channel;
293}
294
3e189519 295/*
e98cb276 296 * release_hannel - Release the vmbus channel object itself
bd60c33e 297 */
4b2f9abe 298static void release_channel(struct work_struct *work)
3e7ee490 299{
4b2f9abe
TT
300 struct vmbus_channel *channel = container_of(work,
301 struct vmbus_channel,
302 work);
3e7ee490 303
c50f7fb2 304 destroy_workqueue(channel->controlwq);
3e7ee490 305
8c69f52a 306 kfree(channel);
3e7ee490
HJ
307}
308
3e189519 309/*
e98cb276 310 * free_channel - Release the resources used by the vmbus channel object
bd60c33e 311 */
e98cb276 312void free_channel(struct vmbus_channel *channel)
3e7ee490 313{
3e7ee490 314
bd60c33e
GKH
315 /*
316 * We have to release the channel's workqueue/thread in the vmbus's
317 * workqueue/thread context
318 * ie we can't destroy ourselves.
319 */
4b2f9abe 320 INIT_WORK(&channel->work, release_channel);
da9fcb72 321 queue_work(vmbus_connection.work_queue, &channel->work);
3e7ee490
HJ
322}
323
8b5d6d3b 324
8b5d6d3b 325
4b2f9abe
TT
326/*
327 * vmbus_process_rescind_offer -
328 * Rescind the offer by initiating a device removal
329 */
330static void vmbus_process_rescind_offer(struct work_struct *work)
331{
332 struct vmbus_channel *channel = container_of(work,
333 struct vmbus_channel,
334 work);
335
336 vmbus_child_device_unregister(channel->device_obj);
337}
8b5d6d3b 338
3e189519 339/*
e98cb276 340 * vmbus_process_offer - Process the offer by creating a channel/device
c88c4e4c 341 * associated with this offer
bd60c33e 342 */
4b2f9abe 343static void vmbus_process_offer(struct work_struct *work)
3e7ee490 344{
4b2f9abe
TT
345 struct vmbus_channel *newchannel = container_of(work,
346 struct vmbus_channel,
347 work);
aded7165 348 struct vmbus_channel *channel;
188963ec 349 bool fnew = true;
bd60c33e 350 int ret;
c88c4e4c 351 int cnt;
0f5e44ca 352 unsigned long flags;
3e7ee490 353
4b2f9abe
TT
354 /* The next possible work is rescind handling */
355 INIT_WORK(&newchannel->work, vmbus_process_rescind_offer);
356
454f18a9 357 /* Make sure this is a new offer */
15b2f647 358 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
3e7ee490 359
da9fcb72 360 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
767dff68
HZ
361 if (!memcmp(&channel->offermsg.offer.if_type,
362 &newchannel->offermsg.offer.if_type,
bd60c33e 363 sizeof(struct hv_guid)) &&
767dff68
HZ
364 !memcmp(&channel->offermsg.offer.if_instance,
365 &newchannel->offermsg.offer.if_instance,
bd60c33e 366 sizeof(struct hv_guid))) {
188963ec 367 fnew = false;
3e7ee490
HJ
368 break;
369 }
370 }
371
188963ec 372 if (fnew)
c50f7fb2 373 list_add_tail(&newchannel->listentry,
da9fcb72 374 &vmbus_connection.chn_list);
bd60c33e 375
15b2f647 376 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
3e7ee490 377
188963ec 378 if (!fnew) {
e98cb276 379 free_channel(newchannel);
3e7ee490
HJ
380 return;
381 }
382
bd60c33e
GKH
383 /*
384 * Start the process of binding this offer to the driver
385 * We need to set the DeviceObject field before calling
646f1ea3 386 * vmbus_child_dev_add()
bd60c33e 387 */
89733aa9 388 newchannel->device_obj = vmbus_child_device_create(
767dff68
HZ
389 &newchannel->offermsg.offer.if_type,
390 &newchannel->offermsg.offer.if_instance,
188963ec 391 newchannel);
3e7ee490 392
454f18a9
BP
393 /*
394 * Add the new device to the bus. This will kick off device-driver
395 * binding which eventually invokes the device driver's AddDevice()
396 * method.
397 */
e13a0b5a 398 ret = vmbus_child_device_register(newchannel->device_obj);
bd60c33e 399 if (ret != 0) {
0a46618d 400 pr_err("unable to add child device object (relid %d)\n",
c50f7fb2 401 newchannel->offermsg.child_relid);
3e7ee490 402
15b2f647 403 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
c50f7fb2 404 list_del(&newchannel->listentry);
15b2f647 405 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
3e7ee490 406
e98cb276 407 free_channel(newchannel);
bd60c33e 408 } else {
454f18a9
BP
409 /*
410 * This state is used to indicate a successful open
411 * so that when we do close the channel normally, we
412 * can cleanup properly
413 */
c50f7fb2 414 newchannel->state = CHANNEL_OPEN_STATE;
31bceb84 415 newchannel->util_index = -1; /* Invalid index */
c88c4e4c 416
8b5d6d3b
HZ
417 /* Open IC channels */
418 for (cnt = 0; cnt < MAX_MSG_TYPES; cnt++) {
767dff68 419 if (memcmp(&newchannel->offermsg.offer.if_type,
c88c4e4c 420 &hv_cb_utils[cnt].data,
8b5d6d3b 421 sizeof(struct hv_guid)) == 0 &&
188963ec 422 vmbus_open(newchannel, 2 * PAGE_SIZE,
8b5d6d3b 423 2 * PAGE_SIZE, NULL, 0,
b9d8e352 424 chn_cb_negotiate,
188963ec
HZ
425 newchannel) == 0) {
426 hv_cb_utils[cnt].channel = newchannel;
31bceb84 427 newchannel->util_index = cnt;
0a46618d
HJ
428
429 pr_info("%s\n", hv_cb_utils[cnt].log_msg);
430
c88c4e4c 431 }
c88c4e4c 432 }
3e7ee490 433 }
3e7ee490
HJ
434}
435
3e189519 436/*
e98cb276 437 * vmbus_onoffer - Handler for channel offers from vmbus in parent partition.
bd60c33e
GKH
438 *
439 * We ignore all offers except network and storage offers. For each network and
440 * storage offers, we create a channel object and queue a work item to the
441 * channel object to process the offer synchronously
442 */
e98cb276 443static void vmbus_onoffer(struct vmbus_channel_message_header *hdr)
3e7ee490 444{
bd60c33e 445 struct vmbus_channel_offer_channel *offer;
188963ec
HZ
446 struct vmbus_channel *newchannel;
447 struct hv_guid *guidtype;
448 struct hv_guid *guidinstance;
3e7ee490 449 int i;
188963ec 450 int fsupported = 0;
3e7ee490 451
bd60c33e
GKH
452 offer = (struct vmbus_channel_offer_channel *)hdr;
453 for (i = 0; i < MAX_NUM_DEVICE_CLASSES_SUPPORTED; i++) {
767dff68 454 if (memcmp(&offer->offer.if_type,
50b03266
S
455 &supported_device_classes[i],
456 sizeof(struct hv_guid)) == 0) {
188963ec 457 fsupported = 1;
3e7ee490
HJ
458 break;
459 }
460 }
461
98e08702 462 if (!fsupported)
3e7ee490 463 return;
3e7ee490 464
767dff68
HZ
465 guidtype = &offer->offer.if_type;
466 guidinstance = &offer->offer.if_instance;
3e7ee490 467
454f18a9 468 /* Allocate the channel object and save this offer. */
e98cb276 469 newchannel = alloc_channel();
188963ec 470 if (!newchannel) {
0a46618d 471 pr_err("Unable to allocate channel object\n");
3e7ee490
HJ
472 return;
473 }
474
c50f7fb2 475 memcpy(&newchannel->offermsg, offer,
bd60c33e 476 sizeof(struct vmbus_channel_offer_channel));
c50f7fb2
HZ
477 newchannel->monitor_grp = (u8)offer->monitorid / 32;
478 newchannel->monitor_bit = (u8)offer->monitorid % 32;
3e7ee490 479
4b2f9abe
TT
480 INIT_WORK(&newchannel->work, vmbus_process_offer);
481 queue_work(newchannel->controlwq, &newchannel->work);
3e7ee490
HJ
482}
483
3e189519 484/*
e98cb276 485 * vmbus_onoffer_rescind - Rescind offer handler.
bd60c33e
GKH
486 *
487 * We queue a work item to process this offer synchronously
488 */
e98cb276 489static void vmbus_onoffer_rescind(struct vmbus_channel_message_header *hdr)
3e7ee490 490{
bd60c33e 491 struct vmbus_channel_rescind_offer *rescind;
aded7165 492 struct vmbus_channel *channel;
3e7ee490 493
bd60c33e 494 rescind = (struct vmbus_channel_rescind_offer *)hdr;
c6977677 495 channel = relid2channel(rescind->child_relid);
98e08702
HJ
496
497 if (channel == NULL)
498 /* Just return here, no channel found */
3e7ee490 499 return;
3e7ee490 500
4b2f9abe
TT
501 /* work is initialized for vmbus_process_rescind_offer() from
502 * vmbus_process_offer() where the channel got created */
503 queue_work(channel->controlwq, &channel->work);
3e7ee490
HJ
504}
505
3e189519 506/*
e98cb276
HZ
507 * vmbus_onoffers_delivered -
508 * This is invoked when all offers have been delivered.
bd60c33e
GKH
509 *
510 * Nothing to do here.
511 */
e98cb276 512static void vmbus_onoffers_delivered(
bd60c33e 513 struct vmbus_channel_message_header *hdr)
3e7ee490 514{
3e7ee490
HJ
515}
516
3e189519 517/*
e98cb276 518 * vmbus_onopen_result - Open result handler.
bd60c33e
GKH
519 *
520 * This is invoked when we received a response to our channel open request.
521 * Find the matching request, copy the response and signal the requesting
522 * thread.
523 */
e98cb276 524static void vmbus_onopen_result(struct vmbus_channel_message_header *hdr)
3e7ee490 525{
bd60c33e 526 struct vmbus_channel_open_result *result;
188963ec
HZ
527 struct vmbus_channel_msginfo *msginfo;
528 struct vmbus_channel_message_header *requestheader;
529 struct vmbus_channel_open_channel *openmsg;
dd0813b6 530 unsigned long flags;
3e7ee490 531
bd60c33e 532 result = (struct vmbus_channel_open_result *)hdr;
3e7ee490 533
bd60c33e
GKH
534 /*
535 * Find the open msg, copy the result and signal/unblock the wait event
536 */
15b2f647 537 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
3e7ee490 538
ebb61e5f
HJ
539 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
540 msglistentry) {
188963ec 541 requestheader =
c50f7fb2 542 (struct vmbus_channel_message_header *)msginfo->msg;
188963ec 543
c50f7fb2 544 if (requestheader->msgtype == CHANNELMSG_OPENCHANNEL) {
188963ec 545 openmsg =
c50f7fb2
HZ
546 (struct vmbus_channel_open_channel *)msginfo->msg;
547 if (openmsg->child_relid == result->child_relid &&
548 openmsg->openid == result->openid) {
549 memcpy(&msginfo->response.open_result,
bd60c33e 550 result,
9568a193
S
551 sizeof(
552 struct vmbus_channel_open_result));
553 complete(&msginfo->waitevent);
3e7ee490
HJ
554 break;
555 }
556 }
557 }
15b2f647 558 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
3e7ee490
HJ
559}
560
3e189519 561/*
e98cb276 562 * vmbus_ongpadl_created - GPADL created handler.
bd60c33e
GKH
563 *
564 * This is invoked when we received a response to our gpadl create request.
565 * Find the matching request, copy the response and signal the requesting
566 * thread.
567 */
e98cb276 568static void vmbus_ongpadl_created(struct vmbus_channel_message_header *hdr)
3e7ee490 569{
188963ec 570 struct vmbus_channel_gpadl_created *gpadlcreated;
188963ec
HZ
571 struct vmbus_channel_msginfo *msginfo;
572 struct vmbus_channel_message_header *requestheader;
573 struct vmbus_channel_gpadl_header *gpadlheader;
dd0813b6 574 unsigned long flags;
3e7ee490 575
188963ec 576 gpadlcreated = (struct vmbus_channel_gpadl_created *)hdr;
3e7ee490 577
bd60c33e
GKH
578 /*
579 * Find the establish msg, copy the result and signal/unblock the wait
580 * event
581 */
15b2f647 582 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
3e7ee490 583
ebb61e5f
HJ
584 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
585 msglistentry) {
188963ec 586 requestheader =
c50f7fb2 587 (struct vmbus_channel_message_header *)msginfo->msg;
188963ec 588
c50f7fb2 589 if (requestheader->msgtype == CHANNELMSG_GPADL_HEADER) {
188963ec
HZ
590 gpadlheader =
591 (struct vmbus_channel_gpadl_header *)requestheader;
592
c50f7fb2
HZ
593 if ((gpadlcreated->child_relid ==
594 gpadlheader->child_relid) &&
595 (gpadlcreated->gpadl == gpadlheader->gpadl)) {
596 memcpy(&msginfo->response.gpadl_created,
188963ec 597 gpadlcreated,
9568a193
S
598 sizeof(
599 struct vmbus_channel_gpadl_created));
600 complete(&msginfo->waitevent);
3e7ee490
HJ
601 break;
602 }
603 }
604 }
15b2f647 605 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
3e7ee490
HJ
606}
607
3e189519 608/*
e98cb276 609 * vmbus_ongpadl_torndown - GPADL torndown handler.
bd60c33e
GKH
610 *
611 * This is invoked when we received a response to our gpadl teardown request.
612 * Find the matching request, copy the response and signal the requesting
613 * thread.
614 */
e98cb276 615static void vmbus_ongpadl_torndown(
bd60c33e 616 struct vmbus_channel_message_header *hdr)
3e7ee490 617{
188963ec 618 struct vmbus_channel_gpadl_torndown *gpadl_torndown;
188963ec
HZ
619 struct vmbus_channel_msginfo *msginfo;
620 struct vmbus_channel_message_header *requestheader;
621 struct vmbus_channel_gpadl_teardown *gpadl_teardown;
dd0813b6 622 unsigned long flags;
3e7ee490 623
188963ec 624 gpadl_torndown = (struct vmbus_channel_gpadl_torndown *)hdr;
bd60c33e
GKH
625
626 /*
627 * Find the open msg, copy the result and signal/unblock the wait event
628 */
15b2f647 629 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
3e7ee490 630
ebb61e5f
HJ
631 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
632 msglistentry) {
188963ec 633 requestheader =
c50f7fb2 634 (struct vmbus_channel_message_header *)msginfo->msg;
3e7ee490 635
c50f7fb2 636 if (requestheader->msgtype == CHANNELMSG_GPADL_TEARDOWN) {
188963ec
HZ
637 gpadl_teardown =
638 (struct vmbus_channel_gpadl_teardown *)requestheader;
3e7ee490 639
c50f7fb2
HZ
640 if (gpadl_torndown->gpadl == gpadl_teardown->gpadl) {
641 memcpy(&msginfo->response.gpadl_torndown,
188963ec 642 gpadl_torndown,
9568a193
S
643 sizeof(
644 struct vmbus_channel_gpadl_torndown));
645 complete(&msginfo->waitevent);
3e7ee490
HJ
646 break;
647 }
648 }
649 }
15b2f647 650 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
3e7ee490
HJ
651}
652
3e189519 653/*
e98cb276 654 * vmbus_onversion_response - Version response handler
bd60c33e
GKH
655 *
656 * This is invoked when we received a response to our initiate contact request.
657 * Find the matching request, copy the response and signal the requesting
658 * thread.
659 */
e98cb276 660static void vmbus_onversion_response(
bd60c33e 661 struct vmbus_channel_message_header *hdr)
3e7ee490 662{
188963ec
HZ
663 struct vmbus_channel_msginfo *msginfo;
664 struct vmbus_channel_message_header *requestheader;
82250213 665 struct vmbus_channel_initiate_contact *initiate;
188963ec 666 struct vmbus_channel_version_response *version_response;
dd0813b6 667 unsigned long flags;
3e7ee490 668
188963ec 669 version_response = (struct vmbus_channel_version_response *)hdr;
15b2f647 670 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
3e7ee490 671
ebb61e5f
HJ
672 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
673 msglistentry) {
188963ec 674 requestheader =
c50f7fb2 675 (struct vmbus_channel_message_header *)msginfo->msg;
3e7ee490 676
c50f7fb2
HZ
677 if (requestheader->msgtype ==
678 CHANNELMSG_INITIATE_CONTACT) {
188963ec
HZ
679 initiate =
680 (struct vmbus_channel_initiate_contact *)requestheader;
c50f7fb2 681 memcpy(&msginfo->response.version_response,
188963ec 682 version_response,
bd60c33e 683 sizeof(struct vmbus_channel_version_response));
9568a193 684 complete(&msginfo->waitevent);
3e7ee490
HJ
685 }
686 }
15b2f647 687 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
3e7ee490
HJ
688}
689
c8212f04
GKH
690/* Channel message dispatch table */
691static struct vmbus_channel_message_table_entry
b7c6b02f 692 channel_message_table[CHANNELMSG_COUNT] = {
c50f7fb2
HZ
693 {CHANNELMSG_INVALID, NULL},
694 {CHANNELMSG_OFFERCHANNEL, vmbus_onoffer},
695 {CHANNELMSG_RESCIND_CHANNELOFFER, vmbus_onoffer_rescind},
696 {CHANNELMSG_REQUESTOFFERS, NULL},
697 {CHANNELMSG_ALLOFFERS_DELIVERED, vmbus_onoffers_delivered},
698 {CHANNELMSG_OPENCHANNEL, NULL},
699 {CHANNELMSG_OPENCHANNEL_RESULT, vmbus_onopen_result},
700 {CHANNELMSG_CLOSECHANNEL, NULL},
701 {CHANNELMSG_GPADL_HEADER, NULL},
702 {CHANNELMSG_GPADL_BODY, NULL},
703 {CHANNELMSG_GPADL_CREATED, vmbus_ongpadl_created},
704 {CHANNELMSG_GPADL_TEARDOWN, NULL},
705 {CHANNELMSG_GPADL_TORNDOWN, vmbus_ongpadl_torndown},
706 {CHANNELMSG_RELID_RELEASED, NULL},
707 {CHANNELMSG_INITIATE_CONTACT, NULL},
708 {CHANNELMSG_VERSION_RESPONSE, vmbus_onversion_response},
709 {CHANNELMSG_UNLOAD, NULL},
c8212f04
GKH
710};
711
3e189519 712/*
e98cb276 713 * vmbus_onmessage - Handler for channel protocol messages.
bd60c33e
GKH
714 *
715 * This is invoked in the vmbus worker thread context.
716 */
e98cb276 717void vmbus_onmessage(void *context)
3e7ee490 718{
188963ec 719 struct hv_message *msg = context;
82250213 720 struct vmbus_channel_message_header *hdr;
3e7ee490
HJ
721 int size;
722
f6feebe0
HZ
723 hdr = (struct vmbus_channel_message_header *)msg->u.payload;
724 size = msg->header.payload_size;
3e7ee490 725
c50f7fb2 726 if (hdr->msgtype >= CHANNELMSG_COUNT) {
0a46618d 727 pr_err("Received invalid channel message type %d size %d\n",
c50f7fb2 728 hdr->msgtype, size);
04f50c4d 729 print_hex_dump_bytes("", DUMP_PREFIX_NONE,
f6feebe0 730 (unsigned char *)msg->u.payload, size);
3e7ee490
HJ
731 return;
732 }
733
b7c6b02f
S
734 if (channel_message_table[hdr->msgtype].message_handler)
735 channel_message_table[hdr->msgtype].message_handler(hdr);
3e7ee490 736 else
0a46618d 737 pr_err("Unhandled channel message type %d\n", hdr->msgtype);
3e7ee490
HJ
738}
739
3e189519 740/*
e98cb276 741 * vmbus_request_offers - Send a request to get all our pending offers.
bd60c33e 742 */
e98cb276 743int vmbus_request_offers(void)
3e7ee490 744{
82250213 745 struct vmbus_channel_message_header *msg;
188963ec 746 struct vmbus_channel_msginfo *msginfo;
9568a193 747 int ret, t;
3e7ee490 748
188963ec 749 msginfo = kmalloc(sizeof(*msginfo) +
bd60c33e
GKH
750 sizeof(struct vmbus_channel_message_header),
751 GFP_KERNEL);
188963ec 752 if (!msginfo)
75910f23 753 return -ENOMEM;
3e7ee490 754
9568a193 755 init_completion(&msginfo->waitevent);
75910f23 756
c50f7fb2 757 msg = (struct vmbus_channel_message_header *)msginfo->msg;
3e7ee490 758
c50f7fb2 759 msg->msgtype = CHANNELMSG_REQUESTOFFERS;
3e7ee490 760
3e7ee490 761
c6977677 762 ret = vmbus_post_msg(msg,
bd60c33e
GKH
763 sizeof(struct vmbus_channel_message_header));
764 if (ret != 0) {
0a46618d 765 pr_err("Unable to request offers - %d\n", ret);
3e7ee490 766
0c3b7b2f
S
767 goto cleanup;
768 }
3e7ee490 769
2dfde964 770 t = wait_for_completion_timeout(&msginfo->waitevent, 5*HZ);
9568a193 771 if (t == 0) {
0c3b7b2f
S
772 ret = -ETIMEDOUT;
773 goto cleanup;
3e7ee490 774 }
3e7ee490 775
3e7ee490
HJ
776
777
0c3b7b2f 778cleanup:
dd9b15dc 779 kfree(msginfo);
3e7ee490 780
3e7ee490
HJ
781 return ret;
782}
783
454f18a9 784/* eof */