1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright (c) 2009, Microsoft Corporation. 4 * 5 * Authors: 6 * Haiyang Zhang <haiyangz@microsoft.com> 7 * Hank Janssen <hjanssen@microsoft.com> 8 */ 9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 10 11 #include <linux/kernel.h> 12 #include <linux/sched.h> 13 #include <linux/wait.h> 14 #include <linux/mm.h> 15 #include <linux/slab.h> 16 #include <linux/module.h> 17 #include <linux/hyperv.h> 18 #include <linux/uio.h> 19 #include <linux/interrupt.h> 20 #include <asm/page.h> 21 #include <asm/mshyperv.h> 22 23 #include "hyperv_vmbus.h" 24 25 /* 26 * hv_gpadl_size - Return the real size of a gpadl, the size that Hyper-V uses 27 * 28 * For BUFFER gpadl, Hyper-V uses the exact same size as the guest does. 29 * 30 * For RING gpadl, in each ring, the guest uses one PAGE_SIZE as the header 31 * (because of the alignment requirement), however, the hypervisor only 32 * uses the first HV_HYP_PAGE_SIZE as the header, therefore leaving a 33 * (PAGE_SIZE - HV_HYP_PAGE_SIZE) gap. And since there are two rings in a 34 * ringbuffer, the total size for a RING gpadl that Hyper-V uses is the 35 * total size that the guest uses minus twice of the gap size. 36 */ 37 static inline u32 hv_gpadl_size(enum hv_gpadl_type type, u32 size) 38 { 39 switch (type) { 40 case HV_GPADL_BUFFER: 41 return size; 42 case HV_GPADL_RING: 43 /* The size of a ringbuffer must be page-aligned */ 44 BUG_ON(size % PAGE_SIZE); 45 /* 46 * Two things to notice here: 47 * 1) We're processing two ring buffers as a unit 48 * 2) We're skipping any space larger than HV_HYP_PAGE_SIZE in 49 * the first guest-size page of each of the two ring buffers. 50 * So we effectively subtract out two guest-size pages, and add 51 * back two Hyper-V size pages. 52 */ 53 return size - 2 * (PAGE_SIZE - HV_HYP_PAGE_SIZE); 54 } 55 BUG(); 56 return 0; 57 } 58 59 /* 60 * hv_ring_gpadl_send_hvpgoffset - Calculate the send offset (in unit of 61 * HV_HYP_PAGE) in a ring gpadl based on the 62 * offset in the guest 63 * 64 * @offset: the offset (in bytes) where the send ringbuffer starts in the 65 * virtual address space of the guest 66 */ 67 static inline u32 hv_ring_gpadl_send_hvpgoffset(u32 offset) 68 { 69 70 /* 71 * For RING gpadl, in each ring, the guest uses one PAGE_SIZE as the 72 * header (because of the alignment requirement), however, the 73 * hypervisor only uses the first HV_HYP_PAGE_SIZE as the header, 74 * therefore leaving a (PAGE_SIZE - HV_HYP_PAGE_SIZE) gap. 75 * 76 * And to calculate the effective send offset in gpadl, we need to 77 * substract this gap. 78 */ 79 return (offset - (PAGE_SIZE - HV_HYP_PAGE_SIZE)) >> HV_HYP_PAGE_SHIFT; 80 } 81 82 /* 83 * hv_gpadl_hvpfn - Return the Hyper-V page PFN of the @i th Hyper-V page in 84 * the gpadl 85 * 86 * @type: the type of the gpadl 87 * @kbuffer: the pointer to the gpadl in the guest 88 * @size: the total size (in bytes) of the gpadl 89 * @send_offset: the offset (in bytes) where the send ringbuffer starts in the 90 * virtual address space of the guest 91 * @i: the index 92 */ 93 static inline u64 hv_gpadl_hvpfn(enum hv_gpadl_type type, void *kbuffer, 94 u32 size, u32 send_offset, int i) 95 { 96 int send_idx = hv_ring_gpadl_send_hvpgoffset(send_offset); 97 unsigned long delta = 0UL; 98 99 switch (type) { 100 case HV_GPADL_BUFFER: 101 break; 102 case HV_GPADL_RING: 103 if (i == 0) 104 delta = 0; 105 else if (i <= send_idx) 106 delta = PAGE_SIZE - HV_HYP_PAGE_SIZE; 107 else 108 delta = 2 * (PAGE_SIZE - HV_HYP_PAGE_SIZE); 109 break; 110 default: 111 BUG(); 112 break; 113 } 114 115 return virt_to_hvpfn(kbuffer + delta + (HV_HYP_PAGE_SIZE * i)); 116 } 117 118 /* 119 * vmbus_setevent- Trigger an event notification on the specified 120 * channel. 121 */ 122 void vmbus_setevent(struct vmbus_channel *channel) 123 { 124 struct hv_monitor_page *monitorpage; 125 126 trace_vmbus_setevent(channel); 127 128 /* 129 * For channels marked as in "low latency" mode 130 * bypass the monitor page mechanism. 131 */ 132 if (channel->offermsg.monitor_allocated && !channel->low_latency) { 133 vmbus_send_interrupt(channel->offermsg.child_relid); 134 135 /* Get the child to parent monitor page */ 136 monitorpage = vmbus_connection.monitor_pages[1]; 137 138 sync_set_bit(channel->monitor_bit, 139 (unsigned long *)&monitorpage->trigger_group 140 [channel->monitor_grp].pending); 141 142 } else { 143 vmbus_set_event(channel); 144 } 145 } 146 EXPORT_SYMBOL_GPL(vmbus_setevent); 147 148 /* vmbus_free_ring - drop mapping of ring buffer */ 149 void vmbus_free_ring(struct vmbus_channel *channel) 150 { 151 hv_ringbuffer_cleanup(&channel->outbound); 152 hv_ringbuffer_cleanup(&channel->inbound); 153 154 if (channel->ringbuffer_page) { 155 __free_pages(channel->ringbuffer_page, 156 get_order(channel->ringbuffer_pagecount 157 << PAGE_SHIFT)); 158 channel->ringbuffer_page = NULL; 159 } 160 } 161 EXPORT_SYMBOL_GPL(vmbus_free_ring); 162 163 /* vmbus_alloc_ring - allocate and map pages for ring buffer */ 164 int vmbus_alloc_ring(struct vmbus_channel *newchannel, 165 u32 send_size, u32 recv_size) 166 { 167 struct page *page; 168 int order; 169 170 if (send_size % PAGE_SIZE || recv_size % PAGE_SIZE) 171 return -EINVAL; 172 173 /* Allocate the ring buffer */ 174 order = get_order(send_size + recv_size); 175 page = alloc_pages_node(cpu_to_node(newchannel->target_cpu), 176 GFP_KERNEL|__GFP_ZERO, order); 177 178 if (!page) 179 page = alloc_pages(GFP_KERNEL|__GFP_ZERO, order); 180 181 if (!page) 182 return -ENOMEM; 183 184 newchannel->ringbuffer_page = page; 185 newchannel->ringbuffer_pagecount = (send_size + recv_size) >> PAGE_SHIFT; 186 newchannel->ringbuffer_send_offset = send_size >> PAGE_SHIFT; 187 188 return 0; 189 } 190 EXPORT_SYMBOL_GPL(vmbus_alloc_ring); 191 192 /* Used for Hyper-V Socket: a guest client's connect() to the host */ 193 int vmbus_send_tl_connect_request(const guid_t *shv_guest_servie_id, 194 const guid_t *shv_host_servie_id) 195 { 196 struct vmbus_channel_tl_connect_request conn_msg; 197 int ret; 198 199 memset(&conn_msg, 0, sizeof(conn_msg)); 200 conn_msg.header.msgtype = CHANNELMSG_TL_CONNECT_REQUEST; 201 conn_msg.guest_endpoint_id = *shv_guest_servie_id; 202 conn_msg.host_service_id = *shv_host_servie_id; 203 204 ret = vmbus_post_msg(&conn_msg, sizeof(conn_msg), true); 205 206 trace_vmbus_send_tl_connect_request(&conn_msg, ret); 207 208 return ret; 209 } 210 EXPORT_SYMBOL_GPL(vmbus_send_tl_connect_request); 211 212 /* 213 * Set/change the vCPU (@target_vp) the channel (@child_relid) will interrupt. 214 * 215 * CHANNELMSG_MODIFYCHANNEL messages are aynchronous. Also, Hyper-V does not 216 * ACK such messages. IOW we can't know when the host will stop interrupting 217 * the "old" vCPU and start interrupting the "new" vCPU for the given channel. 218 * 219 * The CHANNELMSG_MODIFYCHANNEL message type is supported since VMBus version 220 * VERSION_WIN10_V4_1. 221 */ 222 int vmbus_send_modifychannel(u32 child_relid, u32 target_vp) 223 { 224 struct vmbus_channel_modifychannel conn_msg; 225 int ret; 226 227 memset(&conn_msg, 0, sizeof(conn_msg)); 228 conn_msg.header.msgtype = CHANNELMSG_MODIFYCHANNEL; 229 conn_msg.child_relid = child_relid; 230 conn_msg.target_vp = target_vp; 231 232 ret = vmbus_post_msg(&conn_msg, sizeof(conn_msg), true); 233 234 trace_vmbus_send_modifychannel(&conn_msg, ret); 235 236 return ret; 237 } 238 EXPORT_SYMBOL_GPL(vmbus_send_modifychannel); 239 240 /* 241 * create_gpadl_header - Creates a gpadl for the specified buffer 242 */ 243 static int create_gpadl_header(enum hv_gpadl_type type, void *kbuffer, 244 u32 size, u32 send_offset, 245 struct vmbus_channel_msginfo **msginfo) 246 { 247 int i; 248 int pagecount; 249 struct vmbus_channel_gpadl_header *gpadl_header; 250 struct vmbus_channel_gpadl_body *gpadl_body; 251 struct vmbus_channel_msginfo *msgheader; 252 struct vmbus_channel_msginfo *msgbody = NULL; 253 u32 msgsize; 254 255 int pfnsum, pfncount, pfnleft, pfncurr, pfnsize; 256 257 pagecount = hv_gpadl_size(type, size) >> HV_HYP_PAGE_SHIFT; 258 259 /* do we need a gpadl body msg */ 260 pfnsize = MAX_SIZE_CHANNEL_MESSAGE - 261 sizeof(struct vmbus_channel_gpadl_header) - 262 sizeof(struct gpa_range); 263 pfncount = pfnsize / sizeof(u64); 264 265 if (pagecount > pfncount) { 266 /* we need a gpadl body */ 267 /* fill in the header */ 268 msgsize = sizeof(struct vmbus_channel_msginfo) + 269 sizeof(struct vmbus_channel_gpadl_header) + 270 sizeof(struct gpa_range) + pfncount * sizeof(u64); 271 msgheader = kzalloc(msgsize, GFP_KERNEL); 272 if (!msgheader) 273 goto nomem; 274 275 INIT_LIST_HEAD(&msgheader->submsglist); 276 msgheader->msgsize = msgsize; 277 278 gpadl_header = (struct vmbus_channel_gpadl_header *) 279 msgheader->msg; 280 gpadl_header->rangecount = 1; 281 gpadl_header->range_buflen = sizeof(struct gpa_range) + 282 pagecount * sizeof(u64); 283 gpadl_header->range[0].byte_offset = 0; 284 gpadl_header->range[0].byte_count = hv_gpadl_size(type, size); 285 for (i = 0; i < pfncount; i++) 286 gpadl_header->range[0].pfn_array[i] = hv_gpadl_hvpfn( 287 type, kbuffer, size, send_offset, i); 288 *msginfo = msgheader; 289 290 pfnsum = pfncount; 291 pfnleft = pagecount - pfncount; 292 293 /* how many pfns can we fit */ 294 pfnsize = MAX_SIZE_CHANNEL_MESSAGE - 295 sizeof(struct vmbus_channel_gpadl_body); 296 pfncount = pfnsize / sizeof(u64); 297 298 /* fill in the body */ 299 while (pfnleft) { 300 if (pfnleft > pfncount) 301 pfncurr = pfncount; 302 else 303 pfncurr = pfnleft; 304 305 msgsize = sizeof(struct vmbus_channel_msginfo) + 306 sizeof(struct vmbus_channel_gpadl_body) + 307 pfncurr * sizeof(u64); 308 msgbody = kzalloc(msgsize, GFP_KERNEL); 309 310 if (!msgbody) { 311 struct vmbus_channel_msginfo *pos = NULL; 312 struct vmbus_channel_msginfo *tmp = NULL; 313 /* 314 * Free up all the allocated messages. 315 */ 316 list_for_each_entry_safe(pos, tmp, 317 &msgheader->submsglist, 318 msglistentry) { 319 320 list_del(&pos->msglistentry); 321 kfree(pos); 322 } 323 324 goto nomem; 325 } 326 327 msgbody->msgsize = msgsize; 328 gpadl_body = 329 (struct vmbus_channel_gpadl_body *)msgbody->msg; 330 331 /* 332 * Gpadl is u32 and we are using a pointer which could 333 * be 64-bit 334 * This is governed by the guest/host protocol and 335 * so the hypervisor guarantees that this is ok. 336 */ 337 for (i = 0; i < pfncurr; i++) 338 gpadl_body->pfn[i] = hv_gpadl_hvpfn(type, 339 kbuffer, size, send_offset, pfnsum + i); 340 341 /* add to msg header */ 342 list_add_tail(&msgbody->msglistentry, 343 &msgheader->submsglist); 344 pfnsum += pfncurr; 345 pfnleft -= pfncurr; 346 } 347 } else { 348 /* everything fits in a header */ 349 msgsize = sizeof(struct vmbus_channel_msginfo) + 350 sizeof(struct vmbus_channel_gpadl_header) + 351 sizeof(struct gpa_range) + pagecount * sizeof(u64); 352 msgheader = kzalloc(msgsize, GFP_KERNEL); 353 if (msgheader == NULL) 354 goto nomem; 355 356 INIT_LIST_HEAD(&msgheader->submsglist); 357 msgheader->msgsize = msgsize; 358 359 gpadl_header = (struct vmbus_channel_gpadl_header *) 360 msgheader->msg; 361 gpadl_header->rangecount = 1; 362 gpadl_header->range_buflen = sizeof(struct gpa_range) + 363 pagecount * sizeof(u64); 364 gpadl_header->range[0].byte_offset = 0; 365 gpadl_header->range[0].byte_count = hv_gpadl_size(type, size); 366 for (i = 0; i < pagecount; i++) 367 gpadl_header->range[0].pfn_array[i] = hv_gpadl_hvpfn( 368 type, kbuffer, size, send_offset, i); 369 370 *msginfo = msgheader; 371 } 372 373 return 0; 374 nomem: 375 kfree(msgheader); 376 kfree(msgbody); 377 return -ENOMEM; 378 } 379 380 /* 381 * __vmbus_establish_gpadl - Establish a GPADL for a buffer or ringbuffer 382 * 383 * @channel: a channel 384 * @type: the type of the corresponding GPADL, only meaningful for the guest. 385 * @kbuffer: from kmalloc or vmalloc 386 * @size: page-size multiple 387 * @send_offset: the offset (in bytes) where the send ring buffer starts, 388 * should be 0 for BUFFER type gpadl 389 * @gpadl_handle: some funky thing 390 */ 391 static int __vmbus_establish_gpadl(struct vmbus_channel *channel, 392 enum hv_gpadl_type type, void *kbuffer, 393 u32 size, u32 send_offset, 394 u32 *gpadl_handle) 395 { 396 struct vmbus_channel_gpadl_header *gpadlmsg; 397 struct vmbus_channel_gpadl_body *gpadl_body; 398 struct vmbus_channel_msginfo *msginfo = NULL; 399 struct vmbus_channel_msginfo *submsginfo, *tmp; 400 struct list_head *curr; 401 u32 next_gpadl_handle; 402 unsigned long flags; 403 int ret = 0; 404 405 next_gpadl_handle = 406 (atomic_inc_return(&vmbus_connection.next_gpadl_handle) - 1); 407 408 ret = create_gpadl_header(type, kbuffer, size, send_offset, &msginfo); 409 if (ret) 410 return ret; 411 412 init_completion(&msginfo->waitevent); 413 msginfo->waiting_channel = channel; 414 415 gpadlmsg = (struct vmbus_channel_gpadl_header *)msginfo->msg; 416 gpadlmsg->header.msgtype = CHANNELMSG_GPADL_HEADER; 417 gpadlmsg->child_relid = channel->offermsg.child_relid; 418 gpadlmsg->gpadl = next_gpadl_handle; 419 420 421 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); 422 list_add_tail(&msginfo->msglistentry, 423 &vmbus_connection.chn_msg_list); 424 425 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); 426 427 if (channel->rescind) { 428 ret = -ENODEV; 429 goto cleanup; 430 } 431 432 ret = vmbus_post_msg(gpadlmsg, msginfo->msgsize - 433 sizeof(*msginfo), true); 434 435 trace_vmbus_establish_gpadl_header(gpadlmsg, ret); 436 437 if (ret != 0) 438 goto cleanup; 439 440 list_for_each(curr, &msginfo->submsglist) { 441 submsginfo = (struct vmbus_channel_msginfo *)curr; 442 gpadl_body = 443 (struct vmbus_channel_gpadl_body *)submsginfo->msg; 444 445 gpadl_body->header.msgtype = 446 CHANNELMSG_GPADL_BODY; 447 gpadl_body->gpadl = next_gpadl_handle; 448 449 ret = vmbus_post_msg(gpadl_body, 450 submsginfo->msgsize - sizeof(*submsginfo), 451 true); 452 453 trace_vmbus_establish_gpadl_body(gpadl_body, ret); 454 455 if (ret != 0) 456 goto cleanup; 457 458 } 459 wait_for_completion(&msginfo->waitevent); 460 461 if (msginfo->response.gpadl_created.creation_status != 0) { 462 pr_err("Failed to establish GPADL: err = 0x%x\n", 463 msginfo->response.gpadl_created.creation_status); 464 465 ret = -EDQUOT; 466 goto cleanup; 467 } 468 469 if (channel->rescind) { 470 ret = -ENODEV; 471 goto cleanup; 472 } 473 474 /* At this point, we received the gpadl created msg */ 475 *gpadl_handle = gpadlmsg->gpadl; 476 477 cleanup: 478 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); 479 list_del(&msginfo->msglistentry); 480 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); 481 list_for_each_entry_safe(submsginfo, tmp, &msginfo->submsglist, 482 msglistentry) { 483 kfree(submsginfo); 484 } 485 486 kfree(msginfo); 487 return ret; 488 } 489 490 /* 491 * vmbus_establish_gpadl - Establish a GPADL for the specified buffer 492 * 493 * @channel: a channel 494 * @kbuffer: from kmalloc or vmalloc 495 * @size: page-size multiple 496 * @gpadl_handle: some funky thing 497 */ 498 int vmbus_establish_gpadl(struct vmbus_channel *channel, void *kbuffer, 499 u32 size, u32 *gpadl_handle) 500 { 501 return __vmbus_establish_gpadl(channel, HV_GPADL_BUFFER, kbuffer, size, 502 0U, gpadl_handle); 503 } 504 EXPORT_SYMBOL_GPL(vmbus_establish_gpadl); 505 506 /** 507 * request_arr_init - Allocates memory for the requestor array. Each slot 508 * keeps track of the next available slot in the array. Initially, each 509 * slot points to the next one (as in a Linked List). The last slot 510 * does not point to anything, so its value is U64_MAX by default. 511 * @size The size of the array 512 */ 513 static u64 *request_arr_init(u32 size) 514 { 515 int i; 516 u64 *req_arr; 517 518 req_arr = kcalloc(size, sizeof(u64), GFP_KERNEL); 519 if (!req_arr) 520 return NULL; 521 522 for (i = 0; i < size - 1; i++) 523 req_arr[i] = i + 1; 524 525 /* Last slot (no more available slots) */ 526 req_arr[i] = U64_MAX; 527 528 return req_arr; 529 } 530 531 /* 532 * vmbus_alloc_requestor - Initializes @rqstor's fields. 533 * Index 0 is the first free slot 534 * @size: Size of the requestor array 535 */ 536 static int vmbus_alloc_requestor(struct vmbus_requestor *rqstor, u32 size) 537 { 538 u64 *rqst_arr; 539 unsigned long *bitmap; 540 541 rqst_arr = request_arr_init(size); 542 if (!rqst_arr) 543 return -ENOMEM; 544 545 bitmap = bitmap_zalloc(size, GFP_KERNEL); 546 if (!bitmap) { 547 kfree(rqst_arr); 548 return -ENOMEM; 549 } 550 551 rqstor->req_arr = rqst_arr; 552 rqstor->req_bitmap = bitmap; 553 rqstor->size = size; 554 rqstor->next_request_id = 0; 555 spin_lock_init(&rqstor->req_lock); 556 557 return 0; 558 } 559 560 /* 561 * vmbus_free_requestor - Frees memory allocated for @rqstor 562 * @rqstor: Pointer to the requestor struct 563 */ 564 static void vmbus_free_requestor(struct vmbus_requestor *rqstor) 565 { 566 kfree(rqstor->req_arr); 567 bitmap_free(rqstor->req_bitmap); 568 } 569 570 static int __vmbus_open(struct vmbus_channel *newchannel, 571 void *userdata, u32 userdatalen, 572 void (*onchannelcallback)(void *context), void *context) 573 { 574 struct vmbus_channel_open_channel *open_msg; 575 struct vmbus_channel_msginfo *open_info = NULL; 576 struct page *page = newchannel->ringbuffer_page; 577 u32 send_pages, recv_pages; 578 unsigned long flags; 579 int err; 580 581 if (userdatalen > MAX_USER_DEFINED_BYTES) 582 return -EINVAL; 583 584 send_pages = newchannel->ringbuffer_send_offset; 585 recv_pages = newchannel->ringbuffer_pagecount - send_pages; 586 587 if (newchannel->state != CHANNEL_OPEN_STATE) 588 return -EINVAL; 589 590 /* Create and init requestor */ 591 if (newchannel->rqstor_size) { 592 if (vmbus_alloc_requestor(&newchannel->requestor, newchannel->rqstor_size)) 593 return -ENOMEM; 594 } 595 596 newchannel->state = CHANNEL_OPENING_STATE; 597 newchannel->onchannel_callback = onchannelcallback; 598 newchannel->channel_callback_context = context; 599 600 if (!newchannel->max_pkt_size) 601 newchannel->max_pkt_size = VMBUS_DEFAULT_MAX_PKT_SIZE; 602 603 err = hv_ringbuffer_init(&newchannel->outbound, page, send_pages, 0); 604 if (err) 605 goto error_clean_ring; 606 607 err = hv_ringbuffer_init(&newchannel->inbound, &page[send_pages], 608 recv_pages, newchannel->max_pkt_size); 609 if (err) 610 goto error_clean_ring; 611 612 /* Establish the gpadl for the ring buffer */ 613 newchannel->ringbuffer_gpadlhandle = 0; 614 615 err = __vmbus_establish_gpadl(newchannel, HV_GPADL_RING, 616 page_address(newchannel->ringbuffer_page), 617 (send_pages + recv_pages) << PAGE_SHIFT, 618 newchannel->ringbuffer_send_offset << PAGE_SHIFT, 619 &newchannel->ringbuffer_gpadlhandle); 620 if (err) 621 goto error_clean_ring; 622 623 /* Create and init the channel open message */ 624 open_info = kzalloc(sizeof(*open_info) + 625 sizeof(struct vmbus_channel_open_channel), 626 GFP_KERNEL); 627 if (!open_info) { 628 err = -ENOMEM; 629 goto error_free_gpadl; 630 } 631 632 init_completion(&open_info->waitevent); 633 open_info->waiting_channel = newchannel; 634 635 open_msg = (struct vmbus_channel_open_channel *)open_info->msg; 636 open_msg->header.msgtype = CHANNELMSG_OPENCHANNEL; 637 open_msg->openid = newchannel->offermsg.child_relid; 638 open_msg->child_relid = newchannel->offermsg.child_relid; 639 open_msg->ringbuffer_gpadlhandle = newchannel->ringbuffer_gpadlhandle; 640 /* 641 * The unit of ->downstream_ringbuffer_pageoffset is HV_HYP_PAGE and 642 * the unit of ->ringbuffer_send_offset (i.e. send_pages) is PAGE, so 643 * here we calculate it into HV_HYP_PAGE. 644 */ 645 open_msg->downstream_ringbuffer_pageoffset = 646 hv_ring_gpadl_send_hvpgoffset(send_pages << PAGE_SHIFT); 647 open_msg->target_vp = hv_cpu_number_to_vp_number(newchannel->target_cpu); 648 649 if (userdatalen) 650 memcpy(open_msg->userdata, userdata, userdatalen); 651 652 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); 653 list_add_tail(&open_info->msglistentry, 654 &vmbus_connection.chn_msg_list); 655 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); 656 657 if (newchannel->rescind) { 658 err = -ENODEV; 659 goto error_free_info; 660 } 661 662 err = vmbus_post_msg(open_msg, 663 sizeof(struct vmbus_channel_open_channel), true); 664 665 trace_vmbus_open(open_msg, err); 666 667 if (err != 0) 668 goto error_clean_msglist; 669 670 wait_for_completion(&open_info->waitevent); 671 672 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); 673 list_del(&open_info->msglistentry); 674 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); 675 676 if (newchannel->rescind) { 677 err = -ENODEV; 678 goto error_free_info; 679 } 680 681 if (open_info->response.open_result.status) { 682 err = -EAGAIN; 683 goto error_free_info; 684 } 685 686 newchannel->state = CHANNEL_OPENED_STATE; 687 kfree(open_info); 688 return 0; 689 690 error_clean_msglist: 691 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); 692 list_del(&open_info->msglistentry); 693 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); 694 error_free_info: 695 kfree(open_info); 696 error_free_gpadl: 697 vmbus_teardown_gpadl(newchannel, newchannel->ringbuffer_gpadlhandle); 698 newchannel->ringbuffer_gpadlhandle = 0; 699 error_clean_ring: 700 hv_ringbuffer_cleanup(&newchannel->outbound); 701 hv_ringbuffer_cleanup(&newchannel->inbound); 702 vmbus_free_requestor(&newchannel->requestor); 703 newchannel->state = CHANNEL_OPEN_STATE; 704 return err; 705 } 706 707 /* 708 * vmbus_connect_ring - Open the channel but reuse ring buffer 709 */ 710 int vmbus_connect_ring(struct vmbus_channel *newchannel, 711 void (*onchannelcallback)(void *context), void *context) 712 { 713 return __vmbus_open(newchannel, NULL, 0, onchannelcallback, context); 714 } 715 EXPORT_SYMBOL_GPL(vmbus_connect_ring); 716 717 /* 718 * vmbus_open - Open the specified channel. 719 */ 720 int vmbus_open(struct vmbus_channel *newchannel, 721 u32 send_ringbuffer_size, u32 recv_ringbuffer_size, 722 void *userdata, u32 userdatalen, 723 void (*onchannelcallback)(void *context), void *context) 724 { 725 int err; 726 727 err = vmbus_alloc_ring(newchannel, send_ringbuffer_size, 728 recv_ringbuffer_size); 729 if (err) 730 return err; 731 732 err = __vmbus_open(newchannel, userdata, userdatalen, 733 onchannelcallback, context); 734 if (err) 735 vmbus_free_ring(newchannel); 736 737 return err; 738 } 739 EXPORT_SYMBOL_GPL(vmbus_open); 740 741 /* 742 * vmbus_teardown_gpadl -Teardown the specified GPADL handle 743 */ 744 int vmbus_teardown_gpadl(struct vmbus_channel *channel, u32 gpadl_handle) 745 { 746 struct vmbus_channel_gpadl_teardown *msg; 747 struct vmbus_channel_msginfo *info; 748 unsigned long flags; 749 int ret; 750 751 info = kzalloc(sizeof(*info) + 752 sizeof(struct vmbus_channel_gpadl_teardown), GFP_KERNEL); 753 if (!info) 754 return -ENOMEM; 755 756 init_completion(&info->waitevent); 757 info->waiting_channel = channel; 758 759 msg = (struct vmbus_channel_gpadl_teardown *)info->msg; 760 761 msg->header.msgtype = CHANNELMSG_GPADL_TEARDOWN; 762 msg->child_relid = channel->offermsg.child_relid; 763 msg->gpadl = gpadl_handle; 764 765 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); 766 list_add_tail(&info->msglistentry, 767 &vmbus_connection.chn_msg_list); 768 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); 769 770 if (channel->rescind) 771 goto post_msg_err; 772 773 ret = vmbus_post_msg(msg, sizeof(struct vmbus_channel_gpadl_teardown), 774 true); 775 776 trace_vmbus_teardown_gpadl(msg, ret); 777 778 if (ret) 779 goto post_msg_err; 780 781 wait_for_completion(&info->waitevent); 782 783 post_msg_err: 784 /* 785 * If the channel has been rescinded; 786 * we will be awakened by the rescind 787 * handler; set the error code to zero so we don't leak memory. 788 */ 789 if (channel->rescind) 790 ret = 0; 791 792 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); 793 list_del(&info->msglistentry); 794 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); 795 796 kfree(info); 797 return ret; 798 } 799 EXPORT_SYMBOL_GPL(vmbus_teardown_gpadl); 800 801 void vmbus_reset_channel_cb(struct vmbus_channel *channel) 802 { 803 unsigned long flags; 804 805 /* 806 * vmbus_on_event(), running in the per-channel tasklet, can race 807 * with vmbus_close_internal() in the case of SMP guest, e.g., when 808 * the former is accessing channel->inbound.ring_buffer, the latter 809 * could be freeing the ring_buffer pages, so here we must stop it 810 * first. 811 * 812 * vmbus_chan_sched() might call the netvsc driver callback function 813 * that ends up scheduling NAPI work that accesses the ring buffer. 814 * At this point, we have to ensure that any such work is completed 815 * and that the channel ring buffer is no longer being accessed, cf. 816 * the calls to napi_disable() in netvsc_device_remove(). 817 */ 818 tasklet_disable(&channel->callback_event); 819 820 /* See the inline comments in vmbus_chan_sched(). */ 821 spin_lock_irqsave(&channel->sched_lock, flags); 822 channel->onchannel_callback = NULL; 823 spin_unlock_irqrestore(&channel->sched_lock, flags); 824 825 channel->sc_creation_callback = NULL; 826 827 /* Re-enable tasklet for use on re-open */ 828 tasklet_enable(&channel->callback_event); 829 } 830 831 static int vmbus_close_internal(struct vmbus_channel *channel) 832 { 833 struct vmbus_channel_close_channel *msg; 834 int ret; 835 836 vmbus_reset_channel_cb(channel); 837 838 /* 839 * In case a device driver's probe() fails (e.g., 840 * util_probe() -> vmbus_open() returns -ENOMEM) and the device is 841 * rescinded later (e.g., we dynamically disable an Integrated Service 842 * in Hyper-V Manager), the driver's remove() invokes vmbus_close(): 843 * here we should skip most of the below cleanup work. 844 */ 845 if (channel->state != CHANNEL_OPENED_STATE) 846 return -EINVAL; 847 848 channel->state = CHANNEL_OPEN_STATE; 849 850 /* Send a closing message */ 851 852 msg = &channel->close_msg.msg; 853 854 msg->header.msgtype = CHANNELMSG_CLOSECHANNEL; 855 msg->child_relid = channel->offermsg.child_relid; 856 857 ret = vmbus_post_msg(msg, sizeof(struct vmbus_channel_close_channel), 858 true); 859 860 trace_vmbus_close_internal(msg, ret); 861 862 if (ret) { 863 pr_err("Close failed: close post msg return is %d\n", ret); 864 /* 865 * If we failed to post the close msg, 866 * it is perhaps better to leak memory. 867 */ 868 } 869 870 /* Tear down the gpadl for the channel's ring buffer */ 871 else if (channel->ringbuffer_gpadlhandle) { 872 ret = vmbus_teardown_gpadl(channel, 873 channel->ringbuffer_gpadlhandle); 874 if (ret) { 875 pr_err("Close failed: teardown gpadl return %d\n", ret); 876 /* 877 * If we failed to teardown gpadl, 878 * it is perhaps better to leak memory. 879 */ 880 } 881 882 channel->ringbuffer_gpadlhandle = 0; 883 } 884 885 if (!ret) 886 vmbus_free_requestor(&channel->requestor); 887 888 return ret; 889 } 890 891 /* disconnect ring - close all channels */ 892 int vmbus_disconnect_ring(struct vmbus_channel *channel) 893 { 894 struct vmbus_channel *cur_channel, *tmp; 895 int ret; 896 897 if (channel->primary_channel != NULL) 898 return -EINVAL; 899 900 list_for_each_entry_safe(cur_channel, tmp, &channel->sc_list, sc_list) { 901 if (cur_channel->rescind) 902 wait_for_completion(&cur_channel->rescind_event); 903 904 mutex_lock(&vmbus_connection.channel_mutex); 905 if (vmbus_close_internal(cur_channel) == 0) { 906 vmbus_free_ring(cur_channel); 907 908 if (cur_channel->rescind) 909 hv_process_channel_removal(cur_channel); 910 } 911 mutex_unlock(&vmbus_connection.channel_mutex); 912 } 913 914 /* 915 * Now close the primary. 916 */ 917 mutex_lock(&vmbus_connection.channel_mutex); 918 ret = vmbus_close_internal(channel); 919 mutex_unlock(&vmbus_connection.channel_mutex); 920 921 return ret; 922 } 923 EXPORT_SYMBOL_GPL(vmbus_disconnect_ring); 924 925 /* 926 * vmbus_close - Close the specified channel 927 */ 928 void vmbus_close(struct vmbus_channel *channel) 929 { 930 if (vmbus_disconnect_ring(channel) == 0) 931 vmbus_free_ring(channel); 932 } 933 EXPORT_SYMBOL_GPL(vmbus_close); 934 935 /** 936 * vmbus_sendpacket() - Send the specified buffer on the given channel 937 * @channel: Pointer to vmbus_channel structure 938 * @buffer: Pointer to the buffer you want to send the data from. 939 * @bufferlen: Maximum size of what the buffer holds. 940 * @requestid: Identifier of the request 941 * @type: Type of packet that is being sent e.g. negotiate, time 942 * packet etc. 943 * @flags: 0 or VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED 944 * 945 * Sends data in @buffer directly to Hyper-V via the vmbus. 946 * This will send the data unparsed to Hyper-V. 947 * 948 * Mainly used by Hyper-V drivers. 949 */ 950 int vmbus_sendpacket(struct vmbus_channel *channel, void *buffer, 951 u32 bufferlen, u64 requestid, 952 enum vmbus_packet_type type, u32 flags) 953 { 954 struct vmpacket_descriptor desc; 955 u32 packetlen = sizeof(struct vmpacket_descriptor) + bufferlen; 956 u32 packetlen_aligned = ALIGN(packetlen, sizeof(u64)); 957 struct kvec bufferlist[3]; 958 u64 aligned_data = 0; 959 int num_vecs = ((bufferlen != 0) ? 3 : 1); 960 961 962 /* Setup the descriptor */ 963 desc.type = type; /* VmbusPacketTypeDataInBand; */ 964 desc.flags = flags; /* VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED; */ 965 /* in 8-bytes granularity */ 966 desc.offset8 = sizeof(struct vmpacket_descriptor) >> 3; 967 desc.len8 = (u16)(packetlen_aligned >> 3); 968 desc.trans_id = VMBUS_RQST_ERROR; /* will be updated in hv_ringbuffer_write() */ 969 970 bufferlist[0].iov_base = &desc; 971 bufferlist[0].iov_len = sizeof(struct vmpacket_descriptor); 972 bufferlist[1].iov_base = buffer; 973 bufferlist[1].iov_len = bufferlen; 974 bufferlist[2].iov_base = &aligned_data; 975 bufferlist[2].iov_len = (packetlen_aligned - packetlen); 976 977 return hv_ringbuffer_write(channel, bufferlist, num_vecs, requestid); 978 } 979 EXPORT_SYMBOL(vmbus_sendpacket); 980 981 /* 982 * vmbus_sendpacket_pagebuffer - Send a range of single-page buffer 983 * packets using a GPADL Direct packet type. This interface allows you 984 * to control notifying the host. This will be useful for sending 985 * batched data. Also the sender can control the send flags 986 * explicitly. 987 */ 988 int vmbus_sendpacket_pagebuffer(struct vmbus_channel *channel, 989 struct hv_page_buffer pagebuffers[], 990 u32 pagecount, void *buffer, u32 bufferlen, 991 u64 requestid) 992 { 993 int i; 994 struct vmbus_channel_packet_page_buffer desc; 995 u32 descsize; 996 u32 packetlen; 997 u32 packetlen_aligned; 998 struct kvec bufferlist[3]; 999 u64 aligned_data = 0; 1000 1001 if (pagecount > MAX_PAGE_BUFFER_COUNT) 1002 return -EINVAL; 1003 1004 /* 1005 * Adjust the size down since vmbus_channel_packet_page_buffer is the 1006 * largest size we support 1007 */ 1008 descsize = sizeof(struct vmbus_channel_packet_page_buffer) - 1009 ((MAX_PAGE_BUFFER_COUNT - pagecount) * 1010 sizeof(struct hv_page_buffer)); 1011 packetlen = descsize + bufferlen; 1012 packetlen_aligned = ALIGN(packetlen, sizeof(u64)); 1013 1014 /* Setup the descriptor */ 1015 desc.type = VM_PKT_DATA_USING_GPA_DIRECT; 1016 desc.flags = VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED; 1017 desc.dataoffset8 = descsize >> 3; /* in 8-bytes granularity */ 1018 desc.length8 = (u16)(packetlen_aligned >> 3); 1019 desc.transactionid = VMBUS_RQST_ERROR; /* will be updated in hv_ringbuffer_write() */ 1020 desc.reserved = 0; 1021 desc.rangecount = pagecount; 1022 1023 for (i = 0; i < pagecount; i++) { 1024 desc.range[i].len = pagebuffers[i].len; 1025 desc.range[i].offset = pagebuffers[i].offset; 1026 desc.range[i].pfn = pagebuffers[i].pfn; 1027 } 1028 1029 bufferlist[0].iov_base = &desc; 1030 bufferlist[0].iov_len = descsize; 1031 bufferlist[1].iov_base = buffer; 1032 bufferlist[1].iov_len = bufferlen; 1033 bufferlist[2].iov_base = &aligned_data; 1034 bufferlist[2].iov_len = (packetlen_aligned - packetlen); 1035 1036 return hv_ringbuffer_write(channel, bufferlist, 3, requestid); 1037 } 1038 EXPORT_SYMBOL_GPL(vmbus_sendpacket_pagebuffer); 1039 1040 /* 1041 * vmbus_sendpacket_multipagebuffer - Send a multi-page buffer packet 1042 * using a GPADL Direct packet type. 1043 * The buffer includes the vmbus descriptor. 1044 */ 1045 int vmbus_sendpacket_mpb_desc(struct vmbus_channel *channel, 1046 struct vmbus_packet_mpb_array *desc, 1047 u32 desc_size, 1048 void *buffer, u32 bufferlen, u64 requestid) 1049 { 1050 u32 packetlen; 1051 u32 packetlen_aligned; 1052 struct kvec bufferlist[3]; 1053 u64 aligned_data = 0; 1054 1055 packetlen = desc_size + bufferlen; 1056 packetlen_aligned = ALIGN(packetlen, sizeof(u64)); 1057 1058 /* Setup the descriptor */ 1059 desc->type = VM_PKT_DATA_USING_GPA_DIRECT; 1060 desc->flags = VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED; 1061 desc->dataoffset8 = desc_size >> 3; /* in 8-bytes granularity */ 1062 desc->length8 = (u16)(packetlen_aligned >> 3); 1063 desc->transactionid = VMBUS_RQST_ERROR; /* will be updated in hv_ringbuffer_write() */ 1064 desc->reserved = 0; 1065 desc->rangecount = 1; 1066 1067 bufferlist[0].iov_base = desc; 1068 bufferlist[0].iov_len = desc_size; 1069 bufferlist[1].iov_base = buffer; 1070 bufferlist[1].iov_len = bufferlen; 1071 bufferlist[2].iov_base = &aligned_data; 1072 bufferlist[2].iov_len = (packetlen_aligned - packetlen); 1073 1074 return hv_ringbuffer_write(channel, bufferlist, 3, requestid); 1075 } 1076 EXPORT_SYMBOL_GPL(vmbus_sendpacket_mpb_desc); 1077 1078 /** 1079 * __vmbus_recvpacket() - Retrieve the user packet on the specified channel 1080 * @channel: Pointer to vmbus_channel structure 1081 * @buffer: Pointer to the buffer you want to receive the data into. 1082 * @bufferlen: Maximum size of what the buffer can hold. 1083 * @buffer_actual_len: The actual size of the data after it was received. 1084 * @requestid: Identifier of the request 1085 * @raw: true means keep the vmpacket_descriptor header in the received data. 1086 * 1087 * Receives directly from the hyper-v vmbus and puts the data it received 1088 * into Buffer. This will receive the data unparsed from hyper-v. 1089 * 1090 * Mainly used by Hyper-V drivers. 1091 */ 1092 static inline int 1093 __vmbus_recvpacket(struct vmbus_channel *channel, void *buffer, 1094 u32 bufferlen, u32 *buffer_actual_len, u64 *requestid, 1095 bool raw) 1096 { 1097 return hv_ringbuffer_read(channel, buffer, bufferlen, 1098 buffer_actual_len, requestid, raw); 1099 1100 } 1101 1102 int vmbus_recvpacket(struct vmbus_channel *channel, void *buffer, 1103 u32 bufferlen, u32 *buffer_actual_len, 1104 u64 *requestid) 1105 { 1106 return __vmbus_recvpacket(channel, buffer, bufferlen, 1107 buffer_actual_len, requestid, false); 1108 } 1109 EXPORT_SYMBOL(vmbus_recvpacket); 1110 1111 /* 1112 * vmbus_recvpacket_raw - Retrieve the raw packet on the specified channel 1113 */ 1114 int vmbus_recvpacket_raw(struct vmbus_channel *channel, void *buffer, 1115 u32 bufferlen, u32 *buffer_actual_len, 1116 u64 *requestid) 1117 { 1118 return __vmbus_recvpacket(channel, buffer, bufferlen, 1119 buffer_actual_len, requestid, true); 1120 } 1121 EXPORT_SYMBOL_GPL(vmbus_recvpacket_raw); 1122 1123 /* 1124 * vmbus_next_request_id - Returns a new request id. It is also 1125 * the index at which the guest memory address is stored. 1126 * Uses a spin lock to avoid race conditions. 1127 * @rqstor: Pointer to the requestor struct 1128 * @rqst_add: Guest memory address to be stored in the array 1129 */ 1130 u64 vmbus_next_request_id(struct vmbus_requestor *rqstor, u64 rqst_addr) 1131 { 1132 unsigned long flags; 1133 u64 current_id; 1134 const struct vmbus_channel *channel = 1135 container_of(rqstor, const struct vmbus_channel, requestor); 1136 1137 /* Check rqstor has been initialized */ 1138 if (!channel->rqstor_size) 1139 return VMBUS_NO_RQSTOR; 1140 1141 spin_lock_irqsave(&rqstor->req_lock, flags); 1142 current_id = rqstor->next_request_id; 1143 1144 /* Requestor array is full */ 1145 if (current_id >= rqstor->size) { 1146 spin_unlock_irqrestore(&rqstor->req_lock, flags); 1147 return VMBUS_RQST_ERROR; 1148 } 1149 1150 rqstor->next_request_id = rqstor->req_arr[current_id]; 1151 rqstor->req_arr[current_id] = rqst_addr; 1152 1153 /* The already held spin lock provides atomicity */ 1154 bitmap_set(rqstor->req_bitmap, current_id, 1); 1155 1156 spin_unlock_irqrestore(&rqstor->req_lock, flags); 1157 1158 /* 1159 * Cannot return an ID of 0, which is reserved for an unsolicited 1160 * message from Hyper-V. 1161 */ 1162 return current_id + 1; 1163 } 1164 EXPORT_SYMBOL_GPL(vmbus_next_request_id); 1165 1166 /* 1167 * vmbus_request_addr - Returns the memory address stored at @trans_id 1168 * in @rqstor. Uses a spin lock to avoid race conditions. 1169 * @rqstor: Pointer to the requestor struct 1170 * @trans_id: Request id sent back from Hyper-V. Becomes the requestor's 1171 * next request id. 1172 */ 1173 u64 vmbus_request_addr(struct vmbus_requestor *rqstor, u64 trans_id) 1174 { 1175 unsigned long flags; 1176 u64 req_addr; 1177 const struct vmbus_channel *channel = 1178 container_of(rqstor, const struct vmbus_channel, requestor); 1179 1180 /* Check rqstor has been initialized */ 1181 if (!channel->rqstor_size) 1182 return VMBUS_NO_RQSTOR; 1183 1184 /* Hyper-V can send an unsolicited message with ID of 0 */ 1185 if (!trans_id) 1186 return trans_id; 1187 1188 spin_lock_irqsave(&rqstor->req_lock, flags); 1189 1190 /* Data corresponding to trans_id is stored at trans_id - 1 */ 1191 trans_id--; 1192 1193 /* Invalid trans_id */ 1194 if (trans_id >= rqstor->size || !test_bit(trans_id, rqstor->req_bitmap)) { 1195 spin_unlock_irqrestore(&rqstor->req_lock, flags); 1196 return VMBUS_RQST_ERROR; 1197 } 1198 1199 req_addr = rqstor->req_arr[trans_id]; 1200 rqstor->req_arr[trans_id] = rqstor->next_request_id; 1201 rqstor->next_request_id = trans_id; 1202 1203 /* The already held spin lock provides atomicity */ 1204 bitmap_clear(rqstor->req_bitmap, trans_id, 1); 1205 1206 spin_unlock_irqrestore(&rqstor->req_lock, flags); 1207 return req_addr; 1208 } 1209 EXPORT_SYMBOL_GPL(vmbus_request_addr); 1210