-
Notifications
You must be signed in to change notification settings - Fork 3
/
vdm.c
227 lines (172 loc) · 4.79 KB
/
vdm.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
/*
* Copyright (c) 2004 Security Architects Corporation. All rights reserved.
*
* Module Name:
*
* vdm.c
*
* Abstract:
*
* This module implements various VDM (Virtual Dos Machine) hooking routines.
*
* Author:
*
* Eugene Tsyrklevich 06-Apr-2004
*
* Revision History:
*
* None.
*/
#include <NTDDK.h>
#include "vdm.h"
#include "policy.h"
#include "hookproc.h"
#include "procname.h"
#include "policy.h"
#include "learn.h"
#include "log.h"
#ifdef ALLOC_PRAGMA
#pragma alloc_text (INIT, InitVdmHooks)
#endif
fpZwSetLdtEntries OriginalNtSetLdtEntries = NULL;
fpZwVdmControl OriginalNtVdmControl = NULL;
/*
* IsVdmAllowed()
*
* Description:
* Check whether the current process is allowed to use dos16/VDM functionality.
*
* Parameters:
* None.
*
* Returns:
* FALSE if VDM is disabled. TRUE otherwise.
*/
BOOLEAN
IsVdmAllowed()
{
PIMAGE_PID_ENTRY CurrentProcess;
BOOLEAN VdmAllowed = FALSE;
/* check the global policy first */
if (! IS_VDM_PROTECTION_ON(gSecPolicy))
return TRUE;
/* now check the process specific policy */
CurrentProcess = FindImagePidEntry(CURRENT_PROCESS_PID, 0);
if (CurrentProcess != NULL)
{
VdmAllowed = ! IS_VDM_PROTECTION_ON(CurrentProcess->SecPolicy);
}
else
{
LOG(LOG_SS_VDM, LOG_PRIORITY_DEBUG, ("%d IsVdmAllowed: CurrentProcess = NULL!\n", CURRENT_PROCESS_PID));
}
return VdmAllowed;
}
/*
* HookedNtSetLdtEntries()
*
* Description:
* This function mediates the NtSetLdtEntries() system service and disallows access to it.
*
* NOTE: ZwSetLdtEntries sets Local Descriptor Table (LDT) entries for a Virtual DOS Machine (VDM). [NAR]
*
* Parameters:
* Those of NtSetLdtEntries().
*
* Returns:
* STATUS_ACCESS_DENIED if 16-bit applications are disabled.
* Otherwise, NTSTATUS returned by NtSetLdtEntries().
*/
NTSTATUS
NTAPI
HookedNtSetLdtEntries
(
IN ULONG Selector0,
IN ULONG Entry0Low,
IN ULONG Entry0Hi,
IN ULONG Selector1,
IN ULONG Entry1Low,
IN ULONG Entry1Hi
)
{
HOOK_ROUTINE_ENTER();
LOG(LOG_SS_VDM, LOG_PRIORITY_VERBOSE, ("%d (%S) HookedNtSetLdtEntries(%x %x %x)\n", (ULONG) PsGetCurrentProcessId(), GetCurrentProcessName(), Selector0, Entry0Low, Entry0Hi));
if (LearningMode == FALSE && IsVdmAllowed() == FALSE)
{
LOG(LOG_SS_VDM, LOG_PRIORITY_DEBUG, ("%d (%S) HookedNtSetLdtEntries: disallowing VDM access\n", (ULONG) PsGetCurrentProcessId(), GetCurrentProcessName()));
LogAlert(ALERT_SS_VDM, OP_VDM_USE, ALERT_RULE_NONE, ACTION_DENY, ALERT_PRIORITY_MEDIUM, NULL, 0, NULL);
HOOK_ROUTINE_EXIT( STATUS_ACCESS_DENIED );
}
ASSERT(OriginalNtSetLdtEntries);
rc = OriginalNtSetLdtEntries(Selector0, Entry0Low, Entry0Hi, Selector1, Entry1Low, Entry1Hi);
if (LearningMode == TRUE)
TURN_VDM_PROTECTION_OFF(NewPolicy);
HOOK_ROUTINE_EXIT(rc);
}
/*
* HookedNtVdmControl()
*
* Description:
* This function mediates the NtVdmControl() system service and disallows access to it.
*
* NOTE: ZwVdmControl performs a control operation on a VDM. [NAR]
*
* Parameters:
* Those of NtVdmControl().
*
* Returns:
* STATUS_ACCESS_DENIED if 16-bit applications are disabled.
* Otherwise, NTSTATUS returned by NtVdmControl().
*/
NTSTATUS
NTAPI
HookedNtVdmControl
(
IN ULONG ControlCode,
IN PVOID ControlData
)
{
HOOK_ROUTINE_ENTER();
LOG(LOG_SS_VDM, LOG_PRIORITY_VERBOSE, ("%d (%S) HookedNtVdmControl(%x %x)\n", (ULONG) PsGetCurrentProcessId(), GetCurrentProcessName(), ControlCode, ControlData));
if (LearningMode == FALSE && IsVdmAllowed() == FALSE)
{
LOG(LOG_SS_VDM, LOG_PRIORITY_DEBUG, ("%d (%S) HookedNtVdmControl: disallowing VDM access\n", (ULONG) PsGetCurrentProcessId(), GetCurrentProcessName()));
LogAlert(ALERT_SS_VDM, OP_VDM_USE, ALERT_RULE_NONE, ACTION_DENY, ALERT_PRIORITY_MEDIUM, NULL, 0, NULL);
HOOK_ROUTINE_EXIT( STATUS_ACCESS_DENIED );
}
ASSERT(OriginalNtVdmControl);
rc = OriginalNtVdmControl(ControlCode, ControlData);
if (LearningMode == TRUE)
TURN_VDM_PROTECTION_OFF(NewPolicy);
HOOK_ROUTINE_EXIT(rc);
}
/*
* InitVdmHooks()
*
* Description:
* Initializes all the mediated vdm 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
InitVdmHooks()
{
if ( (OriginalNtSetLdtEntries = (fpZwSetLdtEntries) ZwCalls[ZW_SET_LDT_ENTRIES_INDEX].OriginalFunction) == NULL)
{
LOG(LOG_SS_VDM, LOG_PRIORITY_DEBUG, ("InitVdmHooks: OriginalNtSetLdtEntries is NULL\n"));
return FALSE;
}
if ( (OriginalNtVdmControl = (fpZwVdmControl) ZwCalls[ZW_VDM_CONTROL_INDEX].OriginalFunction) == NULL)
{
LOG(LOG_SS_VDM, LOG_PRIORITY_DEBUG, ("InitVdmHooks: OriginalNtVdmControl is NULL\n"));
return FALSE;
}
return TRUE;
}