基于xposed实现android注册系统服务,解决跨进程共享数据问题
昨花了点时间,参考github issues 总算实现了基于xposed的系统服务注入,本文目的是为了“解决应用之间hook后数据共享,任意app ServiceManager.getService就
可以直接调用aidl实现了进程通信”(比如aidl service实现socket,http server等,或者从某app获取数据传递给另外个app等场景,能做什么大家自己想吧,当然也可以实现非xposed版本的,需要通过直接smali方式。因为需快速实现,我就基于xposed的方案凑活用着用吧)
Xposed我就不介绍了,Xposed有2个重要接口,一个是针对应用级别hook:IXposedHookLoadPackage,另一个就是针对系统级别的:IXposedHookZygoteInit
这里将使用IXposedHookZygoteInit实现aidl添加到系统服务中,当然,通过IXposedHookLoadPackage也是可以实现的,但是因为我们注入的服务是希望像系统服务一样,开机启动,关机停止,另外IXposedHookZygoteInit本身就是定位在针对系统hook,所以还是建议使用IXposedHookZygoteInit。
直接进入正题:
1.创建 android.os.ICustomService.aidl
package android.os; // Declare any non-default types here with import statements interface ICustomService {
String sayHello();
}
2.创建CustomService实现类
public class CustomService extends ICustomService.Stub {
private Context mContext;
public CustomService(Context context) {
mContext = context;
} @Override
public String sayHello() throws RemoteException {
return "Just Hello World";
} //ActivityManagerService的systemReady在所有服务初始化完成后触发,这定义这个是为了实现自定义服务的初始化代码实现
public void systemReady() {
// Make your initialization here
}
}
3.创建ApplicationSocket,实现IXposedHookZygoteInit接口,这实现系统启动时候触发hook
public class ApplicationSocket implements IXposedHookZygoteInit{
public static String TAG = "ApplicationSocket";
@Override
public void initZygote(StartupParam startupParam) throws Throwable {
XposedBridge.hookAllMethods(ActivityThread.class, "systemMain", new SystemServiceHook());
}
}
4.创建SystemServiceHook 重写XC_MethodHook,实现注册服务,这也是最核心的类
import android.content.Context;
import android.os.Build;
import android.os.CustomService;
import android.os.ICustomService;
import android.os.ServiceManager; import de.robv.android.xposed.XC_MethodHook;
import de.robv.android.xposed.XposedBridge;
import de.robv.android.xposed.XposedHelpers; /**
* Created by bluce on 17/12/5.
*/ public class SystemServiceHook extends XC_MethodHook {
private static CustomService oInstance;
private static boolean systemHooked; @Override
protected void afterHookedMethod(MethodHookParam param) throws Throwable {
if (systemHooked) {
return;
}
final ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
Class activityManagerServiceClazz = null;
try {
activityManagerServiceClazz = XposedHelpers.findClass("com.android.server.am.ActivityManagerService", classLoader);
} catch (RuntimeException e) {
// do nothing
}
if (!systemHooked && activityManagerServiceClazz!=null) {
systemHooked = true;
//系统服务启动完毕,通知自定义服务
XposedBridge.hookAllMethods(
activityManagerServiceClazz,
"systemReady",
new XC_MethodHook() {
@Override
protected final void afterHookedMethod(final MethodHookParam param) {
oInstance.systemReady();
XposedBridge.log(">>>systemReady!!!!");
}
}
);
//注册自定义服务到系统服务中
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
XposedBridge.hookAllConstructors(activityManagerServiceClazz, new XC_MethodHook() {
@Override
protected void afterHookedMethod(MethodHookParam param) throws Throwable {
Context context = (Context) XposedHelpers.getObjectField(param.thisObject, "mContext");
registerService(classLoader,context);
}
});
}else{
XposedBridge.hookAllMethods(
activityManagerServiceClazz,
"main",
new XC_MethodHook() {
@Override
protected final void afterHookedMethod(final MethodHookParam param) {
Context context = (Context) param.getResult();
registerService(classLoader,context);
}
}
);
}
}
} private static void registerService(final ClassLoader classLoader, Context context) {
XposedBridge.log(">>>register service, Build.VERSION.SDK_INT"+Build.VERSION.SDK_INT);
oInstance = new CustomService(context);
Class<?> ServiceManager = XposedHelpers.findClass("android.os.ServiceManager",classLoader);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
//避免java.lang.SecurityException错误,从5.0开始,selinux服务名称需要加前缀"user."
XposedHelpers.callStaticMethod(
ServiceManager,
"addService",
"user.custom.service",
oInstance,
true
);
} else {
XposedHelpers.callStaticMethod(
ServiceManager,
"addService",
"custom.service",
oInstance
);
}
} //use service demo
public static ICustomService mService;
public static String someMethod(Context context) {
try {
if (mService == null) {
mService=ICustomService.Stub.asInterface(ServiceManager.getService("user.wx_custom.service"));
//mService =(ICustomService)context.getSystemService("wx_custom.service");
}
return mService.sayHello();
} catch (Exception e) {
System.out.println(e.getMessage());
e.printStackTrace();
}
return ">>> someMethod failed!!! ";
}
}
5.在当前应用activity中调用系统服务,service实现可以创建成单独的module,这样就实现不同项目直接使用,最重要的是在当前项目xposed hook代码中可以直接使用了,这也是本文的最初衷。
button = (Button) findViewById(R.id.testButton);
button.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View v){
if(true){
//testPattern();return;
//HookTest.registerReceiver(context);
String str = SystemServiceHook.someMethod(MainActivity.context);
if(str!=null){
System.out.println(">>>>:::"+str);
}
return;
}
}
} ;
基于以上,CustomService整体的代码就实现了,重启系统就变成了系统服务,可以直接使用。但是以下2点需要特别注意:
1.com.android.server.am.ActivityManagerService是framework不公开的方法和类,所以项目需要导入AndroidHiddenAPI.jar这个包
2.android5.0之前SystemContext通过call ActivityManagerService的main方法就可以直接获取,但是5.0开始是通过createSystemContext方法生产,所以只能判断下版本,然后一个通过构造取获取,一个通过main返回结果获取
基于xposed实现android注册系统服务,解决跨进程共享数据问题的更多相关文章
- 基于Ceph分布式集群实现docker跨主机共享数据卷
上篇文章介绍了如何使用docker部署Ceph分布式存储集群,本篇在此基础之上,介绍如何基于Ceph分布式存储集群实现docker跨主机共享数据卷. 1.环境准备 在原来的环境基础之上,新增一台cen ...
- ContentProvider跨进程共享数据
借用ContentResolver类访问ContentProvider中共享的数据.通过getContentResolver()方法获得该类的实例. ContentResolver中的方法:inser ...
- 基于 HTTP 请求拦截,快速解决跨域和代理 Mock
近几年,随着 Web 开发逐渐成熟,前后端分离的架构设计越来越被众多开发者认可,使得前端和后端可以专注各自的职能,降低沟通成本,提高开发效率. 在前后端分离的开发模式下,前端和后端工程师得以并行工作. ...
- Android学习--跨程序共享数据之内容提供其探究
什么是内容提供器? 跨程序共享数据之内容提供器,这是个什么功能?看到这个名称的时候最能给我们提供信息的应该是“跨程序”这个词了,是的重点就是这个词,这个内容提供器的作用主要是用于在不同的引用程序之间实 ...
- 0-Android使用Ashmem机制进行跨进程共享内存
Android使用Ashmem机制进行跨进程共享内存 来源: http://blog.csdn.net/luoshengyang/article/details/6651971 导语: 在Androi ...
- windows:跨进程读数据
外挂.木马.病毒等可能需要读取其他进程的数据,windows提供了OpenProcess.ReadProcessMemory等函数.但越是大型的软件,防护做的越好,大概率会做驱动保护,比如hook S ...
- android自动化测试解决跨进程通信问题
大概用这些吧: IPC Handler Messager Bundle service(binder) messageconnection ,thead.getXXX.getId 注 ...
- Android AIDL[Android Interface Definition Language]跨进程通信
全称与中文名IPC:Inter-Process Communication(进程间通信)Ashmem:Anonymous Shared Memory(匿名共享内存)Binder:Binder(进程间通 ...
- android开发中 解决服务器端解析MySql数据时中文显示乱码的情况
首先,还是确认自己MySql账户和密码 1.示例 账户:root 密码:123456 有三个字段 分别是_id .username(插入有中文数据).password 1)首先我们知道 ...
随机推荐
- PHP+Ajax判断是否有敏感词汇
本文讲述如何使用PHP和Ajax创建一个过滤敏感词汇的方法,判断是否有敏感词汇. 敏感词汇数组sensitive.php return array ( 0 => '111111', 1 => ...
- JConsole监控Linux上的Tomcat
JConsole监控Linux上的Tomcat 从Java 5开始引入了 JConsole,来监控 Java 应用程序性能和跟踪 Java 中的代码.jconsole是JDK自带监控工具,只需要找到 ...
- orcal - 多表查询
SQL1999语法标准 CROSS JOIN 产生笛卡尔积 SELECT * from EMP CROSS JOIN dept; NATURAL JOIN 自然连接 相同列 SELECT * from ...
- Python OS模块,和Open函数
https://www.cnblogs.com/ginvip/p/6439679.html
- Tomcat 启动时 SecureRandom 非常慢解决办法,亲测有效
1.找到jre—>lib—>security 2.找到 securerandom.source=file:/dev/random 替换成:securerandom.source= ...
- 《Java开发学习大纲文档》V7.0
<Java开发学习大纲文档>V7.0简介: 本文档是根据企业开发所需要掌握的知识点大纲进行总结汇编,是Java开发工程师必备知识体系,系统化学习针对性非常强,逻辑分析能力非常清晰;技术方面 ...
- Innodb引擎中Count(*)
select count(*)是MySQL中用于统计记录行数最常用的方法,count方法可以返回表内精确的行数. 在某些索引下是好事,但是如果表中有主键,count(*)的速度就会很慢,特别在千万记录 ...
- Linux命令:source
语法 source filename 说明 . 的同义词
- ThinkPHP实现支付宝接口功能 代码实例
我们这里用的是即时到帐的接口,具体实现的步骤如下: [title]一.下载支付宝接口包[/title]下载地址:https://doc.open.alipay.com/doc2/detail?tree ...
- Ruby on Rails 开发笔记
安装 Ruby on Rails Install Rails: A step-by-step guide 创建应用 # 创建新的应用程序 $ rails new blog $ cd blog # 启动 ...