Skip to content

Commit

Permalink
Minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
RatinCN committed Jan 24, 2024
1 parent 24f39db commit 128ce30
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 39 deletions.
29 changes: 9 additions & 20 deletions Source/SlimDetours/Disasm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1579,21 +1579,6 @@ pp is like VEX but only instructions with 0 are defined
}
}

PVOID NTAPI SlimDetoursCopyInstruction(
_In_opt_ PVOID pDst,
_Inout_opt_ PVOID* ppDstPool,
_In_ PVOID pSrc,
_Out_opt_ PVOID* ppTarget,
_Out_opt_ LONG* plExtra)
{
UNREFERENCED_PARAMETER(ppDstPool); // x86 & x64 don't use a constant pool.

DETOUR_DISASM Disasm;

detour_disasm_init(&Disasm, (PBYTE*)ppTarget, plExtra);
return CopyInstruction(&Disasm, (PBYTE)pDst, (PBYTE)pSrc);
}

#endif // defined(_M_X64) || defined(_M_IX86)

#if defined(_M_ARM64)
Expand Down Expand Up @@ -2324,23 +2309,27 @@ static PBYTE CopyInstruction(_In_ PDETOUR_DISASM pDisasm, _In_opt_ PBYTE pDst, _
return pSrc + 4;
}

#endif // defined(_M_ARM64)

PVOID NTAPI SlimDetoursCopyInstruction(
_In_opt_ PVOID pDst,
_Inout_opt_ PVOID* ppDstPool,
_In_ PVOID pSrc,
_Out_opt_ PVOID* ppTarget,
_Out_opt_ LONG* plExtra)
{
UNREFERENCED_PARAMETER(ppDstPool);

DETOUR_DISASM Disasm;

#if defined(_M_X64) || defined(_M_IX86)
detour_disasm_init(&Disasm, (PBYTE*)ppTarget, plExtra);
return (PVOID)CopyInstruction(&Disasm, (PBYTE)pDst, (PBYTE)pSrc);
#elif defined(_M_ARM64)
detour_disasm_init(&Disasm);
return (PVOID)CopyInstruction(&Disasm,
(PBYTE)pDst,
(PBYTE)pSrc,
(PBYTE*)ppTarget,
plExtra);
#else
return NULL;
#endif
}

#endif // defined(_M_ARM64)
7 changes: 5 additions & 2 deletions Source/SlimDetours/Memory.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,16 @@ VOID detour_memory_init()
}
#endif

g_hHeap = RtlCreateHeap(HEAP_NO_SERIALIZE | HEAP_GROWABLE, NULL, 0, 0, NULL, NULL);
if (g_hHeap == NULL)
{
g_hHeap = RtlCreateHeap(HEAP_NO_SERIALIZE | HEAP_GROWABLE, NULL, 0, 0, NULL, NULL);
}
}

