mirror of
https://github.com/wiiu-env/FunctionPatcherModule.git
synced 2024-11-14 05:55:11 +01:00
148 lines
5.3 KiB
C++
148 lines
5.3 KiB
C++
#include "export.h"
|
|
#include "PatchedFunctionData.h"
|
|
#include "function_patcher.h"
|
|
#include "utils/globals.h"
|
|
#include <ranges>
|
|
#include <vector>
|
|
#include <wums/exports.h>
|
|
|
|
WUT_CHECK_OFFSET(function_replacement_data_v2_t, 0x00, VERSION);
|
|
WUT_CHECK_OFFSET(function_replacement_data_v3_t, 0x00, version);
|
|
|
|
FunctionPatcherStatus FPAddFunctionPatch(function_replacement_data_t *function_data, PatchedFunctionHandle *outHandle, bool *outHasBeenPatched) {
|
|
if (function_data == nullptr) {
|
|
DEBUG_FUNCTION_LINE_ERR("function_data was NULL");
|
|
return FUNCTION_PATCHER_RESULT_INVALID_ARGUMENT;
|
|
}
|
|
|
|
if (function_data->version < 2 || function_data->version > 3) {
|
|
DEBUG_FUNCTION_LINE_ERR("Failed to patch function. struct version mismatch");
|
|
return FUNCTION_PATCHER_RESULT_UNSUPPORTED_STRUCT_VERSION;
|
|
}
|
|
|
|
std::optional<std::shared_ptr<PatchedFunctionData>> functionDataOpt;
|
|
if (function_data->version == 2) {
|
|
functionDataOpt = PatchedFunctionData::make_shared_v2(gFunctionAddressProvider, (function_replacement_data_v2_t *) function_data, gJumpHeapHandle);
|
|
} else if (function_data->version == 3) {
|
|
functionDataOpt = PatchedFunctionData::make_shared_v3(gFunctionAddressProvider, (function_replacement_data_v3_t *) function_data, gJumpHeapHandle);
|
|
} else {
|
|
// Should never happen.
|
|
DEBUG_FUNCTION_LINE_ERR("Unknown function_replacement_data_t struct version");
|
|
OSFatal("Unknown function patching struct version. Update FunctionPatcherModule/Aroma.");
|
|
}
|
|
|
|
if (!functionDataOpt) {
|
|
return FUNCTION_PATCHER_RESULT_UNKNOWN_ERROR;
|
|
}
|
|
|
|
auto &functionData = functionDataOpt.value();
|
|
|
|
// PatchFunction calls OSFatal on fatal errors.
|
|
// If this function returns false the target function was not patched
|
|
// Usually this means the target RPL is not (yet) loaded.
|
|
auto patchResult = PatchFunction(functionData);
|
|
if (outHasBeenPatched) {
|
|
*outHasBeenPatched = patchResult;
|
|
}
|
|
|
|
if (outHandle) {
|
|
*outHandle = functionData->getHandle();
|
|
}
|
|
|
|
{
|
|
std::lock_guard<std::mutex> lock(gPatchedFunctionsMutex);
|
|
gPatchedFunctions.push_back(std::move(functionData));
|
|
|
|
OSMemoryBarrier();
|
|
}
|
|
|
|
return FUNCTION_PATCHER_RESULT_SUCCESS;
|
|
}
|
|
|
|
bool FunctionPatcherPatchFunction(function_replacement_data_t *function_data, PatchedFunctionHandle *outHandle) {
|
|
return FPAddFunctionPatch(function_data, outHandle, nullptr) == FUNCTION_PATCHER_RESULT_SUCCESS;
|
|
}
|
|
|
|
FunctionPatcherStatus FPRemoveFunctionPatch(PatchedFunctionHandle handle) {
|
|
std::lock_guard<std::mutex> lock(gPatchedFunctionsMutex);
|
|
std::vector<std::shared_ptr<PatchedFunctionData>> toBeTempRestored;
|
|
bool found = false;
|
|
int32_t erasePosition = 0;
|
|
std::shared_ptr<PatchedFunctionData> toBeRemoved;
|
|
for (auto &cur : gPatchedFunctions) {
|
|
if (cur->getHandle() == handle) {
|
|
toBeRemoved = cur;
|
|
found = true;
|
|
if (!cur->isPatched) {
|
|
// Early return if the function is not patched.
|
|
break;
|
|
}
|
|
continue;
|
|
}
|
|
// Check if something else patched the same function afterwards.
|
|
if (found) {
|
|
if (cur->realPhysicalFunctionAddress == toBeRemoved->realPhysicalFunctionAddress) {
|
|
toBeTempRestored.push_back(cur);
|
|
}
|
|
} else {
|
|
erasePosition++;
|
|
}
|
|
}
|
|
if (!found) {
|
|
DEBUG_FUNCTION_LINE_ERR("Failed to find PatchedFunctionData by handle %08X", handle);
|
|
return FUNCTION_PATCHER_RESULT_PATCH_NOT_FOUND;
|
|
}
|
|
|
|
if (toBeRemoved->isPatched) {
|
|
// Restore function patches that were done after the patch we actually want to restore.
|
|
for (auto &cur : std::ranges::reverse_view(toBeTempRestored)) {
|
|
RestoreFunction(cur);
|
|
}
|
|
|
|
// Restore the function we actually want to restore
|
|
RestoreFunction(toBeRemoved);
|
|
}
|
|
|
|
gPatchedFunctions.erase(gPatchedFunctions.begin() + erasePosition);
|
|
|
|
if (toBeRemoved->isPatched) {
|
|
// Apply the other patches again
|
|
for (auto &cur : toBeTempRestored) {
|
|
PatchFunction(cur);
|
|
}
|
|
}
|
|
|
|
OSMemoryBarrier();
|
|
return FUNCTION_PATCHER_RESULT_SUCCESS;
|
|
}
|
|
|
|
bool FunctionPatcherRestoreFunction(PatchedFunctionHandle handle) {
|
|
return FPRemoveFunctionPatch(handle) == FUNCTION_PATCHER_RESULT_SUCCESS;
|
|
}
|
|
|
|
FunctionPatcherStatus FPGetVersion(FunctionPatcherAPIVersion *outVersion) {
|
|
if (outVersion == nullptr) {
|
|
return FUNCTION_PATCHER_RESULT_INVALID_ARGUMENT;
|
|
}
|
|
*outVersion = 2;
|
|
return FUNCTION_PATCHER_RESULT_SUCCESS;
|
|
}
|
|
|
|
FunctionPatcherStatus FPIsFunctionPatched(PatchedFunctionHandle handle, bool *outIsFunctionPatched) {
|
|
if (outIsFunctionPatched == nullptr) {
|
|
return FUNCTION_PATCHER_RESULT_INVALID_ARGUMENT;
|
|
}
|
|
std::lock_guard<std::mutex> lock(gPatchedFunctionsMutex);
|
|
for (auto &cur : gPatchedFunctions) {
|
|
if (cur->getHandle() == handle) {
|
|
*outIsFunctionPatched = cur->isPatched;
|
|
return FUNCTION_PATCHER_RESULT_SUCCESS;
|
|
}
|
|
}
|
|
return FUNCTION_PATCHER_RESULT_PATCH_NOT_FOUND;
|
|
}
|
|
|
|
WUMS_EXPORT_FUNCTION(FPGetVersion);
|
|
WUMS_EXPORT_FUNCTION(FPAddFunctionPatch);
|
|
WUMS_EXPORT_FUNCTION(FPRemoveFunctionPatch);
|
|
WUMS_EXPORT_FUNCTION(FPIsFunctionPatched); |