Magisk/jni/utils/utils.h

68 lines
2.1 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>
#include <pthread.h>
2017-04-08 01:37:43 +02:00
#include <sys/types.h>
#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-04-06 00:12:29 +02:00
int xopen(const char *pathname, int flags);
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);
int xpipe(int pipefd[2]);
int xsetns(int fd, int nstype);
2017-04-07 00:21:20 +02:00
DIR *xopendir(const char *name);
struct dirent *xreaddir(DIR *dirp);
2017-04-08 01:37:43 +02:00
pid_t xsetsid();
int xsetcon(char *context);
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 xaccept(int sockfd, struct sockaddr *addr, socklen_t *addrlen);
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,
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);
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);
int xsymlink(const char *target, const char *linkpath);
2017-04-04 21:44:13 +02:00
2017-04-06 00:12:29 +02:00
// misc.c
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();
void file_to_vector(struct vector *v, FILE *fp);
2017-04-07 00:21:20 +02:00
int isNum(const char *s);
ssize_t fdreadline(int fd, char *buf, size_t size);
void ps(void (*func)(int));
void ps_filter_proc_name(const char *filter, void (*func)(int));
2017-04-15 12:10:54 +02:00
int create_links(const char *bin, const char *path);
2017-04-15 12:33:16 +02:00
void unlock_blocks();
void unblock_boot_process();
2017-04-06 00:12:29 +02:00
#endif