2 * Copyright (c) 2009, Microsoft Corporation.
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.
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
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.
18 * Haiyang Zhang <haiyangz@microsoft.com>
19 * Hank Janssen <hjanssen@microsoft.com>
21 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23 #include <linux/kernel.h>
24 #include <linux/sched.h>
25 #include <linux/wait.h>
27 #include <linux/slab.h>
28 #include <linux/module.h>
29 #include <linux/hyperv.h>
31 #include "hyperv_vmbus.h"
33 #define NUM_PAGES_SPANNED(addr, len) \
34 ((PAGE_ALIGN(addr + len) >> PAGE_SHIFT) - (addr >> PAGE_SHIFT))
37 * vmbus_setevent- Trigger an event notification on the specified
40 static void vmbus_setevent(struct vmbus_channel
*channel
)
42 struct hv_monitor_page
*monitorpage
;
44 if (channel
->offermsg
.monitor_allocated
) {
45 /* Each u32 represents 32 channels */
46 sync_set_bit(channel
->offermsg
.child_relid
& 31,
47 (unsigned long *) vmbus_connection
.send_int_page
+
48 (channel
->offermsg
.child_relid
>> 5));
50 monitorpage
= vmbus_connection
.monitor_pages
;
51 monitorpage
++; /* Get the child to parent monitor page */
53 sync_set_bit(channel
->monitor_bit
,
54 (unsigned long *)&monitorpage
->trigger_group
55 [channel
->monitor_grp
].pending
);
58 vmbus_set_event(channel
);
63 * vmbus_get_debug_info -Retrieve various channel debug info
65 void vmbus_get_debug_info(struct vmbus_channel
*channel
,
66 struct vmbus_channel_debug_info
*debuginfo
)
68 struct hv_monitor_page
*monitorpage
;
69 u8 monitor_group
= (u8
)channel
->offermsg
.monitorid
/ 32;
70 u8 monitor_offset
= (u8
)channel
->offermsg
.monitorid
% 32;
72 debuginfo
->relid
= channel
->offermsg
.child_relid
;
73 debuginfo
->state
= channel
->state
;
74 memcpy(&debuginfo
->interfacetype
,
75 &channel
->offermsg
.offer
.if_type
, sizeof(uuid_le
));
76 memcpy(&debuginfo
->interface_instance
,
77 &channel
->offermsg
.offer
.if_instance
,
80 monitorpage
= (struct hv_monitor_page
*)vmbus_connection
.monitor_pages
;
82 debuginfo
->monitorid
= channel
->offermsg
.monitorid
;
84 debuginfo
->servermonitor_pending
=
85 monitorpage
->trigger_group
[monitor_group
].pending
;
86 debuginfo
->servermonitor_latency
=
87 monitorpage
->latency
[monitor_group
][monitor_offset
];
88 debuginfo
->servermonitor_connectionid
=
89 monitorpage
->parameter
[monitor_group
]
90 [monitor_offset
].connectionid
.u
.id
;
94 debuginfo
->clientmonitor_pending
=
95 monitorpage
->trigger_group
[monitor_group
].pending
;
96 debuginfo
->clientmonitor_latency
=
97 monitorpage
->latency
[monitor_group
][monitor_offset
];
98 debuginfo
->clientmonitor_connectionid
=
99 monitorpage
->parameter
[monitor_group
]
100 [monitor_offset
].connectionid
.u
.id
;
102 hv_ringbuffer_get_debuginfo(&channel
->inbound
, &debuginfo
->inbound
);
103 hv_ringbuffer_get_debuginfo(&channel
->outbound
, &debuginfo
->outbound
);
107 * vmbus_open - Open the specified channel.
109 int vmbus_open(struct vmbus_channel
*newchannel
, u32 send_ringbuffer_size
,
110 u32 recv_ringbuffer_size
, void *userdata
, u32 userdatalen
,
111 void (*onchannelcallback
)(void *context
), void *context
)
113 struct vmbus_channel_open_channel
*open_msg
;
114 struct vmbus_channel_msginfo
*open_info
= NULL
;
119 spin_lock_irqsave(&newchannel
->sc_lock
, flags
);
120 if (newchannel
->state
== CHANNEL_OPEN_STATE
) {
121 newchannel
->state
= CHANNEL_OPENING_STATE
;
123 spin_unlock_irqrestore(&newchannel
->sc_lock
, flags
);
126 spin_unlock_irqrestore(&newchannel
->sc_lock
, flags
);
128 newchannel
->onchannel_callback
= onchannelcallback
;
129 newchannel
->channel_callback_context
= context
;
131 /* Allocate the ring buffer */
132 out
= (void *)__get_free_pages(GFP_KERNEL
|__GFP_ZERO
,
133 get_order(send_ringbuffer_size
+ recv_ringbuffer_size
));
139 in
= (void *)((unsigned long)out
+ send_ringbuffer_size
);
141 newchannel
->ringbuffer_pages
= out
;
142 newchannel
->ringbuffer_pagecount
= (send_ringbuffer_size
+
143 recv_ringbuffer_size
) >> PAGE_SHIFT
;
145 ret
= hv_ringbuffer_init(
146 &newchannel
->outbound
, out
, send_ringbuffer_size
);
153 ret
= hv_ringbuffer_init(
154 &newchannel
->inbound
, in
, recv_ringbuffer_size
);
161 /* Establish the gpadl for the ring buffer */
162 newchannel
->ringbuffer_gpadlhandle
= 0;
164 ret
= vmbus_establish_gpadl(newchannel
,
165 newchannel
->outbound
.ring_buffer
,
166 send_ringbuffer_size
+
167 recv_ringbuffer_size
,
168 &newchannel
->ringbuffer_gpadlhandle
);
175 /* Create and init the channel open message */
176 open_info
= kmalloc(sizeof(*open_info
) +
177 sizeof(struct vmbus_channel_open_channel
),
184 init_completion(&open_info
->waitevent
);
186 open_msg
= (struct vmbus_channel_open_channel
*)open_info
->msg
;
187 open_msg
->header
.msgtype
= CHANNELMSG_OPENCHANNEL
;
188 open_msg
->openid
= newchannel
->offermsg
.child_relid
;
189 open_msg
->child_relid
= newchannel
->offermsg
.child_relid
;
190 open_msg
->ringbuffer_gpadlhandle
= newchannel
->ringbuffer_gpadlhandle
;
191 open_msg
->downstream_ringbuffer_pageoffset
= send_ringbuffer_size
>>
193 open_msg
->target_vp
= newchannel
->target_vp
;
195 if (userdatalen
> MAX_USER_DEFINED_BYTES
) {
201 memcpy(open_msg
->userdata
, userdata
, userdatalen
);
203 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
204 list_add_tail(&open_info
->msglistentry
,
205 &vmbus_connection
.chn_msg_list
);
206 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
, flags
);
208 ret
= vmbus_post_msg(open_msg
,
209 sizeof(struct vmbus_channel_open_channel
));
214 t
= wait_for_completion_timeout(&open_info
->waitevent
, 5*HZ
);
221 if (open_info
->response
.open_result
.status
)
222 err
= open_info
->response
.open_result
.status
;
224 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
225 list_del(&open_info
->msglistentry
);
226 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
, flags
);
229 newchannel
->state
= CHANNEL_OPENED_STATE
;
235 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
236 list_del(&open_info
->msglistentry
);
237 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
, flags
);
240 free_pages((unsigned long)out
,
241 get_order(send_ringbuffer_size
+ recv_ringbuffer_size
));
245 EXPORT_SYMBOL_GPL(vmbus_open
);
248 * create_gpadl_header - Creates a gpadl for the specified buffer
250 static int create_gpadl_header(void *kbuffer
, u32 size
,
251 struct vmbus_channel_msginfo
**msginfo
,
256 unsigned long long pfn
;
257 struct vmbus_channel_gpadl_header
*gpadl_header
;
258 struct vmbus_channel_gpadl_body
*gpadl_body
;
259 struct vmbus_channel_msginfo
*msgheader
;
260 struct vmbus_channel_msginfo
*msgbody
= NULL
;
263 int pfnsum
, pfncount
, pfnleft
, pfncurr
, pfnsize
;
265 pagecount
= size
>> PAGE_SHIFT
;
266 pfn
= virt_to_phys(kbuffer
) >> PAGE_SHIFT
;
268 /* do we need a gpadl body msg */
269 pfnsize
= MAX_SIZE_CHANNEL_MESSAGE
-
270 sizeof(struct vmbus_channel_gpadl_header
) -
271 sizeof(struct gpa_range
);
272 pfncount
= pfnsize
/ sizeof(u64
);
274 if (pagecount
> pfncount
) {
275 /* we need a gpadl body */
276 /* fill in the header */
277 msgsize
= sizeof(struct vmbus_channel_msginfo
) +
278 sizeof(struct vmbus_channel_gpadl_header
) +
279 sizeof(struct gpa_range
) + pfncount
* sizeof(u64
);
280 msgheader
= kzalloc(msgsize
, GFP_KERNEL
);
284 INIT_LIST_HEAD(&msgheader
->submsglist
);
285 msgheader
->msgsize
= msgsize
;
287 gpadl_header
= (struct vmbus_channel_gpadl_header
*)
289 gpadl_header
->rangecount
= 1;
290 gpadl_header
->range_buflen
= sizeof(struct gpa_range
) +
291 pagecount
* sizeof(u64
);
292 gpadl_header
->range
[0].byte_offset
= 0;
293 gpadl_header
->range
[0].byte_count
= size
;
294 for (i
= 0; i
< pfncount
; i
++)
295 gpadl_header
->range
[0].pfn_array
[i
] = pfn
+i
;
296 *msginfo
= msgheader
;
300 pfnleft
= pagecount
- pfncount
;
302 /* how many pfns can we fit */
303 pfnsize
= MAX_SIZE_CHANNEL_MESSAGE
-
304 sizeof(struct vmbus_channel_gpadl_body
);
305 pfncount
= pfnsize
/ sizeof(u64
);
307 /* fill in the body */
309 if (pfnleft
> pfncount
)
314 msgsize
= sizeof(struct vmbus_channel_msginfo
) +
315 sizeof(struct vmbus_channel_gpadl_body
) +
316 pfncurr
* sizeof(u64
);
317 msgbody
= kzalloc(msgsize
, GFP_KERNEL
);
320 struct vmbus_channel_msginfo
*pos
= NULL
;
321 struct vmbus_channel_msginfo
*tmp
= NULL
;
323 * Free up all the allocated messages.
325 list_for_each_entry_safe(pos
, tmp
,
326 &msgheader
->submsglist
,
329 list_del(&pos
->msglistentry
);
336 msgbody
->msgsize
= msgsize
;
339 (struct vmbus_channel_gpadl_body
*)msgbody
->msg
;
342 * Gpadl is u32 and we are using a pointer which could
344 * This is governed by the guest/host protocol and
345 * so the hypervisor gurantees that this is ok.
347 for (i
= 0; i
< pfncurr
; i
++)
348 gpadl_body
->pfn
[i
] = pfn
+ pfnsum
+ i
;
350 /* add to msg header */
351 list_add_tail(&msgbody
->msglistentry
,
352 &msgheader
->submsglist
);
357 /* everything fits in a header */
358 msgsize
= sizeof(struct vmbus_channel_msginfo
) +
359 sizeof(struct vmbus_channel_gpadl_header
) +
360 sizeof(struct gpa_range
) + pagecount
* sizeof(u64
);
361 msgheader
= kzalloc(msgsize
, GFP_KERNEL
);
362 if (msgheader
== NULL
)
364 msgheader
->msgsize
= msgsize
;
366 gpadl_header
= (struct vmbus_channel_gpadl_header
*)
368 gpadl_header
->rangecount
= 1;
369 gpadl_header
->range_buflen
= sizeof(struct gpa_range
) +
370 pagecount
* sizeof(u64
);
371 gpadl_header
->range
[0].byte_offset
= 0;
372 gpadl_header
->range
[0].byte_count
= size
;
373 for (i
= 0; i
< pagecount
; i
++)
374 gpadl_header
->range
[0].pfn_array
[i
] = pfn
+i
;
376 *msginfo
= msgheader
;
388 * vmbus_establish_gpadl - Estabish a GPADL for the specified buffer
390 * @channel: a channel
391 * @kbuffer: from kmalloc
392 * @size: page-size multiple
393 * @gpadl_handle: some funky thing
395 int vmbus_establish_gpadl(struct vmbus_channel
*channel
, void *kbuffer
,
396 u32 size
, u32
*gpadl_handle
)
398 struct vmbus_channel_gpadl_header
*gpadlmsg
;
399 struct vmbus_channel_gpadl_body
*gpadl_body
;
400 struct vmbus_channel_msginfo
*msginfo
= NULL
;
401 struct vmbus_channel_msginfo
*submsginfo
;
403 struct list_head
*curr
;
404 u32 next_gpadl_handle
;
409 next_gpadl_handle
= atomic_read(&vmbus_connection
.next_gpadl_handle
);
410 atomic_inc(&vmbus_connection
.next_gpadl_handle
);
412 ret
= create_gpadl_header(kbuffer
, size
, &msginfo
, &msgcount
);
416 init_completion(&msginfo
->waitevent
);
418 gpadlmsg
= (struct vmbus_channel_gpadl_header
*)msginfo
->msg
;
419 gpadlmsg
->header
.msgtype
= CHANNELMSG_GPADL_HEADER
;
420 gpadlmsg
->child_relid
= channel
->offermsg
.child_relid
;
421 gpadlmsg
->gpadl
= next_gpadl_handle
;
424 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
425 list_add_tail(&msginfo
->msglistentry
,
426 &vmbus_connection
.chn_msg_list
);
428 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
, flags
);
430 ret
= vmbus_post_msg(gpadlmsg
, msginfo
->msgsize
-
436 list_for_each(curr
, &msginfo
->submsglist
) {
438 submsginfo
= (struct vmbus_channel_msginfo
*)curr
;
440 (struct vmbus_channel_gpadl_body
*)submsginfo
->msg
;
442 gpadl_body
->header
.msgtype
=
443 CHANNELMSG_GPADL_BODY
;
444 gpadl_body
->gpadl
= next_gpadl_handle
;
446 ret
= vmbus_post_msg(gpadl_body
,
447 submsginfo
->msgsize
-
448 sizeof(*submsginfo
));
454 t
= wait_for_completion_timeout(&msginfo
->waitevent
, 5*HZ
);
458 /* At this point, we received the gpadl created msg */
459 *gpadl_handle
= gpadlmsg
->gpadl
;
462 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
463 list_del(&msginfo
->msglistentry
);
464 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
, flags
);
469 EXPORT_SYMBOL_GPL(vmbus_establish_gpadl
);
472 * vmbus_teardown_gpadl -Teardown the specified GPADL handle
474 int vmbus_teardown_gpadl(struct vmbus_channel
*channel
, u32 gpadl_handle
)
476 struct vmbus_channel_gpadl_teardown
*msg
;
477 struct vmbus_channel_msginfo
*info
;
481 info
= kmalloc(sizeof(*info
) +
482 sizeof(struct vmbus_channel_gpadl_teardown
), GFP_KERNEL
);
486 init_completion(&info
->waitevent
);
488 msg
= (struct vmbus_channel_gpadl_teardown
*)info
->msg
;
490 msg
->header
.msgtype
= CHANNELMSG_GPADL_TEARDOWN
;
491 msg
->child_relid
= channel
->offermsg
.child_relid
;
492 msg
->gpadl
= gpadl_handle
;
494 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
495 list_add_tail(&info
->msglistentry
,
496 &vmbus_connection
.chn_msg_list
);
497 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
, flags
);
498 ret
= vmbus_post_msg(msg
,
499 sizeof(struct vmbus_channel_gpadl_teardown
));
502 t
= wait_for_completion_timeout(&info
->waitevent
, 5*HZ
);
505 /* Received a torndown response */
506 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
507 list_del(&info
->msglistentry
);
508 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
, flags
);
513 EXPORT_SYMBOL_GPL(vmbus_teardown_gpadl
);
515 static void vmbus_close_internal(struct vmbus_channel
*channel
)
517 struct vmbus_channel_close_channel
*msg
;
521 channel
->state
= CHANNEL_OPEN_STATE
;
522 channel
->sc_creation_callback
= NULL
;
523 /* Stop callback and cancel the timer asap */
524 spin_lock_irqsave(&channel
->inbound_lock
, flags
);
525 channel
->onchannel_callback
= NULL
;
526 spin_unlock_irqrestore(&channel
->inbound_lock
, flags
);
528 /* Send a closing message */
530 msg
= &channel
->close_msg
.msg
;
532 msg
->header
.msgtype
= CHANNELMSG_CLOSECHANNEL
;
533 msg
->child_relid
= channel
->offermsg
.child_relid
;
535 ret
= vmbus_post_msg(msg
, sizeof(struct vmbus_channel_close_channel
));
538 /* Tear down the gpadl for the channel's ring buffer */
539 if (channel
->ringbuffer_gpadlhandle
)
540 vmbus_teardown_gpadl(channel
,
541 channel
->ringbuffer_gpadlhandle
);
543 /* Cleanup the ring buffers for this channel */
544 hv_ringbuffer_cleanup(&channel
->outbound
);
545 hv_ringbuffer_cleanup(&channel
->inbound
);
547 free_pages((unsigned long)channel
->ringbuffer_pages
,
548 get_order(channel
->ringbuffer_pagecount
* PAGE_SIZE
));
554 * vmbus_close - Close the specified channel
556 void vmbus_close(struct vmbus_channel
*channel
)
558 struct list_head
*cur
, *tmp
;
559 struct vmbus_channel
*cur_channel
;
561 if (channel
->primary_channel
!= NULL
) {
563 * We will only close sub-channels when
564 * the primary is closed.
569 * Close all the sub-channels first and then close the
572 list_for_each_safe(cur
, tmp
, &channel
->sc_list
) {
573 cur_channel
= list_entry(cur
, struct vmbus_channel
, sc_list
);
574 if (cur_channel
->state
!= CHANNEL_OPENED_STATE
)
576 vmbus_close_internal(cur_channel
);
579 * Now close the primary.
581 vmbus_close_internal(channel
);
583 EXPORT_SYMBOL_GPL(vmbus_close
);
586 * vmbus_sendpacket() - Send the specified buffer on the given channel
587 * @channel: Pointer to vmbus_channel structure.
588 * @buffer: Pointer to the buffer you want to receive the data into.
589 * @bufferlen: Maximum size of what the the buffer will hold
590 * @requestid: Identifier of the request
591 * @type: Type of packet that is being send e.g. negotiate, time
594 * Sends data in @buffer directly to hyper-v via the vmbus
595 * This will send the data unparsed to hyper-v.
597 * Mainly used by Hyper-V drivers.
599 int vmbus_sendpacket(struct vmbus_channel
*channel
, const void *buffer
,
600 u32 bufferlen
, u64 requestid
,
601 enum vmbus_packet_type type
, u32 flags
)
603 struct vmpacket_descriptor desc
;
604 u32 packetlen
= sizeof(struct vmpacket_descriptor
) + bufferlen
;
605 u32 packetlen_aligned
= ALIGN(packetlen
, sizeof(u64
));
606 struct scatterlist bufferlist
[3];
607 u64 aligned_data
= 0;
612 /* Setup the descriptor */
613 desc
.type
= type
; /* VmbusPacketTypeDataInBand; */
614 desc
.flags
= flags
; /* VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED; */
615 /* in 8-bytes granularity */
616 desc
.offset8
= sizeof(struct vmpacket_descriptor
) >> 3;
617 desc
.len8
= (u16
)(packetlen_aligned
>> 3);
618 desc
.trans_id
= requestid
;
620 sg_init_table(bufferlist
, 3);
621 sg_set_buf(&bufferlist
[0], &desc
, sizeof(struct vmpacket_descriptor
));
622 sg_set_buf(&bufferlist
[1], buffer
, bufferlen
);
623 sg_set_buf(&bufferlist
[2], &aligned_data
,
624 packetlen_aligned
- packetlen
);
626 ret
= hv_ringbuffer_write(&channel
->outbound
, bufferlist
, 3, &signal
);
628 if (ret
== 0 && signal
)
629 vmbus_setevent(channel
);
633 EXPORT_SYMBOL(vmbus_sendpacket
);
636 * vmbus_sendpacket_pagebuffer - Send a range of single-page buffer
637 * packets using a GPADL Direct packet type.
639 int vmbus_sendpacket_pagebuffer(struct vmbus_channel
*channel
,
640 struct hv_page_buffer pagebuffers
[],
641 u32 pagecount
, void *buffer
, u32 bufferlen
,
646 struct vmbus_channel_packet_page_buffer desc
;
649 u32 packetlen_aligned
;
650 struct scatterlist bufferlist
[3];
651 u64 aligned_data
= 0;
654 if (pagecount
> MAX_PAGE_BUFFER_COUNT
)
659 * Adjust the size down since vmbus_channel_packet_page_buffer is the
660 * largest size we support
662 descsize
= sizeof(struct vmbus_channel_packet_page_buffer
) -
663 ((MAX_PAGE_BUFFER_COUNT
- pagecount
) *
664 sizeof(struct hv_page_buffer
));
665 packetlen
= descsize
+ bufferlen
;
666 packetlen_aligned
= ALIGN(packetlen
, sizeof(u64
));
668 /* Setup the descriptor */
669 desc
.type
= VM_PKT_DATA_USING_GPA_DIRECT
;
670 desc
.flags
= VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED
;
671 desc
.dataoffset8
= descsize
>> 3; /* in 8-bytes grandularity */
672 desc
.length8
= (u16
)(packetlen_aligned
>> 3);
673 desc
.transactionid
= requestid
;
674 desc
.rangecount
= pagecount
;
676 for (i
= 0; i
< pagecount
; i
++) {
677 desc
.range
[i
].len
= pagebuffers
[i
].len
;
678 desc
.range
[i
].offset
= pagebuffers
[i
].offset
;
679 desc
.range
[i
].pfn
= pagebuffers
[i
].pfn
;
682 sg_init_table(bufferlist
, 3);
683 sg_set_buf(&bufferlist
[0], &desc
, descsize
);
684 sg_set_buf(&bufferlist
[1], buffer
, bufferlen
);
685 sg_set_buf(&bufferlist
[2], &aligned_data
,
686 packetlen_aligned
- packetlen
);
688 ret
= hv_ringbuffer_write(&channel
->outbound
, bufferlist
, 3, &signal
);
690 if (ret
== 0 && signal
)
691 vmbus_setevent(channel
);
695 EXPORT_SYMBOL_GPL(vmbus_sendpacket_pagebuffer
);
698 * vmbus_sendpacket_multipagebuffer - Send a multi-page buffer packet
699 * using a GPADL Direct packet type.
701 int vmbus_sendpacket_multipagebuffer(struct vmbus_channel
*channel
,
702 struct hv_multipage_buffer
*multi_pagebuffer
,
703 void *buffer
, u32 bufferlen
, u64 requestid
)
706 struct vmbus_channel_packet_multipage_buffer desc
;
709 u32 packetlen_aligned
;
710 struct scatterlist bufferlist
[3];
711 u64 aligned_data
= 0;
713 u32 pfncount
= NUM_PAGES_SPANNED(multi_pagebuffer
->offset
,
714 multi_pagebuffer
->len
);
717 if ((pfncount
< 0) || (pfncount
> MAX_MULTIPAGE_BUFFER_COUNT
))
721 * Adjust the size down since vmbus_channel_packet_multipage_buffer is
722 * the largest size we support
724 descsize
= sizeof(struct vmbus_channel_packet_multipage_buffer
) -
725 ((MAX_MULTIPAGE_BUFFER_COUNT
- pfncount
) *
727 packetlen
= descsize
+ bufferlen
;
728 packetlen_aligned
= ALIGN(packetlen
, sizeof(u64
));
731 /* Setup the descriptor */
732 desc
.type
= VM_PKT_DATA_USING_GPA_DIRECT
;
733 desc
.flags
= VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED
;
734 desc
.dataoffset8
= descsize
>> 3; /* in 8-bytes grandularity */
735 desc
.length8
= (u16
)(packetlen_aligned
>> 3);
736 desc
.transactionid
= requestid
;
739 desc
.range
.len
= multi_pagebuffer
->len
;
740 desc
.range
.offset
= multi_pagebuffer
->offset
;
742 memcpy(desc
.range
.pfn_array
, multi_pagebuffer
->pfn_array
,
743 pfncount
* sizeof(u64
));
745 sg_init_table(bufferlist
, 3);
746 sg_set_buf(&bufferlist
[0], &desc
, descsize
);
747 sg_set_buf(&bufferlist
[1], buffer
, bufferlen
);
748 sg_set_buf(&bufferlist
[2], &aligned_data
,
749 packetlen_aligned
- packetlen
);
751 ret
= hv_ringbuffer_write(&channel
->outbound
, bufferlist
, 3, &signal
);
753 if (ret
== 0 && signal
)
754 vmbus_setevent(channel
);
758 EXPORT_SYMBOL_GPL(vmbus_sendpacket_multipagebuffer
);
761 * vmbus_recvpacket() - Retrieve the user packet on the specified channel
762 * @channel: Pointer to vmbus_channel structure.
763 * @buffer: Pointer to the buffer you want to receive the data into.
764 * @bufferlen: Maximum size of what the the buffer will hold
765 * @buffer_actual_len: The actual size of the data after it was received
766 * @requestid: Identifier of the request
768 * Receives directly from the hyper-v vmbus and puts the data it received
769 * into Buffer. This will receive the data unparsed from hyper-v.
771 * Mainly used by Hyper-V drivers.
773 int vmbus_recvpacket(struct vmbus_channel
*channel
, void *buffer
,
774 u32 bufferlen
, u32
*buffer_actual_len
, u64
*requestid
)
776 struct vmpacket_descriptor desc
;
782 *buffer_actual_len
= 0;
786 ret
= hv_ringbuffer_peek(&channel
->inbound
, &desc
,
787 sizeof(struct vmpacket_descriptor
));
791 packetlen
= desc
.len8
<< 3;
792 userlen
= packetlen
- (desc
.offset8
<< 3);
794 *buffer_actual_len
= userlen
;
796 if (userlen
> bufferlen
) {
798 pr_err("Buffer too small - got %d needs %d\n",
803 *requestid
= desc
.trans_id
;
805 /* Copy over the packet to the user buffer */
806 ret
= hv_ringbuffer_read(&channel
->inbound
, buffer
, userlen
,
807 (desc
.offset8
<< 3), &signal
);
810 vmbus_setevent(channel
);
814 EXPORT_SYMBOL(vmbus_recvpacket
);
817 * vmbus_recvpacket_raw - Retrieve the raw packet on the specified channel
819 int vmbus_recvpacket_raw(struct vmbus_channel
*channel
, void *buffer
,
820 u32 bufferlen
, u32
*buffer_actual_len
,
823 struct vmpacket_descriptor desc
;
828 *buffer_actual_len
= 0;
832 ret
= hv_ringbuffer_peek(&channel
->inbound
, &desc
,
833 sizeof(struct vmpacket_descriptor
));
838 packetlen
= desc
.len8
<< 3;
840 *buffer_actual_len
= packetlen
;
842 if (packetlen
> bufferlen
) {
843 pr_err("Buffer too small - needed %d bytes but "
844 "got space for only %d bytes\n",
845 packetlen
, bufferlen
);
849 *requestid
= desc
.trans_id
;
851 /* Copy over the entire packet to the user buffer */
852 ret
= hv_ringbuffer_read(&channel
->inbound
, buffer
, packetlen
, 0,
856 vmbus_setevent(channel
);
860 EXPORT_SYMBOL_GPL(vmbus_recvpacket_raw
);