vmi_os_windows/offsets/mod.rs
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
pub(crate) mod v1;
pub(crate) mod v2;
use isr_core::Profile;
use isr_macros::{offsets, symbols, Bitfield, Error, Field};
symbols! {
/// Windows kernel symbols used by the [`WindowsOs`] implementation.
///
/// [`WindowsOs`]: crate::WindowsOs
#[derive(Debug)]
pub struct Symbols {
PsActiveProcessHead: u64,
PsInitialSystemProcess: u64,
KiDispatchException: Option<u64>,
DbgkpSendErrorMessage: Option<u64>,
KiKvaShadow: Option<u64>,
KiSystemCall32: u64,
KiSystemCall64: u64,
//KiSystemCall32Shadow: u64,
//KiSystemCall64Shadow: u64,
KiSystemServiceStart: u64,
KiSystemServiceExit: u64,
MmPfnDatabase: u64,
MmHighestUserAddress: u64,
AlpcpSendMessage: Option<u64>,
MiDeletePartialVad: Option<u64>,
MiDeleteVad: Option<u64>,
MiDeleteVirtualAddresses: Option<u64>,
MiGetWsAndInsertVad: Option<u64>,
MiInsertPrivateVad: Option<u64>,
MiInsertVad: Option<u64>,
MiRemoveVadAndView: Option<u64>,
NtBuildLab: u64,
NtBuildLabEx: Option<u64>,
NtAllocateVirtualMemory: Option<u64>,
NtFreeVirtualMemory: Option<u64>,
NtProtectVirtualMemory: Option<u64>,
NtReadVirtualMemory: Option<u64>,
NtWriteVirtualMemory: Option<u64>,
NtQueryVirtualMemory: Option<u64>,
NtMapViewOfSection: Option<u64>,
NtUnmapViewOfSection: Option<u64>,
NtCreateFile: Option<u64>,
NtOpenFile: Option<u64>,
NtQueryInformationFile: Option<u64>,
NtSetInformationFile: Option<u64>,
NtReadFile: Option<u64>,
NtWriteFile: Option<u64>,
NtDeviceIoControlFile: Option<u64>,
NtClose: Option<u64>,
ExAllocatePoolWithTag: u64,
ExFreePoolWithTag: u64,
MmGetSystemRoutineAddress: u64,
ObHeaderCookie: Option<u64>,
ObTypeIndexTable: u64,
ObpInfoMaskToOffset: u64,
ObpKernelHandleTable: u64,
PspInsertProcess: Option<u64>,
MmCleanProcessAddressSpace: Option<u64>,
}
}
offsets! {
/// Common Windows kernel offsets used by the [`WindowsOs`] implementation.
///
/// These offsets are common to all Windows versions.
///
/// [`WindowsOs`]: crate::WindowsOs
#[derive(Debug)]
pub struct OffsetsCommon {
struct _EX_FAST_REF {
RefCnt: Bitfield,
Value: Field,
}
struct _UNICODE_STRING {
Length: Field,
MaximumLength: Field,
Buffer: Field,
}
struct _KPCR {
Prcb: Field,
}
struct _KPRCB {
CurrentThread: Field,
}
struct _CLIENT_ID {
UniqueProcess: Field,
UniqueThread: Field,
}
struct _EXCEPTION_RECORD {
ExceptionCode: Field,
ExceptionFlags: Field,
ExceptionRecord: Field,
ExceptionAddress: Field,
NumberParameters: Field,
ExceptionInformation: Field,
}
struct _HANDLE_TABLE {
TableCode: Field,
}
struct _OBJECT_ATTRIBUTES {
RootDirectory: Field,
ObjectName: Field,
Attributes: Field,
}
struct _OBJECT_HEADER {
TypeIndex: Field,
InfoMask: Field,
Body: Field,
}
struct _OBJECT_HEADER_NAME_INFO {
Directory: Field,
Name: Field,
}
struct _OBJECT_TYPE {
Name: Field,
}
struct _MMSECTION_FLAGS {
Image: Bitfield,
File: Bitfield,
}
struct _KTRAP_FRAME {
Rax: Field,
Rcx: Field,
Rdx: Field,
R8: Field,
R9: Field,
R10: Field,
R11: Field,
Rip: Field,
Rsp: Field,
}
struct _KAPC_STATE {
Process: Field,
}
struct _KTHREAD {
TrapFrame: Field,
ApcState: Field,
Teb: Field,
Process: Field,
}
struct _ETHREAD {
Cid: Field,
}
struct _KPROCESS {
DirectoryTableBase: Field,
UserDirectoryTableBase: Option<Field>,
}
struct _EPROCESS {
UniqueProcessId: Field,
ActiveProcessLinks: Field,
SectionBaseAddress: Field,
InheritedFromUniqueProcessId: Field,
Peb: Field,
ObjectTable: Field,
#[isr(alias = "Wow64Process")]
WoW64Process: Field,
ImageFileName: Field,
VadRoot: Field, // _MM_AVL_TABLE (Windows 7, contains BalancedRoot at offset 0)
// _RTL_AVL_TREE (Windows 10+)
VadHint: Option<Field>, // PVOID (Windows 10+, _MM_AVL_TABLE.NodeHint on Windows 7)
}
struct _PEB {
ImageBaseAddress: Field, // PVOID
Ldr: Field, // _PEB_LDR_DATA*
ProcessParameters: Field, // _RTL_USER_PROCESS_PARAMETERS*
}
struct _TEB {
LastErrorValue: Field,
LastStatusValue: Field,
}
struct _RTL_USER_PROCESS_PARAMETERS {
CurrentDirectory: Field, // _CURDIR
DllPath: Field, // _UNICODE_STRING
ImagePathName: Field, // _UNICODE_STRING
CommandLine: Field, // _UNICODE_STRING
}
struct _CURDIR {
DosPath: Field, // _UNICODE_STRING
}
struct _MMPFN {
ReferenceCount: Field, // USHORT
//
// NOTE: The PageLocation field is located INSIDE the e1 field.
// However, on Windows 7 the e1 field is named _MMPFNENTRY,
// while on Windows 10 (since 1607/RS1 - build 14393) it is
// named _MMPFNENTRY1.
//
// NOTE: On Windows XP, the PageLocation field is located inside
// the e2 field. Therefore, Windows XP is unsupported.
//
// Instead of creating two separate structures, we can exploit the
// fact that the ISR library allows us to search for nested fields.
//
e1: Field,
PageLocation: Bitfield,
}
struct _MMVAD_FLAGS {
// VadFlags: Field, // _MMVAD_FLAGS
VadType: Bitfield, // ULONG (3 bits)
Protection: Bitfield, // ULONG bitfield (5 bits)
PrivateMemory: Bitfield, // ULONG bitfield (1 bit)
MemCommit: Option<Bitfield>, // ULONG bitfield (1 bit, might be in _MMVAD_FLAGS1)
}
struct _MMVAD_SHORT {
//
// On Windows 7, the LeftChild and RightChild fields are directly present
// in the _MMVAD / _MMVAD_SHORT structure.
//
// In Windows 10, there is a _RTL_BALANCED_NODE structure (VadNode) at the
// start of the _MMVAD structure, which contains the Left and Right fields.
//
// VadNode: Field, // _RTL_BALANCED_NODE (always at offset 0)
#[isr(alias = "LeftChild")] // _MMVAD*
Left: Field, // _RTL_BALANCED_NODE* (VadNode.Left)
#[isr(alias = "RightChild")] // _MMVAD*
Right: Field, // _RTL_BALANCED_NODE* (VadNode.Right)
StartingVpn: Field, // ULONG
EndingVpn: Field, // ULONG
StartingVpnHigh: Option<Field>, // UCHAR
EndingVpnHigh: Option<Field>, // UCHAR
VadFlags: Field, // _MMVAD_FLAGS
VadFlags1: Option<Field>, // _MMVAD_FLAGS1 (Windows 8+)
}
struct _MMVAD {
// Core: Field, // _MMVAD_SHORT (always at offset 0)
Subsection: Field, // _SUBSECTION*
}
struct _SUBSECTION {
ControlArea: Field,
}
struct _CONTROL_AREA {
Flags: Field,
FilePointer: Field,
}
struct _FILE_OBJECT {
DeviceObject: Field,
Vpb: Field,
FileName: Field,
}
struct _DEVICE_OBJECT {
DriverObject: Field,
AttachedDevice: Field,
Flags: Field,
Vpb: Field,
}
struct _VPB {
DeviceObject: Field,
RealDevice: Field,
}
}
}
/// Extended offsets for Windows.
pub enum OffsetsExt {
/// First version of extended offsets.
///
/// This version is used for Windows 7.
V1(v1::Offsets),
/// Second version of extended offsets.
///
/// This version is used for Windows 10+.
V2(v2::Offsets),
}
/// Offsets for Windows.
pub struct Offsets {
/// Offsets common to all Windows versions.
pub common: OffsetsCommon,
/// Extended offsets specific to the Windows version.
pub ext: Option<OffsetsExt>,
}
impl Offsets {
/// Creates a new `Offsets` instance.
pub fn new(profile: &Profile) -> Result<Self, Error> {
let common = OffsetsCommon::new(profile)?;
let ext = if let Ok(v1) = v1::Offsets::new(profile) {
Some(OffsetsExt::V1(v1))
}
else if let Ok(v2) = v2::Offsets::new(profile) {
Some(OffsetsExt::V2(v2))
}
else {
None
};
Ok(Self { common, ext })
}
}