首页 > 解决方案 > VEH挂钩加速度

问题描述

我正在尝试加快 VEH 钩子的速度。我从中找到的 Veh 钩子类https://github.com/hoangprod/LeoSpecial-VEH-Hook/blob/master/LeoSpecial.h

#pragma once
#include <Windows.h>
#include <stdio.h>
#include <iostream>

#ifdef _WIN64
#define XIP Rip
#else
#define XIP Eip
#endif



class LeoHook {
public:
    static bool Hook(uintptr_t og_fun, uintptr_t hk_fun);
    static bool Unhook();

private:
    static uintptr_t og_fun;
    static uintptr_t hk_fun;
    static PVOID VEH_Handle;
    static DWORD oldProtection;

    static bool AreInSamePage(const uint8_t* Addr1, const uint8_t* Addr2);
    static LONG WINAPI LeoHandler(EXCEPTION_POINTERS *pExceptionInfo);
};

uintptr_t LeoHook::og_fun = 0;
uintptr_t LeoHook::hk_fun = 0;
PVOID LeoHook::VEH_Handle = nullptr;
DWORD LeoHook::oldProtection = 0;

bool LeoHook::Hook(uintptr_t original_fun, uintptr_t hooked_fun)
{
    LeoHook::og_fun = original_fun;
    LeoHook::hk_fun = hooked_fun;

    //We cannot hook two functions in the same page, because we will cause an infinite callback
    if (AreInSamePage((const uint8_t*)og_fun, (const uint8_t*)hk_fun))
        return false;

    //Register the Custom Exception Handler
    VEH_Handle = AddVectoredExceptionHandler(true, (PVECTORED_EXCEPTION_HANDLER)LeoHandler);

    //Toggle PAGE_GUARD flag on the page
    if(VEH_Handle && VirtualProtect((LPVOID)og_fun, 1, PAGE_EXECUTE_READ | PAGE_GUARD, &oldProtection))
        return true;
    
    return false;
}

bool LeoHook::Unhook()
{
    DWORD old;
    if (VEH_Handle && //Make sure we have a valid Handle to the registered VEH
        VirtualProtect((LPVOID)og_fun, 1, oldProtection, &old) && //Restore old Flags
        RemoveVectoredExceptionHandler(VEH_Handle)) //Remove the VEH
        return true;

    return false;
}

LONG WINAPI LeoHook::LeoHandler(EXCEPTION_POINTERS *pExceptionInfo)
{
    if (pExceptionInfo->ExceptionRecord->ExceptionCode == STATUS_GUARD_PAGE_VIOLATION) //We will catch PAGE_GUARD Violation
    {
        if (pExceptionInfo->ContextRecord->XIP == (uintptr_t)og_fun) //Make sure we are at the address we want within the page
        {
            pExceptionInfo->ContextRecord->XIP = (uintptr_t)hk_fun; //Modify EIP/RIP to where we want to jump to instead of the original function
        }

        pExceptionInfo->ContextRecord->EFlags |= 0x100; //Will trigger an STATUS_SINGLE_STEP exception right after the next instruction get executed. In short, we come right back into this exception handler 1 instruction later
        return EXCEPTION_CONTINUE_EXECUTION; //Continue to next instruction
    }

    if (pExceptionInfo->ExceptionRecord->ExceptionCode == STATUS_SINGLE_STEP) //We will also catch STATUS_SINGLE_STEP, meaning we just had a PAGE_GUARD violation
    {
        DWORD dwOld;
        VirtualProtect((LPVOID)og_fun, 1, PAGE_EXECUTE_READ | PAGE_GUARD, &dwOld); //Reapply the PAGE_GUARD flag because everytime it is triggered, it get removes

        return EXCEPTION_CONTINUE_EXECUTION; //Continue the next instruction
    }

    return EXCEPTION_CONTINUE_SEARCH; //Keep going down the exception handling list to find the right handler IF it is not PAGE_GUARD nor SINGLE_STEP
}

bool LeoHook::AreInSamePage(const uint8_t* Addr1, const uint8_t* Addr2)
{
    MEMORY_BASIC_INFORMATION mbi1;
    if (!VirtualQuery(Addr1, &mbi1, sizeof(mbi1))) //Get Page information for Addr1
        return true;

    MEMORY_BASIC_INFORMATION mbi2;
    if (!VirtualQuery(Addr2, &mbi2, sizeof(mbi2))) //Get Page information for Addr1
        return true;

    if (mbi1.BaseAddress == mbi2.BaseAddress) //See if the two pages start at the same Base Address
        return true; //Both addresses are in the same page, abort hooking!

    return false; 
}

钩子工作正常,没有任何问题。但这让我在注入的过程中损失了很多 FPS。正如我在谷歌上搜索的那样,最多的答案是减少钩子中使用的逻辑量。我的钩子方法

__declspec(naked) void HookSend()
{
    __asm 
    {
        jmp dwAddress
    }
}

如您所见,它没有太多包含在函数中的逻辑。但它仍然花费了我很多fps。研究二是说复制所有页面功能然后修改页面功能的ASM。但我不知道如何复制页面功能。所以我需要一些指导如何复制页面功能或其他方法来加速 VEH 钩子。

谢谢你。

标签: c++c++11visual-c++

解决方案


推荐阅读