74 lines
1.7 KiB
C
74 lines
1.7 KiB
C
/* magisk.h - Top header
|
|
*/
|
|
|
|
#ifndef _MAGISK_H_
|
|
#define _MAGISK_H_
|
|
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <pthread.h>
|
|
#include <android/log.h>
|
|
|
|
#ifndef MAGISK_VER_CODE
|
|
#define MAGISK_VER_CODE 99999
|
|
#endif
|
|
#ifndef MAGISK_VERSION
|
|
#define MAGISK_VERSION VER_DEBUG
|
|
#endif
|
|
#define MAGISK_VER_STR xstr(MAGISK_VERSION) ":MAGISK"
|
|
|
|
#define str(a) #a
|
|
#define xstr(a) str(a)
|
|
|
|
#define REQUESTOR_DAEMON_PATH "\0MAGISK"
|
|
#define REQUESTOR_DAEMON_PATH_LEN 7
|
|
|
|
#define LOG_TAG "Magisk"
|
|
|
|
#ifndef ARG_MAX
|
|
#define ARG_MAX 4096
|
|
#endif
|
|
|
|
// Global handler for PLOGE
|
|
extern __thread void (*err_handler)(void);
|
|
|
|
// Common error handlers
|
|
static inline void exit_proc() { exit(1); }
|
|
static inline void exit_thread() { pthread_exit(NULL); }
|
|
static inline void do_nothing() {}
|
|
|
|
// Dummy function to depress debug message
|
|
static inline void stub(const char *fmt, ...) {}
|
|
|
|
#ifdef DEBUG
|
|
#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)
|
|
#else
|
|
#define LOGD(...) stub(__VA_ARGS__)
|
|
#endif
|
|
#define LOGI(...) __android_log_print(ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__)
|
|
#define LOGW(...) __android_log_print(ANDROID_LOG_WARN, LOG_TAG, __VA_ARGS__)
|
|
#define LOGE(...) __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__)
|
|
|
|
#define PLOGE(fmt, args...) { LOGE(fmt " failed with %d: %s", ##args, errno, strerror(errno)); err_handler(); }
|
|
|
|
extern char *argv0; /* For changing process name */
|
|
|
|
extern char *applet[];
|
|
extern int (*applet_main[]) (int, char *[]);
|
|
|
|
// Multi-call entrypoints
|
|
int magiskhide_main(int argc, char *argv[]);
|
|
int magiskpolicy_main(int argc, char *argv[]);
|
|
int su_client_main(int argc, char *argv[]);
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
int resetprop_main(int argc, char *argv[]);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|