gpt4 book ai didi

hook - 安卓应用程序: java/JNI call hooking strategies

转载 作者:行者123 更新时间:2023-12-03 07:49:08 24 4
gpt4 key购买 nike

我的目标是检测 AOSP,以便动态记录来自目标应用程序的所有 java 或 JNI 调用,无论是否带有参数和返回值。我不想修改应用程序,这就是我想要修改 Android 源代码的原因。我对 AOSP 及其众多库和框架不是很有经验,所以我正在寻求建议,因为我不知道从哪里开始。此外,由于记录的潜在行数,该过程必须高效(即我不相信类似调试的方法可以工作,其中必须为每个 Hook 方法实现一个 Hook 类)

到目前为止我所理解的:

使用相对较新的 ART 系统,它将 DEX 应用程序源代码编译为一种机器可执行代码(OAT?),并且与 Dalvik 相比,它的检测更加复杂。

执行流程:编译后的应用程序的java字节码(取决于编译后的Android API)+ libs.so -> DVM -> fork 的Zygote VM -> 应用程序的执行。

如果我尝试 Hook 根(Android API + libs.so),它将需要大量的工作来 Hook 每个调用。理想的情况是所有 java 调用都经过的地方。 ART 中是否存在这样的点?

AOSP源代码很难理解,因为似乎没有文档说明全局架构中每个源文件的作用。那么在哪里挂接调用更好呢?

编辑(s)

这个主题没有得到很好的涵盖,所以我会向感兴趣的人展示信息。

我的研究发现了这个博客:http://blog.csdn.net/l173864930/article/details/45035521 。 (+谷歌翻译)谁链接到这个有趣的 Java 和 ELF(arm)调用 Hook 项目:https://github.com/boyliang/AllHookInOne

这并不完全是我想要的,但我会尝试实现一个适合我需要的用于动态分析的 AOSP 补丁。

最佳答案

我已经成功回答我的问题了。据我从源代码中可以理解,java 调用有 3 个可能的入口点:

  • ArtMethod::Invoke (art/runtime/mirror/art_method.cc)
  • 执行(art/runtime/interpreter/interpreter.cc)
  • DoCall(art/runtime/interpreter/interpreter_common.cc)

ArtMethod::Invoke 似乎用于反射并使用指向 OAT 代码部分的指针直接调用方法。 (再次强调,没有文档,它可能不准确)。

执行一般都会调用DoCall。

ART 的一些优化使得 Java 调用的研究变得困难,例如方法内联和直接偏移地址调用。

第一步是禁用这些优化:

在 device/brand-name/model/device.mk 中(在我的例子中,nexus 5 的 device/lge/hammerhead/device.mk):

向 dex2oat 添加“仅解释”选项。使用此选项,ART 仅编译引导类路径,因此应用程序不会在 OAT 中编译。

PRODUCT_PROPERTY_OVERRIDES := \
dalvik.vm.dex2oat-filter=interpret-only

第二步是在 art/compiler/dex/frontend.cc 中禁用内联:

取消注释“kSuppressMethodInlined”。

/* Default optimizer/debug setting for the compiler. */
static uint32_t kCompilerOptimizerDisableFlags = 0 | // Disable specific optimizations
(1 << kLoadStoreElimination) |
// (1 << kLoadHoisting) |
// (1 << kSuppressLoads) |
// (1 << kNullCheckElimination) |
// (1 << kClassInitCheckElimination) |
(1 << kGlobalValueNumbering) |
// (1 << kPromoteRegs) |
// (1 << kTrackLiveTemps) |
// (1 << kSafeOptimizations) |
// (1 << kBBOpt) |
// (1 << kMatch) |
// (1 << kPromoteCompilerTemps) |
// (1 << kSuppressExceptionEdges) |
(1 << kSuppressMethodInlining) |
0;

最后一步是在 art/compiler/driver/compiler_driver.cc 中禁用直接代码偏移调用:

-bool use_dex_cache = GetCompilerOptions().GetCompilePic();
+bool use_dex_cache = true;

通过这些更改,所有不同的调用都将落入 DoCall 函数中,我们最终可以在其中添加目标日志记录例程。

在 art/runtime/interpreter/interpreter_common.h 中,在包含的开头添加:

