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>
|
2017-04-15 20:42:24 +02:00
|
|
|
#include <pthread.h>
|
2017-11-14 22:15:58 +01:00
|
|
|
#include <signal.h>
|
2017-04-08 01:37:43 +02:00
|
|
|
#include <sys/un.h>
|
|
|
|
#include <sys/types.h>
|
2017-11-27 21:43:46 +01:00
|
|
|
#include <sys/mount.h>
|
2017-04-08 01:37:43 +02:00
|
|
|
|
|
|
|
#include "magisk.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "daemon.h"
|
2018-09-27 06:09:59 +02:00
|
|
|
#include "selinux.h"
|
2018-11-16 09:20:30 +01:00
|
|
|
#include "db.h"
|
2018-10-28 21:55:40 +01:00
|
|
|
#include "flags.h"
|
2017-04-15 20:42:24 +02:00
|
|
|
|
2018-10-13 03:46:09 +02:00
|
|
|
static void get_client_cred(int fd, struct ucred *cred) {
|
|
|
|
socklen_t ucred_length = sizeof(*cred);
|
|
|
|
if(getsockopt(fd, SOL_SOCKET, SO_PEERCRED, cred, &ucred_length))
|
|
|
|
PLOGE("getsockopt");
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:54:08 +02:00
|
|
|
static void *request_handler(void *args) {
|
|
|
|
int client = *((int *) args);
|
2018-11-04 09:38:06 +01:00
|
|
|
delete (int *) args;
|
2018-02-11 10:23:36 +01:00
|
|
|
int req = read_int(client);
|
2017-05-05 10:13:26 +02:00
|
|
|
|
2017-12-18 08:46:18 +01:00
|
|
|
struct ucred credential;
|
|
|
|
get_client_cred(client, &credential);
|
2017-05-05 10:13:26 +02:00
|
|
|
|
|
|
|
switch (req) {
|
2018-11-01 19:08:33 +01:00
|
|
|
case MAGISKHIDE:
|
2017-05-05 10:13:26 +02:00
|
|
|
case POST_FS_DATA:
|
|
|
|
case LATE_START:
|
2018-08-09 08:52:44 +02:00
|
|
|
case BOOT_COMPLETE:
|
2018-11-16 09:20:30 +01:00
|
|
|
case SQLITE_CMD:
|
2017-12-18 08:46:18 +01:00
|
|
|
if (credential.uid != 0) {
|
2017-05-05 10:13:26 +02:00
|
|
|
write_int(client, ROOT_REQUIRED);
|
|
|
|
close(client);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-04-09 01:25:10 +02:00
|
|
|
switch (req) {
|
2018-11-01 19:08:33 +01:00
|
|
|
case MAGISKHIDE:
|
|
|
|
magiskhide_handler(client);
|
2017-09-05 20:25:40 +02:00
|
|
|
break;
|
2017-04-09 01:25:10 +02:00
|
|
|
case SUPERUSER:
|
2018-10-04 10:59:51 +02:00
|
|
|
su_daemon_handler(client, &credential);
|
2017-04-14 21:23:09 +02:00
|
|
|
break;
|
|
|
|
case CHECK_VERSION:
|
2018-09-27 09:56:56 +02:00
|
|
|
write_string(client, xstr(MAGISK_VERSION) ":MAGISK");
|
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);
|
2017-04-09 01:25:10 +02:00
|
|
|
break;
|
2017-04-15 13:02:07 +02:00
|
|
|
case POST_FS_DATA:
|
2017-04-15 20:42:24 +02:00
|
|
|
post_fs_data(client);
|
2017-04-15 13:02:07 +02:00
|
|
|
break;
|
2017-04-15 20:42:24 +02:00
|
|
|
case LATE_START:
|
|
|
|
late_start(client);
|
2017-04-15 13:02:07 +02:00
|
|
|
break;
|
2018-08-09 08:52:44 +02:00
|
|
|
case BOOT_COMPLETE:
|
|
|
|
boot_complete(client);
|
|
|
|
break;
|
2018-07-06 01:51:17 +02:00
|
|
|
case HANDSHAKE:
|
2018-07-02 19:38:19 +02:00
|
|
|
/* Do NOT close the client, make it hold */
|
|
|
|
break;
|
2018-11-16 09:20:30 +01:00
|
|
|
case SQLITE_CMD:
|
|
|
|
exec_sql(client);
|
|
|
|
close(client);
|
|
|
|
break;
|
2017-05-05 10:13:26 +02:00
|
|
|
default:
|
2018-07-02 16:11:28 +02:00
|
|
|
close(client);
|
2017-05-07 21:11:14 +02:00
|
|
|
break;
|
2017-04-09 01:25:10 +02:00
|
|
|
}
|
2018-11-07 08:10:38 +01:00
|
|
|
return nullptr;
|
2017-04-08 01:37:43 +02:00
|
|
|
}
|
|
|
|
|
2018-10-12 06:50:47 +02:00
|
|
|
static void main_daemon() {
|
2018-09-27 09:11:10 +02:00
|
|
|
android_logging();
|
2017-11-22 09:12:08 +01:00
|
|
|
setsid();
|
2018-11-04 09:38:06 +01:00
|
|
|
setcon("u:r:" SEPOL_PROC_DOMAIN ":s0");
|
2017-07-08 17:51:58 +02:00
|
|
|
int fd = xopen("/dev/null", O_RDWR | O_CLOEXEC);
|
|
|
|
xdup2(fd, STDOUT_FILENO);
|
|
|
|
xdup2(fd, STDERR_FILENO);
|
|
|
|
close(fd);
|
2018-07-02 16:11:28 +02:00
|
|
|
fd = xopen("/dev/zero", O_RDWR | O_CLOEXEC);
|
|
|
|
xdup2(fd, STDIN_FILENO);
|
|
|
|
close(fd);
|
2017-04-08 01:37:43 +02:00
|
|
|
|
2017-10-14 15:08:05 +02:00
|
|
|
struct sockaddr_un sun;
|
2018-10-12 06:50:47 +02:00
|
|
|
socklen_t len = setup_sockaddr(&sun, MAIN_SOCKET);
|
2018-09-16 10:16:18 +02:00
|
|
|
fd = xsocket(AF_LOCAL, SOCK_STREAM | SOCK_CLOEXEC, 0);
|
|
|
|
if (xbind(fd, (struct sockaddr*) &sun, len))
|
2017-11-27 20:42:48 +01:00
|
|
|
exit(1);
|
2017-10-14 15:08:05 +02:00
|
|
|
xlisten(fd, 10);
|
|
|
|
LOGI("Magisk v" xstr(MAGISK_VERSION) "(" xstr(MAGISK_VER_CODE) ") daemon started\n");
|
2017-04-08 01:37:43 +02:00
|
|
|
|
|
|
|
// Change process name
|
2018-04-29 06:17:28 +02:00
|
|
|
strcpy(argv0, "magiskd");
|
2017-04-09 01:25:10 +02:00
|
|
|
|
2018-07-02 19:38:19 +02:00
|
|
|
// Block all user signals
|
|
|
|
sigset_t block_set;
|
|
|
|
sigemptyset(&block_set);
|
|
|
|
sigaddset(&block_set, SIGUSR1);
|
|
|
|
sigaddset(&block_set, SIGUSR2);
|
|
|
|
pthread_sigmask(SIG_SETMASK, &block_set, NULL);
|
|
|
|
|
|
|
|
// Ignore SIGPIPE
|
|
|
|
struct sigaction act;
|
|
|
|
memset(&act, 0, sizeof(act));
|
|
|
|
act.sa_handler = SIG_IGN;
|
|
|
|
sigaction(SIGPIPE, &act, NULL);
|
|
|
|
|
2017-05-07 21:11:14 +02:00
|
|
|
// Loop forever to listen for requests
|
2017-04-08 01:37:43 +02:00
|
|
|
while(1) {
|
2018-11-04 09:38:06 +01:00
|
|
|
int *client = new int;
|
2017-07-08 17:51:58 +02:00
|
|
|
*client = xaccept4(fd, NULL, NULL, SOCK_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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-13 08:07:02 +01:00
|
|
|
int switch_mnt_ns(int pid) {
|
|
|
|
char mnt[32];
|
|
|
|
snprintf(mnt, sizeof(mnt), "/proc/%d/ns/mnt", pid);
|
|
|
|
if(access(mnt, R_OK) == -1) return 1; // Maybe process died..
|
|
|
|
|
|
|
|
int fd, ret;
|
|
|
|
fd = xopen(mnt, O_RDONLY);
|
|
|
|
if (fd < 0) return 1;
|
|
|
|
// Switch to its namespace
|
|
|
|
ret = xsetns(fd, 0);
|
|
|
|
close(fd);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-10-12 06:50:47 +02:00
|
|
|
int connect_daemon() {
|
2017-04-08 01:37:43 +02:00
|
|
|
struct sockaddr_un sun;
|
2018-10-12 06:50:47 +02:00
|
|
|
socklen_t len = setup_sockaddr(&sun, MAIN_SOCKET);
|
|
|
|
int fd = xsocket(AF_LOCAL, SOCK_STREAM | SOCK_CLOEXEC, 0);
|
|
|
|
if (connect(fd, (struct sockaddr*) &sun, len)) {
|
2017-10-08 16:00:22 +02:00
|
|
|
if (getuid() != UID_ROOT || getgid() != UID_ROOT) {
|
2017-10-13 18:08:12 +02:00
|
|
|
fprintf(stderr, "No daemon is currently running!\n");
|
|
|
|
exit(1);
|
2017-10-08 16:00:22 +02:00
|
|
|
}
|
|
|
|
|
2018-10-12 06:50:47 +02:00
|
|
|
LOGD("client: launching new main daemon process\n");
|
2018-04-29 06:17:28 +02:00
|
|
|
if (fork_dont_care() == 0) {
|
2018-10-12 06:50:47 +02:00
|
|
|
close(fd);
|
|
|
|
main_daemon();
|
2017-10-08 16:00:22 +02:00
|
|
|
}
|
|
|
|
|
2018-10-12 06:50:47 +02:00
|
|
|
while (connect(fd, (struct sockaddr*) &sun, len))
|
2017-11-27 20:42:48 +01:00
|
|
|
usleep(10000);
|
2017-04-08 01:37:43 +02:00
|
|
|
}
|
|
|
|
return fd;
|
|
|
|
}
|