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"
|
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 {
|
2022-01-27 12:47:33 +01:00
|
|
|
bool operator()(const std::shared_ptr<FunctionSymbolData> &lhs,
|
|
|
|
const std::shared_ptr<FunctionSymbolData> &rhs) const {
|
2021-12-15 17:09:30 +01:00
|
|
|
return (uint32_t) lhs->getAddress() < (uint32_t) rhs->getAddress();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
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) {
|
|
|
|
hook_data_list.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 {
|
2020-04-29 18:02:36 +02:00
|
|
|
return hook_data_list;
|
|
|
|
}
|
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
void addFunctionData(std::unique_ptr<FunctionData> function_data) {
|
|
|
|
function_data_list.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 {
|
2020-04-29 18:02:36 +02:00
|
|
|
return function_data_list;
|
|
|
|
}
|
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
void addRelocationData(std::unique_ptr<RelocationData> relocation_data) {
|
|
|
|
relocation_data_list.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 {
|
2020-04-29 18:02:36 +02:00
|
|
|
return relocation_data_list;
|
|
|
|
}
|
|
|
|
|
2021-12-15 17:09:30 +01:00
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
void addFunctionSymbolData(std::shared_ptr<FunctionSymbolData> symbol_data) {
|
|
|
|
symbol_data_list.insert(std::move(symbol_data));
|
2021-12-15 17:04:30 +01:00
|
|
|
}
|
|
|
|
|
2021-12-15 17:09:30 +01:00
|
|
|
[[nodiscard]] const std::set<std::shared_ptr<FunctionSymbolData>, FunctionSymbolDataComparator> &getFunctionSymbolDataList() const {
|
2021-12-15 17:04:30 +01:00
|
|
|
return symbol_data_list;
|
|
|
|
}
|
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
void addSectionInfo(std::shared_ptr<SectionInfo> sectionInfo) {
|
|
|
|
section_info_list[sectionInfo->getName()] = std::move(sectionInfo);
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2021-12-15 17:09:30 +01:00
|
|
|
[[nodiscard]] const std::map<std::string, std::shared_ptr<SectionInfo>> &getSectionInfoList() const {
|
2020-04-29 18:02:36 +02:00
|
|
|
return section_info_list;
|
|
|
|
}
|
|
|
|
|
2021-12-15 17:09:30 +01:00
|
|
|
[[nodiscard]] std::optional<std::shared_ptr<SectionInfo>> getSectionInfo(const std::string §ionName) const {
|
2022-05-14 14:00:20 +02:00
|
|
|
if (getSectionInfoList().contains(sectionName)) {
|
2020-04-29 18:02:36 +02:00
|
|
|
return section_info_list.at(sectionName);
|
|
|
|
}
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
|
|
|
|
2022-01-27 12:47:33 +01:00
|
|
|
void setTrampolineId(uint8_t _trampolineId) {
|
|
|
|
this->trampolineId = _trampolineId;
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2022-01-27 12:47:33 +01:00
|
|
|
[[nodiscard]] uint8_t getTrampolineId() const {
|
|
|
|
return trampolineId;
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
2020-05-03 12:23:50 +02:00
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
[[nodiscard]] std::optional<std::shared_ptr<FunctionSymbolData>> getNearestFunctionSymbolData(uint32_t address) const {
|
|
|
|
std::shared_ptr<FunctionSymbolData> result;
|
|
|
|
|
|
|
|
bool foundHit = false;
|
|
|
|
for (auto &cur : symbol_data_list) {
|
|
|
|
if (foundHit && address < (uint32_t) cur->getAddress()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (address >= (uint32_t) cur->getAddress()) {
|
|
|
|
result = cur;
|
|
|
|
foundHit = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (result) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2020-04-29 18:02:36 +02:00
|
|
|
private:
|
2022-05-14 14:00:20 +02:00
|
|
|
std::vector<std::unique_ptr<HookData>> hook_data_list;
|
|
|
|
std::vector<std::unique_ptr<FunctionData>> function_data_list;
|
|
|
|
std::vector<std::unique_ptr<RelocationData>> relocation_data_list;
|
2021-12-15 17:09:30 +01:00
|
|
|
std::set<std::shared_ptr<FunctionSymbolData>, FunctionSymbolDataComparator> symbol_data_list;
|
|
|
|
std::map<std::string, std::shared_ptr<SectionInfo>> section_info_list;
|
2020-04-29 18:02:36 +02:00
|
|
|
|
2022-01-27 12:47:33 +01:00
|
|
|
uint8_t trampolineId = 0;
|
2020-04-29 18:02:36 +02:00
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
std::unique_ptr<uint8_t[]> allocatedTextMemoryAddress;
|
|
|
|
std::unique_ptr<uint8_t[]> allocatedDataMemoryAddress;
|
2020-05-03 12:23:50 +02:00
|
|
|
|
2020-04-29 18:02:36 +02:00
|
|
|
friend class PluginInformationFactory;
|
|
|
|
};
|