aboutsummaryrefslogtreecommitdiff
path: root/memory.cpp
blob: eb13135388c6b4a639319d9bc7e2e0b2df43b030 (plain)
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
#include <EASTL/finally.h>
#include <eastl_compat.hpp>
#include <except.h>

#include "memory.hpp"
#include "native.h"

#define WINDOWS_1803 17134
#define WINDOWS_1809 17763
#define WINDOWS_1903 18362
#define WINDOWS_1909 18363
#define WINDOWS_2004 19041
#define WINDOWS_20H2 19569
#define WINDOWS_21H1 20180
#define WINDOWS_22H2 19045

#define MIN(a, b) (a < b ? a : b)

extern "C" {
NTSTATUS NTAPI WrapperObOpenObjectByPointer(
    _In_ PVOID obj, _In_ ULONG HandleAttributes,
    _In_ PACCESS_STATE PassedAccessState, _In_ ACCESS_MASK DesiredAccess,
    _In_ POBJECT_TYPE objType, _In_ KPROCESSOR_MODE AccessMode,
    _Out_ PHANDLE Handle);

NTSTATUS NTAPI WrapperZwProtectVirtualMemory(
    _In_ HANDLE ProcessHandle, _In_ _Out_ PVOID *BaseAddress,
    _In_ _Out_ PSIZE_T NumberOfBytesToProtect, _In_ ULONG NewAccessProtection,
    _Out_ PULONG OldAccessProtection);

NTSTATUS NTAPI WrapperMmCopyVirtualMemory(_In_ PEPROCESS SourceProcess,
                                          _In_ PVOID SourceAddress,
                                          _In_ PEPROCESS TargetProcess,
                                          _In_ PVOID TargetAddress,
                                          _In_ SIZE_T BufferSize,
                                          _In_ KPROCESSOR_MODE PreviousMode,
                                          _Out_ PSIZE_T ReturnSize);

PVOID NTAPI MmMapIoSpaceEx(_In_ PHYSICAL_ADDRESS PhysicalAddress,
                           _In_ SIZE_T NumberOfBytes, _In_ ULONG Protect);

NTSTATUS NTAPI MmCopyMemory(_In_ PVOID TargetAddress,
                            _In_ MM_COPY_ADDRESS SourceAddress,
                            _In_ SIZE_T NumberOfBytes, _In_ ULONG Flags,
                            _Out_ PSIZE_T NumberOfBytesTransferred);

NTKERNELAPI
PPEB NTAPI PsGetProcessPeb(_In_ PEPROCESS Process);

NTSTATUS NTAPI ZwQueryVirtualMemory(_In_ HANDLE ProcessHandle,
                                    _In_ PVOID BaseAddress,
                                    _In_ int MemoryInformationClass,
                                    _Out_ PVOID MemoryInformation,
                                    _In_ SIZE_T MemoryInformationLength,
                                    _Out_ PSIZE_T ReturnLength);

NTSTATUS NTAPI ZwQuerySystemInformation(_In_ int SystemInformationClass,
                                        _Inout_ PVOID SystemInformation,
                                        _In_ ULONG SystemInformationLength,
                                        _Out_opt_ PULONG ReturnLength);

NTKERNELAPI PVOID NTAPI PsGetProcessWow64Process(_In_ PEPROCESS Process);
};

static int g_waitCount = 100;
static LONGLONG g_waitTimeout = (-1LL) * 10LL * 1000LL * 250LL; // 250ms

#ifdef ENABLE_EXPERIMENTAL
uint64_t Experimental::GetProcessCr3(_In_ const PEPROCESS pe_process) {
  PUCHAR process = (PUCHAR)pe_process;
  ULONG_PTR process_dirbase =
      *(PULONG_PTR)(process + 0x28); // dirbase x64, 32bit is 0x18
  if (process_dirbase == 0) {
    uint64_t UserDirOffset = Experimental::GetUserDirectoryTableBaseOffset();

    ULONG_PTR process_userdirbase = *(PULONG_PTR)(process + UserDirOffset);
    return process_userdirbase;
  }
  return process_dirbase;
}

