2019-03-30 11:49:29 +01:00
|
|
|
#pragma once
|
2017-04-14 21:23:09 +02:00
|
|
|
|
2017-04-15 20:42:24 +02:00
|
|
|
#include <pthread.h>
|
2017-11-27 08:37:28 +01:00
|
|
|
#include <sys/un.h>
|
2017-12-18 08:46:18 +01:00
|
|
|
#include <sys/socket.h>
|
2019-02-16 02:45:05 +01:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2017-04-15 20:42:24 +02:00
|
|
|
|
2017-04-09 01:25:10 +02:00
|
|
|
// Commands require connecting to daemon
|
2018-02-11 10:23:36 +01:00
|
|
|
enum {
|
2017-05-05 10:13:26 +02:00
|
|
|
DO_NOTHING = 0,
|
2017-04-09 01:25:10 +02:00
|
|
|
SUPERUSER,
|
2017-04-14 21:23:09 +02:00
|
|
|
CHECK_VERSION,
|
|
|
|
CHECK_VERSION_CODE,
|
2017-04-15 13:02:07 +02:00
|
|
|
POST_FS_DATA,
|
2017-04-15 20:42:24 +02:00
|
|
|
LATE_START,
|
2018-08-09 08:52:44 +02:00
|
|
|
BOOT_COMPLETE,
|
2018-11-01 19:08:33 +01:00
|
|
|
MAGISKHIDE,
|
2018-11-16 09:20:30 +01:00
|
|
|
SQLITE_CMD,
|
2019-05-13 11:01:10 +02:00
|
|
|
BROADCAST_ACK,
|
2018-02-11 10:23:36 +01:00
|
|
|
};
|
2017-04-09 01:25:10 +02:00
|
|
|
|
2017-05-05 10:13:26 +02:00
|
|
|
// Return codes for daemon
|
2018-02-11 10:23:36 +01:00
|
|
|
enum {
|
2017-05-05 10:13:26 +02:00
|
|
|
DAEMON_ERROR = -1,
|
|
|
|
DAEMON_SUCCESS = 0,
|
|
|
|
ROOT_REQUIRED,
|
2018-11-01 19:08:33 +01:00
|
|
|
DAEMON_LAST
|
2018-02-11 10:23:36 +01:00
|
|
|
};
|
2017-05-05 10:13:26 +02:00
|
|
|
|
2017-04-09 01:25:10 +02:00
|
|
|
// daemon.c
|
|
|
|
|
2019-03-04 22:45:18 +01:00
|
|
|
int connect_daemon(bool create = false);
|
2018-11-13 08:07:02 +01:00
|
|
|
int switch_mnt_ns(int pid);
|
2017-11-27 08:37:28 +01:00
|
|
|
|
|
|
|
// socket.c
|
|
|
|
|
2018-10-12 06:50:47 +02:00
|
|
|
socklen_t setup_sockaddr(struct sockaddr_un *sun, const char *name);
|
2018-09-16 10:16:18 +02:00
|
|
|
int create_rand_socket(struct sockaddr_un *sun);
|
2018-10-04 10:59:51 +02:00
|
|
|
int socket_accept(int sockfd, int timeout);
|
2019-02-09 21:02:46 +01:00
|
|
|
void get_client_cred(int fd, struct ucred *cred);
|
2017-04-08 01:37:43 +02:00
|
|
|
int recv_fd(int sockfd);
|
|
|
|
void send_fd(int sockfd, int fd);
|
|
|
|
int read_int(int fd);
|
2018-09-16 10:16:18 +02:00
|
|
|
int read_int_be(int fd);
|
2017-04-08 01:37:43 +02:00
|
|
|
void write_int(int fd, int val);
|
2018-09-16 10:16:18 +02:00
|
|
|
void write_int_be(int fd, int val);
|
|
|
|
char *read_string(int fd);
|
|
|
|
char *read_string_be(int fd);
|
|
|
|
void write_string(int fd, const char *val);
|
|
|
|
void write_string_be(int fd, const char *val);
|
|
|
|
void write_key_value(int fd, const char *key, const char *val);
|
|
|
|
void write_key_token(int fd, const char *key, int tok);
|
2017-04-14 21:23:09 +02:00
|
|
|
|
2017-04-15 20:42:24 +02:00
|
|
|
/***************
|
|
|
|
* Boot Stages *
|
|
|
|
***************/
|
|
|
|
|
2018-10-13 03:46:09 +02:00
|
|
|
void unlock_blocks();
|
2017-04-15 20:42:24 +02:00
|
|
|
void post_fs_data(int client);
|
|
|
|
void late_start(int client);
|
2018-08-09 08:52:44 +02:00
|
|
|
void boot_complete(int client);
|
2017-04-15 13:02:07 +02:00
|
|
|
|
2019-02-16 02:45:05 +01:00
|
|
|
/*************
|
|
|
|
* Scripting *
|
|
|
|
*************/
|
|
|
|
|
2019-03-23 08:50:55 +01:00
|
|
|
void exec_script(const char *script);
|
2019-02-16 02:45:05 +01:00
|
|
|
void exec_common_script(const char *stage);
|
|
|
|
void exec_module_script(const char *stage, const std::vector<std::string> &module_list);
|
|
|
|
void migrate_img(const char *img);
|
|
|
|
void install_apk(const char *apk);
|
|
|
|
|
2017-04-15 13:02:07 +02:00
|
|
|
/**************
|
|
|
|
* MagiskHide *
|
|
|
|
**************/
|
|
|
|
|
2018-11-01 19:08:33 +01:00
|
|
|
void magiskhide_handler(int client);
|
2017-04-15 13:02:07 +02:00
|
|
|
|
|
|
|
/*************
|
|
|
|
* Superuser *
|
|
|
|
*************/
|
|
|
|
|
2018-10-04 10:59:51 +02:00
|
|
|
void su_daemon_handler(int client, struct ucred *credential);
|
2019-05-13 11:01:10 +02:00
|
|
|
void broadcast_test();
|
2017-04-15 13:02:07 +02:00
|
|
|
|
2019-03-30 11:49:29 +01:00
|
|
|
extern int SDK_INT;
|
|
|
|
extern bool RECOVERY_MODE;
|
2019-05-13 11:01:10 +02:00
|
|
|
extern bool CONNECT_BROADCAST;
|
2019-06-04 08:32:49 +02:00
|
|
|
|
|
|
|
#define APP_DATA_DIR (SDK_INT >= 24 ? "/data/user_de" : "/data/user")
|