2017-09-14 17:11:56 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
|
2017-07-12 20:14:10 +02:00
|
|
|
#include "bootimg.h"
|
|
|
|
#include "magiskboot.h"
|
2017-09-14 17:11:56 +02:00
|
|
|
#include "utils.h"
|
|
|
|
#include "logging.h"
|
2017-07-12 20:14:10 +02:00
|
|
|
|
2017-09-12 09:27:28 +02:00
|
|
|
static void dump(void *buf, size_t size, const char *filename) {
|
2017-07-12 20:14:10 +02:00
|
|
|
int fd = open_new(filename);
|
|
|
|
xwrite(fd, buf, size);
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t restore(const char *filename, int fd) {
|
|
|
|
int ifd = xopen(filename, O_RDONLY);
|
|
|
|
size_t size = lseek(ifd, 0, SEEK_END);
|
|
|
|
lseek(ifd, 0, SEEK_SET);
|
|
|
|
xsendfile(fd, ifd, NULL, size);
|
|
|
|
close(ifd);
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void restore_buf(int fd, const void *buf, size_t size) {
|
|
|
|
xwrite(fd, buf, size);
|
|
|
|
}
|
|
|
|
|
2017-09-12 16:09:10 +02:00
|
|
|
static void print_hdr(const boot_img_hdr *hdr) {
|
|
|
|
fprintf(stderr, "KERNEL [%d] @ 0x%08x\n", hdr->kernel_size, hdr->kernel_addr);
|
|
|
|
fprintf(stderr, "RAMDISK [%d] @ 0x%08x\n", hdr->ramdisk_size, hdr->ramdisk_addr);
|
|
|
|
fprintf(stderr, "SECOND [%d] @ 0x%08x\n", hdr->second_size, hdr->second_addr);
|
2017-10-07 16:08:10 +02:00
|
|
|
fprintf(stderr, "EXTRA [%d] @ 0x%08x\n", hdr->extra_size, hdr->tags_addr);
|
2017-09-12 16:09:10 +02:00
|
|
|
fprintf(stderr, "PAGESIZE [%d]\n", hdr->page_size);
|
|
|
|
if (hdr->os_version != 0) {
|
2017-07-12 20:14:10 +02:00
|
|
|
int a,b,c,y,m = 0;
|
|
|
|
int os_version, os_patch_level;
|
2017-09-12 16:09:10 +02:00
|
|
|
os_version = hdr->os_version >> 11;
|
|
|
|
os_patch_level = hdr->os_version & 0x7ff;
|
2017-09-12 09:27:28 +02:00
|
|
|
|
2017-07-12 20:14:10 +02:00
|
|
|
a = (os_version >> 14) & 0x7f;
|
|
|
|
b = (os_version >> 7) & 0x7f;
|
|
|
|
c = os_version & 0x7f;
|
2017-07-18 05:53:28 +02:00
|
|
|
fprintf(stderr, "OS_VERSION [%d.%d.%d]\n", a, b, c);
|
2017-09-12 09:27:28 +02:00
|
|
|
|
2017-07-12 20:14:10 +02:00
|
|
|
y = (os_patch_level >> 4) + 2000;
|
|
|
|
m = os_patch_level & 0xf;
|
2017-07-18 05:53:28 +02:00
|
|
|
fprintf(stderr, "PATCH_LEVEL [%d-%02d]\n", y, m);
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
2017-09-12 16:09:10 +02:00
|
|
|
fprintf(stderr, "NAME [%s]\n", hdr->name);
|
|
|
|
fprintf(stderr, "CMDLINE [%s]\n", hdr->cmdline);
|
2017-07-18 05:53:28 +02:00
|
|
|
fprintf(stderr, "\n");
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
|
|
|
|
2017-09-12 16:09:10 +02:00
|
|
|
int parse_img(void *orig, size_t size, boot_img *boot) {
|
2017-09-12 09:27:28 +02:00
|
|
|
void *base, *end;
|
2017-07-12 20:14:10 +02:00
|
|
|
size_t pos = 0;
|
|
|
|
int ret = 0;
|
2017-09-12 16:09:10 +02:00
|
|
|
memset(boot, 0, sizeof(*boot));
|
2017-07-12 20:14:10 +02:00
|
|
|
for(base = orig, end = orig + size; base < end; base += 256, size -= 256) {
|
|
|
|
switch (check_type(base)) {
|
|
|
|
case CHROMEOS:
|
|
|
|
// The caller should know it's chromeos, as it needs additional signing
|
|
|
|
ret = 2;
|
|
|
|
continue;
|
|
|
|
case ELF32:
|
|
|
|
exit(3);
|
|
|
|
case ELF64:
|
|
|
|
exit(4);
|
|
|
|
case AOSP:
|
|
|
|
// Read the header
|
2017-09-12 16:09:10 +02:00
|
|
|
memcpy(&boot->hdr, base, sizeof(boot->hdr));
|
|
|
|
pos += boot->hdr.page_size;
|
|
|
|
|
|
|
|
print_hdr(&boot->hdr);
|
|
|
|
|
|
|
|
boot->kernel = base + pos;
|
|
|
|
pos += boot->hdr.kernel_size;
|
|
|
|
mem_align(&pos, boot->hdr.page_size);
|
|
|
|
|
|
|
|
boot->ramdisk = base + pos;
|
|
|
|
pos += boot->hdr.ramdisk_size;
|
|
|
|
mem_align(&pos, boot->hdr.page_size);
|
|
|
|
|
|
|
|
if (boot->hdr.second_size) {
|
|
|
|
boot->second = base + pos;
|
|
|
|
pos += boot->hdr.second_size;
|
|
|
|
mem_align(&pos, boot->hdr.page_size);
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
|
|
|
|
2017-10-07 16:08:10 +02:00
|
|
|
if (boot->hdr.extra_size) {
|
|
|
|
boot->extra = base + pos;
|
|
|
|
pos += boot->hdr.extra_size;
|
2017-09-12 16:09:10 +02:00
|
|
|
mem_align(&pos, boot->hdr.page_size);
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (pos < size) {
|
2017-10-07 16:08:10 +02:00
|
|
|
boot->tail = base + pos;
|
|
|
|
boot->tail_size = end - base - pos;
|
2017-09-12 16:09:10 +02:00
|
|
|
}
|
|
|
|
|
2017-10-07 16:08:10 +02:00
|
|
|
// Search for dtb in kernel
|
|
|
|
for (int i = 0; i < boot->hdr.kernel_size; ++i) {
|
|
|
|
if (memcmp(boot->kernel + i, DTB_MAGIC, 4) == 0) {
|
|
|
|
boot->dtb = boot->kernel + i;
|
|
|
|
boot->dt_size = boot->hdr.kernel_size - i;
|
|
|
|
boot->hdr.kernel_size = i;
|
|
|
|
fprintf(stderr, "DTB [%d]\n", boot->dt_size);
|
2017-09-12 16:09:10 +02:00
|
|
|
}
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
|
|
|
|
2017-09-12 16:09:10 +02:00
|
|
|
boot->ramdisk_type = check_type(boot->ramdisk);
|
|
|
|
boot->kernel_type = check_type(boot->kernel);
|
2017-07-12 20:14:10 +02:00
|
|
|
|
|
|
|
// Check MTK
|
2017-09-12 16:09:10 +02:00
|
|
|
if (boot->kernel_type == MTK) {
|
|
|
|
fprintf(stderr, "MTK_KERNEL_HDR [512]\n");
|
|
|
|
boot->flags |= MTK_KERNEL;
|
|
|
|
memcpy(&boot->mtk_kernel_hdr, boot->kernel, sizeof(mtk_hdr));
|
|
|
|
boot->kernel += 512;
|
|
|
|
boot->hdr.kernel_size -= 512;
|
|
|
|
boot->kernel_type = check_type(boot->kernel);
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
2017-09-12 16:09:10 +02:00
|
|
|
if (boot->ramdisk_type == MTK) {
|
|
|
|
fprintf(stderr, "MTK_RAMDISK_HDR [512]\n");
|
|
|
|
boot->flags |= MTK_RAMDISK;
|
|
|
|
memcpy(&boot->mtk_ramdisk_hdr, boot->ramdisk, sizeof(mtk_hdr));
|
|
|
|
boot->ramdisk += 512;
|
|
|
|
boot->hdr.ramdisk_size -= 512;
|
|
|
|
boot->ramdisk_type = check_type(boot->ramdisk + 512);
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
|
|
|
|
2017-09-12 16:09:10 +02:00
|
|
|
char fmt[16];
|
|
|
|
|
|
|
|
get_type_name(boot->kernel_type, fmt);
|
|
|
|
fprintf(stderr, "KERNEL_FMT [%s]\n", fmt);
|
|
|
|
get_type_name(boot->ramdisk_type, fmt);
|
|
|
|
fprintf(stderr, "RAMDISK_FMT [%s]\n", fmt);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
|
2017-07-12 20:14:10 +02:00
|
|
|
return ret;
|
|
|
|
default:
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2017-09-14 17:11:56 +02:00
|
|
|
LOGE("No boot image magic found!\n");
|
2017-10-07 16:08:10 +02:00
|
|
|
return 1;
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void unpack(const char* image) {
|
|
|
|
size_t size;
|
2017-09-12 09:27:28 +02:00
|
|
|
void *orig;
|
2017-07-12 20:14:10 +02:00
|
|
|
mmap_ro(image, &orig, &size);
|
2017-09-12 16:09:10 +02:00
|
|
|
int fd;
|
|
|
|
boot_img boot;
|
2017-07-12 20:14:10 +02:00
|
|
|
|
|
|
|
// Parse image
|
2017-07-18 05:53:28 +02:00
|
|
|
fprintf(stderr, "Parsing boot image: [%s]\n\n", image);
|
2017-09-12 16:09:10 +02:00
|
|
|
int ret = parse_img(orig, size, &boot);
|
2017-07-12 20:14:10 +02:00
|
|
|
|
|
|
|
// Dump kernel
|
2017-10-07 16:08:10 +02:00
|
|
|
if (COMPRESSED(boot.kernel_type)) {
|
2017-09-12 16:09:10 +02:00
|
|
|
fd = open_new(KERNEL_FILE);
|
|
|
|
decomp(boot.kernel_type, fd, boot.kernel, boot.hdr.kernel_size);
|
|
|
|
close(fd);
|
2017-10-07 16:08:10 +02:00
|
|
|
} else {
|
|
|
|
dump(boot.kernel, boot.hdr.kernel_size, KERNEL_FILE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (boot.dt_size) {
|
|
|
|
// Dump dtb
|
|
|
|
dump(boot.dtb, boot.dt_size, DTB_FILE);
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Dump ramdisk
|
2017-10-07 16:08:10 +02:00
|
|
|
if (COMPRESSED(boot.ramdisk_type)) {
|
2017-09-12 16:09:10 +02:00
|
|
|
fd = open_new(RAMDISK_FILE);
|
|
|
|
decomp(boot.ramdisk_type, fd, boot.ramdisk, boot.hdr.ramdisk_size);
|
|
|
|
close(fd);
|
2017-10-07 16:08:10 +02:00
|
|
|
} else {
|
|
|
|
dump(boot.ramdisk, boot.hdr.ramdisk_size, RAMDISK_FILE ".raw");
|
|
|
|
LOGE("Unknown ramdisk format! Dumped to %s\n", RAMDISK_FILE ".raw");
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
|
|
|
|
2017-09-12 16:09:10 +02:00
|
|
|
if (boot.hdr.second_size) {
|
2017-07-12 20:14:10 +02:00
|
|
|
// Dump second
|
2017-09-12 16:09:10 +02:00
|
|
|
dump(boot.second, boot.hdr.second_size, SECOND_FILE);
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
|
|
|
|
2017-10-07 16:08:10 +02:00
|
|
|
if (boot.hdr.extra_size) {
|
|
|
|
// Dump extra
|
|
|
|
dump(boot.extra, boot.hdr.extra_size, EXTRA_FILE);
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
munmap(orig, size);
|
|
|
|
exit(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
void repack(const char* orig_image, const char* out_image) {
|
|
|
|
size_t size;
|
2017-09-12 09:27:28 +02:00
|
|
|
void *orig;
|
2017-09-12 16:09:10 +02:00
|
|
|
boot_img boot;
|
2017-07-12 20:14:10 +02:00
|
|
|
|
|
|
|
// There are possible two MTK headers
|
|
|
|
size_t mtk_kernel_off, mtk_ramdisk_off;
|
|
|
|
|
|
|
|
// Load original image
|
|
|
|
mmap_ro(orig_image, &orig, &size);
|
|
|
|
|
|
|
|
// Parse original image
|
2017-07-18 05:53:28 +02:00
|
|
|
fprintf(stderr, "Parsing boot image: [%s]\n\n", orig_image);
|
2017-09-12 16:09:10 +02:00
|
|
|
parse_img(orig, size, &boot);
|
2017-07-12 20:14:10 +02:00
|
|
|
|
2017-07-18 05:53:28 +02:00
|
|
|
fprintf(stderr, "Repack to boot image: [%s]\n\n", out_image);
|
2017-07-12 20:14:10 +02:00
|
|
|
|
|
|
|
// Create new image
|
|
|
|
int fd = open_new(out_image);
|
|
|
|
|
|
|
|
// Skip a page for header
|
2017-09-12 16:09:10 +02:00
|
|
|
write_zero(fd, boot.hdr.page_size);
|
2017-07-12 20:14:10 +02:00
|
|
|
|
2017-09-12 16:09:10 +02:00
|
|
|
if (boot.flags & MTK_KERNEL) {
|
|
|
|
// Record position and skip MTK header
|
2017-07-12 20:14:10 +02:00
|
|
|
mtk_kernel_off = lseek(fd, 0, SEEK_CUR);
|
2017-09-12 11:00:45 +02:00
|
|
|
write_zero(fd, 512);
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
2017-10-07 16:08:10 +02:00
|
|
|
if (COMPRESSED(boot.kernel_type)) {
|
2017-09-12 16:09:10 +02:00
|
|
|
size_t raw_size;
|
|
|
|
void *kernel_raw;
|
|
|
|
mmap_ro(KERNEL_FILE, &kernel_raw, &raw_size);
|
|
|
|
boot.hdr.kernel_size = comp(boot.kernel_type, fd, kernel_raw, raw_size);
|
|
|
|
munmap(kernel_raw, raw_size);
|
2017-10-07 16:08:10 +02:00
|
|
|
} else {
|
|
|
|
boot.hdr.kernel_size = restore(KERNEL_FILE, fd);
|
2017-09-12 16:09:10 +02:00
|
|
|
}
|
2017-10-07 16:08:10 +02:00
|
|
|
// Restore dtb
|
|
|
|
if (boot.dt_size && access(DTB_FILE, R_OK) == 0) {
|
2017-09-12 16:09:10 +02:00
|
|
|
boot.hdr.kernel_size += restore(DTB_FILE, fd);
|
|
|
|
}
|
|
|
|
file_align(fd, boot.hdr.page_size, 1);
|
2017-07-12 20:14:10 +02:00
|
|
|
|
2017-09-12 16:09:10 +02:00
|
|
|
if (boot.flags & MTK_RAMDISK) {
|
|
|
|
// Record position and skip MTK header
|
2017-07-12 20:14:10 +02:00
|
|
|
mtk_ramdisk_off = lseek(fd, 0, SEEK_CUR);
|
2017-09-12 11:00:45 +02:00
|
|
|
write_zero(fd, 512);
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
|
|
|
if (access(RAMDISK_FILE, R_OK) == 0) {
|
|
|
|
// If we found raw cpio, compress to original format
|
|
|
|
size_t cpio_size;
|
2017-09-12 09:27:28 +02:00
|
|
|
void *cpio;
|
2017-07-12 20:14:10 +02:00
|
|
|
mmap_ro(RAMDISK_FILE, &cpio, &cpio_size);
|
2017-09-12 16:09:10 +02:00
|
|
|
boot.hdr.ramdisk_size = comp(boot.ramdisk_type, fd, cpio, cpio_size);
|
2017-07-12 20:14:10 +02:00
|
|
|
munmap(cpio, cpio_size);
|
2017-09-12 11:00:45 +02:00
|
|
|
} else {
|
|
|
|
// Find compressed ramdisk
|
|
|
|
char name[PATH_MAX];
|
|
|
|
int found = 0;
|
|
|
|
for (int i = 0; SUP_EXT_LIST[i]; ++i) {
|
|
|
|
sprintf(name, "%s.%s", RAMDISK_FILE, SUP_EXT_LIST[i]);
|
|
|
|
if (access(name, R_OK) == 0) {
|
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
2017-09-12 11:00:45 +02:00
|
|
|
if (!found)
|
2017-09-14 17:11:56 +02:00
|
|
|
LOGE("No ramdisk exists!\n");
|
2017-09-12 16:09:10 +02:00
|
|
|
boot.hdr.ramdisk_size = restore(name, fd);
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
2017-09-12 16:09:10 +02:00
|
|
|
file_align(fd, boot.hdr.page_size, 1);
|
2017-07-12 20:14:10 +02:00
|
|
|
|
|
|
|
// Restore second
|
2017-09-12 16:09:10 +02:00
|
|
|
if (boot.hdr.second_size && access(SECOND_FILE, R_OK) == 0) {
|
|
|
|
boot.hdr.second_size = restore(SECOND_FILE, fd);
|
|
|
|
file_align(fd, boot.hdr.page_size, 1);
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
|
|
|
|
2017-10-07 16:08:10 +02:00
|
|
|
// Restore extra
|
|
|
|
if (boot.hdr.extra_size && access(EXTRA_FILE, R_OK) == 0) {
|
|
|
|
boot.hdr.extra_size = restore(EXTRA_FILE, fd);
|
2017-09-12 16:09:10 +02:00
|
|
|
file_align(fd, boot.hdr.page_size, 1);
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
|
|
|
|
2017-10-07 16:08:10 +02:00
|
|
|
// Check tail info, currently only for LG Bump and Samsung SEANDROIDENFORCE
|
|
|
|
if (boot.tail_size >= 16) {
|
|
|
|
if (memcmp(boot.tail, "SEANDROIDENFORCE", 16) == 0 ||
|
|
|
|
memcmp(boot.tail, LG_BUMP_MAGIC, 16) == 0 ) {
|
|
|
|
restore_buf(fd, boot.tail, 16);
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-12 11:00:45 +02:00
|
|
|
// Write MTK headers back
|
2017-09-12 16:09:10 +02:00
|
|
|
if (boot.flags & MTK_KERNEL) {
|
2017-07-12 20:14:10 +02:00
|
|
|
lseek(fd, mtk_kernel_off, SEEK_SET);
|
2017-09-12 16:09:10 +02:00
|
|
|
boot.mtk_kernel_hdr.size = boot.hdr.kernel_size;
|
|
|
|
boot.hdr.kernel_size += 512;
|
|
|
|
restore_buf(fd, &boot.mtk_kernel_hdr, sizeof(mtk_hdr));
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
2017-09-12 16:09:10 +02:00
|
|
|
if (boot.flags & MTK_RAMDISK) {
|
2017-07-12 20:14:10 +02:00
|
|
|
lseek(fd, mtk_ramdisk_off, SEEK_SET);
|
2017-09-12 16:09:10 +02:00
|
|
|
boot.mtk_ramdisk_hdr.size = boot.hdr.ramdisk_size;
|
|
|
|
boot.hdr.ramdisk_size += 512;
|
|
|
|
restore_buf(fd, &boot.mtk_ramdisk_hdr, sizeof(mtk_hdr));
|
2017-07-12 20:14:10 +02:00
|
|
|
}
|
|
|
|
// Main header
|
|
|
|
lseek(fd, 0, SEEK_SET);
|
2017-09-12 16:09:10 +02:00
|
|
|
restore_buf(fd, &boot.hdr, sizeof(boot.hdr));
|
2017-07-12 20:14:10 +02:00
|
|
|
|
|
|
|
// Print new image info
|
2017-09-12 16:09:10 +02:00
|
|
|
print_hdr(&boot.hdr);
|
2017-07-12 20:14:10 +02:00
|
|
|
|
|
|
|
munmap(orig, size);
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|