#ifdef HAVE_ANDROID_OS
#include "cutils/properties.h"
#endif

在art/runtime/interpreter/interpreter_common.cc中,在DoCall函数的开头添加:

#ifdef HAVE_ANDROID_OS 
char targetAppVar[92];
property_get("target.app.pid", targetAppVar, "0");

int targetAppPID = atoi(targetAppVar);

if(targetAppPID != 0 && targetAppPID == getpid())
LOG(INFO) << "DoCall - " << PrettyMethod(method, true);
#endif

为了定位应用程序,我使用了一个设置目标 pid 的属性。为此,我们需要 lib system/core/libcutils,并且该库仅在为真实手机编译 AOSP 时可用(不会干扰当前的 makefile)。
因此该解决方案不适用于模拟器。 ( 仅猜测,从未尝试过 编辑:已确认,“cutils/properties.h”无法添加到模拟器的构建中)。

编译并刷新打补丁的AOSP后,启动一个应用程序,ps | grep 用于查找 PID 并在 root 中设置属性:

shell@android:/ # ps | grep contacts                                       
u0_a2 4278 129 1234668 47356 ffffffff 401e8318 S com.android.contacts

shell@android:/ # setprop target.app.pid 4278

shell@android:/ # logcat
[...]
I/art ( 4278): DoCall - int android.view.View.getId()
I/art ( 4278): DoCall - void com.android.contacts.activities.PeopleActivity$ContactsUnavailableFragmentListener.onCreateNewContactAction()
I/art ( 4278): DoCall - void android.content.Intent.<init>(java.lang.String, android.net.Uri)
I/art ( 4278): DoCall - void android.app.Activity.startActivity(android.content.Intent)
I/ActivityManager( 498): START u0 {act=android.intent.action.INSERT dat=content://com.android.contacts/contacts cmp=com.android.contacts/.activities.ContactEditorActivity} from uid 10002 on display 0
V/WindowManager( 498): addAppToken: AppWindowToken{3a82282b token=Token{dc3f87a ActivityRecord{c0aaca5 u0 com.android.contacts/.activities.ContactEditorActivity t4}}} to stack=1 task=4 at 1
I/art ( 4278): DoCall - void android.app.Fragment.onPause()
I/art ( 4278): DoCall - void com.android.contacts.common.list.ContactEntryListFragment.removePendingDirectorySearchRequests()
I/art ( 4278): DoCall - void android.os.Handler.removeMessages(int)
I/art ( 4278): DoCall - void com.android.contacts.list.ProviderStatusWatcher.stop()
I/art ( 4278): DoCall - boolean com.android.contacts.list.ProviderStatusWatcher.isStarted()
I/art ( 4278): DoCall - void android.os.Handler.removeCallbacks(java.lang.Runnable)
I/art ( 4278): DoCall - android.content.ContentResolver com.android.contacts.ContactsActivity.getContentResolver()
I/art ( 4278): DoCall - void android.content.ContentResolver.unregisterContentObserver(android.database.ContentObserver)
I/art ( 4278): DoCall - void android.app.Activity.onPause()
I/art ( 4278): DoCall - void android.view.ViewGroup.drawableStateChanged()
I/art ( 4278): DoCall - void com.android.contacts.ContactsActivity.<init>()
I/art ( 4278): DoCall - void com.android.contacts.common.activity.TransactionSafeActivity.<init>()
I/art ( 4278): DoCall - void android.app.Activity.<init>()
I/art ( 4278): DoCall - void com.android.contacts.util.DialogManager.<init>(android.app.Activity)
I/art ( 4278): DoCall - void java.lang.Object.<init>()
[...]

结束时:

shell@android:/# setprop target.app.pid 0

瞧!

从用户的角度来看,过载并不明显,但 logcat 很快就会被填满。

PS:文件路径和名称与Android 5版本(Lollipop)匹配,它们可能与高级版本不同。

PS':如果有人想要打印方法的参数,我建议它查看 art/runtime/utils.cc 中的 PrettyArguments 方法,并在代码中的某个位置找到一些实际的实现。

关于hook - 安卓应用程序: java/JNI call hooking strategies,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33478647/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com