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
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
|
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
Module Name:
simsensor.c
Abstract:
The module implements a simulated sensor device.
@@BEGIN_DDKSPLIT
Author:
Nicholas Brekhus (NiBrekhu) 02-Aug-2011
Revision History:
@@END_DDKSPLIT
--*/
//-------------------------------------------------------------------- Includes
#include "simsensor.h"
//--------------------------------------------------------------------- Globals
ULONG SimSensorDebug = SIMSENSOR_PRINT_ALWAYS;
#define VIRTUAL_SENSOR_RESET_TEMPERATURE 42
// {FCB15302-14A9-4bf8-8A0B-888E0D33BEDE}
DEFINE_GUID(GUID_VIRTUAL_TEMPERATURE_SENSOR,
0xfcb15302, 0x14a9, 0x4bf8, 0x8a, 0xb, 0x88, 0x8e, 0xd, 0x33, 0xbe, 0xde);
//------------------------------------------------------------------ Prototypes
DRIVER_INITIALIZE DriverEntry;
EVT_WDF_DRIVER_DEVICE_ADD SimSensorDriverDeviceAdd;
EVT_WDF_IO_QUEUE_IO_DEVICE_CONTROL SimSensorIoDeviceControl;
EVT_WDF_IO_QUEUE_IO_INTERNAL_DEVICE_CONTROL SimSensorIoInternalDeviceControl;
EVT_WDF_IO_QUEUE_IO_STOP SimSensorQueueIoStop;
EVT_WDF_DEVICE_SELF_MANAGED_IO_SUSPEND SimSensorSelfManagedIoSuspend;
EVT_WDF_TIMER SimSensorExpiredRequestTimer;
EVT_WDF_WORKITEM SimSensorTemperatureInterruptWorker;
_IRQL_requires_(PASSIVE_LEVEL)
VOID
SimSensorAddReadRequest (
_In_ WDFDEVICE Device,
_In_ WDFREQUEST ReadRequest
);
_IRQL_requires_(PASSIVE_LEVEL)
NTSTATUS
SimSensorScanPendingQueue (
_In_ WDFDEVICE Device
);
_IRQL_requires_(PASSIVE_LEVEL)
VOID
SimSensorCheckQueuedRequest (
_In_ WDFDEVICE Device,
_In_ ULONG Temperature,
_Inout_ PULONG LowerBound,
_Inout_ PULONG UpperBound,
_In_ WDFREQUEST Request
);
_IRQL_requires_(PASSIVE_LEVEL)
BOOLEAN
SimSensorAreConstraintsSatisfied (
_In_ ULONG Temperature,
_In_ ULONG LowerBound,
_In_ ULONG UpperBound,
_In_ LARGE_INTEGER DueTime);
VOID
SimSensorTemperatureInterrupt (
_In_ WDFDEVICE Device
);
//
// Virtual hardware programming interface
//
VOID
SimSensorSetVirtualInterruptThresholds (
_In_ WDFDEVICE Device,
_In_ ULONG LowerBound,
_In_ ULONG UpperBound
);
ULONG
SimSensorReadVirtualTemperature (
_In_ WDFDEVICE Device
);
//
// Virtual hardware internal routines
//
EVT_WDF_DEVICE_D0_ENTRY SimSensorDeviceD0Entry;
EVT_WDF_DEVICE_D0_EXIT SimSensorDeviceD0Exit;
POWER_SETTING_CALLBACK SimSensorSettingCallback;
//--------------------------------------------------------------------- Pragmas
#pragma alloc_text(INIT, DriverEntry)
#pragma alloc_text(PAGE, SimSensorAddReadRequest)
#pragma alloc_text(PAGE, SimSensorAreConstraintsSatisfied)
#pragma alloc_text(PAGE, SimSensorCheckQueuedRequest)
#pragma alloc_text(PAGE, SimSensorSelfManagedIoSuspend)
#pragma alloc_text(PAGE, SimSensorDriverDeviceAdd)
#pragma alloc_text(PAGE, SimSensorExpiredRequestTimer)
#pragma alloc_text(PAGE, SimSensorScanPendingQueue)
#pragma alloc_text(PAGE, SimSensorIoDeviceControl)
//------------------------------------------------------------------- Functions
NTSTATUS
DriverEntry (
PDRIVER_OBJECT DriverObject,
PUNICODE_STRING RegistryPath
)
/*++
Routine Description:
DriverEntry initializes the driver and is the first routine called by the
system after the driver is loaded. DriverEntry configures and creates a WDF
driver object.
Parameters Description:
DriverObject - Supplies a pointer to the driver object.
RegistryPath - Supplies a pointer to a unicode string representing the path
to the driver-specific key in the registry.
Return Value:
NTSTATUS.
--*/
{
WDF_OBJECT_ATTRIBUTES DriverAttributes;
WDF_DRIVER_CONFIG DriverConfig;
NTSTATUS Status;
UNREFERENCED_PARAMETER(RegistryPath);
DebugEnter();
WDF_DRIVER_CONFIG_INIT(&DriverConfig, SimSensorDriverDeviceAdd);
//
// Initialize attributes and a context area for the driver object.
//
WDF_OBJECT_ATTRIBUTES_INIT(&DriverAttributes);
DriverAttributes.SynchronizationScope = WdfSynchronizationScopeNone;
//
// Create the driver object
//
Status = WdfDriverCreate(DriverObject,
RegistryPath,
&DriverAttributes,
&DriverConfig,
WDF_NO_HANDLE);
if (!NT_SUCCESS(Status)) {
DebugPrint(SIMSENSOR_ERROR,
"WdfDriverCreate() Failed. Status 0x%x\n",
Status);
goto DriverEntryEnd;
}
DriverEntryEnd:
DebugExitStatus(Status);
return Status;
}
NTSTATUS
SimSensorDriverDeviceAdd (
WDFDRIVER Driver,
PWDFDEVICE_INIT DeviceInit
)
/*++
Routine Description:
EvtDriverDeviceAdd is called by the framework in response to AddDevice call
from the PnP manager. A WDF device object is created and initialized to
represent a new instance of the battery device.
Arguments:
Driver - Supplies a handle to the WDF Driver object.
DeviceInit - Supplies a pointer to a framework-allocated WDFDEVICE_INIT
structure.
Return Value:
NTSTATUS
--*/
{
WDF_OBJECT_ATTRIBUTES DeviceAttributes;
WDFDEVICE DeviceHandle;
PFDO_DATA DevExt;
BOOLEAN LockHeld;
WDF_IO_QUEUE_CONFIG PendingRequestQueueConfig;
WDF_PNPPOWER_EVENT_CALLBACKS PnpPowerCallbacks;
WDFQUEUE Queue;
WDF_IO_QUEUE_CONFIG QueueConfig;
NTSTATUS Status;
WDF_OBJECT_ATTRIBUTES WorkitemAttributes;
WDF_WORKITEM_CONFIG WorkitemConfig;
UNREFERENCED_PARAMETER(Driver);
DebugEnter();
PAGED_CODE();
LockHeld = FALSE;
//
// Initialize attributes and a context area for the device object.
//
WDF_OBJECT_ATTRIBUTES_INIT(&DeviceAttributes);
WDF_OBJECT_ATTRIBUTES_SET_CONTEXT_TYPE(&DeviceAttributes, FDO_DATA);
//
// Initailize power callbacks
//
WDF_PNPPOWER_EVENT_CALLBACKS_INIT(&PnpPowerCallbacks);
PnpPowerCallbacks.EvtDeviceD0Entry = SimSensorDeviceD0Entry;
PnpPowerCallbacks.EvtDeviceD0Exit = SimSensorDeviceD0Exit;
PnpPowerCallbacks.EvtDeviceSelfManagedIoSuspend =
SimSensorSelfManagedIoSuspend;
WdfDeviceInitSetPnpPowerEventCallbacks(DeviceInit, &PnpPowerCallbacks);
//
// Create a framework device object. This call will in turn create
// a WDM device object, attach to the lower stack, and set the
// appropriate flags and attributes.
//
Status = WdfDeviceCreate(&DeviceInit, &DeviceAttributes, &DeviceHandle);
if (!NT_SUCCESS(Status)) {
DebugPrint(SIMSENSOR_ERROR,
"WdfDeviceCreate() Failed. 0x%x\n",
Status);
goto DriverDeviceAddEnd;
}
DevExt = GetDeviceExtension(DeviceHandle);
//
// Configure a default queue for IO requests. This queue processes requests
// to read the sensor state.
//
WDF_IO_QUEUE_CONFIG_INIT_DEFAULT_QUEUE(&QueueConfig,
WdfIoQueueDispatchParallel);
QueueConfig.EvtIoDeviceControl = SimSensorIoDeviceControl;
//
// The system uses IoInternalDeviceControl requests to communicate with the
// ACPI driver on the device stack. For proper operation of thermal zones,
// these requests must be forwarded unless the driver knows how to handle
// them.
//
QueueConfig.EvtIoInternalDeviceControl = SimSensorIoInternalDeviceControl;
Status = WdfIoQueueCreate(DeviceHandle,
&QueueConfig,
WDF_NO_OBJECT_ATTRIBUTES,
&Queue);
if (!NT_SUCCESS(Status)) {
DebugPrint(SIMSENSOR_ERROR,
"WdfIoQueueCreate() (Default) Failed. 0x%x\n",
Status);
goto DriverDeviceAddEnd;
}
//
// Configure a manual dispatch queue for pending requests. This queue
// stores requests to read the sensor state which can't be retired
// immediately.
//
WDF_IO_QUEUE_CONFIG_INIT(&PendingRequestQueueConfig,
WdfIoQueueDispatchManual);
Status = WdfIoQueueCreate(DeviceHandle,
&PendingRequestQueueConfig,
WDF_NO_OBJECT_ATTRIBUTES,
&DevExt->PendingRequestQueue);
PendingRequestQueueConfig.EvtIoStop = SimSensorQueueIoStop;
if (!NT_SUCCESS(Status)) {
DebugPrint(SIMSENSOR_ERROR,
"WdfIoQueueCreate() (Pending) Failed. 0x%x\n",
Status);
goto DriverDeviceAddEnd;
}
//
// Configure a workitem to process the simulated interrupt.
//
WDF_OBJECT_ATTRIBUTES_INIT(&WorkitemAttributes);
WorkitemAttributes.ParentObject = DeviceHandle;
WDF_WORKITEM_CONFIG_INIT(&WorkitemConfig,
SimSensorTemperatureInterruptWorker);
Status = WdfWorkItemCreate(&WorkitemConfig,
&WorkitemAttributes,
&DevExt->InterruptWorker);
if (!NT_SUCCESS(Status)) {
DebugPrint(SIMSENSOR_ERROR,
"WdfWorkItemCreate() Failed. 0x%x\n",
Status);
goto DriverDeviceAddEnd;
}
//
// Create the request queue waitlock.
//
Status = WdfWaitLockCreate(NULL, &DevExt->QueueLock);
if (!NT_SUCCESS(Status)) {
DebugPrint(SIMSENSOR_ERROR,
"WdfWaitLockCreate() Failed. Status 0x%x\n",
Status);
goto DriverDeviceAddEnd;
}
//
// Initilize the simulated sensor hardware.
//
DevExt->Sensor.LowerBound = 0;
DevExt->Sensor.UpperBound = (ULONG)-1;
DevExt->Sensor.Temperature = VIRTUAL_SENSOR_RESET_TEMPERATURE;
Status = WdfWaitLockCreate(NULL, &DevExt->Sensor.Lock);
if (!NT_SUCCESS(Status)) {
DebugPrint(SIMSENSOR_ERROR,
"WdfWaitLockCreate() Failed. 0x%x\n",
Status);
goto DriverDeviceAddEnd;
}
DriverDeviceAddEnd:
DebugExitStatus(Status);
return Status;
}
VOID
SimSensorQueueIoStop (
_In_ WDFQUEUE Queue,
_In_ WDFREQUEST Request,
_In_ ULONG ActionFlags
)
/*++
Routine Description:
This routine is called when the framework is stopping the request's I/O
queue.
Arguments:
Queue - Supplies handle to the framework queue object that is associated
with the I/O request.
Request - Supplies handle to a framework request object.
ActionFlags - Supplies the reason that the callback is being called.
Return Value:
None.
--*/
{
NTSTATUS Status;
UNREFERENCED_PARAMETER(Queue);
if(ActionFlags & WdfRequestStopRequestCancelable) {
Status = WdfRequestUnmarkCancelable(Request);
if (Status == STATUS_CANCELLED) {
goto SimSensorQueueIoStopEnd;
}
NT_ASSERT(NT_SUCCESS(Status));
}
WdfRequestStopAcknowledge(Request, FALSE);
SimSensorQueueIoStopEnd:
return;
}
VOID
SimSensorIoDeviceControl(
WDFQUEUE Queue,
WDFREQUEST Request,
size_t OutputBufferLength,
size_t InputBufferLength,
ULONG IoControlCode
)
/*++
Routine Description:
Handles requests to read or write the simulated device state.
Arguments:
Queue - Supplies a handle to the framework queue object that is associated
with the I/O request.
Request - Supplies a handle to a framework request object. This one
represents the IRP_MJ_DEVICE_CONTROL IRP received by the framework.
OutputBufferLength - Supplies the length, in bytes, of the request's output
buffer, if an output buffer is available.
InputBufferLength - Supplies the length, in bytes, of the request's input
buffer, if an input buffer is available.
IoControlCode - Supplies the Driver-defined or system-defined I/O control
code (IOCtl) that is associated with the request.
Return Value:
VOID
--*/
{
ULONG BytesReturned;
WDFDEVICE Device;
BOOLEAN Result;
WDF_REQUEST_SEND_OPTIONS RequestSendOptions;
NTSTATUS Status;
UNREFERENCED_PARAMETER(InputBufferLength);
UNREFERENCED_PARAMETER(OutputBufferLength);
PAGED_CODE();
Device = WdfIoQueueGetDevice(Queue);
DebugPrint(SIMSENSOR_NOTE, "SimSensorIoDeviceControl: 0x%p\n", Device);
BytesReturned = 0;
switch(IoControlCode) {
case IOCTL_THERMAL_READ_TEMPERATURE:
//
// This call will either complete the request or put it in the pending
// queue.
//
SimSensorAddReadRequest(Device, Request);
break;
default:
//
// Unrecognized IOCtls must be forwarded down the stack.
//
WDF_REQUEST_SEND_OPTIONS_INIT(
&RequestSendOptions,
WDF_REQUEST_SEND_OPTION_SEND_AND_FORGET);
WdfRequestFormatRequestUsingCurrentType(Request);
Result = WdfRequestSend(
Request,
WdfDeviceGetIoTarget(Device),
&RequestSendOptions);
if (Result == FALSE) {
Status = WdfRequestGetStatus(Request);
DebugPrint(SIMSENSOR_WARN,
"WdfRequestSend() Failed. Request Status = 0x%x\n",
Status);
WdfRequestComplete(Request, Status);
}
break;
}
}
VOID
SimSensorIoInternalDeviceControl (
WDFQUEUE Queue,
WDFREQUEST Request,
size_t OutputBufferLength,
size_t InputBufferLength,
ULONG IoControlCode)
/*++
Description:
The system uses IoInternalDeviceControl requests to communicate with the
ACPI driver on the device stack. For proper operation of thermal zones,
these requests must be forwarded unless the driver knows how to handle
them.
--*/
{
WDF_REQUEST_SEND_OPTIONS RequestSendOptions;
BOOLEAN Return;
NTSTATUS Status;
UNREFERENCED_PARAMETER(OutputBufferLength);
UNREFERENCED_PARAMETER(InputBufferLength);
UNREFERENCED_PARAMETER(IoControlCode);
DebugEnter();
WdfRequestFormatRequestUsingCurrentType(Request);
WDF_REQUEST_SEND_OPTIONS_INIT(
&RequestSendOptions,
WDF_REQUEST_SEND_OPTION_SEND_AND_FORGET);
Return = WdfRequestSend(
Request,
WdfDeviceGetIoTarget(WdfIoQueueGetDevice(Queue)),
&RequestSendOptions);
if (Return == FALSE) {
Status = WdfRequestGetStatus(Request);
DebugPrint(SIMSENSOR_WARN,
"WdfRequestSend() Failed. Request Status=0x%x\n",
Status);
WdfRequestComplete(Request, Status);
}
DebugExit();
}
_IRQL_requires_(PASSIVE_LEVEL)
BOOLEAN
SimSensorAreConstraintsSatisfied (
_In_ ULONG Temperature,
_In_ ULONG LowerBound,
_In_ ULONG UpperBound,
_In_ LARGE_INTEGER DueTime
)
/*++
Routine Description:
Checks whether a request can be retired.
Arguments:
Temperature - Supplies the device's current temperature.
LowerBound - Supplies the request's lower temperature bound.
UpperBound - Supplies the request's upper temperature bound.
DueTime - Supplies when the request expires.
Return Value:
TRUE - The request is retireable.
FALSE - The request is not retireable.
--*/
{
LARGE_INTEGER CurrentTime;
PAGED_CODE();
if (Temperature <= LowerBound || Temperature >= UpperBound) {
return TRUE;
}
//
// Negative due times are meaningless, except for the special value -1,
// which represents no timeout.
//
if (DueTime.QuadPart < 0) {
return FALSE;
}
KeQuerySystemTime(&CurrentTime);
if ((CurrentTime.QuadPart - DueTime.QuadPart) >= 0) {
//
// This request expired in the past.
//
return TRUE;
}
return FALSE;
}
_IRQL_requires_(PASSIVE_LEVEL)
VOID
SimSensorAddReadRequest (
_In_ WDFDEVICE Device,
_In_ WDFREQUEST ReadRequest
)
/*++
Routine Description:
Handles IOCTL_THERMAL_READ_TEMPERATURE. If the request can be satisfied,
it is completed immediately. Else, adds request to pending request queue.
Arguments:
Device - Supplies a handle to the device that received the request.
ReadRequest - Supplies a handle to the request.
--*/
{
ULONG BytesReturned;
PREAD_REQUEST_CONTEXT Context;
WDF_OBJECT_ATTRIBUTES ContextAttributes;
PFDO_DATA DevExt;
LARGE_INTEGER ExpirationTime;
size_t Length;
BOOLEAN LockHeld;
PULONG RequestTemperature;
NTSTATUS Status;
ULONG Temperature;
WDFTIMER Timer;
WDF_OBJECT_ATTRIBUTES TimerAttributes;
WDF_TIMER_CONFIG TimerConfig;
PTHERMAL_WAIT_READ ThermalWaitRead;
DebugEnter();
PAGED_CODE();
DevExt = GetDeviceExtension(Device);
BytesReturned = 0;
LockHeld = FALSE;
Status = WdfRequestRetrieveInputBuffer(ReadRequest,
sizeof(THERMAL_WAIT_READ),
&ThermalWaitRead,
&Length);
if (!NT_SUCCESS(Status) || Length != sizeof(THERMAL_WAIT_READ)) {
//
// This request is malformed, bail.
//
WdfRequestCompleteWithInformation(ReadRequest, Status, BytesReturned);
goto AddReadRequestEnd;
}
if (ThermalWaitRead->Timeout != -1 /* INFINITE */ ) {
//
// Estimate the system time this request will expire at.
//
KeQuerySystemTime(&ExpirationTime);
ExpirationTime.QuadPart += ThermalWaitRead->Timeout * 10000;
} else {
//
// Value which indicates the request never expires.
//
ExpirationTime.QuadPart = -1LL /* INFINITE */;
}
//
// Handle the immediate timeout case in the fast path.
//
Temperature = SimSensorReadVirtualTemperature(Device);
if (SimSensorAreConstraintsSatisfied(Temperature,
ThermalWaitRead->LowTemperature,
ThermalWaitRead->HighTemperature,
ExpirationTime)) {
Status = WdfRequestRetrieveOutputBuffer(ReadRequest,
sizeof(ULONG),
&RequestTemperature,
&Length);
if(NT_SUCCESS(Status) && Length == sizeof(ULONG)) {
*RequestTemperature = Temperature;
BytesReturned = sizeof(ULONG);
} else {
Status = STATUS_INVALID_PARAMETER;
DebugPrint(SIMSENSOR_ERROR,
"WdfRequestRetrieveOutputBuffer() Failed. 0x%x",
Status);
}
WdfRequestCompleteWithInformation(ReadRequest, Status, BytesReturned);
} else {
WdfWaitLockAcquire(DevExt->QueueLock, NULL);
LockHeld = TRUE;
//
// Create a context to store request-specific information.
//
WDF_OBJECT_ATTRIBUTES_INIT_CONTEXT_TYPE(&ContextAttributes,
READ_REQUEST_CONTEXT);
Status = WdfObjectAllocateContext(ReadRequest,
&ContextAttributes,
&Context);
if(!NT_SUCCESS(Status)) {
DebugPrint(SIMSENSOR_ERROR,
"WdfObjectAllocateContext() Failed. 0x%x",
Status);
WdfRequestCompleteWithInformation(ReadRequest,
Status,
BytesReturned);
goto AddReadRequestEnd;
}
Context->ExpirationTime.QuadPart = ExpirationTime.QuadPart;
Context->LowTemperature = ThermalWaitRead->LowTemperature;
Context->HighTemperature = ThermalWaitRead->HighTemperature;
if(Context->ExpirationTime.QuadPart != -1LL /* INFINITE */ ) {
//
// This request eventually expires, create a timer to complete it.
//
WDF_TIMER_CONFIG_INIT(&TimerConfig, SimSensorExpiredRequestTimer);
WDF_OBJECT_ATTRIBUTES_INIT(&TimerAttributes);
TimerAttributes.ExecutionLevel = WdfExecutionLevelPassive;
TimerAttributes.SynchronizationScope = WdfSynchronizationScopeNone;
TimerAttributes.ParentObject = Device;
Status = WdfTimerCreate(&TimerConfig,
&TimerAttributes,
&Timer);
if(!NT_SUCCESS(Status)) {
DebugPrint(SIMSENSOR_ERROR,
"WdfTimerCreate() Failed. 0x%x",
Status);
WdfRequestCompleteWithInformation(ReadRequest,
Status,
BytesReturned);
goto AddReadRequestEnd;
}
WdfTimerStart(Timer,
WDF_REL_TIMEOUT_IN_MS(ThermalWaitRead->Timeout));
}
Status = WdfRequestForwardToIoQueue(ReadRequest,
DevExt->PendingRequestQueue);
if(!NT_SUCCESS(Status)) {
DebugPrint(SIMSENSOR_ERROR,
"WdfRequestForwardToIoQueue() Failed. 0x%x",
Status);
WdfRequestCompleteWithInformation(ReadRequest,
Status,
BytesReturned);
goto AddReadRequestEnd;
}
//
// Force a rescan of the queue to update the interrupt thresholds.
//
SimSensorScanPendingQueue(Device);
}
AddReadRequestEnd:
if(LockHeld == TRUE) {
WdfWaitLockRelease(DevExt->QueueLock);
}
DebugExitStatus(Status);
}
_IRQL_requires_(PASSIVE_LEVEL)
NTSTATUS
SimSensorScanPendingQueue (
_In_ WDFDEVICE Device
)
/*++
Routine Description:
This routine scans the device's pending queue for retirable requests.
N.B. This routine requires the QueueLock be held.
Arguments:
Device - Supplies a handle to the device.
--*/
{
WDFREQUEST CurrentRequest;
PFDO_DATA DevExt;
WDFREQUEST LastRequest;
ULONG LowerBound;
NTSTATUS Status;
ULONG Temperature;
ULONG UpperBound;
DebugEnter();
PAGED_CODE();
DevExt = GetDeviceExtension(Device);
Status = STATUS_SUCCESS;
LastRequest = NULL;
CurrentRequest = NULL;
Temperature = SimSensorReadVirtualTemperature(Device);
//
// Prime the walk by finding the first request present. If there are no
// requests, bail out immediately.
//
LowerBound = 0;
UpperBound = (ULONG)-1;
Status = WdfIoQueueFindRequest(DevExt->PendingRequestQueue,
NULL,
NULL,
NULL,
&CurrentRequest);
//
// Due to a technical limitation in SDV analysis engine, the following
// analysis assume has to be inserted to supress a false defect for
// the wdfioqueueretrievefoundrequest rule.
//
_Analysis_assume_(Status == STATUS_NOT_FOUND);
while (NT_SUCCESS(Status)) {
//
// Walk past the current request. By walking past the current request
// before checking it, the walk doesn't have to restart every time a
// request is satisfied and removed form the queue.
//
LastRequest = CurrentRequest;
Status = WdfIoQueueFindRequest(DevExt->PendingRequestQueue,
LastRequest,
NULL,
NULL,
&CurrentRequest);
//
// Process the last request.
//
SimSensorCheckQueuedRequest(Device,
Temperature,
&LowerBound,
&UpperBound,
LastRequest);
WdfObjectDereference(LastRequest);
if(Status == STATUS_NOT_FOUND) {
//
// LastRequest unexpectedly disappeared from the queue. Start over.
//
LowerBound = 0;
UpperBound = (ULONG)-1;
Status = WdfIoQueueFindRequest(DevExt->PendingRequestQueue,
NULL,
NULL,
NULL,
&CurrentRequest);
}
}
//
// Update the thresholds based on the latest contents of the queue.
//
SimSensorSetVirtualInterruptThresholds(Device, LowerBound, UpperBound);
DebugExitStatus(Status);
return Status;
}
NTSTATUS
SimSensorSelfManagedIoSuspend (
_In_ WDFDEVICE Device
)
/*++
Routine Description:
Stops self-managed IO queues in preparation for D0 exit.
Return Value:
NTSTATUS
--*/
{
PFDO_DATA DevExt;
PAGED_CODE();
DevExt = GetDeviceExtension(Device);
WdfIoQueueStopSynchronously(DevExt->PendingRequestQueue);
return STATUS_SUCCESS;
}
_IRQL_requires_(PASSIVE_LEVEL)
VOID
SimSensorCheckQueuedRequest (
_In_ WDFDEVICE Device,
_In_ ULONG Temperature,
_Inout_ PULONG LowerBound,
_Inout_ PULONG UpperBound,
_In_ WDFREQUEST Request
)
/*++
Routine Description:
Examines a request and performs one of the following actions:
* Retires the request if it is satisfied (the sensor temperature has
exceeded the bounds specified in the request)
* Retires the request if it is expired (the timer due time is in the past)
* Tightens the upper and lower bounds if the request remains in the queue.
Arguments:
Device - Supplies a handle to the device which owns this request.
Temperature - Supplies the current thermal zone temperature.
LowerBound - Supplies the lower bound threshold to adjust.
UpperBound - Supplies the upper bound threshold to adjust.
Request - Supplies a handle to the request.
--*/
{
ULONG BytesReturned;
LARGE_INTEGER CurrentTime;
PFDO_DATA DevExt;
size_t Length;
PREAD_REQUEST_CONTEXT Context;
WDFREQUEST RetrievedRequest;
PULONG RequestTemperature;
NTSTATUS Status;
DebugEnter();
PAGED_CODE();
KeQuerySystemTime(&CurrentTime);
DevExt = GetDeviceExtension(Device);
Context = WdfObjectGetTypedContext(Request, READ_REQUEST_CONTEXT);
RetrievedRequest = NULL;
//
// Complete the request if:
//
// 1. The temperature has exceeded one of the request thresholds.
// 2. The request timeout is in the past (but not negative).
//
if (SimSensorAreConstraintsSatisfied(Temperature,
Context->LowTemperature,
Context->HighTemperature,
Context->ExpirationTime)) {
Status = WdfIoQueueRetrieveFoundRequest(DevExt->PendingRequestQueue,
Request,
&RetrievedRequest);
if(!NT_SUCCESS(Status)) {
DebugPrint(SIMSENSOR_ERROR,
"WdfIoQueueRetrieveFoundRequest() Failed. 0x%x",
Status);
//
// Bail, likely because the request disappeared from the
// queue.
//
goto CheckQueuedRequestEnd;
}
Status = WdfRequestRetrieveOutputBuffer(RetrievedRequest,
sizeof(ULONG),
&RequestTemperature,
&Length);
if(NT_SUCCESS(Status) && (Length == sizeof(ULONG))) {
*RequestTemperature = Temperature;
BytesReturned = sizeof(ULONG);
} else {
//
// The request's return buffer is malformed.
//
BytesReturned = 0;
Status = STATUS_INVALID_PARAMETER;
DebugPrint(SIMSENSOR_ERROR,
"WdfRequestRetrieveOutputBuffer() Failed. 0x%x",
Status);
}
WdfRequestCompleteWithInformation(RetrievedRequest,
Status,
BytesReturned);
} else {
//
// The request will remain in the queue. Update the bounds accordingly.
//
if (*LowerBound < Context->LowTemperature) {
*LowerBound = Context->LowTemperature;
}
if (*UpperBound > Context->HighTemperature) {
*UpperBound = Context->HighTemperature;
}
}
CheckQueuedRequestEnd:
DebugExit();
return;
}
VOID
SimSensorExpiredRequestTimer (
WDFTIMER Timer
)
/*++
Routine Description:
This routine is invoked when a request timer expires. A scan of the pending
queue to complete expired and satisfied requests is initiated.
Arguments:
Timer - Supplies a handle to the timer which expired.
--*/
{
PFDO_DATA DevExt;
WDFDEVICE Device;
DebugEnter();
PAGED_CODE();
Device = (WDFDEVICE)WdfTimerGetParentObject(Timer);
DevExt = GetDeviceExtension(Device);
WdfWaitLockAcquire(DevExt->QueueLock, NULL);
SimSensorScanPendingQueue(Device);
WdfWaitLockRelease(DevExt->QueueLock);
DebugExit();
}
VOID
SimSensorTemperatureInterruptWorker (
_In_ WDFWORKITEM WorkItem
)
/*++
Routine Description:
This routine is invoked to call into the device to notify it of a
temperature change.
Arguments:
WorkItem - Supplies a handle to this work item.
Return Value:
None.
--*/
{
PFDO_DATA DevExt;
WDFDEVICE Device;
Device = (WDFDEVICE)WdfWorkItemGetParentObject(WorkItem);
DevExt = GetDeviceExtension(Device);
WdfWaitLockAcquire(DevExt->QueueLock, NULL);
SimSensorScanPendingQueue(Device);
WdfWaitLockRelease(DevExt->QueueLock);
return;
}
VOID
SimSensorTemperatureInterrupt (
_In_ WDFDEVICE Device
)
/*++
Routine Description:
This routine is invoked to simulate an interrupt from the virtual sensor
device. It performs all the work a normal ISR would perform.
Arguments:
Device - Supplies a handle to the device.
Return Value:
None.
--*/
{
PFDO_DATA DevExt;
DevExt = GetDeviceExtension(Device);
WdfWorkItemEnqueue(DevExt->InterruptWorker);
return;
}
//-------------------------------------------------- Virtual Temperature Sensor
NTSTATUS
SimSensorDeviceD0Entry (
_In_ WDFDEVICE Device,
_In_ WDF_POWER_DEVICE_STATE PreviousState
)
/*++
Routine Description:
This routine is invoked when the device enters the D0 power state, and
registers for the power policy setting that drives the virtual interrupt.
Arguments:
Device - Supplies a handle to the device that is powering up.
PreviousState - Supplies the previous power state of the device.
Return Value:
NTSTATUS
--*/
{
PFDO_DATA DevExt;
PVOID Handle;
NTSTATUS Status;
UNREFERENCED_PARAMETER(PreviousState);
Status = PoRegisterPowerSettingCallback(
WdfDeviceWdmGetDeviceObject(Device),
&GUID_VIRTUAL_TEMPERATURE_SENSOR,
SimSensorSettingCallback,
(PVOID)Device,
&Handle);
if (NT_SUCCESS(Status)) {
DevExt = GetDeviceExtension(Device);
DevExt->Sensor.PolicyHandle = Handle;
}
return Status;
}
NTSTATUS
SimSensorDeviceD0Exit (
_In_ WDFDEVICE Device,
_In_ WDF_POWER_DEVICE_STATE TargetState
)
/*++
Routine Description:
This routine is invoked when the device exits the D0 power state, and
unregisters the power policy setting that drives the virtual interrupt.
Arguments:
Device - Supplies a handle to the device that is powering up.
TargetState - Supplies the next power state of the device.
Return Value:
NTSTATUS
--*/
{
PFDO_DATA DevExt;
UNREFERENCED_PARAMETER(TargetState);
DevExt = GetDeviceExtension(Device);
if (DevExt->Sensor.PolicyHandle != NULL) {
PoUnregisterPowerSettingCallback(DevExt->Sensor.PolicyHandle);
DevExt->Sensor.PolicyHandle = NULL;
}
return STATUS_SUCCESS;
}
NTSTATUS
SimSensorSettingCallback (
_In_ LPCGUID SettingGuid,
_In_reads_bytes_(ValueLength) PVOID Value,
_In_ ULONG ValueLength,
_Inout_opt_ PVOID Context
)
/*++
Routine Description:
This routine is invoked to notify the device of a change to the power
setting that drives the virtual temperature sensor interrupt.
Arguments:
SettingGuid - Supplies the GUID of the power setting that changed.
Value - Supplies the power setting value.
ValueLength - Supplies the power setting value.
Context - Supplies the device to update.
Return Value:
NTSTATUS
--*/
{
PFDO_DATA DevExt;
BOOLEAN Interrupt;
NTSTATUS Status;
ULONG Temperature;
UNREFERENCED_PARAMETER(SettingGuid);
if (ValueLength != sizeof(ULONG)) {
Status = STATUS_INVALID_PARAMETER;
goto SettingCallbackEnd;
}
Temperature = *(PULONG)Value;
_Analysis_assume_(Context != NULL);
NT_ASSERT(Context != NULL);
DevExt = GetDeviceExtension((WDFDEVICE)Context);
WdfWaitLockAcquire(DevExt->Sensor.Lock, NULL);
//
// If the policy setting has reached the reset value, enable the
// temperature sensor. This prevents the policy from being set to a high
// temperture, causing a critical shutdown, and then starting out above
// the critical shutdown tempertaure at the next boot.
//
if (Temperature == VIRTUAL_SENSOR_RESET_TEMPERATURE) {
DevExt->Sensor.Enabled = TRUE;
}
//
// If the reset value hasn't been reached yet, use a known safe low
// temperature as a placeholder.
//
if (DevExt->Sensor.Enabled == FALSE) {
Temperature = VIRTUAL_SENSOR_RESET_TEMPERATURE;
}
//
// Special case boundary temperature values to avoid logic for handling
// them elsewhere. Avoid the boundary values because it is impossible for
// the system to request a lower or higher value. This should not be an
// issue for a real sensor device.
//
if (Temperature == 0) {
Temperature = 1;
}
if (Temperature == (ULONG)-1) {
Temperature = (ULONG)-2;
}
DevExt->Sensor.Temperature = Temperature;
//
// Check to see if the temperature has exceeded either of the thresholds
// for noticing a temperature change. If so, the virtual interrupt will
// need to be fired.
//
if ((DevExt->Sensor.Temperature <= DevExt->Sensor.LowerBound) ||
(DevExt->Sensor.Temperature >= DevExt->Sensor.UpperBound)) {
Interrupt = TRUE;
} else {
Interrupt = FALSE;
}
WdfWaitLockRelease(DevExt->Sensor.Lock);
//
// Fire the virtual interrupt outside the lock, to avoid any locking issues.
//
if (Interrupt != FALSE) {
SimSensorTemperatureInterrupt((WDFDEVICE)Context);
}
Status = STATUS_SUCCESS;
SettingCallbackEnd:
return Status;
}
VOID
SimSensorSetVirtualInterruptThresholds (
_In_ WDFDEVICE Device,
_In_ ULONG LowerBound,
_In_ ULONG UpperBound
)
/*++
Routine Description:
This routine is invoked to change the thresholds the virtual sensor driver
uses to compare against for an interrupt to occur.
Arguments:
Device - Supplies a handle to the device.
LowerBound - Supplies the temperature below which the device should issue
an interrupt.
UpperBound - Supplies the temperature above which the device should issue
an interrupt.
Return Value:
NTSTATUS
--*/
{
PFDO_DATA DevExt;
BOOLEAN Interrupt;
DevExt = GetDeviceExtension(Device);
WdfWaitLockAcquire(DevExt->Sensor.Lock, NULL);
DevExt->Sensor.LowerBound = LowerBound;
DevExt->Sensor.UpperBound = UpperBound;
if ((DevExt->Sensor.Temperature <= DevExt->Sensor.LowerBound) ||
(DevExt->Sensor.Temperature >= DevExt->Sensor.UpperBound)) {
Interrupt = TRUE;
} else {
Interrupt = FALSE;
}
WdfWaitLockRelease(DevExt->Sensor.Lock);
//
// Fire the virtual interrupt outside the lock, to avoid any locking issues.
//
if (Interrupt != FALSE) {
SimSensorTemperatureInterrupt(Device);
}
return;
}
ULONG
SimSensorReadVirtualTemperature (
_In_ WDFDEVICE Device
)
/*++
Routine Description:
This routine is invoked to read the current temperature of the device.
Arguments:
Device - Supplies a handle to the device.
LowerBound - Supplies the temperature below which the device should issue
an interrupt.
UpperBound - Supplies the temperature above which the device should issue
an interrupt.
Return Value:
NTSTATUS
--*/
{
PFDO_DATA DevExt;
ULONG Temperature;
DevExt = GetDeviceExtension(Device);
WdfWaitLockAcquire(DevExt->Sensor.Lock, NULL);
Temperature = DevExt->Sensor.Temperature;
WdfWaitLockRelease(DevExt->Sensor.Lock);
return Temperature;
}
|