-
Notifications
You must be signed in to change notification settings - Fork 28
/
CDClassDump.m
294 lines (240 loc) · 9.6 KB
/
CDClassDump.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
// -*- mode: ObjC -*-
// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files.
// Copyright (C) 1997-2019 Steve Nygard.
#import "CDClassDump.h"
#import "CDFatArch.h"
#import "CDFatFile.h"
#import "CDLCDylib.h"
#import "CDMachOFile.h"
#import "CDObjectiveCProcessor.h"
#import "CDType.h"
#import "CDTypeFormatter.h"
#import "CDTypeParser.h"
#import "CDVisitor.h"
#import "CDLCSegment.h"
#import "CDTypeController.h"
#import "CDSearchPathState.h"
#import "NSString-CDExtensions.h"
NSString *CDErrorDomain_ClassDump = @"CDErrorDomain_ClassDump";
NSString *CDErrorKey_Exception = @"CDErrorKey_Exception";
@interface CDClassDump ()
@end
#pragma mark -
@implementation CDClassDump
{
CDSearchPathState *_searchPathState;
BOOL _shouldProcessRecursively;
BOOL _shouldSortClasses; // And categories, protocols
BOOL _shouldSortClassesByInheritance; // And categories, protocols
BOOL _shouldSortMethods;
BOOL _shouldShowIvarOffsets;
BOOL _shouldShowMethodAddresses;
BOOL _shouldShowHeader;
NSRegularExpression *_regularExpression;
NSString *_sdkRoot;
NSMutableArray *_machOFiles;
NSMutableDictionary *_machOFilesByName;
NSMutableArray *_objcProcessors;
CDTypeController *_typeController;
CDArch _targetArch;
}
- (id)init;
{
if ((self = [super init])) {
_searchPathState = [[CDSearchPathState alloc] init];
_sdkRoot = nil;
_machOFiles = [[NSMutableArray alloc] init];
_machOFilesByName = [[NSMutableDictionary alloc] init];
_objcProcessors = [[NSMutableArray alloc] init];
_typeController = [[CDTypeController alloc] initWithClassDump:self];
// These can be ppc, ppc7400, ppc64, i386, x86_64
_targetArch.cputype = CPU_TYPE_ANY;
_targetArch.cpusubtype = 0;
_shouldShowHeader = YES;
}
return self;
}
#pragma mark - Regular expression handling
- (BOOL)shouldShowName:(NSString *)name;
{
if (self.regularExpression != nil) {
NSTextCheckingResult *firstMatch = [self.regularExpression firstMatchInString:name options:(NSMatchingOptions)0 range:NSMakeRange(0, [name length])];
return firstMatch != nil;
}
return YES;
}
#pragma mark -
- (BOOL)containsObjectiveCData;
{
for (CDObjectiveCProcessor *processor in self.objcProcessors) {
if ([processor hasObjectiveCData])
return YES;
}
return NO;
}
- (BOOL)hasEncryptedFiles;
{
for (CDMachOFile *machOFile in self.machOFiles) {
if ([machOFile isEncrypted]) {
return YES;
}
}
return NO;
}
- (BOOL)hasObjectiveCRuntimeInfo;
{
return self.containsObjectiveCData || self.hasEncryptedFiles;
}
- (BOOL)loadFile:(CDFile *)file error:(NSError *__autoreleasing *)error;
{
//NSLog(@"targetArch: (%08x, %08x)", targetArch.cputype, targetArch.cpusubtype);
CDMachOFile *machOFile = [file machOFileWithArch:_targetArch];
//NSLog(@"machOFile: %@", machOFile);
if (machOFile == nil) {
if (error != NULL) {
NSString *failureReason;
NSString *targetArchName = CDNameForCPUType(_targetArch.cputype, _targetArch.cpusubtype);
if ([file isKindOfClass:[CDFatFile class]] && [(CDFatFile *)file containsArchitecture:_targetArch]) {
failureReason = [NSString stringWithFormat:@"Fat file doesn't contain a valid Mach-O file for the specified architecture (%@). "
"It probably means that class-dump was run on a static library, which is not supported.", targetArchName];
} else {
failureReason = [NSString stringWithFormat:@"File doesn't contain the specified architecture (%@). Available architectures are %@.", targetArchName, file.architectureNameDescription];
}
NSDictionary *userInfo = @{ NSLocalizedFailureReasonErrorKey : failureReason };
*error = [NSError errorWithDomain:CDErrorDomain_ClassDump code:0 userInfo:userInfo];
}
return NO;
}
// Set before processing recursively. This was getting caught on CoreUI on 10.6
assert([machOFile filename] != nil);
[_machOFiles addObject:machOFile];
_machOFilesByName[machOFile.filename] = machOFile;
if ([self shouldProcessRecursively]) {
@try {
for (CDLoadCommand *loadCommand in [machOFile loadCommands]) {
if ([loadCommand isKindOfClass:[CDLCDylib class]]) {
CDLCDylib *dylibCommand = (CDLCDylib *)loadCommand;
if ([dylibCommand cmd] == LC_LOAD_DYLIB) {
[self.searchPathState pushSearchPaths:[machOFile runPaths]];
{
NSString *loaderPathPrefix = @"@loader_path";
NSString *path = [dylibCommand path];
if ([path hasPrefix:loaderPathPrefix]) {
NSString *loaderPath = [machOFile.filename stringByDeletingLastPathComponent];
path = [[path stringByReplacingOccurrencesOfString:loaderPathPrefix withString:loaderPath] stringByStandardizingPath];
}
[self machOFileWithName:path]; // Loads as a side effect
}
[self.searchPathState popSearchPaths];
}
}
}
}
@catch (NSException *exception) {
NSLog(@"Caught exception: %@", exception);
if (error != NULL) {
NSDictionary *userInfo = @{
NSLocalizedFailureReasonErrorKey : @"Caught exception",
CDErrorKey_Exception : exception,
};
*error = [NSError errorWithDomain:CDErrorDomain_ClassDump code:0 userInfo:userInfo];
}
return NO;
}
}
return YES;
}
#pragma mark -
- (void)processObjectiveCData;
{
for (CDMachOFile *machOFile in self.machOFiles) {
CDObjectiveCProcessor *processor = [[[machOFile processorClass] alloc] initWithMachOFile:machOFile];
[processor process];
[_objcProcessors addObject:processor];
}
}
// This visits everything segment processors, classes, categories. It skips over modules. Need something to visit modules so we can generate separate headers.
- (void)recursivelyVisit:(CDVisitor *)visitor;
{
[visitor willBeginVisiting];
for (CDObjectiveCProcessor *processor in self.objcProcessors) {
[processor recursivelyVisit:visitor];
}
[visitor didEndVisiting];
}
- (CDMachOFile *)machOFileWithName:(NSString *)name;
{
NSString *adjustedName = nil;
NSString *executablePathPrefix = @"@executable_path";
NSString *rpathPrefix = @"@rpath";
if ([name hasPrefix:executablePathPrefix]) {
adjustedName = [name stringByReplacingOccurrencesOfString:executablePathPrefix withString:self.searchPathState.executablePath];
} else if ([name hasPrefix:rpathPrefix]) {
//NSLog(@"Searching for %@ through run paths: %@", name, [searchPathState searchPaths]);
for (NSString *searchPath in [self.searchPathState searchPaths]) {
NSString *str = [name stringByReplacingOccurrencesOfString:rpathPrefix withString:searchPath];
//NSLog(@"trying %@", str);
if ([[NSFileManager defaultManager] fileExistsAtPath:str]) {
adjustedName = str;
//NSLog(@"Found it!");
break;
}
}
if (adjustedName == nil) {
adjustedName = name;
//NSLog(@"Did not find it.");
}
} else if (self.sdkRoot != nil) {
adjustedName = [self.sdkRoot stringByAppendingPathComponent:name];
} else {
adjustedName = name;
}
CDMachOFile *machOFile = _machOFilesByName[adjustedName];
if (machOFile == nil) {
CDFile *file = [CDFile fileWithContentsOfFile:adjustedName searchPathState:self.searchPathState];
if (file == nil || [self loadFile:file error:NULL] == NO)
NSLog(@"Warning: Failed to load: %@", adjustedName);
machOFile = _machOFilesByName[adjustedName];
if (machOFile == nil) {
NSLog(@"Warning: Couldn't load MachOFile with ID: %@, adjustedID: %@", name, adjustedName);
}
}
return machOFile;
}
- (void)appendHeaderToString:(NSMutableString *)resultString;
{
// Since this changes each version, for regression testing it'll be better to be able to not show it.
if (self.shouldShowHeader == NO)
return;
[resultString appendString:@"//\n"];
[resultString appendFormat:@"// Generated by class-dump %s.\n", CLASS_DUMP_VERSION];
[resultString appendString:@"//\n"];
[resultString appendString:@"// Copyright (C) 1997-2019 Steve Nygard.\n"];
[resultString appendString:@"//\n\n"];
if (self.sdkRoot != nil) {
[resultString appendString:@"//\n"];
[resultString appendFormat:@"// SDK Root: %@\n", self.sdkRoot];
[resultString appendString:@"//\n\n"];
}
}
- (void)registerTypes;
{
for (CDObjectiveCProcessor *processor in self.objcProcessors) {
[processor registerTypesWithObject:self.typeController phase:0];
}
[self.typeController endPhase:0];
[self.typeController workSomeMagic];
}
- (void)showHeader;
{
if ([self.machOFiles count] > 0) {
[[[self.machOFiles lastObject] headerString:YES] print];
}
}
- (void)showLoadCommands;
{
if ([self.machOFiles count] > 0) {
[[[self.machOFiles lastObject] loadCommandString:YES] print];
}
}
@end