Magisk/jni/utils/misc.c

238 lines
4.8 KiB
C
Raw Normal View History

2017-04-06 00:12:29 +02:00
/* misc.c - Store all functions that are unable to be catagorized clearly
*/
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
2017-04-07 00:21:20 +02:00
#include <dirent.h>
#include <unistd.h>
#include <fcntl.h>
2017-04-14 21:23:09 +02:00
#include <pwd.h>
2017-04-17 10:36:49 +02:00
#include <signal.h>
2017-04-07 00:21:20 +02:00
#include <sys/types.h>
2017-04-15 12:33:16 +02:00
#include <sys/ioctl.h>
#include <sys/mount.h>
2017-04-06 00:12:29 +02:00
2017-04-08 01:37:43 +02:00
#include "magisk.h"
2017-04-06 00:12:29 +02:00
#include "utils.h"
2017-04-17 10:36:49 +02:00
int quit_signals[] = { SIGALRM, SIGABRT, SIGHUP, SIGPIPE, SIGQUIT, SIGTERM, SIGINT, 0 };
2017-04-14 21:23:09 +02:00
unsigned get_shell_uid() {
struct passwd* ppwd = getpwnam("shell");
if (NULL == ppwd)
return 2000;
return ppwd->pw_uid;
}
unsigned get_system_uid() {
struct passwd* ppwd = getpwnam("system");
if (NULL == ppwd)
return 1000;
return ppwd->pw_uid;
}
unsigned get_radio_uid() {
struct passwd* ppwd = getpwnam("radio");
if (NULL == ppwd)
return 1001;
return ppwd->pw_uid;
}
2017-04-06 00:12:29 +02:00
int check_data() {
2017-04-14 21:23:09 +02:00
char buffer[4096];
2017-04-06 00:12:29 +02:00
FILE *fp = xfopen("/proc/mounts", "r");
2017-04-14 21:23:09 +02:00
while (fgets(buffer, sizeof(buffer), fp)) {
if (strstr(buffer, " /data ")) {
if (strstr(buffer, "tmpfs"))
2017-04-06 00:12:29 +02:00
return 0;
else
return 1;
}
}
return 0;
}
/* All the string should be freed manually!! */
2017-04-20 16:45:56 +02:00
int file_to_vector(const char* filename, struct vector *v) {
2017-04-06 00:12:29 +02:00
char *line = NULL;
size_t len = 0;
ssize_t read;
2017-04-20 16:45:56 +02:00
FILE *fp = xfopen(filename, "r");
if (fp == NULL)
return 1;
2017-04-06 00:12:29 +02:00
while ((read = getline(&line, &len, fp)) != -1) {
// Remove end newline
if (line[read - 1] == '\n')
line[read - 1] = '\0';
vec_push_back(v, line);
line = NULL;
}
2017-04-20 16:45:56 +02:00
fclose(fp);
return 0;
}
int vector_to_file(const char *filename, struct vector *v) {
FILE *fp = xfopen(filename, "w");
if (fp == NULL)
return 1;
char *line;
vec_for_each(v, line) {
fprintf(fp, "%s\n", line);
}
fclose(fp);
return 0;
2017-04-06 00:12:29 +02:00
}
2017-04-07 00:21:20 +02:00
/* Check if the string only contains digits */
int isNum(const char *s) {
int len = strlen(s);
for (int i = 0; i < len; ++i)
if (s[i] < '0' || s[i] > '9')
return 0;
return 1;
}
/* Read a whole line from file descriptor */
2017-04-18 13:32:50 +02:00
ssize_t fdgets(char *buf, const size_t size, int fd) {
2017-04-07 00:21:20 +02:00
ssize_t read = 0;
buf[0] = '\0';
2017-04-18 13:32:50 +02:00
while (xread(fd, buf + read, 1) && read < size - 1) {
if (buf[read] == '\0' || buf[read++] == '\n') {
2017-04-07 00:21:20 +02:00
buf[read] = '\0';
break;
}
}
2017-04-18 13:32:50 +02:00
buf[size - 1] = '\0';
2017-04-07 00:21:20 +02:00
return read;
}
/* Call func for each process */
void ps(void (*func)(int)) {
DIR *dir;
struct dirent *entry;
dir = xopendir("/proc");
while ((entry = xreaddir(dir))) {
if (entry->d_type == DT_DIR) {
if (isNum(entry->d_name))
func(atoi(entry->d_name));
}
}
closedir(dir);
}
// Internal usage
static void (*ps_filter_cb)(int);
static const char *ps_filter_pattern;
static void proc_name_filter(int pid) {
char buf[64];
2017-04-21 17:57:21 +02:00
int fd;
2017-04-07 00:21:20 +02:00
snprintf(buf, sizeof(buf), "/proc/%d/cmdline", pid);
2017-04-21 17:57:21 +02:00
if ((fd = open(buf, O_RDONLY)) == -1)
return;
2017-04-18 13:32:50 +02:00
if (fdgets(buf, sizeof(buf), fd) == 0) {
2017-04-07 00:21:20 +02:00
snprintf(buf, sizeof(buf), "/proc/%d/comm", pid);
close(fd);
2017-04-21 17:57:21 +02:00
if ((fd = open(buf, O_RDONLY)) == -1)
return;
2017-04-18 13:32:50 +02:00
fdgets(buf, sizeof(buf), fd);
2017-04-07 00:21:20 +02:00
}
if (strstr(buf, ps_filter_pattern)) {
2017-04-07 01:50:02 +02:00
// printf("%d: %s\n", pid, buf);
2017-04-07 00:21:20 +02:00
ps_filter_cb(pid);
}
close(fd);
}
/* Call func with process name filtered with pattern */
void ps_filter_proc_name(const char *pattern, void (*func)(int)) {
ps_filter_cb = func;
ps_filter_pattern = ((pattern == NULL) ? "" : pattern);
ps(proc_name_filter);
}
2017-04-15 12:10:54 +02:00
int create_links(const char *bin, const char *path) {
char self[PATH_MAX], linkpath[PATH_MAX];
if (bin == NULL) {
2017-04-15 12:33:16 +02:00
xreadlink("/proc/self/exe", self, sizeof(self));
2017-04-15 12:10:54 +02:00
bin = self;
}
int ret = 0;
for (int i = 0; applet[i]; ++i) {
2017-04-15 12:33:16 +02:00
snprintf(linkpath, sizeof(linkpath), "%s/%s", path, applet[i]);
2017-04-15 12:10:54 +02:00
unlink(linkpath);
ret |= symlink(bin, linkpath);
}
return ret;
}
2017-04-15 12:33:16 +02:00
#define DEV_BLOCK "/dev/block"
void unlock_blocks() {
char path[PATH_MAX];
DIR *dir;
struct dirent *entry;
int fd, OFF = 0;
if (!(dir = xopendir(DEV_BLOCK)))
return;
while((entry = readdir(dir))) {
if (entry->d_type == DT_BLK && strstr(entry->d_name, "mmc") != NULL) {
snprintf(path, sizeof(path), "%s/%s", DEV_BLOCK, entry->d_name);
if ((fd = xopen(path, O_RDONLY)) < 0)
continue;
if (ioctl(fd, BLKROSET, &OFF) == -1)
2017-04-17 10:36:49 +02:00
PLOGE("unlock %s", path);
2017-04-15 12:33:16 +02:00
close(fd);
}
}
closedir(dir);
}
void unblock_boot_process() {
int fd = open("/dev/.magisk.unblock", O_RDONLY | O_CREAT);
close(fd);
}
2017-04-17 10:36:49 +02:00
void setup_sighandlers(void (*handler)(int)) {
struct sigaction act;
memset(&act, 0, sizeof(act));
act.sa_handler = handler;
for (int i = 0; quit_signals[i]; ++i) {
sigaction(quit_signals[i], &act, NULL);
}
}
2017-04-18 13:32:50 +02:00
int run_command(int *fd, const char *path, char *const argv[]) {
int sv[2];
if (socketpair(AF_LOCAL, SOCK_STREAM, 0, sv) == -1)
return -1;
// We use sv[0], give them sv[1] for communication
*fd = sv[1];
int pid = fork();
if (pid != 0) {
close(sv[0]);
return pid;
}
close(sv[1]);
dup2(sv[0], STDIN_FILENO);
dup2(sv[0], STDOUT_FILENO);
dup2(sv[0], STDERR_FILENO);
execv(path, argv);
PLOGE("execv");
return -1;
}