PEPROCESS Experimental::SwapProcess(_In_ PEPROCESS new_process) {
  auto current_thread = KeGetCurrentThread();

  auto apc_state = *(uint64_t *)((uint64_t)current_thread + 0x98);
  auto old_process = *(uint64_t *)(apc_state + 0x20);

  *(uint64_t *)(apc_state + 0x20) = reinterpret_cast<uint64_t>(new_process);

  auto dir_table_base = GetProcessCr3(new_process);
  __writecr3(dir_table_base);

  return reinterpret_cast<PEPROCESS>(old_process);
}

uint64_t Experimental::GetUserDirectoryTableBaseOffset() {
  RTL_OSVERSIONINFOW ver = {};
  RtlGetVersion(&ver);
  switch (ver.dwBuildNumber) {
  case WINDOWS_1803:
    return 0x0278;
    break;
  case WINDOWS_1809:
    return 0x0278;
    break;
  case WINDOWS_1903:
    return 0x0280;
    break;
  case WINDOWS_1909:
    return 0x0280;
    break;
  case WINDOWS_2004:
    return 0x0388;
    break;
  case WINDOWS_20H2:
    return 0x0388;
    break;
  case WINDOWS_21H1:
    return 0x0388;
    break;
  case WINDOWS_22H2:
    return 0x0388;
    break;
  default:
    return 0x0388;
  }
}

NTSTATUS Experimental::ReadPhysicalAddress(_In_ PVOID TargetAddress,
                                           _In_ PVOID lpBuffer,
                                           _In_ SIZE_T Size,
                                           _Out_ SIZE_T *BytesRead) {
  MM_COPY_ADDRESS AddrToRead = {};
  AddrToRead.PhysicalAddress.QuadPart = (LONGLONG)TargetAddress;
  return MmCopyMemory(lpBuffer, AddrToRead, Size, MM_COPY_MEMORY_PHYSICAL,
                      BytesRead);
}

NTSTATUS Experimental::WritePhysicalAddress(_In_ PVOID TargetAddress,
                                            _In_ PVOID lpBuffer,
                                            _In_ SIZE_T Size,
                                            _Out_ SIZE_T *BytesWritten) {
  if (!TargetAddress)
    return STATUS_UNSUCCESSFUL;

  PHYSICAL_ADDRESS AddrToWrite = {};
  AddrToWrite.QuadPart = LONGLONG(TargetAddress);

  PVOID pmapped_mem = MmMapIoSpaceEx(AddrToWrite, Size, PAGE_READWRITE);

  if (!pmapped_mem)
    return STATUS_UNSUCCESSFUL;

  memcpy(pmapped_mem, lpBuffer, Size);

  *BytesWritten = Size;
  MmUnmapIoSpace(pmapped_mem, Size);
  return STATUS_SUCCESS;
}

uint64_t Experimental::GetKernelDirBase() {
  PUCHAR process = (PUCHAR)PsGetCurrentProcess();
  ULONG_PTR cr3 = *(PULONG_PTR)(process + 0x28); // dirbase x64, 32bit is 0x18
  return cr3;
}

uint64_t Experimental::TranslateLinearAddress(_In_ uint64_t directoryTableBase,
                                              _In_ uint64_t virtualAddress) {
  directoryTableBase &= ~0xf;

  UINT64 pageOffset =
      virtualAddress & ~(~0ul << Experimental::page_offset_size);
  UINT64 pte = ((virtualAddress >> 12) & (0x1ffll));
  UINT64 pt = ((virtualAddress >> 21) & (0x1ffll));
  UINT64 pd = ((virtualAddress >> 30) & (0x1ffll));
  UINT64 pdp = ((virtualAddress >> 39) & (0x1ffll));

  SIZE_T readsize = 0;
  UINT64 pdpe = 0;
  ReadPhysicalAddress(PVOID(directoryTableBase + 8 * pdp), &pdpe, sizeof(pdpe),
                      &readsize);
  if (~pdpe & 1)
    return 0;

  UINT64 pde = 0;
  ReadPhysicalAddress(PVOID((pdpe & Experimental::page_mask) + 8 * pd), &pde,
                      sizeof(pde), &readsize);
  if (~pde & 1)
    return 0;

  /* 1GB large page, use pde's 12-34 bits */
  if (pde & 0x80)
    return (pde & (~0ull << 42 >> 12)) + (virtualAddress & ~(~0ull << 30));

  UINT64 pteAddr = 0;
  ReadPhysicalAddress(PVOID((pde & Experimental::page_mask) + 8 * pt), &pteAddr,
                      sizeof(pteAddr), &readsize);
  if (~pteAddr & 1)
    return 0;

  /* 2MB large page */
  if (pteAddr & 0x80)
    return (pteAddr & Experimental::page_mask) +
           (virtualAddress & ~(~0ull << 21));

  virtualAddress = 0;
  ReadPhysicalAddress(PVOID((pteAddr & Experimental::page_mask) + 8 * pte),
                      &virtualAddress, sizeof(virtualAddress), &readsize);
  virtualAddress &= Experimental::page_mask;

  if (!virtualAddress)
    return 0;

  return virtualAddress + pageOffset;
}

