forked from xerub/macho
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iokit_tool_10.c
1620 lines (1484 loc) · 53.3 KB
/
iokit_tool_10.c
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* ghetto iokit dumper (arm, mach-o kernel/kext)
*
* Copyright (c) 2017 xerub
*/
#include <assert.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <unistd.h>
#include <mach-o/loader.h>
#include <mach-o/nlist.h>
#include <mach-o/reloc.h>
#include <sqlite3.h>
#define VPREFIX "vtable_"
#define OPREFIX ""
#define RETTYPE "void *"
typedef unsigned long long addr_t;
#define IS64(image) (*(uint8_t *)(image) & 1)
#define MACHO(p) ((*(unsigned int *)(p) & ~1) == 0xfeedface)
static int for_ida = 0;
static int one_kext = 0;
static size_t align = 0xFFF;
static __inline size_t
round_page(size_t size)
{
return (size + align) & ~align;
}
/* demangler *****************************************************************/
extern char *__cxa_demangle(const char *mangled_name, char *output_buffer, size_t *length, int *status);
#define demangle_name(name) __cxa_demangle((name) + 1, NULL, NULL, NULL)
/* generic stuff *************************************************************/
#define UCHAR_MAX 255
static unsigned char *
boyermoore_horspool_memmem(const unsigned char* haystack, size_t hlen,
const unsigned char* needle, size_t nlen)
{
size_t last, scan = 0;
size_t bad_char_skip[UCHAR_MAX + 1]; /* Officially called:
* bad character shift */
/* Sanity checks on the parameters */
if (nlen <= 0 || !haystack || !needle)
return NULL;
/* ---- Preprocess ---- */
/* Initialize the table to default value */
/* When a character is encountered that does not occur
* in the needle, we can safely skip ahead for the whole
* length of the needle.
*/
for (scan = 0; scan <= UCHAR_MAX; scan = scan + 1)
bad_char_skip[scan] = nlen;
/* C arrays have the first byte at [0], therefore:
* [nlen - 1] is the last byte of the array. */
last = nlen - 1;
/* Then populate it with the analysis of the needle */
for (scan = 0; scan < last; scan = scan + 1)
bad_char_skip[needle[scan]] = last - scan;
/* ---- Do the matching ---- */
/* Search the haystack, while the needle can still be within it. */
while (hlen >= nlen)
{
/* scan from the end of the needle */
for (scan = last; haystack[scan] == needle[scan]; scan = scan - 1)
if (scan == 0) /* If the first byte matches, we've found it. */
return (void *)haystack;
/* otherwise, we need to skip some bytes and start again.
Note that here we are getting the skip value based on the last byte
of needle, no matter where we didn't match. So if needle is: "abcd"
then we are skipping based on 'd' and that value will be 4, and
for "abcdd" we again skip on 'd' but the value will be only 1.
The alternative of pretending that the mismatched character was
the last character is slower in the normal case (E.g. finding
"abcd" in "...azcd..." gives 4 by using 'd' but only
4-2==2 using 'z'. */
hlen -= bad_char_skip[haystack[last]];
haystack += bad_char_skip[haystack[last]];
}
return NULL;
}
/* disassembler **************************************************************/
static int HighestSetBit(int N, uint32_t imm)
{
int i;
for (i = N - 1; i >= 0; i--) {
if (imm & (1 << i)) {
return i;
}
}
return -1;
}
static uint64_t ZeroExtendOnes(unsigned M, unsigned N) // zero extend M ones to N width
{
(void)N;
return ((uint64_t)1 << M) - 1;
}
static uint64_t RORZeroExtendOnes(unsigned M, unsigned N, unsigned R)
{
uint64_t val = ZeroExtendOnes(M, N);
if (R == 0) {
return val;
}
return ((val >> R) & (((uint64_t)1 << (N - R)) - 1)) | ((val & (((uint64_t)1 << R) - 1)) << (N - R));
}
static uint64_t Replicate(uint64_t val, unsigned bits)
{
uint64_t ret = val;
unsigned shift;
for (shift = bits; shift < 64; shift += bits) { // XXX actually, it is either 32 or 64
ret |= (val << shift);
}
return ret;
}
static int DecodeBitMasks(unsigned immN, unsigned imms, unsigned immr, int immediate, uint64_t *newval)
{
unsigned levels, S, R, esize;
int len = HighestSetBit(7, (immN << 6) | (~imms & 0x3F));
if (len < 1) {
return -1;
}
levels = ZeroExtendOnes(len, 6);
if (immediate && (imms & levels) == levels) {
return -1;
}
S = imms & levels;
R = immr & levels;
esize = 1 << len;
*newval = Replicate(RORZeroExtendOnes(S + 1, esize, R), esize);
return 0;
}
static int DecodeMov(uint32_t opcode, uint64_t total, int first, uint64_t *newval)
{
unsigned o = (opcode >> 29) & 3;
unsigned k = (opcode >> 23) & 0x3F;
unsigned rn, rd;
uint64_t i;
if (k == 0x24 && o == 1) { // MOV (bitmask imm) <=> ORR (immediate)
unsigned s = (opcode >> 31) & 1;
unsigned N = (opcode >> 22) & 1;
if (s == 0 && N != 0) {
return -1;
}
rn = (opcode >> 5) & 0x1F;
if (rn == 31) {
unsigned imms = (opcode >> 10) & 0x3F;
unsigned immr = (opcode >> 16) & 0x3F;
return DecodeBitMasks(N, imms, immr, 1, newval);
}
} else if (k == 0x25) { // MOVN/MOVZ/MOVK
unsigned s = (opcode >> 31) & 1;
unsigned h = (opcode >> 21) & 3;
if (s == 0 && h > 1) {
return -1;
}
i = (opcode >> 5) & 0xFFFF;
h *= 16;
i <<= h;
if (o == 0) { // MOVN
*newval = ~i;
return 0;
} else if (o == 2) { // MOVZ
*newval = i;
return 0;
} else if (o == 3 && !first) { // MOVK
*newval = (total & ~((uint64_t)0xFFFF << h)) | i;
return 0;
}
} else if ((k | 1) == 0x23 && !first) { // ADD (immediate)
unsigned h = (opcode >> 22) & 3;
if (h > 1) {
return -1;
}
rd = opcode & 0x1F;
rn = (opcode >> 5) & 0x1F;
if (rd != rn) {
return -1;
}
i = (opcode >> 10) & 0xFFF;
h *= 12;
i <<= h;
if (o & 2) { // SUB
*newval = total - i;
return 0;
} else { // ADD
*newval = total + i;
return 0;
}
}
return -1;
}
/* patchfinder ***************************************************************/
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-parameter"
#define static /* pragma ignored "-Wunused-function" is broken on some gcc */
#define memmem(a, b, c, d) (void *)boyermoore_horspool_memmem((const uint8_t *)(a), b, (const uint8_t *)(c), d)
#include "patchfinder.c"
#undef static
#pragma GCC diagnostic pop
static addr_t
step_thumb(const uint8_t *buf, addr_t start, size_t length, uint32_t what, uint32_t mask)
{
addr_t end = start + length;
while (start < end) {
uint32_t x = *(uint32_t *)(buf + start);
if ((x & mask) == what) {
return start;
}
start += insn_is_32bit((uint16_t *)(buf + start)) ? 4 : 2;
}
return 0;
}
static addr_t
calc32(const uint8_t *buf, addr_t start, addr_t end, int r)
{
addr_t i;
uint32_t value[16];
memset(value, 0, sizeof(value));
end &= ~1;
for (i = start & ~1; i < end; ) {
uint16_t *current_instruction = (uint16_t *)(buf + i);
if (insn_is_mov_imm(current_instruction)) {
value[insn_mov_imm_rd(current_instruction)] = insn_mov_imm_imm(current_instruction);
} else if (insn_is_ldr_literal(current_instruction)) {
addr_t literal_address = (i & ~3) + 4 + insn_ldr_literal_imm(current_instruction);
value[insn_ldr_literal_rt(current_instruction)] = *(uint32_t *) (buf + literal_address);
} else if (insn_is_movt(current_instruction)) {
value[insn_movt_rd(current_instruction)] |= insn_movt_imm(current_instruction) << 16;
} else if (insn_is_add_reg(current_instruction)) {
int reg = insn_add_reg_rd(current_instruction);
if (insn_add_reg_rm(current_instruction) == 15 && insn_add_reg_rn(current_instruction) == reg) {
value[reg] += i + 4;
}
} else if (insn_is_add_reg_imm(current_instruction)) {
value[insn_add_reg_imm_rd(current_instruction)] = value[insn_add_reg_imm_rn(current_instruction)] + insn_add_reg_imm_imm(current_instruction);
} else if ((*current_instruction & 0xFF00) == 0x4600) {
uint8_t regs = *current_instruction;
int rn = (regs >> 3) & 15;
int rd = (regs & 7) | ((regs & 0x80) >> 4);
value[rd] = value[rn];
}
i += insn_is_32bit(current_instruction) ? 4 : 2;
}
return value[r];
}
static addr_t
calc32mov(const uint8_t *buf, addr_t start, addr_t end, int r)
{
addr_t i;
uint32_t value[16];
memset(value, 0, sizeof(value));
end &= ~1;
for (i = start & ~1; i < end; ) {
uint16_t *current_instruction = (uint16_t *)(buf + i);
if (insn_is_mov_imm(current_instruction)) {
value[insn_mov_imm_rd(current_instruction)] = insn_mov_imm_imm(current_instruction);
} else if (insn_is_movt(current_instruction)) {
value[insn_movt_rd(current_instruction)] |= insn_movt_imm(current_instruction) << 16;
}
i += insn_is_32bit(current_instruction) ? 4 : 2;
}
return value[r];
}
static addr_t
step_64(const uint8_t *buf, addr_t start, size_t length, uint32_t what, uint32_t mask)
{
addr_t end = start + length;
while (start < end) {
uint32_t x = *(uint32_t *)(buf + start);
if ((x & mask) == what) {
return start;
}
start += 4;
}
return 0;
}
static addr_t
calc64(const uint8_t *buf, addr_t start, addr_t end, int r)
{
addr_t i;
uint64_t value[32];
memset(value, 0, sizeof(value));
end &= ~3;
for (i = start & ~3; i < end; i += 4) {
uint32_t op = *(uint32_t *)(buf + i);
unsigned reg = op & 0x1F;
if ((op & 0x9F000000) == 0x90000000) {
signed adr = ((op & 0x60000000) >> 18) | ((op & 0xFFFFE0) << 8);
//printf("%llx: ADRP X%d, 0x%llx\n", i, reg, ((long long)adr << 1) + (i & ~0xFFF));
value[reg] = ((long long)adr << 1) + (i & ~0xFFF);
} else if ((op & 0xFF000000) == 0x91000000) {
unsigned rn = (op >> 5) & 0x1F;
unsigned shift = (op >> 22) & 3;
unsigned imm = (op >> 10) & 0xFFF;
if (shift == 1) {
imm <<= 12;
} else {
assert(shift == 0);
}
//printf("%llx: ADD X%d, X%d, 0x%x\n", i, reg, rn, imm);
value[reg] = value[rn] + imm;
} else if ((op & 0xF9C00000) == 0xF9400000) {
unsigned rn = (op >> 5) & 0x1F;
unsigned imm = ((op >> 10) & 0xFFF) << 3;
//printf("%llx: LDR X%d, [X%d, 0x%x]\n", i, reg, rn, imm);
value[reg] = value[rn] + imm; // XXX address, not actual value
} else if ((op & 0x9F000000) == 0x10000000) {
signed adr = ((op & 0x60000000) >> 18) | ((op & 0xFFFFE0) << 8);
//printf("%llx: ADR X%d, 0x%llx\n", i, reg, ((long long)adr >> 11) + i);
value[reg] = ((long long)adr >> 11) + i;
} else if ((op & 0xFF000000) == 0x58000000) {
unsigned adr = (op & 0xFFFFE0) >> 3;
//printf("%llx: LDR X%d, =0x%llx\n", i, reg, adr + i);
value[reg] = adr + i; // XXX address, not actual value
}
}
return value[r];
}
static addr_t
calc64mov(const uint8_t *buf, addr_t start, addr_t end, int r)
{
addr_t i;
uint64_t value[32];
memset(value, 0, sizeof(value));
end &= ~3;
for (i = start & ~3; i < end; i += 4) {
uint32_t op = *(uint32_t *)(buf + i);
unsigned reg = op & 0x1F;
uint64_t newval;
int rv = DecodeMov(op, value[reg], 0, &newval);
if (rv == 0) {
if (((op >> 31) & 1) == 0) {
newval &= 0xFFFFFFFF;
}
value[reg] = newval;
}
}
return value[r];
}
/* generic macho *************************************************************/
static addr_t
get_base(uint8_t *buf, size_t size)
{
unsigned i;
const struct mach_header *hdr = (struct mach_header *)buf;
const uint8_t *q = buf + sizeof(struct mach_header);
(void)size;
if (!MACHO(buf)) {
return -1;
}
if (IS64(buf)) {
q += 4;
}
for (i = 0; i < hdr->ncmds; i++) {
const struct load_command *cmd = (struct load_command *)q;
if (cmd->cmd == LC_SEGMENT) {
const struct segment_command *seg = (struct segment_command *)q;
if (!strcmp(seg->segname, "__TEXT")) {
return seg->vmaddr;
}
}
if (cmd->cmd == LC_SEGMENT_64) {
const struct segment_command_64 *seg = (struct segment_command_64 *)q;
if (!strcmp(seg->segname, "__TEXT")) {
return seg->vmaddr;
}
}
q = q + cmd->cmdsize;
}
return -1;
}
static addr_t
get_sect_data(const uint8_t *p, size_t size, const char *segname, const char *sectname, size_t *sz)
{
unsigned i, j;
const struct mach_header *hdr = (struct mach_header *)p;
const uint8_t *q = p + sizeof(struct mach_header);
(void)size;
if (sz) *sz = 0;
if (!MACHO(p)) {
return 0;
}
if (IS64(p)) {
q += 4;
}
for (i = 0; i < hdr->ncmds; i++) {
const struct load_command *cmd = (struct load_command *)q;
if (cmd->cmd == LC_SEGMENT) {
const struct segment_command *seg = (struct segment_command *)q;
if (!strcmp(seg->segname, segname)) {
const struct section *sec = (struct section *)(seg + 1);
if (sectname == NULL) {
if (sz) *sz = seg->filesize;
return seg->fileoff;
}
for (j = 0; j < seg->nsects; j++) {
if (!strcmp(sec[j].sectname, sectname)) {
if (sz) *sz = sec[j].size;
if (sec[j].flags == S_ZEROFILL) {
return seg->fileoff + sec[j].addr - seg->vmaddr;
}
return sec[j].offset;
}
}
}
}
if (cmd->cmd == LC_SEGMENT_64) {
const struct segment_command_64 *seg = (struct segment_command_64 *)q;
if (!strcmp(seg->segname, segname)) {
const struct section_64 *sec = (struct section_64 *)(seg + 1);
if (sectname == NULL) {
if (sz) *sz = seg->filesize;
return seg->fileoff;
}
for (j = 0; j < seg->nsects; j++) {
if (!strcmp(sec[j].sectname, sectname)) {
if (sz) *sz = sec[j].size;
if (sec[j].flags == S_ZEROFILL) {
return seg->fileoff + sec[j].addr - seg->vmaddr;
}
return sec[j].offset;
}
}
}
}
q = q + cmd->cmdsize;
}
return 0;
}
/* kernel stuff **************************************************************/
uint8_t *kernel = MAP_FAILED;
size_t kernel_size = 0;
int kernel_fd = -1;
static int
init_kernel(const char *filename)
{
kernel_fd = open(filename, O_RDONLY);
if (kernel_fd < 0) {
return -1;
}
kernel_size = lseek(kernel_fd, 0, SEEK_END);
kernel = mmap(NULL, kernel_size, PROT_READ, MAP_PRIVATE, kernel_fd, 0);
if (kernel == MAP_FAILED) {
close(kernel_fd);
kernel_fd = -1;
return -1;
}
return 0;
}
static void
term_kernel(void)
{
munmap(kernel, kernel_size);
close(kernel_fd);
}
/* processor *****************************************************************/
static const char *
is_import(int32_t address)
{
unsigned i, k;
struct symtab_command *ksym = NULL;
struct dysymtab_command *kdys = NULL;
int is64 = 0;
const struct mach_header *hdr;
const uint8_t *q;
if (!one_kext) {
return NULL;
}
if (IS64(kernel)) {
is64 = 4;
}
hdr = (struct mach_header *)kernel;
q = kernel + sizeof(struct mach_header) + is64;
for (i = 0; i < hdr->ncmds; i++) {
const struct load_command *cmd = (struct load_command *)q;
if (cmd->cmd == LC_SYMTAB) {
struct symtab_command *sym = (struct symtab_command *)q;
ksym = sym;
}
if (cmd->cmd == LC_DYSYMTAB) {
struct dysymtab_command *dys = (struct dysymtab_command *)q;
kdys = dys;
}
q = q + cmd->cmdsize;
}
if (kdys && kdys->extreloff && ksym->symoff) {
const struct relocation_info *r = (struct relocation_info *)(kernel + kdys->extreloff);
if (is64) {
const struct nlist_64 *s = (struct nlist_64 *)(kernel + ksym->symoff);
for (k = 0; k < kdys->nextrel; k++, r++) {
assert(!r->r_pcrel && r->r_length == 3 && r->r_extern && r->r_type == GENERIC_RELOC_VANILLA);
if (address == r->r_address) {
return (char *)kernel + ksym->stroff + s[r->r_symbolnum].n_un.n_strx;
}
}
} else {
const struct nlist *s = (struct nlist *)(kernel + ksym->symoff);
for (k = 0; k < kdys->nextrel; k++, r++) {
assert(!r->r_pcrel && r->r_length == 2 && r->r_extern && r->r_type == GENERIC_RELOC_VANILLA);
if (address == r->r_address) {
return (char *)kernel + ksym->stroff + s[r->r_symbolnum].n_un.n_strx;
}
}
}
}
return NULL;
}
/* processor *****************************************************************/
static int
show_syms(size_t offset, int thumbize, int (*callback)(unsigned long long value, const char *symbol, void *opaque), void *opaque)
{
uint32_t i;
const uint8_t *p, *q;
const struct mach_header *hdr;
size_t eseg, size, next;
int is64;
again:
if (offset >= kernel_size - 3) {
return 0;
}
size = 0;
next = 0;
p = kernel + offset;
hdr = (struct mach_header *)p;
q = p + sizeof(struct mach_header);
is64 = 0;
if (!MACHO(p)) {
return 0;
}
if (IS64(p)) {
is64 = 4;
}
q = p + sizeof(struct mach_header) + is64;
for (i = 0; i < hdr->ncmds; i++) {
const struct load_command *cmd = (struct load_command *)q;
if (cmd->cmd == LC_SEGMENT) {
const struct segment_command *seg = (struct segment_command *)q;
if (!strcmp(seg->segname, "__PRELINK_TEXT")) {
next = seg->fileoff;
}
if (!strcmp(seg->segname, "__PAGEZERO")) {
goto cont;
}
if (seg->vmaddr == 0) {
eseg = round_page(seg->fileoff + seg->vmsize);
if (offset + eseg < kernel_size - 3 && *(uint32_t *)(kernel + offset + eseg) != *(uint32_t *)kernel) {
align = 0x3FFF; /* promote alignment and hope for the best */
eseg = round_page(seg->fileoff + seg->vmsize);
}
} else {
assert((seg->fileoff & 0xFFF) == 0 || next || one_kext);
eseg = seg->fileoff + round_page(seg->vmsize);
}
if (size < eseg) {
size = eseg;
}
}
if (cmd->cmd == LC_SEGMENT_64) {
const struct segment_command_64 *seg = (struct segment_command_64 *)q;
if (!strcmp(seg->segname, "__PRELINK_TEXT")) {
next = seg->fileoff;
}
if (!strcmp(seg->segname, "__PAGEZERO")) {
goto cont;
}
if (seg->vmaddr == 0) {
eseg = round_page(seg->fileoff + seg->vmsize);
if (offset + eseg < kernel_size - 3 && *(uint32_t *)(kernel + offset + eseg) != *(uint32_t *)kernel) {
align = 0x3FFF; /* promote alignment and hope for the best */
eseg = round_page(seg->fileoff + seg->vmsize);
}
} else {
assert((seg->fileoff & 0xFFF) == 0 || next || one_kext);
eseg = seg->fileoff + round_page(seg->vmsize);
}
if (size < eseg) {
size = eseg;
}
}
if (cmd->cmd == LC_SYMTAB) {
const struct symtab_command *sym = (struct symtab_command *)q;
const char *stroff = (const char *)p + sym->stroff;
if (is64) {
uint32_t k;
const struct nlist_64 *s = (struct nlist_64 *)(p + sym->symoff);
for (k = 0; k < sym->nsyms; k++) {
if (s[k].n_type & N_STAB) {
continue;
}
if (s[k].n_value && (s[k].n_type & N_TYPE) != N_INDR) {
if (callback(s[k].n_value, stroff + s[k].n_un.n_strx, opaque)) {
return -1;
}
}
}
} else {
uint32_t k;
const struct nlist *s = (struct nlist *)(p + sym->symoff);
for (k = 0; k < sym->nsyms; k++) {
if (s[k].n_type & N_STAB) {
continue;
}
if (s[k].n_value && (s[k].n_type & N_TYPE) != N_INDR) {
int thumb = thumbize && (s[k].n_desc & N_ARM_THUMB_DEF);
if (callback(s[k].n_value + thumb, stroff + s[k].n_un.n_strx, opaque)) {
return -1;
}
}
}
}
}
cont: q = q + cmd->cmdsize;
}
if (next) {
return show_syms(next, thumbize, callback, opaque);
}
if (size) {
offset += size;
goto again;
}
return 0;
}
static int
callback(unsigned long long value, const char *symbol, void *opaque)
{
int rv;
sqlite3_stmt *stmt = (sqlite3_stmt *)opaque;
//printf("INSERT INTO \"Symbols\" VALUES('%s',%llu);\n", symbol, value);
rv = sqlite3_reset(stmt);
if (rv) {
return -1;
}
rv = sqlite3_bind_text(stmt, 1, symbol, strlen(symbol), SQLITE_STATIC);
if (rv) {
return -1;
}
rv = sqlite3_bind_int64(stmt, 2, value);
if (rv) {
return -1;
}
rv = sqlite3_step(stmt);
if (rv != SQLITE_DONE) {
fprintf(stderr, "sqlite error: %d\n", rv);
return -1;
}
return 0;
}
static sqlite3 *
make_core_db(void)
{
int rv;
sqlite3 *db;
sqlite3_stmt *stmt;
char *str;
rv = sqlite3_open(":memory:", &db);
if (rv) {
fprintf(stderr, "[e] cannot open database\n");
return NULL;
}
//printf("CREATE TABLE Symbols(Symbol varchar(255), Value int);\n");
rv = sqlite3_exec(db, "CREATE TABLE Symbols(Symbol varchar(255), Value int);", NULL, NULL, &str);
if (rv) {
fprintf(stderr, "sqlite error: %s\n", str);
sqlite3_free(str);
sqlite3_close(db);
return NULL;
}
str = "INSERT INTO \"Symbols\" VALUES(?1,?2);";
rv = sqlite3_prepare_v2(db, str, strlen(str) + 1, &stmt, NULL);
if (rv) {
sqlite3_close(db);
fprintf(stderr, "[e] cannot make statement\n");
return NULL;
}
rv = sqlite3_exec(db, "BEGIN TRANSACTION;", NULL, NULL, NULL);
show_syms(0, 1, callback, stmt);
sqlite3_finalize(stmt);
rv = sqlite3_exec(db, "END TRANSACTION;", NULL, NULL, NULL);
if (rv) {
sqlite3_close(db);
fprintf(stderr, "[e] cannot end transaction\n");
return NULL;
}
rv = sqlite3_exec(db, "CREATE INDEX symbol_index on Symbols (Value);", NULL, NULL, &str);
if (rv) {
fprintf(stderr, "sqlite error: %s\n", str);
sqlite3_free(str);
}
return db;
}
/* main **********************************************************************/
static addr_t
kdb_get_symaddr(sqlite3 *db, const char *symbol)
{
int rv;
char sql[4096];
int err = 0;
int row = 0;
sqlite3_stmt *stmt;
sqlite3_int64 x = 0;
snprintf(sql, sizeof(sql), "SELECT Value FROM Symbols WHERE Symbol IS '%s'", symbol);
rv = sqlite3_prepare_v2(db, sql, strlen(sql) + 1, &stmt, NULL);
if (rv) {
return 0;
}
while (1) {
rv = sqlite3_step(stmt);
if (rv == SQLITE_ROW) {
if (row) {
err = 1;
break;
}
x = sqlite3_column_int64(stmt, 0);
row++;
#if 666 /* a bit faster */
break;
#endif
} else if (rv == SQLITE_DONE) {
break;
} else {
err = 2;
break;
}
}
sqlite3_finalize(stmt);
if (err || !row) {
return 0;
}
return x;
}
static char *
kdb_get_addrsym(sqlite3 *db, addr_t addr)
{
int rv;
char sql[4096];
int err = 0;
int row = 0;
sqlite3_stmt *stmt;
char *x = NULL;
snprintf(sql, sizeof(sql), "SELECT Symbol FROM Symbols WHERE Value IS %lld", addr);
rv = sqlite3_prepare_v2(db, sql, strlen(sql) + 1, &stmt, NULL);
if (rv) {
return NULL;
}
while (1) {
rv = sqlite3_step(stmt);
if (rv == SQLITE_ROW) {
if (row) {
err = 1;
break;
}
free(x);
x = strdup((char *)sqlite3_column_text(stmt, 0));
row++;
#if 666 /* a bit faster */
break;
#endif
} else if (rv == SQLITE_DONE) {
break;
} else {
err = 2;
break;
}
}
sqlite3_finalize(stmt);
if (err || !row) {
free(x);
return NULL;
}
return x;
}
static void
process_table32(addr_t table, addr_t base, const char *name, unsigned sz, sqlite3 *db)
{
unsigned i;
addr_t sbase;
addr_t start = table - 3 * sizeof(uint32_t);
assert(((uint32_t *)(kernel + table))[-3] == 0);
assert(((uint32_t *)(kernel + table))[-2] == 0);
assert(((uint32_t *)(kernel + table))[-1] == 0);
assert(((uint32_t *)(kernel + table))[0] != 0);
while (((uint32_t *)(kernel + start))[-1] == 0 && !is_import(start - sizeof(uint32_t))) {
start -= sizeof(uint32_t);
table -= sizeof(uint32_t);
}
while (((uint32_t *)(kernel + start))[-1] || is_import(start - sizeof(uint32_t))) {
start -= sizeof(uint32_t);
}
i = 0;
sbase = start + base;
if (for_ida > 0) {
//i += 2;
//sbase -= 2 * sizeof(uint32_t);
printf(" id = AddStrucEx(-1, \"" VPREFIX "%s\", 0);\n", name);
} else if (for_ida < 0) {
printf("struct %s {\n", name);
} else {
printf("%s.vtable=0x%llx (0x%llx)\n" "\t0\n\t0\n", name, start - 2 * sizeof(uint32_t), start - 2 * sizeof(uint32_t) + base);
}
while (start < table - 3 * sizeof(uint32_t)) {
addr_t val = *(uint32_t *)(kernel + start);
char *sym = kdb_get_addrsym(db, val);
if (!sym) {
const char *tmp = is_import(start);
if (tmp) {
sym = strdup(tmp);
}
}
if (!sym) {
char tmp[256];
snprintf(tmp, sizeof(tmp), "sub_%08llx", val);
sym = strdup(tmp);
}
if (for_ida > 0) {
printf(" member(id, 0x%llx, \"%s\", %zu);\n", val, sym, i * sizeof(uint32_t));
i++;
//printf("Message(\"[%%s]\\n\", Demangle(\"%s\", 0));\n", sym);
} else if (for_ida < 0) {
char *paren, *dem = demangle_name(sym);
assert(dem);
paren = strchr(dem, '(');//)
assert(paren);
printf(" " RETTYPE "(*%.*s)%s;\n", (int)(paren - dem), dem, paren);
free(dem);
} else {
printf(" %s\n", sym);
}
free(sym);
start += sizeof(uint32_t);
}
if (for_ida > 0) {
printf(" MakeStruct(0x%llx, \"" VPREFIX "%s\");\n", sbase, name);
printf(" id = AddStrucEx(-1, \"" OPREFIX "%s\", 0);\n", name);
printf(" AddStrucMember(id, \"%s\", %u, 0x25500400, 0XFFFFFFFF, %zu, 0XFFFFFFFF, 0, 0x000002);\n", "vtable", 0, sizeof(uint32_t));
printf(" SetType(GetMemberId(id, %u), \"" VPREFIX "%s *\");\n", 0, name);
if (sz > sizeof(uint32_t)) {
sz -= sizeof(uint32_t);
if (sz > 1) {
printf(" AddStrucMember(id, \"field_%zX\", %#zX, 0x000400, -1, %u);\n", sizeof(uint32_t), sizeof(uint32_t), sz - 1);
}
sz += sizeof(uint32_t) - 1;
printf(" AddStrucMember(id, \"field_%X\", %#X, 0x000400, -1, 1);\n", sz, sz);
}
} else if (for_ida < 0) {
printf("};\n");
}
}
static void
process_table64(addr_t table, addr_t base, const char *name, unsigned sz, sqlite3 *db)
{
unsigned i;
addr_t sbase;
addr_t start = table - 3 * sizeof(uint64_t);
assert(((uint64_t *)(kernel + table))[-3] == 0);
assert(((uint64_t *)(kernel + table))[-2] == 0);
assert(((uint64_t *)(kernel + table))[-1] == 0);
assert(((uint64_t *)(kernel + table))[0] != 0);
while (((uint64_t *)(kernel + start))[-1] == 0 && !is_import(start - sizeof(uint64_t))) {
start -= sizeof(uint64_t);
table -= sizeof(uint64_t);
}
while (((uint64_t *)(kernel + start))[-1] || is_import(start - sizeof(uint64_t))) {
start -= sizeof(uint64_t);
}
i = 0;
sbase = start + base;
if (for_ida > 0) {
//i += 2;
//sbase -= 2 * sizeof(uint64_t);
printf(" id = AddStrucEx(-1, \"" VPREFIX "%s\", 0);\n", name);
} else if (for_ida < 0) {
printf("struct %s {\n", name);
} else {
printf("%s.vtable=0x%llx (0x%llx)\n" "\t0\n\t0\n", name, start - 2 * sizeof(uint64_t), start - 2 * sizeof(uint64_t) + base);
}
while (start < table - 3 * sizeof(uint64_t)) {
addr_t val = *(uint64_t *)(kernel + start);
char *sym = kdb_get_addrsym(db, val);
if (!sym) {
const char *tmp = is_import(start);
if (tmp) {
sym = strdup(tmp);
}
}
if (!sym) {
char tmp[256];
snprintf(tmp, sizeof(tmp), "sub_%08llx", val);
sym = strdup(tmp);