You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.1 KiB
54 lines
1.1 KiB
4 years ago
|
#pragma once
|
||
|
#include <intrin.h>
|
||
|
#include <xmmintrin.h>
|
||
|
#include <cstddef>
|
||
|
#define PORT_NUM 0x2F8
|
||
4 years ago
|
#define WINVER 2004
|
||
4 years ago
|
#define DBG_PRINT(arg) \
|
||
|
__outbytestring(PORT_NUM, (unsigned char*)arg, sizeof arg);
|
||
|
|
||
|
typedef struct _context_t
|
||
|
{
|
||
|
uintptr_t rax;
|
||
|
uintptr_t rcx;
|
||
|
uintptr_t rdx;
|
||
|
uintptr_t rbx;
|
||
|
uintptr_t rsp;
|
||
|
uintptr_t rbp;
|
||
|
uintptr_t rsi;
|
||
|
uintptr_t rdi;
|
||
|
uintptr_t r8;
|
||
|
uintptr_t r9;
|
||
|
uintptr_t r10;
|
||
|
uintptr_t r11;
|
||
|
uintptr_t r12;
|
||
|
uintptr_t r13;
|
||
|
uintptr_t r14;
|
||
|
uintptr_t r15;
|
||
|
__m128 xmm0;
|
||
|
__m128 xmm1;
|
||
|
__m128 xmm2;
|
||
|
__m128 xmm3;
|
||
|
__m128 xmm4;
|
||
|
__m128 xmm5;
|
||
|
} context_t, *pcontext_t;
|
||
4 years ago
|
|
||
|
#if WINVER > 1803
|
||
4 years ago
|
using vmexit_handler_t = void (__fastcall*)(pcontext_t* context, void* unknown);
|
||
4 years ago
|
#else
|
||
|
using vmexit_handler_t = void(__fastcall*)(pcontext_t context, void* unknown);
|
||
|
#endif
|
||
4 years ago
|
|
||
|
#pragma pack(push, 1)
|
||
4 years ago
|
typedef struct _voyager_t
|
||
4 years ago
|
{
|
||
4 years ago
|
// RVA from golden record entry ---> back to original vmexit handler...
|
||
4 years ago
|
uintptr_t vcpu_run_rva;
|
||
4 years ago
|
uintptr_t hyperv_module_base;
|
||
|
uintptr_t hyperv_module_size;
|
||
|
uintptr_t record_base;
|
||
|
uintptr_t record_size;
|
||
4 years ago
|
} voyager_t, *pvoyager_t;
|
||
4 years ago
|
#pragma pack(pop)
|
||
4 years ago
|
|
||
|
__declspec(dllexport) inline voyager_t voyager_context;
|