-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathSymbolsTest.cs
282 lines (219 loc) · 10.6 KB
/
SymbolsTest.cs
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
using System;
using System.Runtime.InteropServices;
using System.Text;
using Xunit;
namespace CoreHook.Tests.Windows
{
[Collection("Local Hook Tests")]
public class SymbolsTest
{
[UnmanagedFunctionPointer(CallingConvention.StdCall,
CharSet = CharSet.Unicode,
SetLastError = true)]
private delegate ushort AddAtomWDelegate(string lpString);
[UnmanagedFunctionPointer(CallingConvention.StdCall,
CharSet = CharSet.Unicode,
SetLastError = true)]
private delegate ushort InternalAddAtomDelegate(bool local, bool unicode,
string atomName, int arg4);
[UnmanagedFunctionPointer(CallingConvention.StdCall,
CharSet = CharSet.Unicode,
SetLastError = true)]
private delegate ushort InternalFindAtom(bool local, bool unicode,
string atomName);
private InternalAddAtomDelegate InternalAddAtomFunction;
private InternalFindAtom InternalFindAtomFunction;
private bool _internalAddAtomCalled;
private bool _internalFindAtomCalled;
private bool _addAtomCalled;
// The default MAX_PATH file system string size for Windows.
// A new opt-in, long path limit was added in Windows 10, version 1607.
private const int MaxPathLength = 260;
private ushort Detour_InternalAddAtomHook(bool local,
bool unicode, string atomName, int arg4)
{
_internalAddAtomCalled = true;
return InternalAddAtomFunction(local, unicode, atomName, arg4);
}
private ushort Detour_AddAtom(string atomName)
{
_addAtomCalled = true;
return Interop.Kernel32.AddAtomW(atomName);
}
/// <summary>
/// Detour a private function and call the internal function
/// using the detour bypass address to skip the detour barrier call.
/// </summary>
[Fact]
public void ShouldDetourInternalFunction()
{
using (var hook = LocalHook.Create(
LocalHook.GetProcAddress(Interop.Libraries.Kernel32, "InternalAddAtom"),
new InternalAddAtomDelegate(Detour_InternalAddAtomHook),
this))
{
InternalAddAtomFunction = hook.OriginalAddress.ToFunction<InternalAddAtomDelegate>();
hook.ThreadACL.SetInclusiveACL(new int[] { 0 });
_internalAddAtomCalled = false;
string atomName = "TestLocalAtomName";
ushort atomId = Interop.Kernel32.AddAtomW(atomName);
Assert.NotEqual(0, atomId);
Assert.True(_internalAddAtomCalled);
StringBuilder atomBuffer = new StringBuilder(MaxPathLength);
uint bufLength = Interop.Kernel32.GetAtomNameW(atomId, atomBuffer, MaxPathLength);
string retrievedAtomName = atomBuffer.ToString();
Assert.Equal((uint)atomName.Length, bufLength);
Assert.Equal(retrievedAtomName.Length, atomName.Length);
Assert.Equal(retrievedAtomName, atomName);
Assert.Equal<ushort>(0, Interop.Kernel32.DeleteAtom(atomId));
}
}
/// <summary>
/// Detour a private function and call the function's direct address
/// when the detour is called without skipping the detour barrier.
/// </summary>
[Fact]
public void ShouldDetourApiAndInternalFunctionCalledByAddAtom()
{
// Create the internal function and public API detours.
using (var hookInternal = LocalHook.Create(
LocalHook.GetProcAddress(Interop.Libraries.Kernel32, "InternalAddAtom"),
new InternalAddAtomDelegate(Detour_InternalAddAtomHook),
this))
using (var hookApi = LocalHook.Create(
LocalHook.GetProcAddress(Interop.Libraries.Kernel32, "AddAtomW"),
new AddAtomWDelegate(Detour_AddAtom),
this))
{
hookInternal.ThreadACL.SetInclusiveACL(new int[] { 0 });
InternalAddAtomFunction = hookInternal.TargetAddress.ToFunction<InternalAddAtomDelegate>();
hookApi.ThreadACL.SetInclusiveACL(new int[] { 0 });
_internalAddAtomCalled = false;
_addAtomCalled = false;
string atomName = "TestLocalAtomName";
ushort atomId = Interop.Kernel32.AddAtomW(atomName);
Assert.NotEqual(0, atomId);
Assert.True(_internalAddAtomCalled);
Assert.True(_addAtomCalled);
StringBuilder atomBuffer = new StringBuilder(MaxPathLength);
uint bufLength = Interop.Kernel32.GetAtomNameW(atomId, atomBuffer, MaxPathLength);
string retrievedAtomName = atomBuffer.ToString();
Assert.NotEqual<uint>(0, bufLength);
Assert.Equal((uint)atomName.Length, bufLength);
Assert.Equal(retrievedAtomName.Length, atomName.Length);
Assert.Equal(retrievedAtomName, atomName);
Assert.Equal<ushort>(0, Interop.Kernel32.DeleteAtom(atomId));
}
}
[Fact]
public void ShouldDetourApiIAndInternalFunctionUsingBypassAddress()
{
using (var hookInternal = LocalHook.Create(
LocalHook.GetProcAddress(Interop.Libraries.Kernel32, "InternalAddAtom"),
new InternalAddAtomDelegate(Detour_InternalAddAtomHook),
this))
using (var hookApi = LocalHook.Create(
LocalHook.GetProcAddress(Interop.Libraries.Kernel32, "AddAtomW"),
new AddAtomWDelegate(Detour_AddAtom),
this))
{
hookInternal.ThreadACL.SetInclusiveACL(new int[] { 0 });
hookApi.ThreadACL.SetInclusiveACL(new int[] { 0 });
InternalAddAtomFunction = hookInternal.OriginalAddress.ToFunction<InternalAddAtomDelegate>();
_internalAddAtomCalled = false;
_addAtomCalled = false;
string atomName = "TestLocalAtomName";
ushort atomId = Interop.Kernel32.AddAtomW(atomName);
Assert.NotEqual(0, atomId);
Assert.True(_internalAddAtomCalled);
Assert.True(_addAtomCalled);
StringBuilder atomBuffer = new StringBuilder(MaxPathLength);
uint bufLength = Interop.Kernel32.GetAtomNameW(atomId, atomBuffer, MaxPathLength);
string retrievedAtomName = atomBuffer.ToString();
Assert.NotEqual<uint>(0, bufLength);
Assert.Equal((uint)atomName.Length, bufLength);
Assert.Equal(retrievedAtomName.Length, atomName.Length);
Assert.Equal(retrievedAtomName, atomName);
Assert.Equal<ushort>(0, Interop.Kernel32.DeleteAtom(atomId));
}
}
[Fact]
public void ShouldDetourApiAndInternalFunctionUsingInterfaceBypassAddress()
{
using (var hookInternal = HookFactory.CreateHook<InternalFindAtom>(
LocalHook.GetProcAddress(Interop.Libraries.Kernel32, "InternalFindAtom"),
Detour_InternalFindAtom,
this))
{
hookInternal.ThreadACL.SetInclusiveACL(new int[] { 0 });
InternalFindAtomFunction = hookInternal.Original;
_internalFindAtomCalled = false;
string atomName = "TestLocalAtomName";
ushort atomId = Interop.Kernel32.AddAtomW(atomName);
ushort foundAtomId = Interop.Kernel32.FindAtomW(atomName);
Assert.NotEqual(0, atomId);
Assert.True(_internalFindAtomCalled);
Assert.Equal(atomId, foundAtomId);
Assert.Equal<ushort>(0, Interop.Kernel32.DeleteAtom(atomId));
}
}
ushort Detour_InternalFindAtom(bool local, bool unicode, string atomName)
{
_internalFindAtomCalled = true;
return InternalFindAtomFunction(local, unicode, atomName);
}
private delegate ulong GetCurrentNlsCacheDelegate();
private GetCurrentNlsCacheDelegate GetCurrentNlsCacheFunction;
private bool _GetCurrentNlsCacheCalled;
private const int LOCALE_USER_DEFAULT = 0x400;
// Case sensitive compare
private const int NORM_LINGUISTIC_CASING = 0x08000000;
// The string indicated by lpString1 is greater in lexical value
// than the string indicated by lpString2.
private const int CSTR_GREATER_THAN = 3;
private ulong Detour_GetCurrentNlsCache()
{
_GetCurrentNlsCacheCalled = true;
return GetCurrentNlsCacheFunction();
}
[Fact]
public void ShouldDetourInternalFunctionCalledByCompareString()
{
_GetCurrentNlsCacheCalled = false;
using (var hook = LocalHook.Create(
LocalHook.GetProcAddress(Interop.Libraries.KernelBase, "GetCurrentNlsCache"),
new GetCurrentNlsCacheDelegate(Detour_GetCurrentNlsCache),
this))
{
hook.ThreadACL.SetInclusiveACL(new int[] { 0 });
GetCurrentNlsCacheFunction = hook.OriginalAddress.ToFunction<GetCurrentNlsCacheDelegate>();
string stringA = "HelloWorld";
string stringB = "Hello";
int comparisonResult = Interop.KernelBase.CompareStringW(
LOCALE_USER_DEFAULT,
NORM_LINGUISTIC_CASING,
stringA,
stringA.Length,
stringB,
stringB.Length);
Assert.Equal(CSTR_GREATER_THAN, comparisonResult);
Assert.True(_GetCurrentNlsCacheCalled);
}
}
[Fact]
public void Find_Invalid_Export_Function_Throws_MissingMethodException()
{
Assert.Throws<MissingMethodException>(() => LocalHook.GetProcAddress(Interop.Libraries.Kernel32, "ThisFunctionDoesNotExist"));
}
[Fact]
public void Find_Invalid_Export_Module_Throws_MissingMethodException()
{
Assert.Throws<MissingMethodException>(() => LocalHook.GetProcAddress("UnknownModule.dll", "CreateFileW"));
}
[Fact]
public void Find_Invalid_Export_ModuleFunction_Throws_MissingMethodException()
{
Assert.Throws<MissingMethodException>(() => LocalHook.GetProcAddress("UnknownModule.dll", "ThisFunctionDoesNotExist"));
}
}
}