mirror of
https://github.com/wiiu-env/MemoryMappingModule.git
synced 2024-11-22 01:39:20 +01:00
Patch LiValidateAddress to support OSDynLoad_SetAllocator with our region
This commit is contained in:
parent
f80ddb450e
commit
b66266af54
@ -78,8 +78,23 @@ DECL_FUNCTION(MEMHeapHandle, MEMFindContainHeap, void *block) {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DECL_FUNCTION(int32_t, LiValidateAddress, void *ptr,
|
||||||
|
uint32_t size,
|
||||||
|
uint32_t alignMask,
|
||||||
|
int32_t errorCode,
|
||||||
|
void *minAddr,
|
||||||
|
void *maxAddr,
|
||||||
|
const char *name) {
|
||||||
|
if (((uint32_t) ptr >= 0x00800000 && (uint32_t) ptr < 0x01000000) || ((uint32_t) ptr & 0xF0000000) == (MEMORY_START_BASE & 0xF0000000)) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return real_LiValidateAddress(ptr, size, alignMask, errorCode, minAddr, maxAddr, name);
|
||||||
|
}
|
||||||
|
|
||||||
// clang-format off
|
// clang-format off
|
||||||
function_replacement_data_t function_replacements[] __attribute__((section(".data"))) = {
|
function_replacement_data_t function_replacements[] __attribute__((section(".data"))) = {
|
||||||
|
REPLACE_FUNCTION_VIA_ADDRESS(LiValidateAddress, 0x32008904, 0x01008904),
|
||||||
REPLACE_FUNCTION_VIA_ADDRESS(sCheckDataRange, 0x3200cf60, 0x0100cf60),
|
REPLACE_FUNCTION_VIA_ADDRESS(sCheckDataRange, 0x3200cf60, 0x0100cf60),
|
||||||
REPLACE_FUNCTION_VIA_ADDRESS(KiEffectiveToPhysical, 0xffee0aac, 0xffee0aac),
|
REPLACE_FUNCTION_VIA_ADDRESS(KiEffectiveToPhysical, 0xffee0aac, 0xffee0aac),
|
||||||
REPLACE_FUNCTION_VIA_ADDRESS(KiPhysicalToEffectiveCached, 0xffee0a3c, 0xffee0a3c),
|
REPLACE_FUNCTION_VIA_ADDRESS(KiPhysicalToEffectiveCached, 0xffee0a3c, 0xffee0a3c),
|
||||||
|
Loading…
Reference in New Issue
Block a user