Magisk/native/jni/include/utils.h

154 lines
5.6 KiB
C
Raw Normal View History

2017-04-07 00:21:20 +02:00
/* util.h - Header for all utility functions
*/
2017-04-04 21:44:13 +02:00
#ifndef _UTILS_H_
#define _UTILS_H_
#include <stdio.h>
2017-04-07 00:21:20 +02:00
#include <dirent.h>
2017-11-23 16:55:33 +01:00
#include <pthread.h>
2017-04-08 01:37:43 +02:00
#include <sys/socket.h>
2017-04-14 21:23:09 +02:00
#include <sys/stat.h>
2017-04-04 21:44:13 +02:00
2017-04-08 01:37:43 +02:00
#include "vector.h"
2017-04-04 21:44:13 +02:00
2017-04-14 21:23:09 +02:00
#define UID_SHELL (get_shell_uid())
#define UID_ROOT 0
#define UID_SYSTEM (get_system_uid())
#define UID_RADIO (get_radio_uid())
2017-04-04 21:44:13 +02:00
// xwrap.c
FILE *xfopen(const char *pathname, const char *mode);
2017-05-07 21:11:14 +02:00
FILE *xfdopen(int fd, const char *mode);
2017-04-28 15:48:38 +02:00
#define GET_MACRO(_1, _2, _3, NAME, ...) NAME
#define xopen(...) GET_MACRO(__VA_ARGS__, xopen3, xopen2)(__VA_ARGS__)
int xopen2(const char *pathname, int flags);
int xopen3(const char *pathname, int flags, mode_t mode);
2017-10-13 18:08:12 +02:00
int xopenat(int dirfd, const char *pathname, int flags);
2017-04-06 00:12:29 +02:00
ssize_t xwrite(int fd, const void *buf, size_t count);
ssize_t xread(int fd, void *buf, size_t count);
ssize_t xxread(int fd, void *buf, size_t count);
2017-07-10 16:29:53 +02:00
int xpipe2(int pipefd[2], int flags);
2017-04-06 00:12:29 +02:00
int xsetns(int fd, int nstype);
2017-04-07 00:21:20 +02:00
DIR *xopendir(const char *name);
2017-10-13 18:08:12 +02:00
DIR *xfdopendir(int fd);
2017-04-07 00:21:20 +02:00
struct dirent *xreaddir(DIR *dirp);
2017-04-08 01:37:43 +02:00
pid_t xsetsid();
int xsocket(int domain, int type, int protocol);
int xbind(int sockfd, const struct sockaddr *addr, socklen_t addrlen);
int xconnect(int sockfd, const struct sockaddr *addr, socklen_t addrlen);
int xlisten(int sockfd, int backlog);
int xaccept4(int sockfd, struct sockaddr *addr, socklen_t *addrlen, int flags);
2017-04-08 01:37:43 +02:00
void *xmalloc(size_t size);
void *xcalloc(size_t nmemb, size_t size);
void *xrealloc(void *ptr, size_t size);
ssize_t xsendmsg(int sockfd, const struct msghdr *msg, int flags);
ssize_t xrecvmsg(int sockfd, struct msghdr *msg, int flags);
int xpthread_create(pthread_t *thread, const pthread_attr_t *attr,
2017-04-17 10:36:49 +02:00
void *(*start_routine) (void *), void *arg);
int xsocketpair(int domain, int type, int protocol, int sv[2]);
2017-04-14 21:23:09 +02:00
int xstat(const char *pathname, struct stat *buf);
2017-05-03 19:13:04 +02:00
int xlstat(const char *pathname, struct stat *buf);
2017-04-14 21:23:09 +02:00
int xdup2(int oldfd, int newfd);
2017-04-15 12:10:54 +02:00
ssize_t xreadlink(const char *pathname, char *buf, size_t bufsiz);
2017-10-13 18:08:12 +02:00
ssize_t xreadlinkat(int dirfd, const char *pathname, char *buf, size_t bufsiz);
2017-04-15 12:10:54 +02:00
int xsymlink(const char *target, const char *linkpath);
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);
2017-05-03 19:13:04 +02:00
int xumount(const char *target);
int xumount2(const char *target, int flags);
2017-04-17 10:36:49 +02:00
int xrename(const char *oldpath, const char *newpath);
int xmkdir(const char *pathname, mode_t mode);
int xmkdirs(const char *pathname, mode_t mode);
2017-10-13 18:08:12 +02:00
int xmkdirat(int dirfd, const char *pathname, mode_t mode);
2017-04-28 15:48:38 +02:00
void *xmmap(void *addr, size_t length, int prot, int flags,
int fd, off_t offset);
ssize_t xsendfile(int out_fd, int in_fd, off_t *offset, size_t count);
2017-10-13 18:08:12 +02:00
pid_t xfork();
2017-04-04 21:44:13 +02:00
2017-04-06 00:12:29 +02:00
// misc.c
2017-12-06 18:30:48 +01:00
#define quit_signals ((int []) { SIGALRM, SIGABRT, SIGHUP, SIGPIPE, SIGQUIT, SIGTERM, SIGINT, 0 })
2017-10-11 20:57:18 +02:00
2017-04-14 21:23:09 +02:00
unsigned get_shell_uid();
unsigned get_system_uid();
unsigned get_radio_uid();
2017-04-06 00:12:29 +02:00
int check_data();
2017-04-20 16:45:56 +02:00
int file_to_vector(const char* filename, struct vector *v);
int vector_to_file(const char* filename, struct vector *v);
2017-04-18 13:32:50 +02:00
ssize_t fdgets(char *buf, size_t size, int fd);
2017-04-07 00:21:20 +02:00
void ps(void (*func)(int));
void ps_filter_proc_name(const char *filter, void (*func)(int));
2017-04-15 12:33:16 +02:00
void unlock_blocks();
2017-04-17 10:36:49 +02:00
void setup_sighandlers(void (*handler)(int));
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
int exec_command_sync(char *const argv0, ...);
2017-04-30 19:58:52 +02:00
int bind_mount(const char *from, const char *to);
2017-05-05 10:13:26 +02:00
void get_client_cred(int fd, struct ucred *cred);
2017-06-24 16:37:45 +02:00
int switch_mnt_ns(int pid);
int fork_dont_care();
2017-11-27 08:37:28 +01:00
void wait_till_exists(const char *target);
void gen_rand_str(char *buf, int len);
2017-06-24 16:37:45 +02:00
2017-10-11 20:57:18 +02:00
// file.c
2018-01-29 15:16:02 +01:00
#define align(p, a) (((p) + (a) - 1) / (a) * (a))
#define align_off(p, a) (align(p, a) - (p))
2017-10-11 20:57:18 +02:00
extern char **excl_list;
struct file_attr {
struct stat st;
char con[128];
};
2017-10-14 15:10:22 +02:00
int fd_getpath(int fd, char *path, size_t size);
int mkdirs(const char *pathname, mode_t mode);
void in_order_walk(int dirfd, void (*callback)(int, struct dirent*));
2017-10-11 20:57:18 +02:00
void rm_rf(const char *path);
void frm_rf(int dirfd);
void mv_f(const char *source, const char *destination);
void mv_dir(int src, int dest);
void cp_afc(const char *source, const char *destination);
2018-02-01 20:22:38 +01:00
void link_dir(int src, int dest);
2017-10-11 20:57:18 +02:00
void clone_dir(int src, int dest);
int getattr(const char *path, struct file_attr *a);
int getattrat(int dirfd, const char *pathname, struct file_attr *a);
int fgetattr(int fd, struct file_attr *a);
int setattr(const char *path, struct file_attr *a);
int setattrat(int dirfd, const char *pathname, struct file_attr *a);
int fsetattr(int fd, struct file_attr *a);
void fclone_attr(const int sourcefd, const int targetfd);
void clone_attr(const char *source, const char *target);
2018-06-03 08:43:03 +02:00
void restorecon();
2017-12-06 05:51:16 +01:00
int mmap_ro(const char *filename, void **buf, size_t *size);
int mmap_rw(const char *filename, void **buf, size_t *size);
void fd_full_read(int fd, void **buf, size_t *size);
2017-12-06 18:30:48 +01:00
void full_read(const char *filename, void **buf, size_t *size);
void full_read_at(int dirfd, const char *filename, void **buf, size_t *size);
2017-12-06 18:30:48 +01:00
void stream_full_read(int fd, void **buf, size_t *size);
2017-11-09 18:51:41 +01:00
void write_zero(int fd, size_t size);
2017-10-11 20:57:18 +02:00
2017-06-24 16:37:45 +02:00
// img.c
2017-08-10 11:26:37 +02:00
#define round_size(a) ((((a) / 32) + 2) * 32)
#define SOURCE_TMP "/dev/.img_src"
#define TARGET_TMP "/dev/.img_tgt"
2017-08-10 11:26:37 +02:00
2017-06-02 21:58:26 +02:00
int create_img(const char *img, int size);
int resize_img(const char *img, int size, int enforce);
2017-06-24 16:37:45 +02:00
char *mount_image(const char *img, const char *target);
int umount_image(const char *target, const char *device);
2017-08-10 11:26:37 +02:00
int merge_img(const char *source, const char *target);
int trim_img(const char *img, const char *mount, char *loop);
2017-04-06 00:12:29 +02:00
2017-12-06 18:30:48 +01:00
// pattern.c
void patch_init_rc(void **buf, size_t *size);
int patch_verity(void **buf, uint32_t *size, int patch);
void patch_encryption(void **buf, uint32_t *size);
2017-12-06 18:30:48 +01:00
#endif