-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcontroller.cpp
561 lines (443 loc) · 16.4 KB
/
controller.cpp
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
/*++
Copyright (c) Microsoft Corporation
Module Name:
controller.cpp
Abstract:
--*/
#include "pch.h"
#include "controller.tmh"
NTSTATUS
ControllerWdfEvtDeviceAdd(
_In_
WDFDRIVER Driver,
_Inout_
PWDFDEVICE_INIT WdfDeviceInit
)
{
NTSTATUS status;
WDFDEVICE wdfDevice;
WDF_PNPPOWER_EVENT_CALLBACKS wdfPnpPowerCallbacks;
WDF_OBJECT_ATTRIBUTES wdfDeviceAttributes;
WDF_OBJECT_ATTRIBUTES wdfRequestAttributes;
UDECX_WDF_DEVICE_CONFIG controllerConfig;
WDF_FILEOBJECT_CONFIG fileConfig;
PWDFDEVICE_CONTEXT pControllerContext;
WDF_IO_QUEUE_CONFIG defaultQueueConfig;
WDF_DEVICE_POWER_POLICY_IDLE_SETTINGS
idleSettings;
UNICODE_STRING refString;
UNREFERENCED_PARAMETER(Driver);
FuncEntry(TRACE_FLAG_Driver);
WDF_PNPPOWER_EVENT_CALLBACKS_INIT(&wdfPnpPowerCallbacks);
wdfPnpPowerCallbacks.EvtDevicePrepareHardware = ControllerWdfEvtDevicePrepareHardware;
wdfPnpPowerCallbacks.EvtDeviceReleaseHardware = ControllerWdfEvtDeviceReleaseHardware;
wdfPnpPowerCallbacks.EvtDeviceD0Entry = ControllerWdfEvtDeviceD0Entry;
wdfPnpPowerCallbacks.EvtDeviceD0Exit = ControllerWdfEvtDeviceD0Exit;
wdfPnpPowerCallbacks.EvtDeviceD0EntryPostInterruptsEnabled =
ControllerWdfEvtDeviceD0EntryPostInterruptsEnabled;
wdfPnpPowerCallbacks.EvtDeviceD0ExitPreInterruptsDisabled =
ControllerWdfEvtDeviceD0ExitPreInterruptsDisabled;
WdfDeviceInitSetPnpPowerEventCallbacks(WdfDeviceInit, &wdfPnpPowerCallbacks);
WDF_OBJECT_ATTRIBUTES_INIT_CONTEXT_TYPE(&wdfRequestAttributes, REQUEST_CONTEXT);
WdfDeviceInitSetRequestAttributes(WdfDeviceInit, &wdfRequestAttributes);
//
// To distinguish I/O sent to GUID_DEVINTERFACE_USB_HOST_CONTROLLER, we will enable
// interface reference strings. This requires calling WdfDeviceInitSetFileObjectConfig
// with FileObjectClass WdfFileObjectWdfXxx.
//
WDF_FILEOBJECT_CONFIG_INIT(&fileConfig,
WDF_NO_EVENT_CALLBACK,
WDF_NO_EVENT_CALLBACK,
WDF_NO_EVENT_CALLBACK // No cleanup callback function
);
//
// Safest value forces WDF to track handles separately. If the driver stack allows it, then
// for performance, we should change this to a different option.
//
fileConfig.FileObjectClass = WdfFileObjectWdfCannotUseFsContexts;
WdfDeviceInitSetFileObjectConfig(WdfDeviceInit,
&fileConfig,
WDF_NO_OBJECT_ATTRIBUTES);
//
// Set the security descriptor for the device.
//
status = WdfDeviceInitAssignSDDLString(WdfDeviceInit, &SDDL_DEVOBJ_SYS_ALL_ADM_RWX_WORLD_RW_RES_R);
if (!NT_SUCCESS(status)) {
LogError(TRACE_FLAG_Driver,"WdfDeviceInitAssignSDDLString Failed %!STATUS!", status);
goto exit;
}
//
// Do additional setup required for USB controllers.
//
status = UdecxInitializeWdfDeviceInit(WdfDeviceInit);
if (!NT_SUCCESS(status)) {
LogError(TRACE_FLAG_Driver,"UdecxInitializeDeviceInit failed %!STATUS!", status);
goto exit;
}
WDF_OBJECT_ATTRIBUTES_INIT_CONTEXT_TYPE(&wdfDeviceAttributes, WDFDEVICE_CONTEXT);
wdfDeviceAttributes.EvtCleanupCallback = ControllerWdfEvtCleanupCallback;
//
// Call WdfDeviceCreate with a few extra compatibility steps to ensure this device looks
// exactly like other USB host controllers.
//
status = ControllerCreateWdfDeviceWithNameAndSymLink(&WdfDeviceInit,
&wdfDeviceAttributes,
&wdfDevice);
if (!NT_SUCCESS(status)) {
goto exit;
}
//
// Create the device interface.
//
RtlInitUnicodeString(&refString,
USB_HOST_DEVINTERFACE_REF_STRING);
status = WdfDeviceCreateDeviceInterface(wdfDevice,
(LPGUID)&GUID_DEVINTERFACE_USB_HOST_CONTROLLER,
&refString);
if (!NT_SUCCESS(status)) {
LogError(TRACE_FLAG_Driver,"WdfDeviceCreateDeviceInterface Failed %!STATUS!", status);
goto exit;
}
UDECX_WDF_DEVICE_CONFIG_INIT(&controllerConfig, ControllerEvtUdecxWdfDeviceQueryUsbCapability);
status = UdecxWdfDeviceAddUsbDeviceEmulation(wdfDevice,
&controllerConfig);
//
// Initialize controller data members.
// TODO: reset using UCX?
//
pControllerContext = WdfDeviceGetContext(wdfDevice);
KeInitializeEvent(&pControllerContext->ResetCompleteEvent,
NotificationEvent,
FALSE /* initial state: not signaled */);
if (!NT_SUCCESS(status)) {
goto exit;
}
//
// Create default queue. It only supports USB controller IOCTLs. (USB I/O will come through
// in separate USB device queues.)
//
WDF_IO_QUEUE_CONFIG_INIT_DEFAULT_QUEUE(&defaultQueueConfig, WdfIoQueueDispatchSequential);
defaultQueueConfig.EvtIoDeviceControl = ControllerEvtIoDeviceControl;
defaultQueueConfig.PowerManaged = WdfFalse;
status = WdfIoQueueCreate(wdfDevice,
&defaultQueueConfig,
WDF_NO_OBJECT_ATTRIBUTES,
&pControllerContext->DefaultQueue);
if (!NT_SUCCESS(status)) {
LogError(TRACE_FLAG_Driver,"Default queue creation failed %!STATUS!", status);
goto exit;
}
//
// Allocate per-controller private contexts used by other source code modules (I/O,
// etc.)
//
status = Misc_WdfDeviceAllocateIoContext(wdfDevice);
if (!NT_SUCCESS(status)) {
goto exit;
}
status = Misc_WdfDeviceAllocateUsbContext(wdfDevice);
if (!NT_SUCCESS(status)) {
goto exit;
}
//
// Initialize virtual USB device software objects.
//
status = Usb_Initialize(wdfDevice);
if (!NT_SUCCESS(status)) {
goto exit;
}
//
// Setup the S0 Idle settings just so that we get registered with power
// framework as some SOC platforms depend on it.
//
WDF_DEVICE_POWER_POLICY_IDLE_SETTINGS_INIT(&idleSettings, IdleCannotWakeFromS0); // TODO:can
//idleSettings.IdleTimeoutType = SystemManagedIdleTimeoutWithHint;
//idleSettings.Enabled = WdfFalse;
if (!NT_SUCCESS(status)) {
LogError(TRACE_FLAG_Driver,"WdfDeviceAssignS0IdleSettings failed %!STATUS!", status);
goto exit;
}
exit:
FuncExit(TRACE_FLAG_Driver, status);
return status;
}
NTSTATUS
ControllerCreateWdfDeviceWithNameAndSymLink(
_Inout_
PWDFDEVICE_INIT * WdfDeviceInit,
_In_
PWDF_OBJECT_ATTRIBUTES WdfDeviceAttributes,
_Out_
WDFDEVICE * WdfDevice
)
/*++
Routine Description:
Create the WDFDEVICE with a few extra compatibility steps, to ensure this device looks exactly
like other USB host controllers. This function should be called from EvtDriverDeviceAdd.
The extra compatibility steps are:
1) Assign a USB host controller FDO name to the device.
2) Create a USB host controller symbolic link to the device.
Arguments:
WdfDeviceInit - Initialization parameters for the new device. This function does not modify the
parameters, but sets the pointer to NULL to indicate the structure has been
used up in creating the device.
WdfDeviceAttributes - Attributes of the device (cleanup callback, context type, etc.)
WdfDevice - The created WdfDevice. Note, when failure is returned this may be NULL or non-NULL.
Non-NULL indicates the function encountered a failure after successfully calling
WdfDeviceCreate. WDF will delete the WdfDevice itself if EvtDriverDeviceAdd returns
a failure.
Return Value:
NTSTATUS
--*/
{
NTSTATUS status;
ULONG instanceNumber;
BOOLEAN isCreated;
DECLARE_UNICODE_STRING_SIZE(uniDeviceName, DeviceNameSize);
DECLARE_UNICODE_STRING_SIZE(uniSymLinkName, SymLinkNameSize);
FuncEntry(TRACE_FLAG_Driver);
*WdfDevice = NULL;
//
// Generate a unique static device name in order to provide compatibility to look like with
// existing USB host controller driver implementations.
//
isCreated = FALSE;
for (instanceNumber = 0; instanceNumber < ULONG_MAX; instanceNumber++) {
status = RtlUnicodeStringPrintf(&uniDeviceName,
L"%ws%d",
BASE_DEVICE_NAME,
instanceNumber);
if (!NT_SUCCESS(status)) {
LogError(TRACE_FLAG_Driver,"RtlUnicodeStringPrintf (uniDeviceName) failed %!STATUS!", status);
goto exit;
}
status = WdfDeviceInitAssignName(*WdfDeviceInit, &uniDeviceName);
if (!NT_SUCCESS(status)) {
LogError(TRACE_FLAG_Driver,"WdfDeviceInitAssignName Failed %!STATUS!", status);
goto exit;
}
status = WdfDeviceCreate(WdfDeviceInit, WdfDeviceAttributes, WdfDevice);
if (status == STATUS_OBJECT_NAME_COLLISION) {
//
// This is expected to happen at least once when another USB host controller
// already exists on the system.
//
LogVerbose(TRACE_FLAG_Driver,"WdfDeviceCreate Object Name Collision %d", instanceNumber);
} else if (!NT_SUCCESS(status)) {
LogError(TRACE_FLAG_Driver,"WdfDeviceCreate Failed %!STATUS!", status);
goto exit;
} else {
isCreated = TRUE;
break;
}
}
if (!isCreated) {
status = STATUS_OBJECT_NAME_COLLISION;
LogError(TRACE_FLAG_Driver,"All instance numbers of USB host controller are already used %!STATUS!",
status);
goto exit;
}
//
// Create the symbolic link (also for compatibility).
//
status = RtlUnicodeStringPrintf(&uniSymLinkName,
L"%ws%d",
BASE_SYMBOLIC_LINK_NAME,
instanceNumber);
if (!NT_SUCCESS(status)) {
LogError(TRACE_FLAG_Driver,"RtlUnicodeStringPrintf (SymLinkName) Failed %!STATUS!", status);
goto exit;
}
status = WdfDeviceCreateSymbolicLink(*WdfDevice, &uniSymLinkName);
if (!NT_SUCCESS(status)) {
LogError(TRACE_FLAG_Driver,"WdfDeviceCreateSymbolicLink Failed %!STATUS!", status);
goto exit;
}
exit:
FuncExit(TRACE_FLAG_Driver, status);
return status;
}
NTSTATUS
ControllerWdfEvtDevicePrepareHardware(
_In_
WDFDEVICE WdfDevice,
_In_
WDFCMRESLIST WdfResourcesRaw,
_In_
WDFCMRESLIST WdfResourcesTranslated
)
{
FuncEntry(TRACE_FLAG_Driver);
UNREFERENCED_PARAMETER(WdfDevice);
UNREFERENCED_PARAMETER(WdfResourcesRaw);
UNREFERENCED_PARAMETER(WdfResourcesTranslated);
FuncExit(TRACE_FLAG_Driver, 0);
return STATUS_SUCCESS;
}
NTSTATUS
ControllerWdfEvtDeviceD0Entry(
_In_
WDFDEVICE WdfDevice,
_In_
WDF_POWER_DEVICE_STATE PreviousState
)
{
NTSTATUS status = STATUS_SUCCESS;
PWDFDEVICE_CONTEXT pControllerContext;
FuncEntry(TRACE_FLAG_Driver);
pControllerContext = WdfDeviceGetContext(WdfDevice);
if (PreviousState == WdfPowerDeviceD3Final) {
NT_ASSERT(!pControllerContext->AllowOnlyResetInterrupts);
pControllerContext->AllowOnlyResetInterrupts = TRUE;
status = Usb_ReadDescriptorsAndPlugIn(WdfDevice);
if (!NT_SUCCESS(status)) {
goto exit;
}
}
exit:
FuncExit(TRACE_FLAG_Driver, status);
return status;
}
NTSTATUS
ControllerWdfEvtDeviceD0EntryPostInterruptsEnabled(
_In_
WDFDEVICE WdfDevice,
_In_
WDF_POWER_DEVICE_STATE PreviousState
)
{
FuncEntry(TRACE_FLAG_Driver);
UNREFERENCED_PARAMETER(WdfDevice);
UNREFERENCED_PARAMETER(PreviousState);
FuncExit(TRACE_FLAG_Driver, 0);
return STATUS_SUCCESS;
}
NTSTATUS
ControllerWdfEvtDeviceD0ExitPreInterruptsDisabled(
_In_
WDFDEVICE WdfDevice,
_In_
WDF_POWER_DEVICE_STATE TargetState
)
{
FuncEntry(TRACE_FLAG_Driver);
UNREFERENCED_PARAMETER(WdfDevice);
UNREFERENCED_PARAMETER(TargetState);
FuncExit(TRACE_FLAG_Driver, 0);
return STATUS_SUCCESS;
}
NTSTATUS
ControllerWdfEvtDeviceD0Exit(
_In_
WDFDEVICE WdfDevice,
_In_
WDF_POWER_DEVICE_STATE TargetState
)
{
FuncEntry(TRACE_FLAG_Driver);
if (TargetState == WdfPowerDeviceD3Final) {
Usb_Disconnect(WdfDevice);
}
FuncExit(TRACE_FLAG_Driver, 0);
return STATUS_SUCCESS;
}
NTSTATUS
ControllerWdfEvtDeviceReleaseHardware(
_In_
WDFDEVICE WdfDevice,
_In_
WDFCMRESLIST WdfResourcesTranslated
)
{
FuncEntry(TRACE_FLAG_Driver);
UNREFERENCED_PARAMETER(WdfDevice);
UNREFERENCED_PARAMETER(WdfResourcesTranslated);
FuncExit(TRACE_FLAG_Driver, 0);
return STATUS_SUCCESS;
}
VOID
ControllerWdfEvtCleanupCallback(
_In_
WDFOBJECT WdfDevice
)
{
PIO_CONTEXT ioContext;
FuncEntry(TRACE_FLAG_Driver);
ioContext = WdfDeviceGetIoContext((WDFDEVICE)WdfDevice);
WdfSpinLockAcquire(ioContext->InProgressLock);
MbbCleanupBufferQueue(&ioContext->AvailableInterrupt);
MbbCleanupBufferQueue(&ioContext->EncapsulatedCommandResponse);
WdfSpinLockRelease(ioContext->InProgressLock);
Usb_Destroy((WDFDEVICE)WdfDevice);
FuncExit(TRACE_FLAG_Driver, 0);
}
VOID
ControllerEvtIoDeviceControl(
_In_
WDFQUEUE Queue,
_In_
WDFREQUEST Request,
_In_
size_t OutputBufferLength,
_In_
size_t InputBufferLength,
_In_
ULONG IoControlCode
)
{
BOOLEAN handled;
NTSTATUS status;
UNREFERENCED_PARAMETER(OutputBufferLength);
UNREFERENCED_PARAMETER(InputBufferLength);
handled = UdecxWdfDeviceTryHandleUserIoctl(WdfIoQueueGetDevice(Queue),
Request);
if (handled) {
goto exit;
}
status = STATUS_INVALID_DEVICE_REQUEST;
LogError(TRACE_FLAG_Driver,"Unexpected I/O control code 0x%x %!STATUS!", IoControlCode, status);
NT_ASSERTMSG("Unexpected I/O", FALSE);
WdfRequestComplete(Request, status);
exit:
return;
}
NTSTATUS
ControllerEvtUdecxWdfDeviceQueryUsbCapability(
_In_
WDFDEVICE UdecxWdfDevice,
_In_
PGUID CapabilityType,
_In_
ULONG OutputBufferLength,
_Out_writes_to_opt_(OutputBufferLength, *ResultLength)
PVOID OutputBuffer,
_Out_
PULONG ResultLength
)
{
UNREFERENCED_PARAMETER(UdecxWdfDevice);
UNREFERENCED_PARAMETER(CapabilityType);
UNREFERENCED_PARAMETER(OutputBufferLength);
UNREFERENCED_PARAMETER(OutputBuffer);
UNREFERENCED_PARAMETER(ResultLength);
//Sample for supporting new custom capability
if (RtlCompareMemory(
CapabilityType,
&GUID_USB_CAPABILITY_DEVICE_TYPE,
sizeof(GUID)
) == sizeof(GUID))
{
PUSB_CAP_DEVICE_INFO usbDeviceInfo;
if (OutputBufferLength < sizeof(USB_CAP_DEVICE_INFO))
{
return STATUS_UNSUCCESSFUL;
}
*ResultLength = sizeof(USB_CAP_DEVICE_INFO);
usbDeviceInfo = ((USB_CAP_DEVICE_INFO*)OutputBuffer);
usbDeviceInfo->DeviceInfoHeader.DeviceType = USB_CAP_DEVICE_TYPE_UDE_MBIM;
usbDeviceInfo->DeviceInfoHeader.DeviceMajorVersion = 1;
usbDeviceInfo->DeviceInfoHeader.DeviceMinorVersion = 0;
return STATUS_SUCCESS;
}
return STATUS_UNSUCCESSFUL;
}