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-08-20 15:36:32 +02:00
|
|
|
#include <stdarg.h>
|
2017-04-07 00:21:20 +02:00
|
|
|
#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-06-08 16:56:21 +02:00
|
|
|
#include <sched.h>
|
2017-11-15 14:00:52 +01:00
|
|
|
#include <unistd.h>
|
2017-12-06 18:30:48 +01:00
|
|
|
#include <libgen.h>
|
2017-04-07 00:21:20 +02:00
|
|
|
#include <sys/types.h>
|
2017-04-15 12:33:16 +02:00
|
|
|
#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>
|
2017-12-06 18:30:48 +01:00
|
|
|
#include <sys/inotify.h>
|
2018-02-10 20:40:09 +01:00
|
|
|
#include <sys/sysmacros.h>
|
2017-04-06 00:12:29 +02:00
|
|
|
|
2017-09-14 15:54:56 +02:00
|
|
|
#include "logging.h"
|
2017-04-06 00:12:29 +02:00
|
|
|
#include "utils.h"
|
2017-12-22 21:58:51 +01:00
|
|
|
#include "resetprop.h"
|
2017-04-06 00:12:29 +02:00
|
|
|
|
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-12-22 21:58:51 +01:00
|
|
|
struct vector v;
|
|
|
|
vec_init(&v);
|
|
|
|
file_to_vector("/proc/mounts", &v);
|
2018-02-11 14:55:57 +01:00
|
|
|
char *line;
|
2017-12-22 21:58:51 +01:00
|
|
|
int mnt = 0;
|
|
|
|
vec_for_each(&v, line) {
|
|
|
|
if (strstr(line, " /data ")) {
|
|
|
|
if (strstr(line, "tmpfs") == NULL)
|
|
|
|
mnt = 1;
|
2017-05-01 22:55:55 +02:00
|
|
|
break;
|
2017-04-06 00:12:29 +02:00
|
|
|
}
|
|
|
|
}
|
2017-12-22 21:58:51 +01:00
|
|
|
vec_deep_destroy(&v);
|
2018-02-11 14:55:57 +01:00
|
|
|
int data = 0;
|
|
|
|
if (mnt) {
|
|
|
|
char *crypto = getprop("ro.crypto.state");
|
|
|
|
if (crypto != NULL) {
|
|
|
|
if (strcmp(crypto, "unencrypted") == 0) {
|
|
|
|
// Unencrypted, we can directly access data
|
|
|
|
data = 1;
|
|
|
|
} else {
|
|
|
|
// Encrypted, check whether vold is started
|
|
|
|
char *vold = getprop("init.svc.vold");
|
|
|
|
if (vold != NULL) {
|
|
|
|
free(vold);
|
|
|
|
data = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(crypto);
|
|
|
|
} else {
|
|
|
|
// ro.crypto.state is not set, assume it's unencrypted
|
|
|
|
data = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return data;
|
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) {
|
2018-06-16 23:16:52 +02:00
|
|
|
if (access(filename, R_OK) != 0)
|
|
|
|
return 1;
|
2017-04-06 00:12:29 +02:00
|
|
|
char *line = NULL;
|
|
|
|
size_t len = 0;
|
|
|
|
ssize_t read;
|
|
|
|
|
2017-09-05 20:25:40 +02:00
|
|
|
FILE *fp = xfopen(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 */
|
2017-08-20 15:36:32 +02:00
|
|
|
static int is_num(const char *s) {
|
2017-04-07 00:21:20 +02:00
|
|
|
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';
|
2018-01-12 22:49:03 +01:00
|
|
|
while (len < size - 1) {
|
|
|
|
int ret = read(fd, buf + len, 1);
|
|
|
|
if (ret < 0)
|
|
|
|
return -1;
|
|
|
|
if (ret == 0)
|
|
|
|
break;
|
2017-06-02 22:31:01 +02:00
|
|
|
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) {
|
2017-08-20 15:36:32 +02:00
|
|
|
if (is_num(entry->d_name))
|
2017-04-07 00:21:20 +02:00
|
|
|
func(atoi(entry->d_name));
|
|
|
|
}
|
|
|
|
}
|
2017-07-31 19:24:27 +02:00
|
|
|
|
2017-04-07 00:21:20 +02:00
|
|
|
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-10-13 18:08:12 +02:00
|
|
|
if (access(buf, R_OK) == -1 || (fd = xopen(buf, O_RDONLY)) == -1)
|
2017-04-21 17:57:21 +02:00
|
|
|
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-10-13 18:08:12 +02:00
|
|
|
if (access(buf, R_OK) == -1 || (fd = xopen(buf, O_RDONLY)) == -1)
|
2017-04-21 17:57:21 +02:00
|
|
|
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
|
|
|
|
2017-07-31 19:24:27 +02:00
|
|
|
void unlock_blocks() {
|
2017-04-15 12:33:16 +02:00
|
|
|
DIR *dir;
|
|
|
|
struct dirent *entry;
|
2017-10-08 16:00:22 +02:00
|
|
|
int fd, dev, OFF = 0;
|
2017-04-15 12:33:16 +02:00
|
|
|
|
2017-10-08 16:00:22 +02:00
|
|
|
if ((dev = xopen("/dev/block", O_RDONLY | O_CLOEXEC)) < 0)
|
2017-04-15 12:33:16 +02:00
|
|
|
return;
|
2017-10-13 18:08:12 +02:00
|
|
|
dir = xfdopendir(dev);
|
2017-04-15 12:33:16 +02:00
|
|
|
|
|
|
|
while((entry = readdir(dir))) {
|
2017-10-08 16:00:22 +02:00
|
|
|
if (entry->d_type == DT_BLK) {
|
|
|
|
if ((fd = openat(dev, entry->d_name, O_RDONLY)) < 0)
|
2017-04-15 12:33:16 +02:00
|
|
|
continue;
|
|
|
|
if (ioctl(fd, BLKROSET, &OFF) == -1)
|
2017-10-08 16:00:22 +02:00
|
|
|
PLOGE("unlock %s", entry->d_name);
|
2017-04-15 12:33:16 +02:00
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
}
|
2017-10-08 16:00:22 +02:00
|
|
|
close(dev);
|
2017-04-15 12:33:16 +02:00
|
|
|
}
|
2017-04-15 20:42:24 +02:00
|
|
|
|
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
|
2017-07-10 16:29:53 +02:00
|
|
|
*fd < 0 -> Open pipe and set *fd to the read end
|
|
|
|
*fd >= 0 -> STDOUT (or STDERR) will be redirected to *fd
|
2017-08-01 09:34:16 +02:00
|
|
|
*cb -> A callback function which runs after fork
|
2017-06-07 21:20:49 +02:00
|
|
|
*/
|
2017-08-30 20:20:06 +02:00
|
|
|
static int v_exec_command(int err, int *fd, void (*setupenv)(struct vector*), const char *argv0, va_list argv) {
|
2017-07-02 17:04:57 +02:00
|
|
|
int pipefd[2], writeEnd = -1;
|
2017-04-22 00:33:40 +02:00
|
|
|
|
|
|
|
if (fd) {
|
2017-07-10 16:29:53 +02:00
|
|
|
if (*fd < 0) {
|
|
|
|
if (xpipe2(pipefd, O_CLOEXEC) == -1)
|
2017-06-07 21:20:49 +02:00
|
|
|
return -1;
|
|
|
|
writeEnd = pipefd[1];
|
2017-07-10 16:29:53 +02:00
|
|
|
} else {
|
|
|
|
writeEnd = *fd;
|
2017-06-07 21:20:49 +02:00
|
|
|
}
|
2017-04-22 00:33:40 +02:00
|
|
|
}
|
2017-04-18 13:32:50 +02:00
|
|
|
|
2017-08-26 20:17:37 +02:00
|
|
|
// Collect va_list into vector
|
2017-08-30 20:20:06 +02:00
|
|
|
struct vector args;
|
|
|
|
vec_init(&args);
|
|
|
|
vec_push_back(&args, strdup(argv0));
|
2017-08-26 20:17:37 +02:00
|
|
|
for (void *arg = va_arg(argv, void*); arg; arg = va_arg(argv, void*))
|
2017-08-30 20:20:06 +02:00
|
|
|
vec_push_back(&args, strdup(arg));
|
|
|
|
vec_push_back(&args, NULL);
|
|
|
|
|
|
|
|
// Setup environment
|
|
|
|
char *const *envp;
|
|
|
|
struct vector env;
|
|
|
|
vec_init(&env);
|
|
|
|
if (setupenv) {
|
|
|
|
setupenv(&env);
|
|
|
|
envp = (char **) vec_entry(&env);
|
|
|
|
} else {
|
|
|
|
extern char **environ;
|
|
|
|
envp = environ;
|
|
|
|
}
|
2017-08-26 20:17:37 +02:00
|
|
|
|
2017-10-13 18:08:12 +02:00
|
|
|
int pid = xfork();
|
2017-04-18 13:32:50 +02:00
|
|
|
if (pid != 0) {
|
2017-07-15 21:54:06 +02:00
|
|
|
if (fd && *fd < 0) {
|
|
|
|
// Give the read end and close write end
|
|
|
|
*fd = pipefd[0];
|
|
|
|
close(pipefd[1]);
|
|
|
|
}
|
2017-08-30 20:20:06 +02:00
|
|
|
vec_deep_destroy(&args);
|
|
|
|
vec_deep_destroy(&env);
|
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
|
|
|
xdup2(writeEnd, STDOUT_FILENO);
|
|
|
|
if (err) xdup2(writeEnd, STDERR_FILENO);
|
2017-04-22 00:33:40 +02:00
|
|
|
}
|
|
|
|
|
2017-08-30 20:20:06 +02:00
|
|
|
execvpe(argv0, (char **) vec_entry(&args), envp);
|
2018-03-10 19:52:24 +01:00
|
|
|
PLOGE("execvpe %s", argv0);
|
2017-04-18 13:32:50 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2017-04-22 00:33:40 +02:00
|
|
|
|
2017-08-20 15:36:32 +02:00
|
|
|
int exec_command_sync(char *const argv0, ...) {
|
|
|
|
va_list argv;
|
|
|
|
va_start(argv, argv0);
|
|
|
|
int pid, status;
|
|
|
|
pid = v_exec_command(0, NULL, NULL, argv0, argv);
|
|
|
|
va_end(argv);
|
|
|
|
if (pid < 0)
|
|
|
|
return pid;
|
|
|
|
waitpid(pid, &status, 0);
|
|
|
|
return WEXITSTATUS(status);
|
|
|
|
}
|
|
|
|
|
2017-08-30 20:20:06 +02:00
|
|
|
int exec_command(int err, int *fd, void (*setupenv)(struct vector*), const char *argv0, ...) {
|
2017-08-20 15:36:32 +02:00
|
|
|
va_list argv;
|
|
|
|
va_start(argv, argv0);
|
2017-08-30 20:20:06 +02:00
|
|
|
int pid = v_exec_command(err, fd, setupenv, argv0, argv);
|
2017-08-20 15:36:32 +02:00
|
|
|
va_end(argv);
|
|
|
|
return pid;
|
|
|
|
}
|
|
|
|
|
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-07-31 19:24:27 +02:00
|
|
|
#ifdef MAGISK_DEBUG
|
2017-12-31 14:54:39 +01:00
|
|
|
LOGI("bind_mount: %s <- %s\n", to, from);
|
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;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
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
|
2018-01-10 20:06:20 +01:00
|
|
|
ret = xsetns(fd, 0);
|
2017-06-08 16:56:21 +02:00
|
|
|
close(fd);
|
|
|
|
return ret;
|
|
|
|
}
|
2017-10-08 23:05:52 +02:00
|
|
|
|
|
|
|
int fork_dont_care() {
|
2017-10-13 18:08:12 +02:00
|
|
|
int pid = xfork();
|
2017-10-08 23:05:52 +02:00
|
|
|
if (pid) {
|
|
|
|
waitpid(pid, NULL, 0);
|
|
|
|
return pid;
|
2017-10-13 18:08:12 +02:00
|
|
|
} else if ((pid = xfork())) {
|
2017-10-08 23:05:52 +02:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2017-12-06 18:30:48 +01:00
|
|
|
|
|
|
|
void wait_till_exists(const char *target) {
|
|
|
|
if (access(target, F_OK) == 0)
|
|
|
|
return;
|
|
|
|
int fd = inotify_init();
|
|
|
|
char *dir = dirname(target);
|
|
|
|
char crap[PATH_MAX];
|
|
|
|
inotify_add_watch(fd, dir, IN_CREATE);
|
|
|
|
while (1) {
|
|
|
|
struct inotify_event event;
|
|
|
|
read(fd, &event, sizeof(event));
|
|
|
|
read(fd, crap, event.len);
|
|
|
|
if (access(target, F_OK) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
}
|
2018-02-10 20:40:09 +01:00
|
|
|
|
|
|
|
void gen_rand_str(char *buf, int len) {
|
|
|
|
const char base[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_.";
|
|
|
|
int urandom;
|
|
|
|
if (access("/dev/urandom", R_OK) == 0) {
|
|
|
|
urandom = xopen("/dev/urandom", O_RDONLY | O_CLOEXEC);
|
|
|
|
} else {
|
|
|
|
mknod("/urandom", S_IFCHR | 0666, makedev(1, 9));
|
|
|
|
urandom = xopen("/urandom", O_RDONLY | O_CLOEXEC);
|
|
|
|
unlink("/urandom");
|
|
|
|
}
|
|
|
|
xxread(urandom, buf, len - 1);
|
|
|
|
close(urandom);
|
|
|
|
for (int i = 0; i < len - 1; ++i) {
|
|
|
|
buf[i] = base[buf[i] % (sizeof(base) - 1)];
|
|
|
|
}
|
|
|
|
buf[len - 1] = '\0';
|
|
|
|
}
|