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
|
/*++
Copyright (c) 2024 Microsoft Corporation All Rights Reserved
Module Name:
kasantrigger.c
Abstract:
The purpose of this driver is to demonstrate how KASAN detects illegal
memory accesses.
Environment:
Kernel mode only.
--*/
#include <ntddk.h>
#include <string.h>
#include "kasantrigger.h"
#define NT_DEVICE_NAME L"\\Device\\KASANTRIGGER"
#define DOS_DEVICE_NAME L"\\DosDevices\\KasanTrigger"
DRIVER_INITIALIZE DriverEntry;
_Dispatch_type_(IRP_MJ_CREATE)
_Dispatch_type_(IRP_MJ_CLOSE)
DRIVER_DISPATCH KasanTriggerCreateClose;
_Dispatch_type_(IRP_MJ_DEVICE_CONTROL)
DRIVER_DISPATCH KasanTriggerDeviceControl;
DRIVER_UNLOAD KasanTriggerUnloadDriver;
#ifdef ALLOC_PRAGMA
#pragma alloc_text(INIT, DriverEntry)
#pragma alloc_text(PAGE, KasanTriggerCreateClose)
#pragma alloc_text(PAGE, KasanTriggerDeviceControl)
#pragma alloc_text(PAGE, KasanTriggerUnloadDriver)
#endif
// -----------------------------------------------------------------------------
UCHAR GlobalVariable[KASANTRIGGER_ARRAY_SIZE];
static
UCHAR
TriggerOobrStack(
_In_ ULONG Index
)
{
UCHAR StackVariable[KASANTRIGGER_ARRAY_SIZE];
//
// This copy is only here to force the compiler not to optimize out the
// stack variable.
//
RtlCopyMemory(StackVariable, GlobalVariable, KASANTRIGGER_ARRAY_SIZE);
//
// WARNING: this is an intentionally INCORRECT code!
//
return StackVariable[Index];
}
static
UCHAR
TriggerOobrGlobal(
_In_ ULONG Index
)
{
//
// WARNING: this is an intentionally INCORRECT code!
//
return GlobalVariable[Index];
}
static
UCHAR
TriggerOobrHeap(
_In_ ULONG Index
)
{
PCHAR buffer;
UCHAR retVal;
buffer = ExAllocatePool2(POOL_FLAG_PAGED, KASANTRIGGER_ARRAY_SIZE, 'mDaK');
if (buffer == NULL) {
return 0;
}
//
// WARNING: this is an intentionally INCORRECT code!
//
retVal = buffer[Index];
ExFreePool(buffer);
return retVal;
}
// -----------------------------------------------------------------------------
NTSTATUS
DriverEntry(
_In_ PDRIVER_OBJECT DriverObject,
_In_ PUNICODE_STRING RegistryPath
)
{
NTSTATUS ntStatus;
UNICODE_STRING ntUnicodeString;
UNICODE_STRING ntWin32NameString;
PDEVICE_OBJECT deviceObject;
UNREFERENCED_PARAMETER(RegistryPath);
RtlInitUnicodeString(&ntUnicodeString, NT_DEVICE_NAME);
ntStatus = IoCreateDevice(DriverObject,
0,
&ntUnicodeString,
FILE_DEVICE_UNKNOWN,
FILE_DEVICE_SECURE_OPEN,
FALSE,
&deviceObject);
if (!NT_SUCCESS(ntStatus)) {
return ntStatus;
}
DriverObject->MajorFunction[IRP_MJ_CREATE] = KasanTriggerCreateClose;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = KasanTriggerCreateClose;
DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = KasanTriggerDeviceControl;
DriverObject->DriverUnload = KasanTriggerUnloadDriver;
RtlInitUnicodeString(&ntWin32NameString, DOS_DEVICE_NAME);
ntStatus = IoCreateSymbolicLink(&ntWin32NameString, &ntUnicodeString);
if (!NT_SUCCESS(ntStatus)) {
IoDeleteDevice(deviceObject);
}
return ntStatus;
}
NTSTATUS
KasanTriggerCreateClose(
PDEVICE_OBJECT DeviceObject,
PIRP Irp
)
{
UNREFERENCED_PARAMETER(DeviceObject);
PAGED_CODE();
Irp->IoStatus.Status = STATUS_SUCCESS;
Irp->IoStatus.Information = 0;
IoCompleteRequest(Irp, IO_NO_INCREMENT);
return STATUS_SUCCESS;
}
VOID
KasanTriggerUnloadDriver(
_In_ PDRIVER_OBJECT DriverObject
)
{
PDEVICE_OBJECT deviceObject = DriverObject->DeviceObject;
UNICODE_STRING uniWin32NameString;
PAGED_CODE();
RtlInitUnicodeString(&uniWin32NameString, DOS_DEVICE_NAME);
IoDeleteSymbolicLink(&uniWin32NameString);
if (deviceObject != NULL) {
IoDeleteDevice(deviceObject);
}
return;
}
NTSTATUS
KasanTriggerDeviceControl(
PDEVICE_OBJECT DeviceObject,
PIRP Irp
)
{
PIO_STACK_LOCATION irpSp;
NTSTATUS ntStatus;
ULONG inBufLength;
ULONG inIndex;
ULONG outBufLength;
PUCHAR outValue;
PBOOLEAN isKasanEnabledOnDriver;
UNREFERENCED_PARAMETER(DeviceObject);
PAGED_CODE();
irpSp = IoGetCurrentIrpStackLocation(Irp);
inBufLength = irpSp->Parameters.DeviceIoControl.InputBufferLength;
outBufLength = irpSp->Parameters.DeviceIoControl.OutputBufferLength;
ntStatus = STATUS_SUCCESS;
switch (irpSp->Parameters.DeviceIoControl.IoControlCode)
{
case IOCTL_KASANTRIGGER_INFO:
//
// Return information. Just a BOOLEAN that indicates whether the
// driver was compiled with KASAN or not.
//
if (inBufLength != 0 || outBufLength != sizeof(BOOLEAN)) {
ntStatus = STATUS_INVALID_PARAMETER;
goto End;
}
isKasanEnabledOnDriver = (PBOOLEAN)Irp->AssociatedIrp.SystemBuffer;
#if defined(__SANITIZE_ADDRESS__)
*isKasanEnabledOnDriver = TRUE;
#else
*isKasanEnabledOnDriver = FALSE;
#endif
Irp->IoStatus.Information = sizeof(BOOLEAN);
break;
case IOCTL_KASANTRIGGER_OOBR_STACK:
//
// Trigger an out-of-bounds read on the stack.
//
if (inBufLength != sizeof(ULONG) || outBufLength != sizeof(UCHAR)) {
ntStatus = STATUS_INVALID_PARAMETER;
goto End;
}
inIndex = *((PULONG)Irp->AssociatedIrp.SystemBuffer);
outValue = (PUCHAR)Irp->AssociatedIrp.SystemBuffer;
*outValue = TriggerOobrStack(inIndex);
Irp->IoStatus.Information = sizeof(UCHAR);
break;
case IOCTL_KASANTRIGGER_OOBR_GLOBAL:
//
// Trigger an out-of-bounds read on a global variable.
//
if (inBufLength != sizeof(ULONG) || outBufLength != sizeof(UCHAR)) {
ntStatus = STATUS_INVALID_PARAMETER;
goto End;
}
inIndex = *((PULONG)Irp->AssociatedIrp.SystemBuffer);
outValue = (PUCHAR)Irp->AssociatedIrp.SystemBuffer;
*outValue = TriggerOobrGlobal(inIndex);
Irp->IoStatus.Information = sizeof(UCHAR);
break;
case IOCTL_KASANTRIGGER_OOBR_HEAP:
//
// Trigger an out-of-bounds read on a heap buffer.
//
if (inBufLength != sizeof(ULONG) || outBufLength != sizeof(UCHAR)) {
ntStatus = STATUS_INVALID_PARAMETER;
goto End;
}
inIndex = *((PULONG)Irp->AssociatedIrp.SystemBuffer);
outValue = (PUCHAR)Irp->AssociatedIrp.SystemBuffer;
*outValue = TriggerOobrHeap(inIndex);
Irp->IoStatus.Information = sizeof(UCHAR);
break;
default:
ntStatus = STATUS_INVALID_DEVICE_REQUEST;
break;
}
End:
Irp->IoStatus.Status = ntStatus;
IoCompleteRequest(Irp, IO_NO_INCREMENT);
return ntStatus;
}
|