2 * This file is part of ltrace.
3 * Copyright (C) 2011,2012,2013 Petr Machata, Red Hat Inc.
4 * Copyright (C) 2009 Juan Cespedes
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
24 #include <sys/param.h>
38 #include "prototype.h"
39 #include "read_config_file.h"
44 int exiting = 0; /* =1 if a SIGINT or SIGTERM has been received */
46 static enum callback_status
47 stop_non_p_processes(struct process *proc, void *data)
52 for (it = opt_p; it != NULL; it = it->next) {
53 struct process *p_proc = pid2proc(it->pid);
55 printf("stop_non_p_processes: %d terminated?\n", it->pid);
58 if (p_proc == proc || p_proc->leader == proc->leader) {
65 debug(2, "Sending SIGSTOP to process %u", proc->pid);
66 kill(proc->pid, SIGSTOP);
73 signal_alarm(int sig) {
74 signal(SIGALRM, SIG_DFL);
75 each_process(NULL, &stop_non_p_processes, NULL);
84 exiting = 1 + !!os_ltrace_exiting_sighandler();
86 signal(SIGINT, SIG_IGN);
87 signal(SIGTERM, SIG_IGN);
88 signal(SIGALRM, signal_alarm);
98 fclose(options.output);
99 options.output = NULL;
104 ltrace_init(int argc, char **argv)
106 setlocale(LC_ALL, "");
108 struct opt_p_t *opt_p_tmp;
111 signal(SIGINT, signal_exit); /* Detach processes when interrupted */
112 signal(SIGTERM, signal_exit); /* ... or killed */
114 argv = process_options(argc, argv);
115 init_global_config();
118 /* Check that the binary ABI is supported before
119 * calling execute_program. */
122 if (ltelf_init(<e, command) == 0)
128 pid_t pid = execute_program(command, argv);
129 struct process *proc = open_program(command, pid);
131 fprintf(stderr, "couldn't open program '%s': %s\n",
132 command, strerror(errno));
136 trace_set_options(proc);
137 continue_process(pid);
141 open_pid(opt_p_tmp->pid);
142 opt_p_tmp = opt_p_tmp->next;
146 static int num_ltrace_callbacks[EVENT_MAX];
147 static callback_func * ltrace_callbacks[EVENT_MAX];
150 ltrace_add_callback(callback_func func, Event_type type) {
151 ltrace_callbacks[type] = realloc(ltrace_callbacks[type], (num_ltrace_callbacks[type]+1)*sizeof(callback_func));
152 ltrace_callbacks[type][num_ltrace_callbacks[type]++] = func;
156 dispatch_callbacks(Event * ev) {
158 /* Ignoring case 1: signal into a dying tracer */
159 if (ev->type==EVENT_SIGNAL &&
160 exiting && ev->e_un.signum == SIGSTOP) {
163 /* Ignoring case 2: process being born before a clone event */
164 if (ev->proc && ev->proc->state == STATE_IGNORED) {
167 for (i=0; i<num_ltrace_callbacks[ev->type]; i++) {
168 ltrace_callbacks[ev->type][i](ev);
177 dispatch_callbacks(ev);