Magisk/jni/magiskboot/hexpatch.c

39 lines
1.1 KiB
C
Raw Normal View History

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"
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);
}
}
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-02-24 20:50:26 +01:00
for (size_t i = 0; i < filesize - patternsize; ++i) {
if (memcmp(file + i, pattern, patternsize) == 0) {
2017-07-18 05:53:28 +02:00
fprintf(stderr, "Pattern %s found!\nPatching to %s\n", from, to);
2017-02-24 20:50:26 +01:00
memset(file + i, 0, patternsize);
memcpy(file + i, patch, patchsize);
i += patternsize - 1;
}
}
2017-02-24 20:50:26 +01:00
munmap(file, filesize);
free(pattern);
free(patch);
2017-02-27 22:37:47 +01:00
}