_Must_inspect_result_
_Ret_maybenull_
_Post_writable_byte_size_(Size)
PVOID detour_memory_alloc(_In_range_(>, 0) SIZE_T Size)
PVOID detour_memory_alloc(_In_ SIZE_T Size)
{
if (g_hHeap == NULL)
{
Expand Down
1 change: 0 additions & 1 deletion Source/SlimDetours/SlimDetours.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ NTSTATUS NTAPI SlimDetoursDelayAttach(
PVOID NTAPI SlimDetoursCodeFromPointer(_In_ PVOID pPointer);
PVOID NTAPI SlimDetoursCopyInstruction(
_In_opt_ PVOID pDst,
_Inout_opt_ PVOID* ppDstPool,
_In_ PVOID pSrc,
_Out_opt_ PVOID* ppTarget,
_Out_opt_ LONG* plExtra);
Expand Down
2 changes: 1 addition & 1 deletion Source/SlimDetours/SlimDetours.inl
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ VOID detour_memory_init();
_Must_inspect_result_
_Ret_maybenull_
_Post_writable_byte_size_(Size)
PVOID detour_memory_alloc(_In_range_(> , 0) SIZE_T Size);
PVOID detour_memory_alloc(_In_ SIZE_T Size);

BOOL detour_memory_free(_Frees_ptr_ PVOID BaseAddress);

Expand Down
2 changes: 0 additions & 2 deletions Source/SlimDetours/Thread.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ NTSTATUS detour_thread_update(_In_ HANDLE ThreadHandle, _In_ PDETOUR_OPERATION P
if (cxt.CONTEXT_PC >= (ULONG_PTR)o->pTrampoline &&
cxt.CONTEXT_PC < ((ULONG_PTR)o->pTrampoline + sizeof(o->pTrampoline)))
{

cxt.CONTEXT_PC = (ULONG_PTR)o->pbTarget +
detour_align_from_trampoline(o->pTrampoline, (BYTE)(cxt.CONTEXT_PC - (ULONG_PTR)o->pTrampoline));
bUpdateContext = TRUE;
Expand All @@ -149,7 +148,6 @@ NTSTATUS detour_thread_update(_In_ HANDLE ThreadHandle, _In_ PDETOUR_OPERATION P
if (cxt.CONTEXT_PC >= (ULONG_PTR)o->pbTarget &&
cxt.CONTEXT_PC < ((ULONG_PTR)o->pbTarget + o->pTrampoline->cbRestore))
{

cxt.CONTEXT_PC = (ULONG_PTR)o->pTrampoline +
detour_align_from_target(o->pTrampoline, (BYTE)(cxt.CONTEXT_PC - (ULONG_PTR)o->pbTarget));
bUpdateContext = TRUE;
Expand Down
2 changes: 1 addition & 1 deletion Source/SlimDetours/Transaction.c
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ NTSTATUS NTAPI SlimDetoursAttach(_Inout_ PVOID* ppPointer, _In_ PVOID pDetour)
LONG lExtra = 0;

DETOUR_TRACE(" SlimDetoursCopyInstruction(%p,%p)\n", pbTrampoline, pbSrc);
pbSrc = (PBYTE)SlimDetoursCopyInstruction(pbTrampoline, (PVOID*)&pbPool, pbSrc, NULL, &lExtra);
pbSrc = (PBYTE)SlimDetoursCopyInstruction(pbTrampoline, pbSrc, NULL, &lExtra);
DETOUR_TRACE(" SlimDetoursCopyInstruction() = %p (%d bytes)\n", pbSrc, (int)(pbSrc - pbOp));
pbTrampoline += (pbSrc - pbOp) + lExtra;
cbTarget = PtrOffset(pbTarget, pbSrc);
Expand Down
13 changes: 5 additions & 8 deletions Source/Test/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,26 +49,23 @@ static VOID CALLBACK Delay_attach_proc(
}
}

int WINAPI wWinMain(
_In_ HINSTANCE hInstance,
_In_opt_ HINSTANCE hPrevInstance,
_In_ LPWSTR lpCmdLine,
_In_ int nShowCmd)
int wmain()
{
NTSTATUS Status;
PVOID User32Base;

#if 1 // Test delay attach
FN_MessageBoxW* pfnMessageBoxW;

if (!NT_SUCCESS(SlimDetoursDelayAttach((PVOID*)&g_pfnMessageBoxW,
Status = SlimDetoursDelayAttach((PVOID*)&g_pfnMessageBoxW,
Hooked_MessageBoxW,
g_usUser32.Buffer,
g_asMessageBoxW.Buffer,
Delay_attach_proc,
NULL)))
NULL);
if (!NT_SUCCESS(Status))
{
return STATUS_UNSUCCESSFUL;
return Status;
}

if (!NT_SUCCESS(LdrLoadDll(NULL, NULL, &g_usUser32, &User32Base)) ||
Expand Down
8 changes: 4 additions & 4 deletions Source/Test/Test.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
<OmitDefaultLibName>true</OmitDefaultLibName>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<SubSystem>Console</SubSystem>
</Link>
<ProjectReference />
</ItemDefinitionGroup>
Expand All @@ -143,7 +143,7 @@
<OmitDefaultLibName>true</OmitDefaultLibName>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
Expand Down Expand Up @@ -171,7 +171,7 @@
<OmitDefaultLibName>true</OmitDefaultLibName>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<SubSystem>Console</SubSystem>
</Link>
<ProjectReference />
</ItemDefinitionGroup>
Expand All @@ -184,7 +184,7 @@
<OmitDefaultLibName>true</OmitDefaultLibName>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
Expand Down

0 comments on commit 128ce30

Please sign in to comment.