This commit is contained in:
恍兮惚兮 2024-04-01 13:56:20 +08:00
parent 28c141e29f
commit cf342364fc
4 changed files with 26 additions and 27 deletions

View File

@ -190,12 +190,7 @@ bool yuzusuyu::attach_function()
hpinternal.jittype=JITTYPE::YUZU;
NewHook(hpinternal,op.hookname);
}();
[&](){
if(delayinserthook.find(em_address)==delayinserthook.end())return;
auto h=delayinserthook[em_address];
delayinserthook.erase(em_address);
NewHook(h.second,h.first.c_str());
}();
delayinsertNewHook(em_address);
};
return NewHook(hp,"YuzuDoJit");
}

View File

@ -333,12 +333,7 @@ bool hookPPSSPPDoJit(){
hpinternal.jittype=JITTYPE::PPSSPP;
NewHook(hpinternal,op.hookname);
}();
[&](){
if(delayinserthook.find(em_address)==delayinserthook.end())return;
auto h=delayinserthook[em_address];
delayinserthook.erase(em_address);
NewHook(h.second,h.first.c_str());
}();
delayinsertNewHook(em_address);
};
static auto once=NewHook(hpinternal,"DoJitPtrRet");
};

View File

@ -175,9 +175,7 @@ int HookStrLen(HookParam* hp,BYTE* data){
static std::mutex maplock;
void jitaddraddr(uintptr_t em_addr,uintptr_t jitaddr,JITTYPE jittype){
std::lock_guard _(maplock);
if(emuaddr2jitaddr.find(em_addr)==emuaddr2jitaddr.end())
emuaddr2jitaddr[em_addr]={jittype,{}};
emuaddr2jitaddr[em_addr].second.insert(jitaddr);
emuaddr2jitaddr[em_addr]={jittype,jitaddr};
jitaddr2emuaddr[jitaddr]={jittype,em_addr};
}
bool NewHook_1(HookParam& hp, LPCSTR lpname)
@ -204,25 +202,34 @@ bool NewHook_1(HookParam& hp, LPCSTR lpname)
return true;
}
}
static std::mutex delayinsertlock;
void delayinsertadd(HookParam hp,std::string name){
std::lock_guard _(maplock);
delayinserthook[hp.emu_addr]={name,hp};
ConsoleOutput(INSERTING_HOOK, name.c_str());
}
void delayinsertNewHook(uintptr_t em_address){
if(delayinserthook.find(em_address)==delayinserthook.end())return;
std::lock_guard _(maplock);
auto h=delayinserthook[em_address];
delayinserthook.erase(em_address);
NewHook(h.second,h.first.c_str());
}
bool NewHook(HookParam hp, LPCSTR name){
if(hp.address)
return NewHook_1(hp,name);
//下面的是手动插入
if(emuaddr2jitaddr.find(hp.emu_addr)==emuaddr2jitaddr.end()){
delayinserthook[hp.emu_addr]={name,hp};
return false;
delayinsertadd(hp,name);
return true;
}
strcpy(hp.function,"");
wcscpy(hp.module,L"");
hp.type &= ~MODULE_OFFSET;
hp.type &= ~FUNCTION_OFFSET;
auto succ=false;
for(auto __x: emuaddr2jitaddr[hp.emu_addr].second){
hp.address=__x;
hp.jittype=emuaddr2jitaddr[hp.emu_addr].first;
succ|=NewHook_1(hp,name);
}
return succ;
hp.address=emuaddr2jitaddr[hp.emu_addr].second;
hp.jittype=emuaddr2jitaddr[hp.emu_addr].first;
return NewHook_1(hp,name);
}
void RemoveHook(uint64_t addr, int maxOffset)
{

View File

@ -19,11 +19,13 @@ inline SearchParam spDefault;
// EOF
int HookStrLen(HookParam*,BYTE* data);
inline std::unordered_map<uintptr_t,std::pair<JITTYPE,std::set<uintptr_t> > >emuaddr2jitaddr;
inline std::unordered_map<uintptr_t,std::pair<JITTYPE,uintptr_t>>emuaddr2jitaddr;
inline std::unordered_map<uintptr_t,std::pair<JITTYPE,uintptr_t>>jitaddr2emuaddr;
void jitaddraddr(uintptr_t em_addr,uintptr_t jitaddr,JITTYPE);
void context_get(hook_stack*,PCONTEXT);
void context_set(hook_stack*,PCONTEXT);
inline std::map<uintptr_t,std::pair<std::string,HookParam>>delayinserthook;
inline std::map<uintptr_t,std::pair<std::string,HookParam>>delayinserthook;
void delayinsertadd(HookParam,std::string);
void delayinsertNewHook(uintptr_t);