2021-12-07 22:47:41 +01:00
|
|
|
#include <hex/helpers/patches.hpp>
|
2020-11-27 09:09:48 +01:00
|
|
|
|
2021-08-29 22:15:18 +02:00
|
|
|
#include <hex/helpers/utils.hpp>
|
|
|
|
|
2020-11-27 09:09:48 +01:00
|
|
|
#include <cstring>
|
|
|
|
#include <string_view>
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
2022-01-09 20:16:05 +01:00
|
|
|
static void pushStringBack(std::vector<u8> &buffer, const std::string &string) {
|
2021-09-08 15:18:24 +02:00
|
|
|
std::copy(string.begin(), string.end(), std::back_inserter(buffer));
|
2020-11-27 09:09:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
static void pushBytesBack(std::vector<u8> &buffer, T bytes) {
|
|
|
|
buffer.resize(buffer.size() + sizeof(T));
|
|
|
|
std::memcpy((&buffer.back() - sizeof(T)) + 1, &bytes, sizeof(T));
|
|
|
|
}
|
2022-01-24 20:53:17 +01:00
|
|
|
|
2020-11-27 09:09:48 +01:00
|
|
|
std::vector<u8> generateIPSPatch(const Patches &patches) {
|
|
|
|
std::vector<u8> result;
|
|
|
|
|
2022-01-09 20:16:05 +01:00
|
|
|
pushStringBack(result, "PATCH");
|
2020-11-27 09:09:48 +01:00
|
|
|
|
|
|
|
std::vector<u64> addresses;
|
|
|
|
std::vector<u8> values;
|
|
|
|
|
|
|
|
for (const auto &[address, value] : patches) {
|
|
|
|
addresses.push_back(address);
|
|
|
|
values.push_back(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<u64> startAddress;
|
|
|
|
std::vector<u8> bytes;
|
|
|
|
for (u32 i = 0; i < addresses.size(); i++) {
|
|
|
|
if (!startAddress.has_value())
|
|
|
|
startAddress = addresses[i];
|
|
|
|
|
|
|
|
if (i != addresses.size() - 1 && addresses[i] == (addresses[i + 1] - 1)) {
|
|
|
|
bytes.push_back(values[i]);
|
|
|
|
} else {
|
|
|
|
bytes.push_back(values[i]);
|
|
|
|
|
|
|
|
if (bytes.size() > 0xFFFF || startAddress > 0xFF'FFFF)
|
2022-01-24 20:53:17 +01:00
|
|
|
return {};
|
2020-11-27 09:09:48 +01:00
|
|
|
|
2022-02-01 22:09:44 +01:00
|
|
|
u32 address = startAddress.value();
|
2022-01-24 20:53:17 +01:00
|
|
|
auto addressBytes = reinterpret_cast<u8 *>(&address);
|
2020-11-27 09:09:48 +01:00
|
|
|
|
2022-01-24 20:53:17 +01:00
|
|
|
result.push_back(addressBytes[2]);
|
|
|
|
result.push_back(addressBytes[1]);
|
|
|
|
result.push_back(addressBytes[0]);
|
2020-11-27 09:09:48 +01:00
|
|
|
pushBytesBack<u16>(result, changeEndianess<u16>(bytes.size(), std::endian::big));
|
|
|
|
|
|
|
|
for (auto byte : bytes)
|
|
|
|
result.push_back(byte);
|
|
|
|
|
|
|
|
bytes.clear();
|
2022-01-24 20:53:17 +01:00
|
|
|
startAddress = {};
|
2020-11-27 09:09:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-09 20:16:05 +01:00
|
|
|
pushStringBack(result, "EOF");
|
2020-11-27 09:09:48 +01:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<u8> generateIPS32Patch(const Patches &patches) {
|
|
|
|
std::vector<u8> result;
|
|
|
|
|
2022-01-09 20:16:05 +01:00
|
|
|
pushStringBack(result, "IPS32");
|
2020-11-27 09:09:48 +01:00
|
|
|
|
|
|
|
std::vector<u64> addresses;
|
|
|
|
std::vector<u8> values;
|
|
|
|
|
|
|
|
for (const auto &[address, value] : patches) {
|
|
|
|
addresses.push_back(address);
|
|
|
|
values.push_back(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<u64> startAddress;
|
|
|
|
std::vector<u8> bytes;
|
|
|
|
for (u32 i = 0; i < addresses.size(); i++) {
|
|
|
|
if (!startAddress.has_value())
|
|
|
|
startAddress = addresses[i];
|
|
|
|
|
|
|
|
if (i != addresses.size() - 1 && addresses[i] == (addresses[i + 1] - 1)) {
|
|
|
|
bytes.push_back(values[i]);
|
|
|
|
} else {
|
|
|
|
bytes.push_back(values[i]);
|
|
|
|
|
|
|
|
if (bytes.size() > 0xFFFF || startAddress > 0xFFFF'FFFF)
|
2022-01-24 20:53:17 +01:00
|
|
|
return {};
|
2020-11-27 09:09:48 +01:00
|
|
|
|
2022-02-01 22:09:44 +01:00
|
|
|
u32 address = startAddress.value();
|
2022-01-24 20:53:17 +01:00
|
|
|
auto addressBytes = reinterpret_cast<u8 *>(&address);
|
2020-11-27 09:09:48 +01:00
|
|
|
|
2022-01-24 20:53:17 +01:00
|
|
|
result.push_back(addressBytes[3]);
|
|
|
|
result.push_back(addressBytes[2]);
|
|
|
|
result.push_back(addressBytes[1]);
|
|
|
|
result.push_back(addressBytes[0]);
|
2020-11-27 09:09:48 +01:00
|
|
|
pushBytesBack<u16>(result, changeEndianess<u16>(bytes.size(), std::endian::big));
|
|
|
|
|
|
|
|
for (auto byte : bytes)
|
|
|
|
result.push_back(byte);
|
|
|
|
|
|
|
|
bytes.clear();
|
2022-01-24 20:53:17 +01:00
|
|
|
startAddress = {};
|
2020-11-27 09:09:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-09 20:16:05 +01:00
|
|
|
pushStringBack(result, "EEOF");
|
2020-11-27 09:09:48 +01:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-11-29 15:09:36 +01:00
|
|
|
Patches loadIPSPatch(const std::vector<u8> &ipsPatch) {
|
|
|
|
if (ipsPatch.size() < (5 + 3))
|
2022-01-24 20:53:17 +01:00
|
|
|
return {};
|
2020-11-29 15:09:36 +01:00
|
|
|
|
|
|
|
if (std::memcmp(ipsPatch.data(), "PATCH", 5) != 0)
|
2022-01-24 20:53:17 +01:00
|
|
|
return {};
|
2020-11-29 15:09:36 +01:00
|
|
|
|
|
|
|
Patches result;
|
|
|
|
bool foundEOF = false;
|
|
|
|
|
|
|
|
u32 ipsOffset = 5;
|
|
|
|
while (ipsOffset < ipsPatch.size() - (5 + 3)) {
|
|
|
|
u32 offset = ipsPatch[ipsOffset + 2] | (ipsPatch[ipsOffset + 1] << 8) | (ipsPatch[ipsOffset + 0] << 16);
|
2022-02-01 22:09:44 +01:00
|
|
|
u16 size = ipsPatch[ipsOffset + 4] | (ipsPatch[ipsOffset + 3] << 8);
|
2020-11-29 15:09:36 +01:00
|
|
|
|
|
|
|
ipsOffset += 5;
|
|
|
|
|
|
|
|
// Handle normal record
|
|
|
|
if (size > 0x0000) {
|
|
|
|
if (ipsOffset + size > ipsPatch.size() - 3)
|
2022-01-24 20:53:17 +01:00
|
|
|
return {};
|
2020-11-29 15:09:36 +01:00
|
|
|
|
|
|
|
for (u16 i = 0; i < size; i++)
|
|
|
|
result[offset + i] = ipsPatch[ipsOffset + i];
|
|
|
|
ipsOffset += size;
|
|
|
|
}
|
|
|
|
// Handle RLE record
|
|
|
|
else {
|
|
|
|
if (ipsOffset + 3 > ipsPatch.size() - 3)
|
2022-01-24 20:53:17 +01:00
|
|
|
return {};
|
2020-11-29 15:09:36 +01:00
|
|
|
|
|
|
|
u16 rleSize = ipsPatch[ipsOffset + 0] | (ipsPatch[ipsOffset + 1] << 8);
|
|
|
|
|
|
|
|
ipsOffset += 2;
|
|
|
|
|
|
|
|
for (u16 i = 0; i < rleSize; i++)
|
|
|
|
result[offset + i] = ipsPatch[ipsOffset + 0];
|
|
|
|
|
|
|
|
ipsOffset += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (std::memcmp(ipsPatch.data(), "EOF", 3))
|
|
|
|
foundEOF = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (foundEOF)
|
|
|
|
return result;
|
|
|
|
else
|
2022-01-24 20:53:17 +01:00
|
|
|
return {};
|
2020-11-29 15:09:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Patches loadIPS32Patch(const std::vector<u8> &ipsPatch) {
|
|
|
|
if (ipsPatch.size() < (5 + 4))
|
2022-01-24 20:53:17 +01:00
|
|
|
return {};
|
2020-11-29 15:09:36 +01:00
|
|
|
|
|
|
|
if (std::memcmp(ipsPatch.data(), "IPS32", 5) != 0)
|
2022-01-24 20:53:17 +01:00
|
|
|
return {};
|
2020-11-29 15:09:36 +01:00
|
|
|
|
|
|
|
Patches result;
|
|
|
|
bool foundEEOF = false;
|
|
|
|
|
|
|
|
u32 ipsOffset = 5;
|
|
|
|
while (ipsOffset < ipsPatch.size() - (5 + 4)) {
|
|
|
|
u32 offset = ipsPatch[ipsOffset + 3] | (ipsPatch[ipsOffset + 2] << 8) | (ipsPatch[ipsOffset + 1] << 16) | (ipsPatch[ipsOffset + 0] << 24);
|
2022-02-01 22:09:44 +01:00
|
|
|
u16 size = ipsPatch[ipsOffset + 5] | (ipsPatch[ipsOffset + 4] << 8);
|
2020-11-29 15:09:36 +01:00
|
|
|
|
|
|
|
ipsOffset += 6;
|
|
|
|
|
|
|
|
// Handle normal record
|
|
|
|
if (size > 0x0000) {
|
|
|
|
if (ipsOffset + size > ipsPatch.size() - 3)
|
2022-01-24 20:53:17 +01:00
|
|
|
return {};
|
2020-11-29 15:09:36 +01:00
|
|
|
|
|
|
|
for (u16 i = 0; i < size; i++)
|
|
|
|
result[offset + i] = ipsPatch[ipsOffset + i];
|
|
|
|
ipsOffset += size;
|
|
|
|
}
|
|
|
|
// Handle RLE record
|
|
|
|
else {
|
|
|
|
if (ipsOffset + 3 > ipsPatch.size() - 3)
|
2022-01-24 20:53:17 +01:00
|
|
|
return {};
|
2020-11-29 15:09:36 +01:00
|
|
|
|
|
|
|
u16 rleSize = ipsPatch[ipsOffset + 0] | (ipsPatch[ipsOffset + 1] << 8);
|
|
|
|
|
|
|
|
ipsOffset += 2;
|
|
|
|
|
|
|
|
for (u16 i = 0; i < rleSize; i++)
|
|
|
|
result[offset + i] = ipsPatch[ipsOffset + 0];
|
|
|
|
|
|
|
|
ipsOffset += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (std::memcmp(ipsPatch.data(), "EEOF", 4))
|
|
|
|
foundEEOF = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (foundEEOF)
|
|
|
|
return result;
|
|
|
|
else
|
2022-01-24 20:53:17 +01:00
|
|
|
return {};
|
2020-11-29 15:09:36 +01:00
|
|
|
}
|
|
|
|
|
2020-11-27 09:09:48 +01:00
|
|
|
}
|