blob: dcb4c817d412d12f196c6243b92cb76e57080acf [file] [log] [blame]
Petr Machatafed1e8d2012-02-07 02:06:29 +01001#define _GNU_SOURCE
Juan Cespedesd44c6b81998-09-25 14:48:42 +02002#include "config.h"
Juan Cespedesd44c6b81998-09-25 14:48:42 +02003
Juan Cespedes5e01f651998-03-08 22:31:44 +01004#include <stdio.h>
5#include <string.h>
Juan Cespedes1fe93d51998-03-13 00:29:21 +01006#include <stdlib.h>
Juan Cespedes28f60191998-04-12 00:04:39 +02007#include <signal.h>
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +02008#include <assert.h>
Juan Cespedesd65efa32003-02-03 00:22:30 +01009#include <sys/time.h>
Petr Machata534e00f2011-09-27 17:58:38 +020010#include <errno.h>
Juan Cespedes5e01f651998-03-08 22:31:44 +010011
Juan Cespedesf1bfe202002-03-27 00:22:23 +010012#ifdef __powerpc__
13#include <sys/ptrace.h>
14#endif
15
Petr Machatafed1e8d2012-02-07 02:06:29 +010016#include "common.h"
Petr Machata9294d822012-02-07 12:35:58 +010017#include "breakpoint.h"
Petr Machata366c2f42012-02-09 19:34:36 +010018#include "proc.h"
Petr Machata2b46cfc2012-02-18 11:17:29 +010019#include "library.h"
Petr Machatafed1e8d2012-02-07 02:06:29 +010020
Juan Cespedes03192f82009-07-03 10:16:22 +020021static void handle_signal(Event *event);
22static void handle_exit(Event *event);
23static void handle_exit_signal(Event *event);
24static void handle_syscall(Event *event);
25static void handle_arch_syscall(Event *event);
26static void handle_sysret(Event *event);
27static void handle_arch_sysret(Event *event);
28static void handle_clone(Event *event);
29static void handle_exec(Event *event);
30static void handle_breakpoint(Event *event);
31static void handle_new(Event *event);
Juan Cespedes5e01f651998-03-08 22:31:44 +010032
Juan Cespedesa8909f72009-04-28 20:02:41 +020033static void callstack_push_syscall(Process *proc, int sysnum);
34static void callstack_push_symfunc(Process *proc,
Ian Wienand2d45b1a2006-02-20 22:48:07 +010035 struct library_symbol *sym);
Juan Cespedesa8909f72009-04-28 20:02:41 +020036static void callstack_pop(Process *proc);
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +020037
Juan Cespedes61da3372009-07-03 11:55:44 +020038static char * shortsignal(Process *proc, int signum);
39static char * sysname(Process *proc, int sysnum);
40static char * arch_sysname(Process *proc, int sysnum);
41
Petr Machatacbe29c62011-09-27 02:27:58 +020042static Event *
43call_handler(Process * proc, Event * event)
44{
45 assert(proc != NULL);
46
Petr Machata366c2f42012-02-09 19:34:36 +010047 struct event_handler *handler = proc->event_handler;
Petr Machatacbe29c62011-09-27 02:27:58 +020048 if (handler == NULL)
49 return event;
50
51 return (*handler->on_event) (handler, event);
52}
53
Juan Cespedes61da3372009-07-03 11:55:44 +020054void
Petr Machataffe4cd22012-04-11 18:01:44 +020055handle_event(Event *event)
56{
Petr Machata602330f2011-07-09 11:15:34 +020057 if (exiting == 1) {
Petr Machata602330f2011-07-09 11:15:34 +020058 debug(1, "ltrace about to exit");
Petr Machataffe4cd22012-04-11 18:01:44 +020059 os_ltrace_exiting();
60 exiting = 2;
Petr Machata602330f2011-07-09 11:15:34 +020061 }
Petr Machata26627682011-07-08 18:15:32 +020062 debug(DEBUG_FUNCTION, "handle_event(pid=%d, type=%d)",
63 event->proc ? event->proc->pid : -1, event->type);
Petr Machatacbe29c62011-09-27 02:27:58 +020064
65 /* If the thread group or an individual task define an
66 overriding event handler, give them a chance to kick in.
67 We will end up calling both handlers, if the first one
68 doesn't sink the event. */
69 if (event->proc != NULL) {
70 event = call_handler(event->proc, event);
71 if (event == NULL)
72 /* It was handled. */
73 return;
74
75 /* Note: the previous handler has a chance to alter
76 * the event. */
Petr Machata43d2fe52011-11-02 13:25:49 +010077 if (event->proc != NULL
78 && event->proc->leader != NULL
79 && event->proc != event->proc->leader) {
Petr Machatacbe29c62011-09-27 02:27:58 +020080 event = call_handler(event->proc->leader, event);
Petr Machata4007d742011-07-09 11:29:42 +020081 if (event == NULL)
Petr Machata4007d742011-07-09 11:29:42 +020082 return;
83 }
84 }
85
Juan Cespedes61da3372009-07-03 11:55:44 +020086 switch (event->type) {
87 case EVENT_NONE:
88 debug(1, "event: none");
89 return;
90 case EVENT_SIGNAL:
91 debug(1, "event: signal (%s [%d])",
92 shortsignal(event->proc, event->e_un.signum),
93 event->e_un.signum);
94 handle_signal(event);
95 return;
96 case EVENT_EXIT:
97 debug(1, "event: exit (%d)", event->e_un.ret_val);
98 handle_exit(event);
99 return;
100 case EVENT_EXIT_SIGNAL:
101 debug(1, "event: exit signal (%s [%d])",
102 shortsignal(event->proc, event->e_un.signum),
103 event->e_un.signum);
104 handle_exit_signal(event);
105 return;
106 case EVENT_SYSCALL:
107 debug(1, "event: syscall (%s [%d])",
108 sysname(event->proc, event->e_un.sysnum),
109 event->e_un.sysnum);
110 handle_syscall(event);
111 return;
112 case EVENT_SYSRET:
113 debug(1, "event: sysret (%s [%d])",
114 sysname(event->proc, event->e_un.sysnum),
115 event->e_un.sysnum);
116 handle_sysret(event);
117 return;
118 case EVENT_ARCH_SYSCALL:
119 debug(1, "event: arch_syscall (%s [%d])",
120 arch_sysname(event->proc, event->e_un.sysnum),
121 event->e_un.sysnum);
122 handle_arch_syscall(event);
123 return;
124 case EVENT_ARCH_SYSRET:
125 debug(1, "event: arch_sysret (%s [%d])",
126 arch_sysname(event->proc, event->e_un.sysnum),
127 event->e_un.sysnum);
128 handle_arch_sysret(event);
129 return;
130 case EVENT_CLONE:
Petr Machatacbe29c62011-09-27 02:27:58 +0200131 case EVENT_VFORK:
Juan Cespedes61da3372009-07-03 11:55:44 +0200132 debug(1, "event: clone (%u)", event->e_un.newpid);
133 handle_clone(event);
134 return;
135 case EVENT_EXEC:
136 debug(1, "event: exec()");
137 handle_exec(event);
138 return;
139 case EVENT_BREAKPOINT:
140 debug(1, "event: breakpoint");
141 handle_breakpoint(event);
142 return;
143 case EVENT_NEW:
144 debug(1, "event: new process");
145 handle_new(event);
146 return;
147 default:
148 fprintf(stderr, "Error! unknown event?\n");
149 exit(1);
150 }
151}
152
Juan Cespedesbc8caf02009-05-07 19:38:38 +0200153typedef struct Pending_New Pending_New;
154struct Pending_New {
155 pid_t pid;
156 Pending_New * next;
157};
158static Pending_New * pending_news = NULL;
159
160static int
161pending_new(pid_t pid) {
Juan Cespedescd8976d2009-05-14 13:47:58 +0200162 Pending_New * p;
163
164 debug(DEBUG_FUNCTION, "pending_new(%d)", pid);
165
166 p = pending_news;
Juan Cespedesbc8caf02009-05-07 19:38:38 +0200167 while (p) {
168 if (p->pid == pid) {
169 return 1;
170 }
171 p = p->next;
172 }
173 return 0;
174}
175
176static void
177pending_new_insert(pid_t pid) {
Juan Cespedescd8976d2009-05-14 13:47:58 +0200178 Pending_New * p;
179
180 debug(DEBUG_FUNCTION, "pending_new_insert(%d)", pid);
181
182 p = malloc(sizeof(Pending_New));
Juan Cespedesbc8caf02009-05-07 19:38:38 +0200183 if (!p) {
184 perror("malloc()");
185 exit(1);
186 }
187 p->pid = pid;
188 p->next = pending_news;
189 pending_news = p;
190}
191
192static void
193pending_new_remove(pid_t pid) {
194 Pending_New *p, *pred;
195
Juan Cespedescd8976d2009-05-14 13:47:58 +0200196 debug(DEBUG_FUNCTION, "pending_new_remove(%d)", pid);
197
Juan Cespedesbc8caf02009-05-07 19:38:38 +0200198 p = pending_news;
199 if (p->pid == pid) {
200 pending_news = p->next;
201 free(p);
202 } else {
203 while (p) {
204 if (p->pid == pid) {
205 pred->next = p->next;
206 free(p);
207 }
208 pred = p;
209 p = p->next;
210 }
211 }
212}
213
Petr Machata2b46cfc2012-02-18 11:17:29 +0100214#if 0
Petr Machata534e00f2011-09-27 17:58:38 +0200215static int
216clone_breakpoints(Process * proc, Process * orig_proc)
217{
218 /* When copying breakpoints, we also have to copy the
219 * referenced symbols, and link them properly. */
220 Dict * map = dict_init(&dict_key2hash_int, &dict_key_cmp_int);
221 struct library_symbol * it = proc->list_of_symbols;
222 proc->list_of_symbols = NULL;
223 for (; it != NULL; it = it->next) {
224 struct library_symbol * libsym = clone_library_symbol(it);
225 if (libsym == NULL) {
226 int save_errno;
227 err:
228 save_errno = errno;
229 destroy_library_symbol_chain(proc->list_of_symbols);
230 dict_clear(map);
231 errno = save_errno;
232 return -1;
233 }
234 libsym->next = proc->list_of_symbols;
235 proc->list_of_symbols = libsym;
236 if (dict_enter(map, it, libsym) != 0)
237 goto err;
238 }
239
240 proc->breakpoints = dict_clone2(orig_proc->breakpoints,
241 address_clone, breakpoint_clone, map);
242 if (proc->breakpoints == NULL)
243 goto err;
244
245 dict_clear(map);
246 return 0;
247}
Petr Machata2b46cfc2012-02-18 11:17:29 +0100248#endif
Petr Machata534e00f2011-09-27 17:58:38 +0200249
Juan Cespedesbc8caf02009-05-07 19:38:38 +0200250static void
Petr Machata2b46cfc2012-02-18 11:17:29 +0100251handle_clone(Event *event)
252{
Juan Cespedes03192f82009-07-03 10:16:22 +0200253 debug(DEBUG_FUNCTION, "handle_clone(pid=%d)", event->proc->pid);
Juan Cespedescd8976d2009-05-14 13:47:58 +0200254
Petr Machata2b46cfc2012-02-18 11:17:29 +0100255 struct Process *proc = malloc(sizeof(*proc));
256 if (proc == NULL) {
257 fail:
258 free(proc);
259 /* XXX proper error handling here, please. */
Juan Cespedesbc8caf02009-05-07 19:38:38 +0200260 perror("malloc()");
261 exit(1);
262 }
Petr Machata2b46cfc2012-02-18 11:17:29 +0100263
264 if (process_clone(proc, event->proc, event->e_un.newpid) < 0)
265 goto fail;
266 proc->parent = event->proc;
Juan Cespedesbc8caf02009-05-07 19:38:38 +0200267
Petr Machata75dcf7d2011-10-06 14:30:19 +0200268 /* We save register values to the arch pointer, and these need
269 to be per-thread. */
Petr Machata2b46cfc2012-02-18 11:17:29 +0100270 proc->arch_ptr = NULL;
Petr Machata75dcf7d2011-10-06 14:30:19 +0200271
Petr Machata2b46cfc2012-02-18 11:17:29 +0100272 if (pending_new(proc->pid)) {
273 pending_new_remove(proc->pid);
274 /* XXX this used to be destroy_event_handler call, but
275 * I don't think we want to call that on a shared
276 * state. */
277 proc->event_handler = NULL;
278 if (event->proc->state == STATE_ATTACHED && options.follow)
279 proc->state = STATE_ATTACHED;
280 else
281 proc->state = STATE_IGNORED;
282 continue_process(proc->pid);
Juan Cespedesbc8caf02009-05-07 19:38:38 +0200283 } else {
Petr Machata2b46cfc2012-02-18 11:17:29 +0100284 proc->state = STATE_BEING_CREATED;
Juan Cespedesbc8caf02009-05-07 19:38:38 +0200285 }
Petr Machata2b46cfc2012-02-18 11:17:29 +0100286 add_process(proc);
Petr Machata534e00f2011-09-27 17:58:38 +0200287
Petr Machatacbe29c62011-09-27 02:27:58 +0200288 if (event->type == EVENT_VFORK)
Petr Machata2b46cfc2012-02-18 11:17:29 +0100289 continue_after_vfork(proc);
Petr Machatacbe29c62011-09-27 02:27:58 +0200290 else
291 continue_process(event->proc->pid);
Juan Cespedesbc8caf02009-05-07 19:38:38 +0200292}
293
294static void
Juan Cespedes03192f82009-07-03 10:16:22 +0200295handle_new(Event * event) {
Juan Cespedescd8976d2009-05-14 13:47:58 +0200296 Process * proc;
297
Juan Cespedes03192f82009-07-03 10:16:22 +0200298 debug(DEBUG_FUNCTION, "handle_new(pid=%d)", event->e_un.newpid);
Juan Cespedescd8976d2009-05-14 13:47:58 +0200299
300 proc = pid2proc(event->e_un.newpid);
Juan Cespedesbc8caf02009-05-07 19:38:38 +0200301 if (!proc) {
302 pending_new_insert(event->e_un.newpid);
303 } else {
304 assert(proc->state == STATE_BEING_CREATED);
Juan Cespedes30439b42009-05-22 19:03:09 +0200305 if (options.follow) {
Juan Cespedes5c682042009-05-21 15:59:56 +0200306 proc->state = STATE_ATTACHED;
307 } else {
308 proc->state = STATE_IGNORED;
309 }
Juan Cespedesbc8caf02009-05-07 19:38:38 +0200310 continue_process(proc->pid);
311 }
312}
313
Juan Cespedesf1350522008-12-16 18:19:58 +0100314static char *
Juan Cespedesa8909f72009-04-28 20:02:41 +0200315shortsignal(Process *proc, int signum) {
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100316 static char *signalent0[] = {
317#include "signalent.h"
Juan Cespedes5e01f651998-03-08 22:31:44 +0100318 };
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100319 static char *signalent1[] = {
320#include "signalent1.h"
Ian Wienand9a2ad352006-02-20 22:44:45 +0100321 };
322 static char **signalents[] = { signalent0, signalent1 };
323 int nsignals[] = { sizeof signalent0 / sizeof signalent0[0],
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100324 sizeof signalent1 / sizeof signalent1[0]
325 };
Juan Cespedes5e01f651998-03-08 22:31:44 +0100326
Juan Cespedescd8976d2009-05-14 13:47:58 +0200327 debug(DEBUG_FUNCTION, "shortsignal(pid=%d, signum=%d)", proc->pid, signum);
328
Ian Wienand9a2ad352006-02-20 22:44:45 +0100329 if (proc->personality > sizeof signalents / sizeof signalents[0])
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100330 abort();
Ian Wienand9a2ad352006-02-20 22:44:45 +0100331 if (signum < 0 || signum >= nsignals[proc->personality]) {
Juan Cespedes5e01f651998-03-08 22:31:44 +0100332 return "UNKNOWN_SIGNAL";
333 } else {
Ian Wienand9a2ad352006-02-20 22:44:45 +0100334 return signalents[proc->personality][signum];
Juan Cespedes5e01f651998-03-08 22:31:44 +0100335 }
336}
337
Juan Cespedesf1350522008-12-16 18:19:58 +0100338static char *
Juan Cespedesa8909f72009-04-28 20:02:41 +0200339sysname(Process *proc, int sysnum) {
Juan Cespedes5e01f651998-03-08 22:31:44 +0100340 static char result[128];
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100341 static char *syscalent0[] = {
342#include "syscallent.h"
Juan Cespedes5e01f651998-03-08 22:31:44 +0100343 };
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100344 static char *syscalent1[] = {
345#include "syscallent1.h"
Ian Wienand9a2ad352006-02-20 22:44:45 +0100346 };
347 static char **syscalents[] = { syscalent0, syscalent1 };
348 int nsyscals[] = { sizeof syscalent0 / sizeof syscalent0[0],
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100349 sizeof syscalent1 / sizeof syscalent1[0]
350 };
Juan Cespedes5e01f651998-03-08 22:31:44 +0100351
Juan Cespedescd8976d2009-05-14 13:47:58 +0200352 debug(DEBUG_FUNCTION, "sysname(pid=%d, sysnum=%d)", proc->pid, sysnum);
353
Ian Wienand9a2ad352006-02-20 22:44:45 +0100354 if (proc->personality > sizeof syscalents / sizeof syscalents[0])
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100355 abort();
Ian Wienand9a2ad352006-02-20 22:44:45 +0100356 if (sysnum < 0 || sysnum >= nsyscals[proc->personality]) {
Juan Cespedes5e01f651998-03-08 22:31:44 +0100357 sprintf(result, "SYS_%d", sysnum);
358 return result;
359 } else {
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100360 sprintf(result, "SYS_%s",
361 syscalents[proc->personality][sysnum]);
Juan Cespedes5e01f651998-03-08 22:31:44 +0100362 return result;
363 }
364}
365
Juan Cespedesf1350522008-12-16 18:19:58 +0100366static char *
Juan Cespedesa8909f72009-04-28 20:02:41 +0200367arch_sysname(Process *proc, int sysnum) {
Juan Cespedes63184be2008-12-10 13:30:12 +0100368 static char result[128];
369 static char *arch_syscalent[] = {
370#include "arch_syscallent.h"
371 };
372 int nsyscals = sizeof arch_syscalent / sizeof arch_syscalent[0];
373
Juan Cespedescd8976d2009-05-14 13:47:58 +0200374 debug(DEBUG_FUNCTION, "arch_sysname(pid=%d, sysnum=%d)", proc->pid, sysnum);
375
Juan Cespedes63184be2008-12-10 13:30:12 +0100376 if (sysnum < 0 || sysnum >= nsyscals) {
377 sprintf(result, "ARCH_%d", sysnum);
378 return result;
379 } else {
380 sprintf(result, "ARCH_%s",
381 arch_syscalent[sysnum]);
382 return result;
383 }
384}
385
Juan Cespedesf1350522008-12-16 18:19:58 +0100386static void
Juan Cespedes03192f82009-07-03 10:16:22 +0200387handle_signal(Event *event) {
388 debug(DEBUG_FUNCTION, "handle_signal(pid=%d, signum=%d)", event->proc->pid, event->e_un.signum);
Joe Damato59e3fb12009-11-06 19:45:10 -0800389 if (event->proc->state != STATE_IGNORED && !options.no_signals) {
Juan Cespedes5c682042009-05-21 15:59:56 +0200390 output_line(event->proc, "--- %s (%s) ---",
391 shortsignal(event->proc, event->e_un.signum),
392 strsignal(event->e_un.signum));
393 }
Juan Cespedes5e01f651998-03-08 22:31:44 +0100394 continue_after_signal(event->proc->pid, event->e_un.signum);
395}
396
Juan Cespedesf1350522008-12-16 18:19:58 +0100397static void
Juan Cespedes03192f82009-07-03 10:16:22 +0200398handle_exit(Event *event) {
399 debug(DEBUG_FUNCTION, "handle_exit(pid=%d, status=%d)", event->proc->pid, event->e_un.ret_val);
Juan Cespedes5c682042009-05-21 15:59:56 +0200400 if (event->proc->state != STATE_IGNORED) {
401 output_line(event->proc, "+++ exited (status %d) +++",
402 event->e_un.ret_val);
403 }
Petr Machatacebb8842011-07-09 11:14:11 +0200404 remove_process(event->proc);
Petr Machata464026f2012-03-02 00:10:58 +0100405 free(event->proc);
Juan Cespedes5e01f651998-03-08 22:31:44 +0100406}
407
Juan Cespedesf1350522008-12-16 18:19:58 +0100408static void
Juan Cespedes03192f82009-07-03 10:16:22 +0200409handle_exit_signal(Event *event) {
410 debug(DEBUG_FUNCTION, "handle_exit_signal(pid=%d, signum=%d)", event->proc->pid, event->e_un.signum);
Juan Cespedes5c682042009-05-21 15:59:56 +0200411 if (event->proc->state != STATE_IGNORED) {
412 output_line(event->proc, "+++ killed by %s +++",
413 shortsignal(event->proc, event->e_un.signum));
414 }
Petr Machatacebb8842011-07-09 11:14:11 +0200415 remove_process(event->proc);
Petr Machata464026f2012-03-02 00:10:58 +0100416 free(event->proc);
Juan Cespedes5e01f651998-03-08 22:31:44 +0100417}
418
Petr Machata29add4f2012-02-18 16:38:05 +0100419static struct library_symbol *
420temporary_syscall_symbol(const char *name)
421{
422 struct library *syscalls = malloc(sizeof(*syscalls));
423 struct library_symbol *syscall = malloc(sizeof(*syscall));
424 if (syscalls == NULL || syscall == NULL) {
425 free(syscalls);
426 free(syscall);
427 return NULL;
428 }
Petr Machatab5f80ac2012-04-04 01:46:18 +0200429 library_init(syscalls, (enum library_type)-1);
Petr Machata0b55b582012-04-02 00:38:46 +0200430 library_set_soname(syscalls, "SYS", 0);
Petr Machatae6523e62012-03-24 04:54:06 +0100431 library_symbol_init(syscall, 0, name, 0, LS_TOPLT_NONE);
Petr Machata29add4f2012-02-18 16:38:05 +0100432 library_add_symbol(syscalls, syscall);
433 return syscall;
434}
435
436static void
437output_syscall_left(struct Process *proc, const char *name)
438{
439 struct library_symbol *syscall = temporary_syscall_symbol(name);
440 output_left(LT_TOF_SYSCALL, proc, syscall);
441 struct library *lib = syscall->lib;
442 library_destroy(lib);
443 free(lib);
444}
445
446static void
447output_syscall_right(struct Process *proc, const char *name)
448{
449 struct library_symbol *syscall = temporary_syscall_symbol(name);
450 output_right(LT_TOF_SYSCALLR, proc, syscall);
451 struct library *lib = syscall->lib;
452 library_destroy(lib);
453 free(lib);
454}
455
Juan Cespedesf1350522008-12-16 18:19:58 +0100456static void
Juan Cespedes03192f82009-07-03 10:16:22 +0200457handle_syscall(Event *event) {
458 debug(DEBUG_FUNCTION, "handle_syscall(pid=%d, sysnum=%d)", event->proc->pid, event->e_un.sysnum);
Juan Cespedes5c682042009-05-21 15:59:56 +0200459 if (event->proc->state != STATE_IGNORED) {
Petr Machata211f0882010-11-03 18:42:18 +0100460 callstack_push_syscall(event->proc, event->e_un.sysnum);
Petr Machata29add4f2012-02-18 16:38:05 +0100461 if (options.syscalls)
462 output_syscall_left(event->proc,
463 sysname(event->proc,
464 event->e_un.sysnum));
Juan Cespedes5e01f651998-03-08 22:31:44 +0100465 }
Petr Machata43d2fe52011-11-02 13:25:49 +0100466 continue_after_syscall(event->proc, event->e_un.sysnum, 0);
Juan Cespedes5e01f651998-03-08 22:31:44 +0100467}
468
Juan Cespedesf1350522008-12-16 18:19:58 +0100469static void
Juan Cespedes03192f82009-07-03 10:16:22 +0200470handle_exec(Event * event) {
Juan Cespedese0660df2009-05-21 18:14:39 +0200471 Process * proc = event->proc;
Juan Cespedese0660df2009-05-21 18:14:39 +0200472
Juan Cespedes03192f82009-07-03 10:16:22 +0200473 debug(DEBUG_FUNCTION, "handle_exec(pid=%d)", proc->pid);
Juan Cespedese0660df2009-05-21 18:14:39 +0200474 if (proc->state == STATE_IGNORED) {
475 untrace_pid(proc->pid);
Petr Machatacebb8842011-07-09 11:14:11 +0200476 remove_process(proc);
Petr Machata464026f2012-03-02 00:10:58 +0100477 free(proc);
Juan Cespedese0660df2009-05-21 18:14:39 +0200478 return;
Juan Cespedes5c682042009-05-21 15:59:56 +0200479 }
Juan Cespedese0660df2009-05-21 18:14:39 +0200480 output_line(proc, "--- Called exec() ---");
481 proc->mask_32bit = 0;
482 proc->personality = 0;
483 proc->arch_ptr = NULL;
484 free(proc->filename);
485 proc->filename = pid2name(proc->pid);
Petr Machatac7585b62011-07-08 22:58:12 +0200486 breakpoints_init(proc, 0);
Juan Cespedese0660df2009-05-21 18:14:39 +0200487 proc->callstack_depth = 0;
488 continue_process(proc->pid);
Juan Cespedes1e583132009-04-07 18:17:11 +0200489}
490
491static void
Juan Cespedes03192f82009-07-03 10:16:22 +0200492handle_arch_syscall(Event *event) {
493 debug(DEBUG_FUNCTION, "handle_arch_syscall(pid=%d, sysnum=%d)", event->proc->pid, event->e_un.sysnum);
Juan Cespedes5c682042009-05-21 15:59:56 +0200494 if (event->proc->state != STATE_IGNORED) {
Petr Machata211f0882010-11-03 18:42:18 +0100495 callstack_push_syscall(event->proc, 0xf0000 + event->e_un.sysnum);
Juan Cespedes5c682042009-05-21 15:59:56 +0200496 if (options.syscalls) {
Petr Machata29add4f2012-02-18 16:38:05 +0100497 output_syscall_left(event->proc,
498 arch_sysname(event->proc,
499 event->e_un.sysnum));
Juan Cespedes5c682042009-05-21 15:59:56 +0200500 }
Juan Cespedes63184be2008-12-10 13:30:12 +0100501 }
Juan Cespedes63184be2008-12-10 13:30:12 +0100502 continue_process(event->proc->pid);
503}
504
Juan Cespedesd65efa32003-02-03 00:22:30 +0100505struct timeval current_time_spent;
506
Juan Cespedesf1350522008-12-16 18:19:58 +0100507static void
Juan Cespedesa8909f72009-04-28 20:02:41 +0200508calc_time_spent(Process *proc) {
Juan Cespedesd65efa32003-02-03 00:22:30 +0100509 struct timeval tv;
510 struct timezone tz;
511 struct timeval diff;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100512 struct callstack_element *elem;
Juan Cespedesd65efa32003-02-03 00:22:30 +0100513
Juan Cespedescd8976d2009-05-14 13:47:58 +0200514 debug(DEBUG_FUNCTION, "calc_time_spent(pid=%d)", proc->pid);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100515 elem = &proc->callstack[proc->callstack_depth - 1];
Juan Cespedesd65efa32003-02-03 00:22:30 +0100516
517 gettimeofday(&tv, &tz);
518
519 diff.tv_sec = tv.tv_sec - elem->time_spent.tv_sec;
520 if (tv.tv_usec >= elem->time_spent.tv_usec) {
521 diff.tv_usec = tv.tv_usec - elem->time_spent.tv_usec;
522 } else {
523 diff.tv_sec++;
524 diff.tv_usec = 1000000 + tv.tv_usec - elem->time_spent.tv_usec;
525 }
526 current_time_spent = diff;
527}
528
Juan Cespedesf1350522008-12-16 18:19:58 +0100529static void
Juan Cespedes03192f82009-07-03 10:16:22 +0200530handle_sysret(Event *event) {
531 debug(DEBUG_FUNCTION, "handle_sysret(pid=%d, sysnum=%d)", event->proc->pid, event->e_un.sysnum);
Juan Cespedes5c682042009-05-21 15:59:56 +0200532 if (event->proc->state != STATE_IGNORED) {
533 if (opt_T || options.summary) {
534 calc_time_spent(event->proc);
535 }
Petr Machata29add4f2012-02-18 16:38:05 +0100536 if (options.syscalls)
537 output_syscall_right(event->proc,
538 sysname(event->proc,
539 event->e_un.sysnum));
540
Petr Machata43d2fe52011-11-02 13:25:49 +0100541 assert(event->proc->callstack_depth > 0);
542 unsigned d = event->proc->callstack_depth - 1;
543 assert(event->proc->callstack[d].is_syscall);
Petr Machata211f0882010-11-03 18:42:18 +0100544 callstack_pop(event->proc);
Juan Cespedes21c63a12001-07-07 20:56:56 +0200545 }
Petr Machata43d2fe52011-11-02 13:25:49 +0100546 continue_after_syscall(event->proc, event->e_un.sysnum, 1);
Juan Cespedes5e01f651998-03-08 22:31:44 +0100547}
548
Juan Cespedesf1350522008-12-16 18:19:58 +0100549static void
Juan Cespedes03192f82009-07-03 10:16:22 +0200550handle_arch_sysret(Event *event) {
551 debug(DEBUG_FUNCTION, "handle_arch_sysret(pid=%d, sysnum=%d)", event->proc->pid, event->e_un.sysnum);
Juan Cespedes5c682042009-05-21 15:59:56 +0200552 if (event->proc->state != STATE_IGNORED) {
553 if (opt_T || options.summary) {
554 calc_time_spent(event->proc);
555 }
Petr Machata29add4f2012-02-18 16:38:05 +0100556 if (options.syscalls)
557 output_syscall_right(event->proc,
558 arch_sysname(event->proc,
559 event->e_un.sysnum));
Petr Machata211f0882010-11-03 18:42:18 +0100560 callstack_pop(event->proc);
Juan Cespedes63184be2008-12-10 13:30:12 +0100561 }
562 continue_process(event->proc->pid);
563}
564
Juan Cespedesf1350522008-12-16 18:19:58 +0100565static void
Petr Machata14298742012-04-12 23:09:21 +0200566output_right_tos(struct Process *proc)
567{
568 size_t d = proc->callstack_depth;
569 struct callstack_element *elem = &proc->callstack[d - 1];
570 if (proc->state != STATE_IGNORED)
571 output_right(LT_TOF_FUNCTIONR, proc, elem->c_un.libfunc->name);
572}
573
574static void
Petr Machatafed1e8d2012-02-07 02:06:29 +0100575handle_breakpoint(Event *event)
576{
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100577 int i, j;
Petr Machatabc373262012-02-07 23:31:15 +0100578 struct breakpoint *sbp;
Petr Machata9a5420c2011-07-09 11:21:23 +0200579 Process *leader = event->proc->leader;
Petr Machata31b2f9f2012-04-12 22:23:40 +0200580 void *brk_addr = event->e_un.brk_addr;
Petr Machata9a5420c2011-07-09 11:21:23 +0200581
582 /* The leader has terminated. */
583 if (leader == NULL) {
584 continue_process(event->proc->pid);
585 return;
586 }
Juan Cespedes5e01f651998-03-08 22:31:44 +0100587
Petr Machata31b2f9f2012-04-12 22:23:40 +0200588 debug(DEBUG_FUNCTION, "handle_breakpoint(pid=%d, addr=%p)",
589 event->proc->pid, brk_addr);
590 debug(2, "event: breakpoint (%p)", brk_addr);
Luis Machado55c5feb2008-03-12 15:56:01 +0100591
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100592 for (i = event->proc->callstack_depth - 1; i >= 0; i--) {
Petr Machata31b2f9f2012-04-12 22:23:40 +0200593 if (brk_addr == event->proc->callstack[i].return_addr) {
Petr Machatad09d9ce2012-04-06 13:25:37 +0200594#if defined(__mips__)
Arnaud Patard161193f2010-01-08 08:40:14 -0500595 void *addr = NULL;
Juan Cespedesa413e5b2007-09-04 17:34:53 +0200596 struct library_symbol *sym= event->proc->callstack[i].c_un.libfunc;
Arnaud Patard161193f2010-01-08 08:40:14 -0500597 struct library_symbol *new_sym;
Juan Cespedesbc8caf02009-05-07 19:38:38 +0200598 assert(sym);
Petr Machatac185aff2011-11-09 16:18:06 +0100599 addr = sym2addr(event->proc, sym);
Petr Machata9a5420c2011-07-09 11:21:23 +0200600 sbp = dict_find_entry(leader->breakpoints, addr);
Arnaud Patard161193f2010-01-08 08:40:14 -0500601 if (sbp) {
602 if (addr != sbp->addr) {
Petr Machatadb30b102012-03-28 02:44:18 +0200603 insert_breakpoint(event->proc, addr, sym);
Arnaud Patard161193f2010-01-08 08:40:14 -0500604 }
605 } else {
606 new_sym=malloc(sizeof(*new_sym) + strlen(sym->name) + 1);
607 memcpy(new_sym,sym,sizeof(*new_sym) + strlen(sym->name) + 1);
Petr Machata26627682011-07-08 18:15:32 +0200608 new_sym->next = leader->list_of_symbols;
Petr Machata9a5420c2011-07-09 11:21:23 +0200609 leader->list_of_symbols = new_sym;
Petr Machatadb30b102012-03-28 02:44:18 +0200610 insert_breakpoint(event->proc, addr, new_sym);
Juan Cespedesa413e5b2007-09-04 17:34:53 +0200611 }
Juan Cespedes5bfb0612002-03-31 20:01:28 +0200612#endif
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100613 for (j = event->proc->callstack_depth - 1; j > i; j--) {
Juan Cespedes5916fda2002-02-25 00:19:21 +0100614 callstack_pop(event->proc);
615 }
Juan Cespedes5c682042009-05-21 15:59:56 +0200616 if (event->proc->state != STATE_IGNORED) {
617 if (opt_T || options.summary) {
618 calc_time_spent(event->proc);
619 }
Juan Cespedesd65efa32003-02-03 00:22:30 +0100620 }
Petr Machata31b2f9f2012-04-12 22:23:40 +0200621 event->proc->return_addr = brk_addr;
622
Petr Machata14298742012-04-12 23:09:21 +0200623 output_right_tos(event->proc);
624 callstack_pop(event->proc);
625
Petr Machata31b2f9f2012-04-12 22:23:40 +0200626 /* Pop also any other entries that seem like
627 * they are linked to the current one: they
628 * have the same return address, but were made
629 * for different symbols. This should only
630 * happen for entry point tracing, i.e. for -x
631 * everywhere, or -x and -e on PPC64. */
Petr Machata31b2f9f2012-04-12 22:23:40 +0200632 while (event->proc->callstack_depth > 0) {
633 struct callstack_element *prev;
634 size_t d = event->proc->callstack_depth;
635 prev = &event->proc->callstack[d - 1];
636
Petr Machata14298742012-04-12 23:09:21 +0200637 if (prev->c_un.libfunc == libsym
638 || prev->return_addr != brk_addr)
Petr Machata31b2f9f2012-04-12 22:23:40 +0200639 break;
Petr Machata14298742012-04-12 23:09:21 +0200640
641 output_right_tos(event->proc);
642 callstack_pop(event->proc);
Juan Cespedes5c682042009-05-21 15:59:56 +0200643 }
Petr Machata31b2f9f2012-04-12 22:23:40 +0200644
645 sbp = address2bpstruct(leader, brk_addr);
Petr Machata9a5420c2011-07-09 11:21:23 +0200646 continue_after_breakpoint(event->proc, sbp);
Juan Cespedes5916fda2002-02-25 00:19:21 +0100647 return;
648 }
Juan Cespedes5e01f651998-03-08 22:31:44 +0100649 }
650
Petr Machata31b2f9f2012-04-12 22:23:40 +0200651 if ((sbp = address2bpstruct(leader, brk_addr))) {
Petr Machataa9fd8f42012-02-07 13:25:56 +0100652 breakpoint_on_hit(sbp, event->proc);
Petr Machatabc373262012-02-07 23:31:15 +0100653
Petr Machata2b46cfc2012-02-18 11:17:29 +0100654 if (event->proc->state != STATE_IGNORED
655 && sbp->libsym != NULL) {
Juan Cespedes5c682042009-05-21 15:59:56 +0200656 event->proc->stack_pointer = get_stack_pointer(event->proc);
657 event->proc->return_addr =
658 get_return_addr(event->proc, event->proc->stack_pointer);
Juan Cespedes5c682042009-05-21 15:59:56 +0200659 callstack_push_symfunc(event->proc, sbp->libsym);
Petr Machata29add4f2012-02-18 16:38:05 +0100660 output_left(LT_TOF_FUNCTION, event->proc, sbp->libsym);
Juan Cespedes5c682042009-05-21 15:59:56 +0200661 }
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100662
Petr Machata56a9ea62012-03-27 03:09:29 +0200663 breakpoint_on_continue(sbp, event->proc);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100664 return;
665 }
Ian Wienand9a2ad352006-02-20 22:44:45 +0100666
Petr Machata796267f2012-04-04 19:09:37 +0200667 if (event->proc->state != STATE_IGNORED)
Juan Cespedes5c682042009-05-21 15:59:56 +0200668 output_line(event->proc, "unexpected breakpoint at %p",
Petr Machata31b2f9f2012-04-12 22:23:40 +0200669 brk_addr);
Petr Machata796267f2012-04-04 19:09:37 +0200670
Juan Cespedes5e01f651998-03-08 22:31:44 +0100671 continue_process(event->proc->pid);
672}
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200673
Juan Cespedesf1350522008-12-16 18:19:58 +0100674static void
Juan Cespedesa8909f72009-04-28 20:02:41 +0200675callstack_push_syscall(Process *proc, int sysnum) {
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100676 struct callstack_element *elem;
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200677
Juan Cespedescd8976d2009-05-14 13:47:58 +0200678 debug(DEBUG_FUNCTION, "callstack_push_syscall(pid=%d, sysnum=%d)", proc->pid, sysnum);
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200679 /* FIXME: not good -- should use dynamic allocation. 19990703 mortene. */
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100680 if (proc->callstack_depth == MAX_CALLDEPTH - 1) {
Arnaud Patard91a1f322010-01-08 08:40:13 -0500681 fprintf(stderr, "%s: Error: call nesting too deep!\n", __func__);
682 abort();
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200683 return;
684 }
685
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100686 elem = &proc->callstack[proc->callstack_depth];
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200687 elem->is_syscall = 1;
688 elem->c_un.syscall = sysnum;
689 elem->return_addr = NULL;
690
691 proc->callstack_depth++;
Juan Cespedesda9b9532009-04-07 15:33:50 +0200692 if (opt_T || options.summary) {
Juan Cespedesd65efa32003-02-03 00:22:30 +0100693 struct timezone tz;
694 gettimeofday(&elem->time_spent, &tz);
695 }
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200696}
697
Juan Cespedes21c63a12001-07-07 20:56:56 +0200698static void
Juan Cespedesa8909f72009-04-28 20:02:41 +0200699callstack_push_symfunc(Process *proc, struct library_symbol *sym) {
Petr Machata14298742012-04-12 23:09:21 +0200700 struct callstack_element *elem;
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200701
Juan Cespedescd8976d2009-05-14 13:47:58 +0200702 debug(DEBUG_FUNCTION, "callstack_push_symfunc(pid=%d, symbol=%s)", proc->pid, sym->name);
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200703 /* FIXME: not good -- should use dynamic allocation. 19990703 mortene. */
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100704 if (proc->callstack_depth == MAX_CALLDEPTH - 1) {
Arnaud Patard91a1f322010-01-08 08:40:13 -0500705 fprintf(stderr, "%s: Error: call nesting too deep!\n", __func__);
706 abort();
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200707 return;
708 }
709
Petr Machata14298742012-04-12 23:09:21 +0200710 elem = &proc->callstack[proc->callstack_depth++];
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200711 elem->is_syscall = 0;
712 elem->c_un.libfunc = sym;
713
Juan Cespedes3f0b62e2001-07-09 01:02:52 +0200714 elem->return_addr = proc->return_addr;
Petr Machata9df15012012-02-20 12:49:46 +0100715 if (elem->return_addr)
716 insert_breakpoint(proc, elem->return_addr, NULL);
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200717
Arnaud Patard26570082010-01-08 08:40:12 -0500718 /* handle functions like atexit() on mips which have no return */
Juan Cespedesda9b9532009-04-07 15:33:50 +0200719 if (opt_T || options.summary) {
Juan Cespedesd65efa32003-02-03 00:22:30 +0100720 struct timezone tz;
721 gettimeofday(&elem->time_spent, &tz);
722 }
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200723}
724
Juan Cespedesf1350522008-12-16 18:19:58 +0100725static void
Juan Cespedesa8909f72009-04-28 20:02:41 +0200726callstack_pop(Process *proc) {
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100727 struct callstack_element *elem;
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200728 assert(proc->callstack_depth > 0);
729
Juan Cespedescd8976d2009-05-14 13:47:58 +0200730 debug(DEBUG_FUNCTION, "callstack_pop(pid=%d)", proc->pid);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100731 elem = &proc->callstack[proc->callstack_depth - 1];
Paul Gilliam76c61f12006-06-14 06:55:21 +0200732 if (!elem->is_syscall && elem->return_addr) {
Petr Machata9a5420c2011-07-09 11:21:23 +0200733 assert(proc->leader != NULL);
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200734 delete_breakpoint(proc, elem->return_addr);
735 }
Petr Machata211f0882010-11-03 18:42:18 +0100736 if (elem->arch_ptr != NULL) {
737 free(elem->arch_ptr);
738 elem->arch_ptr = NULL;
739 }
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200740 proc->callstack_depth--;
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200741}