2019-03-04 22:45:18 +01:00
|
|
|
#include <sys/mount.h>
|
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
|
|
|
|
2019-02-10 07:05:19 +01:00
|
|
|
#include <utils.h>
|
|
|
|
#include <magisk.h>
|
|
|
|
#include <daemon.h>
|
|
|
|
#include <selinux.h>
|
|
|
|
#include <db.h>
|
|
|
|
#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,
|
2019-02-12 11:17:02 +01:00
|
|
|
FULL_VER(Magisk) " 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"
|
2019-02-12 10:05:51 +01:00
|
|
|
"\n"
|
2019-02-18 09:09:01 +01:00
|
|
|
"Advanced Options (Internal APIs):\n"
|
2017-09-27 18:54:01 +02:00
|
|
|
" --unlock-blocks set BLKROSET flag to OFF for all block devices\n"
|
2019-02-12 10:05:51 +01:00
|
|
|
" --restorecon restore selinux context on Magisk files\n"
|
2017-10-28 10:20:31 +02:00
|
|
|
" --clone-attr SRC DEST clone permission, owner, and selinux context\n"
|
2019-02-12 10:05:51 +01:00
|
|
|
" --clone SRC DEST clone SRC to DEST\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"
|
2019-02-09 07:51:46 +01:00
|
|
|
" 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) {
|
2019-02-12 11:17:02 +01:00
|
|
|
printf(MAGISK_VERSION ":MAGISK (" str(MAGISK_VER_CODE) ")\n");
|
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) {
|
2019-04-24 06:13:48 +02:00
|
|
|
restore_rootcon();
|
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;
|
2019-02-12 10:05:51 +01:00
|
|
|
} else if (strcmp(argv[1], "--clone") == 0) {
|
|
|
|
if (argc < 4) usage();
|
|
|
|
cp_afc(argv[2], argv[3]);
|
|
|
|
return 0;
|
2018-05-13 08:32:21 +02:00
|
|
|
} else if (strcmp(argv[1], "--daemon") == 0) {
|
2019-03-04 22:45:18 +01:00
|
|
|
int fd = connect_daemon(true);
|
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], "--post-fs-data") == 0) {
|
2019-03-04 22:45:18 +01:00
|
|
|
int fd = connect_daemon(true);
|
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) {
|
2019-03-04 22:45:18 +01:00
|
|
|
int fd = connect_daemon(true);
|
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) {
|
2019-03-04 22:45:18 +01:00
|
|
|
int fd = connect_daemon(true);
|
2018-08-09 08:52:44 +02:00
|
|
|
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
|
|
|
}
|
2019-02-10 07:05:19 +01:00
|
|
|
#if 0
|
|
|
|
/* Entry point for testing stuffs */
|
|
|
|
else if (strcmp(argv[1], "--test") == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2018-05-13 08:32:21 +02:00
|
|
|
usage();
|
|
|
|
}
|