Magisk/jni/utils/misc.c

498 lines
11 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
*/
2017-06-08 16:56:21 +02:00
#define _GNU_SOURCE
2017-04-06 00:12:29 +02:00
#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-30 19:58:52 +02:00
#include <errno.h>
2017-06-08 16:56:21 +02:00
#include <sched.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-22 00:33:40 +02:00
#include <sys/wait.h>
2017-05-03 19:13:04 +02:00
#include <sys/stat.h>
#include <selinux/selinux.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-05-01 22:55:55 +02:00
int ret = 0;
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 ")) {
2017-05-01 22:55:55 +02:00
if (strstr(buffer, "tmpfs") == NULL)
ret = 1;
break;
2017-04-06 00:12:29 +02:00
}
}
2017-05-01 22:55:55 +02:00
fclose(fp);
return ret;
2017-04-06 00:12:29 +02:00
}
/* 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-06-02 22:31:01 +02:00
FILE *fp = fopen(filename, "r");
2017-04-20 16:45:56 +02:00
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-06-02 22:31:01 +02:00
ssize_t len = 0;
2017-04-07 00:21:20 +02:00
buf[0] = '\0';
2017-06-02 22:31:01 +02:00
while (read(fd, buf + len, 1) >= 0 && len < size - 1) {
if (buf[len] == '\0' || buf[len++] == '\n') {
buf[len] = '\0';
2017-04-07 00:21:20 +02:00
break;
}
}
2017-04-18 13:32:50 +02:00
buf[size - 1] = '\0';
2017-06-02 22:31:01 +02:00
return len;
2017-04-07 00:21:20 +02:00
}
/* Call func for each process */
void ps(void (*func)(int)) {
DIR *dir;
struct dirent *entry;
2017-04-22 00:33:40 +02:00
if (!(dir = xopendir("/proc")))
return;
2017-04-07 00:21:20 +02:00
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
}
2017-05-03 20:58:37 +02:00
if (strcmp(buf, ps_filter_pattern) == 0) {
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))) {
2017-06-07 05:32:35 +02:00
if (entry->d_type == DT_BLK &&
strstr(entry->d_name, "ram") == NULL &&
strstr(entry->d_name, "loop") == NULL &&
strstr(entry->d_name, "dm-0") == NULL) {
2017-04-15 12:33:16 +02:00
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);
}
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
2017-06-07 21:20:49 +02:00
/*
fd == NULL -> Ignore output
*fd == 0 -> Open pipe and set *fd to the read end
*fd != 0 -> STDOUT (or STDERR) will be redirected to *fd
*/
int run_command(int err, int *fd, const char *path, char *const argv[]) {
int pipefd[2], writeEnd = 0;
2017-04-22 00:33:40 +02:00
if (fd) {
2017-06-07 21:20:49 +02:00
if (*fd == 0) {
if (pipe(pipefd) == -1)
return -1;
writeEnd = pipefd[1];
// Give the read end of the pipe
*fd = pipefd[0];
}
2017-04-22 00:33:40 +02:00
}
2017-04-18 13:32:50 +02:00
int pid = fork();
if (pid != 0) {
2017-06-07 21:20:49 +02:00
if (writeEnd) close(writeEnd);
2017-04-18 13:32:50 +02:00
return pid;
}
2017-04-22 00:33:40 +02:00
if (fd) {
2017-06-07 21:20:49 +02:00
if (writeEnd == 0) writeEnd = *fd;
xdup2(writeEnd, STDOUT_FILENO);
if (err) xdup2(writeEnd, STDERR_FILENO);
2017-04-22 00:33:40 +02:00
}
2017-04-18 13:32:50 +02:00
execv(path, argv);
PLOGE("execv");
return -1;
}
2017-04-22 00:33:40 +02:00
2017-04-30 19:58:52 +02:00
int mkdir_p(const char *pathname, mode_t mode) {
char *path = strdup(pathname), *p;
errno = 0;
for (p = path + 1; *p; ++p) {
if (*p == '/') {
*p = '\0';
if (mkdir(path, mode) == -1) {
if (errno != EEXIST)
return -1;
}
*p = '/';
2017-04-22 00:33:40 +02:00
}
}
2017-04-30 19:58:52 +02:00
if (mkdir(path, mode) == -1) {
if (errno != EEXIST)
return -1;
}
free(path);
return 0;
}
2017-04-22 00:33:40 +02:00
2017-04-30 19:58:52 +02:00
int bind_mount(const char *from, const char *to) {
int ret = xmount(from, to, NULL, MS_BIND, NULL);
2017-06-11 10:51:44 +02:00
#ifdef DEBUG
2017-04-30 19:58:52 +02:00
LOGD("bind_mount: %s -> %s\n", from, to);
2017-06-11 10:51:44 +02:00
#else
2017-05-03 20:39:53 +02:00
LOGI("bind_mount: %s\n", to);
2017-06-11 10:51:44 +02:00
#endif
2017-04-30 19:58:52 +02:00
return ret;
}
int open_new(const char *filename) {
return xopen(filename, O_WRONLY | O_CREAT | O_TRUNC, 0644);
2017-04-22 00:33:40 +02:00
}
2017-05-03 19:13:04 +02:00
// file/link -> file/link only!!
int cp_afc(const char *source, const char *target) {
struct stat buf;
xlstat(source, &buf);
unlink(target);
char *con;
if (S_ISREG(buf.st_mode)) {
int sfd, tfd;
sfd = xopen(source, O_RDONLY);
tfd = xopen(target, O_WRONLY | O_CREAT | O_TRUNC);
xsendfile(tfd, sfd, NULL, buf.st_size);
fchmod(tfd, buf.st_mode & 0777);
fchown(tfd, buf.st_uid, buf.st_gid);
fgetfilecon(sfd, &con);
fsetfilecon(tfd, con);
free(con);
close(sfd);
close(tfd);
} else if (S_ISLNK(buf.st_mode)) {
char buffer[PATH_MAX];
xreadlink(source, buffer, sizeof(buffer));
xsymlink(buffer, target);
lgetfilecon(source, &con);
lsetfilecon(target, con);
free(con);
} else {
return 1;
}
return 0;
}
int clone_dir(const char *source, const char *target) {
DIR *dir;
struct dirent *entry;
2017-05-04 22:16:00 +02:00
char *s_path, *t_path;
2017-05-03 19:13:04 +02:00
if (!(dir = xopendir(source)))
return 1;
s_path = xmalloc(PATH_MAX);
t_path = xmalloc(PATH_MAX);
2017-05-04 22:16:00 +02:00
mkdir_p(target, 0755);
clone_attr(source, target);
2017-05-03 19:13:04 +02:00
while ((entry = xreaddir(dir))) {
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0)
continue;
snprintf(s_path, PATH_MAX, "%s/%s", source, entry->d_name);
snprintf(t_path, PATH_MAX, "%s/%s", target, entry->d_name);
switch (entry->d_type) {
case DT_DIR:
clone_dir(s_path, t_path);
break;
case DT_REG:
case DT_LNK:
cp_afc(s_path, t_path);
break;
}
}
free(s_path);
free(t_path);
closedir(dir);
return 0;
}
int rm_rf(const char *target) {
2017-06-02 23:52:49 +02:00
if (access(target, F_OK) == -1)
return 0;
2017-05-03 19:13:04 +02:00
struct stat buf;
xlstat(target, &buf);
char *next;
if (S_ISDIR(buf.st_mode)) {
DIR *dir;
struct dirent *entry;
if (!(dir = xopendir(target)))
return 1;
next = xmalloc(PATH_MAX);
while ((entry = xreaddir(dir))) {
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0)
continue;
snprintf(next, PATH_MAX, "%s/%s", target, entry->d_name);
switch (entry->d_type) {
case DT_DIR:
rm_rf(next);
break;
case DT_REG:
case DT_LNK:
unlink(next);
break;
}
}
free(next);
closedir(dir);
rmdir(target);
} else if (S_ISREG(buf.st_mode) || S_ISLNK(buf.st_mode)) {
unlink(target);
} else {
return 1;
}
return 0;
}
2017-05-04 22:16:00 +02:00
void clone_attr(const char *source, const char *target) {
struct stat buf;
xstat(source, &buf);
chmod(target, buf.st_mode & 0777);
chown(target, buf.st_uid, buf.st_gid);
char *con;
lgetfilecon(source, &con);
lsetfilecon(target, con);
free(con);
}
2017-05-05 10:13:26 +02:00
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-06-02 21:58:26 +02:00
int create_img(const char *img, int size) {
unlink(img);
LOGI("Create %s with size %dM\n", img, size);
// Create a temp file with the file contexts
char file_contexts[] = "/magisk(/.*)? u:object_r:system_file:s0\n";
int fd = xopen("/dev/file_contexts_image", O_WRONLY | O_CREAT | O_TRUNC, 0644);
xwrite(fd, file_contexts, sizeof(file_contexts));
close(fd);
2017-06-11 14:20:24 +02:00
char buffer[PATH_MAX];
snprintf(buffer, sizeof(buffer),
"make_ext4fs -l %dM -a /magisk -S /dev/file_contexts_image %s; e2fsck -yf %s;", size, img, img);
char *const command[] = { "sh", "-c", buffer, NULL };
int pid, status;
pid = run_command(0, NULL, "/system/bin/sh", command);
if (pid == -1)
return 1;
waitpid(pid, &status, 0);
2017-06-02 21:58:26 +02:00
unlink("/dev/file_contexts_image");
2017-06-11 14:20:24 +02:00
return WEXITSTATUS(status);
2017-06-02 21:58:26 +02:00
}
int get_img_size(const char *img, int *used, int *total) {
if (access(img, R_OK) == -1)
return 1;
char buffer[PATH_MAX];
2017-06-11 10:51:44 +02:00
snprintf(buffer, sizeof(buffer), "e2fsck -yf %s", img);
2017-06-02 21:58:26 +02:00
char *const command[] = { "sh", "-c", buffer, NULL };
2017-06-11 14:20:24 +02:00
int pid, fd = 0, status = 1;
2017-06-11 10:51:44 +02:00
pid = run_command(1, &fd, "/system/bin/sh", command);
2017-06-02 21:58:26 +02:00
if (pid == -1)
return 1;
2017-06-11 10:51:44 +02:00
while (fdgets(buffer, sizeof(buffer), fd)) {
2017-06-11 14:20:24 +02:00
LOGD("magisk_img: %s", buffer);
2017-06-11 10:51:44 +02:00
if (strstr(buffer, img)) {
char *tok;
tok = strtok(buffer, ",");
while(tok != NULL) {
if (strstr(tok, "blocks")) {
2017-06-11 14:20:24 +02:00
status = 0;
2017-06-11 10:51:44 +02:00
break;
}
tok = strtok(NULL, ",");
}
2017-06-11 14:20:24 +02:00
if (status) continue;
2017-06-11 10:51:44 +02:00
sscanf(tok, "%d/%d", used, total);
*used = *used / 256 + 1;
*total /= 256;
2017-06-02 21:58:26 +02:00
break;
2017-06-11 10:51:44 +02:00
}
2017-06-02 21:58:26 +02:00
}
2017-06-11 10:51:44 +02:00
close(fd);
2017-06-11 14:20:24 +02:00
waitpid(pid, &status, 0);
return WEXITSTATUS(status);
2017-06-02 21:58:26 +02:00
}
int resize_img(const char *img, int size) {
LOGI("Resize %s to %dM\n", img, size);
char buffer[PATH_MAX];
2017-06-11 14:20:24 +02:00
snprintf(buffer, sizeof(buffer), "resize2fs %s %dM; e2fsck -yf %s;", img, size, img);
char *const command[] = { "sh", "-c", buffer, NULL };
int pid, status, fd = 0;
pid = run_command(1, &fd, "/system/bin/sh", command);
if (pid == -1)
return 1;
while (fdgets(buffer, sizeof(buffer), fd))
LOGD("magisk_img: %s", buffer);
close(fd);
waitpid(pid, &status, 0);
return WEXITSTATUS(status);
2017-06-02 21:58:26 +02:00
}
2017-06-08 16:56:21 +02: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 = setns(fd, 0);
close(fd);
return ret;
}