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 * Hank Janssen <hjanssen@microsoft.com>
20 #include <linux/kernel.h>
22 #include <linux/delay.h>
27 #include "RndisFilter.h"
31 static const char *gDriverName
= "netvsc";
33 /* {F8615163-DF3E-46c5-913F-F2D2F965ED0E} */
34 static const struct hv_guid gNetVscDeviceType
= {
36 0x63, 0x51, 0x61, 0xF8, 0x3E, 0xDF, 0xc5, 0x46,
37 0x91, 0x3F, 0xF2, 0xD2, 0xF9, 0x65, 0xED, 0x0E
41 static int NetVscOnDeviceAdd(struct hv_device
*Device
, void *AdditionalInfo
);
43 static int NetVscOnDeviceRemove(struct hv_device
*Device
);
45 static void NetVscOnCleanup(struct hv_driver
*Driver
);
47 static void NetVscOnChannelCallback(void *context
);
49 static int NetVscInitializeSendBufferWithNetVsp(struct hv_device
*Device
);
51 static int NetVscInitializeReceiveBufferWithNetVsp(struct hv_device
*Device
);
53 static int NetVscDestroySendBuffer(struct netvsc_device
*NetDevice
);
55 static int NetVscDestroyReceiveBuffer(struct netvsc_device
*NetDevice
);
57 static int NetVscConnectToVsp(struct hv_device
*Device
);
59 static void NetVscOnSendCompletion(struct hv_device
*Device
,
60 struct vmpacket_descriptor
*Packet
);
62 static int NetVscOnSend(struct hv_device
*Device
,
63 struct hv_netvsc_packet
*Packet
);
65 static void NetVscOnReceive(struct hv_device
*Device
,
66 struct vmpacket_descriptor
*Packet
);
68 static void NetVscOnReceiveCompletion(void *Context
);
70 static void NetVscSendReceiveCompletion(struct hv_device
*Device
,
74 static struct netvsc_device
*AllocNetDevice(struct hv_device
*Device
)
76 struct netvsc_device
*netDevice
;
78 netDevice
= kzalloc(sizeof(struct netvsc_device
), GFP_KERNEL
);
82 /* Set to 2 to allow both inbound and outbound traffic */
83 atomic_cmpxchg(&netDevice
->RefCount
, 0, 2);
85 netDevice
->Device
= Device
;
86 Device
->Extension
= netDevice
;
91 static void FreeNetDevice(struct netvsc_device
*Device
)
93 ASSERT(atomic_read(&Device
->RefCount
) == 0);
94 Device
->Device
->Extension
= NULL
;
99 /* Get the net device object iff exists and its refcount > 1 */
100 static struct netvsc_device
*GetOutboundNetDevice(struct hv_device
*Device
)
102 struct netvsc_device
*netDevice
;
104 netDevice
= Device
->Extension
;
105 if (netDevice
&& atomic_read(&netDevice
->RefCount
) > 1)
106 atomic_inc(&netDevice
->RefCount
);
113 /* Get the net device object iff exists and its refcount > 0 */
114 static struct netvsc_device
*GetInboundNetDevice(struct hv_device
*Device
)
116 struct netvsc_device
*netDevice
;
118 netDevice
= Device
->Extension
;
119 if (netDevice
&& atomic_read(&netDevice
->RefCount
))
120 atomic_inc(&netDevice
->RefCount
);
127 static void PutNetDevice(struct hv_device
*Device
)
129 struct netvsc_device
*netDevice
;
131 netDevice
= Device
->Extension
;
134 atomic_dec(&netDevice
->RefCount
);
137 static struct netvsc_device
*ReleaseOutboundNetDevice(struct hv_device
*Device
)
139 struct netvsc_device
*netDevice
;
141 netDevice
= Device
->Extension
;
142 if (netDevice
== NULL
)
145 /* Busy wait until the ref drop to 2, then set it to 1 */
146 while (atomic_cmpxchg(&netDevice
->RefCount
, 2, 1) != 2)
152 static struct netvsc_device
*ReleaseInboundNetDevice(struct hv_device
*Device
)
154 struct netvsc_device
*netDevice
;
156 netDevice
= Device
->Extension
;
157 if (netDevice
== NULL
)
160 /* Busy wait until the ref drop to 1, then set it to 0 */
161 while (atomic_cmpxchg(&netDevice
->RefCount
, 1, 0) != 1)
164 Device
->Extension
= NULL
;
169 * NetVscInitialize - Main entry point
171 int NetVscInitialize(struct hv_driver
*drv
)
173 struct netvsc_driver
*driver
= (struct netvsc_driver
*)drv
;
175 DPRINT_ENTER(NETVSC
);
177 DPRINT_DBG(NETVSC
, "sizeof(struct hv_netvsc_packet)=%zd, "
178 "sizeof(struct nvsp_message)=%zd, "
179 "sizeof(struct vmtransfer_page_packet_header)=%zd",
180 sizeof(struct hv_netvsc_packet
),
181 sizeof(struct nvsp_message
),
182 sizeof(struct vmtransfer_page_packet_header
));
184 /* Make sure we are at least 2 pages since 1 page is used for control */
185 ASSERT(driver
->RingBufferSize
>= (PAGE_SIZE
<< 1));
187 drv
->name
= gDriverName
;
188 memcpy(&drv
->deviceType
, &gNetVscDeviceType
, sizeof(struct hv_guid
));
190 /* Make sure it is set by the caller */
191 ASSERT(driver
->OnReceiveCallback
);
192 ASSERT(driver
->OnLinkStatusChanged
);
194 /* Setup the dispatch table */
195 driver
->Base
.OnDeviceAdd
= NetVscOnDeviceAdd
;
196 driver
->Base
.OnDeviceRemove
= NetVscOnDeviceRemove
;
197 driver
->Base
.OnCleanup
= NetVscOnCleanup
;
199 driver
->OnSend
= NetVscOnSend
;
201 RndisFilterInit(driver
);
208 static int NetVscInitializeReceiveBufferWithNetVsp(struct hv_device
*Device
)
211 struct netvsc_device
*netDevice
;
212 struct nvsp_message
*initPacket
;
214 DPRINT_ENTER(NETVSC
);
216 netDevice
= GetOutboundNetDevice(Device
);
218 DPRINT_ERR(NETVSC
, "unable to get net device..."
219 "device being destroyed?");
223 ASSERT(netDevice
->ReceiveBufferSize
> 0);
224 /* page-size grandularity */
225 ASSERT((netDevice
->ReceiveBufferSize
& (PAGE_SIZE
- 1)) == 0);
227 netDevice
->ReceiveBuffer
=
228 osd_PageAlloc(netDevice
->ReceiveBufferSize
>> PAGE_SHIFT
);
229 if (!netDevice
->ReceiveBuffer
) {
231 "unable to allocate receive buffer of size %d",
232 netDevice
->ReceiveBufferSize
);
236 /* page-aligned buffer */
237 ASSERT(((unsigned long)netDevice
->ReceiveBuffer
& (PAGE_SIZE
- 1)) ==
240 DPRINT_INFO(NETVSC
, "Establishing receive buffer's GPADL...");
243 * Establish the gpadl handle for this buffer on this
244 * channel. Note: This call uses the vmbus connection rather
245 * than the channel to establish the gpadl handle.
247 ret
= Device
->Driver
->VmbusChannelInterface
.EstablishGpadl(Device
,
248 netDevice
->ReceiveBuffer
,
249 netDevice
->ReceiveBufferSize
,
250 &netDevice
->ReceiveBufferGpadlHandle
);
253 "unable to establish receive buffer's gpadl");
257 /* osd_WaitEventWait(ext->ChannelInitEvent); */
259 /* Notify the NetVsp of the gpadl handle */
260 DPRINT_INFO(NETVSC
, "Sending NvspMessage1TypeSendReceiveBuffer...");
262 initPacket
= &netDevice
->ChannelInitPacket
;
264 memset(initPacket
, 0, sizeof(struct nvsp_message
));
266 initPacket
->Header
.MessageType
= NvspMessage1TypeSendReceiveBuffer
;
267 initPacket
->Messages
.Version1Messages
.SendReceiveBuffer
.GpadlHandle
= netDevice
->ReceiveBufferGpadlHandle
;
268 initPacket
->Messages
.Version1Messages
.SendReceiveBuffer
.Id
= NETVSC_RECEIVE_BUFFER_ID
;
270 /* Send the gpadl notification request */
271 ret
= Device
->Driver
->VmbusChannelInterface
.SendPacket(Device
,
273 sizeof(struct nvsp_message
),
274 (unsigned long)initPacket
,
275 VmbusPacketTypeDataInBand
,
276 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED
);
279 "unable to send receive buffer's gpadl to netvsp");
283 osd_WaitEventWait(netDevice
->ChannelInitEvent
);
285 /* Check the response */
286 if (initPacket
->Messages
.Version1Messages
.SendReceiveBufferComplete
.Status
!= NvspStatusSuccess
) {
287 DPRINT_ERR(NETVSC
, "Unable to complete receive buffer "
288 "initialzation with NetVsp - status %d",
289 initPacket
->Messages
.Version1Messages
.SendReceiveBufferComplete
.Status
);
294 /* Parse the response */
295 ASSERT(netDevice
->ReceiveSectionCount
== 0);
296 ASSERT(netDevice
->ReceiveSections
== NULL
);
298 netDevice
->ReceiveSectionCount
= initPacket
->Messages
.Version1Messages
.SendReceiveBufferComplete
.NumSections
;
300 netDevice
->ReceiveSections
= kmalloc(netDevice
->ReceiveSectionCount
* sizeof(struct nvsp_1_receive_buffer_section
), GFP_KERNEL
);
301 if (netDevice
->ReceiveSections
== NULL
) {
306 memcpy(netDevice
->ReceiveSections
,
307 initPacket
->Messages
.Version1Messages
.SendReceiveBufferComplete
.Sections
,
308 netDevice
->ReceiveSectionCount
* sizeof(struct nvsp_1_receive_buffer_section
));
310 DPRINT_INFO(NETVSC
, "Receive sections info (count %d, offset %d, "
311 "endoffset %d, suballoc size %d, num suballocs %d)",
312 netDevice
->ReceiveSectionCount
,
313 netDevice
->ReceiveSections
[0].Offset
,
314 netDevice
->ReceiveSections
[0].EndOffset
,
315 netDevice
->ReceiveSections
[0].SubAllocationSize
,
316 netDevice
->ReceiveSections
[0].NumSubAllocations
);
319 * For 1st release, there should only be 1 section that represents the
320 * entire receive buffer
322 if (netDevice
->ReceiveSectionCount
!= 1 ||
323 netDevice
->ReceiveSections
->Offset
!= 0) {
331 NetVscDestroyReceiveBuffer(netDevice
);
334 PutNetDevice(Device
);
339 static int NetVscInitializeSendBufferWithNetVsp(struct hv_device
*Device
)
342 struct netvsc_device
*netDevice
;
343 struct nvsp_message
*initPacket
;
345 DPRINT_ENTER(NETVSC
);
347 netDevice
= GetOutboundNetDevice(Device
);
349 DPRINT_ERR(NETVSC
, "unable to get net device..."
350 "device being destroyed?");
354 ASSERT(netDevice
->SendBufferSize
> 0);
355 /* page-size grandularity */
356 ASSERT((netDevice
->SendBufferSize
& (PAGE_SIZE
- 1)) == 0);
358 netDevice
->SendBuffer
=
359 osd_PageAlloc(netDevice
->SendBufferSize
>> PAGE_SHIFT
);
360 if (!netDevice
->SendBuffer
) {
361 DPRINT_ERR(NETVSC
, "unable to allocate send buffer of size %d",
362 netDevice
->SendBufferSize
);
366 /* page-aligned buffer */
367 ASSERT(((unsigned long)netDevice
->SendBuffer
& (PAGE_SIZE
- 1)) == 0);
369 DPRINT_INFO(NETVSC
, "Establishing send buffer's GPADL...");
372 * Establish the gpadl handle for this buffer on this
373 * channel. Note: This call uses the vmbus connection rather
374 * than the channel to establish the gpadl handle.
376 ret
= Device
->Driver
->VmbusChannelInterface
.EstablishGpadl(Device
,
377 netDevice
->SendBuffer
,
378 netDevice
->SendBufferSize
,
379 &netDevice
->SendBufferGpadlHandle
);
381 DPRINT_ERR(NETVSC
, "unable to establish send buffer's gpadl");
385 /* osd_WaitEventWait(ext->ChannelInitEvent); */
387 /* Notify the NetVsp of the gpadl handle */
388 DPRINT_INFO(NETVSC
, "Sending NvspMessage1TypeSendSendBuffer...");
390 initPacket
= &netDevice
->ChannelInitPacket
;
392 memset(initPacket
, 0, sizeof(struct nvsp_message
));
394 initPacket
->Header
.MessageType
= NvspMessage1TypeSendSendBuffer
;
395 initPacket
->Messages
.Version1Messages
.SendReceiveBuffer
.GpadlHandle
= netDevice
->SendBufferGpadlHandle
;
396 initPacket
->Messages
.Version1Messages
.SendReceiveBuffer
.Id
= NETVSC_SEND_BUFFER_ID
;
398 /* Send the gpadl notification request */
399 ret
= Device
->Driver
->VmbusChannelInterface
.SendPacket(Device
,
400 initPacket
, sizeof(struct nvsp_message
),
401 (unsigned long)initPacket
,
402 VmbusPacketTypeDataInBand
,
403 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED
);
406 "unable to send receive buffer's gpadl to netvsp");
410 osd_WaitEventWait(netDevice
->ChannelInitEvent
);
412 /* Check the response */
413 if (initPacket
->Messages
.Version1Messages
.SendSendBufferComplete
.Status
!= NvspStatusSuccess
) {
414 DPRINT_ERR(NETVSC
, "Unable to complete send buffer "
415 "initialzation with NetVsp - status %d",
416 initPacket
->Messages
.Version1Messages
.SendSendBufferComplete
.Status
);
421 netDevice
->SendSectionSize
= initPacket
->Messages
.Version1Messages
.SendSendBufferComplete
.SectionSize
;
426 NetVscDestroySendBuffer(netDevice
);
429 PutNetDevice(Device
);
434 static int NetVscDestroyReceiveBuffer(struct netvsc_device
*NetDevice
)
436 struct nvsp_message
*revokePacket
;
439 DPRINT_ENTER(NETVSC
);
442 * If we got a section count, it means we received a
443 * SendReceiveBufferComplete msg (ie sent
444 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
445 * to send a revoke msg here
447 if (NetDevice
->ReceiveSectionCount
) {
449 "Sending NvspMessage1TypeRevokeReceiveBuffer...");
451 /* Send the revoke receive buffer */
452 revokePacket
= &NetDevice
->RevokePacket
;
453 memset(revokePacket
, 0, sizeof(struct nvsp_message
));
455 revokePacket
->Header
.MessageType
= NvspMessage1TypeRevokeReceiveBuffer
;
456 revokePacket
->Messages
.Version1Messages
.RevokeReceiveBuffer
.Id
= NETVSC_RECEIVE_BUFFER_ID
;
458 ret
= NetDevice
->Device
->Driver
->VmbusChannelInterface
.SendPacket(
461 sizeof(struct nvsp_message
),
462 (unsigned long)revokePacket
,
463 VmbusPacketTypeDataInBand
, 0);
465 * If we failed here, we might as well return and
466 * have a leak rather than continue and a bugchk
469 DPRINT_ERR(NETVSC
, "unable to send revoke receive "
476 /* Teardown the gpadl on the vsp end */
477 if (NetDevice
->ReceiveBufferGpadlHandle
) {
478 DPRINT_INFO(NETVSC
, "Tearing down receive buffer's GPADL...");
480 ret
= NetDevice
->Device
->Driver
->VmbusChannelInterface
.TeardownGpadl(
482 NetDevice
->ReceiveBufferGpadlHandle
);
484 /* If we failed here, we might as well return and have a leak rather than continue and a bugchk */
487 "unable to teardown receive buffer's gpadl");
491 NetDevice
->ReceiveBufferGpadlHandle
= 0;
494 if (NetDevice
->ReceiveBuffer
) {
495 DPRINT_INFO(NETVSC
, "Freeing up receive buffer...");
497 /* Free up the receive buffer */
498 osd_PageFree(NetDevice
->ReceiveBuffer
,
499 NetDevice
->ReceiveBufferSize
>> PAGE_SHIFT
);
500 NetDevice
->ReceiveBuffer
= NULL
;
503 if (NetDevice
->ReceiveSections
) {
504 NetDevice
->ReceiveSectionCount
= 0;
505 kfree(NetDevice
->ReceiveSections
);
506 NetDevice
->ReceiveSections
= NULL
;
514 static int NetVscDestroySendBuffer(struct netvsc_device
*NetDevice
)
516 struct nvsp_message
*revokePacket
;
519 DPRINT_ENTER(NETVSC
);
522 * If we got a section count, it means we received a
523 * SendReceiveBufferComplete msg (ie sent
524 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
525 * to send a revoke msg here
527 if (NetDevice
->SendSectionSize
) {
529 "Sending NvspMessage1TypeRevokeSendBuffer...");
531 /* Send the revoke send buffer */
532 revokePacket
= &NetDevice
->RevokePacket
;
533 memset(revokePacket
, 0, sizeof(struct nvsp_message
));
535 revokePacket
->Header
.MessageType
= NvspMessage1TypeRevokeSendBuffer
;
536 revokePacket
->Messages
.Version1Messages
.RevokeSendBuffer
.Id
= NETVSC_SEND_BUFFER_ID
;
538 ret
= NetDevice
->Device
->Driver
->VmbusChannelInterface
.SendPacket(NetDevice
->Device
,
540 sizeof(struct nvsp_message
),
541 (unsigned long)revokePacket
,
542 VmbusPacketTypeDataInBand
, 0);
544 * If we failed here, we might as well return and have a leak
545 * rather than continue and a bugchk
548 DPRINT_ERR(NETVSC
, "unable to send revoke send buffer "
555 /* Teardown the gpadl on the vsp end */
556 if (NetDevice
->SendBufferGpadlHandle
) {
557 DPRINT_INFO(NETVSC
, "Tearing down send buffer's GPADL...");
559 ret
= NetDevice
->Device
->Driver
->VmbusChannelInterface
.TeardownGpadl(NetDevice
->Device
, NetDevice
->SendBufferGpadlHandle
);
562 * If we failed here, we might as well return and have a leak
563 * rather than continue and a bugchk
566 DPRINT_ERR(NETVSC
, "unable to teardown send buffer's "
571 NetDevice
->SendBufferGpadlHandle
= 0;
574 if (NetDevice
->SendBuffer
) {
575 DPRINT_INFO(NETVSC
, "Freeing up send buffer...");
577 /* Free up the receive buffer */
578 osd_PageFree(NetDevice
->SendBuffer
,
579 NetDevice
->SendBufferSize
>> PAGE_SHIFT
);
580 NetDevice
->SendBuffer
= NULL
;
589 static int NetVscConnectToVsp(struct hv_device
*Device
)
592 struct netvsc_device
*netDevice
;
593 struct nvsp_message
*initPacket
;
596 DPRINT_ENTER(NETVSC
);
598 netDevice
= GetOutboundNetDevice(Device
);
600 DPRINT_ERR(NETVSC
, "unable to get net device..."
601 "device being destroyed?");
606 initPacket
= &netDevice
->ChannelInitPacket
;
608 memset(initPacket
, 0, sizeof(struct nvsp_message
));
609 initPacket
->Header
.MessageType
= NvspMessageTypeInit
;
610 initPacket
->Messages
.InitMessages
.Init
.MinProtocolVersion
= NVSP_MIN_PROTOCOL_VERSION
;
611 initPacket
->Messages
.InitMessages
.Init
.MaxProtocolVersion
= NVSP_MAX_PROTOCOL_VERSION
;
613 DPRINT_INFO(NETVSC
, "Sending NvspMessageTypeInit...");
615 /* Send the init request */
616 ret
= Device
->Driver
->VmbusChannelInterface
.SendPacket(Device
,
618 sizeof(struct nvsp_message
),
619 (unsigned long)initPacket
,
620 VmbusPacketTypeDataInBand
,
621 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED
);
624 DPRINT_ERR(NETVSC
, "unable to send NvspMessageTypeInit");
628 osd_WaitEventWait(netDevice
->ChannelInitEvent
);
630 /* Now, check the response */
631 /* ASSERT(initPacket->Messages.InitMessages.InitComplete.MaximumMdlChainLength <= MAX_MULTIPAGE_BUFFER_COUNT); */
632 DPRINT_INFO(NETVSC
, "NvspMessageTypeInit status(%d) max mdl chain (%d)",
633 initPacket
->Messages
.InitMessages
.InitComplete
.Status
,
634 initPacket
->Messages
.InitMessages
.InitComplete
.MaximumMdlChainLength
);
636 if (initPacket
->Messages
.InitMessages
.InitComplete
.Status
!=
639 "unable to initialize with netvsp (status 0x%x)",
640 initPacket
->Messages
.InitMessages
.InitComplete
.Status
);
645 if (initPacket
->Messages
.InitMessages
.InitComplete
.NegotiatedProtocolVersion
!= NVSP_PROTOCOL_VERSION_1
) {
646 DPRINT_ERR(NETVSC
, "unable to initialize with netvsp "
647 "(version expected 1 got %d)",
648 initPacket
->Messages
.InitMessages
.InitComplete
.NegotiatedProtocolVersion
);
652 DPRINT_INFO(NETVSC
, "Sending NvspMessage1TypeSendNdisVersion...");
654 /* Send the ndis version */
655 memset(initPacket
, 0, sizeof(struct nvsp_message
));
657 ndisVersion
= 0x00050000;
659 initPacket
->Header
.MessageType
= NvspMessage1TypeSendNdisVersion
;
660 initPacket
->Messages
.Version1Messages
.SendNdisVersion
.NdisMajorVersion
=
661 (ndisVersion
& 0xFFFF0000) >> 16;
662 initPacket
->Messages
.Version1Messages
.SendNdisVersion
.NdisMinorVersion
=
663 ndisVersion
& 0xFFFF;
665 /* Send the init request */
666 ret
= Device
->Driver
->VmbusChannelInterface
.SendPacket(Device
,
668 sizeof(struct nvsp_message
),
669 (unsigned long)initPacket
,
670 VmbusPacketTypeDataInBand
, 0);
673 "unable to send NvspMessage1TypeSendNdisVersion");
678 * BUGBUG - We have to wait for the above msg since the
679 * netvsp uses KMCL which acknowledges packet (completion
680 * packet) since our Vmbus always set the
681 * VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED flag
683 /* osd_WaitEventWait(NetVscChannel->ChannelInitEvent); */
685 /* Post the big receive buffer to NetVSP */
686 ret
= NetVscInitializeReceiveBufferWithNetVsp(Device
);
688 ret
= NetVscInitializeSendBufferWithNetVsp(Device
);
691 PutNetDevice(Device
);
696 static void NetVscDisconnectFromVsp(struct netvsc_device
*NetDevice
)
698 DPRINT_ENTER(NETVSC
);
700 NetVscDestroyReceiveBuffer(NetDevice
);
701 NetVscDestroySendBuffer(NetDevice
);
707 * NetVscOnDeviceAdd - Callback when the device belonging to this driver is added
709 static int NetVscOnDeviceAdd(struct hv_device
*Device
, void *AdditionalInfo
)
713 struct netvsc_device
*netDevice
;
714 struct hv_netvsc_packet
*packet
, *pos
;
715 struct netvsc_driver
*netDriver
=
716 (struct netvsc_driver
*)Device
->Driver
;
718 DPRINT_ENTER(NETVSC
);
720 netDevice
= AllocNetDevice(Device
);
726 DPRINT_DBG(NETVSC
, "netvsc channel object allocated - %p", netDevice
);
728 /* Initialize the NetVSC channel extension */
729 netDevice
->ReceiveBufferSize
= NETVSC_RECEIVE_BUFFER_SIZE
;
730 spin_lock_init(&netDevice
->receive_packet_list_lock
);
732 netDevice
->SendBufferSize
= NETVSC_SEND_BUFFER_SIZE
;
734 INIT_LIST_HEAD(&netDevice
->ReceivePacketList
);
736 for (i
= 0; i
< NETVSC_RECEIVE_PACKETLIST_COUNT
; i
++) {
737 packet
= kzalloc(sizeof(struct hv_netvsc_packet
) +
738 (NETVSC_RECEIVE_SG_COUNT
*
739 sizeof(struct hv_page_buffer
)), GFP_KERNEL
);
741 DPRINT_DBG(NETVSC
, "unable to allocate netvsc pkts "
742 "for receive pool (wanted %d got %d)",
743 NETVSC_RECEIVE_PACKETLIST_COUNT
, i
);
746 list_add_tail(&packet
->ListEntry
,
747 &netDevice
->ReceivePacketList
);
749 netDevice
->ChannelInitEvent
= osd_WaitEventCreate();
751 /* Open the channel */
752 ret
= Device
->Driver
->VmbusChannelInterface
.Open(Device
,
753 netDriver
->RingBufferSize
,
754 netDriver
->RingBufferSize
,
756 NetVscOnChannelCallback
,
760 DPRINT_ERR(NETVSC
, "unable to open channel: %d", ret
);
765 /* Channel is opened */
766 DPRINT_INFO(NETVSC
, "*** NetVSC channel opened successfully! ***");
768 /* Connect with the NetVsp */
769 ret
= NetVscConnectToVsp(Device
);
771 DPRINT_ERR(NETVSC
, "unable to connect to NetVSP - %d", ret
);
776 DPRINT_INFO(NETVSC
, "*** NetVSC channel handshake result - %d ***",
783 /* Now, we can close the channel safely */
784 Device
->Driver
->VmbusChannelInterface
.Close(Device
);
789 kfree(netDevice
->ChannelInitEvent
);
791 list_for_each_entry_safe(packet
, pos
,
792 &netDevice
->ReceivePacketList
,
794 list_del(&packet
->ListEntry
);
798 ReleaseOutboundNetDevice(Device
);
799 ReleaseInboundNetDevice(Device
);
801 FreeNetDevice(netDevice
);
809 * NetVscOnDeviceRemove - Callback when the root bus device is removed
811 static int NetVscOnDeviceRemove(struct hv_device
*Device
)
813 struct netvsc_device
*netDevice
;
814 struct hv_netvsc_packet
*netvscPacket
, *pos
;
816 DPRINT_ENTER(NETVSC
);
818 DPRINT_INFO(NETVSC
, "Disabling outbound traffic on net device (%p)...",
821 /* Stop outbound traffic ie sends and receives completions */
822 netDevice
= ReleaseOutboundNetDevice(Device
);
824 DPRINT_ERR(NETVSC
, "No net device present!!");
828 /* Wait for all send completions */
829 while (atomic_read(&netDevice
->NumOutstandingSends
)) {
830 DPRINT_INFO(NETVSC
, "waiting for %d requests to complete...",
831 atomic_read(&netDevice
->NumOutstandingSends
));
835 DPRINT_INFO(NETVSC
, "Disconnecting from netvsp...");
837 NetVscDisconnectFromVsp(netDevice
);
839 DPRINT_INFO(NETVSC
, "Disabling inbound traffic on net device (%p)...",
842 /* Stop inbound traffic ie receives and sends completions */
843 netDevice
= ReleaseInboundNetDevice(Device
);
845 /* At this point, no one should be accessing netDevice except in here */
846 DPRINT_INFO(NETVSC
, "net device (%p) safe to remove", netDevice
);
848 /* Now, we can close the channel safely */
849 Device
->Driver
->VmbusChannelInterface
.Close(Device
);
851 /* Release all resources */
852 list_for_each_entry_safe(netvscPacket
, pos
,
853 &netDevice
->ReceivePacketList
, ListEntry
) {
854 list_del(&netvscPacket
->ListEntry
);
858 kfree(netDevice
->ChannelInitEvent
);
859 FreeNetDevice(netDevice
);
866 * NetVscOnCleanup - Perform any cleanup when the driver is removed
868 static void NetVscOnCleanup(struct hv_driver
*drv
)
870 DPRINT_ENTER(NETVSC
);
874 static void NetVscOnSendCompletion(struct hv_device
*Device
,
875 struct vmpacket_descriptor
*Packet
)
877 struct netvsc_device
*netDevice
;
878 struct nvsp_message
*nvspPacket
;
879 struct hv_netvsc_packet
*nvscPacket
;
881 DPRINT_ENTER(NETVSC
);
883 netDevice
= GetInboundNetDevice(Device
);
885 DPRINT_ERR(NETVSC
, "unable to get net device..."
886 "device being destroyed?");
891 nvspPacket
= (struct nvsp_message
*)((unsigned long)Packet
+ (Packet
->DataOffset8
<< 3));
893 DPRINT_DBG(NETVSC
, "send completion packet - type %d",
894 nvspPacket
->Header
.MessageType
);
896 if ((nvspPacket
->Header
.MessageType
== NvspMessageTypeInitComplete
) ||
897 (nvspPacket
->Header
.MessageType
==
898 NvspMessage1TypeSendReceiveBufferComplete
) ||
899 (nvspPacket
->Header
.MessageType
==
900 NvspMessage1TypeSendSendBufferComplete
)) {
901 /* Copy the response back */
902 memcpy(&netDevice
->ChannelInitPacket
, nvspPacket
,
903 sizeof(struct nvsp_message
));
904 osd_WaitEventSet(netDevice
->ChannelInitEvent
);
905 } else if (nvspPacket
->Header
.MessageType
==
906 NvspMessage1TypeSendRNDISPacketComplete
) {
907 /* Get the send context */
908 nvscPacket
= (struct hv_netvsc_packet
*)(unsigned long)Packet
->TransactionId
;
911 /* Notify the layer above us */
912 nvscPacket
->Completion
.Send
.OnSendCompletion(nvscPacket
->Completion
.Send
.SendCompletionContext
);
914 atomic_dec(&netDevice
->NumOutstandingSends
);
916 DPRINT_ERR(NETVSC
, "Unknown send completion packet type - "
917 "%d received!!", nvspPacket
->Header
.MessageType
);
920 PutNetDevice(Device
);
924 static int NetVscOnSend(struct hv_device
*Device
,
925 struct hv_netvsc_packet
*Packet
)
927 struct netvsc_device
*netDevice
;
930 struct nvsp_message sendMessage
;
932 DPRINT_ENTER(NETVSC
);
934 netDevice
= GetOutboundNetDevice(Device
);
936 DPRINT_ERR(NETVSC
, "net device (%p) shutting down..."
937 "ignoring outbound packets", netDevice
);
942 sendMessage
.Header
.MessageType
= NvspMessage1TypeSendRNDISPacket
;
943 if (Packet
->IsDataPacket
) {
945 sendMessage
.Messages
.Version1Messages
.SendRNDISPacket
.ChannelType
= 0;
947 /* 1 is RMC_CONTROL; */
948 sendMessage
.Messages
.Version1Messages
.SendRNDISPacket
.ChannelType
= 1;
951 /* Not using send buffer section */
952 sendMessage
.Messages
.Version1Messages
.SendRNDISPacket
.SendBufferSectionIndex
= 0xFFFFFFFF;
953 sendMessage
.Messages
.Version1Messages
.SendRNDISPacket
.SendBufferSectionSize
= 0;
955 if (Packet
->PageBufferCount
) {
956 ret
= Device
->Driver
->VmbusChannelInterface
.SendPacketPageBuffer(
957 Device
, Packet
->PageBuffers
,
958 Packet
->PageBufferCount
,
960 sizeof(struct nvsp_message
),
961 (unsigned long)Packet
);
963 ret
= Device
->Driver
->VmbusChannelInterface
.SendPacket(Device
,
965 sizeof(struct nvsp_message
),
966 (unsigned long)Packet
,
967 VmbusPacketTypeDataInBand
,
968 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED
);
973 DPRINT_ERR(NETVSC
, "Unable to send packet %p ret %d",
976 atomic_inc(&netDevice
->NumOutstandingSends
);
977 PutNetDevice(Device
);
983 static void NetVscOnReceive(struct hv_device
*Device
,
984 struct vmpacket_descriptor
*Packet
)
986 struct netvsc_device
*netDevice
;
987 struct vmtransfer_page_packet_header
*vmxferpagePacket
;
988 struct nvsp_message
*nvspPacket
;
989 struct hv_netvsc_packet
*netvscPacket
= NULL
;
991 unsigned long end
, endVirtual
;
992 /* struct netvsc_driver *netvscDriver; */
993 struct xferpage_packet
*xferpagePacket
= NULL
;
995 int count
= 0, bytesRemain
= 0;
999 DPRINT_ENTER(NETVSC
);
1001 netDevice
= GetInboundNetDevice(Device
);
1003 DPRINT_ERR(NETVSC
, "unable to get net device..."
1004 "device being destroyed?");
1005 DPRINT_EXIT(NETVSC
);
1010 * All inbound packets other than send completion should be xfer page
1013 if (Packet
->Type
!= VmbusPacketTypeDataUsingTransferPages
) {
1014 DPRINT_ERR(NETVSC
, "Unknown packet type received - %d",
1016 PutNetDevice(Device
);
1020 nvspPacket
= (struct nvsp_message
*)((unsigned long)Packet
+
1021 (Packet
->DataOffset8
<< 3));
1023 /* Make sure this is a valid nvsp packet */
1024 if (nvspPacket
->Header
.MessageType
!= NvspMessage1TypeSendRNDISPacket
) {
1025 DPRINT_ERR(NETVSC
, "Unknown nvsp packet type received - %d",
1026 nvspPacket
->Header
.MessageType
);
1027 PutNetDevice(Device
);
1031 DPRINT_DBG(NETVSC
, "NVSP packet received - type %d",
1032 nvspPacket
->Header
.MessageType
);
1034 vmxferpagePacket
= (struct vmtransfer_page_packet_header
*)Packet
;
1036 if (vmxferpagePacket
->TransferPageSetId
!= NETVSC_RECEIVE_BUFFER_ID
) {
1037 DPRINT_ERR(NETVSC
, "Invalid xfer page set id - "
1038 "expecting %x got %x", NETVSC_RECEIVE_BUFFER_ID
,
1039 vmxferpagePacket
->TransferPageSetId
);
1040 PutNetDevice(Device
);
1044 DPRINT_DBG(NETVSC
, "xfer page - range count %d",
1045 vmxferpagePacket
->RangeCount
);
1048 * Grab free packets (range count + 1) to represent this xfer
1049 * page packet. +1 to represent the xfer page packet itself.
1050 * We grab it here so that we know exactly how many we can
1053 spin_lock_irqsave(&netDevice
->receive_packet_list_lock
, flags
);
1054 while (!list_empty(&netDevice
->ReceivePacketList
)) {
1055 list_move_tail(&netDevice
->ReceivePacketList
, &listHead
);
1056 if (++count
== vmxferpagePacket
->RangeCount
+ 1)
1059 spin_unlock_irqrestore(&netDevice
->receive_packet_list_lock
, flags
);
1062 * We need at least 2 netvsc pkts (1 to represent the xfer
1063 * page and at least 1 for the range) i.e. we can handled
1064 * some of the xfer page packet ranges...
1067 DPRINT_ERR(NETVSC
, "Got only %d netvsc pkt...needed %d pkts. "
1068 "Dropping this xfer page packet completely!",
1069 count
, vmxferpagePacket
->RangeCount
+ 1);
1071 /* Return it to the freelist */
1072 spin_lock_irqsave(&netDevice
->receive_packet_list_lock
, flags
);
1073 for (i
= count
; i
!= 0; i
--) {
1074 list_move_tail(&listHead
,
1075 &netDevice
->ReceivePacketList
);
1077 spin_unlock_irqrestore(&netDevice
->receive_packet_list_lock
,
1080 NetVscSendReceiveCompletion(Device
,
1081 vmxferpagePacket
->d
.TransactionId
);
1083 PutNetDevice(Device
);
1087 /* Remove the 1st packet to represent the xfer page packet itself */
1088 xferpagePacket
= list_entry(&listHead
, struct xferpage_packet
,
1090 list_del(&xferpagePacket
->ListEntry
);
1092 /* This is how much we can satisfy */
1093 xferpagePacket
->Count
= count
- 1;
1094 ASSERT(xferpagePacket
->Count
> 0 && xferpagePacket
->Count
<=
1095 vmxferpagePacket
->RangeCount
);
1097 if (xferpagePacket
->Count
!= vmxferpagePacket
->RangeCount
) {
1098 DPRINT_INFO(NETVSC
, "Needed %d netvsc pkts to satisy this xfer "
1099 "page...got %d", vmxferpagePacket
->RangeCount
,
1100 xferpagePacket
->Count
);
1103 /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
1104 for (i
= 0; i
< (count
- 1); i
++) {
1105 netvscPacket
= list_entry(&listHead
, struct hv_netvsc_packet
,
1107 list_del(&netvscPacket
->ListEntry
);
1109 /* Initialize the netvsc packet */
1110 netvscPacket
->XferPagePacket
= xferpagePacket
;
1111 netvscPacket
->Completion
.Recv
.OnReceiveCompletion
=
1112 NetVscOnReceiveCompletion
;
1113 netvscPacket
->Completion
.Recv
.ReceiveCompletionContext
=
1115 netvscPacket
->Device
= Device
;
1116 /* Save this so that we can send it back */
1117 netvscPacket
->Completion
.Recv
.ReceiveCompletionTid
=
1118 vmxferpagePacket
->d
.TransactionId
;
1120 netvscPacket
->TotalDataBufferLength
=
1121 vmxferpagePacket
->Ranges
[i
].ByteCount
;
1122 netvscPacket
->PageBufferCount
= 1;
1124 ASSERT(vmxferpagePacket
->Ranges
[i
].ByteOffset
+
1125 vmxferpagePacket
->Ranges
[i
].ByteCount
<
1126 netDevice
->ReceiveBufferSize
);
1128 netvscPacket
->PageBuffers
[0].Length
=
1129 vmxferpagePacket
->Ranges
[i
].ByteCount
;
1131 start
= virt_to_phys((void *)((unsigned long)netDevice
->ReceiveBuffer
+ vmxferpagePacket
->Ranges
[i
].ByteOffset
));
1133 netvscPacket
->PageBuffers
[0].Pfn
= start
>> PAGE_SHIFT
;
1134 endVirtual
= (unsigned long)netDevice
->ReceiveBuffer
1135 + vmxferpagePacket
->Ranges
[i
].ByteOffset
1136 + vmxferpagePacket
->Ranges
[i
].ByteCount
- 1;
1137 end
= virt_to_phys((void *)endVirtual
);
1139 /* Calculate the page relative offset */
1140 netvscPacket
->PageBuffers
[0].Offset
=
1141 vmxferpagePacket
->Ranges
[i
].ByteOffset
& (PAGE_SIZE
- 1);
1142 if ((end
>> PAGE_SHIFT
) != (start
>> PAGE_SHIFT
)) {
1143 /* Handle frame across multiple pages: */
1144 netvscPacket
->PageBuffers
[0].Length
=
1145 (netvscPacket
->PageBuffers
[0].Pfn
<< PAGE_SHIFT
)
1146 + PAGE_SIZE
- start
;
1147 bytesRemain
= netvscPacket
->TotalDataBufferLength
-
1148 netvscPacket
->PageBuffers
[0].Length
;
1149 for (j
= 1; j
< NETVSC_PACKET_MAXPAGE
; j
++) {
1150 netvscPacket
->PageBuffers
[j
].Offset
= 0;
1151 if (bytesRemain
<= PAGE_SIZE
) {
1152 netvscPacket
->PageBuffers
[j
].Length
= bytesRemain
;
1155 netvscPacket
->PageBuffers
[j
].Length
= PAGE_SIZE
;
1156 bytesRemain
-= PAGE_SIZE
;
1158 netvscPacket
->PageBuffers
[j
].Pfn
=
1159 virt_to_phys((void *)(endVirtual
- bytesRemain
)) >> PAGE_SHIFT
;
1160 netvscPacket
->PageBufferCount
++;
1161 if (bytesRemain
== 0)
1164 ASSERT(bytesRemain
== 0);
1166 DPRINT_DBG(NETVSC
, "[%d] - (abs offset %u len %u) => "
1167 "(pfn %llx, offset %u, len %u)", i
,
1168 vmxferpagePacket
->Ranges
[i
].ByteOffset
,
1169 vmxferpagePacket
->Ranges
[i
].ByteCount
,
1170 netvscPacket
->PageBuffers
[0].Pfn
,
1171 netvscPacket
->PageBuffers
[0].Offset
,
1172 netvscPacket
->PageBuffers
[0].Length
);
1174 /* Pass it to the upper layer */
1175 ((struct netvsc_driver
*)Device
->Driver
)->OnReceiveCallback(Device
, netvscPacket
);
1177 NetVscOnReceiveCompletion(netvscPacket
->Completion
.Recv
.ReceiveCompletionContext
);
1180 ASSERT(list_empty(&listHead
));
1182 PutNetDevice(Device
);
1183 DPRINT_EXIT(NETVSC
);
1186 static void NetVscSendReceiveCompletion(struct hv_device
*Device
,
1189 struct nvsp_message recvcompMessage
;
1193 DPRINT_DBG(NETVSC
, "Sending receive completion pkt - %llx",
1196 recvcompMessage
.Header
.MessageType
=
1197 NvspMessage1TypeSendRNDISPacketComplete
;
1199 /* FIXME: Pass in the status */
1200 recvcompMessage
.Messages
.Version1Messages
.SendRNDISPacketComplete
.Status
= NvspStatusSuccess
;
1203 /* Send the completion */
1204 ret
= Device
->Driver
->VmbusChannelInterface
.SendPacket(Device
,
1206 sizeof(struct nvsp_message
),
1208 VmbusPacketTypeCompletion
, 0);
1212 } else if (ret
== -1) {
1213 /* no more room...wait a bit and attempt to retry 3 times */
1215 DPRINT_ERR(NETVSC
, "unable to send receive completion pkt "
1216 "(tid %llx)...retrying %d", TransactionId
, retries
);
1220 goto retry_send_cmplt
;
1222 DPRINT_ERR(NETVSC
, "unable to send receive completion "
1223 "pkt (tid %llx)...give up retrying",
1227 DPRINT_ERR(NETVSC
, "unable to send receive completion pkt - "
1228 "%llx", TransactionId
);
1232 /* Send a receive completion packet to RNDIS device (ie NetVsp) */
1233 static void NetVscOnReceiveCompletion(void *Context
)
1235 struct hv_netvsc_packet
*packet
= Context
;
1236 struct hv_device
*device
= (struct hv_device
*)packet
->Device
;
1237 struct netvsc_device
*netDevice
;
1238 u64 transactionId
= 0;
1239 bool fSendReceiveComp
= false;
1240 unsigned long flags
;
1242 DPRINT_ENTER(NETVSC
);
1244 ASSERT(packet
->XferPagePacket
);
1247 * Even though it seems logical to do a GetOutboundNetDevice() here to
1248 * send out receive completion, we are using GetInboundNetDevice()
1249 * since we may have disable outbound traffic already.
1251 netDevice
= GetInboundNetDevice(device
);
1253 DPRINT_ERR(NETVSC
, "unable to get net device..."
1254 "device being destroyed?");
1255 DPRINT_EXIT(NETVSC
);
1259 /* Overloading use of the lock. */
1260 spin_lock_irqsave(&netDevice
->receive_packet_list_lock
, flags
);
1262 ASSERT(packet
->XferPagePacket
->Count
> 0);
1263 packet
->XferPagePacket
->Count
--;
1266 * Last one in the line that represent 1 xfer page packet.
1267 * Return the xfer page packet itself to the freelist
1269 if (packet
->XferPagePacket
->Count
== 0) {
1270 fSendReceiveComp
= true;
1271 transactionId
= packet
->Completion
.Recv
.ReceiveCompletionTid
;
1272 list_add_tail(&packet
->XferPagePacket
->ListEntry
,
1273 &netDevice
->ReceivePacketList
);
1277 /* Put the packet back */
1278 list_add_tail(&packet
->ListEntry
, &netDevice
->ReceivePacketList
);
1279 spin_unlock_irqrestore(&netDevice
->receive_packet_list_lock
, flags
);
1281 /* Send a receive completion for the xfer page packet */
1282 if (fSendReceiveComp
)
1283 NetVscSendReceiveCompletion(device
, transactionId
);
1285 PutNetDevice(device
);
1286 DPRINT_EXIT(NETVSC
);
1289 void NetVscOnChannelCallback(void *Context
)
1291 const int netPacketSize
= 2048;
1293 struct hv_device
*device
= Context
;
1294 struct netvsc_device
*netDevice
;
1297 unsigned char packet
[netPacketSize
];
1298 struct vmpacket_descriptor
*desc
;
1299 unsigned char *buffer
= packet
;
1300 int bufferlen
= netPacketSize
;
1303 DPRINT_ENTER(NETVSC
);
1307 netDevice
= GetInboundNetDevice(device
);
1309 DPRINT_ERR(NETVSC
, "net device (%p) shutting down..."
1310 "ignoring inbound packets", netDevice
);
1311 DPRINT_EXIT(NETVSC
);
1316 ret
= device
->Driver
->VmbusChannelInterface
.RecvPacketRaw(
1317 device
, buffer
, bufferlen
,
1318 &bytesRecvd
, &requestId
);
1320 if (bytesRecvd
> 0) {
1321 DPRINT_DBG(NETVSC
, "receive %d bytes, tid %llx",
1322 bytesRecvd
, requestId
);
1324 desc
= (struct vmpacket_descriptor
*)buffer
;
1325 switch (desc
->Type
) {
1326 case VmbusPacketTypeCompletion
:
1327 NetVscOnSendCompletion(device
, desc
);
1330 case VmbusPacketTypeDataUsingTransferPages
:
1331 NetVscOnReceive(device
, desc
);
1336 "unhandled packet type %d, "
1337 "tid %llx len %d\n",
1338 desc
->Type
, requestId
,
1344 if (bufferlen
> netPacketSize
) {
1347 bufferlen
= netPacketSize
;
1351 if (bufferlen
> netPacketSize
) {
1354 bufferlen
= netPacketSize
;
1359 } else if (ret
== -2) {
1360 /* Handle large packet */
1361 buffer
= kmalloc(bytesRecvd
, GFP_ATOMIC
);
1362 if (buffer
== NULL
) {
1363 /* Try again next time around */
1365 "unable to allocate buffer of size "
1366 "(%d)!!", bytesRecvd
);
1370 bufferlen
= bytesRecvd
;
1376 PutNetDevice(device
);
1377 DPRINT_EXIT(NETVSC
);