2017-04-06 00:12:29 +02:00
|
|
|
/* magiskhide.c - initialize the environment for Magiskhide
|
|
|
|
*/
|
2016-12-30 19:44:24 +01:00
|
|
|
|
2017-04-06 00:12:29 +02:00
|
|
|
// TODO: Functions to modify hiding list
|
2017-04-05 00:08:53 +02:00
|
|
|
|
2017-04-06 00:12:29 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <pthread.h>
|
2017-04-07 01:50:02 +02:00
|
|
|
#include <signal.h>
|
2017-04-09 01:25:10 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <sys/wait.h>
|
2017-04-07 01:50:02 +02:00
|
|
|
#include <sys/types.h>
|
2016-12-30 19:44:24 +01:00
|
|
|
|
2017-04-06 00:12:29 +02:00
|
|
|
#include "magisk.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "magiskhide.h"
|
2017-04-09 01:25:10 +02:00
|
|
|
#include "daemon.h"
|
2017-04-20 16:45:56 +02:00
|
|
|
#include "resetprop.h"
|
2016-12-30 19:44:24 +01:00
|
|
|
|
2017-04-15 20:43:19 +02:00
|
|
|
int sv[2], hide_pid = -1;
|
2017-04-20 16:45:56 +02:00
|
|
|
struct vector *hide_list = NULL;
|
2016-12-30 19:44:24 +01:00
|
|
|
|
2017-04-20 16:45:56 +02:00
|
|
|
int hideEnabled = 0;
|
2017-04-06 00:12:29 +02:00
|
|
|
static pthread_t proc_monitor_thread;
|
2017-04-21 18:54:08 +02:00
|
|
|
pthread_mutex_t hide_lock;
|
2017-01-01 11:54:13 +01:00
|
|
|
|
2017-04-09 01:25:10 +02:00
|
|
|
void kill_proc(int pid) {
|
2017-04-07 01:50:02 +02:00
|
|
|
kill(pid, SIGTERM);
|
|
|
|
}
|
|
|
|
|
2017-04-09 01:25:10 +02:00
|
|
|
static void usage(char *arg0) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"%s [--options [arguments...] ]\n\n"
|
|
|
|
"Options:\n"
|
|
|
|
" --enable: Start the magiskhide daemon\n"
|
|
|
|
" --disable: Stop the magiskhide daemon\n"
|
|
|
|
" --add <process name>: Add <process name> to the list\n"
|
|
|
|
" --rm <process name>: Remove <process name> from the list\n"
|
|
|
|
" --ls: Print out the current hide list\n"
|
|
|
|
, arg0);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void launch_magiskhide(int client) {
|
2017-04-21 18:54:08 +02:00
|
|
|
if (hideEnabled) {
|
2017-04-21 19:40:07 +02:00
|
|
|
write_int(client, HIDE_IS_ENABLED);
|
2017-04-21 18:54:08 +02:00
|
|
|
close(client);
|
|
|
|
return;
|
|
|
|
}
|
2016-12-30 19:44:24 +01:00
|
|
|
|
2017-04-09 01:25:10 +02:00
|
|
|
LOGI("* Starting MagiskHide\n");
|
|
|
|
|
2017-04-20 16:45:56 +02:00
|
|
|
hideEnabled = 1;
|
2017-04-22 00:33:40 +02:00
|
|
|
init_resetprop();
|
|
|
|
setprop2("persist.magisk.hide", "1", 0);
|
2017-04-20 16:45:56 +02:00
|
|
|
|
2017-04-17 10:36:49 +02:00
|
|
|
hide_sensitive_props();
|
|
|
|
|
2017-04-09 01:25:10 +02:00
|
|
|
if (socketpair(AF_LOCAL, SOCK_STREAM, 0, sv) == -1)
|
|
|
|
goto error;
|
2016-12-30 19:44:24 +01:00
|
|
|
|
2017-04-21 18:54:08 +02:00
|
|
|
/*
|
|
|
|
* The setns system call do not support multithread processes
|
|
|
|
* We have to fork a new process, and communicate with sockets
|
|
|
|
*/
|
|
|
|
|
2017-04-09 01:25:10 +02:00
|
|
|
if (hide_daemon())
|
|
|
|
goto error;
|
2016-12-30 19:44:24 +01:00
|
|
|
|
2017-04-09 01:25:10 +02:00
|
|
|
close(sv[1]);
|
2016-12-30 19:44:24 +01:00
|
|
|
|
2017-04-06 00:12:29 +02:00
|
|
|
// Initialize the hide list
|
2017-04-20 16:45:56 +02:00
|
|
|
if (init_list())
|
2017-04-09 01:25:10 +02:00
|
|
|
goto error;
|
2017-04-20 16:45:56 +02:00
|
|
|
|
|
|
|
// Add SafetyNet by default
|
|
|
|
add_list(strdup("com.google.android.gms.unstable"));
|
2016-12-30 19:44:24 +01:00
|
|
|
|
2017-04-21 18:54:08 +02:00
|
|
|
// Initialize the mutex lock
|
|
|
|
pthread_mutex_init(&hide_lock, NULL);
|
2017-04-09 01:25:10 +02:00
|
|
|
|
2017-04-21 19:40:07 +02:00
|
|
|
write_int(client, HIDE_SUCCESS);
|
2017-04-14 21:23:09 +02:00
|
|
|
close(client);
|
2017-04-21 18:54:08 +02:00
|
|
|
|
|
|
|
// Get thread reference
|
|
|
|
proc_monitor_thread = pthread_self();
|
|
|
|
// Start monitoring
|
|
|
|
proc_monitor();
|
2017-04-09 01:25:10 +02:00
|
|
|
return;
|
2017-04-21 18:54:08 +02:00
|
|
|
|
2017-04-09 01:25:10 +02:00
|
|
|
error:
|
2017-04-20 16:45:56 +02:00
|
|
|
hideEnabled = 0;
|
2017-04-21 19:40:07 +02:00
|
|
|
write_int(client, HIDE_ERROR);
|
2017-04-14 21:23:09 +02:00
|
|
|
close(client);
|
2017-04-15 20:43:19 +02:00
|
|
|
if (hide_pid != -1) {
|
|
|
|
int kill = -1;
|
|
|
|
// Kill hide daemon
|
|
|
|
write(sv[0], &kill, sizeof(kill));
|
|
|
|
close(sv[0]);
|
|
|
|
waitpid(hide_pid, NULL, 0);
|
2017-04-17 10:36:49 +02:00
|
|
|
hide_pid = -1;
|
2017-04-15 20:43:19 +02:00
|
|
|
}
|
2017-04-09 01:25:10 +02:00
|
|
|
return;
|
2017-04-06 00:12:29 +02:00
|
|
|
}
|
2016-12-30 19:44:24 +01:00
|
|
|
|
2017-04-09 01:25:10 +02:00
|
|
|
void stop_magiskhide(int client) {
|
2017-04-21 18:54:08 +02:00
|
|
|
if (!hideEnabled) {
|
2017-04-21 19:40:07 +02:00
|
|
|
write_int(client, HIDE_NOT_ENABLED);
|
2017-04-21 18:54:08 +02:00
|
|
|
close(client);
|
2017-04-09 01:25:10 +02:00
|
|
|
return;
|
2017-04-21 18:54:08 +02:00
|
|
|
}
|
2017-04-09 01:25:10 +02:00
|
|
|
|
|
|
|
LOGI("* Stopping MagiskHide\n");
|
|
|
|
|
2017-04-20 16:45:56 +02:00
|
|
|
hideEnabled = 0;
|
|
|
|
setprop("persist.magisk.hide", "0");
|
2017-04-21 18:54:08 +02:00
|
|
|
pthread_kill(proc_monitor_thread, SIGUSR1);
|
|
|
|
|
2017-04-21 19:40:07 +02:00
|
|
|
write_int(client, HIDE_SUCCESS);
|
2017-04-14 21:23:09 +02:00
|
|
|
close(client);
|
2017-04-06 00:12:29 +02:00
|
|
|
}
|
2016-12-30 19:44:24 +01:00
|
|
|
|
2017-04-06 00:12:29 +02:00
|
|
|
int magiskhide_main(int argc, char *argv[]) {
|
2017-04-09 01:25:10 +02:00
|
|
|
if (argc < 2) {
|
|
|
|
usage(argv[0]);
|
|
|
|
}
|
|
|
|
client_request req;
|
|
|
|
if (strcmp(argv[1], "--enable") == 0) {
|
|
|
|
req = LAUNCH_MAGISKHIDE;
|
|
|
|
} else if (strcmp(argv[1], "--disable") == 0) {
|
|
|
|
req = STOP_MAGISKHIDE;
|
|
|
|
} else if (strcmp(argv[1], "--add") == 0 && argc > 2) {
|
|
|
|
req = ADD_HIDELIST;
|
|
|
|
} else if (strcmp(argv[1], "--rm") == 0 && argc > 2) {
|
|
|
|
req = RM_HIDELIST;
|
|
|
|
} else if (strcmp(argv[1], "--ls") == 0) {
|
|
|
|
FILE *fp = xfopen(HIDELIST, "r");
|
2017-04-14 21:23:09 +02:00
|
|
|
char buffer[512];
|
|
|
|
while (fgets(buffer, sizeof(buffer), fp)) {
|
|
|
|
printf("%s", buffer);
|
2017-04-09 01:25:10 +02:00
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int fd = connect_daemon();
|
|
|
|
write_int(fd, req);
|
|
|
|
if (req == ADD_HIDELIST || req == RM_HIDELIST) {
|
|
|
|
write_string(fd, argv[2]);
|
|
|
|
}
|
2017-04-21 19:40:07 +02:00
|
|
|
hide_ret code = read_int(fd);
|
2017-04-09 01:25:10 +02:00
|
|
|
close(fd);
|
2017-04-21 19:40:07 +02:00
|
|
|
switch (code) {
|
|
|
|
case HIDE_ERROR:
|
|
|
|
fprintf(stderr, "Error occured in daemon...\n");
|
|
|
|
break;
|
|
|
|
case HIDE_SUCCESS:
|
|
|
|
break;
|
|
|
|
case HIDE_NOT_ENABLED:
|
|
|
|
fprintf(stderr, "Magisk hide is not enabled yet\n");
|
|
|
|
break;
|
|
|
|
case HIDE_IS_ENABLED:
|
|
|
|
fprintf(stderr, "Magisk hide is already enabled\n");
|
|
|
|
break;
|
|
|
|
case HIDE_ITEM_EXIST:
|
|
|
|
fprintf(stderr, "Process [%s] already exists in hide list\n", argv[2]);
|
|
|
|
break;
|
|
|
|
case HIDE_ITEM_NOT_EXIST:
|
|
|
|
fprintf(stderr, "Process [%s] does not exist in hide list\n", argv[2]);
|
|
|
|
break;
|
2017-04-09 01:25:10 +02:00
|
|
|
}
|
|
|
|
return code;
|
2017-04-06 00:12:29 +02:00
|
|
|
}
|