80cd85b061
In commit 8d4c407
, native Magisk always launches an activity for
communicating with Magisk Manager. While this works extremely well,
since it also workaround stupid OEMs that blocks broadcasts, it has a
problem: launching an activity will claim the focus of the device,
which could be super annoying in some circumstances.
This commit adds a new feature to run a broadcast test on boot complete.
If Magisk Manager successfully receives the broadcast, it will toggle
a setting in magiskd so all future su loggings and notifies will always
use broadcasts instead of launching activities.
Fix #1412
123 lines
3.4 KiB
C++
123 lines
3.4 KiB
C++
#include <sys/mount.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <libgen.h>
|
|
#include <string.h>
|
|
|
|
#include <utils.h>
|
|
#include <magisk.h>
|
|
#include <daemon.h>
|
|
#include <selinux.h>
|
|
#include <db.h>
|
|
#include <flags.h>
|
|
|
|
using namespace std::literals;
|
|
|
|
[[noreturn]] static void usage() {
|
|
fprintf(stderr,
|
|
FULL_VER(Magisk) " multi-call binary\n"
|
|
"\n"
|
|
"Usage: magisk [applet [arguments]...]\n"
|
|
" or: magisk [options]...\n"
|
|
"\n"
|
|
"Options:\n"
|
|
" -c print current binary version\n"
|
|
" -v print running daemon version\n"
|
|
" -V print running daemon version code\n"
|
|
" --list list all available applets\n"
|
|
" --daemon manually start magisk daemon\n"
|
|
" --[init trigger] start service for init trigger\n"
|
|
"\n"
|
|
"Advanced Options (Internal APIs):\n"
|
|
" --unlock-blocks set BLKROSET flag to OFF for all block devices\n"
|
|
" --restorecon restore selinux context on Magisk files\n"
|
|
" --clone-attr SRC DEST clone permission, owner, and selinux context\n"
|
|
" --clone SRC DEST clone SRC to DEST\n"
|
|
" --sqlite SQL exec SQL to Magisk database\n"
|
|
" --use-broadcast use broadcast for su logging and notify\n"
|
|
"\n"
|
|
"Supported init triggers:\n"
|
|
" post-fs-data, service, boot-complete\n"
|
|
"\n"
|
|
"Supported applets:\n");
|
|
|
|
for (int i = 0; applet_names[i]; ++i)
|
|
fprintf(stderr, i ? ", %s" : " %s", applet_names[i]);
|
|
fprintf(stderr, "\n\n");
|
|
exit(1);
|
|
}
|
|
|
|
int magisk_main(int argc, char *argv[]) {
|
|
if (argc < 2)
|
|
usage();
|
|
if (argv[1] == "-c"sv) {
|
|
printf(MAGISK_VERSION ":MAGISK (" str(MAGISK_VER_CODE) ")\n");
|
|
return 0;
|
|
} else if (argv[1] == "-v"sv) {
|
|
int fd = connect_daemon();
|
|
write_int(fd, CHECK_VERSION);
|
|
char *v = read_string(fd);
|
|
printf("%s\n", v);
|
|
free(v);
|
|
return 0;
|
|
} else if (argv[1] == "-V"sv) {
|
|
int fd = connect_daemon();
|
|
write_int(fd, CHECK_VERSION_CODE);
|
|
printf("%d\n", read_int(fd));
|
|
return 0;
|
|
} else if (argv[1] == "--list"sv) {
|
|
for (int i = 0; applet_names[i]; ++i)
|
|
printf("%s\n", applet_names[i]);
|
|
return 0;
|
|
} else if (argv[1] == "--unlock-blocks"sv) {
|
|
unlock_blocks();
|
|
return 0;
|
|
} else if (argv[1] == "--restorecon"sv) {
|
|
restore_rootcon();
|
|
restorecon();
|
|
return 0;
|
|
} else if (argv[1] == "--clone-attr"sv) {
|
|
if (argc < 4) usage();
|
|
clone_attr(argv[2], argv[3]);
|
|
return 0;
|
|
} else if (argv[1] == "--clone"sv) {
|
|
if (argc < 4) usage();
|
|
cp_afc(argv[2], argv[3]);
|
|
return 0;
|
|
} else if (argv[1] == "--daemon"sv) {
|
|
int fd = connect_daemon(true);
|
|
write_int(fd, DO_NOTHING);
|
|
return 0;
|
|
} else if (argv[1] == "--post-fs-data"sv) {
|
|
int fd = connect_daemon(true);
|
|
write_int(fd, POST_FS_DATA);
|
|
return read_int(fd);
|
|
} else if (argv[1] == "--service"sv) {
|
|
int fd = connect_daemon(true);
|
|
write_int(fd, LATE_START);
|
|
return read_int(fd);
|
|
} else if (argv[1] == "--boot-complete"sv) {
|
|
int fd = connect_daemon(true);
|
|
write_int(fd, BOOT_COMPLETE);
|
|
return read_int(fd);
|
|
} else if (argv[1] == "--sqlite"sv) {
|
|
int fd = connect_daemon();
|
|
write_int(fd, SQLITE_CMD);
|
|
write_string(fd, argv[2]);
|
|
send_fd(fd, STDOUT_FILENO);
|
|
return read_int(fd);
|
|
} else if (argv[1] == "--use-broadcast"sv) {
|
|
int fd = connect_daemon();
|
|
write_int(fd, BROADCAST_ACK);
|
|
return 0;
|
|
}
|
|
#if 0
|
|
/* Entry point for testing stuffs */
|
|
else if (argv[1] == "--test"sv) {
|
|
return 0;
|
|
}
|
|
#endif
|
|
usage();
|
|
}
|