diff options
author | Matthijs Lavrijsen <mattiwatti@gmail.com> | 2021-01-30 04:42:06 +0100 |
---|---|---|
committer | Matthijs Lavrijsen <mattiwatti@gmail.com> | 2021-01-30 04:42:06 +0100 |
commit | f8ca8c0c008980352c2b3eee6eda21f395bde4cf (patch) | |
tree | 85338bffac330fd39700d45c6c0828d83d3651d6 /EfiGuardDxe/pe.h | |
parent | dceaa9c1c416fc68e3a9e29db34cd04d83cb76ec (diff) |
Use PE runtime function tables for finding function start addressesv1.1.1
Diffstat (limited to 'EfiGuardDxe/pe.h')
-rw-r--r-- | EfiGuardDxe/pe.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/EfiGuardDxe/pe.h b/EfiGuardDxe/pe.h index cf47119..1104dfd 100644 --- a/EfiGuardDxe/pe.h +++ b/EfiGuardDxe/pe.h @@ -40,6 +40,8 @@ typedef EFI_IMAGE_EXPORT_DIRECTORY *PEFI_IMAGE_EXPORT_DIRECTORY; #define VS_VERSION_INFO 1 #define VS_FF_DEBUG (0x00000001L) +#define RUNTIME_FUNCTION_INDIRECT 0x1 + #define IMAGE32(NtHeaders) ((NtHeaders)->OptionalHeader.Magic == EFI_IMAGE_NT_OPTIONAL_HDR32_MAGIC) #define IMAGE64(NtHeaders) ((NtHeaders)->OptionalHeader.Magic == EFI_IMAGE_NT_OPTIONAL_HDR64_MAGIC) @@ -173,6 +175,21 @@ typedef struct _VS_VERSIONINFO // +// Function table entry data +// +typedef struct _RUNTIME_FUNCTION +{ + UINT32 BeginAddress; + UINT32 EndAddress; + union + { + UINT32 UnwindInfoAddress; + UINT32 UnwindData; + } u; +} RUNTIME_FUNCTION, *PRUNTIME_FUNCTION; + + +// // Function declarations // PEFI_IMAGE_NT_HEADERS |