Magisk/jni/daemon/daemon.c

212 lines
4.8 KiB
C
Raw Normal View History

2017-04-08 01:37:43 +02: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>
#include <errno.h>
#include <pthread.h>
2017-04-08 01:37:43 +02:00
#include <sys/un.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/stat.h>
2017-04-15 13:02:07 +02:00
#include <sys/mount.h>
2017-04-28 15:48:38 +02:00
#include <selinux/selinux.h>
2017-04-08 01:37:43 +02:00
#include "magisk.h"
#include "utils.h"
#include "daemon.h"
#include "magiskpolicy.h"
pthread_t sepol_patch;
2017-05-01 22:55:55 +02:00
int null_fd;
2017-04-08 01:37:43 +02:00
2017-04-21 18:54:08 +02:00
static void *request_handler(void *args) {
2017-04-22 00:33:40 +02:00
// Setup the default error handler for threads
err_handler = exit_thread;
2017-04-21 18:54:08 +02:00
int client = *((int *) args);
free(args);
client_request req = read_int(client);
2017-05-05 10:13:26 +02:00
struct ucred credentials;
get_client_cred(client, &credentials);
switch (req) {
case LAUNCH_MAGISKHIDE:
case STOP_MAGISKHIDE:
case ADD_HIDELIST:
case RM_HIDELIST:
case POST_FS:
case POST_FS_DATA:
case LATE_START:
if (credentials.uid != 0) {
write_int(client, ROOT_REQUIRED);
close(client);
return NULL;
}
default:
break;
}
switch (req) {
case LAUNCH_MAGISKHIDE:
launch_magiskhide(client);
break;
case STOP_MAGISKHIDE:
stop_magiskhide(client);
break;
case ADD_HIDELIST:
2017-04-20 16:45:56 +02:00
add_hide_list(client);
break;
case RM_HIDELIST:
2017-04-20 16:45:56 +02:00
rm_hide_list(client);
break;
case SUPERUSER:
2017-04-14 21:23:09 +02:00
su_daemon_receiver(client);
break;
case CHECK_VERSION:
2017-04-18 15:31:12 +02:00
write_string(client, MAGISK_VER_STR);
2017-04-14 21:23:09 +02:00
close(client);
break;
case CHECK_VERSION_CODE:
2017-04-18 15:31:12 +02:00
write_int(client, MAGISK_VER_CODE);
2017-04-14 21:23:09 +02:00
close(client);
break;
2017-04-15 13:02:07 +02:00
case POST_FS:
post_fs(client);
2017-04-15 13:02:07 +02:00
break;
case POST_FS_DATA:
post_fs_data(client);
2017-04-15 13:02:07 +02:00
break;
case LATE_START:
late_start(client);
2017-04-15 13:02:07 +02:00
break;
2017-05-05 10:13:26 +02:00
default:
2017-05-07 21:11:14 +02:00
break;
}
2017-05-07 21:11:14 +02:00
// Just in case
close(client);
2017-04-21 18:54:08 +02:00
return NULL;
2017-04-08 01:37:43 +02:00
}
/* Setup the address and return socket fd */
static int setup_socket(struct sockaddr_un *sun) {
int fd = xsocket(AF_LOCAL, SOCK_STREAM, 0);
2017-05-07 21:11:14 +02:00
if (fcntl(fd, F_SETFD, FD_CLOEXEC))
2017-04-14 21:23:09 +02:00
PLOGE("fcntl FD_CLOEXEC");
2017-04-08 01:37:43 +02:00
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 *large_sepol_patch(void *args) {
LOGD("sepol: Starting large patch thread\n");
// Patch su to everything
sepol_allow("su", ALL, ALL, ALL);
2017-04-30 19:58:52 +02:00
dump_policydb(SELINUX_LOAD);
LOGD("sepol: Large patch done\n");
destroy_policydb();
return NULL;
}
2017-05-07 21:11:14 +02:00
void start_daemon(int client) {
2017-04-08 01:37:43 +02:00
// Launch the daemon, create new session, set proper context
2017-04-14 21:23:09 +02:00
if (getuid() != UID_ROOT || getgid() != UID_ROOT) {
fprintf(stderr, "Starting daemon requires root: %s\n", strerror(errno));
PLOGE("start daemon");
2017-04-08 01:37:43 +02:00
}
2017-05-07 21:11:14 +02:00
2017-04-08 01:37:43 +02:00
switch (fork()) {
case -1:
PLOGE("fork");
case 0:
break;
default:
return;
}
2017-05-07 21:11:14 +02:00
// First close the client, it's useless for us
close(client);
2017-04-08 01:37:43 +02:00
xsetsid();
2017-04-28 15:48:38 +02:00
setcon("u:r:su:s0");
2017-04-24 15:43:30 +02:00
umask(022);
2017-05-07 21:11:14 +02:00
null_fd = xopen("/dev/null", O_RDWR | O_CLOEXEC);
2017-05-01 22:55:55 +02:00
xdup2(null_fd, STDIN_FILENO);
xdup2(null_fd, STDOUT_FILENO);
xdup2(null_fd, STDERR_FILENO);
2017-04-08 01:37:43 +02:00
2017-04-21 18:54:08 +02:00
// Patch selinux with medium patch before we do anything
2017-04-30 19:58:52 +02:00
load_policydb(SELINUX_POLICY);
sepol_med_rules();
2017-04-30 19:58:52 +02:00
dump_policydb(SELINUX_LOAD);
2017-05-07 21:11:14 +02:00
// Continue the larger patch in another thread, we will join later
pthread_create(&sepol_patch, NULL, large_sepol_patch, NULL);
2017-04-08 01:37:43 +02:00
struct sockaddr_un sun;
int fd = setup_socket(&sun);
2017-05-07 21:11:14 +02:00
2017-04-08 01:37:43 +02:00
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
2017-04-14 21:23:09 +02:00
// It should stay intact under any circumstances
err_handler = do_nothing;
// Start log monitor
monitor_logs();
2017-04-08 01:37:43 +02:00
2017-04-20 16:45:56 +02:00
LOGI("Magisk v" xstr(MAGISK_VERSION) " daemon started\n");
2017-04-15 12:33:16 +02:00
// Unlock all blocks for rw
unlock_blocks();
2017-04-15 13:02:07 +02:00
// Setup links under /sbin
2017-04-17 10:36:49 +02:00
xmount(NULL, "/", NULL, MS_REMOUNT, NULL);
2017-04-15 13:02:07 +02:00
create_links(NULL, "/sbin");
2017-05-07 21:11:14 +02:00
xchmod("/sbin", 0755);
xmkdir("/magisk", 0755);
xchmod("/magisk", 0755);
2017-04-17 10:36:49 +02:00
xmount(NULL, "/", NULL, MS_REMOUNT | MS_RDONLY, NULL);
2017-04-15 13:02:07 +02:00
2017-05-07 21:11:14 +02:00
// Loop forever to listen for requests
2017-04-08 01:37:43 +02:00
while(1) {
2017-04-21 18:54:08 +02:00
int *client = xmalloc(sizeof(int));
*client = xaccept(fd, NULL, NULL);
2017-05-07 21:11:14 +02:00
// Just in case, set to close on exec
fcntl(*client, F_SETFD, FD_CLOEXEC);
2017-04-21 18:54:08 +02: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 01:37:43 +02:00
}
}
/* Connect the daemon, and return a socketfd */
int connect_daemon() {
struct sockaddr_un sun;
int fd = setup_socket(&sun);
2017-04-17 10:36:49 +02:00
// LOGD("client: trying to connect socket\n");
2017-04-08 01:37:43 +02:00
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
*/
2017-04-17 10:36:49 +02:00
LOGD("client: connect fail, try launching new daemon process\n");
2017-05-07 21:11:14 +02:00
start_daemon(fd);
2017-04-08 01:37:43 +02:00
do {
// Wait for 10ms
2017-04-17 10:36:49 +02:00
usleep(10);
2017-04-08 01:37:43 +02:00
} while (connect(fd, (struct sockaddr*) &sun, sizeof(sun)));
}
return fd;
}