2020-04-28 14:43:07 +02:00
|
|
|
/****************************************************************************
|
2021-02-19 17:01:21 +01:00
|
|
|
* Copyright (C) 2018-2021 Maschell
|
2020-04-28 14:43:07 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
2020-05-17 21:14:27 +02:00
|
|
|
#include "ExportData.h"
|
2021-12-07 18:01:15 +01:00
|
|
|
#include "FunctionSymbolData.h"
|
2022-02-04 21:44:03 +01:00
|
|
|
#include "HookData.h"
|
|
|
|
#include "RelocationData.h"
|
|
|
|
#include "SectionInfo.h"
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2020-04-28 14:43:07 +02:00
|
|
|
|
2021-12-07 18:23:18 +01:00
|
|
|
struct FunctionSymbolDataComparator {
|
2022-01-23 22:17:48 +01:00
|
|
|
bool operator()(const std::shared_ptr<FunctionSymbolData> &lhs,
|
|
|
|
const std::shared_ptr<FunctionSymbolData> &rhs) const {
|
2021-12-07 18:23:18 +01:00
|
|
|
return (uint32_t) lhs->getAddress() < (uint32_t) rhs->getAddress();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-04-28 14:43:07 +02:00
|
|
|
class ModuleData {
|
|
|
|
public:
|
2021-02-19 17:01:21 +01:00
|
|
|
ModuleData() = default;
|
2020-04-28 14:43:07 +02:00
|
|
|
|
2021-02-19 17:01:21 +01:00
|
|
|
~ModuleData() = default;
|
2020-04-28 14:43:07 +02:00
|
|
|
|
|
|
|
void setBSSLocation(uint32_t addr, uint32_t size) {
|
|
|
|
this->bssAddr = addr;
|
|
|
|
this->bssSize = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setSBSSLocation(uint32_t addr, uint32_t size) {
|
|
|
|
this->sbssAddr = addr;
|
|
|
|
this->sbssSize = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setEntrypoint(uint32_t addr) {
|
|
|
|
this->entrypoint = addr;
|
|
|
|
}
|
|
|
|
|
2020-05-03 00:06:11 +02:00
|
|
|
void setStartAddress(uint32_t addr) {
|
|
|
|
this->startAddress = addr;
|
2020-04-29 12:35:40 +02:00
|
|
|
}
|
|
|
|
|
2021-02-19 17:01:21 +01:00
|
|
|
void setEndAddress(uint32_t _endAddress) {
|
|
|
|
this->endAddress = _endAddress;
|
2020-04-29 12:35:40 +02:00
|
|
|
}
|
|
|
|
|
2021-12-07 18:23:18 +01:00
|
|
|
void addRelocationData(const std::shared_ptr<RelocationData> &relocation_data) {
|
2020-04-28 14:43:07 +02:00
|
|
|
relocation_data_list.push_back(relocation_data);
|
|
|
|
}
|
|
|
|
|
2021-12-07 18:23:18 +01:00
|
|
|
[[nodiscard]] const std::vector<std::shared_ptr<RelocationData>> &getRelocationDataList() const {
|
2020-04-28 14:43:07 +02:00
|
|
|
return relocation_data_list;
|
|
|
|
}
|
|
|
|
|
2021-12-07 18:23:18 +01:00
|
|
|
void addExportData(const std::shared_ptr<ExportData> &data) {
|
2020-05-17 21:14:27 +02:00
|
|
|
export_data_list.push_back(data);
|
|
|
|
}
|
|
|
|
|
2021-12-07 18:23:18 +01:00
|
|
|
[[nodiscard]] const std::vector<std::shared_ptr<ExportData>> &getExportDataList() const {
|
2020-05-17 21:14:27 +02:00
|
|
|
return export_data_list;
|
|
|
|
}
|
2020-06-07 13:58:55 +02:00
|
|
|
|
2021-12-07 18:23:18 +01:00
|
|
|
void addHookData(const std::shared_ptr<HookData> &data) {
|
2020-05-29 17:36:10 +02:00
|
|
|
hook_data_list.push_back(data);
|
|
|
|
}
|
|
|
|
|
2021-12-07 18:23:18 +01:00
|
|
|
[[nodiscard]] const std::vector<std::shared_ptr<HookData>> &getHookDataList() const {
|
2020-05-29 17:36:10 +02:00
|
|
|
return hook_data_list;
|
|
|
|
}
|
2020-05-17 21:14:27 +02:00
|
|
|
|
2021-12-07 18:23:18 +01:00
|
|
|
void addSectionInfo(const std::shared_ptr<SectionInfo> §ionInfo) {
|
|
|
|
section_info_list[sectionInfo->getName()] = sectionInfo;
|
2020-05-17 13:13:24 +02:00
|
|
|
}
|
|
|
|
|
2021-12-07 18:23:18 +01:00
|
|
|
void addFunctionSymbolData(const std::shared_ptr<FunctionSymbolData> &symbol_data) {
|
2021-12-07 18:01:15 +01:00
|
|
|
symbol_data_list.insert(symbol_data);
|
|
|
|
}
|
|
|
|
|
2021-12-07 18:23:18 +01:00
|
|
|
[[nodiscard]] const std::set<std::shared_ptr<FunctionSymbolData>, FunctionSymbolDataComparator> &getFunctionSymbolDataList() const {
|
2021-12-07 18:01:15 +01:00
|
|
|
return symbol_data_list;
|
|
|
|
}
|
|
|
|
|
2021-12-07 18:23:18 +01:00
|
|
|
[[nodiscard]] const std::map<std::string, std::shared_ptr<SectionInfo>> &getSectionInfoList() const {
|
2020-05-17 13:13:24 +02:00
|
|
|
return section_info_list;
|
|
|
|
}
|
|
|
|
|
2021-12-07 18:23:18 +01:00
|
|
|
[[nodiscard]] std::optional<std::shared_ptr<SectionInfo>> getSectionInfo(const std::string §ionName) const {
|
2020-05-17 13:13:24 +02:00
|
|
|
if (getSectionInfoList().count(sectionName) > 0) {
|
|
|
|
return section_info_list.at(sectionName);
|
|
|
|
}
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
|
|
|
|
2021-02-19 17:01:21 +01:00
|
|
|
[[nodiscard]] uint32_t getBSSAddr() const {
|
2020-04-28 14:43:07 +02:00
|
|
|
return bssAddr;
|
|
|
|
}
|
|
|
|
|
2021-02-19 17:01:21 +01:00
|
|
|
[[nodiscard]] uint32_t getBSSSize() const {
|
2020-04-28 14:43:07 +02:00
|
|
|
return bssSize;
|
|
|
|
}
|
|
|
|
|
2021-02-19 17:01:21 +01:00
|
|
|
[[nodiscard]] uint32_t getSBSSAddr() const {
|
2020-04-28 14:43:07 +02:00
|
|
|
return sbssAddr;
|
|
|
|
}
|
|
|
|
|
2021-02-19 17:01:21 +01:00
|
|
|
[[nodiscard]] uint32_t getSBSSSize() const {
|
2020-04-28 14:43:07 +02:00
|
|
|
return sbssSize;
|
|
|
|
}
|
|
|
|
|
2021-02-19 17:01:21 +01:00
|
|
|
[[nodiscard]] uint32_t getEntrypoint() const {
|
2020-04-28 14:43:07 +02:00
|
|
|
return entrypoint;
|
|
|
|
}
|
|
|
|
|
2021-02-19 17:01:21 +01:00
|
|
|
[[nodiscard]] uint32_t getStartAddress() const {
|
2020-05-03 00:06:11 +02:00
|
|
|
return startAddress;
|
2020-04-29 12:35:40 +02:00
|
|
|
}
|
|
|
|
|
2021-02-19 17:01:21 +01:00
|
|
|
[[nodiscard]] uint32_t getEndAddress() const {
|
2020-05-03 00:06:11 +02:00
|
|
|
return endAddress;
|
2020-04-29 12:35:40 +02:00
|
|
|
}
|
|
|
|
|
2021-02-19 17:01:21 +01:00
|
|
|
[[nodiscard]] std::string toString() const;
|
2020-05-17 19:05:51 +02:00
|
|
|
|
2020-05-17 21:14:27 +02:00
|
|
|
void setExportName(const std::string &name) {
|
|
|
|
this->export_name = name;
|
|
|
|
}
|
|
|
|
|
2021-02-19 17:01:21 +01:00
|
|
|
[[nodiscard]] std::string getExportName() const {
|
2020-05-17 21:14:27 +02:00
|
|
|
return this->export_name;
|
|
|
|
}
|
|
|
|
|
2021-02-19 17:01:21 +01:00
|
|
|
[[nodiscard]] bool isInitBeforeRelocationDoneHook() const {
|
2020-12-26 16:01:46 +01:00
|
|
|
return this->initBeforeRelocationDoneHook;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setInitBeforeRelocationDoneHook(bool value) {
|
|
|
|
this->initBeforeRelocationDoneHook = value;
|
2020-06-07 13:58:55 +02:00
|
|
|
}
|
|
|
|
|
2022-01-23 22:07:38 +01:00
|
|
|
[[nodiscard]] bool isSkipInitFini() const {
|
|
|
|
return this->skipInitFini;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setSkipInitFini(bool value) {
|
|
|
|
this->skipInitFini = value;
|
|
|
|
}
|
|
|
|
|
2021-01-01 02:07:02 +01:00
|
|
|
bool relocationsDone = false;
|
2022-02-04 21:44:03 +01:00
|
|
|
|
2020-04-28 14:43:07 +02:00
|
|
|
private:
|
2021-12-07 18:23:18 +01:00
|
|
|
std::vector<std::shared_ptr<RelocationData>> relocation_data_list;
|
|
|
|
std::vector<std::shared_ptr<ExportData>> export_data_list;
|
|
|
|
std::vector<std::shared_ptr<HookData>> hook_data_list;
|
|
|
|
std::set<std::shared_ptr<FunctionSymbolData>, FunctionSymbolDataComparator> symbol_data_list;
|
|
|
|
std::map<std::string, std::shared_ptr<SectionInfo>> section_info_list;
|
2020-04-28 14:43:07 +02:00
|
|
|
|
2020-05-17 21:14:27 +02:00
|
|
|
std::string export_name;
|
|
|
|
|
2022-02-04 21:44:03 +01:00
|
|
|
uint32_t bssAddr = 0;
|
|
|
|
uint32_t bssSize = 0;
|
|
|
|
uint32_t sbssAddr = 0;
|
|
|
|
uint32_t sbssSize = 0;
|
|
|
|
uint32_t startAddress = 0;
|
|
|
|
uint32_t endAddress = 0;
|
|
|
|
uint32_t entrypoint = 0;
|
2020-12-26 16:01:46 +01:00
|
|
|
bool initBeforeRelocationDoneHook = false;
|
2022-02-04 21:44:03 +01:00
|
|
|
bool skipInitFini = false;
|
2020-04-28 14:43:07 +02:00
|
|
|
};
|