forked from evilpenguin/XPCSniffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tweak.mm
418 lines (337 loc) · 16.7 KB
/
Tweak.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
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
/*
* XPCSniffer
*
* Created by EvilPenguin
*/
#include <Foundation/Foundation.h>
#include <dlfcn.h>
#include <time.h>
#include <pthread.h>
#include <syslog.h>
#include "libproc/libproc.h"
#include "xpc/xpc.h"
#include "substrate.h"
#define INSN_CALL 0x94000000, 0xFC000000
#pragma mark - variables
static dispatch_queue_t _xpcsniffer_queue = dispatch_queue_create("XPCSniffer", DISPATCH_QUEUE_SERIAL);
static CFPropertyListRef (*__CFBinaryPlistCreate15)(const uint8_t *, uint64_t) = nil;
#pragma mark - functions
static uint64_t _xpcsniffer_real_signextend_64(uint64_t imm, uint8_t bit);
static uintptr_t *_xpcsniffer_step64(uint32_t *base, size_t length, uint8_t step_count, uint32_t what, uint32_t mask);
static NSString *_xpcsniffer_get_timestring();
static NSMutableDictionary *_xpcsniffer_dictionary(xpc_connection_t connection);
static NSString *_xpcsniffer_connection_name(xpc_connection_t connection);
static NSString *_xpcsniffer_proc_name(int pid);
static bool _xpcsniffer_message_dump(const char *key, xpc_object_t value, NSMutableDictionary *logDictionary) ;
static bool _xpcsniffer_dumper(xpc_object_t obj, NSMutableDictionary *logDictionary);
static int _xpcsniffer_bplist_type(const char *bytes, size_t length);
static NSString *_xpcsniffer_parse_bplist(const char *bytes, size_t length, int type);
#pragma mark - private
#ifdef DEBUG
#define DLog(FORMAT, ...) syslog(LOG_ERR, "+[XPCSniffer] %s\n", [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);
#else
#define DLog(...) (void)0
#endif
static uint64_t _xpcsniffer_real_signextend_64(uint64_t imm, uint8_t bit) {
if ((imm >> bit) & 1)
return (-1LL << (bit + 1)) + imm;
return imm;
}
static uintptr_t *_xpcsniffer_step64(uint32_t *base, size_t length, uint8_t step_count, uint32_t what, uint32_t mask) {
uint32_t *start = (uint32_t *)base;
uint32_t *end = start + length;
uint8_t current_step_count = 0;
while (start < end) {
uint32_t operation = *start;
if ((operation & mask) == what) {
if (++current_step_count == step_count) {
signed imm = (operation & 0x3ffffff) << 2;
imm = _xpcsniffer_real_signextend_64(imm, 27);
uintptr_t addr = reinterpret_cast<uintptr_t>(start) + imm;
return (uintptr_t *)addr;
}
}
start++;
}
return NULL;
}
static NSString *_xpcsniffer_get_timestring() {
time_t now = time(NULL);
char *timeString = ctime(&now);
timeString[strlen(timeString) - 1] = '\0';
return [NSString stringWithUTF8String:timeString];
}
static NSMutableDictionary *_xpcsniffer_dictionary(xpc_connection_t connection) {
NSMutableDictionary *dictionary = [NSMutableDictionary dictionary];
dictionary[@"connection_address"] = [NSString stringWithFormat:@"%p", connection];
dictionary[@"connection_time"] = _xpcsniffer_get_timestring();
dictionary[@"xpc_message"] = [NSMutableDictionary dictionary];
return dictionary;
}
static NSString *_xpcsniffer_connection_name(xpc_connection_t connection) {
const char *name = xpc_connection_get_name(connection);
if (name) return @(name);
return @"?";
}
static NSString *_xpcsniffer_proc_name(int pid) {
static char buffer[2048];
proc_name(pid, buffer, 2048);
if (strlen(buffer) == 0) {
buffer[0] = '?';
}
return @(buffer);
}
static NSString *_xpcsniffer_hex_string(const char *bytes, size_t length) {
NSMutableString *hexString = [NSMutableString string];
for (int i = 0; i < length; i++) [hexString appendFormat:@"%02x ", (unsigned char)bytes[i]];
return hexString;
}
static bool _xpcsniffer_message_dump(const char *key, xpc_object_t value, NSMutableDictionary *logDictionary) {
NSString *logKey = [NSString stringWithUTF8String:key];
xpc_type_t type = xpc_get_type(value);
if (type == XPC_TYPE_NULL) logDictionary[logKey] = @"NULL";
else if (type == XPC_TYPE_ACTIVITY) logDictionary[logKey] = @"Activity";
else if (type == XPC_TYPE_DATE) logDictionary[logKey] = @"Date";
else if (type == XPC_TYPE_SHMEM) logDictionary[logKey] = @"Shared memory";
else if (type == XPC_TYPE_ENDPOINT) logDictionary[logKey] = @"XPC Endpoint";
else if (type == XPC_TYPE_BOOL) logDictionary[logKey] = @(xpc_bool_get_value(value));
else if (type == XPC_TYPE_DOUBLE) logDictionary[logKey] = @(xpc_double_get_value(value));
else if (type == XPC_TYPE_INT64) logDictionary[logKey] = @(xpc_int64_get_value(value));
else if (type == XPC_TYPE_UINT64) logDictionary[logKey] = @(xpc_uint64_get_value(value));
else if (type == XPC_TYPE_STRING) logDictionary[logKey] = @(xpc_string_get_string_ptr(value));
else if (type == XPC_TYPE_UUID) {
char buf[256];
uuid_unparse(xpc_uuid_get_bytes(value), buf);
logDictionary[logKey] = @(buf);
}
else if (type == XPC_TYPE_FD) {
char buf[4096];
int fd = xpc_fd_dup(value);
fcntl(fd, F_GETPATH, buf);
logDictionary[logKey] = @(buf);
}
else if (type == XPC_TYPE_DATA) {
size_t length = xpc_data_get_length(value);
const char *bytes = (const char *)xpc_data_get_bytes_ptr(value);
if (bytes) {
int plistType = _xpcsniffer_bplist_type(bytes, length);
if (plistType >= 0) {
logDictionary[logKey] = _xpcsniffer_parse_bplist(bytes, length, plistType);
}
else {
logDictionary[logKey] = _xpcsniffer_hex_string(bytes, length);
}
}
}
else if (type == XPC_TYPE_ARRAY) {
_xpcsniffer_dumper(value, logDictionary);
}
else if (type == XPC_TYPE_DICTIONARY) {
_xpcsniffer_dumper(value, logDictionary);
}
else {
logDictionary[logKey] = [NSString stringWithFormat:@"Unknown: %p", type];
}
return true;
}
static int _xpcsniffer_bplist_type(const char *bytes, size_t length) {
int type = -1;
if (bytes && length >= 8) {
if (memcmp(bytes, "bplist16", 8) == 0) type = 16;
else if (memcmp(bytes, "bplist15", 8) == 0) type = 15;
else if (memcmp(bytes, "bplist00", 8) == 0) type = 0;
}
return type;
}
static NSString *_xpcsniffer_parse_bplist(const char *bytes, size_t length, int type) {
NSString *returnValue = nil;
switch (type) {
// bplist00
case 0: {
NSError *error = nil;
NSData *data = [NSData dataWithBytes:bytes length:length];
id plist = [NSPropertyListSerialization propertyListWithData:data options:0 format:nil error:&error];
if (!error && plist) returnValue = [plist description];
break;
}
// bplist15
case 15: {
if (__CFBinaryPlistCreate15) {
CFPropertyListRef plist = __CFBinaryPlistCreate15((const uint8_t *)bytes, length);
if (plist) {
CFErrorRef dataError = nil;
CFDataRef xmlData = CFPropertyListCreateData(kCFAllocatorDefault, plist, kCFPropertyListXMLFormat_v1_0, 0, &dataError);
if (!dataError && xmlData) {
NSData *data = (__bridge NSData *)xmlData;
returnValue = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
CFRelease(xmlData);
}
}
}
else {
returnValue = _xpcsniffer_hex_string(bytes, length);
}
break;
}
// bplist16
case 16:
returnValue = _xpcsniffer_hex_string(bytes, length);
break;
}
return returnValue;
}
static bool _xpcsniffer_dumper(xpc_object_t obj, NSMutableDictionary *logDictionary) {
xpc_type_t type = xpc_get_type(obj);
if (type == XPC_TYPE_CONNECTION) {
int pid = xpc_connection_get_pid(obj);
logDictionary[@"connection_name"] = _xpcsniffer_connection_name(obj);
logDictionary[@"process_id"] = @(pid);
logDictionary[@"process_name"] = _xpcsniffer_proc_name(pid);
}
else if (type == XPC_TYPE_ARRAY) {
size_t count = xpc_array_get_count(obj);
if (count > 0) {
xpc_array_apply(obj, ^(size_t index, xpc_object_t value) {
NSString *key = [NSString stringWithFormat:@"array_level_%lu", index];
logDictionary[key] = [NSMutableDictionary dictionary];
return _xpcsniffer_dumper(value, logDictionary[key]);
});
}
}
else if (type == XPC_TYPE_DICTIONARY) {
size_t count = xpc_dictionary_get_count(obj);
if (count > 0) {
xpc_dictionary_apply(obj, ^(const char *key, xpc_object_t value) {
return _xpcsniffer_message_dump(key, value, logDictionary);
});
}
}
return true;
}
static void _xpcsniffer_log_to_file(NSDictionary *dictionary) {
dispatch_async(_xpcsniffer_queue, ^{
NSString *cachesDirectory = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) firstObject];
NSString *logPath = [cachesDirectory stringByAppendingPathComponent:@"XPCSniffer.log"];
NSLog(@"+[XPCSniffer] Writing to %@", logPath);
if (![NSFileManager.defaultManager fileExistsAtPath:logPath]) {
[NSData.data writeToFile:logPath atomically:YES];
}
// Make message
NSError *error = nil;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:dictionary options:0 error:&error];
if (!error && jsonData) {
NSString *message = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
message = [message stringByAppendingString:@"\n"];
// Append message
NSFileHandle *handle = [NSFileHandle fileHandleForWritingAtPath:logPath];
[handle truncateFileAtOffset:handle.seekToEndOfFile];
[handle writeData:[message dataUsingEncoding:NSUTF8StringEncoding]];
[handle closeFile];
}
});
}
#pragma mark - xpc_connection_create
// xpc_connection_t xpc_connection_create(const char *name, dispatch_queue_t targetq);
__unused static xpc_connection_t (*orig_xpc_connection_create)(const char *name, dispatch_queue_t targetq);
__unused static xpc_connection_t new_xpc_connection_create(const char *name, dispatch_queue_t targetq) {
DLog(@"xpc_connection_create(\"%s\", targetq=%p);", name, targetq);
xpc_connection_t returned = orig_xpc_connection_create(name, targetq);
DLog(@"orig_xpc_connection_create(%p)", returned);
return returned;
}
#pragma mark - xpc_pipe_routine
// int xpc_pipe_routine(xpc_object_t xpcPipe, xpc_object_t *in, xpc_object_t *out);
__unused static int (*orig_xpc_pipe_routine)(xpc_object_t xpcPipe, xpc_object_t *in, xpc_object_t *out);
__unused static int new_xpc_pipe_routine (xpc_object_t xpcPipe, xpc_object_t *in, xpc_object_t *out) {
// Call orig
int returnValue = orig_xpc_pipe_routine(xpcPipe, in, out);
// Log
xpc_object_t message = *out;
NSMutableDictionary *logDictionary = _xpcsniffer_dictionary(message);
logDictionary[@"pipe_desc"] = @(xpc_copy_description(xpcPipe));
_xpcsniffer_dumper(message, logDictionary[@"xpc_message"]);
DLog(@"XPC_PRO %@", logDictionary);
return returnValue;
}
#pragma mark - xpc_connection_send_message
// void xpc_connection_send_message(xpc_connection_t connection, xpc_object_t message);
__unused static void (*orig_xpc_connection_send_message)(xpc_connection_t connection, xpc_object_t message);
__unused static void new_xpc_connection_send_message(xpc_connection_t connection, xpc_object_t message) {
NSMutableDictionary *logDictionary = _xpcsniffer_dictionary(connection);
_xpcsniffer_dumper(connection, logDictionary);
_xpcsniffer_dumper(message, logDictionary[@"xpc_message"]);
DLog(@"XPC_CSM %@", logDictionary);
_xpcsniffer_log_to_file(logDictionary);
orig_xpc_connection_send_message(connection, message);
}
#pragma mark - xpc_connection_send_message_with_reply
// void xpc_connection_send_message_with_reply(xpc_connection_t connection, xpc_object_t message, dispatch_queue_t replyq, xpc_handler_t handler);
__unused static void (*orig_xpc_connection_send_message_with_reply)(xpc_connection_t connection, xpc_object_t message, dispatch_queue_t replyq, xpc_handler_t handler);
__unused static void new_xpc_connection_send_message_with_reply(xpc_connection_t connection, xpc_object_t message, dispatch_queue_t replyq, xpc_handler_t handler) {
NSMutableDictionary *logDictionary = _xpcsniffer_dictionary(connection);
_xpcsniffer_dumper(connection, logDictionary);
_xpcsniffer_dumper(message, logDictionary[@"xpc_message"]);
DLog(@"XPC_CSMR %@", logDictionary);
_xpcsniffer_log_to_file(logDictionary);
orig_xpc_connection_send_message_with_reply(connection, message, replyq, handler);
}
#pragma mark - xpc_connection_send_message_with_reply_sync
// xpc_object_t xpc_connection_send_message_with_reply_sync(xpc_connection_t connection, xpc_object_t message);
__unused static xpc_object_t (*orig_xpc_connection_send_message_with_reply_sync)(xpc_connection_t connection, xpc_object_t message);
__unused static xpc_object_t new_xpc_connection_send_message_with_reply_sync(xpc_connection_t connection, xpc_object_t message) {
NSMutableDictionary *logDictionary = _xpcsniffer_dictionary(connection);
_xpcsniffer_dumper(connection, logDictionary);
_xpcsniffer_dumper(message, logDictionary[@"xpc_message"]);
DLog(@"XPC_CSMRS %@", logDictionary);
_xpcsniffer_log_to_file(logDictionary);
return orig_xpc_connection_send_message_with_reply_sync(connection, message);
}
#pragma mark - ctor
%ctor {
@autoreleasepool {
DLog(@"~~ Hooking ~~");
// CoreFoundation
void *cf_handle = dlopen("/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation", RTLD_NOW);
DLog(@"cf_handle: %p", cf_handle);
// _CFXPCCreateCFObjectFromXPCMessage
uint32_t *_CFXPCCreateCFObjectFromXPCMessage = (uint32_t *)dlsym(cf_handle, "_CFXPCCreateCFObjectFromXPCMessage");
DLog(@"_CFXPCCreateCFObjectFromXPCMessage %p", _CFXPCCreateCFObjectFromXPCMessage);
// __CFBinaryPlistCreate15
__CFBinaryPlistCreate15 = (CFPropertyListRef(*)(const uint8_t *, uint64_t))_xpcsniffer_step64(_CFXPCCreateCFObjectFromXPCMessage, 64, 2, INSN_CALL);
DLog(@"__CFBinaryPlistCreate15 %p", __CFBinaryPlistCreate15);
// libxpc
void *libxpc_handle = dlopen("/usr/lib/system/libxpc.dylib", RTLD_NOW);
DLog(@"libxpc: %p", libxpc_handle);
// xpc_connection_create
void *xpc_connection_create = dlsym(libxpc_handle, "xpc_connection_create");
if (xpc_connection_create) {
DLog(@"xpc_connection_create %p", xpc_connection_create);
MSHookFunction((void *)xpc_connection_create, (void *)new_xpc_connection_create, (void **)&orig_xpc_connection_create);
}
// xpc_pipe_routine
void *xpc_pipe_routine = dlsym(libxpc_handle, "xpc_pipe_routine");
if (xpc_pipe_routine) {
DLog(@"xpc_pipe_routine %p", xpc_pipe_routine);
MSHookFunction((void *)xpc_pipe_routine, (void *)new_xpc_pipe_routine, (void **)&orig_xpc_pipe_routine);
}
// xpc_connection_send_message
void *xpc_connection_send_message = dlsym(libxpc_handle, "xpc_connection_send_message");
if (xpc_connection_send_message) {
DLog(@"xpc_connection_send_message %p", xpc_connection_send_message);
MSHookFunction((void *)xpc_connection_send_message, (void *)new_xpc_connection_send_message, (void **)&orig_xpc_connection_send_message);
}
// xpc_connection_send_message_with_reply
void *xpc_connection_send_message_with_reply = dlsym(libxpc_handle, "xpc_connection_send_message_with_reply");
if (xpc_connection_send_message_with_reply) {
DLog(@"xpc_connection_send_message_with_reply %p", xpc_connection_send_message_with_reply);
MSHookFunction((void *)xpc_connection_send_message_with_reply, (void *)new_xpc_connection_send_message_with_reply, (void **)&orig_xpc_connection_send_message_with_reply);
}
// xpc_connection_send_message_with_reply_sync
void *xpc_connection_send_message_with_reply_sync = dlsym(libxpc_handle, "xpc_connection_send_message_with_reply_sync");
if (xpc_connection_send_message_with_reply_sync) {
DLog(@"xpc_connection_send_message_with_reply_sync %p", xpc_connection_send_message_with_reply_sync);
MSHookFunction((void *)xpc_connection_send_message_with_reply_sync, (void *)new_xpc_connection_send_message_with_reply_sync, (void **)&orig_xpc_connection_send_message_with_reply_sync);
}
DLog(@"~~ End Hooking ~~");
}
}