2017-04-08 07:37:43 +08:00
|
|
|
/* daemon.h - Utility functions for daemon-client communication
|
|
|
|
*/
|
|
|
|
|
2017-04-15 03:23:09 +08:00
|
|
|
#ifndef _DAEMON_H_
|
|
|
|
#define _DAEMON_H_
|
|
|
|
|
2018-11-04 18:24:08 -05:00
|
|
|
#include <stdbool.h>
|
2017-04-16 02:42:24 +08:00
|
|
|
#include <pthread.h>
|
2017-11-27 15:37:28 +08:00
|
|
|
#include <sys/un.h>
|
2017-12-18 15:46:18 +08:00
|
|
|
#include <sys/socket.h>
|
2017-04-16 02:42:24 +08:00
|
|
|
|
2017-04-09 07:25:10 +08:00
|
|
|
// Commands require connecting to daemon
|
2018-02-11 17:23:36 +08:00
|
|
|
enum {
|
2017-05-05 16:13:26 +08:00
|
|
|
DO_NOTHING = 0,
|
2017-04-09 07:25:10 +08:00
|
|
|
SUPERUSER,
|
2017-04-15 03:23:09 +08:00
|
|
|
CHECK_VERSION,
|
|
|
|
CHECK_VERSION_CODE,
|
2017-04-15 19:02:07 +08:00
|
|
|
POST_FS_DATA,
|
2017-04-16 02:42:24 +08:00
|
|
|
LATE_START,
|
2018-08-09 14:52:44 +08:00
|
|
|
BOOT_COMPLETE,
|
2018-11-01 14:08:33 -04:00
|
|
|
MAGISKHIDE,
|
2018-07-06 07:51:17 +08:00
|
|
|
HIDE_CONNECT,
|
2018-11-16 03:20:30 -05:00
|
|
|
HANDSHAKE,
|
|
|
|
SQLITE_CMD,
|
2018-02-11 17:23:36 +08:00
|
|
|
};
|
2017-04-09 07:25:10 +08:00
|
|
|
|
2017-05-05 16:13:26 +08:00
|
|
|
// Return codes for daemon
|
2018-02-11 17:23:36 +08:00
|
|
|
enum {
|
2017-05-05 16:13:26 +08:00
|
|
|
DAEMON_ERROR = -1,
|
|
|
|
DAEMON_SUCCESS = 0,
|
|
|
|
ROOT_REQUIRED,
|
2018-11-01 14:08:33 -04:00
|
|
|
DAEMON_LAST
|
2018-02-11 17:23:36 +08:00
|
|
|
};
|
2017-05-05 16:13:26 +08:00
|
|
|
|
2017-04-09 07:25:10 +08:00
|
|
|
// daemon.c
|
|
|
|
|
2018-06-17 01:28:29 +08:00
|
|
|
int connect_daemon();
|
2018-11-13 02:07:02 -05:00
|
|
|
int switch_mnt_ns(int pid);
|
2017-11-27 15:37:28 +08:00
|
|
|
|
2018-07-02 22:11:28 +08:00
|
|
|
// log_monitor.c
|
|
|
|
|
2018-11-04 17:23:08 -05:00
|
|
|
extern bool log_daemon_started;
|
2018-10-12 00:50:47 -04:00
|
|
|
int connect_log_daemon();
|
2018-11-04 17:23:08 -05:00
|
|
|
bool start_log_daemon();
|
2018-07-02 22:11:28 +08:00
|
|
|
|
2017-11-27 15:37:28 +08:00
|
|
|
// socket.c
|
|
|
|
|
2018-10-12 00:50:47 -04:00
|
|
|
socklen_t setup_sockaddr(struct sockaddr_un *sun, const char *name);
|
2018-09-16 04:16:18 -04:00
|
|
|
int create_rand_socket(struct sockaddr_un *sun);
|
2018-10-04 04:59:51 -04:00
|
|
|
int socket_accept(int sockfd, int timeout);
|
2017-04-08 07:37:43 +08:00
|
|
|
int recv_fd(int sockfd);
|
|
|
|
void send_fd(int sockfd, int fd);
|
|
|
|
int read_int(int fd);
|
2018-09-16 04:16:18 -04:00
|
|
|
int read_int_be(int fd);
|
2017-04-08 07:37:43 +08:00
|
|
|
void write_int(int fd, int val);
|
2018-09-16 04:16:18 -04: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-15 03:23:09 +08:00
|
|
|
|
2017-04-16 02:42:24 +08:00
|
|
|
/***************
|
|
|
|
* Boot Stages *
|
|
|
|
***************/
|
|
|
|
|
2018-10-12 21:46:09 -04:00
|
|
|
void unlock_blocks();
|
2018-04-22 02:16:56 +08:00
|
|
|
void startup();
|
2017-04-16 02:42:24 +08:00
|
|
|
void post_fs_data(int client);
|
|
|
|
void late_start(int client);
|
2018-08-09 14:52:44 +08:00
|
|
|
void boot_complete(int client);
|
2017-04-15 19:02:07 +08:00
|
|
|
|
|
|
|
/**************
|
|
|
|
* MagiskHide *
|
|
|
|
**************/
|
|
|
|
|
2018-11-01 14:08:33 -04:00
|
|
|
void magiskhide_handler(int client);
|
2017-04-15 19:02:07 +08:00
|
|
|
|
|
|
|
/*************
|
|
|
|
* Superuser *
|
|
|
|
*************/
|
|
|
|
|
2018-10-04 04:59:51 -04:00
|
|
|
void su_daemon_handler(int client, struct ucred *credential);
|
2017-04-15 19:02:07 +08:00
|
|
|
|
2017-04-15 03:23:09 +08:00
|
|
|
#endif
|