查找已被调配的方法

Find methods that have been swizzled

如果我正在使用 lldb 调试 Mach-O 二进制文件,我可以检查内存中的哪些数据结构以确定是否有任何方法被混合?我可以遵循任何步骤吗?

另外,有没有办法以编程方式确定是否有任何方法被调换?

既然你提到了lldb,你可以设置符号断点:

b method_exchangeImplementation
b method_setImplementation
b class_replaceMethod

当您遇到断点时:
method_exchangeImplementations(Method _Nonnull m1, Method _Nonnull m2)
您可以像这样检查 m1 m2 args 选择器名称:

po (SEL)method_getName($arg1)
po (SEL)method_getName($arg2)

对于method_setImplementation(Method _Nonnull m, IMP _Nonnull imp)

po (SEL)method_getName($arg1)

对于class_replaceMethod(Class cls, SEL name, IMP imp, const char *types)

po $arg1
po (SEL)method_getName($arg2)

那些 Method 可能会通过之前调用产生:

class_getInstanceMethod(Class _Nullable cls, SEL _Nonnull name)
class_getClassMethod(Class _Nullable cls, SEL _Nonnull name)

之后:

b class_getInstanceMethod
b class_getClassMethod

并击中各自的断点,检查 class:

po $arg1 

检查选择器:

po (SEL)method_getName($arg2)

设置这些符号断点的最佳位置是这里:

__attribute__((constructor))
static void premain() {
int i = 0;
i++; // put xcode breakpoint here and when hit prep your lldb symbolic bps
}