-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathproc.c
82 lines (68 loc) · 1.44 KB
/
proc.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
#include "config.h"
#if defined(HAVE_LIBUNWIND)
#include <libunwind.h>
#include <libunwind-ptrace.h>
#endif /* defined(HAVE_LIBUNWIND) */
#include <sys/types.h>
#include <string.h>
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include "common.h"
Process *
open_program(char *filename, pid_t pid) {
Process *proc;
proc = calloc(sizeof(Process), 1);
if (!proc) {
perror("malloc");
exit(1);
}
proc->filename = strdup(filename);
proc->breakpoints_enabled = -1;
if (pid) {
proc->pid = pid;
#if defined(HAVE_LIBUNWIND)
proc->unwind_priv = _UPT_create(pid);
} else {
proc->unwind_priv = NULL;
#endif /* defined(HAVE_LIBUNWIND) */
}
breakpoints_init(proc);
proc->next = list_of_processes;
list_of_processes = proc;
#if defined(HAVE_LIBUNWIND)
proc->unwind_as = unw_create_addr_space(&_UPT_accessors, 0);
#endif /* defined(HAVE_LIBUNWIND) */
return proc;
}
void
open_pid(pid_t pid) {
Process *proc;
char *filename;
if (trace_pid(pid) < 0) {
fprintf(stderr, "Cannot attach to pid %u: %s\n", pid,
strerror(errno));
return;
}
filename = pid2name(pid);
if (!filename) {
fprintf(stderr, "Cannot trace pid %u: %s\n", pid,
strerror(errno));
return;
}
proc = open_program(filename, pid);
continue_process(pid);
proc->breakpoints_enabled = 1;
}
Process *
pid2proc(pid_t pid) {
Process *tmp;
tmp = list_of_processes;
while (tmp) {
if (pid == tmp->pid) {
return tmp;
}
tmp = tmp->next;
}
return NULL;
}