Magisk/native/jni/magiskboot/hexpatch.cpp

42 lines
1.2 KiB
C++
Raw Normal View History

2017-09-14 15:11:56 +00:00
#include <sys/mman.h>
2020-03-09 08:50:30 +00:00
#include <utils.hpp>
2019-02-10 08:57:51 +00:00
2020-03-09 08:50:30 +00:00
#include "magiskboot.hpp"
2021-02-28 22:36:48 +00:00
using namespace std;
static void hex2byte(const char *hex, uint8_t *buf) {
char high, low;
2021-02-28 22:36:48 +00:00
for (int i = 0, length = strlen(hex); i < length; i += 2) {
high = toupper(hex[i]) - '0';
low = toupper(hex[i + 1]) - '0';
2021-02-28 22:36:48 +00:00
buf[i / 2] = ((high > 9 ? high - 7 : high) << 4) + (low > 9 ? low - 7 : low);
}
}
2021-11-30 09:50:55 +00:00
int hexpatch(const char *file, const char *from, const char *to) {
int patched = 1;
2021-02-28 22:36:48 +00:00
2021-11-30 09:50:55 +00:00
auto m = mmap_data(file, true);
2021-02-28 22:36:48 +00:00
vector<uint8_t> pattern(strlen(from) / 2);
vector<uint8_t> patch(strlen(to) / 2);
hex2byte(from, pattern.data());
hex2byte(to, patch.data());
2021-11-30 09:50:55 +00:00
uint8_t * const end = m.buf + m.sz;
for (uint8_t *curr = m.buf; curr < end; curr += pattern.size()) {
2021-02-28 22:36:48 +00:00
curr = static_cast<uint8_t*>(memmem(curr, end - curr, pattern.data(), pattern.size()));
if (curr == nullptr)
return patched;
2021-11-30 09:50:55 +00:00
fprintf(stderr, "Patch @ %08X [%s] -> [%s]\n", (unsigned)(curr - m.buf), from, to);
2021-02-28 22:36:48 +00:00
memset(curr, 0, pattern.size());
memcpy(curr, patch.data(), patch.size());
patched = 0;
}
return patched;
2017-02-27 21:37:47 +00:00
}