-
Notifications
You must be signed in to change notification settings - Fork 5
/
linux.c
535 lines (458 loc) · 13.7 KB
/
linux.c
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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
/*
* Copyright (c) 2007-2012 Message Systems, Inc. All rights reserved
* For licensing information, see:
* https://bitbucket.org/wez/gimli/src/tip/LICENSE
*/
#ifdef __linux__
#define _GNU_SOURCE 1
#include "impl.h"
/* frustratingly, linux has a kernel ucontext and a userspace ucontext.
* To handle signal frames correctly, we need to reference the kernel
* layout that gets pushed onto the stack */
#ifdef __x86_64__
struct gimli_kernel_sigcontext { /* from asm/sigcontext.h */
unsigned long r8, r9, r10, r11, r12, r13, r14, r15,
di, si, bp, bx, dx, ax, cx, sp, ip, flags;
unsigned short cs, gs, fs, __pad0;
unsigned long err, trapno, oldmask, cr2;
void *fpstate;
unsigned long reserved1[8];
};
struct gimli_kernel_ucontext { /* from asm/ucontext.h */
unsigned long uc_flags;
struct gimli_kernel_ucontext *uc_link;
stack_t uc_stack;
struct gimli_kernel_sigcontext uc_mcontext;
/* should be a sigset_t here, but through observation, it appears
* to not really be here... even though I can see the kernel code
* pushing it at this location... very fishy */
void *pad;
};
#endif
long gimli_ptrace(int cmd, int pid, void *addr, void *data)
{
int tries = 5;
long ret;
errno = 0;
ret = ptrace(cmd, pid, addr, data);
if (ret == 0) return 0;
if (cmd == PTRACE_GETREGS) {
if (ret == -1) {
sleep(1);
while (tries && (ret = ptrace(cmd, pid, addr, data)) == -1) {
if (errno == ESRCH) {
if (--tries) {
sleep(1);
continue;
}
}
return ret;
}
if (ret == 0) {
return 0;
}
}
}
return ret;
}
static void read_maps(gimli_proc_t proc)
{
char maps[1024];
char line[1024];
FILE *fp;
snprintf(maps, sizeof(maps)-1, "/proc/%d/maps", proc->pid);
fp = fopen(maps, "r");
if (!fp) {
fprintf(stderr, "read_maps: fopen(%s) %s\n",
maps, strerror(errno));
return;
}
while (fgets(line, sizeof(line)-1, fp)) {
int i;
char *tok = line;
i = strlen(line);
while (i > 0 && isspace(line[i-1])) {
line[i-1] = '\0';
i--;
}
while (!isspace(*tok)) {
tok++;
}
*tok = '\0';
tok++;
for (i = 0; i < 4; i++) {
while (isspace(*tok)) tok++;
while (!isspace(*tok)) tok++;
while (isspace(*tok)) tok++;
}
if (tok && *tok) {
unsigned long long v;
gimli_addr_t base;
unsigned long len;
char *objname = tok;
if (*tok != '/') continue;
base = strtoull(line, &tok, 16);
v = strtoull(tok + 1, NULL, 16);
len = v - base;
gimli_add_mapping(proc, objname, base, len, 0);
}
}
fclose(fp);
}
int gimli_init_unwind(struct gimli_unwind_cursor *cur,
struct gimli_thread_state *st)
{
memcpy(&cur->st, st, sizeof(*st));
return 1;
}
void *gimli_reg_addr(struct gimli_unwind_cursor *cur, int col)
{
/* See http://wikis.sun.com/display/SunStudio/Dwarf+Register+Numbering */
switch (col) {
#ifdef __x86_64__
case 0: return &cur->st.regs.rax;
case 1: return &cur->st.regs.rdx;
case 2: return &cur->st.regs.rcx;
case 3: return &cur->st.regs.rbx;
case 4: return &cur->st.regs.rsi;
case 5: return &cur->st.regs.rdi;
case 6: return &cur->st.regs.rbp;
case 7: return &cur->st.regs.rsp;
case 8: return &cur->st.regs.r8;
case 9: return &cur->st.regs.r9;
case 10: return &cur->st.regs.r10;
case 11: return &cur->st.regs.r11;
case 12: return &cur->st.regs.r12;
case 13: return &cur->st.regs.r13;
case 14: return &cur->st.regs.r14;
case 15: return &cur->st.regs.r15;
case 16: return &cur->st.regs.rip; /* return address */
#elif defined(__i386__)
case 0: return &cur->st.regs.eax;
case 1: return &cur->st.regs.ecx;
case 2: return &cur->st.regs.edx;
case 3: return &cur->st.regs.ebx;
case 4: return &cur->st.regs.esp;
case 5: return &cur->st.regs.ebp;
case 6: return &cur->st.regs.esi;
case 7: return &cur->st.regs.edi;
case 8: return &cur->st.regs.eip; /* return address */
#else
# error code me
#endif
default: return 0;
}
}
static void hexdump(gimli_proc_t proc, void *addr, int p, int n)
{
uint32_t data[4];
int i, j;
int x;
struct gimli_symbol *sym;
char buf[16];
addr = (char*)addr - (p * sizeof(data));
for (i = 0; i < n; i++) {
x = gimli_read_mem(proc, (gimli_addr_t)addr, data, sizeof(data));
printf("%p: ", addr);
for (j = 0; j < 4; j++) {
gimli_addr_t a = data[j];
struct gimli_object_mapping *m = gimli_mapping_for_addr(proc, a);
if (m) {
sym = find_symbol_for_addr(m->objfile, a);
} else {
sym = NULL;
}
if (sym) {
printf(" %12.*s", 12 , sym->name);
} else {
printf(" %08x", data[j]);
}
}
printf("\n");
addr += sizeof(data);
}
}
int gimli_is_signal_frame(struct gimli_unwind_cursor *cur)
{
/* these magic numbers correspond to the machine code instructions
* used for the sigreturn handling in glibc */
#ifdef __x86_64__
uint64_t a, b;
if (gimli_read_mem(cur->proc, (gimli_addr_t)cur->st.pc, &a,
sizeof(a)) == sizeof(a) &&
gimli_read_mem(cur->proc, (gimli_addr_t)cur->st.pc + sizeof(a),
&b, sizeof(b)) == sizeof(b)) {
if ((a == 0x0f0000000fc0c748) && ((b & 0xff) == 5)) {
void *siptr;
int signo;
/* this only really works for SA_SIGINFO handlers.
* to make it work for non-SA_SIGINFO handlers, we'd need
* to down down one level and look at the args passed to the
* signal handler itself. */
if (gimli_read_mem(cur->proc,
(gimli_addr_t)cur->st.fp + sizeof(struct gimli_kernel_ucontext),
&cur->si, sizeof(cur->si)) != sizeof(cur->si)) {
/* can't tell the user anything useful */
memset(&cur->si, 0, sizeof(cur->si));
}
return 1;
}
}
#elif defined(__i386__)
uint32_t a, b;
if (gimli_read_mem(cur->proc, cur->st.pc, &a, sizeof(a)) == sizeof(a) &&
gimli_read_mem(cur->proc, cur->st.pc + sizeof(a), &b, sizeof(b)) == sizeof(b)) {
/* pull out the signal number */
if (a == 0x0077b858 && b == 0x80cd0000) {
/* no SA_SIGINFO */
memset(&cur->si, 0, sizeof(cur->si));
// printf("data around fp=%p\n", cur->st.fp);
// hexdump(cur->st.fp, 20, 40);
if (gimli_read_mem(cur->proc, cur->st.fp,
&cur->si.si_signo, sizeof(cur->si.si_signo))
!= sizeof(cur->si.si_signo)) {
printf("failed to read sigframe\n");
return 0;
}
return 1;
}
if (a == 0x0000adb8 && b == 0x9080cd00) {
/* has SA_SIGINFO */
struct {
int signo;
struct siginfo *siptr;
struct gimli_kernel_ucontext *ucptr;
} frame;
/* if DWARF worked out, fp points right at the frame(!) */
if (gimli_read_mem(cur->proc, cur->st.fp,
&frame, sizeof(frame)) != sizeof(frame)) {
printf("failed to read rt_sigframe\n");
return 0;
}
if (gimli_read_mem(cur->proc, frame.siptr, &cur->si, sizeof(cur->si))
!= sizeof(cur->si)) {
printf("failed to read siginfo\n");
return 0;
}
return 1;
}
}
#endif
return 0;
}
int gimli_unwind_next(struct gimli_unwind_cursor *cur)
{
/* generic x86 backtrace */
struct x86_frame {
struct x86_frame *next;
void *retpc;
} frame;
struct gimli_unwind_cursor c;
c = *cur;
if (gimli_is_signal_frame(cur)) {
/* extract the next step from the data in the trampoline */
#ifdef __x86_64__
struct gimli_kernel_ucontext uc;
if (gimli_read_mem(cur->proc, (gimli_addr_t)cur->st.fp,
&uc, sizeof(uc)) != sizeof(uc)) {
return 0;
}
cur->st.regs.r8 = uc.uc_mcontext.r8;
cur->st.regs.r9 = uc.uc_mcontext.r9;
cur->st.regs.r10 = uc.uc_mcontext.r10;
cur->st.regs.r11 = uc.uc_mcontext.r11;
cur->st.regs.r12 = uc.uc_mcontext.r12;
cur->st.regs.r13 = uc.uc_mcontext.r13;
cur->st.regs.r14 = uc.uc_mcontext.r14;
cur->st.regs.r15 = uc.uc_mcontext.r15;
cur->st.regs.rdi = uc.uc_mcontext.di;
cur->st.regs.rsi = uc.uc_mcontext.si;
cur->st.regs.rbp = uc.uc_mcontext.bp;
cur->st.regs.rbx = uc.uc_mcontext.bx;
cur->st.regs.rdx = uc.uc_mcontext.dx;
cur->st.regs.rax = uc.uc_mcontext.ax;
cur->st.regs.rcx = uc.uc_mcontext.cx;
cur->st.regs.rsp = uc.uc_mcontext.sp;
cur->st.regs.rip = uc.uc_mcontext.ip;
cur->st.fp = (void*)cur->st.regs.rsp;
cur->st.pc = (void*)cur->st.regs.rip;
cur->st.sp = (void*)cur->st.regs.rsp;
return 1;
#else
uint32_t a;
/* determine whether we have siginfo or not (see gimli_is_signal_frame
* for more on this) */
gimli_read_mem(cur->proc, cur->st.pc, &a, sizeof(a));
if (a == 0x0077b858) {
/* no SA_SIGINFO */
char *ptr;
struct sigcontext sc;
/* Now we need to update our regs based on the sigcontext.
* The kernel pushes the following bits onto the stack:
*
* struct sigcontext sc;
* struct _fpstate unused;
* long extramask[_NSIG / 32];
* char retcode[8];
* the actual fp state comes here
*/
ptr = cur->st.fp;
ptr += 4;
if (gimli_read_mem(cur->proc, ptr, &sc, sizeof(sc)) != sizeof(sc)) {
printf("failed to read sigcontext\n");
return 0;
}
cur->st.regs.edi = sc.edi;
cur->st.regs.esi = sc.esi;
cur->st.regs.ebp = sc.ebp;
cur->st.regs.esp = sc.esp;
cur->st.regs.ebx = sc.ebx;
cur->st.regs.edx = sc.edx;
cur->st.regs.ecx = sc.ecx;
cur->st.regs.eax = sc.eax;
cur->st.regs.eip = sc.eip;
cur->st.fp = (void*)cur->st.regs.ebp;
cur->st.sp = (void*)cur->st.regs.esp;
cur->st.pc = (void*)cur->st.regs.eip;
return 1;
} else {
/* has SA_SIGINFO */
struct {
int signo;
struct siginfo *si;
struct gimli_kernel_ucontext *uc;
} frame;
struct ucontext uc;
if (gimli_read_mem(cur->proc, cur->st.fp,
&frame, sizeof(frame)) != sizeof(frame)) {
printf("failed to read rt_sigframe\n");
return 0;
}
if (gimli_read_mem(cur->proc, frame.uc, &uc, sizeof(uc))
!= sizeof(uc)) {
printf("failed to read ucontext\n");
return 0;
}
cur->st.regs.edi = uc.uc_mcontext.gregs[REG_EDI];
cur->st.regs.esi = uc.uc_mcontext.gregs[REG_ESI];
cur->st.regs.ebp = uc.uc_mcontext.gregs[REG_EBP];
cur->st.regs.esp = uc.uc_mcontext.gregs[REG_ESP];
cur->st.regs.ebx = uc.uc_mcontext.gregs[REG_EBX];
cur->st.regs.edx = uc.uc_mcontext.gregs[REG_EDX];
cur->st.regs.ecx = uc.uc_mcontext.gregs[REG_ECX];
cur->st.regs.eax = uc.uc_mcontext.gregs[REG_EAX];
cur->st.regs.eip = uc.uc_mcontext.gregs[REG_EIP];
cur->st.fp = (void*)cur->st.regs.ebp;
cur->st.sp = (void*)cur->st.regs.esp;
cur->st.pc = (void*)cur->st.regs.eip;
return 1;
}
#endif
}
/* sanity check that dwarf made progress relative to the starting pc */
if (gimli_dwarf_unwind_next(cur) && cur->st.pc && cur->st.pc != c.st.pc) {
// printf("dwarf unwound to fp=%p sp=%p pc=%p\n", cur->st.fp, cur->st.sp, cur->st.pc);
#if defined(__x86_64__)
cur->st.regs.rsp = (intptr_t)cur->st.fp;
// cur->st.regs.rip = (intptr_t)cur->st.pc;
#endif
return 1;
}
//printf("dwarf unwind didn't succeed, doing it the hard way\n");
//printf("fp=%p sp=%p pc=%p\n", c.st.fp, c.st.sp, c.st.pc);
if (c.st.fp) {
if (gimli_read_mem(cur->proc, (gimli_addr_t)c.st.fp,
&frame, sizeof(frame)) != sizeof(frame)) {
memset(&frame, 0, sizeof(frame));
}
// printf("read frame: fp=%p pc=%p\n", frame.next, frame.retpc);
/* If we don't appear to be making progress, or we end up in page 0,
* then assume we're done */
if (c.st.fp == frame.next || frame.next == (void*)0 || frame.retpc < (void*)1024) {
return 0;
}
cur->st.fp = frame.next;
cur->st.pc = frame.retpc;
if (cur->st.pc > 0 && !gimli_is_signal_frame(cur)) {
cur->st.pc--;
}
#ifdef __i386__
cur->st.regs.ebp = (intptr_t)cur->st.fp;
#endif
return 1;
}
return 0;
}
static child_stopped = 0;
static void child_handler(int signo)
{
int p;
int status;
child_stopped = 1;
p = waitpid(-1, &status, WNOHANG);
// printf("SIGCHLD: pid=%d\n", p);
}
gimli_err_t gimli_attach(gimli_proc_t proc)
{
long ret;
int status;
struct user_regs_struct ur;
int i;
char name[1024];
signal(SIGCHLD, child_handler);
ret = gimli_ptrace(PTRACE_ATTACH, proc->pid, NULL, NULL);
if (ret != 0) {
int err = errno;
fprintf(stderr, "PTRACE_ATTACH: failed: %s\n",
strerror(err));
errno = err;
switch (err) {
case ESRCH:
return GIMLI_ERR_NO_PROC;
case EPERM:
return GIMLI_ERR_PERM;
default:
return GIMLI_ERR_CHECK_ERRNO;
}
return 0;
}
status = 0;
for (i = 0; i < 5; i++) {
int pid;
if (child_stopped) {
break;
}
pid = waitpid(proc->pid, &status, WNOHANG);
if (pid == proc->pid) {
child_stopped = 1;
break;
}
fprintf(stderr, "waiting for pid %d to stop (saw %d)\n", proc->pid, pid);
sleep(1);
}
signal(SIGCHLD, SIG_DFL);
if (!child_stopped) {
fprintf(stderr,
"didn't detect child stop within 5 seconds, continuing anyway\n");
}
snprintf(name, sizeof(name), "/proc/%d/mem", proc->pid);
proc->proc_mem = open(name, O_RDWR);
if (proc->proc_mem == -1) {
fprintf(stderr, "failed to open %s: %s\n", name, strerror(errno));
return GIMLI_ERR_CHECK_ERRNO;
}
read_maps(proc);
return gimli_proc_service_init(proc);
}
gimli_err_t gimli_detach(gimli_proc_t proc)
{
long ret;
int i;
gimli_proc_service_destroy(proc);
ptrace(PTRACE_DETACH, proc->pid, NULL, SIGCONT);
// FIXME: free all bits from tdep properly
return GIMLI_ERR_OK;
}
#endif
/* vim:ts=2:sw=2:et:
*/