vmbus_chan.c revision 296289
1/*-
2 * Copyright (c) 2009-2012 Microsoft Corp.
3 * Copyright (c) 2012 NetApp Inc.
4 * Copyright (c) 2012 Citrix Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice unmodified, this list of conditions, and the following
12 *    disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the distribution.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: head/sys/dev/hyperv/vmbus/hv_channel.c 296289 2016-03-02 01:26:05Z sephe $");
31
32#include <sys/param.h>
33#include <sys/kernel.h>
34#include <sys/malloc.h>
35#include <sys/systm.h>
36#include <sys/mbuf.h>
37#include <sys/lock.h>
38#include <sys/mutex.h>
39#include <sys/sysctl.h>
40#include <machine/bus.h>
41#include <vm/vm.h>
42#include <vm/vm_param.h>
43#include <vm/pmap.h>
44
45#include "hv_vmbus_priv.h"
46
47static int 	vmbus_channel_create_gpadl_header(
48			/* must be phys and virt contiguous*/
49			void*				contig_buffer,
50			/* page-size multiple */
51			uint32_t 			size,
52			hv_vmbus_channel_msg_info**	msg_info,
53			uint32_t*			message_count);
54
55static void 	vmbus_channel_set_event(hv_vmbus_channel* channel);
56static void	VmbusProcessChannelEvent(void* channel, int pending);
57
58/**
59 *  @brief Trigger an event notification on the specified channel
60 */
61static void
62vmbus_channel_set_event(hv_vmbus_channel *channel)
63{
64	hv_vmbus_monitor_page *monitor_page;
65
66	if (channel->offer_msg.monitor_allocated) {
67		/* Each uint32_t represents 32 channels */
68		synch_set_bit((channel->offer_msg.child_rel_id & 31),
69			((uint32_t *)hv_vmbus_g_connection.send_interrupt_page
70				+ ((channel->offer_msg.child_rel_id >> 5))));
71
72		monitor_page = (hv_vmbus_monitor_page *)
73			hv_vmbus_g_connection.monitor_page_2;
74
75		synch_set_bit(channel->monitor_bit,
76			(uint32_t *)&monitor_page->
77				trigger_group[channel->monitor_group].u.pending);
78	} else {
79		hv_vmbus_set_event(channel);
80	}
81
82}
83
84static int
85vmbus_channel_sysctl_monalloc(SYSCTL_HANDLER_ARGS)
86{
87	struct hv_vmbus_channel *chan = arg1;
88	int alloc = 0;
89
90	if (chan->offer_msg.monitor_allocated)
91		alloc = 1;
92	return sysctl_handle_int(oidp, &alloc, 0, req);
93}
94
95static void
96hv_vmbus_channel_stat(hv_vmbus_channel* channel)
97{
98	device_t dev;
99	struct sysctl_oid *devch_sysctl;
100	struct sysctl_oid *devch_id_sysctl, *devch_sub_sysctl;
101	struct sysctl_oid *devch_id_in_sysctl, *devch_id_out_sysctl;
102	struct sysctl_ctx_list *ctx;
103	uint32_t ch_id;
104	uint16_t sub_ch_id;
105	char name[16];
106
107	hv_vmbus_channel* primary_ch = channel->primary_channel;
108
109	if (primary_ch == NULL) {
110		dev = channel->device->device;
111		ch_id = channel->offer_msg.child_rel_id;
112	} else {
113		dev = primary_ch->device->device;
114		ch_id = primary_ch->offer_msg.child_rel_id;
115		sub_ch_id = channel->offer_msg.offer.sub_channel_index;
116	}
117	ctx = device_get_sysctl_ctx(dev);
118	/* This creates dev.DEVNAME.DEVUNIT.channel tree */
119	devch_sysctl = SYSCTL_ADD_NODE(ctx,
120		    SYSCTL_CHILDREN(device_get_sysctl_tree(dev)),
121		    OID_AUTO, "channel", CTLFLAG_RD, 0, "");
122	/* This creates dev.DEVNAME.DEVUNIT.channel.CHANID tree */
123	snprintf(name, sizeof(name), "%d", ch_id);
124	devch_id_sysctl = SYSCTL_ADD_NODE(ctx,
125	    	    SYSCTL_CHILDREN(devch_sysctl),
126	    	    OID_AUTO, name, CTLFLAG_RD, 0, "");
127
128	if (primary_ch != NULL) {
129		devch_sub_sysctl = SYSCTL_ADD_NODE(ctx,
130			SYSCTL_CHILDREN(devch_id_sysctl),
131			OID_AUTO, "sub", CTLFLAG_RD, 0, "");
132		snprintf(name, sizeof(name), "%d", sub_ch_id);
133		devch_id_sysctl = SYSCTL_ADD_NODE(ctx,
134			SYSCTL_CHILDREN(devch_sub_sysctl),
135			OID_AUTO, name, CTLFLAG_RD, 0, "");
136
137		SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(devch_id_sysctl),
138		    OID_AUTO, "chanid", CTLFLAG_RD,
139		    &channel->offer_msg.child_rel_id, 0, "channel id");
140	}
141	SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(devch_id_sysctl), OID_AUTO,
142	    "cpu", CTLFLAG_RD, &channel->target_cpu, 0, "owner CPU id");
143	SYSCTL_ADD_PROC(ctx, SYSCTL_CHILDREN(devch_id_sysctl), OID_AUTO,
144	    "monitor_allocated", CTLTYPE_INT | CTLFLAG_RD, channel, 0,
145	    vmbus_channel_sysctl_monalloc, "I",
146	    "is monitor allocated to this channel");
147
148	devch_id_in_sysctl = SYSCTL_ADD_NODE(ctx,
149                    SYSCTL_CHILDREN(devch_id_sysctl),
150                    OID_AUTO,
151		    "in",
152		    CTLFLAG_RD, 0, "");
153	devch_id_out_sysctl = SYSCTL_ADD_NODE(ctx,
154                    SYSCTL_CHILDREN(devch_id_sysctl),
155                    OID_AUTO,
156		    "out",
157		    CTLFLAG_RD, 0, "");
158	hv_ring_buffer_stat(ctx,
159		SYSCTL_CHILDREN(devch_id_in_sysctl),
160		&(channel->inbound),
161		"inbound ring buffer stats");
162	hv_ring_buffer_stat(ctx,
163		SYSCTL_CHILDREN(devch_id_out_sysctl),
164		&(channel->outbound),
165		"outbound ring buffer stats");
166}
167/**
168 * @brief Open the specified channel
169 */
170int
171hv_vmbus_channel_open(
172	hv_vmbus_channel*		new_channel,
173	uint32_t			send_ring_buffer_size,
174	uint32_t			recv_ring_buffer_size,
175	void*				user_data,
176	uint32_t			user_data_len,
177	hv_vmbus_pfn_channel_callback	pfn_on_channel_callback,
178	void* 				context)
179{
180
181	int ret = 0;
182	void *in, *out;
183	hv_vmbus_channel_open_channel*	open_msg;
184	hv_vmbus_channel_msg_info* 	open_info;
185
186	mtx_lock(&new_channel->sc_lock);
187	if (new_channel->state == HV_CHANNEL_OPEN_STATE) {
188	    new_channel->state = HV_CHANNEL_OPENING_STATE;
189	} else {
190	    mtx_unlock(&new_channel->sc_lock);
191	    if(bootverbose)
192		printf("VMBUS: Trying to open channel <%p> which in "
193		    "%d state.\n", new_channel, new_channel->state);
194	    return (EINVAL);
195	}
196	mtx_unlock(&new_channel->sc_lock);
197
198	new_channel->on_channel_callback = pfn_on_channel_callback;
199	new_channel->channel_callback_context = context;
200
201	new_channel->rxq = hv_vmbus_g_context.hv_event_queue[new_channel->target_cpu];
202	TASK_INIT(&new_channel->channel_task, 0, VmbusProcessChannelEvent, new_channel);
203
204	/* Allocate the ring buffer */
205	out = contigmalloc((send_ring_buffer_size + recv_ring_buffer_size),
206	    M_DEVBUF, M_ZERO, 0UL, BUS_SPACE_MAXADDR, PAGE_SIZE, 0);
207	KASSERT(out != NULL,
208	    ("Error VMBUS: contigmalloc failed to allocate Ring Buffer!"));
209	if (out == NULL)
210		return (ENOMEM);
211
212	in = ((uint8_t *) out + send_ring_buffer_size);
213
214	new_channel->ring_buffer_pages = out;
215	new_channel->ring_buffer_page_count = (send_ring_buffer_size +
216	    recv_ring_buffer_size) >> PAGE_SHIFT;
217	new_channel->ring_buffer_size = send_ring_buffer_size +
218	    recv_ring_buffer_size;
219
220	hv_vmbus_ring_buffer_init(
221		&new_channel->outbound,
222		out,
223		send_ring_buffer_size);
224
225	hv_vmbus_ring_buffer_init(
226		&new_channel->inbound,
227		in,
228		recv_ring_buffer_size);
229
230	/* setup statistic tracking for this channel */
231	hv_vmbus_channel_stat(new_channel);
232
233	/**
234	 * Establish the gpadl for the ring buffer
235	 */
236	new_channel->ring_buffer_gpadl_handle = 0;
237
238	ret = hv_vmbus_channel_establish_gpadl(new_channel,
239		new_channel->outbound.ring_buffer,
240		send_ring_buffer_size + recv_ring_buffer_size,
241		&new_channel->ring_buffer_gpadl_handle);
242
243	/**
244	 * Create and init the channel open message
245	 */
246	open_info = (hv_vmbus_channel_msg_info*) malloc(
247		sizeof(hv_vmbus_channel_msg_info) +
248			sizeof(hv_vmbus_channel_open_channel),
249		M_DEVBUF,
250		M_NOWAIT);
251	KASSERT(open_info != NULL,
252	    ("Error VMBUS: malloc failed to allocate Open Channel message!"));
253
254	if (open_info == NULL)
255		return (ENOMEM);
256
257	sema_init(&open_info->wait_sema, 0, "Open Info Sema");
258
259	open_msg = (hv_vmbus_channel_open_channel*) open_info->msg;
260	open_msg->header.message_type = HV_CHANNEL_MESSAGE_OPEN_CHANNEL;
261	open_msg->open_id = new_channel->offer_msg.child_rel_id;
262	open_msg->child_rel_id = new_channel->offer_msg.child_rel_id;
263	open_msg->ring_buffer_gpadl_handle =
264		new_channel->ring_buffer_gpadl_handle;
265	open_msg->downstream_ring_buffer_page_offset = send_ring_buffer_size
266		>> PAGE_SHIFT;
267	open_msg->target_vcpu = new_channel->target_vcpu;
268
269	if (user_data_len)
270		memcpy(open_msg->user_data, user_data, user_data_len);
271
272	mtx_lock_spin(&hv_vmbus_g_connection.channel_msg_lock);
273	TAILQ_INSERT_TAIL(
274		&hv_vmbus_g_connection.channel_msg_anchor,
275		open_info,
276		msg_list_entry);
277	mtx_unlock_spin(&hv_vmbus_g_connection.channel_msg_lock);
278
279	ret = hv_vmbus_post_message(
280		open_msg, sizeof(hv_vmbus_channel_open_channel));
281
282	if (ret != 0)
283	    goto cleanup;
284
285	ret = sema_timedwait(&open_info->wait_sema, 5 * hz); /* KYS 5 seconds */
286
287	if (ret) {
288	    if(bootverbose)
289		printf("VMBUS: channel <%p> open timeout.\n", new_channel);
290	    goto cleanup;
291	}
292
293	if (open_info->response.open_result.status == 0) {
294	    new_channel->state = HV_CHANNEL_OPENED_STATE;
295	    if(bootverbose)
296		printf("VMBUS: channel <%p> open success.\n", new_channel);
297	} else {
298	    if(bootverbose)
299		printf("Error VMBUS: channel <%p> open failed - %d!\n",
300			new_channel, open_info->response.open_result.status);
301	}
302
303	cleanup:
304	mtx_lock_spin(&hv_vmbus_g_connection.channel_msg_lock);
305	TAILQ_REMOVE(
306		&hv_vmbus_g_connection.channel_msg_anchor,
307		open_info,
308		msg_list_entry);
309	mtx_unlock_spin(&hv_vmbus_g_connection.channel_msg_lock);
310	sema_destroy(&open_info->wait_sema);
311	free(open_info, M_DEVBUF);
312
313	return (ret);
314}
315
316/**
317 * @brief Create a gpadl for the specified buffer
318 */
319static int
320vmbus_channel_create_gpadl_header(
321	void*				contig_buffer,
322	uint32_t			size,	/* page-size multiple */
323	hv_vmbus_channel_msg_info**	msg_info,
324	uint32_t*			message_count)
325{
326	int				i;
327	int				page_count;
328	unsigned long long 		pfn;
329	uint32_t			msg_size;
330	hv_vmbus_channel_gpadl_header*	gpa_header;
331	hv_vmbus_channel_gpadl_body*	gpadl_body;
332	hv_vmbus_channel_msg_info*	msg_header;
333	hv_vmbus_channel_msg_info*	msg_body;
334
335	int pfnSum, pfnCount, pfnLeft, pfnCurr, pfnSize;
336
337	page_count = size >> PAGE_SHIFT;
338	pfn = hv_get_phys_addr(contig_buffer) >> PAGE_SHIFT;
339
340	/*do we need a gpadl body msg */
341	pfnSize = HV_MAX_SIZE_CHANNEL_MESSAGE
342	    - sizeof(hv_vmbus_channel_gpadl_header)
343	    - sizeof(hv_gpa_range);
344	pfnCount = pfnSize / sizeof(uint64_t);
345
346	if (page_count > pfnCount) { /* if(we need a gpadl body)	*/
347	    /* fill in the header		*/
348	    msg_size = sizeof(hv_vmbus_channel_msg_info)
349		+ sizeof(hv_vmbus_channel_gpadl_header)
350		+ sizeof(hv_gpa_range)
351		+ pfnCount * sizeof(uint64_t);
352	    msg_header = malloc(msg_size, M_DEVBUF, M_NOWAIT | M_ZERO);
353	    KASSERT(
354		msg_header != NULL,
355		("Error VMBUS: malloc failed to allocate Gpadl Message!"));
356	    if (msg_header == NULL)
357		return (ENOMEM);
358
359	    TAILQ_INIT(&msg_header->sub_msg_list_anchor);
360	    msg_header->message_size = msg_size;
361
362	    gpa_header = (hv_vmbus_channel_gpadl_header*) msg_header->msg;
363	    gpa_header->range_count = 1;
364	    gpa_header->range_buf_len = sizeof(hv_gpa_range)
365		+ page_count * sizeof(uint64_t);
366	    gpa_header->range[0].byte_offset = 0;
367	    gpa_header->range[0].byte_count = size;
368	    for (i = 0; i < pfnCount; i++) {
369		gpa_header->range[0].pfn_array[i] = pfn + i;
370	    }
371	    *msg_info = msg_header;
372	    *message_count = 1;
373
374	    pfnSum = pfnCount;
375	    pfnLeft = page_count - pfnCount;
376
377	    /*
378	     *  figure out how many pfns we can fit
379	     */
380	    pfnSize = HV_MAX_SIZE_CHANNEL_MESSAGE
381		- sizeof(hv_vmbus_channel_gpadl_body);
382	    pfnCount = pfnSize / sizeof(uint64_t);
383
384	    /*
385	     * fill in the body
386	     */
387	    while (pfnLeft) {
388		if (pfnLeft > pfnCount) {
389		    pfnCurr = pfnCount;
390		} else {
391		    pfnCurr = pfnLeft;
392		}
393
394		msg_size = sizeof(hv_vmbus_channel_msg_info) +
395		    sizeof(hv_vmbus_channel_gpadl_body) +
396		    pfnCurr * sizeof(uint64_t);
397		msg_body = malloc(msg_size, M_DEVBUF, M_NOWAIT | M_ZERO);
398		KASSERT(
399		    msg_body != NULL,
400		    ("Error VMBUS: malloc failed to allocate Gpadl msg_body!"));
401		if (msg_body == NULL)
402		    return (ENOMEM);
403
404		msg_body->message_size = msg_size;
405		(*message_count)++;
406		gpadl_body =
407		    (hv_vmbus_channel_gpadl_body*) msg_body->msg;
408		/*
409		 * gpadl_body->gpadl = kbuffer;
410		 */
411		for (i = 0; i < pfnCurr; i++) {
412		    gpadl_body->pfn[i] = pfn + pfnSum + i;
413		}
414
415		TAILQ_INSERT_TAIL(
416		    &msg_header->sub_msg_list_anchor,
417		    msg_body,
418		    msg_list_entry);
419		pfnSum += pfnCurr;
420		pfnLeft -= pfnCurr;
421	    }
422	} else { /* else everything fits in a header */
423
424	    msg_size = sizeof(hv_vmbus_channel_msg_info) +
425		sizeof(hv_vmbus_channel_gpadl_header) +
426		sizeof(hv_gpa_range) +
427		page_count * sizeof(uint64_t);
428	    msg_header = malloc(msg_size, M_DEVBUF, M_NOWAIT | M_ZERO);
429	    KASSERT(
430		msg_header != NULL,
431		("Error VMBUS: malloc failed to allocate Gpadl Message!"));
432	    if (msg_header == NULL)
433		return (ENOMEM);
434
435	    msg_header->message_size = msg_size;
436
437	    gpa_header = (hv_vmbus_channel_gpadl_header*) msg_header->msg;
438	    gpa_header->range_count = 1;
439	    gpa_header->range_buf_len = sizeof(hv_gpa_range) +
440		page_count * sizeof(uint64_t);
441	    gpa_header->range[0].byte_offset = 0;
442	    gpa_header->range[0].byte_count = size;
443	    for (i = 0; i < page_count; i++) {
444		gpa_header->range[0].pfn_array[i] = pfn + i;
445	    }
446
447	    *msg_info = msg_header;
448	    *message_count = 1;
449	}
450
451	return (0);
452}
453
454/**
455 * @brief Establish a GPADL for the specified buffer
456 */
457int
458hv_vmbus_channel_establish_gpadl(
459	hv_vmbus_channel*	channel,
460	void*			contig_buffer,
461	uint32_t		size, /* page-size multiple */
462	uint32_t*		gpadl_handle)
463
464{
465	int ret = 0;
466	hv_vmbus_channel_gpadl_header*	gpadl_msg;
467	hv_vmbus_channel_gpadl_body*	gpadl_body;
468	hv_vmbus_channel_msg_info*	msg_info;
469	hv_vmbus_channel_msg_info*	sub_msg_info;
470	uint32_t			msg_count;
471	hv_vmbus_channel_msg_info*	curr;
472	uint32_t			next_gpadl_handle;
473
474	next_gpadl_handle = atomic_fetchadd_int(
475	    &hv_vmbus_g_connection.next_gpadl_handle, 1);
476
477	ret = vmbus_channel_create_gpadl_header(
478		contig_buffer, size, &msg_info, &msg_count);
479
480	if(ret != 0) {
481		/*
482		 * XXX
483		 * We can _not_ even revert the above incremental,
484		 * if multiple GPADL establishments are running
485		 * parallelly, decrement the global next_gpadl_handle
486		 * is calling for _big_ trouble.  A better solution
487		 * is to have a 0-based GPADL id bitmap ...
488		 */
489		return ret;
490	}
491
492	sema_init(&msg_info->wait_sema, 0, "Open Info Sema");
493	gpadl_msg = (hv_vmbus_channel_gpadl_header*) msg_info->msg;
494	gpadl_msg->header.message_type = HV_CHANNEL_MESSAGEL_GPADL_HEADER;
495	gpadl_msg->child_rel_id = channel->offer_msg.child_rel_id;
496	gpadl_msg->gpadl = next_gpadl_handle;
497
498	mtx_lock_spin(&hv_vmbus_g_connection.channel_msg_lock);
499	TAILQ_INSERT_TAIL(
500		&hv_vmbus_g_connection.channel_msg_anchor,
501		msg_info,
502		msg_list_entry);
503
504	mtx_unlock_spin(&hv_vmbus_g_connection.channel_msg_lock);
505
506	ret = hv_vmbus_post_message(
507		gpadl_msg,
508		msg_info->message_size -
509		    (uint32_t) sizeof(hv_vmbus_channel_msg_info));
510
511	if (ret != 0)
512	    goto cleanup;
513
514	if (msg_count > 1) {
515	    TAILQ_FOREACH(curr,
516		    &msg_info->sub_msg_list_anchor, msg_list_entry) {
517		sub_msg_info = curr;
518		gpadl_body =
519		    (hv_vmbus_channel_gpadl_body*) sub_msg_info->msg;
520
521		gpadl_body->header.message_type =
522		    HV_CHANNEL_MESSAGE_GPADL_BODY;
523		gpadl_body->gpadl = next_gpadl_handle;
524
525		ret = hv_vmbus_post_message(
526			gpadl_body,
527			sub_msg_info->message_size
528			    - (uint32_t) sizeof(hv_vmbus_channel_msg_info));
529		 /* if (the post message failed) give up and clean up */
530		if(ret != 0)
531		    goto cleanup;
532	    }
533	}
534
535	ret = sema_timedwait(&msg_info->wait_sema, 5 * hz); /* KYS 5 seconds*/
536	if (ret != 0)
537	    goto cleanup;
538
539	*gpadl_handle = gpadl_msg->gpadl;
540
541cleanup:
542
543	mtx_lock_spin(&hv_vmbus_g_connection.channel_msg_lock);
544	TAILQ_REMOVE(&hv_vmbus_g_connection.channel_msg_anchor,
545		msg_info, msg_list_entry);
546	mtx_unlock_spin(&hv_vmbus_g_connection.channel_msg_lock);
547
548	sema_destroy(&msg_info->wait_sema);
549	free(msg_info, M_DEVBUF);
550
551	return (ret);
552}
553
554/**
555 * @brief Teardown the specified GPADL handle
556 */
557int
558hv_vmbus_channel_teardown_gpdal(
559	hv_vmbus_channel*	channel,
560	uint32_t		gpadl_handle)
561{
562	int					ret = 0;
563	hv_vmbus_channel_gpadl_teardown*	msg;
564	hv_vmbus_channel_msg_info*		info;
565
566	info = (hv_vmbus_channel_msg_info *)
567		malloc(	sizeof(hv_vmbus_channel_msg_info) +
568			sizeof(hv_vmbus_channel_gpadl_teardown),
569				M_DEVBUF, M_NOWAIT);
570	KASSERT(info != NULL,
571	    ("Error VMBUS: malloc failed to allocate Gpadl Teardown Msg!"));
572	if (info == NULL) {
573	    ret = ENOMEM;
574	    goto cleanup;
575	}
576
577	sema_init(&info->wait_sema, 0, "Open Info Sema");
578
579	msg = (hv_vmbus_channel_gpadl_teardown*) info->msg;
580
581	msg->header.message_type = HV_CHANNEL_MESSAGE_GPADL_TEARDOWN;
582	msg->child_rel_id = channel->offer_msg.child_rel_id;
583	msg->gpadl = gpadl_handle;
584
585	mtx_lock_spin(&hv_vmbus_g_connection.channel_msg_lock);
586	TAILQ_INSERT_TAIL(&hv_vmbus_g_connection.channel_msg_anchor,
587			info, msg_list_entry);
588	mtx_unlock_spin(&hv_vmbus_g_connection.channel_msg_lock);
589
590	ret = hv_vmbus_post_message(msg,
591			sizeof(hv_vmbus_channel_gpadl_teardown));
592	if (ret != 0)
593	    goto cleanup;
594
595	ret = sema_timedwait(&info->wait_sema, 5 * hz); /* KYS 5 seconds */
596
597cleanup:
598	/*
599	 * Received a torndown response
600	 */
601	mtx_lock_spin(&hv_vmbus_g_connection.channel_msg_lock);
602	TAILQ_REMOVE(&hv_vmbus_g_connection.channel_msg_anchor,
603			info, msg_list_entry);
604	mtx_unlock_spin(&hv_vmbus_g_connection.channel_msg_lock);
605	sema_destroy(&info->wait_sema);
606	free(info, M_DEVBUF);
607
608	return (ret);
609}
610
611static void
612hv_vmbus_channel_close_internal(hv_vmbus_channel *channel)
613{
614	int ret = 0;
615	struct taskqueue *rxq = channel->rxq;
616	hv_vmbus_channel_close_channel* msg;
617	hv_vmbus_channel_msg_info* info;
618
619	channel->state = HV_CHANNEL_OPEN_STATE;
620	channel->sc_creation_callback = NULL;
621
622	/*
623	 * set rxq to NULL to avoid more requests be scheduled
624	 */
625	channel->rxq = NULL;
626	taskqueue_drain(rxq, &channel->channel_task);
627	channel->on_channel_callback = NULL;
628
629	/**
630	 * Send a closing message
631	 */
632	info = (hv_vmbus_channel_msg_info *)
633		malloc(	sizeof(hv_vmbus_channel_msg_info) +
634			sizeof(hv_vmbus_channel_close_channel),
635				M_DEVBUF, M_NOWAIT);
636	KASSERT(info != NULL, ("VMBUS: malloc failed hv_vmbus_channel_close!"));
637	if(info == NULL)
638	    return;
639
640	msg = (hv_vmbus_channel_close_channel*) info->msg;
641	msg->header.message_type = HV_CHANNEL_MESSAGE_CLOSE_CHANNEL;
642	msg->child_rel_id = channel->offer_msg.child_rel_id;
643
644	ret = hv_vmbus_post_message(
645		msg, sizeof(hv_vmbus_channel_close_channel));
646
647	/* Tear down the gpadl for the channel's ring buffer */
648	if (channel->ring_buffer_gpadl_handle) {
649		hv_vmbus_channel_teardown_gpdal(channel,
650			channel->ring_buffer_gpadl_handle);
651	}
652
653	/* TODO: Send a msg to release the childRelId */
654
655	/* cleanup the ring buffers for this channel */
656	hv_ring_buffer_cleanup(&channel->outbound);
657	hv_ring_buffer_cleanup(&channel->inbound);
658
659	contigfree(channel->ring_buffer_pages, channel->ring_buffer_size,
660	    M_DEVBUF);
661
662	free(info, M_DEVBUF);
663}
664
665/**
666 * @brief Close the specified channel
667 */
668void
669hv_vmbus_channel_close(hv_vmbus_channel *channel)
670{
671	hv_vmbus_channel*	sub_channel;
672
673	if (channel->primary_channel != NULL) {
674		/*
675		 * We only close multi-channels when the primary is
676		 * closed.
677		 */
678		return;
679	}
680
681	/*
682	 * Close all multi-channels first.
683	 */
684	TAILQ_FOREACH(sub_channel, &channel->sc_list_anchor,
685	    sc_list_entry) {
686		if (sub_channel->state != HV_CHANNEL_OPENED_STATE)
687			continue;
688		hv_vmbus_channel_close_internal(sub_channel);
689	}
690	/*
691	 * Then close the primary channel.
692	 */
693	hv_vmbus_channel_close_internal(channel);
694}
695
696/**
697 * @brief Send the specified buffer on the given channel
698 */
699int
700hv_vmbus_channel_send_packet(
701	hv_vmbus_channel*	channel,
702	void*			buffer,
703	uint32_t		buffer_len,
704	uint64_t		request_id,
705	hv_vmbus_packet_type	type,
706	uint32_t		flags)
707{
708	int			ret = 0;
709	hv_vm_packet_descriptor	desc;
710	uint32_t		packet_len;
711	uint64_t		aligned_data;
712	uint32_t		packet_len_aligned;
713	boolean_t		need_sig;
714	hv_vmbus_sg_buffer_list	buffer_list[3];
715
716	packet_len = sizeof(hv_vm_packet_descriptor) + buffer_len;
717	packet_len_aligned = HV_ALIGN_UP(packet_len, sizeof(uint64_t));
718	aligned_data = 0;
719
720	/* Setup the descriptor */
721	desc.type = type;   /* HV_VMBUS_PACKET_TYPE_DATA_IN_BAND;             */
722	desc.flags = flags; /* HV_VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED */
723			    /* in 8-bytes granularity */
724	desc.data_offset8 = sizeof(hv_vm_packet_descriptor) >> 3;
725	desc.length8 = (uint16_t) (packet_len_aligned >> 3);
726	desc.transaction_id = request_id;
727
728	buffer_list[0].data = &desc;
729	buffer_list[0].length = sizeof(hv_vm_packet_descriptor);
730
731	buffer_list[1].data = buffer;
732	buffer_list[1].length = buffer_len;
733
734	buffer_list[2].data = &aligned_data;
735	buffer_list[2].length = packet_len_aligned - packet_len;
736
737	ret = hv_ring_buffer_write(&channel->outbound, buffer_list, 3,
738	    &need_sig);
739
740	/* TODO: We should determine if this is optional */
741	if (ret == 0 && need_sig) {
742		vmbus_channel_set_event(channel);
743	}
744
745	return (ret);
746}
747
748/**
749 * @brief Send a range of single-page buffer packets using
750 * a GPADL Direct packet type
751 */
752int
753hv_vmbus_channel_send_packet_pagebuffer(
754	hv_vmbus_channel*	channel,
755	hv_vmbus_page_buffer	page_buffers[],
756	uint32_t		page_count,
757	void*			buffer,
758	uint32_t		buffer_len,
759	uint64_t		request_id)
760{
761
762	int					ret = 0;
763	boolean_t				need_sig;
764	uint32_t				packet_len;
765	uint32_t				page_buflen;
766	uint32_t				packetLen_aligned;
767	hv_vmbus_sg_buffer_list			buffer_list[4];
768	hv_vmbus_channel_packet_page_buffer	desc;
769	uint32_t				descSize;
770	uint64_t				alignedData = 0;
771
772	if (page_count > HV_MAX_PAGE_BUFFER_COUNT)
773		return (EINVAL);
774
775	/*
776	 * Adjust the size down since hv_vmbus_channel_packet_page_buffer
777	 *  is the largest size we support
778	 */
779	descSize = __offsetof(hv_vmbus_channel_packet_page_buffer, range);
780	page_buflen = sizeof(hv_vmbus_page_buffer) * page_count;
781	packet_len = descSize + page_buflen + buffer_len;
782	packetLen_aligned = HV_ALIGN_UP(packet_len, sizeof(uint64_t));
783
784	/* Setup the descriptor */
785	desc.type = HV_VMBUS_PACKET_TYPE_DATA_USING_GPA_DIRECT;
786	desc.flags = HV_VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED;
787	/* in 8-bytes granularity */
788	desc.data_offset8 = (descSize + page_buflen) >> 3;
789	desc.length8 = (uint16_t) (packetLen_aligned >> 3);
790	desc.transaction_id = request_id;
791	desc.range_count = page_count;
792
793	buffer_list[0].data = &desc;
794	buffer_list[0].length = descSize;
795
796	buffer_list[1].data = page_buffers;
797	buffer_list[1].length = page_buflen;
798
799	buffer_list[2].data = buffer;
800	buffer_list[2].length = buffer_len;
801
802	buffer_list[3].data = &alignedData;
803	buffer_list[3].length = packetLen_aligned - packet_len;
804
805	ret = hv_ring_buffer_write(&channel->outbound, buffer_list, 4,
806	    &need_sig);
807
808	/* TODO: We should determine if this is optional */
809	if (ret == 0 && need_sig) {
810		vmbus_channel_set_event(channel);
811	}
812
813	return (ret);
814}
815
816/**
817 * @brief Send a multi-page buffer packet using a GPADL Direct packet type
818 */
819int
820hv_vmbus_channel_send_packet_multipagebuffer(
821	hv_vmbus_channel*		channel,
822	hv_vmbus_multipage_buffer*	multi_page_buffer,
823	void*				buffer,
824	uint32_t			buffer_len,
825	uint64_t			request_id)
826{
827
828	int			ret = 0;
829	uint32_t		desc_size;
830	boolean_t		need_sig;
831	uint32_t		packet_len;
832	uint32_t		packet_len_aligned;
833	uint32_t		pfn_count;
834	uint64_t		aligned_data = 0;
835	hv_vmbus_sg_buffer_list	buffer_list[3];
836	hv_vmbus_channel_packet_multipage_buffer desc;
837
838	pfn_count =
839	    HV_NUM_PAGES_SPANNED(
840		    multi_page_buffer->offset,
841		    multi_page_buffer->length);
842
843	if ((pfn_count == 0) || (pfn_count > HV_MAX_MULTIPAGE_BUFFER_COUNT))
844	    return (EINVAL);
845	/*
846	 * Adjust the size down since hv_vmbus_channel_packet_multipage_buffer
847	 * is the largest size we support
848	 */
849	desc_size =
850	    sizeof(hv_vmbus_channel_packet_multipage_buffer) -
851		    ((HV_MAX_MULTIPAGE_BUFFER_COUNT - pfn_count) *
852			sizeof(uint64_t));
853	packet_len = desc_size + buffer_len;
854	packet_len_aligned = HV_ALIGN_UP(packet_len, sizeof(uint64_t));
855
856	/*
857	 * Setup the descriptor
858	 */
859	desc.type = HV_VMBUS_PACKET_TYPE_DATA_USING_GPA_DIRECT;
860	desc.flags = HV_VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED;
861	desc.data_offset8 = desc_size >> 3; /* in 8-bytes granularity */
862	desc.length8 = (uint16_t) (packet_len_aligned >> 3);
863	desc.transaction_id = request_id;
864	desc.range_count = 1;
865
866	desc.range.length = multi_page_buffer->length;
867	desc.range.offset = multi_page_buffer->offset;
868
869	memcpy(desc.range.pfn_array, multi_page_buffer->pfn_array,
870		pfn_count * sizeof(uint64_t));
871
872	buffer_list[0].data = &desc;
873	buffer_list[0].length = desc_size;
874
875	buffer_list[1].data = buffer;
876	buffer_list[1].length = buffer_len;
877
878	buffer_list[2].data = &aligned_data;
879	buffer_list[2].length = packet_len_aligned - packet_len;
880
881	ret = hv_ring_buffer_write(&channel->outbound, buffer_list, 3,
882	    &need_sig);
883
884	/* TODO: We should determine if this is optional */
885	if (ret == 0 && need_sig) {
886	    vmbus_channel_set_event(channel);
887	}
888
889	return (ret);
890}
891
892/**
893 * @brief Retrieve the user packet on the specified channel
894 */
895int
896hv_vmbus_channel_recv_packet(
897	hv_vmbus_channel*	channel,
898	void*			Buffer,
899	uint32_t		buffer_len,
900	uint32_t*		buffer_actual_len,
901	uint64_t*		request_id)
902{
903	int			ret;
904	uint32_t		user_len;
905	uint32_t		packet_len;
906	hv_vm_packet_descriptor	desc;
907
908	*buffer_actual_len = 0;
909	*request_id = 0;
910
911	ret = hv_ring_buffer_peek(&channel->inbound, &desc,
912		sizeof(hv_vm_packet_descriptor));
913	if (ret != 0)
914		return (0);
915
916	packet_len = desc.length8 << 3;
917	user_len = packet_len - (desc.data_offset8 << 3);
918
919	*buffer_actual_len = user_len;
920
921	if (user_len > buffer_len)
922		return (EINVAL);
923
924	*request_id = desc.transaction_id;
925
926	/* Copy over the packet to the user buffer */
927	ret = hv_ring_buffer_read(&channel->inbound, Buffer, user_len,
928		(desc.data_offset8 << 3));
929
930	return (0);
931}
932
933/**
934 * @brief Retrieve the raw packet on the specified channel
935 */
936int
937hv_vmbus_channel_recv_packet_raw(
938	hv_vmbus_channel*	channel,
939	void*			buffer,
940	uint32_t		buffer_len,
941	uint32_t*		buffer_actual_len,
942	uint64_t*		request_id)
943{
944	int		ret;
945	uint32_t	packetLen;
946	hv_vm_packet_descriptor	desc;
947
948	*buffer_actual_len = 0;
949	*request_id = 0;
950
951	ret = hv_ring_buffer_peek(
952		&channel->inbound, &desc,
953		sizeof(hv_vm_packet_descriptor));
954
955	if (ret != 0)
956	    return (0);
957
958	packetLen = desc.length8 << 3;
959	*buffer_actual_len = packetLen;
960
961	if (packetLen > buffer_len)
962	    return (ENOBUFS);
963
964	*request_id = desc.transaction_id;
965
966	/* Copy over the entire packet to the user buffer */
967	ret = hv_ring_buffer_read(&channel->inbound, buffer, packetLen, 0);
968
969	return (0);
970}
971
972
973/**
974 * Process a channel event notification
975 */
976static void
977VmbusProcessChannelEvent(void* context, int pending)
978{
979	void* arg;
980	uint32_t bytes_to_read;
981	hv_vmbus_channel* channel = (hv_vmbus_channel*)context;
982	boolean_t is_batched_reading;
983
984	/**
985	 * Find the channel based on this relid and invokes
986	 * the channel callback to process the event
987	 */
988
989	if (channel == NULL) {
990		return;
991	}
992	/**
993	 * To deal with the race condition where we might
994	 * receive a packet while the relevant driver is
995	 * being unloaded, dispatch the callback while
996	 * holding the channel lock. The unloading driver
997	 * will acquire the same channel lock to set the
998	 * callback to NULL. This closes the window.
999	 */
1000
1001	if (channel->on_channel_callback != NULL) {
1002		arg = channel->channel_callback_context;
1003		is_batched_reading = channel->batched_reading;
1004		/*
1005		 * Optimize host to guest signaling by ensuring:
1006		 * 1. While reading the channel, we disable interrupts from
1007		 *    host.
1008		 * 2. Ensure that we process all posted messages from the host
1009		 *    before returning from this callback.
1010		 * 3. Once we return, enable signaling from the host. Once this
1011		 *    state is set we check to see if additional packets are
1012		 *    available to read. In this case we repeat the process.
1013		 */
1014		do {
1015			if (is_batched_reading)
1016				hv_ring_buffer_read_begin(&channel->inbound);
1017
1018			channel->on_channel_callback(arg);
1019
1020			if (is_batched_reading)
1021				bytes_to_read =
1022				    hv_ring_buffer_read_end(&channel->inbound);
1023			else
1024				bytes_to_read = 0;
1025		} while (is_batched_reading && (bytes_to_read != 0));
1026	}
1027}
1028