NTSTATUS Experimental::WriteProcessMemory(_In_ HANDLE pid,
                                          _In_ uint64_t Address,
                                          _In_ uint64_t AllocatedBuffer,
                                          _In_ SIZE_T size,
                                          _Out_ SIZE_T *written) {
  DbgPrintEx(0, 0, "\n[Write] Address is: %llx", Address);
  PEPROCESS pProcess = NULL;
  if (pid == NULL)
    return STATUS_UNSUCCESSFUL;

  NTSTATUS NtRet = PsLookupProcessByProcessId(pid, &pProcess);
  if (NtRet != STATUS_SUCCESS)
    return NtRet;

  ULONG_PTR process_dirbase = GetProcessCr3(pProcess);
  ObDereferenceObject(pProcess);
  DbgPrintEx(0, 0, "\n[Write] DirBase is: %llx", process_dirbase);
  SIZE_T CurOffset = 0;
  SIZE_T TotalSize = size;
  while (TotalSize) {
    uint64_t CurPhysAddr =
        TranslateLinearAddress(process_dirbase, (ULONG64)Address + CurOffset);
    if (!CurPhysAddr)
      return STATUS_UNSUCCESSFUL;

    ULONG64 WriteSize = MIN(PAGE_SIZE - (CurPhysAddr & 0xFFF), TotalSize);
    SIZE_T BytesWritten = 0;
    NtRet = WritePhysicalAddress((PVOID)CurPhysAddr,
                                 (PVOID)((ULONG64)AllocatedBuffer + CurOffset),
                                 WriteSize, &BytesWritten);
    TotalSize -= BytesWritten;
    CurOffset += BytesWritten;
    if (NtRet != STATUS_SUCCESS)
      break;
    if (BytesWritten == 0)
      break;
  }

  *written = CurOffset;
  return NtRet;
}

NTSTATUS Experimental::ReadProcessMemory(_In_ HANDLE pid, _In_ uint64_t Address,
                                         _In_ uint64_t AllocatedBuffer,
                                         _In_ SIZE_T size, _Out_ SIZE_T *read) {
  DbgPrintEx(0, 0, "\n[Read] Address is: %llx", Address);
  PEPROCESS pProcess = NULL;
  if (pid == NULL)
    return STATUS_UNSUCCESSFUL;

  NTSTATUS NtRet = PsLookupProcessByProcessId(pid, &pProcess);
  if (NtRet != STATUS_SUCCESS)
    return NtRet;

  ULONG_PTR process_dirbase = GetProcessCr3(pProcess);
  DbgPrintEx(0, 0, "\n[Read] DirBase is: %llx", process_dirbase);
  ObDereferenceObject(pProcess);

  SIZE_T CurOffset = 0;
  SIZE_T TotalSize = size;
  while (TotalSize) {
    uint64_t CurPhysAddr =
        TranslateLinearAddress(process_dirbase, (ULONG64)Address + CurOffset);
    if (!CurPhysAddr)
      return STATUS_UNSUCCESSFUL;

    ULONG64 ReadSize = MIN(PAGE_SIZE - (CurPhysAddr & 0xFFF), TotalSize);
    SIZE_T BytesRead = 0;
    NtRet = ReadPhysicalAddress((PVOID)CurPhysAddr,
                                (PVOID)((ULONG64)AllocatedBuffer + CurOffset),
                                ReadSize, &BytesRead);
    TotalSize -= BytesRead;
    CurOffset += BytesRead;
    if (NtRet != STATUS_SUCCESS)
      break;
    if (BytesRead == 0)
      break;
  }

  *read = CurOffset;
  return NtRet;
}

