Magisk/core/jni/magiskboot/main.c

167 lines
5.7 KiB
C
Raw Normal View History

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"
#include "utils.h"
2017-09-14 17:11:56 +02:00
#include "sha1.h"
/********************
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"
2017-12-06 05:51:16 +01:00
" --parse <bootimg>\n"
2017-12-06 18:30:48 +01:00
" Parse <bootimg> only, do not unpack. Return values: \n"
2017-12-06 05:51:16 +01:00
" 0:OK 1:error 2:insufficient boot partition size\n"
" 3:chromeos 4:ELF32 5:ELF64\n"
"\n"
2017-09-14 17:11:56 +02:00
" --unpack <bootimg>\n"
2017-11-10 13:25:41 +01:00
" Unpack <bootimg> to kernel, ramdisk.cpio, (second), (dtb), (extra) into\n"
2017-12-06 18:30:48 +01:00
" the current directory. Return value is the same as --parse\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"
2017-12-06 05:51:16 +01:00
" It will compress ramdisk.cpio with the same method used in <origbootimg>,\n"
" or attempt to find ramdisk.cpio.[ext], and repack directly with the\n"
" compressed ramdisk file\n"
2017-04-27 21:15:48 +02:00
"\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-12-20 20:36:18 +01:00
" --cpio <incpio> [commands...]\n"
" Do cpio commands to <incpio> (modifications are done directly)\n"
" Each command is a single argument, use quotes if necessary\n"
2017-09-14 17:11:56 +02:00
" Supported commands:\n"
2017-12-20 20:36:18 +01:00
" rm [-r] ENTRY\n"
" Remove ENTRY, specify [-r] to remove recursively\n"
" mkdir MODE ENTRY\n"
" Create directory ENTRY in permissions MODE\n"
" ln TARGET ENTRY\n"
" Create a symlink to TARGET with the name ENTRY\n"
" mv SOURCE DEST\n"
" Move SOURCE to DEST\n"
" add MODE ENTRY INFILE\n"
" Add INFILE as ENTRY in permissions MODE; replaces ENTRY if exists\n"
" extract [ENTRY OUT]\n"
" Extract ENTRY to OUT, or extract all entries to current directory\n"
" test\n"
" Test the current cpio's patch status\n"
2017-11-09 20:45:06 +01:00
" Return value: 0/stock 1/Magisk 2/other (phh, SuperSU, Xposed)\n"
2017-12-20 20:36:18 +01:00
" patch KEEPVERITY KEEPFORCEENCRYPT\n"
2017-12-06 18:30:48 +01:00
" Ramdisk patches. KEEP**** are boolean values\n"
2017-12-20 20:36:18 +01:00
" backup ORIG [SHA1]\n"
" Create ramdisk backups from ORIG\n"
" SHA1 of stock boot image is optional\n"
" restore\n"
" Restore ramdisk from ramdisk backup stored within incpio\n"
" magisk ORIG HIGHCOMP KEEPVERITY KEEPFORCEENCRYPT [SHA1]\n"
" Do Magisk patches and backups all in one step\n"
" Create ramdisk backups from ORIG\n"
2017-12-06 18:30:48 +01:00
" HIGHCOMP, KEEP**** are boolean values\n"
" SHA1 of stock boot image is optional\n"
2017-12-20 20:36:18 +01:00
" sha1\n"
" Print stock boot SHA1 if previously stored\n"
2017-04-27 21:15:48 +02:00
"\n"
2017-11-09 20:45:06 +01:00
" --dtb-<cmd> <dtb>\n"
" Do dtb related cmds to <dtb> (modifications are done directly)\n"
" Supported commands:\n"
" -dump\n"
" Dump all contents from dtb for debugging\n"
2017-12-06 05:51:16 +01:00
" -test\n"
" Check if fstab has verity/avb flags\n"
" Return value: 0/no flags 1/flag exists"
2017-11-09 20:45:06 +01:00
" -patch\n"
" Search for fstab and remove verity/avb\n"
2017-09-14 20:52:27 +02:00
"\n"
2017-09-14 17:11:56 +02:00
" --compress[=method] <infile> [outfile]\n"
" Compress <infile> with [method] (default: gzip), optionally to [outfile]\n"
2017-11-10 13:25:41 +01:00
" <infile>/[outfile] can be '-' to be STDIN/STDOUT\n"
2017-09-14 17:11:56 +02:00
" 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,
2017-12-06 05:51:16 +01:00
"\n\n"
2017-09-14 17:11:56 +02:00
" --decompress <infile> [outfile]\n"
2017-11-10 13:25:41 +01:00
" Detect method and decompress <infile>, optionally to [outfile]\n"
" <infile>/[outfile] can be '-' to be STDIN/STDOUT\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,
2017-12-06 05:51:16 +01:00
"\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-12-20 20:36:18 +01:00
fprintf(stderr, "MagiskBoot v" xstr(MAGISK_VERSION) "(" xstr(MAGISK_VER_CODE) ") (by topjohnwu) - Boot Image Modification Tool\n");
2017-03-07 17:54:23 +01:00
2017-12-03 20:14:04 +01:00
umask(0);
2017-03-07 17:54:23 +01:00
if (argc > 1 && strcmp(argv[1], "--cleanup") == 0) {
2017-12-20 20:36:18 +01:00
fprintf(stderr, "Cleaning up...\n");
2017-09-14 17:11:56 +02:00
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-12-06 05:51:16 +01:00
} else if (argc > 2 && strcmp(argv[1], "--parse") == 0) {
boot_img boot;
exit(parse_img(argv[2], &boot));
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) {
decomp_file(argv[2], argc > 3 ? argv[3] : NULL);
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++;
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-12-20 20:36:18 +01:00
} else if (argc > 2 && strcmp(argv[1], "--cpio") == 0) {
if (cpio_commands(argc - 2, argv + 2)) usage(argv[0]);
2017-11-10 18:30:33 +01:00
} else if (argc > 2 && strncmp(argv[1], "--dtb", 5) == 0) {
char *cmd = argv[1] + 5;
if (*cmd == '\0') usage(argv[0]);
else ++cmd;
if (dtb_commands(cmd, argc - 2, argv + 2)) usage(argv[0]);
2017-03-07 17:54:23 +01:00
} else {
usage(argv[0]);
}
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
}