2017-04-06 00:12:29 +02:00
|
|
|
/* magisk.h - Top header
|
|
|
|
*/
|
|
|
|
|
2017-04-04 21:44:13 +02:00
|
|
|
#ifndef _MAGISK_H_
|
|
|
|
#define _MAGISK_H_
|
|
|
|
|
2017-09-14 15:54:56 +02:00
|
|
|
#include "logging.h"
|
2017-04-04 21:44:13 +02:00
|
|
|
|
2017-07-30 12:15:00 +02:00
|
|
|
#define MAGISK_VER_STR xstr(MAGISK_VERSION) ":MAGISK"
|
2018-02-10 20:40:09 +01:00
|
|
|
#define SOCKET_NAME "d30138f2310a9fb9c54a3e0c21f58591"
|
2017-04-08 01:37:43 +02:00
|
|
|
|
2017-04-16 17:13:53 +02:00
|
|
|
#ifndef ARG_MAX
|
|
|
|
#define ARG_MAX 4096
|
|
|
|
#endif
|
|
|
|
|
2017-05-03 19:13:04 +02:00
|
|
|
#define LOGFILE "/cache/magisk.log"
|
2017-12-15 19:02:17 +01:00
|
|
|
#define DEBUG_LOG "/data/adb/magisk_debug.log"
|
2017-05-03 19:13:04 +02:00
|
|
|
#define UNBLOCKFILE "/dev/.magisk.unblock"
|
2017-11-05 22:41:03 +01:00
|
|
|
#define PATCHDONE "/dev/.magisk.patch.done"
|
2017-05-03 19:13:04 +02:00
|
|
|
#define DISABLEFILE "/cache/.disable_magisk"
|
|
|
|
#define UNINSTALLER "/cache/magisk_uninstaller.sh"
|
2017-10-28 10:12:01 +02:00
|
|
|
#define CACHEMOUNT "/cache/magisk_mount"
|
2017-11-22 09:04:24 +01:00
|
|
|
#define MAGISKTMP "/sbin/.core"
|
2017-10-28 10:12:01 +02:00
|
|
|
#define MIRRDIR MAGISKTMP "/mirror"
|
2017-11-22 09:04:24 +01:00
|
|
|
#define BBPATH MAGISKTMP "/busybox"
|
2017-10-28 10:12:01 +02:00
|
|
|
#define MOUNTPOINT MAGISKTMP "/img"
|
2017-05-03 21:05:37 +02:00
|
|
|
#define COREDIR MOUNTPOINT "/.core"
|
|
|
|
#define HOSTSFILE COREDIR "/hosts"
|
2017-06-02 22:31:01 +02:00
|
|
|
#define HIDELIST COREDIR "/hidelist"
|
2017-12-15 19:02:17 +01:00
|
|
|
#define MAINIMG "/data/adb/magisk.img"
|
|
|
|
#define DATABIN "/data/adb/magisk"
|
|
|
|
#define MANAGERAPK DATABIN "/magisk.apk"
|
2017-11-22 09:04:24 +01:00
|
|
|
#define MAGISKRC "/init.magisk.rc"
|
2017-10-28 10:12:01 +02:00
|
|
|
|
2017-05-03 19:13:04 +02:00
|
|
|
|
2017-11-30 20:33:25 +01:00
|
|
|
// selinuxfs paths
|
2017-04-30 19:58:52 +02:00
|
|
|
#define SELINUX_PATH "/sys/fs/selinux/"
|
|
|
|
#define SELINUX_ENFORCE SELINUX_PATH "enforce"
|
|
|
|
#define SELINUX_POLICY SELINUX_PATH "policy"
|
|
|
|
#define SELINUX_LOAD SELINUX_PATH "load"
|
|
|
|
|
2017-11-30 20:33:25 +01:00
|
|
|
// split policy paths
|
|
|
|
#define PLAT_POLICY_DIR "/system/etc/selinux/"
|
|
|
|
#define NONPLAT_POLICY_DIR "/vendor/etc/selinux/"
|
|
|
|
#define SPLIT_PLAT_CIL PLAT_POLICY_DIR "plat_sepolicy.cil"
|
|
|
|
#define SPLIT_PLAT_MAPPING PLAT_POLICY_DIR "mapping/%s.cil"
|
|
|
|
#define SPLIT_PRECOMPILE NONPLAT_POLICY_DIR "precompiled_sepolicy"
|
|
|
|
#define SPLIT_NONPLAT_VER NONPLAT_POLICY_DIR "plat_sepolicy_vers.txt"
|
|
|
|
|
2017-05-26 16:05:04 +02:00
|
|
|
#define MAGISKHIDE_PROP "persist.magisk.hide"
|
|
|
|
|
2017-04-06 00:12:29 +02:00
|
|
|
extern char *argv0; /* For changing process name */
|
2017-04-04 21:44:13 +02:00
|
|
|
|
2017-11-27 21:43:46 +01:00
|
|
|
#define applet ((char *[]) { "su", "resetprop", "magiskhide", NULL })
|
|
|
|
#define init_applet ((char *[]) { "magiskpolicy", "supolicy", NULL })
|
|
|
|
|
|
|
|
extern int (*applet_main[]) (int, char *[]), (*init_applet_main[]) (int, char *[]);
|
2017-04-15 12:10:54 +02:00
|
|
|
|
2017-09-14 15:54:56 +02:00
|
|
|
int create_links(const char *bin, const char *path);
|
|
|
|
|
2017-04-05 00:08:53 +02:00
|
|
|
// Multi-call entrypoints
|
|
|
|
int magiskhide_main(int argc, char *argv[]);
|
|
|
|
int magiskpolicy_main(int argc, char *argv[]);
|
2017-04-14 21:23:09 +02:00
|
|
|
int su_client_main(int argc, char *argv[]);
|
2017-04-05 00:08:53 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
int resetprop_main(int argc, char *argv[]);
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-04-04 21:44:13 +02:00
|
|
|
#endif
|