uint64_t
Experimental::VirtualAddressToPhysicalAddress(_In_ PVOID VirtualAddress) {
  return MmGetPhysicalAddress(VirtualAddress).QuadPart;
}

uint64_t
Experimental::PhysicalAddressToVirtualAddress(_In_ uint64_t PhysicalAddress) {
  PHYSICAL_ADDRESS PhysicalAddr = {};
  PhysicalAddr.QuadPart = PhysicalAddress;

  return reinterpret_cast<uint64_t>(MmGetVirtualForPhysical(PhysicalAddr));
}
#endif

void SetLdrInitWaitPrefs(int waitCount, LONGLONG waitTimeout) {
  g_waitCount = waitCount;
  g_waitTimeout = waitTimeout;
}

eastl::vector<Process> GetProcesses() {
  eastl::vector<Process> result;
  ULONG memoryNeeded = 0;

  if (ZwQuerySystemInformation(SystemProcessInformation, NULL, 0,
                               &memoryNeeded) != STATUS_INFO_LENGTH_MISMATCH ||
      !memoryNeeded) {
    return {};
  }

  auto memory = new uint8_t[memoryNeeded];
  const auto &fnRet = eastl::make_finally([&] { delete[] memory; });

  if (!memory || !NT_SUCCESS(ZwQuerySystemInformation(
                     SystemProcessInformation, memory, memoryNeeded, NULL))) {
    return {};
  }

  result.reserve(memoryNeeded / sizeof(SYSTEM_PROCESS_INFORMATION));
  PSYSTEM_PROCESS_INFORMATION processEntry =
      (PSYSTEM_PROCESS_INFORMATION)memory;
  do {
    Process p;
    p.NumberOfThreads = processEntry->ThreadCount;
    if (processEntry->ProcessName.Length > 0) {
      p.ProcessName = eastl::wstring(processEntry->ProcessName.Buffer);
      // DbgPrint("%ws : %llu\n", p.ProcessName.c_str(),
      // processEntry->ProcessId);
    }
    p.UniqueProcessId = processEntry->ProcessId;
    p.HandleCount = processEntry->HandleCount;
    result.push_back(p);

    processEntry = (PSYSTEM_PROCESS_INFORMATION)((uint8_t *)processEntry +
                                                 processEntry->NextEntryDelta);
  } while (processEntry->NextEntryDelta);

  return result;
}

NTSTATUS OpenProcess(_In_ HANDLE pid, _Out_ PEPROCESS *pep,
                     _Out_ HANDLE *process) {
  NTSTATUS status = PsLookupProcessByProcessId(pid, pep);

  if (NT_SUCCESS(status)) {
    status = WrapperObOpenObjectByPointer(
        *pep, OBJ_KERNEL_HANDLE | OBJ_CASE_INSENSITIVE, NULL,
        GENERIC_ALL | PROCESS_ALL_ACCESS, *PsProcessType, KernelMode, process);
  }

  return status;
}

NTSTATUS CloseProcess(_In_ _Out_ PEPROCESS *pep, _In_ _Out_ HANDLE *process) {
  NTSTATUS status = STATUS_UNSUCCESSFUL;

  if (pep != NULL && process != NULL) {
    ObDereferenceObject(*pep);
    *pep = NULL;
    status = ZwClose(*process);
    *process = NULL;
  }

  return status;
}

