2019-03-30 06:49:29 -04:00
|
|
|
#pragma once
|
2017-04-15 03:23:09 +08:00
|
|
|
|
2017-04-16 02:42:24 +08:00
|
|
|
#include <pthread.h>
|
2021-09-18 14:40:12 -07:00
|
|
|
#include <poll.h>
|
2019-02-15 20:45:05 -05:00
|
|
|
#include <string>
|
2021-08-11 22:57:08 -07:00
|
|
|
#include <limits>
|
2021-08-21 03:52:59 -07:00
|
|
|
#include <atomic>
|
2021-09-20 04:42:06 -07:00
|
|
|
#include <functional>
|
2017-04-16 02:42:24 +08:00
|
|
|
|
2023-11-08 01:46:02 -08:00
|
|
|
#include "socket.hpp"
|
2023-12-03 19:32:58 +08:00
|
|
|
#include "../core-rs.hpp"
|
2020-04-12 05:34:56 -07:00
|
|
|
|
2022-05-30 02:09:07 -07:00
|
|
|
#define AID_ROOT 0
|
|
|
|
#define AID_SHELL 2000
|
2022-05-18 01:55:58 -07:00
|
|
|
#define AID_USER_OFFSET 100000
|
|
|
|
|
2022-05-30 02:09:07 -07:00
|
|
|
#define to_app_id(uid) (uid % AID_USER_OFFSET)
|
|
|
|
#define to_user_id(uid) (uid / AID_USER_OFFSET)
|
|
|
|
|
2017-05-05 16:13:26 +08:00
|
|
|
// Return codes for daemon
|
2023-11-17 13:35:50 -08:00
|
|
|
enum class RespondCode : int {
|
2022-02-12 23:43:36 +08:00
|
|
|
ERROR = -1,
|
|
|
|
OK = 0,
|
2020-12-30 22:11:24 -08:00
|
|
|
ROOT_REQUIRED,
|
2022-03-01 02:58:39 -08:00
|
|
|
ACCESS_DENIED,
|
2022-02-12 23:43:36 +08:00
|
|
|
END
|
2018-02-11 17:23:36 +08:00
|
|
|
};
|
2017-05-05 16:13:26 +08:00
|
|
|
|
2023-12-06 22:17:29 +08:00
|
|
|
extern std::string native_bridge;
|
2020-05-18 05:18:49 -07:00
|
|
|
|
2022-03-01 02:13:18 -08:00
|
|
|
int connect_daemon(int req, bool create = false);
|
2023-11-08 01:46:02 -08:00
|
|
|
void unlock_blocks();
|
2017-04-16 02:42:24 +08:00
|
|
|
|
2021-09-18 14:40:12 -07:00
|
|
|
// Poll control
|
|
|
|
using poll_callback = void(*)(pollfd*);
|
|
|
|
void register_poll(const pollfd *pfd, poll_callback callback);
|
|
|
|
void unregister_poll(int fd, bool auto_close);
|
2021-10-17 04:24:25 -07:00
|
|
|
void clear_poll();
|
2021-09-18 14:40:12 -07:00
|
|
|
|
2021-09-20 04:42:06 -07:00
|
|
|
// Thread pool
|
2024-01-25 00:17:05 -08:00
|
|
|
void init_thread_pool();
|
2021-09-20 04:42:06 -07:00
|
|
|
void exec_task(std::function<void()> &&task);
|
|
|
|
|
2020-04-30 01:26:50 -07:00
|
|
|
// Daemon handlers
|
2021-10-19 23:46:38 -07:00
|
|
|
void denylist_handler(int client, const sock_cred *cred);
|
|
|
|
void su_daemon_handler(int client, const sock_cred *cred);
|
2017-04-15 19:02:07 +08:00
|
|
|
|
2023-11-08 01:46:02 -08:00
|
|
|
// Module stuffs
|
|
|
|
void disable_modules();
|
|
|
|
void remove_modules();
|
|
|
|
|
|
|
|
// Scripting
|
|
|
|
void exec_script(const char *script);
|
|
|
|
void clear_pkg(const char *pkg, int user_id);
|
|
|
|
[[noreturn]] void install_module(const char *file);
|
|
|
|
|
2021-09-12 12:40:34 -07:00
|
|
|
// Denylist
|
2023-11-08 01:46:02 -08:00
|
|
|
extern std::atomic<bool> denylist_enforced;
|
2021-09-12 12:40:34 -07:00
|
|
|
int denylist_cli(int argc, char **argv);
|
2023-11-08 01:46:02 -08:00
|
|
|
void initialize_denylist();
|
2024-01-30 02:58:56 +08:00
|
|
|
void scan_deny_apps();
|
2023-11-08 01:46:02 -08:00
|
|
|
bool is_deny_target(int uid, std::string_view process);
|
2022-08-08 22:30:03 +08:00
|
|
|
void revert_unmount(int pid = -1) noexcept;
|