/* daemon.c - Magisk Daemon * * Start the daemon and wait for requests * Connect the daemon and send requests through sockets */ #include #include #include #include #include #include #include #include #include #include #include "magisk.h" #include "utils.h" #include "daemon.h" static void request_handler(int client) { client_request req = read_int(client); char *s; int pid, status, code; switch (req) { case LAUNCH_MAGISKHIDE: launch_magiskhide(client); break; case STOP_MAGISKHIDE: stop_magiskhide(client); break; case ADD_HIDELIST: // TODO: Add hidelist break; case RM_HIDELIST: // TODO: Remove hidelist break; case SUPERUSER: su_daemon_receiver(client); break; case CHECK_VERSION: write_string(client, VERSION_STR); close(client); break; case CHECK_VERSION_CODE: write_int(client, VERSION_CODE); close(client); break; case POST_FS: // TODO: post-fs break; case POST_FS_DATA: // TODO: post-fs-data break; case LATE_START_SERVICE: // TODO: late_start service break; case TEST: s = read_string(client); LOGI("%s\n", s); free(s); write_int(client, 0); close(client); break; } } /* Setup the address and return socket fd */ static int setup_socket(struct sockaddr_un *sun) { int fd = xsocket(AF_LOCAL, SOCK_STREAM, 0); if (fcntl(fd, F_SETFD, FD_CLOEXEC)) { PLOGE("fcntl FD_CLOEXEC"); } memset(sun, 0, sizeof(*sun)); sun->sun_family = AF_LOCAL; memcpy(sun->sun_path, REQUESTOR_DAEMON_PATH, REQUESTOR_DAEMON_PATH_LEN); return fd; } static void do_nothing() {} void start_daemon() { // Launch the daemon, create new session, set proper context if (getuid() != UID_ROOT || getgid() != UID_ROOT) { fprintf(stderr, "Starting daemon requires root: %s\n", strerror(errno)); PLOGE("start daemon"); } switch (fork()) { case -1: PLOGE("fork"); case 0: break; default: return; } xsetsid(); xsetcon("u:r:su:s0"); struct sockaddr_un sun; int fd = setup_socket(&sun); xbind(fd, (struct sockaddr*) &sun, sizeof(sun)); xlisten(fd, 10); // Change process name strcpy(argv0, "magisk_daemon"); // The root daemon should not do anything if an error occurs // It should stay intact under any circumstances err_handler = do_nothing; // Start log monitor monitor_logs(); // Unlock all blocks for rw unlock_blocks(); // Setup links under /sbin mount(NULL, "/", NULL, MS_REMOUNT, NULL); create_links(NULL, "/sbin"); mount(NULL, "/", NULL, MS_REMOUNT | MS_RDONLY, NULL); // Loop forever to listen to requests while(1) { request_handler(xaccept(fd, NULL, NULL)); } } /* Connect the daemon, and return a socketfd */ int connect_daemon() { struct sockaddr_un sun; int fd = setup_socket(&sun); if (connect(fd, (struct sockaddr*) &sun, sizeof(sun))) { /* If we cannot access the daemon, we start the daemon * since there is no clear entry point when the daemon should be started */ start_daemon(); do { // Wait for 10ms usleep(10000); } while (connect(fd, (struct sockaddr*) &sun, sizeof(sun))); } return fd; }