2017-09-14 17:11:56 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.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 "sha1.h"
|
2016-09-08 14:59:48 +02:00
|
|
|
|
|
|
|
/********************
|
|
|
|
Patch Boot Image
|
|
|
|
*********************/
|
|
|
|
|
2017-02-24 20:29:12 +01:00
|
|
|
static void usage(char *arg0) {
|
2017-04-27 21:15:48 +02:00
|
|
|
fprintf(stderr,
|
2017-09-14 17:11:56 +02:00
|
|
|
"Usage: %s <action> [args...]\n"
|
|
|
|
"\n"
|
|
|
|
"Supported actions:\n"
|
|
|
|
" --unpack <bootimg>\n"
|
|
|
|
" Unpack <bootimg> to kernel, ramdisk.cpio, (second), (dtb) into the\n"
|
|
|
|
" current directory\n"
|
2017-04-27 21:15:48 +02:00
|
|
|
"\n"
|
2017-09-14 17:11:56 +02:00
|
|
|
" --repack <origbootimg> [outbootimg]\n"
|
2017-04-27 21:15:48 +02:00
|
|
|
" Repack kernel, ramdisk.cpio[.ext], second, dtb... from current directory\n"
|
|
|
|
" to [outbootimg], or new-boot.img if not specified.\n"
|
|
|
|
" It will compress ramdisk.cpio with the same method used in <origbootimg>\n"
|
|
|
|
" if exists, or attempt to find ramdisk.cpio.[ext], and repack\n"
|
|
|
|
" directly with the compressed ramdisk file\n"
|
|
|
|
"\n"
|
2017-09-14 17:11:56 +02:00
|
|
|
" --hexpatch <file> <hexpattern1> <hexpattern2>\n"
|
2017-04-27 21:15:48 +02:00
|
|
|
" Search <hexpattern1> in <file>, and replace with <hexpattern2>\n"
|
|
|
|
"\n"
|
2017-09-14 17:11:56 +02:00
|
|
|
" --cpio-<cmd> <incpio> [flags...] [args...]\n"
|
|
|
|
" Do cpio related cmds to <incpio> (modifications are done directly)\n"
|
|
|
|
" Supported commands:\n"
|
|
|
|
" -rm [-r] <entry>\n"
|
|
|
|
" Remove entry from <incpio>, flag -r to remove recursively\n"
|
|
|
|
" -mkdir <mode> <entry>\n"
|
|
|
|
" Create directory as an <entry>\n"
|
|
|
|
" -add <mode> <entry> <infile>\n"
|
|
|
|
" Add <infile> as an <entry>; replaces <entry> if already exists\n"
|
|
|
|
" -mv <from-entry> <to-entry>\n"
|
|
|
|
" Move <from-entry> to <to-entry>\n"
|
|
|
|
" -extract <entry> <outfile>\n"
|
|
|
|
" Extract <entry> to <outfile>\n"
|
|
|
|
" -test \n"
|
|
|
|
" Return value: 0/stock 1/Magisk 2/other (e.g. phh, SuperSU)\n"
|
|
|
|
" -patch <KEEPVERITY> <KEEPFORCEENCRYPT>\n"
|
|
|
|
" Patch cpio for Magisk. KEEP**** are true/false values\n"
|
|
|
|
" -backup <origcpio>\n"
|
|
|
|
" Create ramdisk backups into <incpio> from <origcpio>\n"
|
|
|
|
" -restore\n"
|
|
|
|
" Restore ramdisk from ramdisk backup within <incpio>\n"
|
|
|
|
" -stocksha1\n"
|
|
|
|
" Get stock boot SHA1 recorded within <incpio>\n"
|
2017-04-27 21:15:48 +02:00
|
|
|
"\n"
|
2017-10-07 16:08:10 +02:00
|
|
|
" --dtb-print <dtb>\n"
|
|
|
|
" Print all nodes in <dtb>, for debugging\n"
|
|
|
|
"\n"
|
2017-09-14 20:52:27 +02:00
|
|
|
" --dtb-patch <dtb>\n"
|
|
|
|
" Search for fstab in <dtb> and remove verity checks\n"
|
|
|
|
"\n"
|
2017-09-14 17:11:56 +02:00
|
|
|
" --compress[=method] <infile> [outfile]\n"
|
|
|
|
" Compress <infile> with [method] (default: gzip), optionally to [outfile]\n"
|
|
|
|
" Supported methods: "
|
|
|
|
, arg0);
|
2017-04-27 21:15:48 +02:00
|
|
|
for (int i = 0; SUP_LIST[i]; ++i)
|
|
|
|
fprintf(stderr, "%s ", SUP_LIST[i]);
|
|
|
|
fprintf(stderr,
|
|
|
|
"\n"
|
|
|
|
"\n"
|
2017-09-14 17:11:56 +02:00
|
|
|
" --decompress <infile> [outfile]\n"
|
|
|
|
" Detect method and decompress <infile>, optionally to [outfile]\n Supported methods: ");
|
2017-04-27 21:15:48 +02:00
|
|
|
for (int i = 0; SUP_LIST[i]; ++i)
|
|
|
|
fprintf(stderr, "%s ", SUP_LIST[i]);
|
|
|
|
fprintf(stderr,
|
|
|
|
"\n"
|
|
|
|
"\n"
|
2017-09-14 17:11:56 +02:00
|
|
|
" --sha1 <file>\n"
|
2017-04-27 21:15:48 +02:00
|
|
|
" Print the SHA1 checksum for <file>\n"
|
|
|
|
"\n"
|
2017-09-14 17:11:56 +02:00
|
|
|
" --cleanup\n"
|
2017-04-27 21:15:48 +02:00
|
|
|
" Cleanup the current working directory\n"
|
2017-09-14 17:11:56 +02:00
|
|
|
"\n");
|
2017-03-07 17:54:23 +01:00
|
|
|
|
2017-02-24 20:29:12 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2017-02-24 07:58:44 +01:00
|
|
|
int main(int argc, char *argv[]) {
|
2017-07-18 05:53:28 +02:00
|
|
|
fprintf(stderr, "MagiskBoot v" xstr(MAGISK_VERSION) "(" xstr(MAGISK_VER_CODE) ") (by topjohnwu) - Boot Image Modification Tool\n\n");
|
2017-03-07 17:54:23 +01:00
|
|
|
|
|
|
|
if (argc > 1 && strcmp(argv[1], "--cleanup") == 0) {
|
2017-09-14 17:11:56 +02:00
|
|
|
fprintf(stderr, "Cleaning up...\n\n");
|
|
|
|
char name[PATH_MAX];
|
|
|
|
unlink(KERNEL_FILE);
|
|
|
|
unlink(RAMDISK_FILE);
|
|
|
|
unlink(RAMDISK_FILE ".raw");
|
|
|
|
unlink(SECOND_FILE);
|
|
|
|
unlink(DTB_FILE);
|
2017-10-07 16:08:10 +02:00
|
|
|
unlink(EXTRA_FILE);
|
2017-09-14 17:11:56 +02:00
|
|
|
for (int i = 0; SUP_EXT_LIST[i]; ++i) {
|
|
|
|
sprintf(name, "%s.%s", RAMDISK_FILE, SUP_EXT_LIST[i]);
|
|
|
|
unlink(name);
|
|
|
|
}
|
2017-03-09 21:08:17 +01:00
|
|
|
} else if (argc > 2 && strcmp(argv[1], "--sha1") == 0) {
|
|
|
|
char sha1[21], *buf;
|
|
|
|
size_t size;
|
2017-09-12 09:27:28 +02:00
|
|
|
mmap_ro(argv[2], (void **) &buf, &size);
|
2017-03-09 21:08:17 +01:00
|
|
|
SHA1(sha1, buf, size);
|
|
|
|
for (int i = 0; i < 20; ++i)
|
2017-07-24 20:02:19 +02:00
|
|
|
printf("%02x", sha1[i]);
|
|
|
|
printf("\n");
|
2017-03-09 21:08:17 +01:00
|
|
|
munmap(buf, size);
|
2017-03-07 17:54:23 +01:00
|
|
|
} else if (argc > 2 && strcmp(argv[1], "--unpack") == 0) {
|
|
|
|
unpack(argv[2]);
|
|
|
|
} else if (argc > 2 && strcmp(argv[1], "--repack") == 0) {
|
|
|
|
repack(argv[2], argc > 3 ? argv[3] : NEW_BOOT);
|
|
|
|
} else if (argc > 2 && strcmp(argv[1], "--decompress") == 0) {
|
2017-03-12 11:12:16 +01:00
|
|
|
decomp_file(argv[2], argc > 3 ? argv[3] : NULL);
|
2017-10-07 16:08:10 +02:00
|
|
|
} else if (argc > 2 && strcmp(argv[1], "--dtb-print") == 0) {
|
|
|
|
dtb_print(argv[2]);
|
2017-09-14 20:52:27 +02:00
|
|
|
} else if (argc > 2 && strcmp(argv[1], "--dtb-patch") == 0) {
|
|
|
|
dtb_patch(argv[2]);
|
2017-03-07 17:54:23 +01:00
|
|
|
} else if (argc > 2 && strncmp(argv[1], "--compress", 10) == 0) {
|
|
|
|
char *method;
|
|
|
|
method = strchr(argv[1], '=');
|
|
|
|
if (method == NULL) method = "gzip";
|
|
|
|
else method++;
|
2017-03-12 11:12:16 +01:00
|
|
|
comp_file(method, argv[2], argc > 3 ? argv[3] : NULL);
|
2017-03-07 17:54:23 +01:00
|
|
|
} else if (argc > 4 && strcmp(argv[1], "--hexpatch") == 0) {
|
|
|
|
hexpatch(argv[2], argv[3], argv[4]);
|
2017-03-09 21:08:17 +01:00
|
|
|
} else if (argc > 2 && strncmp(argv[1], "--cpio", 6) == 0) {
|
2017-03-07 17:54:23 +01:00
|
|
|
char *command;
|
|
|
|
command = strchr(argv[1] + 2, '-');
|
|
|
|
if (command == NULL) usage(argv[0]);
|
2017-03-09 21:08:17 +01:00
|
|
|
else ++command;
|
|
|
|
if (cpio_commands(command, argc - 2, argv + 2)) usage(argv[0]);
|
2017-03-07 17:54:23 +01:00
|
|
|
} else {
|
|
|
|
usage(argv[0]);
|
2016-09-08 14:59:48 +02:00
|
|
|
}
|
2017-02-24 20:29:12 +01:00
|
|
|
|
2017-03-07 17:54:23 +01:00
|
|
|
return 0;
|
2017-02-24 07:58:44 +01:00
|
|
|
}
|