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
|
#pragma once
#include <Protocol/LoadedImage.h>
#ifndef ZYDIS_DISABLE_FORMATTER
#include <Zydis/Formatter.h>
#endif
#define CR0_WP ((UINTN)0x00010000) // CR0.WP
#define CR0_PG ((UINTN)0x80000000) // CR0.PG
#define CR4_LA57 ((UINTN)0x00001000) // CR4.LA57
#define MSR_EFER ((UINTN)0xC0000080) // Extended Function Enable Register
#define EFER_LMA ((UINTN)0x00000400) // Long Mode Active
#define EFER_UAIE ((UINTN)0x00100000) // Upper Address Ignore Enabled
//
// Waits for a timer event for N milliseconds.
// Requires current TPL to be TPL_APPLICATION.
//
EFI_STATUS
EFIAPI
RtlSleep(
IN UINTN Milliseconds
);
//
// Stalls CPU for N milliseconds.
//
EFI_STATUS
EFIAPI
RtlStall(
IN UINTN Milliseconds
);
//
// Prints info about a loaded image
//
VOID
EFIAPI
PrintLoadedImageInfo(
IN CONST EFI_LOADED_IMAGE *ImageInfo
);
//
// Similar to Print(), but for use during the kernel patching phase.
// Do not call this unless the message is specifically intended for (delayed) display output only.
// Instead use the PRINT_KERNEL_PATCH_MSG() macro so the boot debugger receives messages with no delay.
//
VOID
EFIAPI
AppendKernelPatchMessage(
IN CONST CHAR16 *Format,
...
);
//
// Prints the contents of the kernel patch string buffer to the screen using OutputString() calls.
// This is a separate function because the buffer consists of zero or more null-terminated strings,
// which are printed sequentially to prevent issues with platforms that have small Print() buffer limits
//
VOID
EFIAPI
PrintKernelPatchInfo(
VOID
);
//
// Wrapper for CopyMem() that disables write protection prior to copying if needed.
//
VOID*
EFIAPI
CopyWpMem(
OUT VOID *Destination,
IN CONST VOID *Source,
IN UINTN Length
);
//
// Wrapper for SetMem() that disables write protection prior to copying if needed.
//
VOID*
EFIAPI
SetWpMem(
OUT VOID *Destination,
IN UINTN Length,
IN UINT8 Value
);
//
// Returns TRUE if 5-level paging is enabled.
//
BOOLEAN
EFIAPI
IsFiveLevelPagingEnabled(
VOID
);
//
// Case-insensitive string comparison.
//
INTN
EFIAPI
StrniCmp(
IN CONST CHAR16 *FirstString,
IN CONST CHAR16 *SecondString,
IN UINTN Length
);
//
// Waits for a key to be pressed before continuing execution.
// Returns FALSE if ESC was pressed to abort, TRUE otherwise.
//
BOOLEAN
EFIAPI
WaitForKey(
VOID
);
//
// Sets the foreground colour while preserving the background colour and optionally clears the screen.
// Returns the original console mode attribute.
//
INT32
EFIAPI
SetConsoleTextColour(
IN UINTN TextColour,
IN BOOLEAN ClearScreen
);
//
// Finds a byte pattern starting at the specified address
//
EFI_STATUS
EFIAPI
FindPattern(
IN CONST UINT8* Pattern,
IN UINT8 Wildcard,
IN UINT32 PatternLength,
IN CONST VOID* Base,
IN UINT32 Size,
OUT VOID **Found
);
//
// Finds a byte pattern starting at the specified address (with lots of debug spew)
//
EFI_STATUS
EFIAPI
FindPatternVerbose(
IN CONST UINT8* Pattern,
IN UINT8 Wildcard,
IN UINT32 PatternLength,
IN CONST VOID* Base,
IN UINT32 Size,
OUT VOID **Found
);
//
// Zydis instruction decoder context.
//
typedef struct _ZYDIS_CONTEXT
{
ZydisDecoder Decoder;
ZydisDecodedInstruction Instruction;
ZydisDecodedOperand Operands[ZYDIS_MAX_OPERAND_COUNT];
ZyanU64 InstructionAddress;
UINTN Length;
UINTN Offset;
#ifndef ZYDIS_DISABLE_FORMATTER
ZydisFormatter Formatter;
CHAR8 InstructionText[256];
#endif
} ZYDIS_CONTEXT, *PZYDIS_CONTEXT;
//
// Initializes a decoder context.
//
ZyanStatus
EFIAPI
ZydisInit(
IN PEFI_IMAGE_NT_HEADERS NtHeaders,
OUT PZYDIS_CONTEXT Context
);
//
// Finds the start of a function given an address within it.
// Returns NULL if AddressInFunction is NULL (this simplifies error checking logic in calling functions).
//
UINT8*
EFIAPI
BacktrackToFunctionStart(
IN CONST UINT8* ImageBase,
IN PEFI_IMAGE_NT_HEADERS NtHeaders,
IN CONST UINT8* AddressInFunction
);
|