2017-04-09 01:25:10 +02:00
|
|
|
#include <stdlib.h>
|
2017-04-15 12:10:54 +02:00
|
|
|
#include <stdio.h>
|
2017-09-14 15:54:56 +02:00
|
|
|
#include <unistd.h>
|
2017-11-05 22:41:03 +01:00
|
|
|
#include <libgen.h>
|
2018-09-27 09:11:10 +02:00
|
|
|
#include <string.h>
|
2017-04-09 01:25:10 +02:00
|
|
|
|
2017-04-04 21:44:13 +02:00
|
|
|
#include "utils.h"
|
|
|
|
#include "magisk.h"
|
2017-04-08 01:37:43 +02:00
|
|
|
#include "daemon.h"
|
2018-09-27 06:09:59 +02:00
|
|
|
#include "selinux.h"
|
2018-10-27 23:54:48 +02:00
|
|
|
#include "db.h"
|
2018-09-27 09:56:56 +02:00
|
|
|
#include "flags.h"
|
2017-04-04 21:44:13 +02:00
|
|
|
|
2018-11-04 09:38:06 +01:00
|
|
|
[[noreturn]] static void usage() {
|
2017-04-15 12:10:54 +02:00
|
|
|
fprintf(stderr,
|
2017-07-08 17:51:58 +02:00
|
|
|
"Magisk v" xstr(MAGISK_VERSION) "(" xstr(MAGISK_VER_CODE) ") (by topjohnwu) multi-call binary\n"
|
2017-04-15 12:10:54 +02:00
|
|
|
"\n"
|
2018-05-13 08:32:21 +02:00
|
|
|
"Usage: magisk [applet [arguments]...]\n"
|
|
|
|
" or: magisk [options]...\n"
|
2017-09-27 18:54:01 +02:00
|
|
|
"\n"
|
|
|
|
"Options:\n"
|
|
|
|
" -c print current binary version\n"
|
|
|
|
" -v print running daemon version\n"
|
|
|
|
" -V print running daemon version code\n"
|
2017-12-04 15:21:19 +01:00
|
|
|
" --list list all available applets\n"
|
2018-04-21 20:16:56 +02:00
|
|
|
" --daemon manually start magisk daemon\n"
|
|
|
|
" --[init trigger] start service for init trigger\n"
|
2017-09-27 18:54:01 +02:00
|
|
|
" --unlock-blocks set BLKROSET flag to OFF for all block devices\n"
|
2017-10-11 21:39:39 +02:00
|
|
|
" --restorecon fix selinux context on Magisk files and folders\n"
|
2017-10-28 10:20:31 +02:00
|
|
|
" --clone-attr SRC DEST clone permission, owner, and selinux context\n"
|
2018-10-27 23:54:48 +02:00
|
|
|
" --sqlite SQL exec SQL to Magisk database\n"
|
2017-04-15 12:10:54 +02:00
|
|
|
"\n"
|
2018-04-21 20:16:56 +02:00
|
|
|
"Supported init triggers:\n"
|
2018-08-09 08:52:44 +02:00
|
|
|
" startup, post-fs-data, service, boot-complete\n"
|
2017-04-15 12:10:54 +02:00
|
|
|
"\n"
|
2018-05-13 08:32:21 +02:00
|
|
|
"Supported applets:\n");
|
2017-04-15 12:10:54 +02:00
|
|
|
|
2018-09-28 00:26:41 +02:00
|
|
|
for (int i = 0; applet_names[i]; ++i)
|
|
|
|
fprintf(stderr, i ? ", %s" : " %s", applet_names[i]);
|
2017-09-27 18:54:01 +02:00
|
|
|
fprintf(stderr, "\n\n");
|
2017-04-15 12:10:54 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2018-05-13 08:32:21 +02:00
|
|
|
int magisk_main(int argc, char *argv[]) {
|
|
|
|
if (argc < 2)
|
|
|
|
usage();
|
|
|
|
if (strcmp(argv[1], "-c") == 0) {
|
2018-09-27 09:56:56 +02:00
|
|
|
printf("%s (%d)\n", xstr(MAGISK_VERSION) ":MAGISK", MAGISK_VER_CODE);
|
2018-05-13 08:32:21 +02:00
|
|
|
return 0;
|
|
|
|
} else if (strcmp(argv[1], "-v") == 0) {
|
2018-06-16 19:28:29 +02:00
|
|
|
int fd = connect_daemon();
|
2018-05-13 08:32:21 +02:00
|
|
|
write_int(fd, CHECK_VERSION);
|
|
|
|
char *v = read_string(fd);
|
|
|
|
printf("%s\n", v);
|
|
|
|
free(v);
|
|
|
|
return 0;
|
|
|
|
} else if (strcmp(argv[1], "-V") == 0) {
|
2018-06-16 19:28:29 +02:00
|
|
|
int fd = connect_daemon();
|
2018-05-13 08:32:21 +02:00
|
|
|
write_int(fd, CHECK_VERSION_CODE);
|
|
|
|
printf("%d\n", read_int(fd));
|
|
|
|
return 0;
|
|
|
|
} else if (strcmp(argv[1], "--list") == 0) {
|
2018-09-28 00:26:41 +02:00
|
|
|
for (int i = 0; applet_names[i]; ++i)
|
|
|
|
printf("%s\n", applet_names[i]);
|
2018-05-13 08:32:21 +02:00
|
|
|
return 0;
|
|
|
|
} else if (strcmp(argv[1], "--unlock-blocks") == 0) {
|
|
|
|
unlock_blocks();
|
|
|
|
return 0;
|
|
|
|
} else if (strcmp(argv[1], "--restorecon") == 0) {
|
2018-06-03 08:43:03 +02:00
|
|
|
restorecon();
|
2018-05-13 08:32:21 +02:00
|
|
|
return 0;
|
|
|
|
} else if (strcmp(argv[1], "--clone-attr") == 0) {
|
|
|
|
if (argc < 4) usage();
|
|
|
|
clone_attr(argv[2], argv[3]);
|
|
|
|
return 0;
|
|
|
|
} else if (strcmp(argv[1], "--daemon") == 0) {
|
2018-06-16 19:28:29 +02:00
|
|
|
int fd = connect_daemon();
|
2018-07-02 16:11:28 +02:00
|
|
|
write_int(fd, DO_NOTHING);
|
2018-05-13 08:32:21 +02:00
|
|
|
return 0;
|
|
|
|
} else if (strcmp(argv[1], "--startup") == 0) {
|
|
|
|
startup();
|
|
|
|
return 0;
|
|
|
|
} else if (strcmp(argv[1], "--post-fs-data") == 0) {
|
2018-06-16 19:28:29 +02:00
|
|
|
int fd = connect_daemon();
|
2018-05-13 08:32:21 +02:00
|
|
|
write_int(fd, POST_FS_DATA);
|
|
|
|
return read_int(fd);
|
|
|
|
} else if (strcmp(argv[1], "--service") == 0) {
|
2018-06-16 19:28:29 +02:00
|
|
|
int fd = connect_daemon();
|
2018-05-13 08:32:21 +02:00
|
|
|
write_int(fd, LATE_START);
|
|
|
|
return read_int(fd);
|
2018-08-09 08:52:44 +02:00
|
|
|
} else if (strcmp(argv[1], "--boot-complete") == 0) {
|
|
|
|
int fd = connect_daemon();
|
|
|
|
write_int(fd, BOOT_COMPLETE);
|
|
|
|
return read_int(fd);
|
2018-10-27 23:54:48 +02:00
|
|
|
} else if (strcmp(argv[1], "--sqlite") == 0) {
|
2018-11-16 09:20:30 +01:00
|
|
|
int fd = connect_daemon();
|
|
|
|
write_int(fd, SQLITE_CMD);
|
|
|
|
write_string(fd, argv[2]);
|
|
|
|
send_fd(fd, STDOUT_FILENO);
|
|
|
|
return read_int(fd);
|
2018-05-13 08:32:21 +02:00
|
|
|
}
|
2018-05-19 18:49:48 +02:00
|
|
|
|
2018-05-13 08:32:21 +02:00
|
|
|
usage();
|
|
|
|
}
|