查看binder調用信息
http://aospxref.com/android-12.0.0_r3/xref/frameworks/base/core/java/android/os/BinderProxy.java
部分APP不會使用常規的framework api調用系統的一些函數獲取信息,但是如果他自己構建binder調用的信息獲取,最后都會跑到這個函數中去。
關鍵函數transact
打印調用信息關鍵函數:
public boolean transact(int code, Parcel data, Parcel reply, int flags) throws RemoteException { }
進入native層監控:
595publicnativebooleantransactNative(intcode,Parceldata,Parcelreply, 596intflags)throwsRemoteException;
對應native代碼:
http://aospxref.com/android-12.0.0_r3/xref/frameworks/base/core/jni/android_util_Binder.cpp #1553
1548 static const JNINativeMethod gBinderProxyMethods[] = { 1549 /* name, signature, funcPtr */ 1550 {"pingBinder", "()Z", (void*)android_os_BinderProxy_pingBinder}, 1551 {"isBinderAlive", "()Z", (void*)android_os_BinderProxy_isBinderAlive}, 1552 {"getInterfaceDescriptor", "()Ljava/lang/String;", (void*)android_os_BinderProxy_getInterfaceDescriptor}, 1553 這里{"transactNative", "(ILandroid/os/Parcel;Landroid/os/Parcel;I)Z", (void*)android_os_BinderProxy_transact}, 1554 {"linkToDeath", "(Landroid/os/IBinder$DeathRecipient;I)V", (void*)android_os_BinderProxy_linkToDeath}, 1555 {"unlinkToDeath", "(Landroid/os/IBinder$DeathRecipient;I)Z", (void*)android_os_BinderProxy_unlinkToDeath}, 1556 {"getNativeFinalizer", "()J", (void*)android_os_BinderProxy_getNativeFinalizer}, 1557 {"getExtension", "()Landroid/os/IBinder;", (void*)android_os_BinderProxy_getExtension}, 1558 };
上面是函數綁定,具體實現是:
1382 static jboolean android_os_BinderProxy_transact(JNIEnv* env, jobject obj, 1383 jint code, jobject dataObj, jobject replyObj, jint flags)
發現一個好東西,把java的對象轉c++中對象,也就是對象中的一些字段信息轉到c++中的class中去。
Parcel* data = parcelForJavaObject(env, dataObj);
發現這里模塊有log工具的
1405ALOGV("Javacodecallingtransacton%pinJavaobject%pwithcode%"PRId32" ", 1406 target,obj,code);可以使用ALOG進行參數打印,比如binder的操作碼code,和調用目標的class等等。 上面的日志工具文件:
http://aospxref.com/android-12.0.0_r3/xref/frameworks/ex/framesequence/jni/utils/log.h
如果編譯user版本,log關閉的,通常為了規避檢測,我們都會編譯user版本的系統。
28 /* 29 * Normally we strip ALOGV (VERBOSE messages) from release builds. 30 * You can modify this (for example with "#define LOG_NDEBUG 0" 31 * at the top of your source file) to change that behavior. 32 */ 33 #ifndef LOG_NDEBUG 34 #ifdef NDEBUG 35 #define LOG_NDEBUG 1 36 #else 37 #define LOG_NDEBUG 0 38 #endif 39 #endif
LOG_NDEBUG==1表示不打印VERBOSE日志
LOG_NDEBUG==0表示打印VERBOSE日志
在這個頭文件頂部,增加
#define LOG_NDEBUG 0
主動激活打印日志,或者再增加一個開關來控制是否打印,增加pid過濾也可以的。
審核編輯:劉清
-
JAVA
+關注
關注
19文章
2973瀏覽量
104939 -
Framework
+關注
關注
0文章
24瀏覽量
8623 -
C++語言
+關注
關注
0文章
147瀏覽量
7017
原文標題:AOSP12中查看binder調用信息
文章出處:【微信號:哆啦安全,微信公眾號:哆啦安全】歡迎添加關注!文章轉載請注明出處。
發布評論請先 登錄
相關推薦
評論