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
|
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
Module Name:
driver.c
Abstract:
This module implements DriverEntry for WDF driver.
Environment:
Kernel Mode
--*/
//
//-------------------------------------------------------------------- Includes
//
#include "pch.h"
#if defined(EVENT_TRACING)
#include "driver.tmh"
#endif
//
//------------------------------------------------------------------- Globals
//
WDFDEVICE PepGlobalWdfDevice;
//
//------------------------------------------------------------------ Prototypes
//
DRIVER_INITIALIZE DriverEntry;
//
//--------------------------------------------------------------------- Pragmas
//
#pragma alloc_text(INIT, DriverEntry)
#pragma alloc_text(PAGE, PepEvtDeviceAdd)
//
//------------------------------------------------------------------- Functions
//
NTSTATUS
DriverEntry (
_In_ PDRIVER_OBJECT DriverObject,
_In_ PUNICODE_STRING RegistryPath
)
/*++
Routine Description:
DriverEntry initializes the driver and is the first routine called by the
system after the driver is loaded.
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.
--*/
{
WDFDEVICE Device;
PWDFDEVICE_INIT DeviceInit;
WDFDRIVER Driver;
WDF_DRIVER_CONFIG DriverConfig;
WDF_OBJECT_ATTRIBUTES FdoAttributes;
NTSTATUS Status;
BOOLEAN WdfDriverCreated;
UNREFERENCED_PARAMETER(DriverObject);
//
// Initialize WPP tracing.
//
Device = NULL;
DeviceInit = NULL;
Driver = NULL;
WdfDriverCreated = FALSE;
WPP_INIT_TRACING(DriverObject, RegistryPath);
//
// Initialize the configuration object with necessary callbacks.
//
PepGlobalWdfDevice = NULL;
WDF_DRIVER_CONFIG_INIT(&DriverConfig, PepEvtDeviceAdd);
DriverConfig.DriverPoolTag = PEP_POOL_TAG;
DriverConfig.EvtDriverUnload = PepEvtDriverUnload;
//
// Create the WDF driver object
//
Status = WdfDriverCreate(DriverObject,
RegistryPath,
WDF_NO_OBJECT_ATTRIBUTES,
&DriverConfig,
&Driver);
if (!NT_SUCCESS(Status)) {
TraceEvents(ERROR,
DBG_INIT,
"%s: WdfDriverCreate() failed! Status = %!STATUS!.\n",
__FUNCTION__,
Status);
goto DriverEntryEnd;
}
WdfDriverCreated = TRUE;
//
// Secure the device
//
DeviceInit = WdfControlDeviceInitAllocate(Driver, &SDDL_DEVOBJ_SYS_ALL_ADM_ALL);
if (DeviceInit == NULL) {
TraceEvents(ERROR,
DBG_INIT,
"%s: WdfControlDeviceInitAllocate() failed!\n",
__FUNCTION__);
Status = STATUS_UNSUCCESSFUL;
goto DriverEntryEnd;
}
//
// Set various attributes for this device.
WdfDeviceInitSetIoType(DeviceInit, WdfDeviceIoBuffered);
//
// Initialize FDO attributes with the device extension.
//
WDF_OBJECT_ATTRIBUTES_INIT(&FdoAttributes);
FdoAttributes.SynchronizationScope = WdfSynchronizationScopeNone;
//
// Call the framework to create the device.
//
Status = WdfDeviceCreate(&DeviceInit, &FdoAttributes, &Device);
if (!NT_SUCCESS(Status)) {
TraceEvents(ERROR,
DBG_INIT,
"%s: WdfDeviceCreate() failed! Status = %!STATUS!.\n",
__FUNCTION__,
Status);
goto DriverEntryEnd;
}
PepGlobalWdfDevice = Device;
Status = PepInitialize(DriverObject, Driver, RegistryPath);
if (!NT_SUCCESS(Status)) {
TraceEvents(ERROR,
DBG_INIT,
"%s: PepInitialize() failed! Status = %!STATUS!.\n",
__FUNCTION__,
Status);
goto DriverEntryEnd;
}
//
// As a non-PNP device we need to explicitly tell WDF to complete
// initialization
//
WdfControlFinishInitializing(Device);
//
// If the driver object was created, then clean up will be done in the
// unload routine. Otherwise, things need to be cleaned up here.
//
DriverEntryEnd:
if ((!NT_SUCCESS(Status)) && (WdfDriverCreated == FALSE)) {
if (Device != NULL) {
WdfObjectDelete(Device);
Device = NULL;
} else if (DeviceInit != NULL) {
WdfDeviceInitFree(DeviceInit);
DeviceInit = NULL;
}
WPP_CLEANUP(DriverObject);
}
return Status;
}
NTSTATUS
PepEvtDeviceAdd (
_In_ WDFDRIVER Driver,
_Inout_ PWDFDEVICE_INIT DeviceInit
)
/*++
Routine Description:
This routine is the AddDevice entry point for the sample Platform Extension
driver. This can be called if there is a device corresponding to the
Platform Extension in ACPI namespace or a root-enumerated instance was
created during driver install.
Arguments:
Driver - Supplies a handle to the driver object created in DriverEntry.
DeviceInit - Supplies a pointer to a framework-allocated WDFDEVICE_INIT
structure.
Return Value:
NTSTATUS code.
--*/
{
WDFDEVICE Device;
WDF_OBJECT_ATTRIBUTES FdoAttributes;
NTSTATUS Status;
PAGED_CODE();
UNREFERENCED_PARAMETER(Driver);
//
// Set various attributes for this device.
WdfDeviceInitSetIoType(DeviceInit, WdfDeviceIoBuffered);
//
// Initialize FDO attributes with the device extension.
//
WDF_OBJECT_ATTRIBUTES_INIT(&FdoAttributes);
FdoAttributes.SynchronizationScope = WdfSynchronizationScopeNone;
//
// Call the framework to create the device.
//
Status = WdfDeviceCreate(&DeviceInit, &FdoAttributes, &Device);
if (!NT_SUCCESS(Status)) {
TraceEvents(ERROR,
DBG_INIT,
"%s: WdfDeviceCreate() failed! Status = %!STATUS!.\n",
__FUNCTION__,
Status);
goto DeviceAddEnd;
}
//
// Mark the PEP device as not stoppable or removable.
//
WdfDeviceSetStaticStopRemove(Device, FALSE);
DeviceAddEnd:
return Status;
}
VOID
PepEvtDriverUnload (
_In_ WDFDRIVER Driver
)
/*++
Routine Description:
This routine is called by WDF to allow final cleanup prior to unloading
the Resource Hub. This routine performs resource hub cleanup and stops
tracing.
Arguments:
Driver - Supplies a handle to a framework driver object.
Return Value:
None.
--*/
{
PDRIVER_OBJECT DriverObject;
//
// Platform extension should never be unloaded after it is registered.
//
if (PepRegistered != FALSE) {
#pragma prefast(suppress:__WARNING_USE_OTHER_FUNCTION, "KeBugCheckEx must be used for all Framework rules violations")
TraceEvents(ERROR,
DBG_INIT,
"%s: Fatal error - Driver is unloaded after it is registered!\n",
__FUNCTION__);
KeBugCheckEx(DRIVER_VIOLATION, 0, 0, 0, 0);
}
TraceEvents(VERBOSE,
DBG_INIT,
"%s: Driver unloaded!\n",
__FUNCTION__);
DriverObject = WdfDriverWdmGetDriverObject(Driver);
WPP_CLEANUP(DriverObject);
return;
}
|