Add lsplt

This commit is contained in:
Nullptr
2023-01-30 17:46:38 +08:00
parent 851c7120ec
commit b9ce45bd6e
5 changed files with 21 additions and 9 deletions

View File

@@ -16,4 +16,5 @@ android {
dependencies {
implementation("dev.rikka.ndk.thirdparty:cxx:1.2.0")
implementation("org.lsposed.lsplt:lsplt-standalone:1.1")
}

View File

@@ -26,8 +26,9 @@ LOCAL_MODULE := injector
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
FILE_LIST := $(filter %.cpp, $(call walk, $(LOCAL_PATH)/injector))
LOCAL_SRC_FILES := $(FILE_LIST:COMMON_FILE_LIST:$(LOCAL_PATH)/%=%)
LOCAL_STATIC_LIBRARIES := cxx common
LOCAL_STATIC_LIBRARIES := cxx common lsplt
LOCAL_LDLIBS := -llog
include $(BUILD_SHARED_LIBRARY)
$(call import-module,prefab/cxx)
$(call import-module,prefab/lsplt)

View File

@@ -0,0 +1,9 @@
#include <lsplt.hpp>
#include "logging.h"
extern "C"
void entry(void* handle) {
LOGD("Injector handle: %p", handle);
}

View File

@@ -46,6 +46,6 @@ fn entry() -> Result<()> {
fn main() {
if let Err(e) = entry() {
log::error!("Crashed: {}", e.backtrace());
log::error!("Crashed: {}\n{}", e, e.backtrace());
}
}

View File

@@ -56,7 +56,7 @@ pub fn start(is64: bool) -> Result<()> {
let context = Arc::clone(&context);
thread::spawn(move || {
if let Err(e) = handle_daemon_action(stream, &context) {
log::warn!("Error handling daemon action: {}", e.backtrace());
log::warn!("Error handling daemon action: {}\n{}", e, e.backtrace());
}
});
}
@@ -180,15 +180,17 @@ fn create_daemon_socket(is64: bool) -> Result<UnixListener> {
fn handle_daemon_action(mut stream: UnixStream, context: &Context) -> Result<()> {
let action = stream.read_u8()?;
match DaemonSocketAction::try_from(action) {
Ok(DaemonSocketAction::PingHeartbeat) => {
let action = DaemonSocketAction::try_from(action)?;
log::debug!("New daemon action {:?}", action);
match action {
DaemonSocketAction::PingHeartbeat => {
restore_native_bridge()?;
}
Ok(DaemonSocketAction::ReadNativeBridge) => {
DaemonSocketAction::ReadNativeBridge => {
stream.write_usize(context.native_bridge.len())?;
stream.write_all(context.native_bridge.as_bytes())?;
}
Ok(DaemonSocketAction::ReadModules) => {
DaemonSocketAction::ReadModules => {
stream.write_usize(context.modules.len())?;
for module in context.modules.iter() {
stream.write_usize(module.name.len())?;
@@ -196,7 +198,7 @@ fn handle_daemon_action(mut stream: UnixStream, context: &Context) -> Result<()>
stream.send_fd(module.memfd.as_raw_fd())?;
}
}
Ok(DaemonSocketAction::RequestCompanionSocket) => {
DaemonSocketAction::RequestCompanionSocket => {
let index = stream.read_usize()?;
let module = &context.modules[index];
log::debug!("New companion request from module {}", module.name);
@@ -211,7 +213,6 @@ fn handle_daemon_action(mut stream: UnixStream, context: &Context) -> Result<()>
}
}
}
Err(_) => bail!("Invalid action code: {action}")
}
Ok(())
}