-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathkmexts.h
214 lines (163 loc) · 5.48 KB
/
kmexts.h
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
//
// Copyright 2017 OSR Open Systems Resources, Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its
// contributors may be used to endorse or promote products derived from this
// software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED.IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT(INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE
//
#ifndef __KMEXTS_H__
#define __KMEXTS_H__
extern "C" {
#include <ntifs.h>
}
////////////////
// KMEXTS.CPP //
////////////////
extern "C" DRIVER_INITIALIZE DriverEntry;
DRIVER_UNLOAD KmExtsUnload;
VOID
KmExtsUnregisterAllCallbacks(
VOID
);
/////////////////////
// CMCALLBACKS.CPP //
/////////////////////
typedef struct _CM_CALLBACK_CONTEXT {
ULONG MagicNumber;
LARGE_INTEGER CallbackRegistrationCookie;
BOOLEAN CallbackRegistered;
}CM_CALLBACK_CONTEXT, *PCM_CALLBACK_CONTEXT;
#define CM_CALLBACK_CONTEXT_MAGIC 0xCCCC0508
extern CM_CALLBACK_CONTEXT KmExtsCmCallbackContext;
NTSTATUS
KmExtsCmRegistryCallback(
_In_ PVOID CallbackContext,
_In_ PVOID Argument1,
_In_ PVOID Argument2
);
/////////////////////
// EXCALLBACKS.CPP //
/////////////////////
typedef struct _EX_CALLBACK_CONTEXT {
ULONG MagicNumber;
PCALLBACK_OBJECT ExCallbackObject;
PVOID RegistrationHandle;
BOOLEAN CallbackRegistered;
}EX_CALLBACK_CONTEXT, *PEX_CALLBACK_CONTEXT;
#define EX_CALLBACK_CONTEXT_MAGIC 0x03051980
extern EX_CALLBACK_CONTEXT KmExtsExSetTimeCbContext;
CALLBACK_FUNCTION KmExtsExSetSystemTimeCallback;
extern EX_CALLBACK_CONTEXT KmExtsExPowerStateCbContext;
CALLBACK_FUNCTION KmExtsExPowerStateCallback;
extern EX_CALLBACK_CONTEXT KmExtsExProcAddCbContext;
CALLBACK_FUNCTION KmExtsExProcessorAddCallback;
NTSTATUS
KmExtsCreateAndRegisterCallback(
_In_ PUNICODE_STRING CallbackName,
_In_ PCALLBACK_FUNCTION CallbackFunction,
_In_ PEX_CALLBACK_CONTEXT CallbackContext
);
/////////////////////
// OBCALLBACKS.CPP //
/////////////////////
#if (NTDDI_VERSION >= NTDDI_VISTA)
//
// We'll register for notification of every possible type of
// object. Currently only threads and processes
//
#define KMEXTS_PROCESS_OBJECT_TYPE 0
#define KMEXTS_THREAD_OBJECT_TYPE 1
#define KMEXTS_MAX_OBJECT_TYPE 2
typedef struct _OB_CALLBACK_CONTEXT {
ULONG MagicNumber;
PVOID RegistrationHandle;
BOOLEAN CallbackRegistered;
}OB_CALLBACK_CONTEXT, *POB_CALLBACK_CONTEXT;
#define OB_CALLBACK_CONTEXT_MAGIC 0x12311999
extern OB_CALLBACK_CONTEXT KmExtsObCbContext;
OB_PREOP_CALLBACK_STATUS
KmExtsObPreCallback(
_In_ PVOID RegistrationContext,
_In_ POB_PRE_OPERATION_INFORMATION OperationInformation
);
VOID
KmExtsObPostCallback(
_In_ PVOID RegistrationContext,
_In_ POB_POST_OPERATION_INFORMATION OperationInformation
);
#endif
/////////////////////
// PSCALLBACKS.CPP //
/////////////////////
extern BOOLEAN KmExtsPsCreateProcessNotifyRoutineRegistered;
VOID
KmExtsPsCreateProcessNotifyRoutine(
_In_ HANDLE ParentId,
_In_ HANDLE ProcessId,
_In_ BOOLEAN Create
);
#if (NTDDI_VERSION >= NTDDI_VISTA)
extern BOOLEAN KmExtsPsCreateProcessExNotifyRoutineRegistered;
VOID
KmExtsPsCreateProcessNotifyRoutineEx(
_Inout_ PEPROCESS Process,
_In_ HANDLE ProcessId,
_In_opt_ PPS_CREATE_NOTIFY_INFO CreateInfo
);
#endif
#if (NTDDI_VERSION >= NTDDI_WIN10_RS2)
extern BOOLEAN KmExtsPsCreateProcessEx2NotifyRoutineRegistered;
VOID
KmExtsPsCreateProcessNotifyRoutineEx2(
_Inout_ PEPROCESS Process,
_In_ HANDLE ProcessId,
_In_opt_ PPS_CREATE_NOTIFY_INFO CreateInfo
);
#endif
extern BOOLEAN KmExtsPsCreateThreadNotifyRoutineRegistered;
VOID
KmExtsPsCreateThreadNotifyRoutine(
_In_ HANDLE ProcessId,
_In_ HANDLE ThreadId,
_In_ BOOLEAN Create
);
#if (NTDDI_VERSION >= NTDDI_WINTHRESHOLD)
extern BOOLEAN KmExtsPsCreateThreadNotifyRoutineExRegistered;
VOID
KmExtsPsCreateThreadNotifyRoutineEx(
_In_ HANDLE ProcessId,
_In_ HANDLE ThreadId,
_In_ BOOLEAN Create
);
#endif
extern BOOLEAN KmExtsPsLoadImageNotifyRoutineRegistered;
VOID
KmExtsPsLoadImageNotifyRoutine(
_In_ PUNICODE_STRING FullImageName,
_In_ HANDLE ProcessId,
_In_ PIMAGE_INFO ImageInfo
);
#endif __KMEXTS_H__