forked from ericcastro/Symbolicator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSymbolicator.mm
279 lines (206 loc) · 8.1 KB
/
Symbolicator.mm
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
//
// Symbolicator.m
// Symbolicator
//
// Created by Eric Castro on 13/02/13.
//
//
#import "AppSupport/AppSupport.h"
#include <mach/mach.h>
#include <objc/runtime.h>
#include <sys/time.h>
#import "Symbolicator.h"
#define kSCSymbolsRequest @"SCSymbolsRequest"
#define kSCMessagingCenterName @"ro.cast.eric.Symbolicator"
MethodEntry *createMethodEntry(unsigned imp, const char *className,const char *methodName, BOOL isClassMethod)
{
MethodEntry *entry = (MethodEntry *)malloc(sizeof(MethodEntry));
entry->imp = imp;
entry->name[0] = NO ? '+' : '-';
entry->name[1] = '[';
strcpy(entry->name+2,className);
entry->name[strlen(className)+2] = ' ';
strcpy(entry->name+strlen(className)+3,methodName);
strcpy(entry->name+strlen(className)+strlen(methodName)+3,"]");
return entry;
}
@implementation Symbolicator
- (id)init
{
self = [super init];
if (self) {
_symbolicator = [[VMUSymbolicator symbolicatorForTask:mach_task_self()] retain];
_processInfo = [[VMUProcessDescription alloc] initWithPid:0 orTask:mach_task_self()];
_machContainer = [[VMUMachTaskContainer machTaskContainerWithTask:mach_task_self()] retain];
dispatch_async(dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[self load];
});
}
return self;
}
- (void) load
{
NSLog(@"Symbolicator: Loading all methods addresses from objc runtime");
int numClasses;
unsigned int numInstanceMethods;
unsigned int numClassMethods;
Class * classes = NULL;
Method * instanceMethods = NULL;
Method * classMethods = NULL;
classes = NULL;
char className[128];
numClasses = objc_getClassList(NULL, 0);
unsigned int imp;
_maxAddress = 0;
_minAddress = 2^32;
timeval time1, time2;
gettimeofday(&time1, NULL);
long millis1 = (time1.tv_sec * 1000) + (time1.tv_usec / 1000);
MethodEntry *entry;
if (numClasses > 0)
{
classes = (Class *)malloc(sizeof(Class) * numClasses);
numClasses = objc_getClassList(classes, numClasses);
for (int i=0;i<numClasses;i++)
{
classMethods = class_copyMethodList(objc_getMetaClass(class_getName(classes[i])), &numClassMethods);
instanceMethods = class_copyMethodList(classes[i], &numInstanceMethods);
for (int j=0; j<numClassMethods; j++) {
imp = (NSUInteger)method_getImplementation(classMethods[j]);
entry = createMethodEntry(imp, class_getName(classes[i]), sel_getName(method_getName(classMethods[j])), YES);
HASH_ADD_INT(_methodList, imp, entry);
if (imp > _maxAddress) _maxAddress = imp;
if (imp < _minAddress) _minAddress = imp;
}
for (int j=0; j<numInstanceMethods; j++) {
imp = (NSUInteger)method_getImplementation(instanceMethods[j]);
entry = createMethodEntry(imp, class_getName(classes[i]), sel_getName(method_getName(instanceMethods[j])), NO);
HASH_ADD_INT(_methodList, imp, entry);
if (imp > _maxAddress) _maxAddress = imp;
if (imp < _minAddress) _minAddress = imp;
}
free(classMethods);
free(instanceMethods);
}
free(classes);
}
gettimeofday(&time2, NULL);
long millis2 = (time2.tv_sec * 1000) + (time2.tv_usec / 1000);
NSLog(@"Symbolicator: All addresses loaded and sorted %ld milliseconds",millis2-millis1);//-millis1/1000.0);
}
- (NSDictionary *)symbolicateAddresses:(NSArray *)addresses
{
NSMutableDictionary *response = [NSMutableDictionary dictionaryWithCapacity:addresses.count];
NSString *hexAddress;
NSString *methodName;
unsigned long long longLongAddress;
// Try to get the symbols for all requested addresses
for (NSNumber *address in addresses)
{
longLongAddress = [address unsignedLongLongValue];
hexAddress = [NSString stringWithFormat:@"0x%08llx",longLongAddress];
methodName = [self findMethod:address slide:[self slideForAddress:longLongAddress]];
if (methodName)
{
response[hexAddress] = methodName;
continue;
}
VMUSymbol *symbol = [_symbolicator symbolForAddress:longLongAddress];
if ([symbol name])
response[hexAddress] = [symbol name];
}
return response;
}
- (NSString *)findMethod:(NSNumber *)address slide:(unsigned)slide
{
unsigned int newAddress = [address unsignedIntValue];
unsigned searchCount = 0;
struct MethodEntry *entry;
do {
entry = NULL;
HASH_FIND_INT( _methodList, &newAddress, entry );
if (entry)
return [NSString stringWithFormat:@"(0x%08x): %s", newAddress-slide-1, entry->name];
searchCount++;
if (searchCount > 8096)
return [NSString stringWithFormat:@"(0x%08x):", [address unsignedIntValue]-slide-1];
newAddress = newAddress-1;
} while (newAddress!=_minAddress);
return nil;
}
- (unsigned)slideForAddress:(unsigned long long)address
{
VMUMemory_NonContiguousTask *memory;
VMUMachOHeader *header;
VMURange range;
unsigned long long textStart;
for (NSDictionary *image in _processInfo.binaryImages)
{
range.location = [image[@"StartAddress"] unsignedLongLongValue];
range.length = [image[@"Size"] unsignedLongLongValue];
if (address >= range.location &&
address <= range.location+range.length)
{
memory = [VMUMemory_NonContiguousTask memoryWithMachTaskContainer:_machContainer addressRange:range architecture:[VMUArchitecture armArchitecture]];
header = [VMUMachOHeader headerWithMemory:memory address:range.location name:image[@"Identifier"] path:image[@"ExecutablePath"] timestamp:[NSDate date]];
textStart = [[header segmentNamed:@"__TEXT"] vmaddr];
return range.location-textStart;
}
}
return 0;
}
@end
// Replacement for _NSCallStackArray - imitates the exact same output when printed with NSLog
@implementation SCCallStackArray
+ (id)arrayWithCallStack:(NSArray *)array
{
return [[[SCCallStackArray alloc] initWithCallStack:array] autorelease];
}
- (id)initWithCallStack:(NSArray *)array
{
self = [super init];
if (self) {
_descriptions = [[NSMutableArray alloc] initWithCapacity:[array count]];
NSString *pos, *nextpos;
for (int i=0;i<[array count];i++) //fugly stuff - must eliminate first line (that's Symbolicator's call you don't need) and preserve the numbers with the correct spacing
{
// pos = [array[i] componentsSeparatedByString:@" "][0];
// nextpos = [array[i+1] componentsSeparatedByString:@" "][0];
// _descriptions[i] = [NSString stringWithFormat:@"%@ %@",pos,[array[i+1] substringFromIndex:[nextpos length]]];
_descriptions[i] = array[i];
}
}
return self;
}
- (NSUInteger)count
{
return [_descriptions count];
}
- (id)objectAtIndex:(NSUInteger)index
{
return _descriptions[index];
}
- (id)descriptionWithLocale:(id)locale indent:(NSUInteger)level
{
NSString *indentation = [@"" stringByPaddingToLength:level withString:@" " startingAtIndex:0];
NSMutableString *output = [NSMutableString stringWithCapacity:4096];
[output appendString:indentation];
[output appendString:@"(\n"];
for (NSString *line in _descriptions)
[output appendFormat:@"%@\t%@\n",indentation,line];
[output appendString:indentation];
[output appendString:@")"];
return [NSString stringWithString:output];
}
- (void) loadSymbols:(NSDictionary *)symbols // Replace all <redacted> strings with actual symbol names
{
for (int i=0;i<[_descriptions count];i++)
for (NSString *hexAddress in [symbols allKeys])
_descriptions[i] = [[_descriptions[i] stringByReplacingOccurrencesOfString:[NSString stringWithFormat:@"%@",hexAddress] withString:[NSString stringWithFormat:@"%@ %@",hexAddress,symbols[hexAddress]]] stringByReplacingOccurrencesOfString:@"<redacted>" withString:@""];
}
- (void)dealloc
{
[_descriptions release];
[super dealloc];
}
@end