eastl::vector<Page> GetPages(_In_ HANDLE obj, SIZE_T maxPages,
                             ULONG_PTR startAddress) {
  NTSTATUS status;
  MEMORY_BASIC_INFORMATION memory;
  SIZE_T memoryNeeded = 0;
  eastl::vector<Page> pages;

  do {
    status =
        ZwQueryVirtualMemory(obj, (PVOID)startAddress, MemoryBasicInformation,
                             &memory, sizeof(memory), &memoryNeeded);
    if (!NT_SUCCESS(status) || !memoryNeeded) {
      return pages;
    }

    Page p;
    p.BaseAddress = (uint64_t)memory.BaseAddress;
    p.AllocationBase = (uint64_t)memory.AllocationBase;
    p.AllocationProtect = memory.AllocationProtect;
    p.RegionSize = memory.RegionSize;
    p.State = memory.State;
    p.Protect = memory.Protect;
    p.Type = memory.Type;
    pages.push_back(p);

    startAddress += memory.RegionSize;
  } while (pages.size() < maxPages);

  return pages;
}

eastl::vector<Module> GetModules(_In_ PEPROCESS Process, _In_ BOOLEAN isWow64) {
  KAPC_STATE apcstate;

  KeStackAttachProcess((PKPROCESS)Process, &apcstate);
  const auto &fnRet =
      eastl::make_finally([&] { KeUnstackDetachProcess(&apcstate); });

  eastl::vector<Module> result;
  INT waitCount = 0;

  if (isWow64) {
    PPEB32 peb32 = (PPEB32)PsGetProcessWow64Process(Process);
    if (!peb32) {
      return {};
    }

    PPEB_LDR_DATA32 ldr32 = (PPEB_LDR_DATA32)((ULONG_PTR)peb32->Ldr);
    if (!ldr32) {
      return {};
    }

    if (!ldr32->Initialized) {
      while (!ldr32->Initialized && waitCount++ < g_waitCount) {
        LARGE_INTEGER wait = {.QuadPart = g_waitTimeout};
        KeDelayExecutionThread(KernelMode, TRUE, &wait);
      }

      if (!ldr32->Initialized) {
        return {};
      }
    }

    for (PLIST_ENTRY32 listEntry =
             (PLIST_ENTRY32)((ULONG_PTR)ldr32->InLoadOrderModuleList.Flink);
         listEntry != (PLIST_ENTRY32)((ULONG_PTR)&ldr32->InLoadOrderModuleList);
         listEntry = (PLIST_ENTRY32)((ULONG_PTR)listEntry->Flink)) {

      PLDR_DATA_TABLE_ENTRY32 ldrEntry32 = CONTAINING_RECORD(
          listEntry, LDR_DATA_TABLE_ENTRY32, InLoadOrderLinks);

      Module mod;
      mod.DllBase = ldrEntry32->DllBase;
      mod.EntryPoint = ldrEntry32->EntryPoint;
      mod.SizeOfImage = ldrEntry32->SizeOfImage;
      mod.FullDllName.assign_convert(eastl::u16string(
          (char16_t *)((ULONG_PTR)ldrEntry32->FullDllName.Buffer)));
      mod.BaseDllName.assign_convert(eastl::u16string(
          (char16_t *)((ULONG_PTR)ldrEntry32->BaseDllName.Buffer)));
      mod.Flags = ldrEntry32->Flags;
      mod.LoadCount = ldrEntry32->LoadCount;
      mod.TlsIndex = ldrEntry32->TlsIndex;
      result.emplace_back(mod);
    }
  } else {
    PPEB peb = (PPEB)PsGetProcessPeb(Process);
    if (!peb) {
      return {};
    }

    PPEB_LDR_DATA ldr = (PPEB_LDR_DATA)((ULONG_PTR)peb->Ldr);
    if (!ldr) {
      return {};
    }

    if (!ldr->Initialized) {
      while (!ldr->Initialized && waitCount++ < g_waitCount) {
        LARGE_INTEGER wait = {.QuadPart = g_waitTimeout};
        KeDelayExecutionThread(KernelMode, TRUE, &wait);
      }

      if (!ldr->Initialized) {
        return {};
      }
    }

    for (PLIST_ENTRY64 listEntry =
             (PLIST_ENTRY64)((ULONG_PTR)ldr->InLoadOrderModuleList.Flink);
         listEntry != (PLIST_ENTRY64)((ULONG_PTR)&ldr->InLoadOrderModuleList);
         listEntry = (PLIST_ENTRY64)listEntry->Flink) {

      PLDR_DATA_TABLE_ENTRY ldrEntry64 =
          CONTAINING_RECORD(listEntry, LDR_DATA_TABLE_ENTRY, InLoadOrderLinks);

      Module mod;
      mod.DllBase = (uint64_t)ldrEntry64->DllBase;
      mod.EntryPoint = (uint64_t)ldrEntry64->EntryPoint;
      mod.SizeOfImage = ldrEntry64->SizeOfImage;
      mod.FullDllName.assign_convert(
          eastl::u16string((char16_t *)ldrEntry64->FullDllName.Buffer));
      mod.BaseDllName.assign_convert(
          eastl::u16string((char16_t *)ldrEntry64->BaseDllName.Buffer));
      mod.Flags = ldrEntry64->Flags;
      mod.LoadCount = ldrEntry64->LoadCount;
      mod.TlsIndex = ldrEntry64->TlsIndex;
      result.emplace_back(mod);
    }
  }

  return result;
}

