blob: 72bf82219a1347403febe95595e67503b8633f1b [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);
Juan Cespedes5e01f651998-03-08 22:31:44 +0100405}
406
Juan Cespedesf1350522008-12-16 18:19:58 +0100407static void
Juan Cespedes03192f82009-07-03 10:16:22 +0200408handle_exit_signal(Event *event) {
409 debug(DEBUG_FUNCTION, "handle_exit_signal(pid=%d, signum=%d)", event->proc->pid, event->e_un.signum);
Juan Cespedes5c682042009-05-21 15:59:56 +0200410 if (event->proc->state != STATE_IGNORED) {
411 output_line(event->proc, "+++ killed by %s +++",
412 shortsignal(event->proc, event->e_un.signum));
413 }
Petr Machatacebb8842011-07-09 11:14:11 +0200414 remove_process(event->proc);
Juan Cespedes5e01f651998-03-08 22:31:44 +0100415}
416
Petr Machata29add4f2012-02-18 16:38:05 +0100417static struct library_symbol *
418temporary_syscall_symbol(const char *name)
419{
420 struct library *syscalls = malloc(sizeof(*syscalls));
421 struct library_symbol *syscall = malloc(sizeof(*syscall));
422 if (syscalls == NULL || syscall == NULL) {
423 free(syscalls);
424 free(syscall);
425 return NULL;
426 }
427 library_init(syscalls, "SYS", 0);
428 library_symbol_init(syscall, syscalls, 0, name, 0, LS_TOPLT_NONE, 0);
429 library_add_symbol(syscalls, syscall);
430 return syscall;
431}
432
433static void
434output_syscall_left(struct Process *proc, const char *name)
435{
436 struct library_symbol *syscall = temporary_syscall_symbol(name);
437 output_left(LT_TOF_SYSCALL, proc, syscall);
438 struct library *lib = syscall->lib;
439 library_destroy(lib);
440 free(lib);
441}
442
443static void
444output_syscall_right(struct Process *proc, const char *name)
445{
446 struct library_symbol *syscall = temporary_syscall_symbol(name);
447 output_right(LT_TOF_SYSCALLR, proc, syscall);
448 struct library *lib = syscall->lib;
449 library_destroy(lib);
450 free(lib);
451}
452
Juan Cespedesf1350522008-12-16 18:19:58 +0100453static void
Juan Cespedes03192f82009-07-03 10:16:22 +0200454handle_syscall(Event *event) {
455 debug(DEBUG_FUNCTION, "handle_syscall(pid=%d, sysnum=%d)", event->proc->pid, event->e_un.sysnum);
Juan Cespedes5c682042009-05-21 15:59:56 +0200456 if (event->proc->state != STATE_IGNORED) {
Petr Machata211f0882010-11-03 18:42:18 +0100457 callstack_push_syscall(event->proc, event->e_un.sysnum);
Petr Machata29add4f2012-02-18 16:38:05 +0100458 if (options.syscalls)
459 output_syscall_left(event->proc,
460 sysname(event->proc,
461 event->e_un.sysnum));
Juan Cespedes5e01f651998-03-08 22:31:44 +0100462 }
Petr Machata43d2fe52011-11-02 13:25:49 +0100463 continue_after_syscall(event->proc, event->e_un.sysnum, 0);
Juan Cespedes5e01f651998-03-08 22:31:44 +0100464}
465
Juan Cespedesf1350522008-12-16 18:19:58 +0100466static void
Juan Cespedes03192f82009-07-03 10:16:22 +0200467handle_exec(Event * event) {
Juan Cespedese0660df2009-05-21 18:14:39 +0200468 Process * proc = event->proc;
Juan Cespedese0660df2009-05-21 18:14:39 +0200469
Juan Cespedes03192f82009-07-03 10:16:22 +0200470 debug(DEBUG_FUNCTION, "handle_exec(pid=%d)", proc->pid);
Juan Cespedese0660df2009-05-21 18:14:39 +0200471 if (proc->state == STATE_IGNORED) {
472 untrace_pid(proc->pid);
Petr Machatacebb8842011-07-09 11:14:11 +0200473 remove_process(proc);
Juan Cespedese0660df2009-05-21 18:14:39 +0200474 return;
Juan Cespedes5c682042009-05-21 15:59:56 +0200475 }
Juan Cespedese0660df2009-05-21 18:14:39 +0200476 output_line(proc, "--- Called exec() ---");
477 proc->mask_32bit = 0;
478 proc->personality = 0;
479 proc->arch_ptr = NULL;
480 free(proc->filename);
481 proc->filename = pid2name(proc->pid);
Petr Machatac7585b62011-07-08 22:58:12 +0200482 breakpoints_init(proc, 0);
Juan Cespedese0660df2009-05-21 18:14:39 +0200483 proc->callstack_depth = 0;
484 continue_process(proc->pid);
Juan Cespedes1e583132009-04-07 18:17:11 +0200485}
486
487static void
Juan Cespedes03192f82009-07-03 10:16:22 +0200488handle_arch_syscall(Event *event) {
489 debug(DEBUG_FUNCTION, "handle_arch_syscall(pid=%d, sysnum=%d)", event->proc->pid, event->e_un.sysnum);
Juan Cespedes5c682042009-05-21 15:59:56 +0200490 if (event->proc->state != STATE_IGNORED) {
Petr Machata211f0882010-11-03 18:42:18 +0100491 callstack_push_syscall(event->proc, 0xf0000 + event->e_un.sysnum);
Juan Cespedes5c682042009-05-21 15:59:56 +0200492 if (options.syscalls) {
Petr Machata29add4f2012-02-18 16:38:05 +0100493 output_syscall_left(event->proc,
494 arch_sysname(event->proc,
495 event->e_un.sysnum));
Juan Cespedes5c682042009-05-21 15:59:56 +0200496 }
Juan Cespedes63184be2008-12-10 13:30:12 +0100497 }
Juan Cespedes63184be2008-12-10 13:30:12 +0100498 continue_process(event->proc->pid);
499}
500
Juan Cespedesd65efa32003-02-03 00:22:30 +0100501struct timeval current_time_spent;
502
Juan Cespedesf1350522008-12-16 18:19:58 +0100503static void
Juan Cespedesa8909f72009-04-28 20:02:41 +0200504calc_time_spent(Process *proc) {
Juan Cespedesd65efa32003-02-03 00:22:30 +0100505 struct timeval tv;
506 struct timezone tz;
507 struct timeval diff;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100508 struct callstack_element *elem;
Juan Cespedesd65efa32003-02-03 00:22:30 +0100509
Juan Cespedescd8976d2009-05-14 13:47:58 +0200510 debug(DEBUG_FUNCTION, "calc_time_spent(pid=%d)", proc->pid);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100511 elem = &proc->callstack[proc->callstack_depth - 1];
Juan Cespedesd65efa32003-02-03 00:22:30 +0100512
513 gettimeofday(&tv, &tz);
514
515 diff.tv_sec = tv.tv_sec - elem->time_spent.tv_sec;
516 if (tv.tv_usec >= elem->time_spent.tv_usec) {
517 diff.tv_usec = tv.tv_usec - elem->time_spent.tv_usec;
518 } else {
519 diff.tv_sec++;
520 diff.tv_usec = 1000000 + tv.tv_usec - elem->time_spent.tv_usec;
521 }
522 current_time_spent = diff;
523}
524
Juan Cespedesf1350522008-12-16 18:19:58 +0100525static void
Juan Cespedes03192f82009-07-03 10:16:22 +0200526handle_sysret(Event *event) {
527 debug(DEBUG_FUNCTION, "handle_sysret(pid=%d, sysnum=%d)", event->proc->pid, event->e_un.sysnum);
Juan Cespedes5c682042009-05-21 15:59:56 +0200528 if (event->proc->state != STATE_IGNORED) {
529 if (opt_T || options.summary) {
530 calc_time_spent(event->proc);
531 }
Petr Machata29add4f2012-02-18 16:38:05 +0100532 if (options.syscalls)
533 output_syscall_right(event->proc,
534 sysname(event->proc,
535 event->e_un.sysnum));
536
Petr Machata43d2fe52011-11-02 13:25:49 +0100537 assert(event->proc->callstack_depth > 0);
538 unsigned d = event->proc->callstack_depth - 1;
539 assert(event->proc->callstack[d].is_syscall);
Petr Machata211f0882010-11-03 18:42:18 +0100540 callstack_pop(event->proc);
Juan Cespedes21c63a12001-07-07 20:56:56 +0200541 }
Petr Machata43d2fe52011-11-02 13:25:49 +0100542 continue_after_syscall(event->proc, event->e_un.sysnum, 1);
Juan Cespedes5e01f651998-03-08 22:31:44 +0100543}
544
Juan Cespedesf1350522008-12-16 18:19:58 +0100545static void
Juan Cespedes03192f82009-07-03 10:16:22 +0200546handle_arch_sysret(Event *event) {
547 debug(DEBUG_FUNCTION, "handle_arch_sysret(pid=%d, sysnum=%d)", event->proc->pid, event->e_un.sysnum);
Juan Cespedes5c682042009-05-21 15:59:56 +0200548 if (event->proc->state != STATE_IGNORED) {
549 if (opt_T || options.summary) {
550 calc_time_spent(event->proc);
551 }
Petr Machata29add4f2012-02-18 16:38:05 +0100552 if (options.syscalls)
553 output_syscall_right(event->proc,
554 arch_sysname(event->proc,
555 event->e_un.sysnum));
Petr Machata211f0882010-11-03 18:42:18 +0100556 callstack_pop(event->proc);
Juan Cespedes63184be2008-12-10 13:30:12 +0100557 }
558 continue_process(event->proc->pid);
559}
560
Juan Cespedesf1350522008-12-16 18:19:58 +0100561static void
Petr Machata14298742012-04-12 23:09:21 +0200562output_right_tos(struct Process *proc)
563{
564 size_t d = proc->callstack_depth;
565 struct callstack_element *elem = &proc->callstack[d - 1];
566 if (proc->state != STATE_IGNORED)
567 output_right(LT_TOF_FUNCTIONR, proc, elem->c_un.libfunc->name);
568}
569
570static void
Petr Machatafed1e8d2012-02-07 02:06:29 +0100571handle_breakpoint(Event *event)
572{
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100573 int i, j;
Petr Machatabc373262012-02-07 23:31:15 +0100574 struct breakpoint *sbp;
Petr Machata9a5420c2011-07-09 11:21:23 +0200575 Process *leader = event->proc->leader;
Petr Machata31b2f9f2012-04-12 22:23:40 +0200576 void *brk_addr = event->e_un.brk_addr;
Petr Machata9a5420c2011-07-09 11:21:23 +0200577
578 /* The leader has terminated. */
579 if (leader == NULL) {
580 continue_process(event->proc->pid);
581 return;
582 }
Juan Cespedes5e01f651998-03-08 22:31:44 +0100583
Petr Machata31b2f9f2012-04-12 22:23:40 +0200584 debug(DEBUG_FUNCTION, "handle_breakpoint(pid=%d, addr=%p)",
585 event->proc->pid, brk_addr);
586 debug(2, "event: breakpoint (%p)", brk_addr);
Luis Machado55c5feb2008-03-12 15:56:01 +0100587
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100588 for (i = event->proc->callstack_depth - 1; i >= 0; i--) {
Petr Machata31b2f9f2012-04-12 22:23:40 +0200589 if (brk_addr == event->proc->callstack[i].return_addr) {
Juan Cespedes5bfb0612002-03-31 20:01:28 +0200590#ifdef __powerpc__
Ian Wienand3219f322006-02-16 06:00:00 +0100591 /*
592 * PPC HACK! (XXX FIXME TODO)
593 * The PLT gets modified during the first call,
594 * so be sure to re-enable the breakpoint.
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100595 */
Ian Wienand9a2ad352006-02-20 22:44:45 +0100596 unsigned long a;
597 struct library_symbol *libsym =
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100598 event->proc->callstack[i].c_un.libfunc;
Paul Gilliam76c61f12006-06-14 06:55:21 +0200599 void *addr = sym2addr(event->proc, libsym);
Juan Cespedes5bfb0612002-03-31 20:01:28 +0200600
Paul Gilliam76c61f12006-06-14 06:55:21 +0200601 if (libsym->plt_type != LS_TOPLT_POINT) {
Ian Wienand9a2ad352006-02-20 22:44:45 +0100602 unsigned char break_insn[] = BREAKPOINT_VALUE;
603
Petr Machata9a5420c2011-07-09 11:21:23 +0200604 sbp = address2bpstruct(leader, addr);
Ian Wienand9a2ad352006-02-20 22:44:45 +0100605 assert(sbp);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100606 a = ptrace(PTRACE_PEEKTEXT, event->proc->pid,
607 addr);
Ian Wienand9a2ad352006-02-20 22:44:45 +0100608
Paul Gilliam76c61f12006-06-14 06:55:21 +0200609 if (memcmp(&a, break_insn, BREAKPOINT_LENGTH)) {
Ian Wienand9a2ad352006-02-20 22:44:45 +0100610 sbp->enabled--;
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100611 insert_breakpoint(event->proc, addr,
Petr Machata46d66ab2011-08-20 05:29:25 +0200612 libsym, 1);
Ian Wienand9a2ad352006-02-20 22:44:45 +0100613 }
614 } else {
Petr Machata9a5420c2011-07-09 11:21:23 +0200615 sbp = dict_find_entry(leader->breakpoints, addr);
Petr Machata067322d2010-10-25 14:47:55 +0200616 /* On powerpc, the breakpoint address
617 may end up being actual entry point
618 of the library symbol, not the PLT
619 address we computed. In that case,
620 sbp is NULL. */
621 if (sbp == NULL || addr != sbp->addr) {
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100622 insert_breakpoint(event->proc, addr,
Petr Machata46d66ab2011-08-20 05:29:25 +0200623 libsym, 1);
Paul Gilliam76c61f12006-06-14 06:55:21 +0200624 }
Ian Wienand3219f322006-02-16 06:00:00 +0100625 }
Eric Vaitl1228a912006-12-28 16:16:56 +0100626#elif defined(__mips__)
Arnaud Patard161193f2010-01-08 08:40:14 -0500627 void *addr = NULL;
Juan Cespedesa413e5b2007-09-04 17:34:53 +0200628 struct library_symbol *sym= event->proc->callstack[i].c_un.libfunc;
Arnaud Patard161193f2010-01-08 08:40:14 -0500629 struct library_symbol *new_sym;
Juan Cespedesbc8caf02009-05-07 19:38:38 +0200630 assert(sym);
Petr Machatac185aff2011-11-09 16:18:06 +0100631 addr = sym2addr(event->proc, sym);
Petr Machata9a5420c2011-07-09 11:21:23 +0200632 sbp = dict_find_entry(leader->breakpoints, addr);
Arnaud Patard161193f2010-01-08 08:40:14 -0500633 if (sbp) {
634 if (addr != sbp->addr) {
Petr Machata46d66ab2011-08-20 05:29:25 +0200635 insert_breakpoint(event->proc, addr, sym, 1);
Arnaud Patard161193f2010-01-08 08:40:14 -0500636 }
637 } else {
638 new_sym=malloc(sizeof(*new_sym) + strlen(sym->name) + 1);
639 memcpy(new_sym,sym,sizeof(*new_sym) + strlen(sym->name) + 1);
Petr Machata26627682011-07-08 18:15:32 +0200640 new_sym->next = leader->list_of_symbols;
Petr Machata9a5420c2011-07-09 11:21:23 +0200641 leader->list_of_symbols = new_sym;
Petr Machata46d66ab2011-08-20 05:29:25 +0200642 insert_breakpoint(event->proc, addr, new_sym, 1);
Juan Cespedesa413e5b2007-09-04 17:34:53 +0200643 }
Juan Cespedes5bfb0612002-03-31 20:01:28 +0200644#endif
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100645 for (j = event->proc->callstack_depth - 1; j > i; j--) {
Juan Cespedes5916fda2002-02-25 00:19:21 +0100646 callstack_pop(event->proc);
647 }
Juan Cespedes5c682042009-05-21 15:59:56 +0200648 if (event->proc->state != STATE_IGNORED) {
649 if (opt_T || options.summary) {
650 calc_time_spent(event->proc);
651 }
Juan Cespedesd65efa32003-02-03 00:22:30 +0100652 }
Petr Machata31b2f9f2012-04-12 22:23:40 +0200653 event->proc->return_addr = brk_addr;
654
Petr Machata14298742012-04-12 23:09:21 +0200655 output_right_tos(event->proc);
656 callstack_pop(event->proc);
657
Petr Machata31b2f9f2012-04-12 22:23:40 +0200658 /* Pop also any other entries that seem like
659 * they are linked to the current one: they
660 * have the same return address, but were made
661 * for different symbols. This should only
662 * happen for entry point tracing, i.e. for -x
663 * everywhere, or -x and -e on PPC64. */
Petr Machata31b2f9f2012-04-12 22:23:40 +0200664 while (event->proc->callstack_depth > 0) {
665 struct callstack_element *prev;
666 size_t d = event->proc->callstack_depth;
667 prev = &event->proc->callstack[d - 1];
668
Petr Machata14298742012-04-12 23:09:21 +0200669 if (prev->c_un.libfunc == libsym
670 || prev->return_addr != brk_addr)
Petr Machata31b2f9f2012-04-12 22:23:40 +0200671 break;
Petr Machata14298742012-04-12 23:09:21 +0200672
673 output_right_tos(event->proc);
674 callstack_pop(event->proc);
Juan Cespedes5c682042009-05-21 15:59:56 +0200675 }
Petr Machata31b2f9f2012-04-12 22:23:40 +0200676
677 sbp = address2bpstruct(leader, brk_addr);
Petr Machata9a5420c2011-07-09 11:21:23 +0200678 continue_after_breakpoint(event->proc, sbp);
Juan Cespedes5916fda2002-02-25 00:19:21 +0100679 return;
680 }
Juan Cespedes5e01f651998-03-08 22:31:44 +0100681 }
682
Petr Machata31b2f9f2012-04-12 22:23:40 +0200683 if ((sbp = address2bpstruct(leader, brk_addr))) {
Petr Machataa9fd8f42012-02-07 13:25:56 +0100684 breakpoint_on_hit(sbp, event->proc);
Petr Machatabc373262012-02-07 23:31:15 +0100685
Petr Machata2b46cfc2012-02-18 11:17:29 +0100686 if (event->proc->state != STATE_IGNORED
687 && sbp->libsym != NULL) {
Juan Cespedes5c682042009-05-21 15:59:56 +0200688 event->proc->stack_pointer = get_stack_pointer(event->proc);
689 event->proc->return_addr =
690 get_return_addr(event->proc, event->proc->stack_pointer);
Juan Cespedes5c682042009-05-21 15:59:56 +0200691 callstack_push_symfunc(event->proc, sbp->libsym);
Petr Machata29add4f2012-02-18 16:38:05 +0100692 output_left(LT_TOF_FUNCTION, event->proc, sbp->libsym);
Juan Cespedes5c682042009-05-21 15:59:56 +0200693 }
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100694
695 continue_after_breakpoint(event->proc, sbp);
696 return;
697 }
Ian Wienand9a2ad352006-02-20 22:44:45 +0100698
Joe Damatofa2aefc2010-10-30 19:56:50 -0700699 if (event->proc->state != STATE_IGNORED && !options.no_plt) {
Juan Cespedes5c682042009-05-21 15:59:56 +0200700 output_line(event->proc, "unexpected breakpoint at %p",
Petr Machata31b2f9f2012-04-12 22:23:40 +0200701 brk_addr);
Juan Cespedes5c682042009-05-21 15:59:56 +0200702 }
Juan Cespedes5e01f651998-03-08 22:31:44 +0100703 continue_process(event->proc->pid);
704}
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200705
Juan Cespedesf1350522008-12-16 18:19:58 +0100706static void
Juan Cespedesa8909f72009-04-28 20:02:41 +0200707callstack_push_syscall(Process *proc, int sysnum) {
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100708 struct callstack_element *elem;
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200709
Juan Cespedescd8976d2009-05-14 13:47:58 +0200710 debug(DEBUG_FUNCTION, "callstack_push_syscall(pid=%d, sysnum=%d)", proc->pid, sysnum);
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200711 /* FIXME: not good -- should use dynamic allocation. 19990703 mortene. */
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100712 if (proc->callstack_depth == MAX_CALLDEPTH - 1) {
Arnaud Patard91a1f322010-01-08 08:40:13 -0500713 fprintf(stderr, "%s: Error: call nesting too deep!\n", __func__);
714 abort();
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200715 return;
716 }
717
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100718 elem = &proc->callstack[proc->callstack_depth];
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200719 elem->is_syscall = 1;
720 elem->c_un.syscall = sysnum;
721 elem->return_addr = NULL;
722
723 proc->callstack_depth++;
Juan Cespedesda9b9532009-04-07 15:33:50 +0200724 if (opt_T || options.summary) {
Juan Cespedesd65efa32003-02-03 00:22:30 +0100725 struct timezone tz;
726 gettimeofday(&elem->time_spent, &tz);
727 }
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200728}
729
Juan Cespedes21c63a12001-07-07 20:56:56 +0200730static void
Juan Cespedesa8909f72009-04-28 20:02:41 +0200731callstack_push_symfunc(Process *proc, struct library_symbol *sym) {
Petr Machata14298742012-04-12 23:09:21 +0200732 struct callstack_element *elem;
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200733
Juan Cespedescd8976d2009-05-14 13:47:58 +0200734 debug(DEBUG_FUNCTION, "callstack_push_symfunc(pid=%d, symbol=%s)", proc->pid, sym->name);
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200735 /* FIXME: not good -- should use dynamic allocation. 19990703 mortene. */
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100736 if (proc->callstack_depth == MAX_CALLDEPTH - 1) {
Arnaud Patard91a1f322010-01-08 08:40:13 -0500737 fprintf(stderr, "%s: Error: call nesting too deep!\n", __func__);
738 abort();
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200739 return;
740 }
741
Petr Machata14298742012-04-12 23:09:21 +0200742 elem = &proc->callstack[proc->callstack_depth++];
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200743 elem->is_syscall = 0;
744 elem->c_un.libfunc = sym;
745
Juan Cespedes3f0b62e2001-07-09 01:02:52 +0200746 elem->return_addr = proc->return_addr;
Juan Cespedesa413e5b2007-09-04 17:34:53 +0200747 if (elem->return_addr) {
Petr Machatac7585b62011-07-08 22:58:12 +0200748 insert_breakpoint(proc, elem->return_addr, NULL, 1);
Paul Gilliam76c61f12006-06-14 06:55:21 +0200749 }
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200750
Arnaud Patard26570082010-01-08 08:40:12 -0500751 /* handle functions like atexit() on mips which have no return */
Juan Cespedesda9b9532009-04-07 15:33:50 +0200752 if (opt_T || options.summary) {
Juan Cespedesd65efa32003-02-03 00:22:30 +0100753 struct timezone tz;
754 gettimeofday(&elem->time_spent, &tz);
755 }
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200756}
757
Juan Cespedesf1350522008-12-16 18:19:58 +0100758static void
Juan Cespedesa8909f72009-04-28 20:02:41 +0200759callstack_pop(Process *proc) {
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100760 struct callstack_element *elem;
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200761 assert(proc->callstack_depth > 0);
762
Juan Cespedescd8976d2009-05-14 13:47:58 +0200763 debug(DEBUG_FUNCTION, "callstack_pop(pid=%d)", proc->pid);
Ian Wienand2d45b1a2006-02-20 22:48:07 +0100764 elem = &proc->callstack[proc->callstack_depth - 1];
Paul Gilliam76c61f12006-06-14 06:55:21 +0200765 if (!elem->is_syscall && elem->return_addr) {
Petr Machata9a5420c2011-07-09 11:21:23 +0200766 assert(proc->leader != NULL);
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200767 delete_breakpoint(proc, elem->return_addr);
768 }
Petr Machata211f0882010-11-03 18:42:18 +0100769 if (elem->arch_ptr != NULL) {
770 free(elem->arch_ptr);
771 elem->arch_ptr = NULL;
772 }
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200773 proc->callstack_depth--;
Juan Cespedes5b3ffdf2001-07-02 00:52:45 +0200774}