-
Notifications
You must be signed in to change notification settings - Fork 3
/
registry.c
402 lines (316 loc) · 8.6 KB
/
registry.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
/*
* Copyright (c) 2004 Security Architects Corporation. All rights reserved.
*
* Module Name:
*
* registry.c
*
* Abstract:
*
* This module defines various types used by registry hooking routines.
*
* Author:
*
* Eugene Tsyrklevich 20-Feb-2004
*
* Revision History:
*
* None.
*/
#include <NTDDK.h>
#include "registry.h"
#include "policy.h"
#include "pathproc.h"
#include "hookproc.h"
#include "accessmask.h"
#include "learn.h"
#include "misc.h"
#include "log.h"
#ifdef ALLOC_PRAGMA
#pragma alloc_text (INIT, InitRegistryHooks)
#endif
fpZwCreateKey OriginalNtCreateKey = NULL;
fpZwOpenKey OriginalNtOpenKey = NULL;
fpZwDeleteKey OriginalNtDeleteKey = NULL;
fpZwSetValueKey OriginalNtSetValueKey = NULL;
fpZwQueryValueKey OriginalNtQueryValueKey = NULL;
/*
* HookedNtCreateKey()
*
* Description:
* This function mediates the NtCreateKey() system service and checks the
* provided registry key against the global and current process security policies.
*
* NOTE: ZwCreateKey creates or opens a registry key object. [NAR]
*
* Parameters:
* Those of NtCreateKey().
*
* Returns:
* STATUS_ACCESS_DENIED if the call does not pass the security policy check.
* Otherwise, NTSTATUS returned by NtCreateKey().
*/
NTSTATUS
NTAPI
HookedNtCreateKey
(
OUT PHANDLE KeyHandle,
IN ACCESS_MASK DesiredAccess,
IN POBJECT_ATTRIBUTES ObjectAttributes,
IN ULONG TitleIndex,
IN PUNICODE_STRING Class OPTIONAL,
IN ULONG CreateOptions,
OUT PULONG Disposition OPTIONAL
)
{
PCHAR FunctionName = "HookedNtCreateKey";
HOOK_ROUTINE_START(REGISTRY);
ASSERT(OriginalNtOpenKey);
rc = OriginalNtCreateKey(KeyHandle, DesiredAccess, ObjectAttributes, TitleIndex,
Class, CreateOptions, Disposition);
HOOK_ROUTINE_FINISH(REGISTRY);
}
/*
* HookedNtOpenKey()
*
* Description:
* This function mediates the NtOpenKey() system service and checks the
* provided registry key against the global and current process security policies.
*
* NOTE: ZwOpenKey opens a registry key object. [NAR]
*
* Parameters:
* Those of NtOpenKey().
*
* Returns:
* STATUS_ACCESS_DENIED if the call does not pass the security policy check.
* Otherwise, NTSTATUS returned by NtOpenKey().
*/
NTSTATUS
NTAPI
HookedNtOpenKey
(
OUT PHANDLE KeyHandle,
IN ACCESS_MASK DesiredAccess,
IN POBJECT_ATTRIBUTES ObjectAttributes
)
{
PCHAR FunctionName = "HookedNtOpenKey";
HOOK_ROUTINE_START(REGISTRY);
ASSERT(OriginalNtOpenKey);
rc = OriginalNtOpenKey(KeyHandle, DesiredAccess, ObjectAttributes);
HOOK_ROUTINE_FINISH(REGISTRY);
}
/*
* HookedNtDeleteKey()
*
* Description:
* This function mediates the NtDeleteKey() system service and checks the
* provided registry key against the global and current process security policies.
*
* NOTE: ZwDeleteKey deletes a key in the registry. [NAR]
*
* Parameters:
* Those of NtDeleteKey().
*
* Returns:
* STATUS_ACCESS_DENIED if the call does not pass the security policy check.
* Otherwise, NTSTATUS returned by NtDeleteKey().
*/
NTSTATUS
NTAPI
HookedNtDeleteKey
(
IN HANDLE KeyHandle
)
{
PCHAR FunctionName = "HookedNtDeleteKey";
CHAR REGISTRYNAME[MAX_PATH];
WCHAR REGISTRYNAMEW[MAX_PATH];
PWSTR KeyName = NULL;
HOOK_ROUTINE_ENTER();
if ((KeyName = GetNameFromHandle(KeyHandle, REGISTRYNAMEW, sizeof(REGISTRYNAMEW))) != NULL)
{
sprintf(REGISTRYNAME, "%S", KeyName);
LOG(LOG_SS_REGISTRY, LOG_PRIORITY_VERBOSE, ("%d %s: %s\n", (ULONG) PsGetCurrentProcessId(), FunctionName, REGISTRYNAME));
if (LearningMode == FALSE)
{
POLICY_CHECK_OPTYPE_NAME(REGISTRY, OP_DELETE);
}
}
ASSERT(OriginalNtDeleteKey);
rc = OriginalNtDeleteKey(KeyHandle);
if (KeyName)
{
HOOK_ROUTINE_FINISH_OBJECTNAME_OPTYPE(REGISTRY, REGISTRYNAME, OP_DELETE);
}
else
{
HOOK_ROUTINE_EXIT(rc);
}
}
/*
* HookedNtSetValueKey()
*
* Description:
* This function mediates the NtSetValueKey() system service and checks the
* provided registry key against the global and current process security policies.
*
* NOTE: ZwSetValueKey updates or adds a value to a key. [NAR]
*
* Parameters:
* Those of NtSetValueKey().
*
* Returns:
* STATUS_ACCESS_DENIED if the call does not pass the security policy check.
* Otherwise, NTSTATUS returned by NtSetValueKey().
*/
NTSTATUS
NTAPI
HookedNtSetValueKey
(
IN HANDLE KeyHandle,
IN PUNICODE_STRING ValueName,
IN ULONG TitleIndex,
IN ULONG Type,
IN PVOID Data,
IN ULONG DataSize
)
{
CHAR REGISTRYNAME[MAX_PATH];
WCHAR REGISTRYNAMEW[MAX_PATH];
PCHAR FunctionName = "HookedNtSetValueKey";
UNICODE_STRING usValueName;
PWSTR KeyName = NULL;
HOOK_ROUTINE_ENTER();
if (VerifyUnicodeString(ValueName, &usValueName) == TRUE)
{
if ((KeyName = GetNameFromHandle(KeyHandle, REGISTRYNAMEW, sizeof(REGISTRYNAMEW))) != NULL)
{
_snprintf(REGISTRYNAME, MAX_PATH, "%S\\%S", KeyName, ValueName->Buffer);
REGISTRYNAME[MAX_PATH - 1] = 0;
LOG(LOG_SS_REGISTRY, LOG_PRIORITY_VERBOSE, ("%d %s: %s\n", (ULONG) PsGetCurrentProcessId(), FunctionName, REGISTRYNAME));
if (LearningMode == FALSE)
{
POLICY_CHECK_OPTYPE_NAME(REGISTRY, OP_WRITE);
}
}
}
ASSERT(OriginalNtSetValueKey);
rc = OriginalNtSetValueKey(KeyHandle, ValueName, TitleIndex, Type, Data, DataSize);
if (KeyName)
{
HOOK_ROUTINE_FINISH_OBJECTNAME_OPTYPE(REGISTRY, REGISTRYNAME, OP_WRITE);
}
else
{
HOOK_ROUTINE_EXIT(rc);
}
}
/*
* HookedNtQueryValueKey()
*
* Description:
* This function mediates the NtQueryValueKey() system service and checks the
* provided registry key against the global and current process security policies.
*
* NOTE: ZwQueryValueKey retrieves information about a key value. [NAR]
*
* Parameters:
* Those of NtQueryValueKey().
*
* Returns:
* STATUS_ACCESS_DENIED if the call does not pass the security policy check.
* Otherwise, NTSTATUS returned by NtQueryValueKey().
*/
NTSTATUS
NTAPI
HookedNtQueryValueKey
(
IN HANDLE KeyHandle,
IN PUNICODE_STRING ValueName,
IN KEY_VALUE_INFORMATION_CLASS KeyValueInformationClass,
OUT PVOID KeyValueInformation,
IN ULONG KeyValueInformationLength,
OUT PULONG ResultLength
)
{
CHAR REGISTRYNAME[MAX_PATH];
WCHAR REGISTRYNAMEW[MAX_PATH];
PCHAR FunctionName = "HookedNtQueryValueKey";
UNICODE_STRING usValueName;
PWSTR KeyName = NULL;
HOOK_ROUTINE_ENTER();
if (VerifyUnicodeString(ValueName, &usValueName) == TRUE)
{
if ((KeyName = GetNameFromHandle(KeyHandle, REGISTRYNAMEW, sizeof(REGISTRYNAMEW))) != NULL)
{
_snprintf(REGISTRYNAME, MAX_PATH, "%S\\%S", KeyName, ValueName->Buffer);
REGISTRYNAME[MAX_PATH - 1] = 0;
LOG(LOG_SS_REGISTRY, LOG_PRIORITY_VERBOSE, ("%d %s: %s\n", (ULONG) PsGetCurrentProcessId(), FunctionName, REGISTRYNAME));
if (LearningMode == FALSE)
{
POLICY_CHECK_OPTYPE_NAME(REGISTRY, OP_READ);
}
}
}
ASSERT(OriginalNtQueryValueKey);
rc = OriginalNtQueryValueKey(KeyHandle, ValueName, KeyValueInformationClass, KeyValueInformation,
KeyValueInformationLength, ResultLength);
if (KeyName)
{
HOOK_ROUTINE_FINISH_OBJECTNAME_OPTYPE(REGISTRY, REGISTRYNAME, OP_READ);
}
else
{
HOOK_ROUTINE_EXIT(rc);
}
}
/*
* InitRegistryHooks()
*
* Description:
* Initializes all the mediated registry operation pointers. The "OriginalFunction" pointers
* are initialized by InstallSyscallsHooks() that must be called prior to this function.
*
* NOTE: Called once during driver initialization (DriverEntry()).
*
* Parameters:
* None.
*
* Returns:
* TRUE to indicate success, FALSE if failed.
*/
BOOLEAN
InitRegistryHooks()
{
if ( (OriginalNtCreateKey = (fpZwCreateKey) ZwCalls[ZW_CREATE_KEY_INDEX].OriginalFunction) == NULL)
{
LOG(LOG_SS_REGISTRY, LOG_PRIORITY_DEBUG, ("InitRegistryHooks: OriginalNtCreateKey is NULL\n"));
return FALSE;
}
if ( (OriginalNtOpenKey = (fpZwOpenKey) ZwCalls[ZW_OPEN_KEY_INDEX].OriginalFunction) == NULL)
{
LOG(LOG_SS_REGISTRY, LOG_PRIORITY_DEBUG, ("InitRegistryHooks: OriginalNtOpenKey is NULL\n"));
return FALSE;
}
if ( (OriginalNtDeleteKey = (fpZwDeleteKey) ZwCalls[ZW_DELETE_KEY_INDEX].OriginalFunction) == NULL)
{
LOG(LOG_SS_REGISTRY, LOG_PRIORITY_DEBUG, ("InitRegistryHooks: OriginalNtDeleteKey is NULL\n"));
return FALSE;
}
// XXX ZwDeleteValueKey
/*
if ( (OriginalNtSetValueKey = (fpZwSetValueKey) ZwCalls[ZW_SET_VALUE_KEY_INDEX].OriginalFunction) == NULL)
{
LOG(LOG_SS_REGISTRY, LOG_PRIORITY_DEBUG, ("InitRegistryHooks: OriginalNtSetValueKey is NULL\n"));
return FALSE;
}
if ( (OriginalNtQueryValueKey = (fpZwQueryValueKey) ZwCalls[ZW_QUERY_VALUE_KEY_INDEX].OriginalFunction) == NULL)
{
LOG(LOG_SS_REGISTRY, LOG_PRIORITY_DEBUG, ("InitRegistryHooks: OriginalNtQueryValueKey is NULL\n"));
return FALSE;
}
*/
return TRUE;
}