Magisk/native/jni/magiskboot/pattern.cpp

72 lines
1.7 KiB
C++
Raw Normal View History

2017-12-06 18:30:48 +01:00
#include <malloc.h>
#include <string.h>
2019-02-10 09:57:51 +01:00
#include <utils.h>
2018-08-09 18:40:23 +02:00
#include "magiskboot.h"
2017-12-06 18:30:48 +01:00
static int check_verity_pattern(const char *s) {
int skip = 0;
if (s[0] == ',') ++skip;
if (strncmp(s + skip, "verify", 6) == 0)
skip += 6;
else if (strncmp(s + skip, "avb", 3) == 0)
skip += 3;
2017-12-06 18:30:48 +01:00
else
return -1;
if (s[skip] == '=') {
while (s[skip] != '\0' && s[skip] != ' ' && s[skip] != '\n' && s[skip] != ',') ++skip;
2017-12-06 18:30:48 +01:00
}
return skip;
2017-12-06 18:30:48 +01:00
}
static int check_encryption_pattern(const char *s) {
2019-09-26 09:14:56 +02:00
static const char *encrypt_list[] = { "forceencrypt", "forcefdeorfbe" };
for (auto enc : encrypt_list) {
int len = strlen(enc);
if (strncmp(s, enc, len) == 0)
2017-12-06 18:30:48 +01:00
return len;
}
return -1;
}
2019-09-26 09:14:56 +02:00
char *patch_verity(const void *buf, uint32_t &size, bool inplace) {
auto src = static_cast<const char *>(buf);
int src_size = size;
2019-02-25 05:09:34 +01:00
bool found = false;
2019-09-26 09:14:56 +02:00
auto patched = (char *)(inplace ? buf : xmalloc(size));
int write = 0;
for (int read = 0; read < src_size; ++read, ++write) {
if (int skip; (skip = check_verity_pattern(src + read)) > 0) {
fprintf(stderr, "Found pattern [%.*s]\n", skip, src + read);
size -= skip;
read += skip;
2019-02-25 05:09:34 +01:00
found = true;
2017-12-06 18:30:48 +01:00
}
patched[write] = src[read];
2017-12-31 12:30:56 +01:00
}
patched[write] = '\0';
2019-09-26 09:14:56 +02:00
if (!found) {
if (!inplace)
free(patched);
return nullptr;
}
return patched;
2017-12-06 18:30:48 +01:00
}
2019-09-26 09:49:05 +02:00
void patch_encryption(void *buf, uint32_t &size) {
2019-09-26 09:14:56 +02:00
auto src = static_cast<char *>(buf);
int src_size = size;
int write = 0;
for (int read = 0; read < src_size; ++read, ++write) {
if (int skip; (skip = check_encryption_pattern(src + read)) > 0) {
fprintf(stderr, "Found pattern [%.*s]\n", skip, src + read);
size -= skip;
read += skip;
2017-12-06 18:30:48 +01:00
}
2019-09-26 09:14:56 +02:00
src[write] = src[read];
2017-12-06 18:30:48 +01:00
}
2019-09-26 09:14:56 +02:00
src[write] = '\0';
2017-12-06 18:30:48 +01:00
}