extern "C" int ehandler(_In_ EXCEPTION_POINTERS *ep) {
  (void)ep;
  return EXCEPTION_EXECUTE_HANDLER;
}

NTSTATUS ProtectVirtualMemory(_In_ PEPROCESS pep, _In_ uint64_t addr,
                              _In_ SIZE_T size, _In_ ULONG newProt,
                              _Out_ ULONG *oldProt) {
  KAPC_STATE apcState;
  NTSTATUS status;
  PVOID paddr = (PVOID)addr;
  SIZE_T psize = size;
  ULONG prot = 0;

  KeStackAttachProcess((PKPROCESS)pep, &apcState);

  __dpptry(ehandler, pvm) {
    status = WrapperZwProtectVirtualMemory(ZwCurrentProcess(), &paddr, &psize,
                                           newProt, &prot);
    *oldProt = prot;
  }
  __dppexcept(pvm) { status = STATUS_ACCESS_VIOLATION; }
  __dpptryend(pvm);

  KeUnstackDetachProcess(&apcState);

  return status;
}

NTSTATUS RestoreProtectVirtualMemory(_In_ PEPROCESS pep, _In_ uint64_t addr,
                                     _In_ SIZE_T siz, _In_ ULONG old_prot) {
  KAPC_STATE apcState;
  NTSTATUS status;
  PVOID paddr = (PVOID)addr;
  SIZE_T psize = siz;
  ULONG prot = 0;

  KeStackAttachProcess((PKPROCESS)pep, &apcState);

  __dpptry(ehandler, rpvm) {
    status = WrapperZwProtectVirtualMemory(ZwCurrentProcess(), &paddr, &psize,
                                           old_prot, &prot);
  }
  __dppexcept(rpvm) { status = STATUS_ACCESS_VIOLATION; }
  __dpptryend(rpvm);

  KeUnstackDetachProcess(&apcState);

  return status;
}

NTSTATUS ReadVirtualMemory(_In_ PEPROCESS pep, _In_ uint64_t sourceAddress,
                           _In_ UCHAR *targetAddress, _In_ _Out_ SIZE_T *size) {
  NTSTATUS status = STATUS_SUCCESS;
  SIZE_T bytes = 0;

  __dpptry(ehandler, rvm) {
    status = WrapperMmCopyVirtualMemory(
        pep, (PVOID)sourceAddress, PsGetCurrentProcess(), (PVOID)targetAddress,
        *size, KernelMode, &bytes);
  }
  __dppexcept(rvm) { status = STATUS_UNSUCCESSFUL; }
  __dpptryend(rvm);

  *size = bytes;

  return status;
}

NTSTATUS WriteVirtualMemory(_In_ PEPROCESS pep, _In_ const UCHAR *sourceAddress,
                            _In_ _Out_ uint64_t targetAddress,
                            _In_ _Out_ SIZE_T *size) {
  NTSTATUS status = STATUS_SUCCESS;
  SIZE_T bytes = 0;

  __dpptry(ehandler, wvm) {
    status = WrapperMmCopyVirtualMemory(
        PsGetCurrentProcess(), (PVOID)sourceAddress, pep, (PVOID)targetAddress,
        *size, KernelMode, &bytes);
  }
  __dppexcept(wvm) { status = STATUS_UNSUCCESSFUL; }
  __dpptryend(wvm);

  *size = bytes;

  return status;
}