Skip to content

Commit

Permalink
Merge pull request #10195 from sepalani/fix-hle-rii
Browse files Browse the repository at this point in the history
HLE: Fix hooks overlapping Riivolution patches
  • Loading branch information
leoetlino committed Oct 31, 2021
2 parents c39b3df + e51119c commit 98a1027
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 1 deletion.
17 changes: 17 additions & 0 deletions Source/Core/Core/HLE/HLE.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,4 +235,21 @@ u32 UnPatch(std::string_view patch_name)

return 0;
}

u32 UnpatchRange(u32 start_addr, u32 end_addr)
{
u32 count = 0;

auto i = s_hooked_addresses.lower_bound(start_addr);
while (i != s_hooked_addresses.end() && i->first < end_addr)
{
INFO_LOG_FMT(OSHLE, "Unpatch HLE hooks [{:08x};{:08x}): {} at {:08x}", start_addr, end_addr,
os_patches[i->second].name, i->first);
PowerPC::ppcState.iCache.Invalidate(i->first);
i = s_hooked_addresses.erase(i);
count += 1;
}

return count;
}
} // namespace HLE
1 change: 1 addition & 0 deletions Source/Core/Core/HLE/HLE.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ void Reload();

void Patch(u32 pc, std::string_view func_name);
u32 UnPatch(std::string_view patch_name);
u32 UnpatchRange(u32 start_addr, u32 end_addr);
void Execute(u32 current_pc, u32 hook_index);

// Returns the HLE hook index of the address
Expand Down
15 changes: 14 additions & 1 deletion Source/Core/DiscIO/RiivolutionPatcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include "Common/FileUtil.h"
#include "Common/IOFile.h"
#include "Common/StringUtil.h"
#include "Core/HLE/HLE.h"
#include "Core/HW/Memmap.h"
#include "Core/IOS/FS/FileSystem.h"
#include "Core/PowerPC/MMU.h"
Expand Down Expand Up @@ -529,8 +530,15 @@ static void ApplyMemoryPatch(u32 offset, const std::vector<u8>& value,
if (!original.empty() && !MemoryMatchesAt(offset, original))
return;

for (u32 i = 0; i < value.size(); ++i)
const u32 size = static_cast<u32>(value.size());
for (u32 i = 0; i < size; ++i)
PowerPC::HostTryWriteU8(value[i], offset + i);
const u32 overlapping_hook_count = HLE::UnpatchRange(offset, offset + size);
if (overlapping_hook_count != 0)
{
WARN_LOG_FMT(OSHLE, "Riivolution memory patch overlaps {} HLE hook(s) at {:08x} (size: {})",
overlapping_hook_count, offset, value.size());
}
}

static std::vector<u8> GetMemoryPatchValue(const Patch& patch, const Memory& memory_patch)
Expand Down Expand Up @@ -593,6 +601,11 @@ static void ApplyOcarinaMemoryPatch(const Patch& patch, const Memory& memory_pat
const u32 target = memory_patch.m_offset | 0x80000000;
const u32 jmp = ((target - blr_address) & 0x03fffffc) | 0x48000000;
PowerPC::HostTryWriteU32(jmp, blr_address);
const u32 overlapping_hook_count = HLE::UnpatchRange(blr_address, blr_address + 4);
if (overlapping_hook_count != 0)
{
WARN_LOG_FMT(OSHLE, "Riivolution ocarina patch overlaps HLE hook at {}", blr_address);
}
return;
}
}
Expand Down

0 comments on commit 98a1027

Please sign in to comment.