forked from nygard/class-dump
-
Notifications
You must be signed in to change notification settings - Fork 241
/
class-dump.m
496 lines (426 loc) · 23.2 KB
/
class-dump.m
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
// -*- mode: ObjC -*-
// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files.
// Copyright (C) 1997-1998, 2000-2001, 2004-2015 Steve Nygard.
#include <getopt.h>
#import "CDClassDump.h"
#import "CDFindMethodVisitor.h"
#import "CDClassDumpVisitor.h"
#import "CDMultiFileVisitor.h"
#import "CDMachOFile.h"
#import "CDFatFile.h"
#import "CDFatArch.h"
#import "CDSearchPathState.h"
#import "CDSymbolsGeneratorVisitor.h"
#import "CDXibStoryBoardProcessor.h"
#import "CDCoreDataModelProcessor.h"
#import "CDPbxProjectProcessor.h"
#import "CDSymbolMapper.h"
#import "CDSystemProtocolsProcessor.h"
#import "CDdSYMProcessor.h"
NSString *defaultSymbolMappingPath = @"symbols.json";
void print_usage(void)
{
fprintf(stderr,
"ios-class-guard %s\n"
"Usage: ios-class-guard [options] <mach-o-file>\n"
"\n"
" where options are:\n"
" -F <class> specify class filter for symbols obfuscator (also protocol))\n"
" -i <symbol> ignore obfuscation of specific symbol)\n"
" --arch <arch> choose a specific architecture from a universal binary (ppc, ppc64, i386, x86_64, armv6, armv7, armv7s, arm64)\n"
" --list-arches list the arches in the file, then exit\n"
" --sdk-ios specify iOS SDK version (will look for /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS<version>.sdk\n"
" or /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS<version>.sdk)\n"
" --sdk-mac specify Mac OS X version (will look for /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX<version>.sdk\n"
" or /Developer/SDKs/MacOSX<version>.sdk)\n"
" --sdk-root specify the full SDK root path (or use --sdk-ios/--sdk-mac for a shortcut)\n"
" -X <directory> base directory for XIB, storyboards (will be searched recursively)\n"
" -P <path> path to project.pbxproj of Pods project (located inside Pods.xcodeproj)\n"
" -O <path> path to file where obfuscated symbols are written\n"
" -m <path> path to symbol file map (default value symbols.json)\n"
" -c <path> path to symbolicated crash dump\n"
" --dsym <path> path to dSym file to translate\n"
" --dsym-out <path> path to dSym file to translate\n"
,
CLASS_DUMP_VERSION
);
}
#define CD_OPT_ARCH 1
#define CD_OPT_LIST_ARCHES 2
#define CD_OPT_VERSION 3
#define CD_OPT_SDK_IOS 4
#define CD_OPT_SDK_MAC 5
#define CD_OPT_SDK_ROOT 6
#define CD_OPT_HIDE 7
#define CD_OPT_DSYM 8
#define CD_OPT_DSYM_OUT 9
int main(int argc, char *argv[])
{
@autoreleasepool {
NSString *searchString;
BOOL shouldGenerateSeparateHeaders = NO;
BOOL shouldListArches = NO;
BOOL shouldPrintVersion = NO;
CDArch targetArch;
BOOL hasSpecifiedArch = NO;
BOOL generateSymbolsTable = NO;
NSString *outputPath;
NSMutableSet *hiddenSections = [NSMutableSet set];
NSMutableArray *classFilter = [NSMutableArray new];
NSMutableArray *ignoreSymbols = [NSMutableArray new];
NSString *xibBaseDirectory = nil;
NSString *podsPath = nil;
NSString *symbolsPath = nil;
NSString *symbolMappingPath = nil;
NSString *crashDumpPath = nil;
NSString *dSYMPath = nil;
NSString *dSYMOutPath = nil;
int ch;
BOOL errorFlag = NO;
struct option longopts[] = {
{ "show-ivar-offsets", no_argument, NULL, 'a' },
{ "show-imp-addr", no_argument, NULL, 'A' },
{ "match", required_argument, NULL, 'C' },
{ "find", required_argument, NULL, 'f' },
{ "generate-multiple-files", no_argument, NULL, 'H' },
{ "sort-by-inheritance", no_argument, NULL, 'I' },
{ "output-dir", required_argument, NULL, 'o' },
{ "recursive", no_argument, NULL, 'r' },
{ "sort", no_argument, NULL, 's' },
{ "sort-methods", no_argument, NULL, 'S' },
{ "generate-symbols-table", no_argument, NULL, 'G' },
{ "filter-class", no_argument, NULL, 'F' },
{ "ignore-symbols", no_argument, NULL, 'i' },
{ "xib-directory", required_argument, NULL, 'X' },
{ "pods-project", required_argument, NULL, 'P' },
{ "symbols-file", required_argument, NULL, 'O' },
{ "symbols-map", required_argument, NULL, 'm' },
{ "crash-dump", required_argument, NULL, 'c' },
{ "dsym", required_argument, NULL, CD_OPT_DSYM },
{ "dsym-out", required_argument, NULL, CD_OPT_DSYM_OUT },
{ "arch", required_argument, NULL, CD_OPT_ARCH },
{ "list-arches", no_argument, NULL, CD_OPT_LIST_ARCHES },
{ "suppress-header", no_argument, NULL, 't' },
{ "version", no_argument, NULL, CD_OPT_VERSION },
{ "sdk-ios", required_argument, NULL, CD_OPT_SDK_IOS },
{ "sdk-mac", required_argument, NULL, CD_OPT_SDK_MAC },
{ "sdk-root", required_argument, NULL, CD_OPT_SDK_ROOT },
{ "hide", required_argument, NULL, CD_OPT_HIDE },
{ NULL, 0, NULL, 0 },
};
if (argc == 1) {
print_usage();
exit(0);
}
CDClassDump *classDump = [[CDClassDump alloc] init];
generateSymbolsTable = YES;
classDump.shouldProcessRecursively = YES;
classDump.shouldIterateInReverse = YES;
// classDump.maxRecursiveDepth = 1;
// classDump.forceRecursiveAnalyze = @[@"Foundation"];
while ( (ch = getopt_long(argc, argv, "aGAC:f:HIo:rRsStF:X:P:i:O:m:c:", longopts, NULL)) != -1) {
switch (ch) {
case CD_OPT_ARCH: {
NSString *name = [NSString stringWithUTF8String:optarg];
targetArch = CDArchFromName(name);
if (targetArch.cputype != CPU_TYPE_ANY)
hasSpecifiedArch = YES;
else {
fprintf(stderr, "Error: Unknown arch %s\n\n", optarg);
errorFlag = YES;
}
break;
}
case CD_OPT_LIST_ARCHES:
shouldListArches = YES;
break;
case CD_OPT_VERSION:
shouldPrintVersion = YES;
break;
case CD_OPT_SDK_IOS: {
NSString *root = [NSString stringWithUTF8String:optarg];
//NSLog(@"root: %@", root);
NSString *str;
if ([[NSFileManager defaultManager] fileExistsAtPath:@"/Applications/Xcode.app"]) {
str = [NSString stringWithFormat:@"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS%@.sdk", root];
} else if ([[NSFileManager defaultManager] fileExistsAtPath:@"/Developer"]) {
str = [NSString stringWithFormat:@"/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS%@.sdk", root];
}
classDump.sdkRoot = str;
break;
}
case CD_OPT_SDK_MAC: {
NSString *root = [NSString stringWithUTF8String:optarg];
//NSLog(@"root: %@", root);
NSString *str;
if ([[NSFileManager defaultManager] fileExistsAtPath:@"/Applications/Xcode.app"]) {
str = [NSString stringWithFormat:@"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX%@.sdk", root];
} else if ([[NSFileManager defaultManager] fileExistsAtPath:@"/Developer"]) {
str = [NSString stringWithFormat:@"/Developer/SDKs/MacOSX%@.sdk", root];
}
classDump.sdkRoot = str;
break;
}
case CD_OPT_SDK_ROOT: {
NSString *root = [NSString stringWithUTF8String:optarg];
//NSLog(@"root: %@", root);
classDump.sdkRoot = root;
break;
}
case CD_OPT_HIDE: {
NSString *str = [NSString stringWithUTF8String:optarg];
if ([str isEqualToString:@"all"]) {
[hiddenSections addObject:@"structures"];
[hiddenSections addObject:@"protocols"];
} else {
[hiddenSections addObject:str];
}
break;
}
case CD_OPT_DSYM: {
dSYMPath = [NSString stringWithUTF8String:optarg];
break;
}
case CD_OPT_DSYM_OUT: {
dSYMOutPath = [NSString stringWithUTF8String:optarg];
break;
}
case 'G':
generateSymbolsTable = YES;
classDump.shouldProcessRecursively = YES;
classDump.shouldIterateInReverse = YES;
break;
case 'F':
[classFilter addObject:[NSString stringWithUTF8String:optarg]];
break;
case 'X':
xibBaseDirectory = [NSString stringWithUTF8String:optarg];
break;
case 'P':
podsPath = [NSString stringWithUTF8String:optarg];
break;
case 'O':
symbolsPath = [NSString stringWithUTF8String:optarg];
break;
case 'm':
symbolMappingPath = [NSString stringWithUTF8String:optarg];
break;
case 'c':
crashDumpPath = [NSString stringWithUTF8String:optarg];
break;
case 'i':
[ignoreSymbols addObject:[NSString stringWithUTF8String:optarg]];
break;
case 'a':
classDump.shouldShowIvarOffsets = YES;
break;
case 'A':
classDump.shouldShowMethodAddresses = YES;
break;
case 'C': {
NSError *error;
NSRegularExpression *regularExpression = [NSRegularExpression regularExpressionWithPattern:[NSString stringWithUTF8String:optarg]
options:(NSRegularExpressionOptions)0
error:&error];
if (regularExpression != nil) {
classDump.regularExpression = regularExpression;
} else {
fprintf(stderr, "class-dump: Error with regular expression: %s\n\n", [[error localizedFailureReason] UTF8String]);
errorFlag = YES;
}
// Last one wins now.
break;
}
case 'f': {
searchString = [NSString stringWithUTF8String:optarg];
break;
}
case 'H':
shouldGenerateSeparateHeaders = YES;
break;
case 'I':
classDump.shouldSortClassesByInheritance = YES;
break;
case 'o':
outputPath = [NSString stringWithUTF8String:optarg];
break;
case 'r':
classDump.shouldProcessRecursively = YES;
break;
case 's':
classDump.shouldSortClasses = YES;
break;
case 'S':
classDump.shouldSortMethods = YES;
break;
case 't':
classDump.shouldShowHeader = NO;
break;
case '?':
default:
errorFlag = YES;
break;
}
}
if (errorFlag) {
print_usage();
exit(2);
}
if (shouldPrintVersion) {
printf("ios-class-guard %s compiled %s\n", CLASS_DUMP_VERSION, __DATE__ " " __TIME__);
exit(0);
}
if (!symbolMappingPath) {
symbolMappingPath = defaultSymbolMappingPath;
}
if (optind < argc) {
NSString *arg = [NSString stringWithFileSystemRepresentation:argv[optind]];
NSString *executablePath = [arg executablePathForFilename];
if (shouldListArches) {
if (executablePath == nil) {
printf("none\n");
} else {
CDSearchPathState *searchPathState = [[CDSearchPathState alloc] init];
searchPathState.executablePath = executablePath;
id macho = [CDFile fileWithContentsOfFile:executablePath searchPathState:searchPathState];
if (macho == nil) {
printf("none\n");
} else {
if ([macho isKindOfClass:[CDMachOFile class]]) {
printf("%s\n", [[macho archName] UTF8String]);
} else if ([macho isKindOfClass:[CDFatFile class]]) {
printf("%s\n", [[[macho archNames] componentsJoinedByString:@" "] UTF8String]);
}
}
}
} else {
if (executablePath == nil) {
fprintf(stderr, "class-dump: Input file (%s) doesn't contain an executable.\n", [arg fileSystemRepresentation]);
exit(1);
}
classDump.searchPathState.executablePath = [executablePath stringByDeletingLastPathComponent];
CDFile *file = [CDFile fileWithContentsOfFile:executablePath searchPathState:classDump.searchPathState];
if (file == nil) {
NSFileManager *defaultManager = [NSFileManager defaultManager];
if ([defaultManager fileExistsAtPath:executablePath]) {
if ([defaultManager isReadableFileAtPath:executablePath]) {
fprintf(stderr, "class-dump: Input file (%s) is neither a Mach-O file nor a fat archive.\n", [executablePath UTF8String]);
} else {
fprintf(stderr, "class-dump: Input file (%s) is not readable (check read permissions).\n", [executablePath UTF8String]);
}
} else {
fprintf(stderr, "class-dump: Input file (%s) does not exist.\n", [executablePath UTF8String]);
}
exit(1);
}
if (hasSpecifiedArch == NO) {
if ([file bestMatchForLocalArch:&targetArch] == NO) {
fprintf(stderr, "Error: Couldn't get local architecture\n");
exit(1);
}
//NSLog(@"No arch specified, best match for local arch is: (%08x, %08x)", targetArch.cputype, targetArch.cpusubtype);
} else {
//NSLog(@"chosen arch is: (%08x, %08x)", targetArch.cputype, targetArch.cpusubtype);
}
classDump.targetArch = targetArch;
classDump.searchPathState.executablePath = [executablePath stringByDeletingLastPathComponent];
NSError *error;
if (![classDump loadFile:file error:&error depth:0]) {
fprintf(stderr, "Error: %s\n", [[error localizedFailureReason] UTF8String]);
exit(1);
} else {
[classDump processObjectiveCData];
[classDump registerTypes];
CDCoreDataModelProcessor *coreDataModelProcessor = [[CDCoreDataModelProcessor alloc] init];
[classFilter addObjectsFromArray:[coreDataModelProcessor coreDataModelSymbolsToExclude]];
if (![classDump.sdkRoot length]) {
printf("Please specify either --sdk-mac/--sdk-ios or --sdk-root\n");
print_usage();
exit(3);
}
CDSystemProtocolsProcessor *systemProtocolsProcessor = [[CDSystemProtocolsProcessor alloc] initWithSdkPath:classDump.sdkRoot];
[ignoreSymbols addObjectsFromArray:[systemProtocolsProcessor systemProtocolsSymbolsToExclude]];
if (searchString != nil) {
CDFindMethodVisitor *visitor = [[CDFindMethodVisitor alloc] init];
visitor.classDump = classDump;
visitor.searchString = searchString;
[classDump recursivelyVisit:visitor];
} else if (generateSymbolsTable) {
if (symbolsPath == nil) {
printf("Please specify symbols file path\n");
print_usage();
exit(3);
}
CDSymbolsGeneratorVisitor *visitor = [CDSymbolsGeneratorVisitor new];
visitor.classDump = classDump;
visitor.classFilter = classFilter;
visitor.ignoreSymbols = ignoreSymbols;
visitor.symbolsFilePath = symbolsPath;
[classDump recursivelyVisit:visitor];
CDXibStoryBoardProcessor *processor = [[CDXibStoryBoardProcessor alloc] init];
processor.xibBaseDirectory = xibBaseDirectory;
[processor obfuscateFilesUsingSymbols:visitor.symbols];
if (podsPath) {
CDPbxProjectProcessor *projectProcessor = [[CDPbxProjectProcessor alloc] init];
[projectProcessor processPodsProjectAtPath:podsPath symbolsFilePath:symbolsPath];
}
CDSymbolMapper *mapper = [[CDSymbolMapper alloc] init];
[mapper writeSymbolsFromSymbolsVisitor:visitor toFile:symbolMappingPath];
} else if (shouldGenerateSeparateHeaders) {
CDMultiFileVisitor *multiFileVisitor = [[CDMultiFileVisitor alloc] init];
multiFileVisitor.classDump = classDump;
classDump.typeController.delegate = multiFileVisitor;
multiFileVisitor.outputPath = outputPath;
[classDump recursivelyVisit:multiFileVisitor];
} else {
CDClassDumpVisitor *visitor = [[CDClassDumpVisitor alloc] init];
visitor.classDump = classDump;
if ([hiddenSections containsObject:@"structures"]) visitor.shouldShowStructureSection = NO;
if ([hiddenSections containsObject:@"protocols"]) visitor.shouldShowProtocolSection = NO;
[classDump recursivelyVisit:visitor];
}
}
}
} else if (crashDumpPath) {
NSString *crashDump = [NSString stringWithContentsOfFile:crashDumpPath encoding:NSUTF8StringEncoding error:nil];
if (crashDump.length == 0) {
fprintf(stderr, "class-dump: crash dump file does not exist or is empty %s", [crashDumpPath fileSystemRepresentation]);
exit(4);
}
NSString *symbolsData = [NSString stringWithContentsOfFile:symbolMappingPath encoding:NSUTF8StringEncoding error:nil];
if (symbolsData.length == 0) {
fprintf(stderr, "class-dump: symbols file does not exist or is empty %s", [symbolMappingPath fileSystemRepresentation]);
exit(5);
}
CDSymbolMapper *mapper = [[CDSymbolMapper alloc] init];
NSString *processedFile = [mapper processCrashDump:crashDump withSymbols:[NSJSONSerialization JSONObjectWithData:[symbolsData dataUsingEncoding:NSUTF8StringEncoding] options:0 error:nil]];
[processedFile writeToFile:crashDumpPath atomically:YES encoding:NSUTF8StringEncoding error:nil];
} else if (dSYMPath) {
NSString *symbolsData = [NSString stringWithContentsOfFile:symbolMappingPath encoding:NSUTF8StringEncoding error:nil];
if (symbolsData.length == 0) {
fprintf(stderr, "class-dump: symbols file does not exist or is empty %s", [symbolMappingPath fileSystemRepresentation]);
exit(5);
}
NSRange dSYMPathRange = [dSYMPath rangeOfString:@".dSYM"];
if (dSYMPathRange.location == NSNotFound) {
fprintf(stderr, "class-dump: no valid dsym file provided %s", [dSYMOutPath fileSystemRepresentation]);
exit(4);
}
CDdSYMProcessor *processor = [[CDdSYMProcessor alloc] init];
NSArray *dwarfFilesPaths = [processor extractDwarfPathsForDSYM:dSYMPath];
for (NSString *dwarfFilePath in dwarfFilesPaths) {
NSData *dwarfdumpData = [NSData dataWithContentsOfFile:dwarfFilePath];
if (dwarfdumpData.length == 0) {
fprintf(stderr, "class-dump: dwarf file does not exist or is empty %s", [dwarfFilePath fileSystemRepresentation]);
exit(4);
}
NSData *processedFileContent = [processor processDwarfdump:dwarfdumpData
withSymbols:[NSJSONSerialization JSONObjectWithData:[symbolsData dataUsingEncoding:NSUTF8StringEncoding]
options:0
error:nil]];
[processor writeDwarfdump:processedFileContent originalDwarfPath:dwarfFilePath inputDSYM:dSYMPath outputDSYM:dSYMOutPath];
}
}
exit(0); // avoid costly autorelease pool drain, we’re exiting anyway
}
}