mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-05 20:45:07 +01:00
183 lines
7.9 KiB
C++
183 lines
7.9 KiB
C++
#include "PluginManagement.h"
|
|
#include "NotificationsUtils.h"
|
|
#include "hooks.h"
|
|
#include "plugin/PluginContainer.h"
|
|
#include "plugin/PluginInformationFactory.h"
|
|
#include "plugin/PluginMetaInformationFactory.h"
|
|
#include "utils/ElfUtils.h"
|
|
#include "utils/StringTools.h"
|
|
#include "utils/utils.h"
|
|
#include <coreinit/cache.h>
|
|
#include <coreinit/dynload.h>
|
|
#include <memory.h>
|
|
#include <memory>
|
|
|
|
std::vector<PluginContainer>
|
|
PluginManagement::loadPlugins(const std::set<std::shared_ptr<PluginData>> &pluginDataList, std::vector<relocation_trampoline_entry_t> &trampolineData) {
|
|
std::vector<PluginContainer> plugins;
|
|
|
|
uint32_t trampolineID = 0;
|
|
for (const auto &pluginData : pluginDataList) {
|
|
PluginParseErrors error = PLUGIN_PARSE_ERROR_UNKNOWN;
|
|
|
|
auto metaInfo = PluginMetaInformationFactory::loadPlugin(*pluginData, error);
|
|
if (metaInfo && error == PLUGIN_PARSE_ERROR_NONE) {
|
|
auto info = PluginInformationFactory::load(*pluginData, trampolineData, trampolineID++);
|
|
if (!info) {
|
|
auto errMsg = string_format("Failed to load plugin: %s", pluginData->getSource().c_str());
|
|
DEBUG_FUNCTION_LINE_ERR("%s", errMsg.c_str());
|
|
DisplayErrorNotificationMessage(errMsg, 15.0f);
|
|
continue;
|
|
}
|
|
plugins.emplace_back(std::move(*metaInfo), std::move(*info), pluginData);
|
|
} else {
|
|
auto errMsg = string_format("Failed to load plugin: %s", pluginData->getSource().c_str());
|
|
if (error == PLUGIN_PARSE_ERROR_INCOMPATIBLE_VERSION) {
|
|
errMsg += ". Incompatible version.";
|
|
}
|
|
DEBUG_FUNCTION_LINE_ERR("%s", errMsg.c_str());
|
|
DisplayErrorNotificationMessage(errMsg, 15.0f);
|
|
}
|
|
}
|
|
|
|
if (!PluginManagement::DoFunctionPatches(plugins)) {
|
|
DEBUG_FUNCTION_LINE_ERR("Failed to patch functions");
|
|
OSFatal("Failed to patch functions");
|
|
}
|
|
|
|
return plugins;
|
|
}
|
|
|
|
bool PluginManagement::doRelocation(const std::vector<RelocationData> &relocData,
|
|
std::vector<relocation_trampoline_entry_t> &trampData,
|
|
uint32_t trampolineID,
|
|
std::map<std::string, OSDynLoad_Module> &usedRPls) {
|
|
for (auto const &cur : relocData) {
|
|
uint32_t functionAddress = 0;
|
|
auto &functionName = cur.getName();
|
|
|
|
if (functionName == "MEMAllocFromDefaultHeap") {
|
|
OSDynLoad_Module rplHandle;
|
|
OSDynLoad_Acquire("homebrew_memorymapping", &rplHandle);
|
|
OSDynLoad_FindExport(rplHandle, OS_DYNLOAD_EXPORT_DATA, "MEMAllocFromMappedMemory", (void **) &functionAddress);
|
|
} else if (functionName == "MEMAllocFromDefaultHeapEx") {
|
|
OSDynLoad_Module rplHandle;
|
|
OSDynLoad_Acquire("homebrew_memorymapping", &rplHandle);
|
|
OSDynLoad_FindExport(rplHandle, OS_DYNLOAD_EXPORT_DATA, "MEMAllocFromMappedMemoryEx", (void **) &functionAddress);
|
|
} else if (functionName == "MEMFreeToDefaultHeap") {
|
|
OSDynLoad_Module rplHandle;
|
|
OSDynLoad_Acquire("homebrew_memorymapping", &rplHandle);
|
|
OSDynLoad_FindExport(rplHandle, OS_DYNLOAD_EXPORT_DATA, "MEMFreeToMappedMemory", (void **) &functionAddress);
|
|
}
|
|
|
|
if (functionAddress == 0) {
|
|
auto rplName = cur.getImportRPLInformation().getRPLName();
|
|
int32_t isData = cur.getImportRPLInformation().isData();
|
|
OSDynLoad_Module rplHandle = nullptr;
|
|
|
|
if (!usedRPls.contains(rplName)) {
|
|
DEBUG_FUNCTION_LINE_VERBOSE("Acquire %s", rplName.c_str());
|
|
// Always acquire to increase refcount and make sure it won't get unloaded while we're using it.
|
|
OSDynLoad_Error err = OSDynLoad_Acquire(rplName.c_str(), &rplHandle);
|
|
if (err != OS_DYNLOAD_OK) {
|
|
DEBUG_FUNCTION_LINE_ERR("Failed to acquire %s", rplName.c_str());
|
|
return false;
|
|
}
|
|
// Keep track RPLs we are using.
|
|
// They will be released on exit
|
|
usedRPls[rplName] = rplHandle;
|
|
} else {
|
|
rplHandle = usedRPls[rplName];
|
|
}
|
|
|
|
OSDynLoad_FindExport(rplHandle, (OSDynLoad_ExportType) isData, functionName.c_str(), (void **) &functionAddress);
|
|
}
|
|
|
|
if (functionAddress == 0) {
|
|
DEBUG_FUNCTION_LINE_ERR("Failed to find export for %s", functionName.c_str());
|
|
return false;
|
|
} else {
|
|
//DEBUG_FUNCTION_LINE("Found export for %s %s", rplName.c_str(), functionName.c_str());
|
|
}
|
|
|
|
if (!ElfUtils::elfLinkOne(cur.getType(), cur.getOffset(), cur.getAddend(), (uint32_t) cur.getDestination(), functionAddress, trampData, RELOC_TYPE_IMPORT, trampolineID)) {
|
|
DEBUG_FUNCTION_LINE_ERR("elfLinkOne failed");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Unloading RPLs which you want to use is stupid.
|
|
// Never uncomment this again.
|
|
/* for (auto &cur : moduleHandleCache) {
|
|
// Release handle if they are not from DynLoadPatchModule
|
|
if (((uint32_t) cur.second & 0xFFFF0000) != 0x13370000) {
|
|
OSDynLoad_Release(cur.second);
|
|
}
|
|
} */
|
|
|
|
DCFlushRange((void *) trampData.data(), trampData.size() * sizeof(relocation_trampoline_entry_t));
|
|
ICInvalidateRange((void *) trampData.data(), trampData.size() * sizeof(relocation_trampoline_entry_t));
|
|
OSMemoryBarrier();
|
|
return true;
|
|
}
|
|
|
|
bool PluginManagement::doRelocations(const std::vector<PluginContainer> &plugins,
|
|
std::vector<relocation_trampoline_entry_t> &trampData,
|
|
std::map<std::string, OSDynLoad_Module> &usedRPls) {
|
|
for (auto &cur : trampData) {
|
|
if (cur.status == RELOC_TRAMP_IMPORT_DONE) {
|
|
cur.status = RELOC_TRAMP_FREE;
|
|
}
|
|
}
|
|
|
|
OSDynLoadAllocFn prevDynLoadAlloc = nullptr;
|
|
OSDynLoadFreeFn prevDynLoadFree = nullptr;
|
|
|
|
OSDynLoad_GetAllocator(&prevDynLoadAlloc, &prevDynLoadFree);
|
|
OSDynLoad_SetAllocator(CustomDynLoadAlloc, CustomDynLoadFree);
|
|
|
|
for (const auto &pluginContainer : plugins) {
|
|
DEBUG_FUNCTION_LINE_VERBOSE("Doing relocations for plugin: %s", pluginContainer.getMetaInformation().getName().c_str());
|
|
if (!PluginManagement::doRelocation(pluginContainer.getPluginInformation().getRelocationDataList(),
|
|
trampData,
|
|
pluginContainer.getPluginInformation().getTrampolineId(),
|
|
usedRPls)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
OSDynLoad_SetAllocator(prevDynLoadAlloc, prevDynLoadFree);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool PluginManagement::RestoreFunctionPatches(std::vector<PluginContainer> &plugins) {
|
|
for (auto &cur : std::ranges::reverse_view(plugins)) {
|
|
for (auto &curFunction : std::ranges::reverse_view(cur.getPluginInformation().getFunctionDataList())) {
|
|
if (!curFunction.RemovePatch()) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool PluginManagement::DoFunctionPatches(std::vector<PluginContainer> &plugins) {
|
|
for (auto &cur : plugins) {
|
|
for (auto &curFunction : cur.getPluginInformation().getFunctionDataList()) {
|
|
if (!curFunction.AddPatch()) {
|
|
DEBUG_FUNCTION_LINE_ERR("Failed to add function patch for: plugin %s", cur.getMetaInformation().getName().c_str());
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void PluginManagement::callInitHooks(const std::vector<PluginContainer> &plugins) {
|
|
CallHook(plugins, WUPS_LOADER_HOOK_INIT_CONFIG);
|
|
CallHook(plugins, WUPS_LOADER_HOOK_INIT_STORAGE_DEPRECATED);
|
|
CallHook(plugins, WUPS_LOADER_HOOK_INIT_STORAGE);
|
|
CallHook(plugins, WUPS_LOADER_HOOK_INIT_PLUGIN);
|
|
DEBUG_FUNCTION_LINE_VERBOSE("Done calling init hooks");
|
|
} |