blob: b69a0c91cf12bddf54c1ac446a95dad27976fe0d [file] [log] [blame]
Petr Machata94078ec2012-01-05 18:07:02 +01001/*
2 * This file is part of ltrace.
Petr Machata588850f2012-10-26 22:26:54 +02003 * Copyright (C) 2011,2012 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 Machata7c4651c2012-12-08 03:44:54 +010024#include <limits.h>
Petr Machata3ed2a422012-04-06 17:18:55 +020025#include <sys/param.h>
26#include <sys/wait.h>
27#include <errno.h>
Petr Machata3ed2a422012-04-06 17:18:55 +020028#include <signal.h>
Juan Cespedesf7281232009-06-25 16:11:21 +020029#include <stdio.h>
30#include <stdlib.h>
Juan Cespedesf7281232009-06-25 16:11:21 +020031#include <string.h>
Petr Machata3ed2a422012-04-06 17:18:55 +020032#include <unistd.h>
Juan Cespedesf7281232009-06-25 16:11:21 +020033
34#include "common.h"
Petr Machata366c2f42012-02-09 19:34:36 +010035#include "proc.h"
Petr Machata94078ec2012-01-05 18:07:02 +010036#include "read_config_file.h"
Petr Machata64262602012-01-07 03:41:36 +010037#include "backend.h"
Juan Cespedesf7281232009-06-25 16:11:21 +020038
39char *command = NULL;
Juan Cespedesf7281232009-06-25 16:11:21 +020040
41int exiting = 0; /* =1 if a SIGINT or SIGTERM has been received */
42
Petr Machata2b46cfc2012-02-18 11:17:29 +010043static enum callback_status
Petr Machata929bd572012-12-17 03:20:34 +010044stop_non_p_processes(struct process *proc, void *data)
Petr Machatacebb8842011-07-09 11:14:11 +020045{
46 int stop = 1;
47
48 struct opt_p_t *it;
49 for (it = opt_p; it != NULL; it = it->next) {
Petr Machata929bd572012-12-17 03:20:34 +010050 struct process *p_proc = pid2proc(it->pid);
Petr Machatacebb8842011-07-09 11:14:11 +020051 if (p_proc == NULL) {
52 printf("stop_non_p_processes: %d terminated?\n", it->pid);
53 continue;
54 }
Petr Machata9a5420c2011-07-09 11:21:23 +020055 if (p_proc == proc || p_proc->leader == proc->leader) {
Petr Machatacebb8842011-07-09 11:14:11 +020056 stop = 0;
57 break;
58 }
59 }
60
61 if (stop) {
62 debug(2, "Sending SIGSTOP to process %u", proc->pid);
63 kill(proc->pid, SIGSTOP);
64 }
65
Petr Machata2b46cfc2012-02-18 11:17:29 +010066 return CBS_CONT;
Petr Machatacebb8842011-07-09 11:14:11 +020067}
68
Juan Cespedesf7281232009-06-25 16:11:21 +020069static void
70signal_alarm(int sig) {
Juan Cespedesf7281232009-06-25 16:11:21 +020071 signal(SIGALRM, SIG_DFL);
Petr Machatacebb8842011-07-09 11:14:11 +020072 each_process(NULL, &stop_non_p_processes, NULL);
Juan Cespedesf7281232009-06-25 16:11:21 +020073}
74
75static void
Petr Machataffe4cd22012-04-11 18:01:44 +020076signal_exit(int sig)
77{
Petr Machataffe4cd22012-04-11 18:01:44 +020078 if (exiting != 0)
79 return;
80
81 exiting = 1 + !!os_ltrace_exiting_sighandler();
82
Juan Cespedesf7281232009-06-25 16:11:21 +020083 signal(SIGINT, SIG_IGN);
84 signal(SIGTERM, SIG_IGN);
85 signal(SIGALRM, signal_alarm);
Petr Machata602330f2011-07-09 11:15:34 +020086 //alarm(1);
Juan Cespedesf7281232009-06-25 16:11:21 +020087}
88
89static void
Petr Machataefc94362012-10-27 00:49:05 +020090normal_exit(void)
91{
Juan Cespedesf7281232009-06-25 16:11:21 +020092 if (options.summary) {
93 show_summary();
94 }
95 if (options.output) {
96 fclose(options.output);
97 options.output = NULL;
98 }
99}
100
101void
102ltrace_init(int argc, char **argv) {
103 struct opt_p_t *opt_p_tmp;
104
105 atexit(normal_exit);
106 signal(SIGINT, signal_exit); /* Detach processes when interrupted */
107 signal(SIGTERM, signal_exit); /* ... or killed */
108
109 argv = process_options(argc, argv);
Petr Machataf83053d2012-01-06 18:52:55 +0100110 init_global_config();
Juan Cespedesf7281232009-06-25 16:11:21 +0200111 while (opt_F) {
112 /* If filename begins with ~, expand it to the user's home */
113 /* directory. This does not correctly handle ~yoda, but that */
114 /* isn't as bad as it seems because the shell will normally */
115 /* be doing the expansion for us; only the hardcoded */
116 /* ~/.ltrace.conf should ever use this code. */
117 if (opt_F->filename[0] == '~') {
118 char path[PATH_MAX];
119 char *home_dir = getenv("HOME");
120 if (home_dir) {
121 strncpy(path, home_dir, PATH_MAX - 1);
122 path[PATH_MAX - 1] = '\0';
123 strncat(path, opt_F->filename + 1,
124 PATH_MAX - strlen(path) - 1);
125 read_config_file(path);
126 }
127 } else {
128 read_config_file(opt_F->filename);
129 }
Petr Machata8a98e6f2012-10-27 00:30:13 +0200130
131 struct opt_F_t *next = opt_F->next;
132 if (opt_F->own_filename)
133 free(opt_F->filename);
134 free(opt_F);
135 opt_F = next;
Juan Cespedesf7281232009-06-25 16:11:21 +0200136 }
Juan Cespedesf7281232009-06-25 16:11:21 +0200137 if (command) {
Petr Machata02bd9ec2011-09-21 17:38:59 +0200138 /* Check that the binary ABI is supported before
139 * calling execute_program. */
140 struct ltelf lte = {};
141 open_elf(&lte, command);
Petr Machata588850f2012-10-26 22:26:54 +0200142 do_close_elf(&lte);
Petr Machata02bd9ec2011-09-21 17:38:59 +0200143
Petr Machatac805c622012-03-02 00:10:37 +0100144 pid_t pid = execute_program(command, argv);
Petr Machata929bd572012-12-17 03:20:34 +0100145 struct process *proc = open_program(command, pid);
Petr Machatacc0e1e42012-04-25 13:42:07 +0200146 if (proc == NULL) {
147 fprintf(stderr, "couldn't open program '%s': %s\n",
148 command, strerror(errno));
149 exit(EXIT_FAILURE);
150 }
Petr Machata79a47ba2012-04-06 19:54:55 +0200151
152 trace_set_options(proc);
Petr Machatac805c622012-03-02 00:10:37 +0100153 continue_process(pid);
Juan Cespedesf7281232009-06-25 16:11:21 +0200154 }
155 opt_p_tmp = opt_p;
156 while (opt_p_tmp) {
Juan Cespedes8d1b92b2009-07-03 10:39:34 +0200157 open_pid(opt_p_tmp->pid);
Juan Cespedesf7281232009-06-25 16:11:21 +0200158 opt_p_tmp = opt_p_tmp->next;
159 }
160}
161
Juan Cespedes61da3372009-07-03 11:55:44 +0200162static int num_ltrace_callbacks[EVENT_MAX];
163static callback_func * ltrace_callbacks[EVENT_MAX];
Juan Cespedes40dc6352009-06-25 19:54:10 +0200164
165void
Juan Cespedes61da3372009-07-03 11:55:44 +0200166ltrace_add_callback(callback_func func, Event_type type) {
167 ltrace_callbacks[type] = realloc(ltrace_callbacks[type], (num_ltrace_callbacks[type]+1)*sizeof(callback_func));
168 ltrace_callbacks[type][num_ltrace_callbacks[type]++] = func;
169}
Juan Cespedes40dc6352009-06-25 19:54:10 +0200170
Juan Cespedes61da3372009-07-03 11:55:44 +0200171static void
172dispatch_callbacks(Event * ev) {
173 int i;
174 /* Ignoring case 1: signal into a dying tracer */
175 if (ev->type==EVENT_SIGNAL &&
176 exiting && ev->e_un.signum == SIGSTOP) {
177 return;
178 }
179 /* Ignoring case 2: process being born before a clone event */
180 if (ev->proc && ev->proc->state == STATE_IGNORED) {
181 return;
182 }
183 for (i=0; i<num_ltrace_callbacks[ev->type]; i++) {
184 ltrace_callbacks[ev->type][i](ev);
Juan Cespedes40dc6352009-06-25 19:54:10 +0200185 }
186}
187
Juan Cespedesf7281232009-06-25 16:11:21 +0200188void
189ltrace_main(void) {
Juan Cespedes40dc6352009-06-25 19:54:10 +0200190 Event * ev;
Juan Cespedesf7281232009-06-25 16:11:21 +0200191 while (1) {
Juan Cespedes40dc6352009-06-25 19:54:10 +0200192 ev = next_event();
Juan Cespedes61da3372009-07-03 11:55:44 +0200193 dispatch_callbacks(ev);
Juan Cespedes03192f82009-07-03 10:16:22 +0200194 handle_event(ev);
Juan Cespedesf7281232009-06-25 16:11:21 +0200195 }
196}