-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwireless.c
338 lines (250 loc) · 7.66 KB
/
wireless.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
/*
* Copyright (c) 2004 Security Architects Corporation. All rights reserved.
*
* Module Name:
*
* wireless.c
*
* Abstract:
*
* This module deals with wireless cards.
*
* Author:
*
* Eugene Tsyrklevich 12-Oct-2004
*/
#include <NTDDK.h>
#undef DEFINE_GUID
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) const GUID name \
= { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
#include <ntddstor.h>
#include <wdmguid.h>
#include "wireless.h"
#include "pathproc.h"
#include "policy.h"
#ifdef ALLOC_PRAGMA
#pragma alloc_text (INIT, InitWirelessHooks)
#pragma alloc_text (PAGE, RemoveWirelessHooks)
#endif
PVOID WirelessNotificationEntry = NULL;
/* removable wireless flags defined in drive.h (READONLY, etc) */
UCHAR WirelessRemovableFlags = 0;
typedef struct _WORK_CONTEXT
{
PIO_WORKITEM Item;
UNICODE_STRING SymbolicLinkName;
} WORK_CONTEXT, *PWORK_CONTEXT;
/*
* AddDrive()
*
* Description:
* .
*
* Parameters:
* pusDriveName - .
* DriveLetter - .
*
* Returns:
* Nothing.
*/
VOID
AddDrive(PUNICODE_STRING pusDriveName, CHAR DriveLetter)
{
PDEVICE_OBJECT pDeviceObject;
STORAGE_HOTPLUG_INFO HotplugInfo;
pDeviceObject = GetDriveHotplugInformation(pusDriveName, &HotplugInfo);
if (pDeviceObject == NULL)
return;
LOG(LOG_SS_DRIVE, LOG_PRIORITY_DEBUG, ("AddDrive: %c:\\ drive: %d %d %d %d %d\n", DriveLetter, HotplugInfo.Size, HotplugInfo.WirelessRemovable, HotplugInfo.WirelessHotplug, HotplugInfo.DeviceHotplug, HotplugInfo.WriteCacheEnableOverride));
//XXX remove
if (HotplugInfo.WirelessRemovable == FALSE && HotplugInfo.WirelessHotplug == TRUE)
{
LOG(LOG_SS_DRIVE, LOG_PRIORITY_DEBUG, ("AddDrive: hotpluggable but not removable drive! %c: %S\n", DriveLetter, pusDriveName->Buffer));
}
if (HotplugInfo.WirelessRemovable)
{
CHAR rule[MAX_PATH];
LOG(LOG_SS_DRIVE, LOG_PRIORITY_DEBUG, ("AddDrive: removable drive! %c: %S\n", DriveLetter, pusDriveName->Buffer));
/* Create a new global policy rule */
if (IS_REMOVABLE_WIRELESS_DISABLED())
{
sprintf(rule, "name match \"%c:\\*\" then %s", DriveLetter, "deny");
PolicyParseObjectRule(&gSecPolicy, RULE_FILE, "all", rule);
/* no need to process other rules, this one denies everything already */
return;
}
if (IS_REMOVABLE_WIRELESS_READONLY())
{
sprintf(rule, "name match \"%c:\\*\" then %s", DriveLetter, "deny");
PolicyParseObjectRule(&gSecPolicy, RULE_FILE, "write", rule);
}
if (IS_REMOVABLE_WIRELESS_NOEXECUTE())
{
sprintf(rule, "name match \"%c:\\*\" then %s", DriveLetter, "deny");
PolicyParseObjectRule(&gSecPolicy, RULE_FILE, "execute", rule);
}
}
return;
}
/*
* RemoveDrive()
*
* Description:
* .
*
* Parameters:
* pusDriveName - .
*
* Returns:
* Nothing.
*/
VOID
RemoveDrive(PUNICODE_STRING pusDriveName)
{
PDEVICE_OBJECT pDeviceObject;
STORAGE_HOTPLUG_INFO HotplugInfo;
NTSTATUS rc;
pDeviceObject = GetDriveHotplugInformation(pusDriveName, &HotplugInfo);
if (pDeviceObject == NULL)
return;
// KdPrint(("success %d %d %d %d %d\n", info.Size, info.WirelessRemovable, info.WirelessHotplug, info.DeviceHotplug, info.WriteCacheEnableOverride));
if (HotplugInfo.WirelessRemovable)
LOG(LOG_SS_DRIVE, LOG_PRIORITY_DEBUG, ("RemoveDrive: removable drive! %S\n", pusDriveName->Buffer));
rc = RtlVolumeDeviceToDosName(pDeviceObject, pusDriveName);
if (NT_SUCCESS(rc))
LOG(LOG_SS_DRIVE, LOG_PRIORITY_DEBUG, ("RemoveDrive: IoVolumeDeviceToDosName returned %S\n", pusDriveName->Buffer));
return;
}
/*
* PnpWorker()
*
* Description:
* A work item routine that runs at PASSIVE_LEVEL irql. The routine is scheduled by PnpCallback
* which is not allowed to block.
*
* PnpWorker calls RemoveDrive() with a drive name setup by PnpCallback.
*
* Parameters:
* pDeviceObject - .
* Context - .
*
* Returns:
* Nothing.
*/
VOID
PnpWorker(IN PDEVICE_OBJECT pDeviceObject, IN PVOID Context)
{
PWORK_CONTEXT WorkContext = (PWORK_CONTEXT) Context;
if (WorkContext == NULL)
{
LOG(LOG_SS_DRIVE, LOG_PRIORITY_DEBUG, ("PnpWorker: WorkContext = NULL\n"));
return;
}
LOG(LOG_SS_DRIVE, LOG_PRIORITY_DEBUG, ("PnpWorker: %S\n", WorkContext->SymbolicLinkName.Buffer));
RemoveDrive(&WorkContext->SymbolicLinkName);
IoFreeWorkItem(WorkContext->Item);
ExFreePoolWithTag(WorkContext, _POOL_TAG);
}
/*
* PnpCallback()
*
* Description:
* Plug-and-Play callback. Gets called when a p-n-p drive/cdrom interface is modified
* (i.e. when a removable drive is added or removed from the system).
*
* Parameters:
* NotificationStructure - DEVICE_INTERFACE_CHANGE_NOTIFICATION indicating which interface changed.
* Context - the driver's device context.
*
* Returns:
* STATUS_SUCCESS.
*/
NTSTATUS
PnpCallback(IN PVOID NotificationStructure, IN PVOID Context)
{
PDEVICE_INTERFACE_CHANGE_NOTIFICATION Notify = (PDEVICE_INTERFACE_CHANGE_NOTIFICATION) NotificationStructure;
PDEVICE_OBJECT pDeviceObject = (PDEVICE_OBJECT) Context;
PIO_WORKITEM WorkItem;
PWORK_CONTEXT WorkContext;
if (IsEqualGUID((LPGUID) &Notify->Event, (LPGUID) &GUID_DEVICE_INTERFACE_REMOVAL))
{
LOG(LOG_SS_DRIVE, LOG_PRIORITY_DEBUG, ("GUID_DEVICE_INTERFACE_REMOVAL %S\n", Notify->SymbolicLinkName->Buffer));
/*
}
if (IsEqualGUID((LPGUID) &Notify->Event, (LPGUID) &GUID_DEVICE_INTERFACE_ARRIVAL) ||
IsEqualGUID((LPGUID) &Notify->Event, (LPGUID) &GUID_DEVICE_INTERFACE_REMOVAL))
{
LOG(LOG_SS_DRIVE, LOG_PRIORITY_DEBUG, ("GUID_DEVICE_INTERFACE_ARRIVAL %x %S\n", Notify->SymbolicLinkName, Notify->SymbolicLinkName->Buffer));
*/
/*
* Schedule a work item to process this request. Cannot block in this callback function.
*/
WorkItem = IoAllocateWorkItem(pDeviceObject);
WorkContext = (PWORK_CONTEXT) ExAllocatePoolWithTag(PagedPool,
sizeof(WORK_CONTEXT) + Notify->SymbolicLinkName->Length,
_POOL_TAG);
if (!WorkContext)
{
IoFreeWorkItem(WorkItem);
return(STATUS_SUCCESS);
}
WorkContext->SymbolicLinkName.Buffer = (PWSTR) ((PCHAR) &WorkContext->SymbolicLinkName + sizeof(UNICODE_STRING));
WorkContext->SymbolicLinkName.MaximumLength = Notify->SymbolicLinkName->Length;
WorkContext->SymbolicLinkName.Length = 0;
WorkContext->Item = WorkItem;
RtlCopyUnicodeString(&WorkContext->SymbolicLinkName, Notify->SymbolicLinkName);
IoQueueWorkItem(WorkItem, PnpWorker, DelayedWorkQueue, WorkContext);
}
return STATUS_SUCCESS;
}
/*
* InitWirelessHooks()
*
* Description:
* Process any existing wireless cards and register Plug-and-Play notifications for future drive additions/removals.
*
* NOTE: Called once during driver initialization (DriverEntry()).
*
* Parameters:
* None.
*
* Returns:
* TRUE to indicate success, FALSE if failed.
*/
BOOLEAN
InitWirelessHooks(IN PDRIVER_OBJECT pDriverObject, IN PDEVICE_OBJECT pDeviceObject)
{
NTSTATUS rc;
rc = IoRegisterPlugPlayNotification(EventCategoryDeviceInterfaceChange,
/*0,*/PNPNOTIFY_DEVICE_INTERFACE_INCLUDE_EXISTING_INTERFACES,
(LPGUID) &GUID_DEVINTERFACE_DISK,
pDriverObject,
PnpCallback,
pDeviceObject,
&WirelessNotificationEntry);
if (! NT_SUCCESS(rc))
{
LOG(LOG_SS_DRIVE, LOG_PRIORITY_DEBUG, ("InitWirelessHooks: IoRegisterPlugPlayNotification failed with status %x\n", rc));
return FALSE;
}
return TRUE;
}
/*
* RemoveWirelessHooks()
*
* Description:
* Unregister Plug-and-Play notifications.
*
* Parameters:
* None.
*
* Returns:
* Nothing.
*/
VOID
RemoveWirelessHooks()
{
if (WirelessNotificationEntry)
if (! NT_SUCCESS(IoUnregisterPlugPlayNotification(WirelessNotificationEntry)))
LOG(LOG_SS_DRIVE, LOG_PRIORITY_DEBUG, ("RemoveWirelessHooks: IoUnregisterPlugPlayNotification failed\n"));
}