Magisk/native/jni/magiskboot/main.cpp

151 lines
5.0 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>
2018-10-25 03:08:06 +02:00
#include <mincrypt/sha.h>
2019-02-10 09:57:51 +01:00
#include <logging.h>
#include <utils.h>
#include <flags.h>
2018-10-25 03:08:06 +02:00
2017-02-27 22:37:47 +01:00
#include "magiskboot.h"
2019-02-21 02:49:26 +01:00
#include "compress.h"
2017-02-24 20:29:12 +01:00
static void usage(char *arg0) {
2017-04-27 21:15:48 +02:00
fprintf(stderr,
FULL_VER(MagiskBoot) " - Boot Image Modification Tool\n"
2017-09-14 17:11:56 +02:00
"Usage: %s <action> [args...]\n"
"\n"
"Supported actions:\n"
2018-06-21 12:11:43 +02:00
" --unpack <bootimg>\n"
" Unpack <bootimg> to, if available, kernel, ramdisk.cpio, \n"
" second, dtb, extra, and recovery_dtbo into current directory.\n"
" Return values:\n"
2018-08-09 12:13:07 +02:00
" 0:valid 1:error 2:chromeos 3:ELF32 4:ELF64\n"
2017-04-27 21:15:48 +02:00
"\n"
2018-06-21 12:11:43 +02:00
" --repack <origbootimg> [outbootimg]\n"
" Repack boot image components from current directory\n"
2018-06-21 12:11:43 +02:00
" to [outbootimg], or new-boot.img if not specified.\n"
" It will compress ramdisk.cpio and kernel with the same method in\n"
" <origbootimg> if the file provided is not already compressed.\n"
2017-04-27 21:15:48 +02:00
"\n"
2018-06-21 12:11:43 +02:00
" --hexpatch <file> <hexpattern1> <hexpattern2>\n"
" Search <hexpattern1> in <file>, and replace with <hexpattern2>\n"
2017-04-27 21:15:48 +02:00
"\n"
2018-06-21 12:11:43 +02: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"
" Supported commands:\n"
" exists ENTRY\n"
" Return 0 if ENTRY exists, else return 1\n"
2018-06-21 12:11:43 +02: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"
2018-08-09 12:13:07 +02:00
" Return values:\n"
" 0:stock 1:Magisk 2:unsupported (phh, SuperSU, Xposed)\n"
2018-06-21 12:11:43 +02:00
" patch KEEPVERITY KEEPFORCEENCRYPT\n"
" Ramdisk patches. KEEP**** are boolean values\n"
" backup ORIG\n"
2018-06-21 12:11:43 +02:00
" Create ramdisk backups from ORIG\n"
" restore\n"
" Restore ramdisk from ramdisk backup stored within incpio\n"
" sha1\n"
" Print stock boot SHA1 if previously backed up in ramdisk\n"
2017-04-27 21:15:48 +02:00
"\n"
2018-06-21 12:11:43 +02: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"
" test\n"
" Check if fstab has verity/avb flags\n"
2018-08-09 12:13:07 +02:00
" Return values:\n"
" 0:no flags 1:flag exists\n"
2018-06-21 12:11:43 +02:00
" patch\n"
" Search for fstab and remove verity/avb\n"
2017-09-14 20:52:27 +02:00
"\n"
2018-06-21 12:11:43 +02:00
" --compress[=method] <infile> [outfile]\n"
" Compress <infile> with [method] (default: gzip), optionally to [outfile]\n"
" <infile>/[outfile] can be '-' to be STDIN/STDOUT\n"
" Supported methods: "
2017-09-14 17:11:56 +02:00
, arg0);
for (auto &it : name2fmt)
fprintf(stderr, "%s ", it.first.data());
2017-04-27 21:15:48 +02:00
fprintf(stderr,
2017-12-06 05:51:16 +01:00
"\n\n"
2018-06-21 12:11:43 +02:00
" --decompress <infile> [outfile]\n"
" Detect method and decompress <infile>, optionally to [outfile]\n"
" <infile>/[outfile] can be '-' to be STDIN/STDOUT\n"
" Supported methods: ");
for (auto &it : name2fmt)
fprintf(stderr, "%s ", it.first.data());
2017-04-27 21:15:48 +02:00
fprintf(stderr,
2017-12-06 05:51:16 +01:00
"\n\n"
2018-06-21 12:11:43 +02:00
" --sha1 <file>\n"
" Print the SHA1 checksum for <file>\n"
2017-04-27 21:15:48 +02:00
"\n"
2018-06-21 12:11:43 +02:00
" --cleanup\n"
" 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[]) {
2018-10-25 03:08:06 +02:00
cmdline_logging();
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
unlink(KERNEL_FILE);
unlink(RAMDISK_FILE);
unlink(SECOND_FILE);
unlink(DTB_FILE);
2017-10-07 16:08:10 +02:00
unlink(EXTRA_FILE);
2018-10-25 03:08:49 +02:00
unlink(RECV_DTBO_FILE);
2017-03-09 21:08:17 +01:00
} else if (argc > 2 && strcmp(argv[1], "--sha1") == 0) {
2018-01-29 08:34:05 +01:00
uint8_t sha1[SHA_DIGEST_SIZE];
void *buf;
2017-03-09 21:08:17 +01:00
size_t size;
2019-02-25 05:09:34 +01:00
mmap_ro(argv[2], buf, size);
2018-01-29 08:34:05 +01:00
SHA_hash(buf, size, sha1);
for (uint8_t i : sha1)
printf("%02x", i);
2017-07-24 20:02:19 +02:00
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) {
2018-01-28 19:44:30 +01:00
return unpack(argv[2]);
2017-03-07 17:54:23 +01:00
} else if (argc > 2 && strcmp(argv[1], "--repack") == 0) {
2019-02-21 02:49:26 +01:00
repack(argv[2], argv[3] ? argv[3] : NEW_BOOT);
2017-03-07 17:54:23 +01:00
} else if (argc > 2 && strcmp(argv[1], "--decompress") == 0) {
2019-02-21 02:49:26 +01:00
decompress(argv[2], argv[3]);
2017-03-07 17:54:23 +01:00
} else if (argc > 2 && strncmp(argv[1], "--compress", 10) == 0) {
2019-02-21 02:49:26 +01:00
compress(argv[1][10] == '=' ? &argv[1][11] : "gzip", argv[2], argv[3]);
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) {
2019-02-21 02:49:26 +01:00
if (argv[1][5] != '-')
usage(argv[0]);
if (dtb_commands(&argv[1][6], argc - 2, argv + 2))
2018-01-28 19:44:30 +01:00
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
}