2017-09-14 17:11:56 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
|
2017-02-27 22:37:47 +01:00
|
|
|
#include "magiskboot.h"
|
2017-09-14 17:11:56 +02:00
|
|
|
#include "utils.h"
|
2016-09-08 14:59:48 +02:00
|
|
|
|
2017-03-07 17:54:23 +01:00
|
|
|
static void hex2byte(const char *hex, unsigned char *str) {
|
|
|
|
char high, low;
|
|
|
|
for (int i = 0, length = strlen(hex); i < length; i += 2) {
|
|
|
|
high = toupper(hex[i]) - '0';
|
|
|
|
low = toupper(hex[i + 1]) - '0';
|
|
|
|
str[i / 2] = ((high > 9 ? high - 7 : high) << 4) + (low > 9 ? low - 7 : low);
|
2016-09-08 14:59:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-04 14:16:59 +01:00
|
|
|
void hexpatch(const char *image, const char *from, const char *to) {
|
|
|
|
int patternsize = strlen(from) / 2, patchsize = strlen(to) / 2;
|
|
|
|
size_t filesize;
|
2017-09-12 09:27:28 +02:00
|
|
|
void *file, *pattern, *patch;
|
2017-03-04 14:16:59 +01:00
|
|
|
mmap_rw(image, &file, &filesize);
|
2017-04-28 15:48:38 +02:00
|
|
|
pattern = xmalloc(patternsize);
|
|
|
|
patch = xmalloc(patchsize);
|
2017-03-07 17:54:23 +01:00
|
|
|
hex2byte(from, pattern);
|
|
|
|
hex2byte(to, patch);
|
2017-10-07 16:08:10 +02:00
|
|
|
for (size_t i = 0; filesize > 0 && i < filesize - patternsize; ++i) {
|
2017-02-24 20:50:26 +01:00
|
|
|
if (memcmp(file + i, pattern, patternsize) == 0) {
|
2017-12-20 20:36:18 +01:00
|
|
|
fprintf(stderr, "Patch @ %08X [%s]->[%s]\n", (unsigned) i, from, to);
|
2017-02-24 20:50:26 +01:00
|
|
|
memset(file + i, 0, patternsize);
|
|
|
|
memcpy(file + i, patch, patchsize);
|
|
|
|
i += patternsize - 1;
|
2016-09-08 14:59:48 +02:00
|
|
|
}
|
|
|
|
}
|
2017-02-24 20:50:26 +01:00
|
|
|
munmap(file, filesize);
|
2016-09-08 14:59:48 +02:00
|
|
|
free(pattern);
|
|
|
|
free(patch);
|
2017-02-27 22:37:47 +01:00
|
|
|
}
|