1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
// Copyright (c) Microsoft Corporation. All rights reserved.
#include "precomp.h"
#include "adapter.h"
#include "device.h"
#include "device.tmh"
_Use_decl_annotations_
NTSTATUS EvtDevicePrepareHardware(WDFDEVICE device, WDFCMRESLIST resourcesRaw, WDFCMRESLIST resourcesTranslated)
{
UNREFERENCED_PARAMETER(resourcesRaw);
UNREFERENCED_PARAMETER(resourcesTranslated);
WX_RETURN_NTSTATUS_IF_NOT_NT_SUCCESS_MSG(
WifiHAL::_Create(device),
"WifiHAL::_Create failed");
WFCInfo("Device=0x%p", device);
return STATUS_SUCCESS;
}
_Use_decl_annotations_
NTSTATUS EvtDeviceReleaseHardware(WDFDEVICE device, WDFCMRESLIST resourcesTranslated)
{
UNREFERENCED_PARAMETER(resourcesTranslated);
WFCInfo("Device=0x%p", device);
return STATUS_SUCCESS;
}
_Use_decl_annotations_
NTSTATUS EvtWifiDeviceCreateAdapter(WDFDEVICE Device, NETADAPTER_INIT* AdapterInit)
{
if (WifiAdapterInitGetType(AdapterInit) != WIFI_ADAPTER_EXTENSIBLE_STATION)
{
WFCError("%!FUNC!: Unsupported adapter type = 0x%x != 0x%x", WifiAdapterInitGetType(AdapterInit), WIFI_ADAPTER_EXTENSIBLE_STATION);
return STATUS_NOT_SUPPORTED;
}
NET_ADAPTER_DATAPATH_CALLBACKS datapathCallbacks;
NET_ADAPTER_DATAPATH_CALLBACKS_INIT(&datapathCallbacks, EvtAdapterCreateTxQueue, EvtAdapterCreateRxQueue);
NetAdapterInitSetDatapathCallbacks(AdapterInit, &datapathCallbacks);
WDF_OBJECT_ATTRIBUTES adapterAttributes;
WDF_OBJECT_ATTRIBUTES_INIT(&adapterAttributes);
WDF_OBJECT_ATTRIBUTES_INIT_CONTEXT_TYPE(&adapterAttributes, WifiNetvAdapter);
adapterAttributes.EvtCleanupCallback = EvtAdapterCleanup;
#ifdef NETV_SUPPORT_TX_DEMUXING
WIFI_ADAPTER_TX_DEMUX peerInfoDemux;
WIFI_ADAPTER_TX_PEER_ADDRESS_DEMUX_INIT(&peerInfoDemux, MaxNumOfPeers);
WifiAdapterInitAddTxDemux(AdapterInit, &peerInfoDemux);
#endif // NETV_SUPPORT_TX_DEMUXING
NETADAPTER netAdapter;
NTSTATUS ntStatus = NetAdapterCreate(AdapterInit, &adapterAttributes, &netAdapter);
if (!NT_SUCCESS(ntStatus))
{
WFCError("%!FUNC!: NetAdapterCreate failed, status=0x%x", ntStatus);
return ntStatus;
}
ntStatus = WifiAdapterInitialize(netAdapter);
ASSERT(NT_SUCCESS(ntStatus));
if (!NT_SUCCESS(ntStatus))
{
WFCError("%!FUNC!: WifiAdapterInitialize failed with %!STATUS!", ntStatus);
return ntStatus;
}
auto wifiNetvAdapter = new (reinterpret_cast<void*>(WifiNetvAdapterGetContext(netAdapter))) WifiNetvAdapter(netAdapter, Device);
ntStatus = wifiNetvAdapter->Initialize();
if (!NT_SUCCESS(ntStatus))
{
WFCError("%!FUNC!: WifiNetvAdapter::Initialize failed with %!STATUS!", ntStatus);
return ntStatus;
}
ntStatus = wifiNetvAdapter->AdapterStart();
ASSERT(NT_SUCCESS(ntStatus));
if (!NT_SUCCESS(ntStatus))
{
WFCError("%!FUNC!: WifiNetvAdapter::AdapterStart failed with %!STATUS!", ntStatus);
return ntStatus;
}
auto wifiNetvDevice = WifiGetIhvDeviceContext(Device);
wifiNetvDevice->netAdapters[WifiAdapterGetPortId(netAdapter)] = netAdapter;
WFCInfo("%!FUNC!: Success!");
return ntStatus;
}
_Use_decl_annotations_
void EvtAdapterCleanup(_In_ WDFOBJECT NetAdapter)
{
TraceEntry();
auto wifiNetvAdapter = WifiNetvAdapterGetContext(NetAdapter);
wifiNetvAdapter->Destroy();
TraceExit(STATUS_SUCCESS);
}
_Use_decl_annotations_
NTSTATUS EvtWifiDeviceCreateWifiDirectDevice(WDFDEVICE, WIFIDIRECT_DEVICE_INIT*)
{
NTSTATUS status = STATUS_SUCCESS;
TraceEntry();
TraceExit(status);
return status;
}
_Use_decl_annotations_
NTSTATUS
EvtAdapterCreateTxQueue(NETADAPTER Adapter, NETTXQUEUE_INIT* Init)
{
TraceEntry();
return WifiNetvAdapterGetContext(Adapter)->CreateTxQueue(Init);
}
_Use_decl_annotations_
NTSTATUS
EvtAdapterCreateRxQueue(NETADAPTER Adapter, NETRXQUEUE_INIT* Init)
{
TraceEntry();
return WifiNetvAdapterGetContext(Adapter)->CreateRxQueue(Init);
}
|