-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathDevice.c
executable file
·977 lines (763 loc) · 27.1 KB
/
Device.c
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
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
/*++
Module Name:
device.c - Device handling events for example driver.
Abstract:
This file contains the device entry points and callbacks.
Environment:
User-mode Driver Framework 2
--*/
#include "Driver.h"
#include "XGMDevice.h"
#include "Device.tmh"
NTSTATUS
XGMDriverCreateDevice(
_Inout_ PWDFDEVICE_INIT DeviceInit
)
/*++
Routine Description:
Worker routine called to create a device and its software resources.
Arguments:
DeviceInit - Pointer to an opaque init structure. Memory for this
structure will be freed by the framework when the WdfDeviceCreate
succeeds. So don't access the structure after that point.
Return Value:
NTSTATUS
--*/
{
NTSTATUS status;
WDF_OBJECT_ATTRIBUTES deviceAttributes;
WDFDEVICE device;
PDEVICE_CONTEXT deviceContext;
PHID_DEVICE_ATTRIBUTES hidAttributes;
TraceEvents(TRACE_LEVEL_INFORMATION, TRACE_DRIVER, "Enter %!FUNC!");
//
// Mark ourselves as a filter, which also relinquishes power policy ownership
//
WdfFdoInitSetFilter(DeviceInit);
WDF_OBJECT_ATTRIBUTES_INIT_CONTEXT_TYPE(
&deviceAttributes,
DEVICE_CONTEXT);
status = WdfDeviceCreate(&DeviceInit,
&deviceAttributes,
&device);
if (!NT_SUCCESS(status)) {
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "Error: WdfDeviceCreate failed %!STATUS!", status);
return status;
}
deviceContext = GetDeviceContext(device);
deviceContext->Device = device;
deviceContext->DeviceData = 0;
hidAttributes = &deviceContext->HidDeviceAttributes;
RtlZeroMemory(hidAttributes, sizeof(HID_DEVICE_ATTRIBUTES));
hidAttributes->Size = sizeof(HID_DEVICE_ATTRIBUTES);
hidAttributes->VendorID = XGMDEVICE_VID;
hidAttributes->ProductID = XGMDEVICE_PID;
hidAttributes->VersionNumber = XGMDEVICE_VERSION;
status = QueueCreate(device,
&deviceContext->DefaultQueue);
if (!NT_SUCCESS(status)) {
return status;
}
status = ManualQueueCreate(device,
&deviceContext->ManualQueue);
if (!NT_SUCCESS(status)) {
return status;
}
//
// Use default "HID Descriptor" (hardcoded).
//
deviceContext->HidDescriptor = G_DefaultHidDescriptor;
deviceContext->ReportDescriptor = G_DefaultReportDescriptor;
return status;
}
NTSTATUS
RequestCopyFromBuffer(
_In_ WDFREQUEST Request,
_In_ PVOID SourceBuffer,
_When_(NumBytesToCopyFrom == 0, __drv_reportError(NumBytesToCopyFrom cannot be zero))
_In_ size_t NumBytesToCopyFrom
)
/*++
Routine Description:
A helper function to copy specified bytes to the request's output memory
Arguments:
Request - A handle to a framework request object.
SourceBuffer - The buffer to copy data from.
NumBytesToCopyFrom - The length, in bytes, of data to be copied.
Return Value:
NTSTATUS
--*/
{
NTSTATUS status;
WDFMEMORY memory;
size_t outputBufferLength;
status = WdfRequestRetrieveOutputMemory(Request, &memory);
if (!NT_SUCCESS(status)) {
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "WdfRequestRetrieveOutputMemory failed %!STATUS!", status);
return status;
}
WdfMemoryGetBuffer(memory, &outputBufferLength);
if (outputBufferLength < NumBytesToCopyFrom) {
status = STATUS_INVALID_BUFFER_SIZE;
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "RequestCopyFromBuffer: buffer too small. Size %d, expect %d",
(int)outputBufferLength, (int)NumBytesToCopyFrom);
return status;
}
status = WdfMemoryCopyFromBuffer(memory,
0,
SourceBuffer,
NumBytesToCopyFrom);
if (!NT_SUCCESS(status)) {
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "WdfMemoryCopyFromBuffer failed %!STATUS!", status);
return status;
}
WdfRequestSetInformation(Request, NumBytesToCopyFrom);
return status;
}
NTSTATUS
ReadReport(
_In_ PQUEUE_CONTEXT QueueContext,
_In_ WDFREQUEST Request,
_Always_(_Out_)
BOOLEAN* CompleteRequest
)
/*++
Routine Description:
Handles IOCTL_HID_READ_REPORT for the HID collection. Normally the request
will be forwarded to a manual queue for further process. In that case, the
caller should not try to complete the request at this time, as the request
will later be retrieved back from the manually queue and completed there.
However, if for some reason the forwarding fails, the caller still need
to complete the request with proper error code immediately.
Arguments:
QueueContext - The object context associated with the queue
Request - Pointer to Request Packet.
CompleteRequest - A boolean output value, indicating whether the caller
should complete the request or not
Return Value:
NT status code.
--*/
{
NTSTATUS status;
TraceEvents(TRACE_LEVEL_INFORMATION, TRACE_DRIVER, "Enter %!FUNC!");
//
// forward the request to manual queue
//
status = WdfRequestForwardToIoQueue(
Request,
QueueContext->DeviceContext->ManualQueue);
if (!NT_SUCCESS(status)) {
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "WdfRequestForwardToIoQueue failed %!STATUS!", status);
*CompleteRequest = TRUE;
}
else {
*CompleteRequest = FALSE;
}
return status;
}
NTSTATUS
WriteReport(
_In_ PQUEUE_CONTEXT QueueContext,
_In_ WDFREQUEST Request
)
/*++
Routine Description:
Handles IOCTL_HID_WRITE_REPORT all the collection.
Arguments:
QueueContext - The object context associated with the queue
Request - Pointer to Request Packet.
Return Value:
NT status code.
--*/
{
NTSTATUS status;
HID_XFER_PACKET packet;
//ULONG reportSize;
//PHIDMINI_OUTPUT_REPORT outputReport;
TraceEvents(TRACE_LEVEL_INFORMATION, TRACE_DRIVER, "Enter %!FUNC!");
status = RequestGetHidXferPacket_ToWriteToDevice(
Request,
&packet);
if (!NT_SUCCESS(status)) {
return status;
}
UNREFERENCED_PARAMETER(QueueContext);
status = STATUS_NOT_IMPLEMENTED;
/*
if (packet.reportId != CONTROL_COLLECTION_REPORT_ID) {
//
// Return error for unknown collection
//
status = STATUS_INVALID_PARAMETER;
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "WriteReport: unknown report id %d", packet.reportId);
return status;
}
//
// before touching buffer make sure buffer is big enough.
//
reportSize = sizeof(HIDMINI_OUTPUT_REPORT);
if (packet.reportBufferLen < reportSize) {
status = STATUS_INVALID_BUFFER_SIZE;
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "WriteReport: invalid input buffer. size %d, expect %d",
packet.reportBufferLen, reportSize);
return status;
}
outputReport = (PHIDMINI_OUTPUT_REPORT)packet.reportBuffer;
//
// Store the device data in device extension.
//
QueueContext->DeviceContext->DeviceData = outputReport->Data;
//
// set status and information
//
WdfRequestSetInformation(Request, reportSize);
*/
return status;
}
HRESULT
GetFeature(
_In_ PQUEUE_CONTEXT QueueContext,
_In_ WDFREQUEST Request
)
/*++
Routine Description:
Handles IOCTL_HID_GET_FEATURE for all the collection.
Arguments:
QueueContext - The object context associated with the queue
Request - Pointer to Request Packet.
Return Value:
NT status code.
--*/
{
NTSTATUS status;
HID_XFER_PACKET packet;
ULONG reportSize;
TraceEvents(TRACE_LEVEL_INFORMATION, TRACE_DRIVER, "Enter %!FUNC!");
status = RequestGetHidXferPacket_ToReadFromDevice(
Request,
&packet);
if (!NT_SUCCESS(status)) {
return status;
}
if (packet.reportId != XGM_REPORT_ID) {
//
// If collection ID is not for control collection then handle
// this request just as you would for a regular collection.
//
status = STATUS_INVALID_PARAMETER;
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "GetFeature: invalid report id %d", packet.reportId);
return status;
}
//
// Since output buffer is for write only (no read allowed by UMDF in output
// buffer), any read from output buffer would be reading garbage), so don't
// let app embed custom control code in output buffer. The minidriver can
// support multiple features using separate report ID instead of using
// custom control code. Since this is targeted at report ID 1, we know it
// is a request for getting attributes.
//
// While KMDF does not enforce the rule (disallow read from output buffer),
// it is good practice to not do so.
//
reportSize = packet.reportBufferLen;
status = XGMDriver_ProcessCommand(
QueueContext->LastXgmReport.Command,
QueueContext->LastXgmReport.Data,
(PHID_XGM_REPORT)packet.reportBuffer,
&reportSize);
//
// Report how many bytes were copied
//
WdfRequestSetInformation(Request, reportSize);
return status;
}
NTSTATUS
SetFeature(
_In_ PQUEUE_CONTEXT QueueContext,
_In_ WDFREQUEST Request
)
/*++
Routine Description:
Handles IOCTL_HID_SET_FEATURE for all the collection.
For control collection (custom defined collection) it handles
the user-defined control codes for sideband communication
Arguments:
QueueContext - The object context associated with the queue
Request - Pointer to Request Packet.
Return Value:
NT status code.
--*/
{
NTSTATUS status;
HID_XFER_PACKET packet;
//ULONG reportSize;
TraceEvents(TRACE_LEVEL_INFORMATION, TRACE_DRIVER, "Enter %!FUNC!");
status = RequestGetHidXferPacket_ToWriteToDevice(
Request,
&packet);
if (!NT_SUCCESS(status)) {
return status;
}
if (packet.reportId != XGM_REPORT_ID) {
//
// If collection ID is not for control collection then handle
// this request just as you would for a regular collection.
//
status = STATUS_INVALID_PARAMETER;
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "SetFeature: invalid report id %d", packet.reportId);
return status;
}
//
// before touching control code make sure buffer is big enough.
//
if (packet.reportBufferLen > sizeof(HID_XGM_REPORT)) {
status = STATUS_INVALID_BUFFER_SIZE;
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "SetFeature: invalid input buffer. size %d, expect %d",
packet.reportBufferLen, (int)sizeof(HID_XGM_REPORT));
return status;
}
memcpy(
&QueueContext->LastXgmReport,
packet.reportBuffer,
packet.reportBufferLen);
return status;
}
NTSTATUS
GetInputReport(
_In_ PQUEUE_CONTEXT QueueContext,
_In_ WDFREQUEST Request
)
/*++
Routine Description:
Handles IOCTL_HID_GET_INPUT_REPORT for all the collection.
Arguments:
QueueContext - The object context associated with the queue
Request - Pointer to Request Packet.
Return Value:
NT status code.
--*/
{
NTSTATUS status;
HID_XFER_PACKET packet;
//ULONG reportSize;
//PHIDMINI_INPUT_REPORT reportBuffer;
TraceEvents(TRACE_LEVEL_INFORMATION, TRACE_DRIVER, "Enter %!FUNC!");
status = RequestGetHidXferPacket_ToReadFromDevice(
Request,
&packet);
if (!NT_SUCCESS(status)) {
return status;
}
UNREFERENCED_PARAMETER(QueueContext);
status = STATUS_NOT_IMPLEMENTED;
/*
if (packet.reportId != CONTROL_COLLECTION_REPORT_ID) {
//
// If collection ID is not for control collection then handle
// this request just as you would for a regular collection.
//
status = STATUS_INVALID_PARAMETER;
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "GetInputReport: invalid report id %d", packet.reportId);
return status;
}
reportSize = sizeof(HIDMINI_INPUT_REPORT);
if (packet.reportBufferLen < reportSize) {
status = STATUS_INVALID_BUFFER_SIZE;
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "GetInputReport: output buffer too small. Size %d, expect %d",
packet.reportBufferLen, reportSize);
return status;
}
reportBuffer = (PHIDMINI_INPUT_REPORT)(packet.reportBuffer);
reportBuffer->ReportId = CONTROL_COLLECTION_REPORT_ID;
reportBuffer->Data = QueueContext->OutputReport;
//
// Report how many bytes were copied
//
WdfRequestSetInformation(Request, reportSize);
*/
return status;
}
NTSTATUS
SetOutputReport(
_In_ PQUEUE_CONTEXT QueueContext,
_In_ WDFREQUEST Request
)
/*++
Routine Description:
Handles IOCTL_HID_SET_OUTPUT_REPORT for all the collection.
Arguments:
QueueContext - The object context associated with the queue
Request - Pointer to Request Packet.
Return Value:
NT status code.
--*/
{
NTSTATUS status;
HID_XFER_PACKET packet;
//ULONG reportSize;
//PHIDMINI_OUTPUT_REPORT reportBuffer;
TraceEvents(TRACE_LEVEL_INFORMATION, TRACE_DRIVER, "Enter %!FUNC!");
status = RequestGetHidXferPacket_ToWriteToDevice(
Request,
&packet);
if (!NT_SUCCESS(status)) {
return status;
}
UNREFERENCED_PARAMETER(QueueContext);
status = STATUS_NOT_IMPLEMENTED;
/*
if (packet.reportId != CONTROL_COLLECTION_REPORT_ID) {
//
// If collection ID is not for control collection then handle
// this request just as you would for a regular collection.
//
status = STATUS_INVALID_PARAMETER;
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "SetOutputReport: unknown report id %d", packet.reportId);
return status;
}
//
// before touching buffer make sure buffer is big enough.
//
reportSize = sizeof(HIDMINI_OUTPUT_REPORT);
if (packet.reportBufferLen < reportSize) {
status = STATUS_INVALID_BUFFER_SIZE;
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "SetOutputReport: invalid input buffer. size %d, expect %d",
packet.reportBufferLen, reportSize);
return status;
}
reportBuffer = (PHIDMINI_OUTPUT_REPORT)packet.reportBuffer;
QueueContext->OutputReport = reportBuffer->Data;
//
// Report how many bytes were copied
//
WdfRequestSetInformation(Request, reportSize);
*/
return status;
}
NTSTATUS
GetStringId(
_In_ WDFREQUEST Request,
_Out_ ULONG* StringId,
_Out_ ULONG* LanguageId
)
/*++
Routine Description:
Helper routine to decode IOCTL_HID_GET_INDEXED_STRING and IOCTL_HID_GET_STRING.
Arguments:
Request - Pointer to Request Packet.
Return Value:
NT status code.
--*/
{
NTSTATUS status;
ULONG inputValue;
#ifdef _KERNEL_MODE
WDF_REQUEST_PARAMETERS requestParameters;
//
// IOCTL_HID_GET_STRING: // METHOD_NEITHER
// IOCTL_HID_GET_INDEXED_STRING: // METHOD_OUT_DIRECT
//
// The string id (or string index) is passed in Parameters.DeviceIoControl.
// Type3InputBuffer. However, Parameters.DeviceIoControl.InputBufferLength
// was not initialized by hidclass.sys, therefore trying to access the
// buffer with WdfRequestRetrieveInputMemory will fail
//
// Another problem with IOCTL_HID_GET_INDEXED_STRING is that METHOD_OUT_DIRECT
// expects the input buffer to be Irp->AssociatedIrp.SystemBuffer instead of
// Type3InputBuffer. That will also fail WdfRequestRetrieveInputMemory.
//
// The solution to the above two problems is to get Type3InputBuffer directly
//
// Also note that instead of the buffer's content, it is the buffer address
// that was used to store the string id (or index)
//
WDF_REQUEST_PARAMETERS_INIT(&requestParameters);
WdfRequestGetParameters(Request, &requestParameters);
inputValue = PtrToUlong(
requestParameters.Parameters.DeviceIoControl.Type3InputBuffer);
status = STATUS_SUCCESS;
#else
WDFMEMORY inputMemory;
size_t inputBufferLength;
PVOID inputBuffer;
//
// mshidumdf.sys updates the IRP and passes the string id (or index) through
// the input buffer correctly based on the IOCTL buffer type
//
status = WdfRequestRetrieveInputMemory(Request, &inputMemory);
if (!NT_SUCCESS(status)) {
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "WdfRequestRetrieveInputMemory failed %!STATUS!", status);
return status;
}
inputBuffer = WdfMemoryGetBuffer(inputMemory, &inputBufferLength);
//
// make sure buffer is big enough.
//
if (inputBufferLength < sizeof(ULONG))
{
status = STATUS_INVALID_BUFFER_SIZE;
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "GetStringId: invalid input buffer. size %d, expect %d",
(int)inputBufferLength, (int)sizeof(ULONG));
return status;
}
inputValue = (*(PULONG)inputBuffer);
#endif
//
// The least significant two bytes of the INT value contain the string id.
//
* StringId = (inputValue & 0x0ffff);
//
// The most significant two bytes of the INT value contain the language
// ID (for example, a value of 1033 indicates English).
//
*LanguageId = (inputValue >> 16);
return status;
}
NTSTATUS
GetIndexedString(
_In_ WDFREQUEST Request
)
/*++
Routine Description:
Handles IOCTL_HID_GET_INDEXED_STRING
Arguments:
Request - Pointer to Request Packet.
Return Value:
NT status code.
--*/
{
NTSTATUS status;
ULONG languageId, stringIndex;
status = GetStringId(Request, &stringIndex, &languageId);
// While we don't use the language id, some minidrivers might.
//
UNREFERENCED_PARAMETER(languageId);
if (NT_SUCCESS(status)) {
if (stringIndex != XGMDEVICE_DEVICE_STRING_INDEX)
{
status = STATUS_INVALID_PARAMETER;
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "GetString: unknown string index %d", stringIndex);
return status;
}
status = RequestCopyFromBuffer(Request, XGMDEVICE_DEVICE_STRING, sizeof(XGMDEVICE_DEVICE_STRING));
}
return status;
}
NTSTATUS
GetString(
_In_ WDFREQUEST Request
)
/*++
Routine Description:
Handles IOCTL_HID_GET_STRING.
Arguments:
Request - Pointer to Request Packet.
Return Value:
NT status code.
--*/
{
NTSTATUS status;
ULONG languageId, stringId;
size_t stringSizeCb;
PWSTR string;
status = GetStringId(Request, &stringId, &languageId);
// While we don't use the language id, some minidrivers might.
//
UNREFERENCED_PARAMETER(languageId);
if (!NT_SUCCESS(status)) {
return status;
}
switch (stringId) {
case HID_STRING_ID_IMANUFACTURER:
stringSizeCb = sizeof(XGMDEVICE_MANUFACTURER_STRING);
string = XGMDEVICE_MANUFACTURER_STRING;
break;
case HID_STRING_ID_IPRODUCT:
stringSizeCb = sizeof(XGMDEVICE_PRODUCT_STRING);
string = XGMDEVICE_PRODUCT_STRING;
break;
case HID_STRING_ID_ISERIALNUMBER:
stringSizeCb = sizeof(XGMDEVICE_SERIAL_NUMBER_STRING);
string = XGMDEVICE_SERIAL_NUMBER_STRING;
break;
default:
status = STATUS_INVALID_PARAMETER;
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "GetString: unknown string id %d", stringId);
return status;
}
status = RequestCopyFromBuffer(Request, string, stringSizeCb);
return status;
}
#ifdef _KERNEL_MODE
//
// First let's review Buffer Descriptions for I/O Control Codes
//
// METHOD_BUFFERED
// - Input buffer: Irp->AssociatedIrp.SystemBuffer
// - Output buffer: Irp->AssociatedIrp.SystemBuffer
//
// METHOD_IN_DIRECT or METHOD_OUT_DIRECT
// - Input buffer: Irp->AssociatedIrp.SystemBuffer
// - Second buffer: Irp->MdlAddress
//
// METHOD_NEITHER
// - Input buffer: Parameters.DeviceIoControl.Type3InputBuffer;
// - Output buffer: Irp->UserBuffer
//
// HID minidriver IOCTL stores a pointer to HID_XFER_PACKET in Irp->UserBuffer.
// For IOCTLs like IOCTL_HID_GET_FEATURE (which is METHOD_OUT_DIRECT) this is
// not the expected buffer location. So we cannot retrieve UserBuffer from the
// IRP using WdfRequestXxx functions. Instead, we have to escape to WDM.
//
NTSTATUS
RequestGetHidXferPacket_ToReadFromDevice(
_In_ WDFREQUEST Request,
_Out_ HID_XFER_PACKET* Packet
)
{
NTSTATUS status;
WDF_REQUEST_PARAMETERS params;
WDF_REQUEST_PARAMETERS_INIT(¶ms);
WdfRequestGetParameters(Request, ¶ms);
if (params.Parameters.DeviceIoControl.OutputBufferLength < sizeof(HID_XFER_PACKET)) {
status = STATUS_BUFFER_TOO_SMALL;
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "RequestGetHidXferPacket: invalid HID_XFER_PACKET");
return status;
}
RtlCopyMemory(Packet, WdfRequestWdmGetIrp(Request)->UserBuffer, sizeof(HID_XFER_PACKET));
return STATUS_SUCCESS;
}
NTSTATUS
RequestGetHidXferPacket_ToWriteToDevice(
_In_ WDFREQUEST Request,
_Out_ HID_XFER_PACKET* Packet
)
{
NTSTATUS status;
WDF_REQUEST_PARAMETERS params;
WDF_REQUEST_PARAMETERS_INIT(¶ms);
WdfRequestGetParameters(Request, ¶ms);
if (params.Parameters.DeviceIoControl.InputBufferLength < sizeof(HID_XFER_PACKET)) {
status = STATUS_BUFFER_TOO_SMALL;
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "RequestGetHidXferPacket: invalid HID_XFER_PACKET");
return status;
}
RtlCopyMemory(Packet, WdfRequestWdmGetIrp(Request)->UserBuffer, sizeof(HID_XFER_PACKET));
return STATUS_SUCCESS;
}
#else
//
// HID minidriver IOCTL uses HID_XFER_PACKET which contains an embedded pointer.
//
// typedef struct _HID_XFER_PACKET {
// PUCHAR reportBuffer;
// ULONG reportBufferLen;
// UCHAR reportId;
// } HID_XFER_PACKET, *PHID_XFER_PACKET;
//
// UMDF cannot handle embedded pointers when marshalling buffers between processes.
// Therefore a special driver mshidumdf.sys is introduced to convert such IRPs to
// new IRPs (with new IOCTL name like IOCTL_UMDF_HID_Xxxx) where:
//
// reportBuffer - passed as one buffer inside the IRP
// reportId - passed as a second buffer inside the IRP
//
// The new IRP is then passed to UMDF host and driver for further processing.
//
NTSTATUS
RequestGetHidXferPacket_ToReadFromDevice(
_In_ WDFREQUEST Request,
_Out_ HID_XFER_PACKET* Packet
)
{
//
// Driver need to write to the output buffer (so that App can read from it)
//
// Report Buffer: Output Buffer
// Report Id : Input Buffer
//
NTSTATUS status;
WDFMEMORY inputMemory;
WDFMEMORY outputMemory;
size_t inputBufferLength;
size_t outputBufferLength;
PVOID inputBuffer;
PVOID outputBuffer;
//
// Get report Id from input buffer
//
status = WdfRequestRetrieveInputMemory(Request, &inputMemory);
if (!NT_SUCCESS(status)) {
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "WdfRequestRetrieveInputMemory failed %!STATUS!", status);
return status;
}
inputBuffer = WdfMemoryGetBuffer(inputMemory, &inputBufferLength);
if (inputBufferLength < sizeof(UCHAR)) {
status = STATUS_INVALID_BUFFER_SIZE;
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "WdfRequestRetrieveInputMemory: invalid input buffer. size %d, expect %d",
(int)inputBufferLength, (int)sizeof(UCHAR));
return status;
}
Packet->reportId = *(PUCHAR)inputBuffer;
//
// Get report buffer from output buffer
//
status = WdfRequestRetrieveOutputMemory(Request, &outputMemory);
if (!NT_SUCCESS(status)) {
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "WdfRequestRetrieveOutputMemory failed %!STATUS!", status);
return status;
}
outputBuffer = WdfMemoryGetBuffer(outputMemory, &outputBufferLength);
Packet->reportBuffer = (PUCHAR)outputBuffer;
Packet->reportBufferLen = (ULONG)outputBufferLength;
return status;
}
NTSTATUS
RequestGetHidXferPacket_ToWriteToDevice(
_In_ WDFREQUEST Request,
_Out_ HID_XFER_PACKET* Packet
)
{
//
// Driver need to read from the input buffer (which was written by App)
//
// Report Buffer: Input Buffer
// Report Id : Output Buffer Length
//
// Note that the report id is not stored inside the output buffer, as the
// driver has no read-access right to the output buffer, and trying to read
// from the buffer will cause an access violation error.
//
// The workaround is to store the report id in the OutputBufferLength field,
// to which the driver does have read-access right.
//
NTSTATUS status;
WDFMEMORY inputMemory;
WDFMEMORY outputMemory;
size_t inputBufferLength;
size_t outputBufferLength;
PVOID inputBuffer;
//
// Get report Id from output buffer length
//
status = WdfRequestRetrieveOutputMemory(Request, &outputMemory);
if (!NT_SUCCESS(status)) {
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "WdfRequestRetrieveOutputMemory failed %!STATUS!", status);
return status;
}
WdfMemoryGetBuffer(outputMemory, &outputBufferLength);
Packet->reportId = (UCHAR)outputBufferLength;
//
// Get report buffer from input buffer
//
status = WdfRequestRetrieveInputMemory(Request, &inputMemory);
if (!NT_SUCCESS(status)) {
TraceEvents(TRACE_LEVEL_ERROR, TRACE_DRIVER, "WdfRequestRetrieveInputMemory failed %!STATUS!", status);
return status;
}
inputBuffer = WdfMemoryGetBuffer(inputMemory, &inputBufferLength);
Packet->reportBuffer = (PUCHAR)inputBuffer;
Packet->reportBufferLen = (ULONG)inputBufferLength;
return status;
}
#endif