2020-04-29 18:02:36 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (C) 2018 Maschell
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-02-04 16:25:44 +01:00
|
|
|
#include "FunctionData.h"
|
|
|
|
#include "FunctionSymbolData.h"
|
|
|
|
#include "HookData.h"
|
|
|
|
#include "PluginMetaInformation.h"
|
|
|
|
#include "RelocationData.h"
|
|
|
|
#include "SectionInfo.h"
|
2023-11-04 15:32:45 +01:00
|
|
|
#include "utils/HeapMemoryFixedSize.h"
|
|
|
|
#include "utils/utils.h"
|
2020-04-29 18:02:36 +02:00
|
|
|
#include <map>
|
2022-02-04 16:25:44 +01:00
|
|
|
#include <memory>
|
2020-04-29 18:02:36 +02:00
|
|
|
#include <optional>
|
2022-05-14 14:00:20 +02:00
|
|
|
#include <ranges>
|
2022-02-04 16:25:44 +01:00
|
|
|
#include <set>
|
2020-04-29 18:02:36 +02:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2021-12-15 17:09:30 +01:00
|
|
|
struct FunctionSymbolDataComparator {
|
2023-11-04 15:32:45 +01:00
|
|
|
bool operator()(const std::unique_ptr<FunctionSymbolData> &lhs,
|
|
|
|
const std::unique_ptr<FunctionSymbolData> &rhs) const {
|
|
|
|
return *lhs < *rhs;
|
2021-12-15 17:09:30 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-04-29 18:02:36 +02:00
|
|
|
class PluginInformation {
|
|
|
|
public:
|
2022-05-14 14:00:20 +02:00
|
|
|
void addHookData(std::unique_ptr<HookData> hook_data) {
|
2023-11-04 15:32:45 +01:00
|
|
|
mHookDataList.push_back(std::move(hook_data));
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
[[nodiscard]] const std::vector<std::unique_ptr<HookData>> &getHookDataList() const {
|
2023-11-04 15:32:45 +01:00
|
|
|
return mHookDataList;
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
void addFunctionData(std::unique_ptr<FunctionData> function_data) {
|
2023-11-04 15:32:45 +01:00
|
|
|
mFunctionDataList.push_back(std::move(function_data));
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
[[nodiscard]] const std::vector<std::unique_ptr<FunctionData>> &getFunctionDataList() const {
|
2023-11-04 15:32:45 +01:00
|
|
|
return mFunctionDataList;
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
void addRelocationData(std::unique_ptr<RelocationData> relocation_data) {
|
2023-11-04 15:32:45 +01:00
|
|
|
mRelocationDataList.push_back(std::move(relocation_data));
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
[[nodiscard]] const std::vector<std::unique_ptr<RelocationData>> &getRelocationDataList() const {
|
2023-11-04 15:32:45 +01:00
|
|
|
return mRelocationDataList;
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
void addFunctionSymbolData(std::unique_ptr<FunctionSymbolData> symbol_data) {
|
|
|
|
mSymbolDataList.insert(std::move(symbol_data));
|
2021-12-15 17:04:30 +01:00
|
|
|
}
|
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
void addSectionInfo(std::unique_ptr<SectionInfo> sectionInfo) {
|
|
|
|
mSectionInfoList[sectionInfo->getName()] = std::move(sectionInfo);
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
[[nodiscard]] const std::map<std::string, std::unique_ptr<SectionInfo>> &getSectionInfoList() const {
|
|
|
|
return mSectionInfoList;
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
[[nodiscard]] SectionInfo *getSectionInfo(const std::string §ionName) const {
|
2022-05-14 14:00:20 +02:00
|
|
|
if (getSectionInfoList().contains(sectionName)) {
|
2023-11-04 15:32:45 +01:00
|
|
|
return mSectionInfoList.at(sectionName).get();
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
2023-11-04 15:32:45 +01:00
|
|
|
return nullptr;
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
void setTrampolineId(uint8_t trampolineId) {
|
|
|
|
this->mTrampolineId = trampolineId;
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2022-01-27 12:47:33 +01:00
|
|
|
[[nodiscard]] uint8_t getTrampolineId() const {
|
2023-11-04 15:32:45 +01:00
|
|
|
return mTrampolineId;
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
2020-05-03 12:23:50 +02:00
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
[[nodiscard]] FunctionSymbolData *getNearestFunctionSymbolData(uint32_t address) const {
|
|
|
|
FunctionSymbolData *result = nullptr;
|
2022-05-14 14:00:20 +02:00
|
|
|
|
|
|
|
bool foundHit = false;
|
2023-11-04 15:32:45 +01:00
|
|
|
for (auto &cur : mSymbolDataList) {
|
2022-05-14 14:00:20 +02:00
|
|
|
if (foundHit && address < (uint32_t) cur->getAddress()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (address >= (uint32_t) cur->getAddress()) {
|
2023-11-04 15:32:45 +01:00
|
|
|
result = cur.get();
|
2022-05-14 14:00:20 +02:00
|
|
|
foundHit = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
return result;
|
2022-05-14 14:00:20 +02:00
|
|
|
}
|
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
[[nodiscard]] const HeapMemoryFixedSize &getTextMemory() const {
|
|
|
|
return mAllocatedTextMemoryAddress;
|
2023-02-17 17:30:28 +01:00
|
|
|
}
|
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
[[nodiscard]] const HeapMemoryFixedSize &getDataMemory() const {
|
|
|
|
return mAllocatedDataMemoryAddress;
|
2023-02-17 17:30:28 +01:00
|
|
|
}
|
|
|
|
|
2020-04-29 18:02:36 +02:00
|
|
|
private:
|
2023-11-04 15:32:45 +01:00
|
|
|
std::vector<std::unique_ptr<HookData>> mHookDataList;
|
|
|
|
std::vector<std::unique_ptr<FunctionData>> mFunctionDataList;
|
|
|
|
std::vector<std::unique_ptr<RelocationData>> mRelocationDataList;
|
|
|
|
std::set<std::unique_ptr<FunctionSymbolData>, FunctionSymbolDataComparator> mSymbolDataList;
|
|
|
|
std::map<std::string, std::unique_ptr<SectionInfo>> mSectionInfoList;
|
2020-04-29 18:02:36 +02:00
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
uint8_t mTrampolineId = 0;
|
2020-04-29 18:02:36 +02:00
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
HeapMemoryFixedSize mAllocatedTextMemoryAddress;
|
|
|
|
HeapMemoryFixedSize mAllocatedDataMemoryAddress;
|
2020-05-03 12:23:50 +02:00
|
|
|
|
2020-04-29 18:02:36 +02:00
|
|
|
friend class PluginInformationFactory;
|
|
|
|
};
|