blob: 0112c9f84878ef628e5538bbc401a70f9612ac8b [file] [log] [blame]
Petr Machata94078ec2012-01-05 18:07:02 +01001/*
2 * This file is part of ltrace.
Petr Machata673ff512013-10-25 23:45:39 +02003 * Copyright (C) 2011,2012,2013 Petr Machata, Red Hat Inc.
Petr Machata94078ec2012-01-05 18:07:02 +01004 * Copyright (C) 2009 Juan Cespedes
5 *
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.
10 *
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.
15 *
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
19 * 02110-1301 USA
20 */
21
Juan Cespedesf7281232009-06-25 16:11:21 +020022#include "config.h"
Juan Cespedesf7281232009-06-25 16:11:21 +020023
Petr Machata3ed2a422012-04-06 17:18:55 +020024#include <sys/param.h>
25#include <sys/wait.h>
26#include <errno.h>
Petr Machatac00837c2013-11-11 02:24:42 +010027#include <limits.h>
28#include <locale.h>
Petr Machata3ed2a422012-04-06 17:18:55 +020029#include <signal.h>
Juan Cespedesf7281232009-06-25 16:11:21 +020030#include <stdio.h>
31#include <stdlib.h>
Juan Cespedesf7281232009-06-25 16:11:21 +020032#include <string.h>
Petr Machata3ed2a422012-04-06 17:18:55 +020033#include <unistd.h>
Juan Cespedesf7281232009-06-25 16:11:21 +020034
Petr Machata8a730f32013-11-21 20:43:51 +010035#include "backend.h"
Juan Cespedesf7281232009-06-25 16:11:21 +020036#include "common.h"
Petr Machata366c2f42012-02-09 19:34:36 +010037#include "proc.h"
Petr Machatae6c00ae2012-11-23 22:30:06 +010038#include "prototype.h"
Petr Machata8a730f32013-11-21 20:43:51 +010039#include "read_config_file.h"
40#include "summary.h"
Juan Cespedesf7281232009-06-25 16:11:21 +020041
42char *command = NULL;
Juan Cespedesf7281232009-06-25 16:11:21 +020043
44int exiting = 0; /* =1 if a SIGINT or SIGTERM has been received */
45
Petr Machata2b46cfc2012-02-18 11:17:29 +010046static enum callback_status
Petr Machata929bd572012-12-17 03:20:34 +010047stop_non_p_processes(struct process *proc, void *data)
Petr Machatacebb8842011-07-09 11:14:11 +020048{
49 int stop = 1;
50
51 struct opt_p_t *it;
52 for (it = opt_p; it != NULL; it = it->next) {
Petr Machata929bd572012-12-17 03:20:34 +010053 struct process *p_proc = pid2proc(it->pid);
Petr Machatacebb8842011-07-09 11:14:11 +020054 if (p_proc == NULL) {
55 printf("stop_non_p_processes: %d terminated?\n", it->pid);
56 continue;
57 }
Petr Machata9a5420c2011-07-09 11:21:23 +020058 if (p_proc == proc || p_proc->leader == proc->leader) {
Petr Machatacebb8842011-07-09 11:14:11 +020059 stop = 0;
60 break;
61 }
62 }
63
64 if (stop) {
65 debug(2, "Sending SIGSTOP to process %u", proc->pid);
66 kill(proc->pid, SIGSTOP);
67 }
68
Petr Machata2b46cfc2012-02-18 11:17:29 +010069 return CBS_CONT;
Petr Machatacebb8842011-07-09 11:14:11 +020070}
71
Juan Cespedesf7281232009-06-25 16:11:21 +020072static void
73signal_alarm(int sig) {
Juan Cespedesf7281232009-06-25 16:11:21 +020074 signal(SIGALRM, SIG_DFL);
Petr Machatacebb8842011-07-09 11:14:11 +020075 each_process(NULL, &stop_non_p_processes, NULL);
Juan Cespedesf7281232009-06-25 16:11:21 +020076}
77
78static void
Petr Machataffe4cd22012-04-11 18:01:44 +020079signal_exit(int sig)
80{
Petr Machataffe4cd22012-04-11 18:01:44 +020081 if (exiting != 0)
82 return;
83
84 exiting = 1 + !!os_ltrace_exiting_sighandler();
85
Juan Cespedesf7281232009-06-25 16:11:21 +020086 signal(SIGINT, SIG_IGN);
87 signal(SIGTERM, SIG_IGN);
88 signal(SIGALRM, signal_alarm);
Petr Machata602330f2011-07-09 11:15:34 +020089 //alarm(1);
Juan Cespedesf7281232009-06-25 16:11:21 +020090}
91
92static void
Petr Machataefc94362012-10-27 00:49:05 +020093normal_exit(void)
94{
Petr Machata93eb0ee2012-12-13 18:21:36 +010095 if (options.summary)
Juan Cespedesf7281232009-06-25 16:11:21 +020096 show_summary();
Juan Cespedesf7281232009-06-25 16:11:21 +020097 if (options.output) {
98 fclose(options.output);
99 options.output = NULL;
100 }
101}
102
103void
Petr Machatac00837c2013-11-11 02:24:42 +0100104ltrace_init(int argc, char **argv)
105{
106 setlocale(LC_ALL, "");
107
Juan Cespedesf7281232009-06-25 16:11:21 +0200108 struct opt_p_t *opt_p_tmp;
109
110 atexit(normal_exit);
111 signal(SIGINT, signal_exit); /* Detach processes when interrupted */
112 signal(SIGTERM, signal_exit); /* ... or killed */
113
114 argv = process_options(argc, argv);
Petr Machataf83053d2012-01-06 18:52:55 +0100115 init_global_config();
Petr Machata8a98e6f2012-10-27 00:30:13 +0200116
Juan Cespedesf7281232009-06-25 16:11:21 +0200117 if (command) {
Petr Machata02bd9ec2011-09-21 17:38:59 +0200118 /* Check that the binary ABI is supported before
119 * calling execute_program. */
Petr Machata0ba3c5e2013-11-11 02:27:08 +0100120 {
121 struct ltelf lte;
122 if (ltelf_init(&lte, command) == 0)
123 ltelf_destroy(&lte);
124 else
125 exit(EXIT_FAILURE);
126 }
Petr Machata02bd9ec2011-09-21 17:38:59 +0200127
Petr Machatac805c622012-03-02 00:10:37 +0100128 pid_t pid = execute_program(command, argv);
Petr Machata929bd572012-12-17 03:20:34 +0100129 struct process *proc = open_program(command, pid);
Petr Machatacc0e1e42012-04-25 13:42:07 +0200130 if (proc == NULL) {
131 fprintf(stderr, "couldn't open program '%s': %s\n",
132 command, strerror(errno));
133 exit(EXIT_FAILURE);
134 }
Petr Machata79a47ba2012-04-06 19:54:55 +0200135
136 trace_set_options(proc);
Petr Machatac805c622012-03-02 00:10:37 +0100137 continue_process(pid);
Juan Cespedesf7281232009-06-25 16:11:21 +0200138 }
139 opt_p_tmp = opt_p;
140 while (opt_p_tmp) {
Juan Cespedes8d1b92b2009-07-03 10:39:34 +0200141 open_pid(opt_p_tmp->pid);
Juan Cespedesf7281232009-06-25 16:11:21 +0200142 opt_p_tmp = opt_p_tmp->next;
143 }
144}
145
Juan Cespedes61da3372009-07-03 11:55:44 +0200146static int num_ltrace_callbacks[EVENT_MAX];
147static callback_func * ltrace_callbacks[EVENT_MAX];
Juan Cespedes40dc6352009-06-25 19:54:10 +0200148
149void
Juan Cespedes61da3372009-07-03 11:55:44 +0200150ltrace_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;
153}
Juan Cespedes40dc6352009-06-25 19:54:10 +0200154
Juan Cespedes61da3372009-07-03 11:55:44 +0200155static void
156dispatch_callbacks(Event * ev) {
157 int i;
158 /* Ignoring case 1: signal into a dying tracer */
159 if (ev->type==EVENT_SIGNAL &&
160 exiting && ev->e_un.signum == SIGSTOP) {
161 return;
162 }
163 /* Ignoring case 2: process being born before a clone event */
164 if (ev->proc && ev->proc->state == STATE_IGNORED) {
165 return;
166 }
167 for (i=0; i<num_ltrace_callbacks[ev->type]; i++) {
168 ltrace_callbacks[ev->type][i](ev);
Juan Cespedes40dc6352009-06-25 19:54:10 +0200169 }
170}
171
Juan Cespedesf7281232009-06-25 16:11:21 +0200172void
173ltrace_main(void) {
Juan Cespedes40dc6352009-06-25 19:54:10 +0200174 Event * ev;
Juan Cespedesf7281232009-06-25 16:11:21 +0200175 while (1) {
Juan Cespedes40dc6352009-06-25 19:54:10 +0200176 ev = next_event();
Juan Cespedes61da3372009-07-03 11:55:44 +0200177 dispatch_callbacks(ev);
Juan Cespedes03192f82009-07-03 10:16:22 +0200178 handle_event(ev);
Juan Cespedesf7281232009-06-25 16:11:21 +0200179 }
180}