协议名字
Snip20200423_50.png从上面这张图可以看到第一个地址是0000000100009068,这个地址是虚拟地址,需要将它转换为文件偏移地址。计算公式如下:
文件偏移地址 = 虚拟地址 - 模块在内存中地址 + 模块在文件中的偏移
模块加载在内存中的地址可以在__TEXT段中找到,是0000000100000000
Snip20200423_51.png
当然在实际调试中的时候,还要加上ASLR(地址空间随机化)的偏移,因为现在我们是静态调试,还没有涉及到这个概念。另外通过MachOView读取当前模块(ARM64架构)在文件中的偏移,是0x00018000,如下图所示 Snip20200423_52.png
根据计算公式,可以算出文件的偏移地址 = 0000000100009068 - 0000000100000000 + 0x00018000 = 0x21068,这个地址对应到二进制的偏移位置是(DATA.data)的位置。从该位置读取name的地址,是0x0000000100006c40,这个也是一个虚拟地址,根据上面的公式,得到相对应的文件偏移地址 = 0x0000000100006c40 - 0000000100000000 + 0x00018000 = 0x1EC40。使用MachOView查看对应位置的字符串,是NSObject Snip20200423_54.png
第二个地址:00000001000090C8 ,同理可求得偏移地址 = 00000001000090C8 - 0000000100000000 + 0x00018000 = 0x210C8
Snip20200423_58.png取出地址0000000100006C31,计算相应的偏移地址 = 0000000100006C31 - 0000000100000000 + 0x00018000 = 0x1EC31 是CustomProtocol Snip20200423_59.png
** 第三个地址 ** 0000000100009128,同理可求得偏移地址 = 0000000100009128 - 0000000100000000 + 0x00018000 = 0x21128
Snip20200423_60.png ,得到地址0000000100006C75,计算对应的偏移地址 = 0000000100006C75 - 0000000100000000 + 0x00018000 = 0x1EC75 Snip20200423_61.png
分类名字 Snip20200423_55.png
看到地址是00000001000085E0,根据公式,计算出对应的文件偏移地址是 = 00000001000085E0 - 0000000100000000 + 0x00018000 = 0x205E0, Snip20200423_56.png 读取地址0000000100006C4B,计算文件偏移地址 = 0000000100006C4B - 0000000100000000 + 0x00018000 = 0x1EC4B Snip20200423_57.png类名字
Snip20200423_62.png第一个地址:0000000100008FA0,计算偏移地址 = 0000000100008FA0 - 0000000100000000 + 0x00018000 = 0x20FA0
objc的类源码
struct objc_object {
private:
isa_t isa;//8 个字节
}
struct objc_class : objc_object {
// Class ISA;
Class superclass;//8 个字节
cache_t cache; // formerly cache pointer and vtable
class_data_bits_t bits; // class_rw_t * plus custom rr/alloc flags
}
struct cache_t {
struct bucket_t *_buckets;//结构体8个字节
mask_t _mask;//typedef uint32_t mask_t; 由此可知mask_t占用4个字节
mask_t _occupied;//4个字节
}
struct class_rw_t {
// Be warned that Symbolication knows the layout of this structure.
uint32_t flags;
uint32_t version;
const class_ro_t *ro;
method_array_t methods;
property_array_t properties;
protocol_array_t protocols;
Class firstSubclass;
Class nextSiblingClass;
char *demangledName;
}
struct class_ro_t {
uint32_t flags;
uint32_t instanceStart;
uint32_t instanceSize;
#ifdef __LP64__
uint32_t reserved;
#endif
const uint8_t * ivarLayout;
const char * name;
method_list_t * baseMethodList;
protocol_list_t * baseProtocols;
const ivar_list_t * ivars;
const uint8_t * weakIvarLayout;
property_list_t *baseProperties;
method_list_t *baseMethods() const {
return baseMethodList;
}
};
Snip20200423_64.png
2.0以后,类的相关属性方法等都是从data中获取,所以这里我们取到是0x20FA0偏移32个字节的值0000000100008578
0000000100008578 - 0000000100000000 + 0x00018000 = 0x20578 Snip20200423_65.png方法虚拟地址为0x0000000100006c25
0x18000 + (0x100006c25 - 0x100000000) = 0x1EC25 获取偏移地址
Snip20200423_66.png
方法解析
从上面可以知道class_ro_t 有一个baseMethodList属性,其中保存的就是类的实力方法。前面读取的类是CustomClass,对应读取的值是0000000100008478.。对应的文件偏移 = 0000000100008478 - 0000000100000000 + 0x00018000 = 0x20478;
查看method_list_t 的源码
struct entsize_list_tt {
uint32_t entsizeAndFlags;
uint32_t count;
Element first;
}
struct method_list_t : entsize_list_tt<method_t, method_list_t, 0x3> {
bool isFixedUp() const;
void setFixedUp();
uint32_t indexOfMethod(const method_t *meth) const {
uint32_t i =
(uint32_t)(((uintptr_t)meth - (uintptr_t)this) / entsize());
assert(i < count);
return i;
}
};
struct method_t {
SEL name;
const char *types;
MethodListIMP imp;
};
Snip20200423_68.png
可以看到读取的方法个数为5,从源码中可以看出Element first; 这个Element是method_t 类型,incident可以知道第一个读取的方法name是00000001000090C8,求得对应的文件偏移 = 0000000100006D9C - 0000000100000000 + 0x00018000 = 0x1ED9C;
Snip20200423_69.png
Snip20200423_70.png
其他方法同理可得哈!
第二个name 00000001000077D6,求得对应的文件偏移 = 00000001000077D6 - 0000000100000000 + 0x00018000 = 0x1EDB0
网友评论