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
|
#include "substitute.h"
#include "substitute-internal.h"
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <time.h>
int main(int argc, char **argv) {
if (argc <= 2) {
printf("usage: test-inject <pid> <dylib>\n");
return 1;
}
int pid = atoi(argv[1]);
char *error;
mach_port_t port = 0;
assert(!mach_port_allocate(mach_task_self(), MACH_PORT_RIGHT_RECEIVE, &port));
struct shuttle shuttles[] = {
{.type = SUBSTITUTE_SHUTTLE_MACH_PORT,
.u.mach.port = port,
.u.mach.right_type = MACH_MSG_TYPE_MAKE_SEND}
};
clock_t a = clock();
int ret = substitute_dlopen_in_pid(pid, argv[2], 0, shuttles, 1, &error);
clock_t b = clock();
printf("ret=%d err=%s time=%ld\n", ret, error, (long) (b - a));
assert(!ret);
free(error);
static struct {
mach_msg_header_t hdr;
char body[5];
mach_msg_trailer_t huh;
} msg;
kern_return_t kr = mach_msg_overwrite(NULL, MACH_RCV_MSG, 0, sizeof(msg), port,
MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL,
&msg.hdr, 0);
printf("kr=%x\n", kr);
assert(!kr);
printf("received '%.5s'\n", msg.body);
}
|