forked from fashao/XIL2CppDumper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIL2CppBinParser.cpp
341 lines (298 loc) · 15.8 KB
/
IL2CppBinParser.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
//
// Created by xia0 on 2019/11/18.
//
#import "IL2CppBinParser.h"
#include <assert.h>
#include <exception>
IL2CppBinParser::IL2CppBinParser(void *bin, uint32_t version) {
il2cppbin = bin;
metadataVersion = version;
uint32_t fileID = *((uint32_t*)il2cppbin);
if (fileID == 0xFEEDFACF){
isMacho64 = true;
initWithMacho64();
} else if(fileID == 0x464C457F){
uint8_t elfClass = *((uint8_t*)il2cppbin + 4);
if (elfClass == 0x01){
isElf = true;
initWithElf32();
}else if(elfClass == 0x02){
isElf64 = true;
initWithElf64();
}
}else{
assert(isMacho64 || isMacho || isElf64 || isElf);
}
}
void* IL2CppBinParser::seek2Offset(uint64_t offset) {
return (void*)((uint8_t*)il2cppbin + offset);
}
void* IL2CppBinParser::RAW2RVA(uint64_t raw) {
if (isMacho64){
return (void*)(raw + 0x100000000);
}
return (void*)raw;
}
uint64_t IL2CppBinParser::RVA2RAW(void *rva) {
if (isElf) {
uint64_t targetAddr = (uint64_t)rva;
Elf32_Ehdr* elf32h = (Elf32_Ehdr*)il2cppbin;
uint32_t elf32ProgramTablelOffset = elf32h->e_phoff;
int elf32ProgramTableCount = elf32h->e_phnum;
Elf32_Phdr* elf32ProgramTable = (Elf32_Phdr*)seek2Offset(elf32ProgramTablelOffset);
for (int i = 0; i < elf32ProgramTableCount; ++i) {
Elf32_Phdr* curPhdr = elf32ProgramTable + i;
if (targetAddr >= curPhdr->p_vaddr && targetAddr <= curPhdr->p_vaddr + curPhdr->p_memsz){
return targetAddr - (curPhdr->p_vaddr - curPhdr->p_offset);
}
}
XDLOG("address not found elf64 progarm segment, here return orig address\n");
return (uint64_t)rva;
}else if (isElf64){
uint64_t targetAddr = (uint64_t)rva;
Elf64_Ehdr* elf64h = (Elf64_Ehdr*)il2cppbin;
uint64_t elf64ProgramTablelOffset = elf64h->e_phoff;
int elf64ProgramTableCount = elf64h->e_phnum;
Elf64_Phdr* elf64ProgramTable = (Elf64_Phdr*)seek2Offset(elf64ProgramTablelOffset);
for (int i = 0; i < elf64ProgramTableCount; ++i) {
Elf64_Phdr* curPhdr = elf64ProgramTable + i;
if (targetAddr >= curPhdr->p_vaddr && targetAddr <= curPhdr->p_vaddr + curPhdr->p_memsz){
return targetAddr - (curPhdr->p_vaddr - curPhdr->p_offset);
}
}
XDLOG("address not found elf64 progarm segment, here return orig address\n");
return (uint64_t)rva;
} else if (isMacho64){
return (uint64_t)((uint64_t)rva - 0x100000000);
}
return (uint64_t)rva;
}
void* IL2CppBinParser::idaAddr2MemAddr(void *idaAddr) {
uint64_t offset = RVA2RAW(idaAddr);
void* mem = seek2Offset(offset);
// XDLOG("ida address:0x%lx il2cppbin address:0x%lx mem address:0x%lx\n", idaAddr, il2cppbin, mem);
return mem;
}
int64_t IL2CppBinParser::fixElf64Relocation(uint64_t needFixAddr) {
// http://www.sco.com/developers/gabi/2003-12-17/ch4.reloc.html
// https://topsrc.cn/archives/170/
// http://netwinder.osuosl.org/users/p/patb/public_html/elf_relocs.html
Elf64_Ehdr* elfh = (Elf64_Ehdr*)il2cppbin;
// .dynsym .dynstr
XRange* range = elf64_get_sec_range_by_name(elfh, ".rela.dyn");
Elf64_Rela* rela = (Elf64_Rela*)(range->start);
int count = (range->end - range->start) / sizeof(Elf64_Rela);
for (int i = 0; i < count; ++i) {
Elf64_Rela* curRela = rela + i;
uint64_t curOffset = curRela->r_offset;
if(curOffset == needFixAddr){
XDLOG("found target need fix relocation address:0x%lx to 0x%lx\n", needFixAddr, curRela->r_addend);
return curRela->r_addend;
}
}
XDLOG("not found target need fix relocation address, here return orig address\n");
return needFixAddr;
}
Arm_Addr IL2CppBinParser::fixElf32Relocation(Arm_Addr needFixAddr) {
Elf32_Ehdr* elfh = (Elf32_Ehdr*)il2cppbin;
// .dynsym .dynstr
XRange* rel_range = elf32_get_sec_range_by_name(elfh, ".rel.dyn");
XRange* dsym_range = elf32_get_sec_range_by_name(elfh, ".dynsym");
Elf32_Sym* dsymTable = (Elf32_Sym*)dsym_range->start;
int dsymCount = (dsym_range->end - dsym_range->start) / sizeof(Elf32_Sym);
Elf32_Rel* rela = (Elf32_Rel*)(rel_range->start);
int count = (rel_range->end - rel_range->start) / sizeof(Elf32_Rel);
for (int i = 0; i < count; ++i) {
Elf32_Rel* curRel = rela + i;
uint32_t curOffset = curRel->r_offset;
XDLOG("fix addr:%x\n", curOffset);
if(curOffset == needFixAddr){
Elf32_Sym* curSym = dsymTable + (curRel->r_info >> 8);
XDLOG("found target need fix relocation address:0x%x to 0x%x\n", needFixAddr, curSym->st_value);
return curSym->st_value;
}
}
XDLOG("not found target need fix relocation address, here return orig address:%x\n", needFixAddr);
return needFixAddr;
}
void IL2CppBinParser::initWithElf32() {
Elf32_Ehdr* elfh = (Elf32_Ehdr*)il2cppbin;
XRange* range = elf32_get_sec_range_by_name(elfh, ".init_array");
assert(range);
Arm_Addr init_register_ida_addr = 0;
uint32_t *start = (uint32_t*)range->start;
uint32_t *end = (uint32_t*)range->end;
int i = 0;
for (uint32_t *p = start; p < end; ++p) {
i++;
uint32_t insn_1 = arm_insn_from_addr(idaAddr2MemAddr((uint32_t*)*p));
uint32_t insn_2 = arm_insn_from_addr((void*)((uint32_t*)idaAddr2MemAddr((uint32_t*)*p) + 1));
uint32_t insn_3 = arm_insn_from_addr((void*)((uint32_t*)idaAddr2MemAddr((uint32_t*)*p) + 2));
uint32_t insn_4 = arm_insn_from_addr((void*)((uint32_t*)idaAddr2MemAddr((uint32_t*)*p) + 3));
uint32_t insn_5 = arm_insn_from_addr((void*)((uint32_t*)idaAddr2MemAddr((uint32_t*)*p) + 4));
uint32_t insn_6 = arm_insn_from_addr((void*)((uint32_t*)idaAddr2MemAddr((uint32_t*)*p) + 5));
if ((metadataVersion == 24) && arm_is_ldr_literal(insn_1) && arm_is_mov_imm(insn_2) && arm_is_ldr_literal(insn_3) && arm_is_mov_imm(insn_4) && arm_is_add_r(insn_5) && arm_is_add_r(insn_6)){
XILOG("found init register func:0x%x\n", *p);
init_register_ida_addr = (Arm_Addr)*p;
break;
}
}
assert(init_register_ida_addr);
Arm_Addr ida_pc = (Arm_Addr)init_register_ida_addr;
uint32_t *mem_pc = (uint32_t*)idaAddr2MemAddr((void*)init_register_ida_addr);
ida_pc = arm_addr_add(ida_pc, 2);
mem_pc += 2;
Arm_Insn insn = arm_insn_from_addr(mem_pc);
int32_t pc_shift_value = arm_ldr_literal_decode_imm(insn);
Arm_Addr ida_s_Il2CppCodegenRegistration_offset_ptr = arm_addr_add(ida_pc, 2) + pc_shift_value;
uint32_t s_Il2CppCodegenRegistration_offset = *(uint32_t*)idaAddr2MemAddr((void*)ida_s_Il2CppCodegenRegistration_offset_ptr);
ida_pc = arm_addr_add(ida_pc, 3);
mem_pc += 3;
Arm_Addr ida_s_Il2CppCodegenRegistration = arm_addr_add(ida_pc, 2) + s_Il2CppCodegenRegistration_offset;
XILOG("decode s_Il2CppCodegenRegistration adrress from bin:0x%x\n", ida_s_Il2CppCodegenRegistration);
/**
* LDR R1, =(g_MetadataRegistration_ptr - 0x1FCB00)
* LDR R0, =(g_CodeRegistration - 0x1FCB04)
* LDR R2, =(_ZL22s_Il2CppCodeGenOptions_0 - 0x1FCB08) ; s_Il2CppCodeGenOptions
* LDR R1, [PC,R1] ; g_MetadataRegistration
* ADD R0, PC, R0 ; g_CodeRegistration
* ADD R2, PC, R2 ; s_Il2CppCodeGenOptions
*/
ida_pc = ida_s_Il2CppCodegenRegistration;
mem_pc = (uint32_t*)idaAddr2MemAddr((void*)ida_pc);
insn = arm_insn_from_addr(mem_pc);
pc_shift_value = arm_ldr_literal_decode_imm(insn);
Arm_Addr ida_g_MetadataRegistration_offset_ptr = arm_addr_add(ida_pc, 2) + pc_shift_value;
uint32_t g_MetadataRegistration_offset = *(uint32_t*)idaAddr2MemAddr((void*)ida_g_MetadataRegistration_offset_ptr);
ida_pc = arm_addr_add(ida_pc, 1);
mem_pc += 1;
insn = arm_insn_from_addr(mem_pc);
pc_shift_value = arm_ldr_literal_decode_imm(insn);
Arm_Addr ida_g_CodeRegistration_offset_ptr = arm_addr_add(ida_pc, 2) + pc_shift_value;
uint32_t g_CodeRegistration_offset = *(uint32_t*)idaAddr2MemAddr((void*)ida_g_CodeRegistration_offset_ptr);
ida_pc = arm_addr_add(ida_pc, 2);
mem_pc += 2;
insn = arm_insn_from_addr(mem_pc);
assert(arm_is_ldr_r(insn));
Arm_Addr ida_MetadataRegistration_ptr = arm_addr_add(ida_pc, 2) + g_MetadataRegistration_offset;
Arm_Addr ida_metadataRegistration = *(Arm_Addr*)idaAddr2MemAddr((void*)ida_MetadataRegistration_ptr);
XILOG("decode g_MetadataRegistration adrress from bin:0x%x\n", ida_metadataRegistration);
ida_pc = arm_addr_add(ida_pc, 1);
mem_pc += 1;
insn = arm_insn_from_addr(mem_pc);
Arm_Addr ida_codeRegistration = arm_addr_add(ida_pc, 2) + g_CodeRegistration_offset;
XILOG("decode g_CodeRegistration adrress from bin:0x%x\n", ida_codeRegistration);
codeRegistration = idaAddr2MemAddr((void*)ida_codeRegistration);
metadataRegistration = idaAddr2MemAddr((void*)ida_metadataRegistration);
}
void IL2CppBinParser::initWithElf64() {
Elf64_Ehdr* elfh = (Elf64_Ehdr*)il2cppbin;
XRange* range = elf64_get_sec_range_by_name(elfh, ".init_array");
assert(range);
void* init_register_ida_addr = NULL;
XILOG("found elf64 init array start addr:0x%lx end addr:0x%lx\n", range->start, range->end);
uint32_t **start = (uint32_t**)range->start;
uint32_t **end = (uint32_t**)range->end;
/**
* ADRP X0, #_ZL35s_Il2CppCodegenRegistrationVariable@PAGE ; s_Il2CppCodegenRegistrationVariable
* ADRP X1, #_Z27s_Il2CppCodegenRegistrationv@PAGE ; s_Il2CppCodegenRegistration(void)
* ADD X0, X0, #_ZL35s_Il2CppCodegenRegistrationVariable@PAGEOFF ; s_Il2CppCodegenRegistrationVariable
* ADD X1, X1, #_Z27s_Il2CppCodegenRegistrationv@PAGEOFF ; s_Il2CppCodegenRegistration(void)
* MOV X2, XZR
* MOV W3, WZR
* B _ZN6il2cpp5utils35RegisterRuntimeInitializeAndCleanupC2EPFvvES3_i ;
*/
for (uint32_t **p = start; p < end; ++p) {
uint32_t insn_1 = arm64_insn_from_addr(idaAddr2MemAddr(*p));
uint32_t insn_2 = arm64_insn_from_addr((void*)((uint32_t*)idaAddr2MemAddr(*p) + 1));
uint32_t insn_3 = arm64_insn_from_addr((void*)((uint32_t*)idaAddr2MemAddr(*p) + 2));
uint32_t insn_4 = arm64_insn_from_addr((void*)((uint32_t*)idaAddr2MemAddr(*p) + 3));
uint32_t insn_5 = arm64_insn_from_addr((void*)((uint32_t*)idaAddr2MemAddr(*p) + 4));
uint32_t insn_6 = arm64_insn_from_addr((void*)((uint32_t*)idaAddr2MemAddr(*p) + 5));
if ((metadataVersion == 24) && arm64_is_adrp(insn_1) && arm64_is_adrp(insn_2) && arm64_is_add_imm(insn_3) && arm64_is_add_imm(insn_4) && arm64_is_movr(insn_5) && arm64_is_movr(insn_6)){
XILOG("found init register func:0x%lx\n", *p);
init_register_ida_addr = *p;
break;
}
}
assert(init_register_ida_addr);
uint32_t *ida_pc = (uint32_t*)init_register_ida_addr;
uint32_t *mem_pc = (uint32_t*)idaAddr2MemAddr(init_register_ida_addr);
ida_pc += 1;
mem_pc += 1;
uint32_t insn = arm64_insn_from_addr(mem_pc);
void* ida_s_Il2CppCodegenRegistration_page = arm64_adrp_decode(ida_pc, insn);
ida_pc += 2;
mem_pc += 2;
insn = arm64_insn_from_addr(mem_pc);
uint32_t ida_s_Il2CppCodegenRegistration_page_offset = arm64_add_decode_imm(insn);
void* ida_s_Il2CppCodegenRegistration = (void*)((uint8_t*)ida_s_Il2CppCodegenRegistration_page + ida_s_Il2CppCodegenRegistration_page_offset);
XILOG("decode s_Il2CppCodegenRegistration adrress from bin:0x%lx\n", ida_s_Il2CppCodegenRegistration);
ida_pc = (uint32_t*)ida_s_Il2CppCodegenRegistration;
mem_pc = (uint32_t*)idaAddr2MemAddr(ida_s_Il2CppCodegenRegistration);
insn = arm64_insn_from_addr(mem_pc);
void* ida_g_MetadataRegistration_page = arm64_adrp_decode(ida_pc, insn);
ida_pc += 1;
mem_pc += 1;
insn = arm64_insn_from_addr(mem_pc);
int64_t ida_g_MetadataRegistration_page_offset = arm64_ldr_decode_imm(insn);
uint64_t * metadataRegistration_ptr = (uint64_t *)((uint8_t*)ida_g_MetadataRegistration_page + ida_g_MetadataRegistration_page_offset);
void* ida_metadataRegistration = (void*)fixElf64Relocation((uint64_t)metadataRegistration_ptr);
XILOG("decode g_MetadataRegistration adrress from bin:0x%lx\n", metadataRegistration);
ida_pc += 1;
mem_pc += 1;
insn = arm64_insn_from_addr(mem_pc);
void* g_CodeRegistration_page = arm64_adrp_decode(ida_pc, insn);
ida_pc += 2;
mem_pc += 2;
insn = arm64_insn_from_addr(mem_pc);
uint32_t g_CodeRegistration_page_offset = arm64_add_decode_imm(insn);
void* ida_codeRegistration = (void*)((uint8_t*)g_CodeRegistration_page + g_CodeRegistration_page_offset);
XILOG("decode g_CodeRegistration adrress from bin:0x%lx\n", ida_codeRegistration);
codeRegistration = idaAddr2MemAddr(ida_codeRegistration);
metadataRegistration = idaAddr2MemAddr(ida_metadataRegistration);
}
void IL2CppBinParser::initWithMacho64() {
mach_header_64* mh = (mach_header_64*)il2cppbin;
XDLOG("macho header magic number:%X\n", mh->magic);
XRange* range = macho64_get_sec_range_by_name(mh, "__DATA", "__mod_init_func");
XDLOG("macho64 mod_init_func address start:0x%lx end:0x%lx\n", range->start, range->end);
void* init_register_ida_addr = NULL;
// search feature value to find il2cpp_codegen_register() function
uint32_t ** mem_mod_init_func_start = (uint32_t **)idaAddr2MemAddr((void*)range->start);
uint32_t ** mem_mod_init_func_end = (uint32_t **)idaAddr2MemAddr((void*)range->end);
for (uint32_t **p = mem_mod_init_func_start; p < mem_mod_init_func_end; ++p) {
uint32_t insn_1 = arm64_insn_from_addr(idaAddr2MemAddr(*p));
uint32_t insn_2 = arm64_insn_from_addr((void*)((uint32_t*)idaAddr2MemAddr(*p) + 1));
uint32_t insn_3 = arm64_insn_from_addr((void*)((uint32_t*)idaAddr2MemAddr(*p) + 2));
uint32_t insn_4 = arm64_insn_from_addr((void*)((uint32_t*)idaAddr2MemAddr(*p) + 3));
uint32_t insn_5 = arm64_insn_from_addr((void*)((uint32_t*)idaAddr2MemAddr(*p) + 4));
uint32_t insn_6 = arm64_insn_from_addr((void*)((uint32_t*)idaAddr2MemAddr(*p) + 5));
if ((metadataVersion == 24) && arm64_is_adrp(insn_1) && arm64_is_add_imm(insn_2) && arm64_is_adr(insn_3) && arm64_is_nop(insn_4) && arm64_is_movz(insn_5) && arm64_is_movz(insn_6)){
XILOG("found init register func:0x%lx\n", *p);
init_register_ida_addr = *p;
break;
}
}
assert(init_register_ida_addr);
uint32_t * mem_pc = (uint32_t *)idaAddr2MemAddr(init_register_ida_addr);
uint32_t* ida_pc = (uint32_t*)init_register_ida_addr;
ida_pc += 2;
mem_pc += 2;
uint32_t insn = arm64_insn_from_addr(mem_pc);
void* ida_s_Il2CppCodegenRegistration = arm64_adr_decode(ida_pc, insn);
XDLOG("decode s_Il2CppCodegenRegistration adrress from bin:0x%lx\n", ida_s_Il2CppCodegenRegistration);
ida_pc = (uint32_t*)ida_s_Il2CppCodegenRegistration;
mem_pc = (uint32_t *)((char*)il2cppbin + (uint64_t)ida_s_Il2CppCodegenRegistration - 0x100000000);
insn = arm64_insn_from_addr(mem_pc);
void* ida_g_CodeRegistration = (void*)((uint64_t)arm64_adrp_decode(ida_pc, insn) + arm64_add_decode_imm(arm64_insn_from_addr(mem_pc+1)));
XDLOG("decode g_CodeRegistration adrress from bin:0x%lx\n", ida_g_CodeRegistration);
ida_pc += 2;
mem_pc += 2;
insn = arm64_insn_from_addr(mem_pc);
void* ida_g_MetadataRegistration = (void*)((uint64_t)arm64_adrp_decode(ida_pc, insn) + arm64_add_decode_imm(arm64_insn_from_addr(mem_pc+1)));
XDLOG("decode g_MetadataRegistration adrress from bin:0x%lx\n", ida_g_MetadataRegistration);
// init done
codeRegistration = (void*)((char*)il2cppbin + (uint64_t)ida_g_CodeRegistration - 0x100000000);
metadataRegistration = (void*)((char*)il2cppbin + (uint64_t)ida_g_MetadataRegistration - 0x100000000);
}