-
Notifications
You must be signed in to change notification settings - Fork 1
/
mouclass.cpp
457 lines (358 loc) · 11.1 KB
/
mouclass.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
/*++
Copyright (c) 2019 changeofpace. All rights reserved.
Use of this source code is governed by the MIT license. See the 'LICENSE' file
for more information.
--*/
#include "mouclass.h"
#include <wdmguid.h>
#include "debug.h"
#include "log.h"
#include "Helper.h"
#if defined(DBG)
#include "io_util.h"
#include "nt.h"
#endif
//=============================================================================
// Constants
//=============================================================================
#define MODULE_TITLE "MouClass Manager"
//=============================================================================
// Private Types
//=============================================================================
typedef struct _PNP_NOTIFICATION_CONTEXT
{
_Interlocked_ volatile POINTER_ALIGNMENT LONG64 ArrivalEvents;
_Interlocked_ volatile POINTER_ALIGNMENT LONG64 RemovalEvents;
} PNP_NOTIFICATION_CONTEXT, *PPNP_NOTIFICATION_CONTEXT;
typedef struct _MCL_REGISTRATION_ENTRY
{
LIST_ENTRY ListEntry;
PMOUSE_PNP_NOTIFICATION_CALLBACK_ROUTINE Callback;
PVOID Context;
} MCL_REGISTRATION_ENTRY, *PMCL_REGISTRATION_ENTRY;
typedef struct _MOUCLASS_MANAGER
{
PVOID PnpNotificationHandle;
PNP_NOTIFICATION_CONTEXT PnpNotificationContext;
POINTER_ALIGNMENT ERESOURCE Resource;
_Guarded_by_(Resource) LIST_ENTRY RegisteredCallbackListHead;
} MOUCLASS_MANAGER, *PMOUCLASS_MANAGER;
//=============================================================================
// Module Globals
//=============================================================================
EXTERN_C static MOUCLASS_MANAGER g_MclManager = {};
//=============================================================================
// Private Prototypes
//=============================================================================
_Requires_lock_not_held_(g_MclManager.Resource)
EXTERN_C
static
DRIVER_NOTIFICATION_CALLBACK_ROUTINE
MclpPnpNotificationCallbackRoutine;
//=============================================================================
// Meta Interface
//=============================================================================
_Use_decl_annotations_
EXTERN_C
NTSTATUS
MclDriverEntry(
PDRIVER_OBJECT pDriverObject
)
/*++
Routine Description:
Initializes the MouClass Manager module.
Parameters:
pDriverObject - Pointer to the driver object for this driver.
Required Modules:
None
Remarks:
If successful, the caller must call MclDriverUnload when the driver is
unloaded.
--*/
{
PVOID PnpNotificationHandle = NULL;
BOOLEAN fPnpCallbackRegistered = FALSE;
BOOLEAN fResourceInitialized = FALSE;
NTSTATUS ntstatus = STATUS_SUCCESS;
DBG_PRINT("Loading %s.", MODULE_TITLE);
#if defined(DBG)
VERIFY(MclPrintMouClassDeviceObjects());
#endif
//
// Register for mouse device interface notifications.
//
ntstatus = IoRegisterPlugPlayNotification(
EventCategoryDeviceInterfaceChange,
0,
(PVOID)&GUID_DEVINTERFACE_MOUSE,
pDriverObject,
MclpPnpNotificationCallbackRoutine,
&g_MclManager.PnpNotificationContext,
&PnpNotificationHandle);
if (!NT_SUCCESS(ntstatus))
{
ERR_PRINT("IoRegisterPlugPlayNotification failed: 0x%X", ntstatus);
goto exit;
}
//
fPnpCallbackRegistered = TRUE;
ntstatus = ExInitializeResourceLite(&g_MclManager.Resource);
if (!NT_SUCCESS(ntstatus))
{
ERR_PRINT("ExInitializeResourceLite failed: 0x%X", ntstatus);
goto exit;
}
//
fResourceInitialized = TRUE;
//
// Initialize the global context.
//
g_MclManager.PnpNotificationHandle = PnpNotificationHandle;
InitializeListHead(&g_MclManager.RegisteredCallbackListHead);
DBG_PRINT("%s loaded.", MODULE_TITLE);
exit:
if (!NT_SUCCESS(ntstatus))
{
if (fResourceInitialized)
{
VERIFY(ExDeleteResourceLite(&g_MclManager.Resource));
}
if (fPnpCallbackRegistered)
{
VERIFY(IoUnregisterPlugPlayNotificationEx(PnpNotificationHandle));
}
}
return ntstatus;
}
_Use_decl_annotations_
EXTERN_C
VOID
MclDriverUnload()
{
DBG_PRINT("Unloading %s.", MODULE_TITLE);
NT_ASSERT(IsListEmpty(&g_MclManager.RegisteredCallbackListHead));
VERIFY(IoUnregisterPlugPlayNotificationEx(
g_MclManager.PnpNotificationHandle));
VERIFY(ExDeleteResourceLite(&g_MclManager.Resource));
DBG_PRINT("%s unloaded.", MODULE_TITLE);
}
//=============================================================================
// Public Interface
//=============================================================================
_Use_decl_annotations_
EXTERN_C
NTSTATUS
MclRegisterMousePnpNotificationCallback(
PMOUSE_PNP_NOTIFICATION_CALLBACK_ROUTINE pCallback,
PVOID pContext,
PHANDLE pRegistrationHandle
)
/*++
Routine Description:
Registers a mouse PnP notification callback.
Parameters:
pCallback - Pointer to the callback to be registered.
pContext - Pointer to caller-defined data to be passed as the context
parameter each time the callback is invoked.
pRegistrationHandle - Returns an opaque registration handle to be used to
unregister the callback.
Remarks:
If successful, the caller must unregister the callback by calling
MclUnregisterMousePnpNotificationCallback.
--*/
{
PMCL_REGISTRATION_ENTRY pEntry = NULL;
NTSTATUS ntstatus = STATUS_SUCCESS;
//
// Zero out parameters.
//
*pRegistrationHandle = NULL;
//
// Allocate and initialize a new registration entry.
//
pEntry = (PMCL_REGISTRATION_ENTRY)ExAllocatePool(
NonPagedPool,
sizeof(*pEntry));
if (!pEntry)
{
ntstatus = STATUS_INSUFFICIENT_RESOURCES;
goto exit;
}
//
RtlSecureZeroMemory(pEntry, sizeof(*pEntry));
pEntry->Callback = pCallback;
pEntry->Context = pContext;
//
// Insert the new entry into the registered callback list.
//
ExEnterCriticalRegionAndAcquireResourceExclusive(&g_MclManager.Resource);
InsertTailList(
&g_MclManager.RegisteredCallbackListHead,
&pEntry->ListEntry);
ExReleaseResourceAndLeaveCriticalRegion(&g_MclManager.Resource);
DBG_PRINT(
"Registered mouse PnP notification callback."
" (Callback = %p, Context = %p, RegistrationHandle = %p)",
pCallback,
pContext,
pEntry);
//
// Set out parameters.
//
*pRegistrationHandle = (HANDLE)pEntry;
exit:
return ntstatus;
}
_Use_decl_annotations_
EXTERN_C
VOID
MclUnregisterMousePnpNotificationCallback(
HANDLE RegistrationHandle
)
{
PMCL_REGISTRATION_ENTRY pEntry = NULL;
pEntry = (PMCL_REGISTRATION_ENTRY)RegistrationHandle;
ExEnterCriticalRegionAndAcquireResourceExclusive(&g_MclManager.Resource);
RemoveEntryList(&pEntry->ListEntry);
ExReleaseResourceAndLeaveCriticalRegion(&g_MclManager.Resource);
ExFreePool(pEntry);
DBG_PRINT(
"Unregistered mouse PnP notification callback."
" (RegistrationHandle = %p)",
RegistrationHandle);
}
_Use_decl_annotations_
EXTERN_C
VOID
MclPrintInputPacket(ULONG64 PacketId, PMOUSE_SERVICE_CALLBACK_ROUTINE pServiceCallback, PDEVICE_OBJECT pDeviceObject, PMOUSE_INPUT_DATA pInputPacket) {
LogDebug("Mouse Packet Button: 0x%04hX", pInputPacket->ButtonData);
}
//=============================================================================
// Private Interface
//=============================================================================
_Use_decl_annotations_
EXTERN_C
static
NTSTATUS
MclpPnpNotificationCallbackRoutine(
PVOID pNotificationStructure,
PVOID pNotificationContext
)
{
PDEVICE_INTERFACE_CHANGE_NOTIFICATION pNotification = NULL;
PPNP_NOTIFICATION_CONTEXT pContext = NULL;
MOUSE_PNP_NOTIFICATION_EVENT Event = {};
ULONG64 nEvents = 0;
BOOLEAN fResourceAcquired = FALSE;
PLIST_ENTRY pListEntry = NULL;
PMCL_REGISTRATION_ENTRY pEntry = NULL;
NTSTATUS ntstatus = STATUS_SUCCESS;
pNotification =
(PDEVICE_INTERFACE_CHANGE_NOTIFICATION)pNotificationStructure;
pContext = (PPNP_NOTIFICATION_CONTEXT)pNotificationContext;
if (IsEqualGUID(pNotification->Event, GUID_DEVICE_INTERFACE_ARRIVAL))
{
Event = MousePnpNotificationEventArrival;
nEvents = InterlockedIncrement64(&pContext->ArrivalEvents);
DBG_PRINT("Device interface arrival (%I64u): %wZ",
nEvents,
pNotification->SymbolicLinkName);
}
else if (IsEqualGUID(pNotification->Event, GUID_DEVICE_INTERFACE_REMOVAL))
{
Event = MousePnpNotificationEventRemoval;
nEvents = InterlockedIncrement64(&pContext->RemovalEvents);
DBG_PRINT("Device interface removal (%I64u): %wZ",
nEvents,
pNotification->SymbolicLinkName);
}
else
{
ERR_PRINT(
"Unexpected device interface change GUID."
" (SymbolicLinkName = %wZ)",
pNotification->SymbolicLinkName);
DEBUG_BREAK;
goto exit;
}
//
// Invoke each registered callback.
//
ExEnterCriticalRegionAndAcquireResourceShared(&g_MclManager.Resource);
fResourceAcquired = TRUE;
for (pListEntry = g_MclManager.RegisteredCallbackListHead.Flink;
pListEntry != &g_MclManager.RegisteredCallbackListHead;
pListEntry = pListEntry->Flink)
{
pEntry = CONTAINING_RECORD(
pListEntry,
MCL_REGISTRATION_ENTRY,
ListEntry);
pEntry->Callback(Event, pEntry->Context);
}
exit:
if (fResourceAcquired)
{
ExReleaseResourceAndLeaveCriticalRegion(&g_MclManager.Resource);
}
return ntstatus;
}
#if defined(DBG)
_IRQL_requires_(PASSIVE_LEVEL)
_IRQL_requires_same_
_Check_return_
EXTERN_C
NTSTATUS
MclPrintMouClassDeviceObjects()
{
UNICODE_STRING usDriverObject = {};
PDRIVER_OBJECT pDriverObject = NULL;
BOOLEAN fHasDriverObjectReference = FALSE;
PDEVICE_OBJECT* ppDeviceObjectList = NULL;
ULONG nDeviceObjectList = 0;
NTSTATUS ntstatus = STATUS_SUCCESS;
usDriverObject = RTL_CONSTANT_STRING(MOUCLASS_DRIVER_OBJECT_PATH_U);
ntstatus = ObReferenceObjectByName(
&usDriverObject,
OBJ_CASE_INSENSITIVE | OBJ_KERNEL_HANDLE,
NULL,
0,
*IoDriverObjectType,
KernelMode,
NULL,
(PVOID*)&pDriverObject);
if (!NT_SUCCESS(ntstatus))
{
ERR_PRINT("ObReferenceObjectByName failed: 0x%X", ntstatus);
goto exit;
}
//
fHasDriverObjectReference = TRUE;
//
// Get a snapshot of all the device objects.
//
ntstatus = IouEnumerateDeviceObjectList(
pDriverObject,
&ppDeviceObjectList,
&nDeviceObjectList);
if (!NT_SUCCESS(ntstatus))
{
ERR_PRINT("IouEnumerateDeviceObjectList failed: 0x%X", ntstatus);
goto exit;
}
IouPrintDeviceObjectList(
MOUCLASS_DRIVER_OBJECT_PATH_U,
ppDeviceObjectList,
nDeviceObjectList);
exit:
if (ppDeviceObjectList)
{
IouFreeDeviceObjectList(ppDeviceObjectList, nDeviceObjectList);
}
if (fHasDriverObjectReference)
{
ObDereferenceObject(pDriverObject);
}
return ntstatus;
}
#endif