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
|
#include "binaryninjaapi.h"
#include "lowlevelilinstruction.h"
using namespace BinaryNinja;
using namespace std;
Ref<Platform> g_windowsKernelX86, g_windowsKernelX64, g_windowsKernelArm64;
class WindowsKernelX86Platform : public Platform
{
public:
WindowsKernelX86Platform(Architecture* arch) : Platform(arch, "windows-kernel-x86")
{
Ref<CallingConvention> cc;
cc = arch->GetCallingConventionByName("cdecl");
if (cc)
{
RegisterDefaultCallingConvention(cc);
RegisterCdeclCallingConvention(cc);
}
cc = arch->GetCallingConventionByName("fastcall");
if (cc)
RegisterFastcallCallingConvention(cc);
cc = arch->GetCallingConventionByName("stdcall");
if (cc)
RegisterStdcallCallingConvention(cc);
cc = arch->GetCallingConventionByName("thiscall");
if (cc)
RegisterCallingConvention(cc);
// Linux-style register convention is commonly used by Borland compilers
cc = arch->GetCallingConventionByName("regparm");
if (cc)
RegisterCallingConvention(cc);
}
virtual bool GetFallbackEnabled() override
{
return false;
}
static Ref<Platform> Recognize(BinaryView* view, Metadata* metadata)
{
Ref<Metadata> subsystem = metadata->Get("Subsystem");
if (!subsystem || !subsystem->IsUnsignedInteger())
return nullptr;
if (subsystem->GetUnsignedInteger() == 1) // IMAGE_SUBSYSTEM_NATIVE
return g_windowsKernelX86;
return nullptr;
}
};
class WindowsKernelX64Platform : public Platform
{
public:
WindowsKernelX64Platform(Architecture* arch) : Platform(arch, "windows-kernel-x86_64")
{
Ref<CallingConvention> cc;
cc = arch->GetCallingConventionByName("win64");
if (cc)
{
RegisterDefaultCallingConvention(cc);
RegisterCdeclCallingConvention(cc);
RegisterFastcallCallingConvention(cc);
RegisterStdcallCallingConvention(cc);
}
// Linux-style calling convention is sometimes used internally by WindowsKernel applications
cc = arch->GetCallingConventionByName("sysv");
RegisterCallingConvention(cc);
}
virtual bool GetFallbackEnabled() override
{
return false;
}
static Ref<Platform> Recognize(BinaryView* view, Metadata* metadata)
{
Ref<Metadata> subsystem = metadata->Get("Subsystem");
if (!subsystem || !subsystem->IsUnsignedInteger())
return nullptr;
if (subsystem->GetUnsignedInteger() == 1) // IMAGE_SUBSYSTEM_NATIVE
return g_windowsKernelX64;
return nullptr;
}
};
class WindowsKernelArm64Platform : public Platform
{
public:
WindowsKernelArm64Platform(Architecture* arch) : Platform(arch, "windows-kernel-windows-aarch64")
{
Ref<CallingConvention> cc;
cc = arch->GetCallingConventionByName("cdecl");
if (cc)
{
RegisterDefaultCallingConvention(cc);
RegisterCdeclCallingConvention(cc);
RegisterFastcallCallingConvention(cc);
RegisterStdcallCallingConvention(cc);
}
}
virtual bool GetFallbackEnabled() override
{
return false;
}
static Ref<Platform> Recognize(BinaryView* view, Metadata* metadata)
{
Ref<Metadata> subsystem = metadata->Get("Subsystem");
if (!subsystem || !subsystem->IsUnsignedInteger())
return nullptr;
if (subsystem->GetUnsignedInteger() == 1) // IMAGE_SUBSYSTEM_NATIVE
return g_windowsKernelArm64;
return nullptr;
}
};
extern "C"
{
BN_DECLARE_CORE_ABI_VERSION
#ifndef DEMO_EDITION
BINARYNINJAPLUGIN void CorePluginDependencies()
{
AddOptionalPluginDependency("arch_x86");
AddOptionalPluginDependency("arch_arm64");
AddOptionalPluginDependency("view_pe");
}
#endif
#ifdef DEMO_EDITION
bool WindowsKernelPluginInit()
#else
BINARYNINJAPLUGIN bool CorePluginInit()
#endif
{
Ref<BinaryViewType> pe = BinaryViewType::GetByName("PE");
if (pe)
{
Ref<Architecture> x86 = Architecture::GetByName("x86");
if (x86)
{
g_windowsKernelX86 = new WindowsKernelX86Platform(x86);
Platform::Register("windows-kernel", g_windowsKernelX86);
pe->RegisterPlatformRecognizer(0x14c, LittleEndian, WindowsKernelX86Platform::Recognize);
}
Ref<Architecture> x64 = Architecture::GetByName("x86_64");
if (x64)
{
g_windowsKernelX64 = new WindowsKernelX64Platform(x64);
Platform::Register("windows-kernel", g_windowsKernelX64);
pe->RegisterPlatformRecognizer(0x8664, LittleEndian, WindowsKernelX64Platform::Recognize);
}
Ref<Architecture> arm64 = Architecture::GetByName("aarch64");
if (arm64)
{
g_windowsKernelArm64 = new WindowsKernelArm64Platform(arm64);
Platform::Register("windows-kernel", g_windowsKernelArm64);
pe->RegisterPlatformRecognizer(0xaa64, LittleEndian, WindowsKernelArm64Platform::Recognize);
}
}
return true;
}
}
|