Magisk/native/jni/utils/xwrap.cpp

430 lines
8.3 KiB
C++
Raw Normal View History

2017-04-06 00:12:29 +02:00
#include <sched.h>
2017-04-04 21:44:13 +02:00
#include <stdlib.h>
2017-04-06 00:12:29 +02:00
#include <unistd.h>
2017-04-07 00:21:20 +02:00
#include <errno.h>
2017-10-11 20:57:18 +02:00
#include <pthread.h>
2017-04-08 01:37:43 +02:00
#include <sys/socket.h>
2017-04-06 00:12:29 +02:00
#include <sys/types.h>
#include <sys/stat.h>
2017-04-17 10:36:49 +02:00
#include <sys/mount.h>
2017-04-28 15:48:38 +02:00
#include <sys/mman.h>
#include <sys/sendfile.h>
2017-04-04 21:44:13 +02:00
2020-03-09 09:50:30 +01:00
#include <logging.hpp>
#include <utils.hpp>
2017-04-04 21:44:13 +02:00
FILE *xfopen(const char *pathname, const char *mode) {
FILE *fp = fopen(pathname, mode);
2019-06-23 23:54:48 +02:00
if (fp == nullptr) {
2017-04-08 01:37:43 +02:00
PLOGE("fopen: %s", pathname);
2017-04-04 21:44:13 +02:00
}
return fp;
2017-04-06 00:12:29 +02:00
}
2017-05-07 21:11:14 +02:00
FILE *xfdopen(int fd, const char *mode) {
FILE *fp = fdopen(fd, mode);
2019-06-23 23:54:48 +02:00
if (fp == nullptr) {
2017-05-07 21:11:14 +02:00
PLOGE("fopen");
}
return fp;
}
2019-07-02 07:58:19 +02:00
int xopen(const char *pathname, int flags) {
2017-04-06 00:12:29 +02:00
int fd = open(pathname, flags);
if (fd < 0) {
2017-04-08 01:37:43 +02:00
PLOGE("open: %s", pathname);
2017-04-06 00:12:29 +02:00
}
return fd;
}
2019-07-02 07:58:19 +02:00
int xopen(const char *pathname, int flags, mode_t mode) {
2017-04-28 15:48:38 +02:00
int fd = open(pathname, flags, mode);
if (fd < 0) {
PLOGE("open: %s", pathname);
}
return fd;
}
2017-10-13 18:08:12 +02:00
int xopenat(int dirfd, const char *pathname, int flags) {
int fd = openat(dirfd, pathname, flags);
if (fd < 0) {
PLOGE("openat: %s", pathname);
}
return fd;
}
2017-04-06 00:12:29 +02:00
ssize_t xwrite(int fd, const void *buf, size_t count) {
int ret = write(fd, buf, count);
if (count != ret) {
2017-04-06 00:12:29 +02:00
PLOGE("write");
}
return ret;
2017-04-06 00:12:29 +02:00
}
// Read error other than EOF
ssize_t xread(int fd, void *buf, size_t count) {
int ret = read(fd, buf, count);
if (ret < 0) {
PLOGE("read");
}
return ret;
}
// Read exact same size as count
ssize_t xxread(int fd, void *buf, size_t count) {
int ret = read(fd, buf, count);
if (count != ret) {
2019-01-20 05:59:37 +01:00
PLOGE("read (%d != %d)", count, ret);
2017-04-06 00:12:29 +02:00
}
return ret;
2017-04-06 00:12:29 +02:00
}
2017-07-10 16:29:53 +02:00
int xpipe2(int pipefd[2], int flags) {
int ret = pipe2(pipefd, flags);
if (ret == -1) {
2017-07-10 16:29:53 +02:00
PLOGE("pipe2");
2017-04-06 00:12:29 +02:00
}
return ret;
2017-04-06 00:12:29 +02:00
}
int xsetns(int fd, int nstype) {
2019-06-23 23:54:48 +02:00
int ret = setns(fd, nstype);
if (ret == -1) {
2017-04-06 00:12:29 +02:00
PLOGE("setns");
}
return ret;
2017-04-06 00:12:29 +02:00
}
2018-07-13 16:14:32 +02:00
int xunshare(int flags) {
2019-06-23 23:54:48 +02:00
int ret = unshare(flags);
2018-07-13 16:14:32 +02:00
if (ret == -1) {
PLOGE("unshare");
}
return ret;
}
2017-04-07 00:21:20 +02:00
DIR *xopendir(const char *name) {
DIR *d = opendir(name);
2019-06-23 23:54:48 +02:00
if (d == nullptr) {
2017-04-08 01:37:43 +02:00
PLOGE("opendir: %s", name);
2017-04-07 00:21:20 +02:00
}
return d;
}
2017-10-13 18:08:12 +02:00
DIR *xfdopendir(int fd) {
DIR *d = fdopendir(fd);
2019-06-23 23:54:48 +02:00
if (d == nullptr) {
2017-10-13 18:08:12 +02:00
PLOGE("fdopendir");
}
return d;
}
2017-04-07 00:21:20 +02:00
struct dirent *xreaddir(DIR *dirp) {
errno = 0;
struct dirent *e = readdir(dirp);
2019-06-23 23:54:48 +02:00
if (errno && e == nullptr) {
2017-04-07 00:21:20 +02:00
PLOGE("readdir");
}
return e;
}
2017-04-08 01:37:43 +02:00
pid_t xsetsid() {
pid_t pid = setsid();
if (pid == -1) {
PLOGE("setsid");
}
return pid;
}
int xsocket(int domain, int type, int protocol) {
int fd = socket(domain, type, protocol);
if (fd == -1) {
PLOGE("socket");
}
return fd;
}
int xbind(int sockfd, const struct sockaddr *addr, socklen_t addrlen) {
int ret = bind(sockfd, addr, addrlen);
if (ret == -1) {
2017-04-08 01:37:43 +02:00
PLOGE("bind");
}
return ret;
2017-04-08 01:37:43 +02:00
}
int xlisten(int sockfd, int backlog) {
int ret = listen(sockfd, backlog);
if (ret == -1) {
2017-04-08 01:37:43 +02:00
PLOGE("listen");
}
return ret;
2017-04-08 01:37:43 +02:00
}
2018-11-26 08:57:34 +01:00
static int accept4_compat(int sockfd, struct sockaddr *addr, socklen_t *addrlen, int flags) {
int fd = accept(sockfd, addr, addrlen);
2017-04-08 01:37:43 +02:00
if (fd == -1) {
2018-11-26 08:57:34 +01:00
PLOGE("accept");
} else {
if (flags & SOCK_CLOEXEC)
fcntl(fd, F_SETFD, FD_CLOEXEC);
if (flags & SOCK_NONBLOCK) {
int i = fcntl(fd, F_GETFL);
fcntl(fd, F_SETFL, i | O_NONBLOCK);
}
2017-04-08 01:37:43 +02:00
}
2018-11-26 08:57:34 +01:00
return fd;
}
int xaccept4(int sockfd, struct sockaddr *addr, socklen_t *addrlen, int flags) {
2019-06-23 23:54:48 +02:00
int fd = accept4(sockfd, addr, addrlen, flags);
2018-11-26 08:57:34 +01:00
if (fd == -1) {
if (errno == ENOSYS)
return accept4_compat(sockfd, addr, addrlen, flags);
PLOGE("accept4");
}
2017-04-08 01:37:43 +02:00
return fd;
}
void *xmalloc(size_t size) {
void *p = malloc(size);
2019-06-23 23:54:48 +02:00
if (p == nullptr) {
2017-04-08 01:37:43 +02:00
PLOGE("malloc");
}
return p;
}
void *xcalloc(size_t nmemb, size_t size) {
void *p = calloc(nmemb, size);
2019-06-23 23:54:48 +02:00
if (p == nullptr) {
2017-04-08 01:37:43 +02:00
PLOGE("calloc");
}
return p;
}
void *xrealloc(void *ptr, size_t size) {
void *p = realloc(ptr, size);
2019-06-23 23:54:48 +02:00
if (p == nullptr) {
2017-04-08 01:37:43 +02:00
PLOGE("realloc");
}
return p;
}
ssize_t xsendmsg(int sockfd, const struct msghdr *msg, int flags) {
int sent = sendmsg(sockfd, msg, flags);
if (sent == -1) {
PLOGE("sendmsg");
}
return sent;
}
ssize_t xrecvmsg(int sockfd, struct msghdr *msg, int flags) {
int rec = recvmsg(sockfd, msg, flags);
if (rec == -1) {
PLOGE("recvmsg");
}
return rec;
}
int xpthread_create(pthread_t *thread, const pthread_attr_t *attr,
void *(*start_routine) (void *), void *arg) {
errno = pthread_create(thread, attr, start_routine, arg);
if (errno) {
PLOGE("pthread_create");
}
return errno;
}
2017-04-14 21:23:09 +02:00
int xstat(const char *pathname, struct stat *buf) {
int ret = stat(pathname, buf);
if (ret == -1) {
PLOGE("stat %s", pathname);
}
return ret;
}
2017-05-03 19:13:04 +02:00
int xlstat(const char *pathname, struct stat *buf) {
int ret = lstat(pathname, buf);
if (ret == -1) {
PLOGE("lstat %s", pathname);
}
return ret;
}
2019-03-14 11:34:22 +01:00
int xfstat(int fd, struct stat *buf) {
int ret = fstat(fd, buf);
if (ret == -1) {
PLOGE("fstat %d", fd);
}
return ret;
}
2017-04-14 21:23:09 +02:00
int xdup2(int oldfd, int newfd) {
int ret = dup2(oldfd, newfd);
if (ret == -1) {
PLOGE("dup2");
}
return ret;
}
int xdup3(int oldfd, int newfd, int flags) {
2019-06-24 10:21:33 +02:00
int ret = dup3(oldfd, newfd, flags);
if (ret == -1) {
PLOGE("dup3");
}
return ret;
}
2017-04-15 12:10:54 +02:00
ssize_t xreadlink(const char *pathname, char *buf, size_t bufsiz) {
ssize_t ret = readlink(pathname, buf, bufsiz);
if (ret == -1) {
PLOGE("readlink %s", pathname);
} else {
buf[ret] = '\0';
2017-10-13 18:08:12 +02:00
}
return ret;
}
ssize_t xreadlinkat(int dirfd, const char *pathname, char *buf, size_t bufsiz) {
2020-02-03 06:24:02 +01:00
// readlinkat() may fail on x86 platform, returning random value
// instead of number of bytes placed in buf (length of link)
#if defined(__i386__) || defined(__x86_64__)
memset(buf, 0, bufsiz);
2019-06-23 23:54:48 +02:00
ssize_t ret = readlinkat(dirfd, pathname, buf, bufsiz);
2017-10-13 18:08:12 +02:00
if (ret == -1) {
PLOGE("readlinkat %s", pathname);
2020-02-03 06:24:02 +01:00
}
return ret;
#else
ssize_t ret = readlinkat(dirfd, pathname, buf, bufsiz);
if (ret < 0) {
PLOGE("readlinkat %s", pathname);
2017-10-13 18:08:12 +02:00
} else {
buf[ret] = '\0';
2017-04-15 12:10:54 +02:00
}
return ret;
2020-02-03 06:24:02 +01:00
#endif
2017-04-15 12:10:54 +02:00
}
int xsymlink(const char *target, const char *linkpath) {
int ret = symlink(target, linkpath);
if (ret == -1) {
PLOGE("symlink %s->%s", target, linkpath);
}
return ret;
}
int xsymlinkat(const char *target, int newdirfd, const char *linkpath) {
2019-06-23 23:54:48 +02:00
int ret = symlinkat(target, newdirfd, linkpath);
if (ret == -1) {
PLOGE("symlinkat %s->%s", target, linkpath);
}
return ret;
}
int xlinkat(int olddirfd, const char *oldpath, int newdirfd, const char *newpath, int flags) {
2019-06-23 23:54:48 +02:00
int ret = linkat(olddirfd, oldpath, newdirfd, newpath, flags);
if (ret == -1) {
PLOGE("linkat %s->%s", oldpath, newpath);
}
return ret;
}
2017-04-17 10:36:49 +02:00
int xmount(const char *source, const char *target,
const char *filesystemtype, unsigned long mountflags,
const void *data) {
int ret = mount(source, target, filesystemtype, mountflags, data);
2017-04-17 10:36:49 +02:00
if (ret == -1) {
PLOGE("mount %s->%s", source, target);
}
return ret;
}
2017-05-03 19:13:04 +02:00
int xumount(const char *target) {
int ret = umount(target);
if (ret == -1) {
PLOGE("umount %s", target);
}
return ret;
}
int xumount2(const char *target, int flags) {
int ret = umount2(target, flags);
if (ret == -1) {
PLOGE("umount2 %s", target);
}
return ret;
}
2017-04-17 10:36:49 +02:00
int xrename(const char *oldpath, const char *newpath) {
int ret = rename(oldpath, newpath);
if (ret == -1) {
PLOGE("rename %s->%s", oldpath, newpath);
}
return ret;
}
int xmkdir(const char *pathname, mode_t mode) {
int ret = mkdir(pathname, mode);
2017-06-30 17:22:51 +02:00
if (ret == -1 && errno != EEXIST) {
2017-04-17 10:36:49 +02:00
PLOGE("mkdir %s %u", pathname, mode);
}
return ret;
}
int xmkdirs(const char *pathname, mode_t mode) {
int ret = mkdirs(pathname, mode);
2017-10-13 18:08:12 +02:00
if (ret == -1) {
PLOGE("mkdirs %s", pathname);
2017-10-13 18:08:12 +02:00
}
return ret;
}
int xmkdirat(int dirfd, const char *pathname, mode_t mode) {
int ret = mkdirat(dirfd, pathname, mode);
if (ret == -1 && errno != EEXIST) {
PLOGE("mkdirat %s %u", pathname, mode);
}
return ret;
}
2017-04-28 15:48:38 +02:00
void *xmmap(void *addr, size_t length, int prot, int flags,
int fd, off_t offset) {
void *ret = mmap(addr, length, prot, flags, fd, offset);
if (ret == MAP_FAILED) {
PLOGE("mmap");
}
return ret;
}
ssize_t xsendfile(int out_fd, int in_fd, off_t *offset, size_t count) {
ssize_t ret = sendfile(out_fd, in_fd, offset, count);
if (count != ret) {
PLOGE("sendfile");
}
return ret;
}
2017-10-13 18:08:12 +02:00
pid_t xfork() {
int ret = fork();
2017-04-30 19:58:52 +02:00
if (ret == -1) {
2017-10-13 18:08:12 +02:00
PLOGE("fork");
2017-04-30 19:58:52 +02:00
}
return ret;
}
2018-10-04 21:06:13 +02:00
int xpoll(struct pollfd *fds, nfds_t nfds, int timeout) {
int ret = poll(fds, nfds, timeout);
if (ret == -1) {
PLOGE("poll");
}
return ret;
}
int xinotify_init1(int flags) {
2019-06-23 23:54:48 +02:00
int ret = inotify_init1(flags);
if (ret == -1) {
PLOGE("inotify_init1");
}
return ret;
}