Magisk/native/jni/su/su.hpp

73 lines
1.4 KiB
C++
Raw Normal View History

#pragma once
2017-04-14 21:21:31 +02:00
#include <sys/types.h>
2017-07-07 19:12:47 +02:00
#include <sys/stat.h>
#include <memory>
2020-03-09 09:50:30 +01:00
#include <db.hpp>
#include <utils.hpp>
#define DEFAULT_SHELL "/system/bin/sh"
2018-10-04 10:59:51 +02:00
// Constants for atty
#define ATTY_IN (1 << 0)
#define ATTY_OUT (1 << 1)
#define ATTY_ERR (1 << 2)
2018-10-04 10:59:51 +02:00
2018-11-04 09:38:06 +01:00
class su_info {
public:
/* Unique key */
2019-11-07 23:41:59 +01:00
const int uid;
/* These should be guarded with internal lock */
2019-03-06 14:16:12 +01:00
db_settings cfg;
db_strings str;
su_access access;
2018-10-04 07:49:52 +02:00
struct stat mgr_st;
/* This should be guarded with global cache lock */
long timestamp;
2018-11-04 09:38:06 +01:00
su_info(unsigned uid = 0);
2018-11-04 09:38:06 +01:00
~su_info();
2019-09-26 07:49:50 +02:00
mutex_guard lock();
bool is_fresh();
void refresh();
2018-11-04 09:38:06 +01:00
private:
pthread_mutex_t _lock; /* Internal lock */
};
2018-11-04 09:38:06 +01:00
struct su_req_base {
2019-11-07 23:41:59 +01:00
int uid = UID_ROOT;
2019-07-07 21:20:19 +02:00
bool login = false;
bool keepenv = false;
bool mount_master = false;
2018-11-04 09:38:06 +01:00
} __attribute__((packed));
struct su_request : public su_req_base {
2019-07-07 21:20:19 +02:00
const char *shell = DEFAULT_SHELL;
const char *command = "";
su_request(bool dyn = false) : dyn(dyn) {}
~su_request() {
if (dyn) {
free(const_cast<char*>(shell));
free(const_cast<char*>(command));
}
}
private:
bool dyn;
2018-11-04 09:38:06 +01:00
} __attribute__((packed));
struct su_context {
std::shared_ptr<su_info> info;
2019-04-30 03:26:43 +02:00
su_request req;
2019-11-07 23:41:59 +01:00
int pid;
};
void app_log(const su_context &ctx);
void app_notify(const su_context &ctx);
Introduce component agnostic communication Usually, the communication between native and the app is done via sending intents to either broadcast or activity. These communication channels are for launching root requests dialogs, sending root request notifications (the toast you see when an app gained root access), and root request logging. Sending intents by am (activity manager) usually requires specifying the component name in the format of <pkg>/<class name>. This means parts of Magisk Manager cannot be randomized or else the native daemon is unable to know where to send data to the app. On modern Android (not sure which API is it introduced), it is possible to send broadcasts to a package, not a specific component. Which component will receive the intent depends on the intent filter declared in AndroidManifest.xml. Since we already have a mechanism in native code to keep track of the package name of Magisk Manager, this makes it perfect to pass intents to Magisk Manager that have components being randomly obfuscated (stub APKs). There are a few caveats though. Although this broadcasting method works perfectly fine on AOSP and most systems, there are OEMs out there shipping ROMs blocking broadcasts unexpectedly. In order to make sure Magisk works in all kinds of scenarios, we run actual tests every boot to determine which communication method should be used. We have 3 methods in total, ordered in preference: 1. Broadcasting to a package 2. Broadcasting to a specific component 3. Starting a specific activity component Method 3 will always work on any device, but the downside is anytime a communication happens, Magisk Manager will steal foreground focus regardless of whether UI is drawn. Method 1 is the only way to support obfuscated stub APKs. The communication test will test method 1 and 2, and if Magisk Manager is able to receive the messages, it will then update the daemon configuration to use whichever is preferable. If none of the broadcasts can be delivered, then the fallback method 3 will be used.
2019-10-21 19:59:04 +02:00
void app_socket(const char *socket, const std::shared_ptr<su_info> &info);
void socket_send_request(int fd, const std::shared_ptr<su_info> &info);