2017-04-08 07:37:43 +08:00
|
|
|
/* daemon.c - Magisk Daemon
|
|
|
|
*
|
|
|
|
* Start the daemon and wait for requests
|
|
|
|
* Connect the daemon and send requests through sockets
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <string.h>
|
2017-04-16 02:42:24 +08:00
|
|
|
#include <pthread.h>
|
2017-11-15 05:15:58 +08:00
|
|
|
#include <signal.h>
|
2017-04-08 07:37:43 +08:00
|
|
|
#include <sys/un.h>
|
|
|
|
#include <sys/types.h>
|
2017-11-28 04:43:46 +08:00
|
|
|
#include <sys/mount.h>
|
2017-04-28 21:48:38 +08:00
|
|
|
#include <selinux/selinux.h>
|
2017-04-08 07:37:43 +08:00
|
|
|
|
|
|
|
#include "magisk.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "daemon.h"
|
2017-10-10 19:49:15 +08:00
|
|
|
#include "resetprop.h"
|
2018-04-15 03:18:18 +08:00
|
|
|
#include "magiskpolicy.h"
|
2017-04-16 02:42:24 +08:00
|
|
|
|
2018-06-11 02:26:18 +08:00
|
|
|
int setup_done = 0;
|
2018-04-15 03:18:18 +08:00
|
|
|
int seperate_vendor = 0;
|
2018-06-11 02:26:18 +08:00
|
|
|
int full_patch_pid = -1;
|
2017-04-08 07:37:43 +08:00
|
|
|
|
2017-04-22 00:54:08 +08:00
|
|
|
static void *request_handler(void *args) {
|
|
|
|
int client = *((int *) args);
|
|
|
|
free(args);
|
2018-02-11 17:23:36 +08:00
|
|
|
int req = read_int(client);
|
2017-05-05 16:13:26 +08:00
|
|
|
|
2017-12-18 15:46:18 +08:00
|
|
|
struct ucred credential;
|
|
|
|
get_client_cred(client, &credential);
|
2017-05-05 16:13:26 +08:00
|
|
|
|
|
|
|
switch (req) {
|
|
|
|
case LAUNCH_MAGISKHIDE:
|
|
|
|
case STOP_MAGISKHIDE:
|
|
|
|
case ADD_HIDELIST:
|
|
|
|
case RM_HIDELIST:
|
2017-09-06 02:25:40 +08:00
|
|
|
case LS_HIDELIST:
|
2017-05-05 16:13:26 +08:00
|
|
|
case POST_FS_DATA:
|
|
|
|
case LATE_START:
|
2017-12-18 15:46:18 +08:00
|
|
|
if (credential.uid != 0) {
|
2017-05-05 16:13:26 +08:00
|
|
|
write_int(client, ROOT_REQUIRED);
|
|
|
|
close(client);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-04-09 07:25:10 +08:00
|
|
|
switch (req) {
|
|
|
|
case LAUNCH_MAGISKHIDE:
|
|
|
|
launch_magiskhide(client);
|
|
|
|
break;
|
|
|
|
case STOP_MAGISKHIDE:
|
|
|
|
stop_magiskhide(client);
|
|
|
|
break;
|
|
|
|
case ADD_HIDELIST:
|
2017-04-20 22:45:56 +08:00
|
|
|
add_hide_list(client);
|
2017-04-09 07:25:10 +08:00
|
|
|
break;
|
|
|
|
case RM_HIDELIST:
|
2017-04-20 22:45:56 +08:00
|
|
|
rm_hide_list(client);
|
2017-04-09 07:25:10 +08:00
|
|
|
break;
|
2017-09-06 02:25:40 +08:00
|
|
|
case LS_HIDELIST:
|
|
|
|
ls_hide_list(client);
|
|
|
|
break;
|
2017-04-09 07:25:10 +08:00
|
|
|
case SUPERUSER:
|
2017-12-18 15:46:18 +08:00
|
|
|
su_daemon_receiver(client, &credential);
|
2017-04-15 03:23:09 +08:00
|
|
|
break;
|
|
|
|
case CHECK_VERSION:
|
2017-04-18 21:31:12 +08:00
|
|
|
write_string(client, MAGISK_VER_STR);
|
2017-04-15 03:23:09 +08:00
|
|
|
close(client);
|
|
|
|
break;
|
|
|
|
case CHECK_VERSION_CODE:
|
2017-04-18 21:31:12 +08:00
|
|
|
write_int(client, MAGISK_VER_CODE);
|
2017-04-15 03:23:09 +08:00
|
|
|
close(client);
|
2017-04-09 07:25:10 +08:00
|
|
|
break;
|
2017-04-15 19:02:07 +08:00
|
|
|
case POST_FS_DATA:
|
2017-04-16 02:42:24 +08:00
|
|
|
post_fs_data(client);
|
2017-04-15 19:02:07 +08:00
|
|
|
break;
|
2017-04-16 02:42:24 +08:00
|
|
|
case LATE_START:
|
|
|
|
late_start(client);
|
2017-04-15 19:02:07 +08:00
|
|
|
break;
|
2017-05-05 16:13:26 +08:00
|
|
|
default:
|
2017-05-08 03:11:14 +08:00
|
|
|
break;
|
2017-04-09 07:25:10 +08:00
|
|
|
}
|
2017-04-22 00:54:08 +08:00
|
|
|
return NULL;
|
2017-04-08 07:37:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-10-10 19:49:15 +08:00
|
|
|
static void *start_magisk_hide(void *args) {
|
|
|
|
launch_magiskhide(-1);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void auto_start_magiskhide() {
|
|
|
|
char *hide_prop = getprop2(MAGISKHIDE_PROP, 1);
|
|
|
|
if (hide_prop == NULL || strcmp(hide_prop, "0") != 0) {
|
|
|
|
pthread_t thread;
|
|
|
|
xpthread_create(&thread, NULL, start_magisk_hide, NULL);
|
|
|
|
pthread_detach(thread);
|
|
|
|
}
|
|
|
|
free(hide_prop);
|
|
|
|
}
|
|
|
|
|
2018-06-17 01:28:29 +08:00
|
|
|
void start_daemon() {
|
2017-11-22 16:12:08 +08:00
|
|
|
setsid();
|
2018-04-15 03:18:18 +08:00
|
|
|
setcon("u:r:"SEPOL_PROC_DOMAIN":s0");
|
2017-07-08 23:51:58 +08:00
|
|
|
int fd = xopen("/dev/null", O_RDWR | O_CLOEXEC);
|
|
|
|
xdup2(fd, STDIN_FILENO);
|
|
|
|
xdup2(fd, STDOUT_FILENO);
|
|
|
|
xdup2(fd, STDERR_FILENO);
|
|
|
|
close(fd);
|
2017-04-08 07:37:43 +08:00
|
|
|
|
2017-11-15 05:15:58 +08:00
|
|
|
// Block user signals
|
|
|
|
sigset_t block_set;
|
|
|
|
sigemptyset(&block_set);
|
|
|
|
sigaddset(&block_set, SIGUSR1);
|
|
|
|
sigaddset(&block_set, SIGUSR2);
|
|
|
|
pthread_sigmask(SIG_SETMASK, &block_set, NULL);
|
|
|
|
|
2017-10-14 21:08:05 +08:00
|
|
|
struct sockaddr_un sun;
|
|
|
|
fd = setup_socket(&sun);
|
|
|
|
|
2017-11-28 03:42:48 +08:00
|
|
|
if (xbind(fd, (struct sockaddr*) &sun, sizeof(sun)))
|
|
|
|
exit(1);
|
2017-10-14 21:08:05 +08:00
|
|
|
xlisten(fd, 10);
|
|
|
|
|
2018-02-12 02:48:15 +08:00
|
|
|
// Start the log monitor
|
|
|
|
monitor_logs();
|
|
|
|
|
2017-10-14 21:08:05 +08:00
|
|
|
LOGI("Magisk v" xstr(MAGISK_VERSION) "(" xstr(MAGISK_VER_CODE) ") daemon started\n");
|
2017-04-08 07:37:43 +08:00
|
|
|
|
|
|
|
// Change process name
|
2018-04-29 12:17:28 +08:00
|
|
|
strcpy(argv0, "magiskd");
|
2017-04-09 07:25:10 +08:00
|
|
|
|
2017-05-08 03:11:14 +08:00
|
|
|
// Loop forever to listen for requests
|
2017-04-08 07:37:43 +08:00
|
|
|
while(1) {
|
2017-04-22 00:54:08 +08:00
|
|
|
int *client = xmalloc(sizeof(int));
|
2017-07-08 23:51:58 +08:00
|
|
|
*client = xaccept4(fd, NULL, NULL, SOCK_CLOEXEC);
|
2017-04-22 00:54:08 +08:00
|
|
|
pthread_t thread;
|
|
|
|
xpthread_create(&thread, NULL, request_handler, client);
|
|
|
|
// Detach the thread, we will never join it
|
|
|
|
pthread_detach(thread);
|
2017-04-08 07:37:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Connect the daemon, and return a socketfd */
|
2018-06-17 01:28:29 +08:00
|
|
|
int connect_daemon() {
|
2017-04-08 07:37:43 +08:00
|
|
|
struct sockaddr_un sun;
|
|
|
|
int fd = setup_socket(&sun);
|
2017-11-28 03:42:48 +08:00
|
|
|
if (connect(fd, (struct sockaddr*) &sun, sizeof(sun))) {
|
2017-10-08 22:00:22 +08:00
|
|
|
// If we cannot access the daemon, we start a daemon in the child process if possible
|
|
|
|
|
|
|
|
if (getuid() != UID_ROOT || getgid() != UID_ROOT) {
|
2017-10-14 00:08:12 +08:00
|
|
|
fprintf(stderr, "No daemon is currently running!\n");
|
|
|
|
exit(1);
|
2017-10-08 22:00:22 +08:00
|
|
|
}
|
|
|
|
|
2018-04-29 12:17:28 +08:00
|
|
|
if (fork_dont_care() == 0) {
|
2017-10-08 22:00:22 +08:00
|
|
|
LOGD("client: connect fail, try launching new daemon process\n");
|
|
|
|
close(fd);
|
2018-06-17 01:28:29 +08:00
|
|
|
start_daemon();
|
2017-10-08 22:00:22 +08:00
|
|
|
}
|
|
|
|
|
2017-11-28 03:42:48 +08:00
|
|
|
while (connect(fd, (struct sockaddr*) &sun, sizeof(sun)))
|
|
|
|
usleep(10000);
|
2017-04-08 07:37:43 +08:00
|
|
|
}
|
|
|
|
return fd;
|
|
|
|
}
|